@charset "UTF-8";
/* axolutil.sass */
/* axol.modalDialog
------------------------------------------------------------------*/
/* 絶対位置 */
._axol_modal_bind {
  /* position: fixed; : js側固定 */
  /* width: 100vw; : js側固定 */
  /* height: 100vh; : js側固定 */
  /* display: animate; : js側固定 */
  /* z-index:current-max; : js側固定 */
}

/* 背景バックの色 */
._axol_modal_back {
  /* width: 100%; : js側固定 */
  /* height: 100%; : js側固定 */
  background: rgba(0, 0, 0, 0.3);
}

/* モーダル枠 */
.axol_modal_dialog {
  /* position: absolute; : js側固定 */
  /* z-index:current-max; : js側固定 */
  background: #fff;
  max-width: 70%;
  max-height: 70%;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.axol_modal_dialog img {
  max-width: 100%;
  max-height: 420px;
}

/* 閉じるボタン */
._axol_modal_close_btn {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

._axol_modal_close_btn::before,
._axol_modal_close_btn::after {
  position: absolute;
  content: "";
  background: #333;
  width: 1px;
  height: 15px;
  top: 0;
  right: 6px;
}

._axol_modal_close_btn::before {
  transform: rotate(45deg);
}

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

/* axol.axolModalTip
------------------------------------------------------------------*/
/* 絶対位置 */
.axolModalTip_parent {
  /* position: relative; : js側固定 */
  /* height: 0; : js側固定 */
  /* z-index:current-max; : js側固定 */
}

/* 背景バックの色 */
.axolModalTip_backWrapper {
  /* position: fixed; : js側固定 */
  /* width: 100vw; : js側固定 */
  /* height: 100vh; : js側固定 */
  /* z-index:current-max; : js側固定 */
  background: rgba(0, 0, 0, 0.3);
}

/* チップ枠 */
.axolModalTip_dialog {
  /* position:absolute; : js側固定 */
  /* top:**; : js側固定 */
  /* left:**; : js側固定 */
  /* z-index:current-max; : js側固定 */
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  min-width: 300px;
  max-width: 35%;
  padding: 15px 18px;
  box-sizing: border-box;
}

/* 三角矢印の色 */
.axolModalTip_triangle {
  /* positon:absolute; : js側固定 */
  /* top:**; : js側固定 */
  /* left:**; : js側固定 */
  /* width: 0; : js側固定 */
  /* height: 0; : js側固定 */
  /* z-index:current-max; : js側固定 */
  border-color: #fff;
  border-width: 8px;
}

/* 閉じるボタン */
.axolModalTip_cancelBtn {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  right: 0;
  cursor: pointer;
}

.axolModalTip_cancelBtn::before,
.axolModalTip_cancelBtn::after {
  position: absolute;
  content: "";
  background: #333;
  width: 1px;
  height: 10px;
  top: 4px;
  right: 8px;
}

.axolModalTip_cancelBtn::before {
  transform: rotate(45deg);
}

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

/* axol.loadingDialog
------------------------------------------------------------------*/
.axol_modal_dialog._axol_modal_loading {
  width: 150px;
  height: 90px;
}

._axol_modal_loading .loading__wrap {
  position: relative;
  text-align: center;
}

._axol_modal_loading .loading__wrap:before {
  position: absolute;
  content: "now loading...";
  width: 150px;
  font-size: 11px;
  bottom: -25px;
  left: calc(50% - 72px);
}

._axol_modal_loading .loading__items {
  display: inline-block;
  background: #333;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  margin: 0 3px;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

._axol_modal_loading .loading__items.loading__item1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

._axol_modal_loading .loading__items.loading__item2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* base CSS 基礎設定 */
/* ベースのリセット
------------------------------------------------------------------*/
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a,
img, ul, ol, dl, li, dt, dd, form, label, table, thead, tbody, tfoot, th, tr, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.5;
  overflow-wrap: break-word;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  width: 100%;
  height: 100%;
  font-size: 10px;
}

body {
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.3rem;
  color: #333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  text-align: left;
  word-break: break-word;
  white-space: normal;
  -webkit-font-smoothing: antialiased;
}

input, textarea, select {
  padding: 3px;
  font-size: 1.2rem;
}

ul, ol, dl {
  list-style: none;
}

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

th, td {
  font-size: 1.2rem;
  line-height: 1.5;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  background: transparent;
}

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

a {
  background: transparent;
  margin: 0;
  padding: 0;
  color: #1f70c1;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}
a:hover {
  color: #6c96c1;
  text-decoration: none;
}

i {
  font-family: system-ui;
}

.txt_right {
  text-align: right;
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.pager_bar {
  text-align: center;
}

:focus {
  outline: 0;
}

:visited, :link {
  color: #04c;
}

a, #header-wrap {
  -webkit-tap-highlight-color: transparent;
}

.clearfix:after {
  overflow: hidden;
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* ボタンのベース
------------------------------------------------------------------*/
input[type=button],
input[type=submit],
.btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  border: none;
  text-align: center;
  white-space: normal;
  cursor: pointer;
}
input[type=button] a,
input[type=submit] a,
.btn a {
  text-decoration: none;
}

.btn__wrap {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 1;
}

/* フォームのベース
------------------------------------------------------------------*/
input[type=text],
input[type=password],
select, textarea,
.radio__item-name,
.form__item__title {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text]:focus,
input[type=password]:focus,
select:focus, textarea:focus {
  border: 1px solid rgba(90, 180, 255, 0.5);
  box-shadow: 0 0 3px rgba(90, 180, 255, 0.5);
}

input[type=text],
input[type=password],
select {
  padding: 5px 8px;
}

/* テキストエリアベース
------------------------------------------------------------------*/
textarea {
  min-height: 65px;
  padding: 12px 15px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  font-family: inherit;
}

/* ラジオボタンベース
------------------------------------------------------------------*/
input[type=radio] {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: text-top;
}

.radio__wrap {
  width: 100%;
}

.radio__item + .radio__item {
  border-top: inherit;
  border-radius: 0;
}

.radio__item:last-child {
  border-top: none;
}

.half .radio__item {
  float: left;
  width: 50%;
  box-sizing: border-box;
}
.half .radio__item:first-child {
  float: left;
}
.half .radio__item:last-child {
  float: right;
  border-left: none;
}

.input__item-name {
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
}

/* チェックボックスベース
------------------------------------------------------------------*/
input[type=checkbox] {
  margin: 0 5px 0 0;
  vertical-align: text-top;
  -webkit-tap-highlight-color: transparent;
}

.checkbox__wrap {
  width: 100%;
}

.checkbox__item {
  width: 100%;
  box-sizing: border-box;
}

.checkbox__item + .checkbox__item {
  border-top: inherit;
  border-radius: 0;
}

.checkbox__item:last-child {
  border-top: none;
}

/* セレクトボックスベース
------------------------------------------------------------------*/
select {
  vertical-align: middle;
}

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

.select_wrap {
  position: relative;
}

.select_wrap + .select_wrap {
  border-radius: 0;
}

/* ファイル選択
------------------------------------------------------------------*/
input[type=file] {
  border: 1px solid transparent;
  margin-top: 5px;
}

/* 言語対応
-------------------------------------------------------------------*/
.form__item__title__en,
.text__lang__en {
  display: block;
  margin: 0;
  font-weight: normal;
  line-height: 1.4;
}

.text__lang__en {
  margin-top: 3px;
  font-size: 1.15rem;
}

.setting__messege {
  margin: 8px 0;
}

.form__item__title__en {
  font-size: 1.1rem;
}

.simple__grp__title__en {
  margin-left: 8px;
  font-size: 1.1rem;
  font-weight: normal;
}

.verisign__text__en {
  margin-top: 3px;
  text-align: left;
  font-size: 0.9rem;
}

/* common CSS(pc/sp) フォーム全体 */
/* ボタン
------------------------------------------------------------------*/
.btn__area {
  margin: 20px 0 15px;
}

.axol_pager .axol_pager_page_now,
.axol_pager .axol_pager_page_txt,
.axol_pager .axol_pager_pre_txt,
.axol_pager .axol_pager_post_txt, .mynavi__banner a,
.mynavi__link__btn a, .btn__s, .btn__l {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.axol_pager .axol_pager_page_now:active,
.axol_pager .axol_pager_page_txt:active,
.axol_pager .axol_pager_pre_txt:active,
.axol_pager .axol_pager_post_txt:active, .mynavi__banner a:active,
.mynavi__link__btn a:active, .btn__s:active, .btn__l:active {
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.1);
  top: 1px;
}

.btn__s.btn__submit, .btn__l.btn__submit {
  background-color: #ed4e3b;
  color: #fff;
  border-bottom: 3px solid #e02a15;
}
.btn__s.btn__submit:hover, .btn__l.btn__submit:hover {
  background-color: #d92914;
}
.btn__s.btn__confirm, .btn__l.btn__confirm {
  background-color: #1f81db;
  color: #fff;
  border-bottom: 3px solid #1967ae;
}
.btn__s.btn__confirm:hover, .btn__l.btn__confirm:hover {
  background-color: #1967af;
}
.btn__s.btn__back, .btn__l.btn__back {
  background-color: #e5e5e5;
  color: #2e2e2e;
  border-bottom: 3px solid #cccccc;
}
.btn__s.btn__back:hover, .btn__l.btn__back:hover {
  background-color: #dadada;
}
.btn__s.btn__edit, .btn__l.btn__edit {
  background-color: #aaa;
  color: white;
  border-bottom: 3px solid #919191;
}
.btn__s.btn__edit:hover, .btn__l.btn__edit:hover {
  background-color: #a2a2a2;
}
.btn__s.btn__move, .btn__l.btn__move {
  background-color: #555;
  color: #fff;
  border-bottom: 3px solid #3c3c3c;
}
.btn__s.btn__move:hover, .btn__l.btn__move:hover {
  background-color: #444444;
}
.btn__s.btn__disabled, .btn__l.btn__disabled {
  background-color: #ccc;
  color: #fafafa;
  border-bottom: 3px solid #b3b3b3;
}

.next__arrow {
  background-image: url(../images/icons/button_arrow.png);
  background-position: right center;
  background-repeat: no-repeat;
}
.next__arrow.btn__s {
  padding: 8px 28px 8px 8px;
}
.next__arrow.btn__l {
  padding: 12px 32px 12px 15px;
}

.back__arrow {
  background-image: url(../images/icons/button_modoru.png);
  background-position: left center;
  background-repeat: no-repeat;
}
.back__arrow.btn__s {
  padding: 6px 8px 6px 28px;
}
.back__arrow.btn__l {
  padding: 12px 15px 12px 32px;
}

.btn__back.back__arrow {
  background-image: url(../images/icons/button_modoru2.png);
}

.left__arrow {
  background-image: url(../images/icons/button_modoru2.png);
  background-position: left center;
  background-repeat: no-repeat;
}
.left__arrow.btn__s {
  padding: 6px 8px 6px 28px;
}
.left__arrow.btn__l {
  padding: 12px 15px 12px 25px;
}

.right__arrow {
  background-image: url(../images/icons/button_susumu2.png);
  background-position: right center;
  background-repeat: no-repeat;
  padding-left: 15px;
  padding-right: 25px;
}
.right__arrow.btn__s {
  padding: 6px 28px 6px 8px;
}
.right__arrow.btn__l {
  padding: 12px 25px 12px 15px;
}

/* フォーム
------------------------------------------------------------------*/
select, textarea, input[type=text],
input[type=password] {
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 6px -4px rgba(0, 0, 0, 0.2) inset, 0 2px 4px -4px rgba(0, 0, 0, 0.2) inset;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type=text],
input[type=password] {
  width: 100%;
  padding: 8px 12px;
}

textarea {
  width: 100%;
  height: 200px;
  max-width: 360px;
}

select {
  background: #fff url(../images/icons/down_arrow_b.svg) right 10px center/10px no-repeat;
  width: 100%;
  padding: 5px 28px 5px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.is_foreign .navy {
  width: 305px;
  display: inline-block;
}

.check__mark ul {
  color: #ff664b;
}
.check__mark li {
  display: inline-block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
}
.check__mark li::before {
  content: "＊ ";
}

#main__contents .fb_alert input[type=text],
#main__contents .fb_alert input[type=password],
#main__contents .fb_alert input[type=checkbox],
#main__contents .fb_alert input[type=radio],
#main__contents .fb_alert input[type=file],
#main__contents .fb_alert input[type=img],
#main__contents .fb_alert select, #main__contents .fb_alert textarea {
  border-color: #ff664b;
}
#main__contents .fb_alert label {
  color: #ff664b;
}

.preview_dummy {
  color: #f00;
}

.nomenu #contents__area {
  width: 100%;
  margin: 0 auto;
}

#entry_error .go__login,
#mypage_error .go__login,
#mypage_logout .go__login {
  box-sizing: border-box;
  margin-top: 30px;
  text-align: center;
}
#entry_error .go__login__text,
#mypage_error .go__login__text,
#mypage_logout .go__login__text {
  color: #fff;
}

