@charset "UTF-8";
/* Common Style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
@import url("./fontawesome.css");
@import url("./fa-brands.css");
@import url("./fa-regular.css");
@import url("./fa-solid.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300i,400i,600i");
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
menu, nav, section, audio, video, canvas {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

body {
  color: #333;
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

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

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
  vertical-align: middle;
}

* {
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::selection {
  background: rgba(51, 153, 153, .6);
}

*::-moz-selection {
  background: rgba(51, 153, 153, .6);
}

a, input[type=submit] {
  transition: all 0.2s ease;
}

/* Main global 'theme' and typographic styles */
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  position: relative;
}

body,
input,
textarea {
  color: #222;
  line-height: 1.6;
}

a:link,
a:visited {
  color: #222;
  cursor: hand;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  text-decoration: none;
  outline-width: 0;
}

hr {
  background-color: #ccc;
  border: 0;
  clear: both;
  width: 100%;
  height: 1px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1.5em;
}

ul {
  list-style: square;
  margin: 0 0 1.5em 2em;
}

ol {
  list-style: decimal;
  margin: 0 0 1.5em 2em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.8em 0;
}

dt {
  font-weight: bold;
}

dt:last-child {
  margin-bottom: 0;
}

dd {
  margin-bottom: 1.5em;
}

dd:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: bold;
}

cite,
em,
i {
  font-style: italic;
}

big {
  font-size: 131.25%;
}

ins {
  background: #ffc;
  text-decoration: none;
}

blockquote {
  font-style: italic;
  padding: 0 2em;
}

blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}

pre {
  background: #f7f7f7;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5em;
  overflow: auto;
  padding: 1.5em;
}

blockquote {
  quotes: "" "";
}

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

q {
  quotes: "“" "”" "‘" "’";
}

:focus {
  outline: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: .8em;
}

table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  margin-bottom: 1.5em;
}

th, td {
  padding: .5em .8em;
  vertical-align: top;
  border-bottom: none;
  text-align: left;
  background: #fff;
}

th {
  font-weight: normal;
}

/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* エフェクトで使う keyframes */
@-webkit-keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}
@keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}

/* フェードイン */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト */
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* スプリング(拡大してバウンド) */
@-webkit-keyframes spring {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  75% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes spring {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  75% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* 上に移動しながらフェードイン */
@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* 下に移動しながらフェードイン */
@-webkit-keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* 左に移動しながらフェードイン */
@-webkit-keyframes fade-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* 右に移動しながらフェードイン */
@-webkit-keyframes fade-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* X方向スケールアップ */
@-webkit-keyframes scale-up-x {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes scale-up-x {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/* Y方向スケールアップ */
@-webkit-keyframes scale-up-y {
  from {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes scale-up-y {
  from {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

/* Y方向スケールダウン */
@-webkit-keyframes scale-down-y {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@keyframes scale-down-y {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

/* Y方向に拡大しながらフェードイン */
@-webkit-keyframes scale-y-fade-in {
  from {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-y-fade-in {
  from {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードイン */
@-webkit-keyframes scale-fade-in {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-fade-in {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードアウト */
@-webkit-keyframes scale-fade-out {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes scale-fade-out {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
}

code {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

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

button::-moz-focus-inner,
html [type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
html [type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="number"],
textarea {
  -webkit-appearance: none;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="number"],
textarea {
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1);
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1);
  vertical-align: middle;
  font-size: 1.2em;
  padding: 0.2em 0.5em;
  border-radius: 3px;
  color: #222;
}

input[disabled][readonly],
select[disabled][readonly],
textarea[disabled][readonly] {
  background-color: #fff;
  border-color: #a6a6a6;
}

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

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

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

fieldset {
  margin-bottom: 5px;
}

fieldset + fieldset {
  margin-top: 10px;
}

@media screen and (max-width: 736px) {
  input[type="text"],
  input[type="password"],
  input[type="tel"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="number"],
  textarea {
    width: 100%;
  }
}

#header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .75);
  z-index: 100;
  border-bottom: 1px solid #efefef;
}

.page-index #header {
  opacity: 0;
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
  transition: all ease-in-out .5s;
}

.page-index #header.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

#header img {
  vertical-align: bottom;
}

#header .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

#header .inner:before {
  display: block;
  content: '';
  width: 220px;
}

#header .siteLogo {
  margin: 0;
}

#header .siteLogo img {
  height: 60px;
}

#header .headMenu {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  width: 220px;
  text-align: right;
}

#header .headMenu .loginBtn {
  margin-right: 26px;
}

.loginBtn a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  border: 1px solid #000;
  background: rgba(255, 255, 255, .6);
}

.loginBtn a:before {
  display: block;
  content: '';
  width: 26px;
  height: 24px;
  background: center center no-repeat url("../images/common/icon-login.png") #000;
  background-size: 16px auto;
}

.loginBtn a span {
  display: block;
  padding: 0 20px;
  line-height: 1;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.aboutLink {
  margin-top: 8px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  #header {
    background: rgba(255, 255, 255, .85);
    border-bottom: 1px solid #ddd;
  }
  #header .inner {
    height: 56px;
    padding: 0 3.14%;
  }
  #header .inner:before {
    width: 30%;
  }
  #header .siteLogo img {
    height: 36px;
  }
  #header .headMenu {
    width: 30%;
  }
  #header .headMenu .loginBtn {
    margin-right: 0;
  }
}

.navTrigger {
  width: 35px;
  height: 26px;
  cursor: pointer;
}

.navTrigger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 28px;
  height: 3px;
  background: #000;
  border-radius: 1px;
}

.navTrigger span:nth-child(1) {
  -webkit-transform: translate(-50%, -9px);
  transform: translate(-50%, -9px);
}

.navTrigger span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.navTrigger span:nth-child(3) {
  -webkit-transform: translate(-50%, 6px);
  transform: translate(-50%, 6px);
}

#gNav {
  position: fixed;
  top: 0;
  right: -40%;
  bottom: 0;
  width: 40%;
  background: rgba(0, 0, 0, .8);
  z-index: 100;
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: all .3s ease-in-out;
}

#gNav.is-active {
  right: 0;
}

#gNav ul {
  width: 100%;
  list-style: none;
  margin: 0 0 30px;
  padding-top: 30px;
  z-index: 1;
}

#gNav ul li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

#gNav ul a {
  display: inline-block;
  width: 100%;
  padding: 10px 30px;
  color: #fff;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
}

.closeBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  width: 50px;
  height: 50px;
  z-index: 5;
  cursor: pointer;
}

.closeBtn:before, .closeBtn:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
}

.closeBtn:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.closeBtn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  #gNav {
    right: -80%;
    width: 80%;
  }
  #gNav ul {
    padding-top: 15px;
  }
  #gNav ul a {
    width: 100%;
    padding: 10px 5%;
    font-size: 20px;
  }
  .closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 413px) {
  #gNav ul a {
    padding: 8px 8%;
    font-size: 16px;
  }
}

.footerNav {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto 80px;
}

.footerNav .navTab,
.footerNav .navTabContent {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

.footerNav .tabTitle {
  width: calc(50% - 8px);
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  font-size: 24px;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.footerNav .tabContent {
  width: calc(50% - 9px);
  margin-bottom: 15px;
}

.footerNav .tabContent a {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100px;
  margin-bottom: 15px;
  padding: 0 0 0 25px;
  font-size: 22px;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  border: 5px solid #000;
  background: center center no-repeat url("../images/common/f-bnr-bg.png") #000;
  background-size: cover;
}

.footerNav .tabContent a:before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: #000;
  z-index: 10;
}

.footerNav .tabContent a:hover {
  opacity: .6;
}

.footerNav .tabContent a.is-coming {
  pointer-events: none;
  color: #000;
}

.footerNav .tabContent a.is-coming:after {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  content: 'COMING SOON!!';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-left: 25px;
  font-size: 22px;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #444;
  background: rgba(255, 255, 255, .7);
}

.footerNav .tabContent.foot-ta2 a {
  border-color: #af0c00;
}

.footerNav .tabContent.foot-ta2 a:before {
  background-color: #af0c00;
}

.footerNav .tabContent.foot-yorke a {
  border-color: #006caf;
}

.footerNav .tabContent.foot-yorke a:before {
  background-color: #006caf;
}

.footerNav .fNavList01,
.footerNav .fNavList02 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 18px;
  list-style: none;
}

.footerNav .fNavList01 a,
.footerNav .fNavList02 a {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  font-size: 22px;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  background: center center no-repeat;
  background-size: cover;
}

.footerNav .fNavList01 a:hover,
.footerNav .fNavList02 a:hover {
  opacity: .6;
}

.footerNav .fNavList01 li {
  width: calc(50% - 9px);
}

.footerNav .fNavList01 li:first-child a {
  background-image: url("../images/common/f-bnr-y01.png");
}

.footerNav .fNavList01 li:last-child a {
  background-image: url("../images/common/f-bnr-y02.png");
}

.footerNav .fNavList02 li {
  width: calc(33.33% - 12px);
}

.footerNav .fNavList02 li:nth-child(1) a {
  background-image: url("../images/common/f-bnr-b01.png");
}

.footerNav .fNavList02 li:nth-child(2) a {
  background-image: url("../images/common/f-bnr-b02.png");
}

.footerNav .fNavList02 li:nth-child(3) a {
  background-image: url("../images/common/f-bnr-b03.png");
}

.footer {
  text-align: center;
}

.footer .fLogo {
  margin-bottom: 30px;
}

