@charset "UTF-8";
/*******************************************************************************
 === INDEX ===
 (1) headers
 (2) articles
 (3) footers
 (4) common input utilities
 (5) tooltip
*******************************************************************************/

/*******************************************************************************
 headers
*******************************************************************************/
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  background: #ffffff 0% 0% no-repeat padding-box;
  z-index: 1000;
  margin: 0px;
  padding: 0px;
  box-shadow: 0px 3px 20px #00000029;
}

header>h1 {
  margin: 0 0 0 20px;
  font-size: 28px;
  line-height: 60px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #000000;
  position: relative;
  font-family: 'Montserrat';
  font-weight: bold;
}

header a:hover {
  text-decoration: none;
}

header>nav#global-menu-left {
  width: 100%;
  margin: 0px 0px 0px 190px;
  position: absolute;
  top: 0px;
}

header>nav#global-menu-left>ul {
  width: 100%;
  padding: 13px 0 15px 0;
  list-style-type: none;
}

header>nav#global-menu-left>ul a {
  color: #000;
}

header>nav#global-menu-left>ul li {
  font-size: 15px;
  line-height: 32px;
  margin: 0px 10px 0 0;
  padding: 2px 6px 0px 6px;
  background: #FFFFFF34 0% 0% no-repeat padding-box;
  border-radius: 8px;
  text-align: center;
  float: left;
}

header>nav#global-menu-left>ul li:hover {
  /* background: #5D5D5DFF 0% 0% no-repeat padding-box; */
  color: #909090;
}

/* ヘッダ右上メニュー */
header>nav#global-menu-right>ul {
  line-height: 60px;
  margin: 0 20px 0 60px;
  padding: 0px;
  list-style-type: none;
  position: absolute;
  top: 0px;
  right: 0px;
}

header>nav#global-menu-right a {
  color: #000;
}

header>nav#global-menu-right a:hover {
  color: #999;
  text-decoration: underline;
}

/* PCサイト用アイコンメニュー */
header>nav#global-menu-right li.iconMenu {
  position: relative;
  width: 25px;
  font-size: 15px;
  margin: 0px 0px 0px 60px;
  padding: 2px 0px 0px 0px;
  top: -5px;
  float: right;
}

header>nav#global-menu-right li.iconMenu span {
  position: absolute;
  top: 20px;
  left: -25px;
  width: 60px;
  font-size: 12px;
}

/* SPサイト用ポップアップ */
header>nav#global-menu-right li.popup-menu {
  position: relative;
  color: #333;
}

header>nav#global-menu-right li.popup-menu ul.menu {
  position: absolute;
  top: 40px;
  width: 100%;
  list-style-type: none;
  background: #fff;
  border: 1px #999 solid;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

header>nav#global-menu-right li.popup-menu ul.menu {
  width: 300px;
  display: none;
  padding: 0px 0px 0px 20px;
}

header>nav#global-menu-right li.popup-menu ul.menu li {
  width: 300px;
  clear: both;
  float: none;
}

header>nav#global-menu-right li.popup-menu:hover ul.menu {
  top: 60px;
  right: -20px;
  display: block;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  header>h1 {
    font-size: 21px;
  }
}



/*******************************************************************************
 article
*******************************************************************************/
article {
  width: 100%;
  margin: 60px auto 0px auto;
  padding: 0;

  -moz--sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article section.contents-block,
article section.contents-mypage-block,
article section.contents-application-block
{
  margin: 0 auto 0 auto;
  padding: 40px 0px 0px 0px;
  width: 100%;
  border: none;
}

article section.contents-block {
  background-image: url('/img/iStock-618843850.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

article section.contents-mypage-block {
  background-image: url('/img/iStock-502815716.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

article section.contents-application-block {
  background-image: url('/img/wphone-application-image.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width:1024px) {
  article section.contents-block {
    padding: 0px 0px 0px 0px;
  }
}

/* セクション1 */
article section.section-block {
  width: 100%;
  max-width: 1280px;
  margin: 0px auto 60px auto;
  padding: 20px 20px 20px 20px;
  background: #FFFFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #00000029;

  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width:1024px) {
  article section.section-block {
    margin-bottom: 20px;
  }
}

section.contents-block>h2,
section.contents-application-block>h2,
section.contents-mypage-block>h2,
section.contents-block h2.section-title,
section.contents-application-block h2.section-title,
section.contents-mypage-block h2.section-title {
  margin: 0px auto 0px auto;
  padding: 0px 20px 0px 20px;
  width: 100%;
  max-width: 1280px;
  line-height: 54px;

  vertical-align: middle;

  border-bottom: 1px #ddd solid;
  background: #FFFFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #00000029;
  opacity: 1;

  font-size: 24px;
  font-weight: normal;

  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section.section-block h2 {
  margin: 0px 0px 30px 0px;
  text-align: left;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0px;
  color: #000000;
}

section.section h3 {
  margin: 0px;
  padding: 0px;

  font-weight: normal;
  font-size: 18px;
}

/* ページサブタイトル */
section.subtitle-block {
  width: 100%;
  max-width: 1280px;
  margin: 0px auto 0px auto;
  padding: 0px 20px 0px 20px;

  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section.subtitle-block::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 180px;
  left: 0;
  margin-top: -70px;
  background: transparent radial-gradient(closest-side at 50% 50%, #FFFFFF 0%, #FFFFFFB3 64%, #FFFFFF00 100%) 0% 0%;
  z-index: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section.subtitle-block>h2 {
  position: relative;
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #000000;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  article {
    margin-bottom: 100px;
  }
}



/*******************************************************************************
 footer
*******************************************************************************/
footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background: #404040 0% 0% no-repeat padding-box;
}

footer>nav {
  padding: 10px 0px 10px 20px;
}

footer>nav>ul {
  margin: 0 auto 0 auto;
  padding: 0;
  list-style-type: none;
}

footer>nav>ul>li {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0px;
}

footer>nav.horizon>ul>li {
  float: left;
  margin-right: 30px;
}

footer>section.copyright {
  width: 100%;
  height: 40px;
  margin: 0px;
  padding: 0px;
  background: #000000 0% 0% no-repeat padding-box;

  color: #fff;
  font-size: 15px;
  line-height: 40px;
  text-align: left;
}

footer>section.copyright>span {
  margin: 20px;
}

@media screen and (max-width: 1024px) {
  footer>section.copyright {
    height: 80px;
    padding-left: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  footer>section.copyright>span {
    margin: 0px;
  }
}

div.agree {
  margin-bottom: 10px;
}