.login__info {
  display: none;
}

.display__change {
  background: linear-gradient(to top, #444444 0%, #555 100%);
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  margin: 0 0 10px;
  transition: opacity 0.2s;
}
.display__change:hover {
  opacity: 0.75;
}
#footer .display__change a {
  font-size: 1.1rem;
  color: #fff;
}
.display__change.btn__s {
  padding: 0;
}
.display__change.btn__s a {
  display: inline-block;
  padding: 3px 8px;
}

/* ベリサイン(SSL)
-------------------------------------------------------------------*/
.verisign__img {
  float: left;
  width: 80px;
  height: 40px;
  margin-right: 10px;
}

.verisign__img__src {
  background: url(../images/outersite/norton-seal.png) center center/80px no-repeat;
}

.verisign__text {
  font-size: 0.85rem;
  line-height: 1.45em;
  text-align: justify;
  color: #333;
}

/* マイナビボタン（シームレスボタン）
-------------------------------------------------------------------*/
.mynavi__banner,
.mynavi__link__btn {
  width: 100%;
}
.mynavi__banner a,
.mynavi__link__btn a {
  display: block;
  background-color: #fff;
  background-image: url(../images/icons/button_arrow.png), url(../images/outersite/mynavi_logo.png);
  background-position: right center, calc(50% - 10px) center;
  background-size: auto, 100px;
  background-repeat: no-repeat, no-repeat;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  border-bottom: 3px solid #d9d9d9;
  height: 45px;
}
.mynavi__banner a:hover,
.mynavi__link__btn a:hover {
  background-color: #eee;
}
.mynavi__banner img,
.mynavi__link__btn img {
  display: none;
  width: 100%;
}