.footer .fLogo img {
  height: 60px;
  vertical-align: bottom;
}

.footer .fMenu {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 12px;
  list-style: none;
  margin: 0 auto 15px;
}

.footer .fMenu li + li:before {
  display: inline-block;
  content: ' | ';
  padding: 0 8px;
}

.footer .copyright {
  margin-bottom: 50px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .footerNav {
    padding: 0 3.14%;
    margin: 0 auto 40px;
  }
  .footerNav .tabTitle {
    width: 50%;
    margin-bottom: 0;
    padding: 5px;
    border-bottom: none;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    color: #fff;
  }
  .footerNav .tabTitle.nav-ta2 {
    background-color: #af0c00;
  }
  .footerNav .tabTitle.nav-yorke {
    background-color: #006caf;
  }
  .footerNav .tabContent {
    display: none;
    width: 100%;
    margin-bottom: 15px;
    padding: 3.14%;
  }
  .footerNav .tabContent.is-active {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
  }
  .footerNav .tabContent a {
    height: 75px;
    margin-bottom: 3.14%;
    padding: 0 0 0 25px;
    font-size: 22px;
    border: none;
  }
  .footerNav .tabContent a:before {
    width: 10px;
    height: 16px;
  }
  .footerNav .tabContent a:last-child {
    margin-bottom: 0;
  }
  .footerNav .tabContent a:hover {
    opacity: 1;
  }
  .footerNav .tabContent.foot-ta2 {
    background-color: #af0c00;
  }
  .footerNav .tabContent.foot-yorke {
    background-color: #006caf;
  }
  .footerNav .fNavList01,
  .footerNav .fNavList02 {
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-bottom: 12px;
  }
  .footerNav .fNavList01 a,
  .footerNav .fNavList02 a {
    font-size: 18px;
  }
  .footerNav .fNavList01 a:hover,
  .footerNav .fNavList02 a:hover {
    opacity: 1;
  }
  .footerNav .fNavList01 li {
    width: calc(50% - 6px);
  }
  .footerNav .fNavList01 li a {
    height: 70px;
  }
  .footerNav .fNavList02 li {
    width: calc(33.33% - 8px);
  }
  .footerNav .fNavList02 li a {
    height: 60px;
    font-size: 16px;
  }
  .footer .fLogo {
    margin-bottom: 15px;
  }
  .footer .fLogo img {
    width: 30%;
    height: auto;
  }
  .footer .fMenu {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer .copyright {
    margin-bottom: 30px;
    font-size: 11px;
  }
}

@media screen and (max-width: 414px) {
  .footer .fMenu li:nth-child(4):before {
    content: '';
  }
}

body {
  width: 100%;
  overflow-x: hidden;
}

#main {
  width: 100%;
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
}

.page-faq #main,
.page-regist #main,
.page-gallery #main {
  max-width: 750px;
  padding: 0;
}

.page-usrConfirm #main {
  max-width: 570px;
}

.page-common #main,
.page-mypage #main,
.page-candc #main,
.page-news #main,
.deepBlue-single #main,
.deepBlue-archives #main {
  max-width: 670px;
  padding: 0 10px;
}

.movie-archives #main {
  max-width: 1040px;
}

.noscript {
  display: none;
}

.fa {
  vertical-align: baseline;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  body {
    padding-top: 90px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block;
  }
  body {
    padding-top: 0;
  }
  body:not(.page-index) {
    padding-top: 56px;
  }
  #main {
    padding: 0 5%;
  }
  .page-common #main,
  .page-mypage #main,
  .page-usrConfirm #main,
  .page-regist #main,
  .page-faq #main,
  .page-candc #main,
  .page-gallery #main,
  .page-news #main,
  .movie-archives #main,
  .deepBlue-archives #main,
  .deepBlue-single #main {
    padding: 0 5%;
  }
}

/* Components style
-----------------------------------*/
.column {
  -webkit-flex-basis: 0;
  flex-basis: 0;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  padding: 10px;
}

.column.is-narrow {
  -webkit-flex: none;
  flex: none;
}

.column.is-full {
  -webkit-flex: none;
  flex: none;
  width: 100%;
}

.column.is-three-quarters {
  -webkit-flex: none;
  flex: none;
  width: 75%;
}

.column.is-two-thirds {
  -webkit-flex: none;
  flex: none;
  width: 66.6666%;
}

.column.is-half {
  -webkit-flex: none;
  flex: none;
  width: 50%;
}

.column.is-one-third {
  -webkit-flex: none;
  flex: none;
  width: 33.3333%;
}

.column.is-one-quarter {
  -webkit-flex: none;
  flex: none;
  width: 25%;
}

.column.is-offset-three-quarters {
  margin-left: 75%;
}

.column.is-offset-two-thirds {
  margin-left: 66.6666%;
}

.column.is-offset-half {
  margin-left: 50%;
}

.column.is-offset-one-third {
  margin-left: 33.3333%;
}

.column.is-offset-one-quarter {
  margin-left: 25%;
}

.column.is-1 {
  -webkit-flex: none;
  flex: none;
  width: 8.33333%;
}

.column.is-offset-1 {
  margin-left: 8.33333%;
}

.column.is-2 {
  -webkit-flex: none;
  flex: none;
  width: 16.66667%;
}

.column.is-offset-2 {
  margin-left: 16.66667%;
}

.column.is-3 {
  -webkit-flex: none;
  flex: none;
  width: 25%;
}

.column.is-offset-3 {
  margin-left: 25%;
}

.column.is-4 {
  -webkit-flex: none;
  flex: none;
  width: 33.33333%;
}

.column.is-offset-4 {
  margin-left: 33.33333%;
}

.column.is-5 {
  -webkit-flex: none;
  flex: none;
  width: 41.66667%;
}

.column.is-offset-5 {
  margin-left: 41.66667%;
}

.column.is-6 {
  -webkit-flex: none;
  flex: none;
  width: 50%;
}

.column.is-offset-6 {
  margin-left: 50%;
}

.column.is-7 {
  -webkit-flex: none;
  flex: none;
  width: 58.33333%;
}

.column.is-offset-7 {
  margin-left: 58.33333%;
}

.column.is-8 {
  -webkit-flex: none;
  flex: none;
  width: 66.66667%;
}

.column.is-offset-8 {
  margin-left: 66.66667%;
}

.column.is-9 {
  -webkit-flex: none;
  flex: none;
  width: 75%;
}

.column.is-offset-9 {
  margin-left: 75%;
}

.column.is-10 {
  -webkit-flex: none;
  flex: none;
  width: 83.33333%;
}

.column.is-offset-10 {
  margin-left: 83.33333%;
}

.column.is-11 {
  -webkit-flex: none;
  flex: none;
  width: 91.66667%;
}

.column.is-offset-11 {
  margin-left: 91.66667%;
}

.column.is-12 {
  -webkit-flex: none;
  flex: none;
  width: 100%;
}

.column.is-offset-12 {
  margin-left: 100%;
}

.column.is-order1 {
  -webkit-order: 1;
  order: 1;
}

.column.is-order2 {
  -webkit-order: 2;
  order: 2;
}

.column.is-order3 {
  -webkit-order: 3;
  order: 3;
}

.column.is-order4 {
  -webkit-order: 4;
  order: 4;
}

.column.is-order5 {
  -webkit-order: 5;
  order: 5;
}

.column.is-order6 {
  -webkit-order: 6;
  order: 6;
}

.column.is-order7 {
  -webkit-order: 7;
  order: 7;
}

.column.is-order8 {
  -webkit-order: 8;
  order: 8;
}

.column.is-order9 {
  -webkit-order: 9;
  order: 9;
}

.column.is-order10 {
  -webkit-order: 10;
  order: 10;
}

.column.is-order11 {
  -webkit-order: 11;
  order: 11;
}

.column.is-order12 {
  -webkit-order: 12;
  order: 12;
}

.columns {
  display: -webkit-flex;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}

.columns:last-child {
  margin-bottom: -10px;
}

.columns:not(:last-child) {
  margin-bottom: 10px;
}

.columns.is-centered {
  -webkit-justify-content: center;
  justify-content: center;
}

.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.columns.is-gapless:last-child {
  margin-bottom: 0;
}

.columns.is-gapless:not(:last-child) {
  margin-bottom: 20px;
}

.columns.is-gapless > .column {
  margin: 0;
  padding: 0;
}

