@charset "UTF-8";

/*====================
  Base
  01-01.Reset
  01-02.Font
  01-03.Common

  Header
  02-01.Top
  02-01.Bottom

  Footer
  03-01.Base
  03-02.Body

  Pagetop
  04-01.Base

  Modal
  05-01.Base

====================*/

/*========================================
  Base
========================================*/
/*====================
  01-01.Reset
====================*/
/*===== PC/SP =====*/
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,
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,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/*====================
  01-02.Font
====================*/
/*===== PC/SP =====*/
body {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/*====================
  01-03.Common
====================*/
/*===== PC/SP =====*/
/*===== PC =====*/
@media only screen and (min-width: 768px), print, tv {
  /* Hidden */
  .m-hidden-pc {
    display: none !important;
  }
  /* Text */
  .m-text-left-pc {
    text-align: left !important;
  }
  .m-text-right-pc {
    text-align: right !important;
  }
  .m-text-center-pc {
    text-align: center !important;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 767px) {
  /* Hidden */
  .m-hidden-sp {
    display: none !important;
  }
  /* Text */
  .m-text-left-sp {
    text-align: left !important;
  }
  .m-text-right-sp {
    text-align: right !important;
  }
  .m-text-center-sp {
    text-align: center !important;
  }
}

/*========================================
  Header
========================================*/
/*====================
  02-01.Top
====================*/
/*===== PC =====*/
@media only screen and (min-width: 768px), print, tv {
  /* Base */
  .jiten-global-header-top {
    border-bottom: solid 1px #e5e5e5;
    background-color: #ffffff;
  }
  .jiten-global-header-top-inner {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  /* grid */
  .jiten-global-header-top-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /* Logo */
  .jiten-global-header-brand {
    width: 106px;
  }
  .jiten-global-header-brand-link {
    display: block;
  }
  .jiten-global-header-brand-link:hover {
    opacity: 0.7;
  }
  /* Nav */
  .jiten-global-header__global-nav-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .jiten-global-header__global-nav-item {
    font-size: 12px;
    color: #000000;
    text-align: center;
    line-height: 1.5;
  }
  .jiten-global-header__global-nav-item:not(:last-child) {
    margin-right: 30px;
  }
  .jiten-global-header__global-nav-item-link {
    font-size: 12px;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    text-decoration: none;
  }
  .jiten-global-header__global-nav-item-link:hover {
    opacity: 0.7;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 767px) {
  /* Base */
  .jiten-global-header {
    position: relative;
  }
  .jiten-global-header-top {
    background-color: #ffffff;
  }
  .jiten-global-header-top-inner {
    padding: 12px 15px;
  }
  /* Logo */
  .jiten-global-header-brand {
    width: 24vw;
  }
  .jiten-global-header-brand-link {
    display: block;
  }
}

/*====================
  02-02.Bottom
====================*/
/*===== PC =====*/
@media only screen and (min-width: 768px), print, tv {
  /* Base */
  .jiten-global-header-bottom {
    border-bottom: solid 1px #e5e5e5;
    background-color: #ffffff;
  }
  .jiten-global-header-bottom-inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-right: solid 1px #e5e5e5;
    border-left: solid 1px #e5e5e5;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom:20px;
    margin-top:20px;
  }
  /* Grid */
  .jiten-global-header-bottom-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /* Logo */
  .jiten-global-header-logo {
    width: 18%;
    margin-left: 2%;
  }
  .jiten-global-header-logo-link {
    display: block;
  }
  .jiten-global-header-logo-link:hover {
    opacity: 0.7;
  }
  /* Nav */
  .jiten-global-header__local-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
  }
  .jiten-global-header__local-nav-title a{
        text-decoration: none;
        color: #0068b7;
  }
  .jiten-global-header__local-nav-title {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #0075C2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right:20px;
  }
  .jiten-global-header__local-nav-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 26px 40px 26px 0;
  }
  .jiten-global-header__local-nav-item {
    margin-left: 48px;
  }
  .jiten-global-header__local-nav-item-link {
    display: block;
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .jiten-global-header__local-nav-item-link:hover {
    opacity: 0.7;
  }
  .jiten-global-header__local-nav-item-link::after {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-left: 6px;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 767px) {
  /* Logo */
  .jiten-global-header-logo {
    width: 25vw;
    height: 7vw;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .jiten-global-header-logo-link {
    display: block;
  }
  /* Menu */
  .jiten-global-header__menu-title {
    background-image: url("/info/img/global_header_menu.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 8vw;
    height: 7.7vw;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
  }
  .jiten-global-header__menu-overflow {
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .jiten-global-header__menu-overflow.is-active {
    z-index: 1000;
    opacity: 1;
  }
  .jiten-global-header__menu-item-list {
    background-color: #ffffff;
    width: 80%;
    height: 100%;
    padding-top: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  .jiten-global-header__menu-item-list.is-active {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .jiten-global-header__menu-item:last-child {
    border-bottom: solid 1px #eeeeee;
  }
  .jiten-global-header__menu-item {
    border-top: solid 1px #eeeeee;
    border-left: solid 1px #eeeeee;
  }
  .jiten-global-header__menu-item--sub-item
    .jiten-global-header__menu-item-link {
    background-color: #f5f5f5;
    padding-left: 40px;
  }
  .jiten-global-header__menu-item-link {
    display: block;
    background-color: #ffffff;
    font-size: 14px;
    color: #000000;
    line-height: 1;
    text-decoration: none;
    padding: 18px 20px;
    position: relative;
  }
  .jiten-global-header__menu-item-link:after {
    content: "";
    background-image: url(/info/img/global_header_menu_arrow.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 6px;
    height: 10px;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
  }
  .jiten-global-header__menu-item--sub {
    display: block;
    background-color: #ffffff;
    font-size: 14px;
    color: #000000;
    line-height: 1;
    text-decoration: none;
    padding: 18px 20px;
  }
  .jiten-global-header__menu-close {
    background-image: url(/info/img/global_header_menu_close.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 21px;
    right: 15px;
  }
}

/*========================================
  Footer
========================================*/
/*====================
  03-01.Base
====================*/
/*===== PC =====*/
@media only screen and (min-width: 768px), print, tv {
  .jiten-global-footer {
    border-top: solid 2px #f2f2f2;
    background-color: #ffffff;
  }
  .jiten-global-footer-inner {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 767px) {
  .jiten-global-footer {
    border-top: solid 2px #f2f2f2;
    background-color: #ffffff;
    position: relative;
  }
  .jiten-global-footer-inner {
    padding: 25px 20px 60px;
  }
}

/*====================
  03-02.Body
====================*/
/*===== PC =====*/
@media only screen and (min-width: 768px), print, tv {
  /* Grid */
  .jiten-global-footer-grid-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .jiten-global-footer-grid--content-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /* Logo */
  .jiten-global-footer-brand {
    width: 106px;
    margin-right: 30px;
  }
  .jiten-global-footer-brand-link {
    display: block;
  }
  .jiten-global-footer-brand-link:hover {
    opacity: 0.7;
  }
  /* List */
  .jiten-global-footer-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .jiten-global-footer-item {
    font-size: 12px;
    color: #000000;
    line-height: 1;
  }
  .jiten-global-footer-item:not(:last-child) {
    border-right: solid 1px #000000;
    padding-right: 20px;
    margin-right: 20px;
  }
  .jiten-global-footer-item-link {
    font-size: 12px;
    color: #000000;
    line-height: 1;
    text-decoration: none;
  }
  .jiten-global-footer-item-link:hover {
    opacity: 0.7;
  }
  /* Copyright */
  .jiten-global-footer-copyright {
    font-size: 12px;
    color: #000000;
    line-height: 1.5;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 767px) {
  /* Logo */
  .jiten-global-footer-brand {
    width: 24vw;
    margin-bottom: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  .jiten-global-footer-brand-link {
    display: block;
  }
  /* List */
  .jiten-global-footer-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .jiten-global-footer-item {
    font-size: 12px;
    color: #000000;
    line-height: 1;
  }
  .jiten-global-footer-item:not(:last-child) {
    border-right: solid 1px #000000;
    margin-right: 10px;
    padding-right: 10px;
  }
  .jiten-global-footer-item-link {
    font-size: 12px;
    color: #000000;
    line-height: 1;
    text-decoration: none;
  }
  /* Copyright */
  .jiten-global-footer-copyright {
    font-size: 12px;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    width: 100%;
    position: absolute;
    bottom: 15px;
    left: 0;
  }
}

/*========================================
  Pagetop
========================================*/
/*====================
  04-01.Base
====================*/
/*===== PC =====*/
@media only screen and (min-width: 768px), print, tv {
  .jiten-pagetop {
    width: 40px;
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 10;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 767px) {
  .jiten-pagetop {
    width: 10%;
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 10;
  }
}

/*========================================
  Modal
========================================*/
/*====================
  05-01.Base
====================*/
/*===== PC =====*/
@media only screen and (min-width: 768px), print, tv {
  /*===== Wrap =====*/
  .jiten-modal-wrap {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
  }
  .jiten-modal-wrap.is-active {
    display: block;
  }
  /*===== Body =====*/
  .jiten-modal-body {
    display: none;
    border-radius: 6px;
    border: 2px solid #c6c6c6;
    background-color: #ffffff;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2000;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .jiten-modal-body.is-active {
    display: block;
  }
  /*===== Close =====*/
  .jiten-modal-close {
    background-image: url(/info/img/modal_close_icon.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2001;
    cursor: pointer;
  }
  .jiten-modal-close:hover {
    opacity: 0.7;
  }
  /*===== Content =====*/
  .jiten-modal-content {
    padding: 20px;
  }
  .jiten-modal-notice {
    font-size: 14px;
    color: #808080;
    padding-left: 1.2em;
    position: relative;
  }
  .jiten-modal-notice:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }
}
/*===== SP =====*/
@media only screen and (max-width: 767px) {
  /*===== Wrap =====*/
  .jiten-modal-wrap {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
  }
  .jiten-modal-wrap.is-active {
    display: block;
  }
  /*===== Body =====*/
  .jiten-modal-body {
    display: none;
    border-radius: 6px;
    border: 2px solid #c6c6c6;
    background-color: #ffffff;
    width: 92%;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2000;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .jiten-modal-body.is-active {
    display: block;
  }
  /*===== Close =====*/
  .jiten-modal-close {
    background-image: url(/info/img/modal_close_icon.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2001;
    cursor: pointer;
  }
  /*===== Content =====*/
  .jiten-modal-content {
    padding: 20px;
  }
  .jiten-modal-notice {
    font-size: 14px;
    color: #808080;
    padding-left: 1.2em;
    position: relative;
  }
  .jiten-modal-notice:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }
}