/* ログイン
-------------------------------------------------------------------*/
.login__message__wrap {
  width: 100%;
  margin-bottom: 25px;
}

#login__message {
  width: 100%;
  text-align: left;
}
#login__message + .login__all__message {
  margin-top: 15px;
}

/* SNS */
.menu__facebook a,
.menu__twitter a {
  height: 43px;
}
.menu__facebook a:hover,
.menu__twitter a:hover {
  opacity: 0.75;
}

li.menu__facebook a {
  background: url(../images/outersite/logo_facebook.png) left 12px center/auto no-repeat;
}

li.menu__twitter a {
  background: url(../images/outersite/logo_twitter.png) left 12px center/auto no-repeat;
}

li.menu__facebook a:hover {
  background: url(../images/outersite/logo_facebook.png) left 12px center/auto no-repeat;
}

li.menu__twitter a:hover {
  background: url(../images/outersite/logo_twitter.png) left 12px center/auto no-repeat;
}

/* ダイレクトアクセスの表示
-------------------------------------------------------------------*/
#top_kanri_mp {
  background-color: rgba(243, 152, 0, 0.05);
  box-sizing: border-box;
  border: 1px solid #f39800;
  margin: 10px auto 15px;
  padding: 5px 8px;
  color: #f39800;
  font-size: 13px;
}