.columns.is-multiline {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tile {
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  min-height: -webkit-min-content;
  min-height: min-content;
}

.tile.is-ancestor {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
}

.tile.is-ancestor:last-child {
  margin-bottom: -10px;
}

.tile.is-ancestor:not(:last-child) {
  margin-bottom: 10px;
}

.tile.is-child {
  margin: 0 !important;
}

.tile.is-parent {
  padding: 10px;
}

.tile.is-vertical {
  -webkit-flex-direction: column;
  flex-direction: column;
}

.tile.is-vertical > .tile.is-child:not(:last-child) {
  margin-bottom: 20px !important;
}

.tile:not(.is-child) {
  display: -webkit-flex;
  display: flex;
}

.tile.is-1 {
  -webkit-flex: none;
  flex: none;
  width: 8.33333%;
}

.tile.is-2 {
  -webkit-flex: none;
  flex: none;
  width: 16.66667%;
}

.tile.is-3 {
  -webkit-flex: none;
  flex: none;
  width: 25%;
}

.tile.is-4 {
  -webkit-flex: none;
  flex: none;
  width: 33.33333%;
}

.tile.is-5 {
  -webkit-flex: none;
  flex: none;
  width: 41.66667%;
}

.tile.is-6 {
  -webkit-flex: none;
  flex: none;
  width: 50%;
}

.tile.is-7 {
  -webkit-flex: none;
  flex: none;
  width: 58.33333%;
}

.tile.is-8 {
  -webkit-flex: none;
  flex: none;
  width: 66.66667%;
}

.tile.is-9 {
  -webkit-flex: none;
  flex: none;
  width: 75%;
}

.tile.is-10 {
  -webkit-flex: none;
  flex: none;
  width: 83.33333%;
}

.tile.is-11 {
  -webkit-flex: none;
  flex: none;
  width: 91.66667%;
}

.tile.is-12 {
  -webkit-flex: none;
  flex: none;
  width: 100%;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="number"],
textarea {
  width: 100%;
  padding: .8em 1em;
  font-size: 1em;
}

.fieldset.is-error input[type="text"],
fieldset.is-error input[type="text"], .fieldset.is-error
input[type="password"],
fieldset.is-error
input[type="password"], .fieldset.is-error
input[type="tel"],
fieldset.is-error
input[type="tel"], .fieldset.is-error
input[type="email"],
fieldset.is-error
input[type="email"], .fieldset.is-error
input[type="url"],
fieldset.is-error
input[type="url"], .fieldset.is-error
input[type="search"],
fieldset.is-error
input[type="search"], .fieldset.is-error
input[type="number"],
fieldset.is-error
input[type="number"], .fieldset.is-error
textarea,
fieldset.is-error
textarea {
  border: 1px solid #ffb0bd;
  background: #ffedf5;
}

input[type="checkbox"] {
  margin-right: .5em;
}

.errText {
  display: inline-block;
  width: 100%;
  margin-top: .5em;
  margin-bottom: 0;
  color: #e73656;
  font-size: .8em;
  text-align: right;
}

.radio {
  display: inline-block;
  min-width: 6em;
  margin: 0 .7em 0 0;
  padding: .6em .8em;
  border-radius: 6px;
  font-weight: normal;
  font-size: .9em;
  color: #666;
  background: #fff;
  border: 1px solid #ccc;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.radio input {
  margin-right: .5em;
}

.radio.is-error {
  color: rgba(175, 12, 0, .4);
  border-color: #ffb0bd;
  background: #ffedf5;
}

.radio.is-current {
  color: #000;
  border: 1px solid #000;
}

.radio.is-current.is-error {
  color: #af0c00;
  border-color: #af0c00;
  background: #ffd3e8;
}

.select {
  display: inline-block;
  width: 100%;
  height: 44px;
  padding: 0;
  background: #fff;
  font-weight: normal;
}

.select select {
  position: relative;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: .3em 1.7em .3em .8em;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1);
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1);
  border-radius: 3px;
  font-size: 15px;
  border: 1px solid #ccc;
  z-index: 1;
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-overflow: '';
  appearance: none;
}

.select select::-ms-expand {
  display: none;
}

.select:before {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 10px;
  height: 6px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-width: 6px 5px 0;
  border-top: 6px solid #333;
  margin-top: -3px;
  z-index: 0;
}

.fieldset.is-error .select,
fieldset.is-error .select {
  border-color: #ffb0bd;
  background: #ffedf5;
}

.require {
  display: inline-block;
  padding: 0 .3em;
  margin-left: .5em;
  font-size: 9px;
  font-weight: normal;
  color: #f60;
  border: 1px solid #f60;
  border-radius: 4px;
  vertical-align: middle;
  background: #fff;
}

.is-android .require {
  padding-top: .2em;
  vertical-align: text-bottom;
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
}

.is-android .radio {
  white-space: nowrap;
}

.is-android .radio input {
  vertical-align: text-bottom;
}

#ui-datepicker-div {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  margin: 0 0 10px 0;
  padding: 3px;
  border: 1px solid #bbb;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

#ui-datepicker-div .ui-datepicker {
  /* 月プルダウンの変更 */
}

#ui-datepicker-div .ui-datepicker-calendar {
  width: 100%;
}

#ui-datepicker-div .ui-datepicker-header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  background: #efefef;
  border: 1px solid #ddd;
  border-radius: 6px;
}

#ui-datepicker-div .ui-datepicker-header:before, #ui-datepicker-div .ui-datepicker-header:after {
  display: none;
}

#ui-datepicker-div .ui-datepicker-prev, #ui-datepicker-div .ui-datepicker-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 2em;
  min-width: 2em;
  margin: 0;
  text-align: center;
}

#ui-datepicker-div .ui-datepicker-prev span, #ui-datepicker-div .ui-datepicker-next span {
  display: none;
}

#ui-datepicker-div .ui-datepicker-prev:hover, #ui-datepicker-div .ui-datepicker-next:hover {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

#ui-datepicker-div .ui-datepicker-prev:before, #ui-datepicker-div .ui-datepicker-next:before {
  display: inline-block;
  color: #333;
  display: inline-block;
  speak: none;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
}

#ui-datepicker-div .ui-datepicker-prev {
  -webkit-order: 1;
  order: 1;
}

#ui-datepicker-div .ui-datepicker-prev:before {
  content: \f137;
}

#ui-datepicker-div .ui-datepicker-next {
  -webkit-order: 3;
  order: 3;
}

#ui-datepicker-div .ui-datepicker-next:before {
  content: \f138;
}

#ui-datepicker-div .ui-datepicker-title {
  -webkit-order: 2;
  order: 2;
  width: 100%;
  font-weight: bold;
  margin: 0;
}

#ui-datepicker-div .ui-datepicker-year {
  padding: 3px 0;
  margin-right: 5px;
  width: 70px;
}

#ui-datepicker-div .ui-datepicker-month {
  padding: 3px 0;
  margin-left: 5px;
  width: 56px;
}

#ui-datepicker-div .ui-datepicker-calendar {
  margin: 0;
}

#ui-datepicker-div .ui-datepicker-calendar thead, #ui-datepicker-div .ui-datepicker-calendar tbody, #ui-datepicker-div .ui-datepicker-calendar th {
  background: #fff;
}

#ui-datepicker-div .ui-datepicker-calendar thead th {
  text-align: center;
  background: none;
  color: #000;
  line-height: 1;
}

#ui-datepicker-div .ui-datepicker-calendar th, #ui-datepicker-div .ui-datepicker-calendar td {
  text-align: center;
}

#ui-datepicker-div .ui-datepicker-calendar td span {
  display: inline-block;
  text-align: center;
}

#ui-datepicker-div .ui-datepicker-calendar td a {
  display: inline-block;
  width: 100%;
  text-align: center;
  border: 1px solid #f9f9f9;
  background: #f9f9f9;
  font-size: 13px;
}

#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight {
  border-color: #666;
}

#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active {
  color: #fff;
  font-weight: bold;
  border-color: #666;
  background: #666;
}

#ui-datepicker-div .ui-datepicker-calendar td.ui-state-disabled span {
  opacity: .5;
}

@media screen and (max-width: 375px) {
  .require {
    font-size: 11px;
  }
  .radio {
    font-size: 1em;
  }
}

@media screen and (min-width: 320px) {
  .require {
    font-size: 9px;
  }
  .radio {
    font-size: 11px;
  }
  .formList dt {
    font-size: 12px;
  }
  .formList dt small {
    font-size: 10px;
  }
  .formList > dt {
    padding: .4em 1em;
  }
}

.button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 20px 35px;
  margin: 0 auto;
  white-space: nowrap;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid #000;
  text-decoration: none !important;
  background: transparent;
  transition: all .2s ease;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.button span {
  display: inline-block;
  padding: 0 10px;
  font-style: italic;
}

.button:hover {
  opacity: .6;
}

.button.is-small {
  font-size: 11px;
  line-height: 16px;
  padding: 10px 6px;
}

.button.is-medium {
  font-size: 1em;
  padding: .8em 2em;
}

.button.is-large {
  font-size: 22px;
  padding-left: 20px;
  padding-right: 20px;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.button strong {
  color: inherit;
}

.button small {
  display: block;
  font-size: 11px;
  line-height: 1;
  margin-top: 5px;
}

.button .icon:first-child,
.button .tag:first-child {
  margin-left: -2px;
  margin-right: 2px;
}

.button .icon:last-child,
.button .tag:last-child {
  margin-left: 2px;
  margin-right: -2px;
}

.button:hover, .button:focus, .button.is-active {
  text-decoration: none;
}

.button:active {
  box-shadow: inset 0 1px 2px rgba(17, 17, 17, .2);
}

.button.button-career {
  width: 100% !important;
  padding: .8em 0;
  border-radius: 5px;
}

.button.is-white {
  background-color: #fff;
  border-color: transparent;
  color: #111;
}

.button.is-white:hover, .button.is-white:focus, .button.is-white.is-active {
  background-color: #e6e6e6;
  border-color: transparent;
  color: #111;
}

.button.is-white:active {
  border-color: transparent;
}

.button.is-white.is-inverted {
  background-color: #111;
  color: #fff;
}

.button.is-white.is-loading:after {
  border-color: transparent transparent #111 #111 !important;
}

.button.is-white.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button.is-white.is-outlined:hover, .button.is-white.is-outlined:focus {
  background-color: #fff;
  border-color: #fff;
  color: #111;
}

.button.is-black {
  background-color: #111;
  border-color: transparent;
  color: #fff;
}

.button.is-black:hover, .button.is-black:focus, .button.is-black.is-active {
  background-color: black;
  border-color: transparent;
  color: #fff;
}

.button.is-black:active {
  border-color: transparent;
}

.button.is-black.is-inverted {
  background-color: #fff;
  color: #111;
}

.button.is-black.is-loading:after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-black.is-outlined {
  background-color: transparent;
  border-color: #111;
  color: #111;
}

.button.is-black.is-outlined:hover, .button.is-black.is-outlined:focus {
  background-color: #111;
  border-color: #111;
  color: #fff;
}

.button.is-light {
  background-color: #b2b6b9;
  border-color: transparent;
  color: #69707a;
}

.button.is-light:hover, .button.is-light:focus, .button.is-light.is-active {
  background-color: #979da1;
  border-color: transparent;
  color: #69707a;
}

.button.is-light:active {
  border-color: transparent;
}

.button.is-light.is-inverted {
  background-color: #69707a;
  color: #b2b6b9;
}

.button.is-light.is-loading:after {
  border-color: transparent transparent #69707a #69707a !important;
}

.button.is-light.is-outlined {
  background-color: transparent;
  border-color: #b2b6b9;
  color: #b2b6b9;
}

.button.is-light.is-outlined:hover, .button.is-light.is-outlined:focus {
  background-color: #b2b6b9;
  border-color: #b2b6b9;
  color: #69707a;
}

.button.is-dark {
  background-color: #69707a;
  border-color: transparent;
  color: #b2b6b9;
}

.button.is-dark:hover, .button.is-dark:focus, .button.is-dark.is-active {
  background-color: #51575f;
  border-color: transparent;
  color: #b2b6b9;
}

.button.is-dark:active {
  border-color: transparent;
}

.button.is-dark.is-inverted {
  background-color: #b2b6b9;
  color: #69707a;
}

.button.is-dark.is-loading:after {
  border-color: transparent transparent #b2b6b9 #b2b6b9 !important;
}

.button.is-dark.is-outlined {
  background-color: transparent;
  border-color: #69707a;
  color: #69707a;
}

.button.is-dark.is-outlined:hover, .button.is-dark.is-outlined:focus {
  background-color: #69707a;
  border-color: #69707a;
  color: #b2b6b9;
}

.button.is-primary {
  background-color: #006caf;
  border-color: transparent;
  color: #fff;
}

.button.is-primary:hover, .button.is-primary:focus, .button.is-primary.is-active {
  background-color: #004d7c;
  border-color: transparent;
  color: #fff;
}

.button.is-primary:active {
  border-color: transparent;
}

.button.is-primary.is-inverted {
  background-color: #fff;
  color: #006caf;
}

.button.is-primary.is-loading:after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #006caf;
  color: #006caf;
}

.button.is-primary.is-outlined:hover, .button.is-primary.is-outlined:focus {
  background-color: #006caf;
  border-color: #006caf;
  color: #fff;
}

.button.is-info {
  background-color: #3f78c6;
  border-color: transparent;
  color: #fff;
}

.button.is-info:hover, .button.is-info:focus, .button.is-info.is-active {
  background-color: #3060a2;
  border-color: transparent;
  color: #fff;
}

.button.is-info:active {
  border-color: transparent;
}

.button.is-info.is-inverted {
  background-color: #fff;
  color: #3f78c6;
}

.button.is-info.is-loading:after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-info.is-outlined {
  background-color: transparent;
  border-color: #3f78c6;
  color: #3f78c6;
}

.button.is-info.is-outlined:hover, .button.is-info.is-outlined:focus {
  background-color: #3f78c6;
  border-color: #3f78c6;
  color: #fff;
}

.button.is-success {
  background-color: #78bc1e;
  border-color: transparent;
  color: #fff;
}

.button.is-success:hover, .button.is-success:focus, .button.is-success.is-active {
  background-color: #5c9017;
  border-color: transparent;
  color: #fff;
}

.button.is-success:active {
  border-color: transparent;
}

.button.is-success.is-inverted {
  background-color: #fff;
  color: #78bc1e;
}

.button.is-success.is-loading:after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-success.is-outlined {
  background-color: transparent;
  border-color: #78bc1e;
  color: #78bc1e;
}

.button.is-success.is-outlined:hover, .button.is-success.is-outlined:focus {
  background-color: #78bc1e;
  border-color: #78bc1e;
  color: #fff;
}