/* common CSS(pc) 入力フォーム形状／フォームのアラート／ボタン形状 */
.btn__s {
  font-size: 1.2rem;
  padding: 6px 10px;
}

.btn__l {
  min-width: 100px;
  margin: 0 10px;
  padding: 12px 15px;
  font-size: 14px;
}

.form_button {
  text-align: center;
  margin: 15px 0 30px;
}

input[type=text],
input[type=password],
textarea, select {
  font-size: 1.4rem;
}

select {
  background: #fff url(../images/icons/down_arrow_b.svg) right 10px center/10px no-repeat;
  width: 100%;
  padding: 8px 30px 8px 8px;
  cursor: pointer;
}

.form__item__title__wrap,
.need__item,
.need__item__small,
.noneed__item,
.noneed__item__small,
.form__item__group,
.form__item__multi {
  display: inline-block;
  vertical-align: middle;
}

/* 全体・ヘッダートップ
-------------------------------------------------------------------*/
#page__all {
  -js-display: flex;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 980px;
  min-height: 100%;
  height: 100%;
}

.user__item {
  display: inline-block;
  width: auto;
}

.username {
  display: inline-block;
  background: url(../images/icons/icon_account.svg) 8px calc(50% - 1px)/13px 13px no-repeat;
  margin: 0 5px 0 12px;
  padding: 5px 8px 5px 28px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  font-size: 1.2rem;
}

.link__logout {
  display: inline-block;
  background: #333 url(../images/icons/logout_w.svg) 8px calc(50% - 1px)/13px 13px no-repeat;
  border-bottom: 3px solid #000;
  border-radius: 0 0 3px 3px;
  padding: 6px 8px 5px 28px;
  text-align: center;
  line-height: 1;
  font-size: 1.1rem;
  color: #fff;
  cursor: pointer;
  transition: 0.1s;
}
.link__logout:hover {
  opacity: 0.8;
}

/* 各ページのメインコンテンツ上下のマージンを設定 */
#main__contents:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#mypage_schedule #main__contents {
  margin: 0 auto 25px;
}

.contents__message {
  margin: 0 0 12px;
  width: 100%;
}

/* フッター
-------------------------------------------------------------------*/
#footer__sub {
  display: none;
}

#footer {
  width: 100%;
  margin: 0 auto 25px;
  text-align: center;
}

#footer__wrap {
  box-sizing: border-box;
  width: 1200px;
  min-height: 50px;
  margin: 0 auto;
  padding: 15px 0;
}

.copyright__text {
  display: block;
  margin: 0 auto;
  padding: 0;
  font-family: verdana, "メイリオ", "Meiryo", arial, clean, sans-serif;
  font-size: 10px;
  color: #333;
  letter-spacing: 0.05em;
  clear: both;
}