.button.is-warning {
  background-color: #fad00d;
  border-color: transparent;
  color: findColorInvert(#fad00d);
}

.button.is-warning:hover, .button.is-warning:focus, .button.is-warning.is-active {
  background-color: #d0ac04;
  border-color: transparent;
  color: findColorInvert(#fad00d);
}

.button.is-warning:active {
  border-color: transparent;
}

.button.is-warning.is-inverted {
  background-color: findColorInvert(#fad00d);
  color: #fad00d;
}

.button.is-warning.is-loading:after {
  border-color: transparent transparent findColorInvert(#fad00d) findColorInvert(#fad00d) !important;
}

.button.is-warning.is-outlined {
  background-color: transparent;
  border-color: #fad00d;
  color: #fad00d;
}

.button.is-warning.is-outlined:hover, .button.is-warning.is-outlined:focus {
  background-color: #fad00d;
  border-color: #fad00d;
  color: findColorInvert(#fad00d);
}

.button.is-danger {
  background-color: #af0c00;
  border-color: transparent;
  color: #fff;
}

.button.is-danger:hover, .button.is-danger:focus, .button.is-danger.is-active {
  background-color: #7c0900;
  border-color: transparent;
  color: #fff;
}

.button.is-danger:active {
  border-color: transparent;
}

.button.is-danger.is-inverted {
  background-color: #fff;
  color: #af0c00;
}

.button.is-danger.is-loading:after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-danger.is-outlined {
  background-color: transparent;
  border-color: #af0c00;
  color: #af0c00;
}

.button.is-danger.is-outlined:hover, .button.is-danger.is-outlined:focus {
  background-color: #af0c00;
  border-color: #af0c00;
  color: #fff;
}

.button.is-white {
  border-color: #ccc;
}

.button.is-dark {
  color: #fff;
}

.button.is-link {
  background-color: transparent;
  border-color: transparent;
  color: #111;
  text-decoration: underline;
}

.button.is-link:hover, .button.is-link:focus {
  background-color: #b2b6b9;
  color: #111;
}

.button.is-next {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  padding-right: 0;
  padding-left: 0;
}

.button.is-next span {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}

.button.is-next:before, .button.is-next:after {
  display: inline-block;
  speak: none;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  width: 1.5em;
  min-width: 1.5em;
  content: '';
  text-align: center;
}

.button.is-next:after {
  content: \f105;
}

.button.is-jp {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal !important;
}

.button.is-jp i,
.button.is-jp span {
  padding: 0;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal !important;
}

.button[disabled], .button.is-disabled {
  opacity: 0.5;
}

.button.is-fullWidth {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.buttonSingleColumn {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}

.buttonSingleColumn + .buttonThreeBlock {
  margin-top: -30px;
  margin-bottom: 30px;
}

.buttonTwoBlock {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 30px;
}

.buttonTwoBlock > * {
  width: 48%;
  text-align: center;
}

.buttonTwoBlock > * .button {
  margin: 0;
}

.buttonTwoOneBlock {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

.buttonTwoOneBlock > * {
  margin-bottom: 0;
}

.buttonTwoOneBlock > *:first-child {
  width: 64.66%;
  text-align: left;
}

.buttonTwoOneBlock > *:last-child {
  width: 31.33%;
  text-align: right;
}

.buttonTwoOneBlock > * .button {
  margin: 0;
}

.buttonOneTwoBlock {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

.buttonOneTwoBlock > * {
  margin-bottom: 0;
}

.buttonOneTwoBlock > *:first-child {
  width: 31.33%;
  text-align: left;
}

.buttonOneTwoBlock > *:last-child {
  width: 64.66%;
  text-align: right;
}

.buttonOneTwoBlock > * .button {
  margin: 0;
}

.buttonThreeBlock {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 30px;
}

.buttonThreeBlock > * {
  margin-bottom: 0;
  width: 31.33%;
}

.buttonThreeBlock > *:first-child {
  text-align: left;
}

.buttonThreeBlock > *:nth-child(3n+2) {
  text-align: center;
}

.buttonThreeBlock > *:last-child {
  text-align: right;
}

.buttonThreeBlock > * .button {
  width: 90%;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .button {
    width: 100%;
    padding: .8em .5em;
    font-size: 20px;
  }
  .button:hover {
    opacity: 1;
  }
  .button.is-medium {
    padding: .8em .5em;
  }
  .buttonSingleColumn .button {
    width: 100%;
    min-width: 1px !important;
  }
  .buttonTwoBlock > * .button {
    width: 98%;
    min-width: 1px !important;
  }
  .buttonThreeBlock {
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .buttonThreeBlock > * {
    margin-bottom: 0;
    padding-bottom: 10px;
    width: 100%;
  }
  .buttonThreeBlock > * .button {
    width: 100%;
    margin: 0;
  }
}

.modal {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -webkit-align-items: center;
  align-items: center;
  display: none;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 100000;
  padding: 0 5.867%;
  /**
	 * Movieモーダル
	 */
}

.modal.is-active {
  display: -webkit-flex;
  display: flex;
}

.modal .delete {
  position: absolute;
  right: -22px;
  top: -22px;
  display: inline-block;
  width: 44px;
  height: 44px;
  vertical-align: top;
  background-color: #111;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 100;
}

.modal .delete:before, .modal .delete:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  margin-left: -25%;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 50%;
}

.modal .delete:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal .delete:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(17, 17, 17, .75);
}

.modal-container {
  width: 100%;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  background: #fff;
}

.modal-content .message {
  width: 100%;
  max-height: calc(100vh - 100px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content .message-body {
  padding: 30px;
}

.modal-content .message-body > *:last-child {
  margin-bottom: 0 !important;
}

.modal-content .message-header {
  padding: 20px 30px 0;
}

.modal.modalMovie .modal-content .message-body {
  padding: 0;
  border: 1px solid #fff;
}

.modal.modalComment {
  color: #311b00;
}

.modal.modalComment p:last-child {
  margin-bottom: 0 !important;
}

.modal.modalComment hr {
  margin-bottom: 25px;
}

.modal.modalComment .message-body {
  padding: 10px 30px 30px;
}

.modal.modalComment .message-header {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
}

.modal.modalComment h5 {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  color: #fff;
  background: #311b00;
}

.modal.modalComment .prev,
.modal.modalComment .next {
  position: absolute;
  top: 50%;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  font-size: 25px;
  line-height: 1;
  color: #311b00;
  background: #fff;
  border: 2px solid #311b00;
  border-radius: 22px;
  -webkit-appearance: none;
  z-index: 100;
  cursor: pointer;
}

.modal.modalComment .prev {
  left: -1em;
}

.modal.modalComment .next {
  right: -1em;
}

.modalMovie .modal-content {
  max-width: 1280px;
}

.modalMovie .modal-content .message-body {
  padding: 0;
}

.modalMovie .modal-content .message-body .video-container {
  border: none;
  padding-bottom: 55.25%;
  margin: 0;
}

@media screen and (max-width: 667px) {
  .modal .delete {
    width: 38px;
    height: 38px;
    position: absolute;
    right: -16px;
    top: -16px;
  }
}

/* @ pagination
// ------------------------------------------------------------ */
.pagination {
  clear: both;
  width: 100%;
  margin: 0 0 100px;
  padding-top: 40px;
  text-align: center;
}

.pagination ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.pagination ul li {
  display: inline-block;
  list-style: none;
  padding: 0 4px;
}

.pagination ul li a {
  display: inline-block;
  width: 2.2em;
  height: 2.2em;
  font-size: 1.2em;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 2.1;
  outline: none;
  background: #fff;
  padding: 0;
  text-align: center;
  border: solid 1px #000;
  color: #000;
  text-decoration: none;
}

.pagination ul li a:hover {
  opacity: .2;
}

.pagination ul li a.is-current {
  color: #fff !important;
  background: #000;
}

.pagination ul li a.is-current:hover {
  opacity: 1;
}

.pagination ul li.page-prev a,
.pagination ul li.page-next a {
  color: #333;
}

@media screen and (max-width: 767px) {
  .pagination {
    padding-top: 10px;
    margin: 0 0 80px;
  }
}

@media screen and (max-width: 320px) {
  .pagination {
    padding-top: 0;
    margin: 0 0 50px;
  }
  .pagination ul li a {
    font-size: .875em;
  }
}

/* @ pager
// ------------------------------------------------------------ */
.pager {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  clear: both;
  width: 100%;
  max-width: 750px;
  margin: 0 auto 100px;
  padding-top: 40px;
  text-align: center;
}

.pager-prev, .pager-list, .pager-next {
  width: 31%;
  max-width: 150px;
}

.pager-prev a, .pager-list a, .pager-next a {
  display: inline-block;
  width: 100%;
  height: 2.2em;
  font-size: 1.2em;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 2.1;
  outline: none;
  background: #000;
  padding: 0;
  text-align: center;
  border: solid 1px #000;
  color: #fff;
  text-decoration: none !important;
}

.pager-prev a:before,
.pager-next a:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -55%);
  transform: translate(0, -55%);
  color: #fff;
}

.pager-prev a:before {
  content: '«';
  left: 10px;
}

.pager-next a:before {
  content: '»';
  right: 10px;
}

@media screen and (max-width: 767px) {
  .pager {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto 70px;
  }
  .pager-prev, .pager-list, .pager-next {
    width: 49%;
    max-width: 100%;
    margin-bottom: 2%;
  }
  .pager-prev a, .pager-list a, .pager-next a {
    font-size: 1em;
  }
  .pager-prev {
    -webkit-order: 1;
    order: 1;
  }
  .pager-list {
    -webkit-order: 3;
    order: 3;
    width: 100%;
  }
  .pager-next {
    -webkit-order: 2;
    order: 2;
  }
}

@media screen and (max-width: 320px) {
  .pager {
    padding-top: 0;
    margin: 0 auto 50px;
  }
}

.touchlink {
  cursor: pointer;
}

.postImage {
  z-index: 10;
  margin-bottom: 1em;
}

.postImage.is-left {
  float: left;
}

.postImage.is-right {
  float: right;
}

.postImage.is-center {
  margin: 0 auto;
}

.postImage.is-1 {
  width: 100%;
  padding: 0 10px;
}

.postImage.is-2 {
  width: 50%;
  padding: 0 10px;
}

.postImage.is-3 {
  width: 33.33%;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .postImage.is-1 {
    padding: 0;
  }
  .postImage.is-2, .postImage.is-3 {
    width: 100%;
    padding: 0;
  }
}

/* View style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
.keyVisual {
  width: 100%;
  padding-top: 33.3%;
  background: center center no-repeat url("../images/index/index-am-pc.jpg?1");
  background-size: cover;
  opacity: 0;
  transition: all ease-in-out 1s;
}

.keyVisual.is-view {
  opacity: 1;
}

.keyVisual.is-am {
  background-image: url("../images/index/index-am-pc.jpg?1");
}

.keyVisual.is-pm {
  background-image: url("../images/index/index-pm-pc.jpg?1");
}

.keyVisual.is-mn {
  background-image: url("../images/index/index-mn-pc.jpg?1");
}

.keyVisual .loginBtn,
.keyVisual .aboutLink {
  opacity: 0;
  transition: all ease-in-out .5s;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}

.keyVisual .loginBtn.is-view,
.keyVisual .aboutLink.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.indexBnr {
  width: 100%;
  margin-bottom: 0;
}

.indexBnr ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  list-style: none;
}

.indexBnr ul li {
  width: 33.33%;
  max-width: 340px;
  padding: 10px 10px;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}

.indexBnr ul li:last-child {
  margin-bottom: 0;
}

.indexBnr ul li.is-view {
  opacity: 1;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.indexBnr img {
  border: 1px solid #fff;
}

.indexBnr.has-4 ul li, .indexBnr.has-7 ul li {
  width: 25%;
}

.indexNews {
  width: 100%;
  margin-bottom: 100px;
}

.indexNews .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.indexNews .moreLink {
  width: 100%;
  padding-top: 30px;
  text-align: center;
}

.newsList {
  width: 50%;
  margin-bottom: 35px;
}

.newsList:nth-child(odd) {
  padding-right: 16px;
}

.newsList:nth-child(even) {
  padding-left: 16px;
}

.newsList a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

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

.newsListFigure {
  width: 40%;
  padding-right: 20px;
}

.newsListDetails {
  width: 60%;
}

.newsList .catName {
  font-size: 18px;
  font-weight: 500;
}

.newsList .title {
  margin-bottom: 10px;
}

.newsList .more {
  margin-bottom: 0;
  text-align: right;
}

.indexLogin {
  width: 100%;
  padding: 0;
  text-align: center;
}

.indexLogin .loginBtn a {
  display: -webkit-flex;
  display: flex;
  font-size: 20px;
  width: 50%;
  margin: 0 auto 5px;
  background: white;
}

.indexLogin .loginBtn a:before {
  width: 40px;
  height: 36px;
  background-size: 20px auto;
}

.indexLogin .loginBtn a span {
  width: calc(100% - 40px);
  padding: 0;
  text-align: center;
  text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff;
}

.indexLogin .aboutLink {
  margin-top: 0;
  font-size: 12px;
  font-weight: 600;
}

.is-am .indexLogin .aboutLink a {
  color: #000;
  text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff;
}

.is-pm .indexLogin .aboutLink a {
  color: #000;
  text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff;
}

.is-mn .indexLogin .aboutLink a {
  color: #000;
  text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff;
}

@media screen and (max-width: 860px) {
  .indexBnr.has-1, .indexBnr.has-2, .indexBnr.has-4 {
    padding-top: 20px;
    margin-bottom: 50px;
  }
  .indexBnr.has-1 ul li, .indexBnr.has-2 ul li, .indexBnr.has-4 ul li {
    width: 50%;
    max-width: 50%;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  .indexBnr.has-1 ul li.is-view, .indexBnr.has-2 ul li.is-view, .indexBnr.has-4 ul li.is-view {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .indexBnr.has-5, .indexBnr.has-6, .indexBnr.has-7 {
    padding-top: 10px;
  }
  .indexBnr.has-5 ul li, .indexBnr.has-6 ul li, .indexBnr.has-7 ul li {
    padding: 5px;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  .indexBnr.has-5 ul li.is-view, .indexBnr.has-6 ul li.is-view, .indexBnr.has-7 ul li.is-view {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .indexBnr.has-7 ul li {
    width: 33.33%;
  }
}

@media screen and (max-width: 767px) {
  .keyVisual {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 102vh;
    padding-top: 30vh;
  }
  .is-iphone.is-safari .keyVisual {
    height: calc(102vh - 75px);
  }
  .keyVisual.is-landscape {
    transition: all ease-in-out .4s;
    height: 170vw !important;
  }
  .keyVisual.is-am {
    background-image: url("../images/index/index-am-sp.jpg?1");
  }
  .keyVisual.is-pm {
    background-image: url("../images/index/index-pm-sp.jpg?1");
  }
  .keyVisual.is-mn {
    background-image: url("../images/index/index-mn-sp.jpg?1");
  }
  .indexBnr {
    margin-bottom: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .indexBnr ul {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 3.14%;
    list-style: none;
  }
  .indexBnr ul li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 0 4.5%;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  .indexBnr ul li:last-child {
    margin-bottom: 0;
  }
  .indexBnr ul li.is-view {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .indexBnr img {
    border: none;
  }
  .indexBnr.has-1, .indexBnr.has-2, .indexBnr.has-4, .indexBnr.has-5, .indexBnr.has-6, .indexBnr.has-7 {
    padding-top: 0;
    margin-bottom: 0;
  }
  .indexBnr.has-1 ul li, .indexBnr.has-2 ul li, .indexBnr.has-4 ul li, .indexBnr.has-5 ul li, .indexBnr.has-6 ul li, .indexBnr.has-7 ul li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  .indexBnr.has-1 ul li.is-view, .indexBnr.has-2 ul li.is-view, .indexBnr.has-4 ul li.is-view, .indexBnr.has-5 ul li.is-view, .indexBnr.has-6 ul li.is-view, .indexBnr.has-7 ul li.is-view {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .indexNews {
    margin-bottom: 60px;
  }
  .indexNews .inner {
    padding: 0 3.14%;
  }
  .indexNews .moreLink {
    width: 100%;
    padding-top: 30px;
    text-align: center;
  }
  .newsList {
    width: 100%;
    margin-bottom: 4.5%;
  }
  .newsList:nth-child(odd) {
    padding-right: 0;
  }
  .newsList:nth-child(even) {
    padding-left: 0;
  }
  .newsList a:hover {
    opacity: 1;
  }
  .newsList a:after {
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    content: '»';
    font-size: 30px;
    -webkit-transform: translate(30%, -60%);
    transform: translate(30%, -60%);
    line-height: 1;
  }
  .newsListFigure {
    width: 30%;
    padding-right: .8em;
  }
  .newsListDetails {
    width: calc(70% - 1em);
  }
  .newsList .catName {
    font-size: 15px;
  }
  .newsList .title {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 200;
    line-height: 1.4;
  }
  .newsList .more {
    display: none;
  }
}

@media screen and (max-width: 413px) {
  .indexLogin .loginBtn a {
    width: 50%;
  }
}

@media screen and (max-width: 374px) {
  .indexLogin .loginBtn a {
    width: 60%;
  }
}

body.is-eventNone * {
  pointer-events: none !important;
}

.openLoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 10000;
  transition: all linear 1s;
}

.openLoader.is-hide {
  opacity: 0;
  pointer-events: none;
}

.openLoader .loader {
  font-size: 1em;
  z-index: 10000;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5em;
  height: 5em;
  margin: -2.5em 0 0 -2.5em;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.4em solid rgba(102, 102, 102, .3);
  border-right: 0.4em solid rgba(102, 102, 102, .3);
  border-bottom: 0.4em solid rgba(102, 102, 102, .3);
  border-left: 0.4em solid #666;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  transition: all ease-in-out .5s;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
}

.loader.is-active {
  z-index: 100;
  opacity: .5;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.in-view {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  transition: all ease-in-out .4s;
}

.in-view.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.pageTitle {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 33.3vw;
  padding-top: 70px;
  margin-bottom: 50px;
  background: center center no-repeat url("../images/common/common-pc.jpg");
  background-size: cover;
  color: #fff;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  text-shadow: 1px 1px 2px #000, 1px -1px 2px #000, -1px 1px 2px #000, -1px -1px 2px #000;
}

.pageTitle span {
  display: inline-block;
  padding: 0 .5em .3em;
  border-bottom: 2px solid #fff;
}

.pageTitle span.pageTitleImg {
  width: 100%;
  max-width: 480px;
  padding: .2em 0 0;
  border: none;
  text-align: center;
}

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

.title01 span {
  display: inline-block;
  padding: 0 10px 5px;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 300;
  border-bottom: 1px solid #000;
}

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

.postTitle00 span {
  display: inline-block;
  padding: 0 30px 5px;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 300;
  border-bottom: 1px solid #000;
}

.postTitle01 {
  width: 100%;
  padding-left: 15px;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: .8em;
}

.postTitle01:before {
  display: block;
  content: '';
  position: absolute;
  top: 20%;
  right: auto;
  bottom: 20%;
  left: 0;
  background: #c5e2ff;
  width: 6px;
}

.postTitle01 time {
  display: inline-block;
  color: #999;
  font-weight: 300;
  font-size: 14px;
}

.postTitle02 {
  width: 100%;
  font-size: 16px;
  margin-bottom: 1em;
  padding-left: 1em;
  font-weight: 500;
}

.postTitle02:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  background: #000;
  width: .6em;
  height: 1px;
}

.news-list {
  width: 100%;
  margin: 0 0 30px;
  list-style: none;
}

.news-list a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  padding: 12px 10px 12px 0;
  border-bottom: 1px solid #000;
}

.news-list a:after {
  content: '>';
  -webkit-transform: scale(0.6, 1.6);
  transform: scale(0.6, 1.6);
  margin-left: 1em;
}

.news-list a > span {
  line-height: 1.2;
}

.news-list a time {
  display: inline-block;
  margin-left: .5em;
  font-size: .9em;
  color: #666;
}

.news-list li:first-child a {
  border-top: 1px solid #000;
}

.careerList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  margin: 0 0 40px;
}

.careerList li {
  width: 31%;
}

.careerList li a {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border: 2px solid #999;
}

.careerList li a:hover {
  opacity: .5;
}

.creditForm {
  padding: 0 20px;
}

.creditForm .fieldset {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.creditForm .fieldset legend {
  display: block;
  width: 8em;
  font-weight: bold;
}

.creditForm .fieldset p,
.creditForm .fieldset input,
.creditForm .fieldset .select {
  display: block;
  margin: 0;
  width: calc(100% - 8em);
}

.creditForm .fieldset p {
  font-size: 1.2em;
}

.creditForm .fieldset .errText {
  text-align: right;
  font-size: 1em;
}

.creditForm .fieldset:last-of-type {
  margin-bottom: 30px;
}

.creditForm .fieldset.name input[type='text'] {
  width: calc(49% - 4em);
}

.creditForm .fieldset.name input[type='text'] + input[type='text'] {
  margin-left: 2%;
}

.usrInputForm {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

.usrInputForm .fieldset {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

.usrInputForm .fieldset + .fieldset {
  margin-top: 15px;
}

.usrInputForm .fieldset:last-of-type {
  margin-bottom: 40px;
}

.usrInputForm .fieldset legend {
  width: 9em;
  font-weight: bold;
}

.usrInputForm .fieldset .value {
  width: calc(100% - 9em);
}

.usrInputForm .fieldset.usrBirth .value {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.usrInputForm .fieldset.usrBirth .value .select {
  width: 5em;
  margin-left: .5em;
}

.usrInputForm .fieldset.usrBirth .value .select:first-child {
  width: 6em;
  margin-left: 0;
}

.usrInputForm .fieldset.usrSex .value .select {
  width: 6em;
}

.usrInputForm .buttonSingleColumn {
  width: 100%;
}

.usrForm {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

.usrForm .fieldset {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

.usrForm .fieldset dt, .usrForm .fieldset dd {
  text-align: center;
  font-size: 1.1em;
}

.usrForm .fieldset dt {
  background: #000;
  margin-bottom: 10px;
  color: #fff;
}

.usrForm .fieldset dt:after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 2%;
  display: block;
  content: '';
  width: 96%;
  border-bottom: 1px solid #000;
}

.usrForm .fieldset:last-of-type {
  margin-bottom: 40px;
}

.usrForm .usrNum, .usrForm .usrHN,
.usrForm .usrName, .usrForm .usrKana,
.usrForm .usrBirth, .usrForm .usrSex, .usrForm .usrTel {
  width: 32.33%;
}

.usrForm .usrZip {
  width: 24%;
}

.usrForm .usrAdd {
  width: 74%;
}

.usrForm .usrMail, .usrForm .usrMag,
.usrForm .usrReg,
.usrForm .usrExp {
  width: 49%;
}

.usrForm .buttonTwoBlock {
  width: 100%;
}

.usrForm .buttonTwoBlock .button {
  width: 100%;
}

.mailMagEditFin {
  display: none;
  margin: .5em 0 0;
  border: 2px solid #000;
  font-size: .8em;
  padding: .4em 1em .4em;
  line-height: 1.2;
  font-weight: bold;
}

.mailMagEditFin.mailMagGet {
  border-color: #3f78c6;
  color: #3f78c6;
  background: rgba(63, 120, 198, .1);
}

.mailMagEditFin.mailMagNone {
  border-color: #c00;
  color: #c00;
  background: #ffcbca;
}

.postContent a {
  text-decoration: underline;
}

.postContent a:hover {
  opacity: .5;
}

.commonForm .fieldset {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.commonForm .fieldset dt, .commonForm .fieldset dd {
  font-size: 1.1em;
}

.commonForm .fieldset dt {
  display: block;
  width: 8em;
  font-weight: bold;
}

.commonForm .fieldset dd {
  display: block;
  margin: 0;
  width: calc(100% - 8em);
}

.commonForm .fieldset:last-of-type {
  margin-bottom: 40px;
}

.commonForm .fieldset .errText {
  text-align: right;
}

.commonForm .fieldset label {
  display: inline-block;
  padding-right: 1em;
}

.commonForm .fieldset + .buttonTwoBlock .button {
  min-width: 60%;
}

.flowStep {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 60px;
}

.flowStep .flow {
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
}

.flowStep .flow i {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  border-radius: 50%;
  background: #cfcfcf;
}

.flowStep .flow p {
  position: absolute;
  top: 32px;
  right: 0;
  bottom: auto;
  left: 0;
  padding: 0 5px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  color: #cfcfcf;
}

.flowStep .flow:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  height: 5px;
  background: #cfcfcf;
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
}

.flowStep .flow.is-current i, .flowStep .flow.is-current:before {
  background: #4171b8;
}

.flowStep .flow.is-current p {
  color: #4171b8;
  font-weight: 600;
}

ul.attention {
  margin-left: 0;
  list-style: none;
}

ul.attention li {
  text-indent: -1em;
  padding-left: 1em;
  color: #999;
}

ul.attention a {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .pageTitle {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .pageTitle {
    height: 50vw;
    font-size: 30px;
    margin-bottom: 30px;
    background-image: url("../images/common/common-sp.jpg");
  }
  .postTitle00 span {
    padding: 0 15px 5px;
    font-size: 20px;
  }
  .title01 {
    margin-bottom: 40px;
  }
  .title01 span {
    font-size: 26px;
  }
  .postTitle01 {
    font-size: 18px;
  }
  .postTitle02 {
    font-size: 1em;
  }
  .news-list a {
    padding: 1em 0;
  }
  .news-list a > span {
    line-height: 1.2;
  }
  .news-list a time {
    width: 100%;
    margin: 0;
  }
  .careerList {
    margin: 0 0 30px;
  }
  .careerList li {
    width: 32%;
  }
  .careerList li a {
    height: 50px;
  }
  .careerList li img {
    height: 16px;
  }
  .creditForm {
    padding: 0;
  }
  .creditForm .fieldset {
    margin-bottom: 15px;
  }
  .creditForm .fieldset legend {
    width: 100%;
    margin-bottom: 5px;
  }
  .creditForm .fieldset legend br {
    display: none;
  }
  .creditForm .fieldset p,
  .creditForm .fieldset input,
  .creditForm .fieldset .select {
    width: 100%;
  }
  .creditForm .fieldset p {
    font-size: 1em;
  }
  .creditForm .fieldset.name input[type='text'] {
    width: 49%;
  }
  .usrInputForm .fieldset legend {
    width: 100%;
    margin-bottom: 8px;
  }
  .usrInputForm .fieldset .value {
    width: 100%;
  }
  .usrInputForm .fieldset.usrBirth .value .select {
    width: calc(30% - 0.5em);
  }
  .usrInputForm .fieldset.usrBirth .value .select:first-child {
    width: 40%;
  }
  .usrInputForm .fieldset.usrSex .value .select {
    width: 100%;
  }
  .usrInputForm .buttonSingleColumn {
    width: 100%;
  }
  .usrInputForm.is-confirm .value {
    padding-left: 1em;
  }
  .usrInputForm.is-confirm .fieldset.usrSex, .usrInputForm.is-confirm .fieldset.usrBirth {
    width: 49%;
  }
  .usrForm {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .usrForm .fieldset dt, .usrForm .fieldset dd {
    text-align: left;
  }
  .usrForm .fieldset dt {
    padding: 5px 10px;
  }
  .usrForm .fieldset dt:after {
    display: none;
  }
  .usrForm .fieldset dd {
    padding: 0 0 0 1em;
  }
  .usrForm .usrHN,
  .usrForm .usrName, .usrForm .usrKana,
  .usrForm .usrNum, .usrForm .usrHN, .usrForm .usrTel,
  .usrForm .usrZip, .usrForm .usrAdd,
  .usrForm .usrMail, .usrForm .usrMag,
  .usrForm .usrReg, .usrForm .usrExp {
    width: 100%;
  }
  .usrForm .usrNum {
    width: 32.33%;
  }
  .usrForm .usrBirth, .usrForm .usrSex {
    width: 49%;
  }
  .usrForm .buttonTwoBlock {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .usrForm .buttonTwoBlock > * {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 413px) {
  .careerList {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 0 20px;
  }
  .careerList li {
    width: 100%;
    margin-bottom: 15px;
  }
  .careerList li a {
    height: 50px;
  }
  .careerList li img {
    height: 20px;
  }
}

@media screen and (max-width: 374px) {
  .pageTitle {
    font-size: 25px;
  }
  .postTitle00 span {
    font-size: 18px;
  }
  .postTitle01 {
    font-size: 16px;
  }
}

.page-login #main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.loginSection {
  width: 48%;
  margin-bottom: 50px;
}

.loginSection .button.is-medium {
  min-width: 225px;
}

.loginSection .price {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.loginSection .price > dt {
  width: 8em;
}

.loginSection .price > dt span {
  display: inline-block;
  padding: .2em .5em .3em;
  border: 1px solid #000;
}

.loginSection .price > dd {
  width: calc(100% - 8em);
  padding-top: .2em;
  margin: 0;
}

.loginSection .priceChild {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
}

.loginSection .priceChild > dt {
  width: 10em;
}

.loginSection .priceChild > dd {
  width: calc(100% - 10em);
  margin: 0 0 10px;
}

.loginForm {
  padding: 0 20px;
}

.loginForm fieldset {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}

.loginForm fieldset:before {
  display: block;
  content: '';
  width: 40px;
  height: 40px;
  background: left center no-repeat;
}

.loginForm fieldset input {
  width: calc(100% - 40px);
}

.loginForm fieldset.loginID:before {
  background-image: url("../images/common/icon-usr.png");
  background-size: 24px auto;
}

.loginForm fieldset.loginPW:before {
  background-image: url("../images/common/icon-pw.png");
  background-size: 23px auto;
}

.loginForm fieldset .errText {
  text-align: right;
}

.loginForm .remember {
  display: block;
  width: 100%;
  text-align: right;
  font-size: .8em;
}

.loginForm .remember input {
  margin-right: 5px;
}

.passWordForm {
  padding: 0 20px;
}

.passWordForm .passFieldset {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.passWordForm .passFieldset legend {
  display: block;
  width: 8em;
  font-weight: bold;
}

.passWordForm .passFieldset p,
.passWordForm .passFieldset input {
  display: block;
  margin: 0;
  width: calc(100% - 8em);
}

.passWordForm .passFieldset p {
  font-size: 1.2em;
}

.passWordForm .passFieldset .errText {
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .loginSection .price {
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .loginSection .price > dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .loginSection .price > dd {
    width: 100%;
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .loginSection {
    width: 100%;
    margin-bottom: 30px;
  }
  .loginSection01 {
    -webkit-order: 1;
    order: 1;
  }
  .loginSection02 {
    -webkit-order: 3;
    order: 3;
  }
  .loginSection03 {
    -webkit-order: 2;
    order: 2;
  }
  .loginSection04 {
    -webkit-order: 4;
    order: 4;
  }
  .loginSection .price > dt span {
    width: 100%;
    text-align: center;
  }
  .loginSection .price > dd {
    padding: 0;
  }
  .loginSection .priceChild > dt {
    width: 9em;
  }
  .loginSection .priceChild > dd {
    width: calc(100% - 9em);
  }
  .loginForm,
  .passWordForm {
    padding: 0;
  }
}

.deepBlue-archives #main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.deepBlue-archives #main img {
  vertical-align: bottom;
}

.deepBlue-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.deepBlue-list {
  width: 40%;
  margin-bottom: 2em;
}

.deepBlue-list .ttl {
  margin-bottom: 8px;
  line-height: 1.2;
}

.deepBlue-list .ttl span {
  font-size: 16px;
}

.deepBlue-list .ttl time {
  display: inline-block;
  color: #999;
  font-weight: 300;
  font-size: 12px;
}

.deepBlue-list figure {
  margin-bottom: 1.5em;
}

.deepBlue-list .moreLink {
  text-align: center;
}

.deepBlue-single #main .ttl {
  margin-bottom: .5em;
  line-height: 1.2;
}

.deepBlue-single #main .ttl span {
  font-size: 20px;
}

.deepBlue-single #main .ttl time {
  display: inline-block;
  color: #999;
  font-weight: 300;
  font-size: 12px;
}

.deepBlue-thumbnail {
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .deepBlue-inner {
    padding: 0 3.14%;
    margin-bottom: 4.5%;
  }
  .deepBlue-list {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
  }
  .deepBlue-list:last-of-type {
    margin-bottom: 30px;
  }
  .deepBlue-list a {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding-right: 20px;
  }
  .deepBlue-list a:after {
    display: block;
    content: '»';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(0, -75%);
    transform: translate(0, -75%);
    font-size: 25px;
  }
  .deepBlue-list .moreLink {
    display: none;
  }
  .deepBlue-list .ttl {
    width: calc(100% - 120px);
    padding: 0 10px;
  }
  .deepBlue-list .ttl span {
    font-size: 14px;
  }
  .deepBlue-list .ttl time {
    width: 100%;
    font-size: 10px;
  }
  .deepBlue-list figure {
    width: 100px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 374px) {
  .deepBlue-list .ttl {
    width: calc(100% - 80px);
  }
  .deepBlue-list figure {
    width: 80px;
  }
}

.movie-archives #main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.movie-list {
  width: 48%;
  margin-bottom: 2em;
}

.movie-list .ttl {
  margin-bottom: 8px;
  line-height: 1.2;
}

.movie-list .ttl span {
  font-size: 16px;
}

.movie-list .ttl time {
  display: inline-block;
  color: #999;
  font-weight: 300;
  font-size: 12px;
}

.movie-list .movieImg {
  display: block;
  width: 100%;
  padding: 50% 0 0;
  margin-bottom: 10px;
  background: center center no-repeat;
  background-size: cover;
}

.movie-single #main .ttl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.movie-single #main .ttl span {
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
}

.movie-single #main .ttl time {
  display: inline-block;
  color: #999;
  font-weight: 300;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .movie-list {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
  }
  .movie-list:last-of-type {
    margin-bottom: 30px;
  }
  .movie-list a {
    display: block;
    width: 100%;
  }
  .movie-list .movieImg {
    margin-bottom: 0;
  }
  .movie-list .ttl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
  }
  .movie-list .ttl span {
    font-size: 14px;
  }
  .movie-list .ttl time {
    font-size: 10px;
    color: #ccc;
  }
  .movie-single #main .ttl {
    margin-bottom: 20px;
  }
  .movie-single #main .ttl span {
    font-size: 16px;
  }
  .movie-single #main .ttl time {
    font-size: 12px;
  }
}

@media screen and (max-width: 374px) {
  .movie-list .ttl span {
    font-size: 12px;
  }
}

.page-candc .postLink {
  padding-top: 20px;
  margin-bottom: 80px;
  text-align: center;
}

.page-candc .postLink .button {
  min-width: 220px;
}

.page-candc .postLink + .postLink {
  margin-top: -40px;
}

.page-candc .candcForm fieldset label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-style: italic;
  color: #666;
}

.page-candc .candcForm textarea {
  height: 10em;
}

.page-candc .candcForm .postText {
  padding: 10px;
  border: 1px solid #ccc;
}

.page-candc .candcForm .postText > :last-child {
  margin-bottom: 0;
}

.candc-single #main .ttl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.candc-single #main .ttl span {
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}

.candc-single #main .ttl time {
  display: inline-block;
  color: #999;
  font-weight: 300;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .candc-list a {
    padding: 1em 0;
  }
  .candc-list a > span {
    line-height: 1.2;
  }
  .candc-list a time {
    width: 100%;
    margin: 0;
  }
  .candc-single #main .ttl {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 374px) {
  .candc-single #main .ttl span {
    font-size: 15px;
  }
}

.page-gallery #main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.page-gallery #main img {
  vertical-align: bottom;
}

.gallery-list {
  width: 45%;
  margin-bottom: 2em;
}

.gallery-list .ttl {
  margin-bottom: 8px;
  line-height: 1.2;
}

.gallery-list .ttl span {
  font-size: 16px;
}

.gallery-list .ttl time {
  display: inline-block;
  color: #999;
  font-weight: 300;
  font-size: 12px;
}

.gallery-listImage {
  display: block;
  width: 100%;
  padding-top: 100%;
  margin-bottom: .5em;
  background: center center no-repeat #000;
  background-size: contain;
}

.gallery-list figure {
  margin-bottom: .5em;
}

.gallery-single #main .ttl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.gallery-single #main .ttl span {
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}

.gallery-single #main .ttl time {
  display: inline-block;
  color: #999;
  font-weight: 300;
  font-size: 14px;
}

.gallery-single #main .galleryAttention {
  margin: 0;
}

.galleryImage {
  padding: 0 20px;
  margin-bottom: 50px;
}

.galleryAttention {
  width: 100%;
  padding: 0 20px;
  margin: -50px 0 100px;
}

@media screen and (max-width: 767px) {
  .gallery-list {
    padding: 0 5px 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #000;
  }
  .gallery-list .ttl span {
    font-size: 14px;
  }
  .gallery-list .ttl time {
    width: 100%;
    font-size: 10px;
  }
  .galleryAttention {
    padding: 0;
    margin: -30px 0 50px;
  }
}

@media screen and (max-width: 374px) {
  .gallery-single #main .ttl span {
    font-size: 15px;
  }
}

.faqCategory {
  margin-bottom: 80px;
}

.faqList > dt {
  width: 100%;
  padding: .5em 20px .5em 35px;
  font-size: 1.2em;
  cursor: pointer;
  font-weight: 400;
}

.faqList > dt:before {
  position: absolute;
  top: 7px;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  content: 'Q';
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 1;
  font-family: "Open Sans", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  color: #fff;
  background: #000;
  border-radius: 50%;
}

.faqList > dt:after {
  position: absolute;
  right: 0;
  top: 16px;
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  border: 7px solid transparent;
  border-top-color: #000;
  box-sizing: border-box;
  transition: all ease-in-out .2s;
}

.faqList > dt + dd {
  display: none;
}

.faqList > dt.is-current:after {
  top: 7px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faqList > dt.is-current + dd {
  display: block;
}

.faqList > dd {
  width: calc(100% - 14px);
  padding: 1em 0 1em 15px;
  margin-left: 14px;
  border-left: 2px solid #000;
}

.faqList > dd > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .faqCategory {
    margin-bottom: 80px;
  }
  .faqList > dt {
    padding: .5em 20px .5em 30px;
    font-size: 1em;
  }
  .faqList > dt:before {
    top: 7px;
    left: 0;
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
  .faqList > dt:after {
    top: 14px;
  }
  .faqList > dt.is-current:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

/* extension style
-----------------------------------*/
.white {
  color: #fff !important;
}

.black {
  color: #111 !important;
}

.blue {
  color: #3f78c6 !important;
}

.green {
  color: #78bc1e !important;
}

.orange {
  color: #fb7818 !important;
}

.red {
  color: #af0c00 !important;
}

.yellow {
  color: #fad00d !important;
}

.purple {
  color: #847bb9 !important;
}

.pink {
  color: #ff82a1 !important;
}

.grey {
  color: #acadad !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-black {
  background-color: #111 !important;
}

.bg-blue {
  background-color: #3f78c6 !important;
}

.bg-blue-light {
  background-color: #73cbef !important;
}

.bg-green-light {
  background-color: #a0d264 !important;
}

.bg-orange {
  background-color: #fb7818 !important;
}

.bg-red {
  background-color: #af0c00 !important;
}

.bg-yellow {
  background-color: #fad00d !important;
}

.bg-purple {
  background-color: #847bb9 !important;
}

.bg-pink {
  background-color: #ff82a1 !important;
}

.bg-sec-sub {
  background-color: #f4f4f4 !important;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.w5em {
  width: 5em !important;
}

.w6em {
  width: 6em !important;
}

.w7em {
  width: 7em !important;
}

.w8em {
  width: 8em !important;
}

.w9em {
  width: 9em !important;
}

.w10em {
  width: 10em !important;
}

.flr {
  float: right !important;
}

.fll {
  float: left !important;
}

.fln {
  float: none !important;
}

.clb {
  clear: both !important;
}

.cln {
  clear: none !important;
}

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

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

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

.is-bold {
  font-weight: bold !important;
}

.nowrap {
  white-space: nowrap !important;
}

/* 文字サイズ */
.fs08 {
  font-size: .8em !important;
}

.fs0875 {
  font-size: .875em !important;
}

.fs09 {
  font-size: .9em !important;
}

.fs0937 {
  font-size: .9375em !important;
}

.fs11 {
  font-size: 1.1em !important;
}

.fs12 {
  font-size: 1.2em !important;
}

.fs1125 {
  font-size: 1.125em !important;
}

.fs125 {
  font-size: 1.25em !important;
}

.fs13 {
  font-size: 1.3em !important;
}

.fs14 {
  font-size: 1.4em !important;
}

.fs15 {
  font-size: 1.5em !important;
}

.fs16 {
  font-size: 1.6em !important;
}

.fs17 {
  font-size: 1.7em !important;
}

.fs18 {
  font-size: 1.8em !important;
}

.fs19 {
  font-size: 1.9em !important;
}

.fs20 {
  font-size: 2.0em !important;
}

.lh1 {
  line-height: 1 !important;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh14 {
  line-height: 1.4 !important;
}

.lh16 {
  line-height: 1.6 !important;
}

.lh18 {
  line-height: 1.8 !important;
}

.lh20 {
  line-height: 2 !important;
}

/* margin */
.m0 {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m30 {
  margin: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.m50 {
  margin: 50px !important;
}

.mt0 {
  margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* padding */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.ofx {
  width: 100% !important;
  overflow-x: auto;
}

.video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 53%;
  padding-top: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  background: center center no-repeat;
  background-size: cover;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

hr.dot {
  background: transparent;
  border-bottom: 1px dotted #aaa;
  margin: 0 0 2em;
}

hr.clearHr {
  background: transparent;
  border-bottom: none;
  margin: 0;
}

hr.sepHr {
  background: transparent;
  border-bottom: none;
  margin: 0 0 30px;
}

.op01 {
  opacity: .1;
}

.op02 {
  opacity: .2;
}

.op03 {
  opacity: .3;
}

.op04 {
  opacity: .4;
}

.op05 {
  opacity: .5;
}

.op06 {
  opacity: .6;
}

.op07 {
  opacity: .7;
}

.op08 {
  opacity: .8;
}

.op09 {
  opacity: .9;
}

.op10 {
  opacity: 10;
}

.cf:after {
  display: table;
  content: '';
  width: 100%;
}