#verisign__block {
  width: 370px;
  margin: 0 0 0 auto;
}

.verisign__text {
  padding: 2px 0;
  color: #333;
}

/* テキストメニュー
-------------------------------------------------------------------*/
#menu__text {
  display: inline-block;
  box-sizing: border-box;
  padding: 0;
  text-align: right;
}
#menu__text .menu__text__button {
  display: inline-block;
  margin-left: 10px;
}
#menu__text .menu__now {
  font-weight: bold;
}
#menu__text a {
  display: block;
  padding: 3px 0;
  font-size: 1.2rem;
  color: #333;
  text-decoration: underline;
}
#menu__text a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.nomenu #menu__area {
  display: none;
}

.pagenation__area__top,
.pagenation__area__bottom {
  display: inline-block;
  text-align: right;
}

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

.pagenation__area__bottom {
  width: calc(100% - 150px);
  margin-top: 10px;
}

.pagenation__caption {
  display: inline-block;
  text-align: left;
  width: calc(100% - 355px);
  vertical-align: bottom;
}

.pagenation__item {
  display: inline-block;
  width: 340px;
  margin-left: 10px;
  text-align: right;
}

.axol_pager {
  display: block;
}
.axol_pager a {
  display: inline-block;
  margin: 0 3px;
}
.axol_pager .axol_pager_page_now,
.axol_pager .axol_pager_page_txt,
.axol_pager .axol_pager_pre_txt,
.axol_pager .axol_pager_post_txt {
  display: inline-block;
  border: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 4px 12px;
  text-align: center;
  color: #333;
}
.axol_pager .axol_pager_page_now:hover,
.axol_pager .axol_pager_page_txt:hover,
.axol_pager .axol_pager_pre_txt:hover,
.axol_pager .axol_pager_post_txt:hover {
  background: #f3f2f1;
  color: #333;
}
.axol_pager .axol_pager_page_now {
  background: #1f81db;
  border: 1px solid #1f81db;
  border-bottom: 3px solid #1967ae;
  margin: 0 3px;
  color: #fff;
}
.axol_pager .axol_pager_page_now:active {
  top: 0;
}
.axol_pager .axol_pager_page_now:hover {
  background: #1f81db;
  color: #fff;
}

/* ベリサインがあるベージのみレイアウト変更
-------------------------------------------------------------------*/
#mypage_login #footer,
#entry_agreement #footer {
  text-align: left;
}
#mypage_login .copyright,
#entry_agreement .copyright {
  text-align: center;
}

/* 登録重複画面画面
-------------------------------------------------------------------*/
#entry_matched .login__input__area,
#entry_matched_mn .login__input__area {
  width: 500px;
  margin: 30px auto 15px;
}
#entry_matched .login__input__area .id__area,
#entry_matched .login__input__area .pass__area,
#entry_matched_mn .login__input__area .id__area,
#entry_matched_mn .login__input__area .pass__area {
  display: inline-block;
  width: 47.5%;
  margin: 0 5px 5px;
}
#entry_matched .login__input__area .fb_ownAlertBox,
#entry_matched_mn .login__input__area .fb_ownAlertBox {
  text-align: center;
}
#entry_matched .login__forget,
#entry_matched_mn .login__forget {
  display: block;
  text-align: center;
}
#entry_matched .login__forget a,
#entry_matched_mn .login__forget a {
  background: #555;
  margin: 0 auto;
  color: #fff;
}
#entry_matched .match__message__toiawase,
#entry_matched_mn .match__message__toiawase {
  background: #f3f2f1;
  box-sizing: border-box;
  border: 1px solid #ccc;
  margin-top: 15px;
  padding: 10px 12px;
}
#entry_matched .go__seamless__mynavi,
#entry_matched_mn .go__seamless__mynavi {
  margin: 10px auto 0;
}
#entry_matched .go__seamless__mynavi a,
#entry_matched_mn .go__seamless__mynavi a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
#entry_matched .match__message,
#entry_matched_mn .match__message {
  margin-top: 20px;
}
#entry_matched .match__message u,
#entry_matched_mn .match__message u {
  text-decoration: none;
  font-weight: bold;
}

/* ブログ・レターなどの写真サイズ・配置
-------------------------------------------------------------------*/
.img__box__in_l,
.img__box__in_r,
.img__box__out_l,
.img__box__out_r,
.img__box__out_c {
  margin: 0;
}

.img__size__SS,
.img__size__S,
.img__size__M,
.img__size__R,
.img__size__L {
  max-width: 100%;
}

.img__box__out_l a,
.img__box__out_r a,
.img__box__out_c a,
.img__box__in_l a,
.img__box__in_r a {
  display: block;
}
.img__box__out_l .img__size__L,
.img__box__out_r .img__size__L,
.img__box__out_c .img__size__L,
.img__box__in_l .img__size__L,
.img__box__in_r .img__size__L {
  width: 780px;
}
.img__box__out_l .img__size__R,
.img__box__out_r .img__size__R,
.img__box__out_c .img__size__R,
.img__box__in_l .img__size__R,
.img__box__in_r .img__size__R {
  width: 444px;
}
.img__box__out_l .img__size__M,
.img__box__out_r .img__size__M,
.img__box__out_c .img__size__M,
.img__box__in_l .img__size__M,
.img__box__in_r .img__size__M {
  width: 260px;
}
.img__box__out_l .img__size__S,
.img__box__out_r .img__size__S,
.img__box__out_c .img__size__S,
.img__box__in_l .img__size__S,
.img__box__in_r .img__size__S {
  width: 150px;
}
.img__box__out_l .img__size__SS,
.img__box__out_r .img__size__SS,
.img__box__out_c .img__size__SS,
.img__box__in_l .img__size__SS,
.img__box__in_r .img__size__SS {
  width: 65px;
}

.img__box__out_l .img__size__L,
.img__box__in_l .img__size__L {
  margin: 25px 0;
}
.img__box__out_l .img__size__R,
.img__box__in_l .img__size__R {
  margin: 20px 28px 20px 0;
}
.img__box__out_l .img__size__M,
.img__box__in_l .img__size__M {
  margin: 10px 22px 10px 0;
}
.img__box__out_l .img__size__S,
.img__box__in_l .img__size__S {
  margin: 4px 20px 4px 0;
}
.img__box__out_l .img__size__SS,
.img__box__in_l .img__size__SS {
  margin: 4px 16px 4px 0;
}

.img__box__out_r .img__size__L,
.img__box__in_r .img__size__L {
  margin: 25px 0;
}
.img__box__out_r .img__size__R,
.img__box__in_r .img__size__R {
  margin: 20px 0 20px 28px;
}
.img__box__out_r .img__size__M,
.img__box__in_r .img__size__M {
  margin: 10px 0 10px 22px;
}
.img__box__out_r .img__size__S,
.img__box__in_r .img__size__S {
  margin: 4px 0 4px 20px;
}
.img__box__out_r .img__size__SS,
.img__box__in_r .img__size__SS {
  margin: 4px 0 4px 16px;
}

.img__box__out_c .img__size__L {
  margin: 25px 0;
}
.img__box__out_c .img__size__R {
  margin: 20px 28px;
}
.img__box__out_c .img__size__M {
  margin: 10px 22px;
}
.img__box__out_c .img__size__S {
  margin: 4px 20px;
}
.img__box__out_c .img__size__SS {
  margin: 4px 16px;
}

.img__box__in_l {
  float: left;
}

.img__box__in_r {
  float: right;
}

.img__box__out_l {
  text-align: left;
}

.img__box__out_r {
  text-align: right;
}

.img__box__out_c {
  text-align: center;
}

.img__box__out_l, .img__box__out_r, .img__box__out_c {
  clear: both;
}

.mov_block {
  margin: 10px 0;
  text-align: center;
}
.mov_block video {
  max-width: 100%;
}

/* ヘッダー
-------------------------------------------------------------------*/
#header__top {
  text-align: right;
  font-size: 0.9em;
}

#header__top__wrap {
  -js-display: flex;
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 1200px;
  margin: 0 auto;
  text-align: right;
  font-size: 0;
}
#header__top__wrap div, #header__top__wrap span, #header__top__wrap ul {
  vertical-align: middle;
}

/* メニュー非表示時
--------------------------------------------------*/
.nomenu #header__main {
  position: relative;
  background: #fff;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.08);
}
.nomenu #header__main .header__main__contents {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 1200px;
  height: 74px;
  margin: 0 auto;
  padding: 20px 0 20px 200px;
}

/* メニュー
-------------------------------------------------------------------*/
#menu__area {
  position: relative;
  background: #fff;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.08);
  font-size: 0.9em;
}
#menu__area::before {
  display: none;
}
#menu__area #menu__wrap {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
}
#menu__area #menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* メインメニュー */
.menu__button {
  position: relative;
  display: inline-block;
  padding: 3px 0;
  font-weight: bold;
  cursor: pointer;
}
.menu__button::after {
  position: absolute;
  content: "";
  background: #00a3af;
  width: 100%;
  height: 1px;
  top: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(3px);
}
.menu__button:hover:after {
  opacity: 1;
  transform: translateY(0px);
}
.menu__button a {
  display: block;
  box-sizing: border-box;
  border: 1px solid transparent;
  padding: 3px 15px;
  color: #333;
}

.menu__now a {
  border-bottom: 3px solid #00a3af;
}

.menu__mid a {
  border: 1px solid #ff664b;
  color: #ff664b;
}
.menu__mid::after {
  background: #ff664b;
}

.menu__high a {
  border: 1px solid #ff664b;
  background: #ff664b;
  color: #fff;
}
.menu__high::after {
  background: #ff664b;
}

/* サブメニュー */
#menu__sub {
  border-top: 1px dashed #ccc;
  text-align: right;
}

.menu__sub__button {
  display: inline-block;
}
.menu__sub__button a {
  display: block;
  padding: 5px 0 5px 10px;
  transition: 0.2s;
  font-size: 1.2rem;
  color: #333;
}
.menu__sub__button a:hover {
  color: #00a3af;
}
.menu__sub__button a::before {
  content: "▶︎";
  margin-right: 3px;
  color: inherit;
  font-size: 1.1rem;
  transition: 0.2s;
}

/* テキストメニュー */
#header__top {
  background: #eee;
}

/* 簡易オリジナルログイン画面共通のヘッダー
-------------------------------------------------------------------*/
/* ガワフレーム
-------------------------------------------------------------------*/
body {
  background: #00a3af;
}

#page__all {
  background: transparent;
  min-height: 100%;
}

/* メッセージ表示(非表示・メンテナンス時)
--------------------------------------------------*/
#mypage_login.nomenu #contents__area {
  width: 1200px;
}
#mypage_login.nomenu .main__contents {
  min-height: 650px;
}
#mypage_login.nomenu .mypage__msg__common {
  padding-top: 20px;
  color: #fff;
}

/* メイン画像
-------------------------------------------------------------------*/
#menu__contents__wrap {
  background: transparent;
}

#contents__area__wrap {
  display: flex;
  width: 100%;
}

#contents__title__wrap,
#contents__title {
  display: none;
}

#contents__area {
  width: 1200px;
  margin: 0 auto;
}

/* ログインボックス
-------------------------------------------------------------------*/
#main__contents {
  order: 2;
  width: 350px;
  min-height: 650px;
  max-height: 650px;
  overflow-y: auto;
}

#login_box {
  padding: 0 25px;
}

/* what's new
--------------------------------------------------*/
#login__whatsnew {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#login__message + #login__whatsnew {
  margin-top: 15px;
}

.login__whatsnew__title {
  position: relative;
  background: #005258;
  padding: 5px 10px 5px 12px;
  color: #fff;
}
.login__whatsnew__title::before {
  position: absolute;
  content: "";
  border-top: 5px solid transparent;
  border-right: 5px solid #b06400;
  border-bottom: 5px solid transparent;
  transform: rotate(-45deg);
  bottom: -3px;
  left: -1px;
}

.login__whatsnew__contents {
  max-height: 95px;
  padding: 8px 0 5px;
  overflow: auto;
  color: #fff;
}
.login__whatsnew__contents.seamless {
  max-height: 72px;
}
.login__whatsnew__contents dt {
  margin-bottom: 5px;
  vertical-align: top;
  font-size: 1.2rem;
  font-weight: bold;
}
.login__whatsnew__contents dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.login__whatsnew__contents dd:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 8px;
}

/* 規約ブロック ---------------------------------------------------*/
#login__kiyaku {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  box-sizing: border-box;
  height: 115px;
  padding: 10px 12px;
  overflow: auto;
  font-size: 1.2rem;
  color: #fff;
}
.normal #login__kiyaku {
  height: 340px;
}

/* 通常時・シームレス 共通
--------------------------------------------------*/
#login_main .login__title {
  background: #005258;
  border-left: 3px solid #00828c;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
}

.login__message__wrap {
  box-sizing: border-box;
  margin: 22px 0 0;
  padding: 0 25px;
  color: #fff;
}
.login__message__wrap + #login_box > #login__whatsnew {
  margin-top: 22px;
}

#login__message {
  margin: 0;
}
#login__message + .login__all__message {
  margin-top: 15px;
}

.input__box {
  box-sizing: border-box;
  padding: 20px 0;
}

.login__id-pass__wrap {
  position: relative;
  margin-bottom: 12px;
}
.login__id-pass__wrap.fb_alert .check__mark {
  position: absolute;
  background: #ff664b;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  width: 160px;
  padding: 8px 12px;
  top: 20px;
  right: 325px;
}
.login__id-pass__wrap.fb_alert .check__mark::before {
  position: absolute;
  content: "";
  border-top: 7px solid #ff664b;
  border-right: 7px solid transparent;
  top: 12px;
  right: -6px;
}
.login__id-pass__wrap.fb_alert .check__mark li {
  color: #fff;
  opacity: 1;
}

.origin_id, .origin_pass {
  display: inline-block;
  width: calc(50% - 5px);
  margin-bottom: 3px;
}
.origin_id input, .origin_pass input {
  width: 100%;
}

.origin_pass {
  width: calc(50% - 5px);
  margin-left: 5px;
}

.id__label,
.pass__label {
  margin-bottom: 2px;
  font-size: 1.2rem;
  color: #fff;
}

.login__button .btn__l {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  min-width: 100%;
  margin: 0;
  transition: 0.2s;
}
.login__button .btn__l:hover {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

/* シームレス時
--------------------------------------------------*/
#mynavi_login {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.seamless_info,
.seamless_info_sub {
  margin-bottom: 10px;
  font-size: 1.15rem;
  text-align: justify;
  color: #fff;
}

.text__lang__en {
  margin-top: 5px;
}

.mynavi__banner {
  width: 100%;
  text-align: center;
}
.mynavi__banner img {
  width: 130px;
}

.seamless_info_sub {
  display: none;
  margin-top: 10px;
}

/* LINE設定時
-------------------------------------------------------------------*/
#line_login {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.line_info {
  margin-bottom: 10px;
  font-size: 1.15rem;
  text-align: justify;
  color: #fff;
}

.line__banner {
  width: 100%;
  text-align: center;
}
.line__banner a {
  display: block;
  background-color: #00c300;
  background-image: url(../images/icons/button_arrow.png), url(../images/outersite/line_icon.png);
  background-position: right center, left 5px center;
  background-size: auto, 30px;
  background-repeat: no-repeat, no-repeat;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #00aa00;
  border-radius: 5px;
  padding: 11px 30px 11px 70px;
  font-weight: bold;
  color: #FFFFFF;
}
.line__banner a:hover {
  background-color: #00E000;
}
.line__banner a:active {
  background-color: #00B300;
}

/* フッター
-------------------------------------------------------------------*/
#footer__sub {
  display: none;
}

#footer {
  background: #00a3af;
  width: 100%;
  margin: 0 auto;
}

#footer__wrap {
  width: 1200px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  min-height: 80px;
  padding-top: 15px;
}

.copyright__text {
  color: #fff;
}

.display__change {
  background: linear-gradient(to top, #555 0%, #444444 100%);
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  margin: 10px 0;
  transition: 0.2s;
}
.display__change:hover {
  opacity: 0.75;
}
#footer .display__change a {
  font-size: 1.1rem;
  color: #fff;
}
.display__change.btn__s {
  padding: 0;
}
.display__change.btn__s a {
  display: inline-block;
  padding: 3px 8px;
}

.verisign__text,
.verisign__text__en {
  color: #fff;
}

/* 画像認証
--------------------------------------------------*/
#login_auth .login__auth__area {
  background: #00939e;
  border-radius: 5px;
  margin: 30px auto;
  padding: 30px;
  text-align: center;
}
#login_auth img {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin: 0 auto;
  padding: 37px 25px 45px 35px;
}
#login_auth #login_box {
  display: block;
  background: transparent;
  width: auto;
  height: auto;
  margin: 18px auto;
  color: #fff;
}
#login_auth #login_box input {
  width: 100%;
  text-align: center;
}
#login_auth .login__forget {
  background: transparent;
  width: auto;
  border-radius: 0;
  margin-top: 10px;
}
#login_auth .login__forget a {
  font-size: 1.08rem;
  text-decoration: underline;
  color: #333;
}
#login_auth .form_button {
  margin: 0;
}
#login_auth .btn__l {
  width: 100%;
  margin: 0;
}

/* フラッシュメッセージ
--------------------------------------------------*/
#axol_top_flash {
  position: relative;
  background: #ff664b;
  border-bottom: 1px solid #ff664b;
  margin: 20px 0 5px;
  padding: 10px 15px;
  color: #fff;
}
#axol_top_flash::before {
  content: "";
  position: absolute;
  border-top: 7px solid #ff664b;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin: 0 auto;
  left: calc(50% - 5px);
  bottom: -7px;
}

/* sns
--------------------------------------------------*/
li.menu__facebook a,
li.menu__twitter a {
  width: 115px;
  height: 28px;
}
li.menu__facebook a:hover,
li.menu__twitter a:hover {
  opacity: 1;
}

/* カスタム部分（ロゴと背景画像）
--------------------------------------------------*/
#menu__area #menu {
/* ロゴを非表示に */
  box-sizing: border-box;
  padding: 20px 0 20px;
}

#contents__top__img__wrap {
  order: 2;
  background: url(../images/login_img_back.jpg) left top/850px 650px no-repeat;
  width: 850px;
  height: 650px;
}

.nomenu #header__main .header__main__contents {
/* ロゴを非表示に */
}

/**------------------------------------------------------------------
*  pc_login.css
*  color: 12
*  loginPath: login6
 ------------------------------------------------------------------**/

/*# sourceMappingURL=login_s6_12.css.map */
