/**
* Template Name: EGIJ - v2.0
* Author: DEWEY Inc.
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #004098;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
footer#footer {
  position: sticky;
  top: 100vh;
  width: 100%;
}
.clear { clear: both; }
.bottom_border { border-bottom: 1px #ddd solid; }
.reg {
  font-size: 0.6rem;
  vertical-align: top;
}
.regL {
  font-size: 0.7rem;
  vertical-align: top;
  margin: 5px 3px 0 -6px;
  display: inline-block;
}
/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #004098;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

.sp_none {
  display: inline;
}
.pc_none {
  display: none;
}

@media screen and (max-width: 991px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: inline-block;
  }  
}
@media screen and (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #004098;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

/* button */
.btn {
  white-space: nowrap;
}
.btn-primary {
    color: #fff;
    background-color: #004098;
    border-color: #004098;
}
.btn-primary:hover {
    color: #fff;
    background-color: #003366;
    border-color: #003366;
}

.page-item.active .page-link {
    background-color: #004098;
    border-color: #004098;
}
.page-link {
    color: #004098;
    border: 1px solid #dee2e6;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0 10px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled {
  height: 60px;
  padding: 10px 0;
}
.storetop #header {
  height: 70px;
  padding: 15px 0 10px;
}
.storetop #header.header-scrolled {
  height: 60px;
  padding: 10px 0;
}
@media screen and (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }
}

#header .logo {
  margin: 0 20px 0 0;
  padding: 0;
}

#header.logined {
  height: 115px;
}
#header.header-scrolled.logined {
  height: 105px;
}
@media screen and (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
  #header.logined {
    height: 60px;
  }
  #header.header-scrolled.logined {
    height: 60px;
  }
  .bottom_border {
    border-bottom: 0;
  }
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: -5px 0 0;
  max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #004289;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
  color: #004098;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004098;
}

.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  color: #fff;
  background-color: #004098;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

.main-nav li.login_btn a {
    font-weight: bold;
}
.main-nav li.regist_btn {
    margin-left: 10px;
}
.main-nav li.regist_btn a {
    font-weight: bold;
    padding: 8px 20px 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    color: #004098;
    border: 2px solid #004098;
}
.main-nav li.regist_btn a:hover {
  background: #004098;
  color: #fff;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
.mypage .myprofile {
  margin: -10px 25px 0;
}
.mobile-nav .myprofile {
  margin: 0 25px 0;
}
.mobile-nav .myprofile a {
  line-height: 1.2;
}
.avator {
  max-width: 44px;
  border-radius: 50%;
  float: left;
  margin: 0 8px 0;
}
.mobile-nav#admin_navi {
  top: auto;
  background: none;
  z-index: 99999;
}
.mobile-nav#sub_navi {

}
@media screen and (max-width: 991px) {
  .mobile-nav img.avator {
    margin: 10px 6px 0 17px;
  }
  .mypage .myprofile {
    margin: -9px 0 0;
  }
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  background: url("../images/addon_depak_img.jpg") center bottom no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
}
.storetop.logined #intro {
  padding: 170px 0 60px 0;
}
@media screen and (max-width: 991px) {
  #intro {
    padding: 120px 0 60px 0;
  }
}
@media screen and (max-width: 768px) {
  #intro {
    padding: 120px 0 40px 0;
  }
}
@media screen and (max-width: 574px) {
  #intro {
    padding: 100px 0 0 0;
  }
}

#intro .intro-img {
  width: 50%;
  float: right;
}
#intro .intro-circle {
  padding-bottom: 30px;
  float: right;
}
#intro .intro-circle img {
  max-width: 200px;
  -webkit-filter: drop-shadow(0px 3px 10px rgba(0,0,0,.2));
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,.2));
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  max-height: 2.65rem;
  overflow: hidden;
}
.card-text {
  max-height: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

#intro .intro-info {
  text-align: center;
/*   width: 50%;
  float: left; */
}

@media screen and (max-width: 991px) {
  #intro .intro-info {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }
  #intro .intro-circle {
    padding-bottom: 30px;
    float: none;
  }
  #intro .intro-circle img {
    max-width: 160px;
  }
  #intro .intro-box {
    text-align: center;
  }
   #intro .intro-msg {
    text-align: center;
  }
}

#intro .intro-info h2 {
  color: #fff;
  margin: 0;
  font-size: 54px;
  font-weight: normal;
}
#intro .intro-info h3 {
  color: #fff;
  margin: 0;
  font-size: 36px;
  line-height: 1.5;
  font-weight: normal;
}
#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }
  #intro .intro-info h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .regL {
    font-size: 0.6rem;
    margin: 2px 3px 0 -1px;
  }
}
@media screen and (max-width: 574px) {
  #intro .intro-info h3 {
    font-size: 18px;
  }
}
#intro .intro-info .btn-get-started, #intro .intro-info .btn-services {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #004098;
  border: 2px solid #004098;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-msg .pill-copy {
  font-size: 14px;
/*   letter-spacing: 1px; */
  display: block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 15px 0;
  max-width: 200px;
  color: #fff;
  text-align: center;
}
#intro .intro-msg .pill-copy {
    background: #004098;
    border: 2px solid #004098;
    color: #fff;
}
@media (max-width: 767px) {
  #intro .intro-msg .pill-copy {
    font-size: 12px;
    max-width: 180px;
  }
}
#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #004098;
  border-color: #004098;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #ecf5ff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media screen and (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Worries Us Section
--------------------------------*/
#worries {
/*   background: #fff; */
  padding: 60px 0;
}

#worries .worries-container .background {
  margin: 20px 0;
}

#worries .worries-container .content {
  background: #fff;
}

#worries .worries-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#worries .worries-container p {
  line-height: 26px;
}

#worries .worries-container p:last-child {
  margin-bottom: 0;
}

#worries .worries-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#worries .worries-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #004098;
  transition: all 0.3s ease-in-out;
}

#worries .worries-container .icon-box .icon i {
  color: #004098;
  font-size: 24px;
}

#worries .worries-container .icon-box:hover .icon {
  background: #004098;
}

#worries .worries-container .icon-box:hover .icon i {
  color: #fff;
}

#worries .worries-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#worries .worries-container .icon-box .title a {
  color: #283d50;
}

#worries .worries-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#worries .worries-extra {
  padding-top: 60px;
}

#worries .worries-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

#worries .worries-container .worries_box {
  padding: 0 50px;
}

#worries .worries-container .worries_box h3 {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin: 0;
}
#worries .worries-container .worries_box h3:before,
#worries .worries-container .worries_box h3:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #aaa;
}
#worries .worries-container .worries_box h3:before {
    margin-right: 1rem;
}
#worries .worries-container .worries_box h3:after {
    margin-left: 1rem;
}
#worries .worries-container .worries_box p.worries_sub {
    text-align: center;
    font-size: 0.9rem;
}
#worries .worries-container .worries_box h4 {
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
}

.entry_btn {
  width: 100%;
  max-width: 840px;
  margin: 30px auto;
  text-align: center;
}
.entry_btn .pill_btn {
  font-size: 18px;
/*   letter-spacing: 1px; */
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 15px 0;
  width: 100%;
  max-width: 440px;
  color: #fff;
  text-align: center;
}
.entry_btn .pill_btn {
    background: #fc7a00;
    border: 2px solid #fc7a00;
    color: #fff;
    -webkit-filter: drop-shadow(0px 0px 6px rgba(0,0,0,.4));
    filter: drop-shadow(0px 0px 6px rgba(0,0,0,.4));
}
.entry_btn .pill_btn:hover {
     transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  #worries {
    padding: 20px 0 30px;
  }
  .entry_btn .pill_btn {
    font-size: 16px;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* Seminer Section
--------------------------------*/
#seminar {
  margin: -200px 0 20px;
  padding: 100px 0;
}
#seminar .seminar_zone_outer {
  background-color: #f7f9fc;
}
#seminar .seminar_zone {
  max-width: 1240px;
  margin: 0 auto;
}
#seminar .seminar-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
/*#seminar .seminar-container.seminar-bottom {*/
/*    text-align: right;*/
/*    display: inline-block;*/
/*}*/
#seminar .slant-bg {
    width: 100%;
    margin: 40px 0;
    padding: 100px 0 0;
    position: relative;
}
#seminar .slant-bg::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f7f9fc;
    transform: skewY(-3deg);
    z-index: -1;
}
#seminar .seminar-container .seminar_img img {
    max-width: 240px;
    margin-top: -220px;
    margin-left: -60px;
}
#seminar .seminar-container .seminar_img2 img {
    max-width: 240px;
    margin-top: -60px;
    margin-right: -30px;
    float: right;
}
#seminar .seminar-container .seminar_box {
  margin-top: 40px;
}
#seminar .seminar-container .seminar_box h2 {
  color: #004098;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  margin: 0 0 10px;
}
#seminar .seminar-container .seminar_box2 {
  margin-top: 40px;
}

#seminar .seminar-container .seminar_box p.seminar_sub {
  text-align: center;
}
#seminar .seminar-container .seminar_box .seminar_action {
  text-align: center;
  margin: 40px 100px;
}
#seminar .seminar-container .seminar_box .seminar_action img {
  width: 100%;
  max-width: 800px;
}
#seminar .seminar-container .seminar_box .seminar_title {
  text-align: center;
  margin: 120px 0 40px;
}
#seminar .seminar-container .seminar_box2 .seminar_title {
  text-align: center;
  margin: 60px 0 40px;
}
#seminar .seminar-container .seminar_box .seminar_title img,
#seminar .seminar-container .seminar_box2 .seminar_title img {
  width: 100%;
  max-width: 560px;
}

#seminar .seminar-container .seminar3pr {
  text-align: center;
}
#seminar .seminar-container .seminar3pr .seminar3pr-body img {
  max-width: 220px;
} 
#seminar .seminar-container .seminar3pr .seminar3pr-body .seminar3pr-title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 15px;
}
#seminar .seminar-container .seminar3pr .seminar3pr-body .seminar3pr-text {
  font-size: 13px;
}
#seminar .seminar-container.seminar-cont {
  text-align: center;
  margin-top: -80px;
}
#seminar .seminar-container.seminar-cont img {
  max-width: 360px;
  border: border-radius;
  -moz-border-radius:12px;
  -webkit-border-radius:12px;
  border-radius:12px;

}
#seminar .seminar-container.seminar-cont .seminar-contbox1 {
  background: url("../img/seminar-cont_bg1.png") no-repeat;
  background-size: 280px;
  background-position:left bottom;
  padding-top: 110px;
}
#seminar .seminar-container.seminar-cont .seminar-contbox2 {
  background: url("../img/seminar-cont_bg2.png") no-repeat;
  background-size: 280px;
  background-position:right top; 
  padding-top: 110px;
}
#seminar .seminar-container.seminar-cont h5 {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 15px;
}
#seminar .seminar-container.seminar-cont p {
    font-size: 13px;
}

@media screen and (max-width: 767px) {
  #seminar {
  padding: 100px 0 0 0;
  }
  #seminar .seminar-container {
    top: 0;
  }
 #seminar .seminar-container .seminar_img img {
    max-width: 180px;
    margin-top: -280px;
    margin-left: -60px;
  }
  #seminar .seminar-container .seminar_img2 img {
    max-width: 180px;
    margin-top: -50px;
    margin-right: -30px;
  }
  #seminar .seminar-container .seminar_box .seminar_action {
    margin: 40px 0px;
  }
  #seminar .seminar-container.seminar-cont .seminar-contbox1 {
    padding-top: 100px;
  }
  #seminar .seminar-container.seminar-cont .seminar-contbox2 {
    padding-top: 40px;
  }
}

/* Flow Section
--------------------------------*/

#flow .flow-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0;
}
#flow .flow-container h3 {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin: 0;
}
#flow .flow-container h3:before,
#flow .flow-container h3:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #aaa;
}
#flow .flow-container h3:before {
    margin-right: 1rem;
}
#flow .flow-container h3:after {
    margin-left: 1rem;
}
#flow .flow-container .flow-box {
  text-align: center;
}
#flow .flow-container .flow-box img.flow_pc {
  width: 100%;
  max-width: 520px;
  margin: 60px 0 10px 0;
}
#flow .flow-container .flow-box img.flow_pc2 {
  width: 100%;
  max-width: 840px;
  margin: 0 0 60px 0;
}
#flow .flow-container .flow-box img.flow_sp,
#flow .flow-container .flow-box img.flow_sp2 {
  display: none;
}
@media screen and (max-width: 767px) {
  #flow .flow-container .flow-box img.flow_pc,
  #flow .flow-container .flow-box img.flow_pc2 {
    display: none;
  }
  #flow .flow-container .flow-box img.flow_sp {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  margin: 60px 0 10px 0;
  }
  #flow .flow-container .flow-box img.flow_sp2 {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  margin: 0 0 50px 0;
  }
}

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

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


/* News Section
--------------------------------*/
#news .news-container {
  max-width: 840px;
  margin: 0 auto 80px auto;
}
#news .news-container h3 {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin: 0 0 40px;
}
#news .news-container h3:before,
#news .news-container h3:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #aaa;
}
#news .news-container h3:before {
    margin-right: 1rem;
}
#news .news-container h3:after {
    margin-left: 1rem;
}
#news .news-container .news_date {
  white-space: nowrap;
}
#news .news-container .news_type span {
  background-color: #004098;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 3px;
  padding: 1px 8px;
}
@media screen and (max-width: 991px) {
  #news .news-container .news-box table th,
  #news .news-container .news-box table td {
    padding: .45rem .55rem;
    font-size: 0.9rem;
  }
  #news .news-container .news-box table td.news_date {
    font-size: 0.775rem;
  }
  #news .news-container .news_type span {
    font-size: 0.65rem;
    padding: 1px 7px;
  }
}
@media screen and (max-width: 767px) {
  #news .news-container .news-box table th,
  #news .news-container .news-box table td {
    padding: .45rem .55rem;
    font-size: 0.8rem;
  }
  #news .news-container .news-box table td.news_date {
    font-size: 0.675rem;
  }
  #news .news-container .news_type span {
    font-size: 0.55rem;
    padding: 1px 5px;
  }
}

/*  */
.illustrations_credit {
  font-size: 10px;
  text-align: right;
  padding: 1px 10px;
}

/*--------------------------------------------------------------
# Section Content
--------------------------------------------------------------*/
section#content {
  margin: 120px 0 80px;
}
@media screen and (max-width: 991px) {
  section#content {
    margin: 60px 0 80px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #003277;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}
#footer a {
  color: #fff;
}
#footer .footer-top {
  background: #004098;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #footer .footer-top .footer-info {
    text-align: center;
  }
}

#footer .footer-top .footer-info img.footer_logo {
  max-width: 120px;
  margin-top: 6px;
}
#footer .footer-top .footer-info h3 {
  font-size: 15px;
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: #fff;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .footer-menu {
  margin-bottom: 30px;
}

#footer .footer-top .footer-menu .menu-links a {
  display: block;
  background-color: #fff;
  font-size: 12px;
  color: #004098;
  border-radius: 50px;
  width: 100%;
  padding: 5px 10px;
  margin: 15px 0;
  text-align: center;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 11px;
}


/* Content */

.japan_map img {
  width: 100%;
}

 .list-group-item a {
   display: block;
 }
 .sub_menu ul li.list-group-item {
   font-size: 0.9rem;
 }
 
 .btn.btn-xs {
   font-size: 0.7rem;
   padding: 0.075rem 0.5rem;
   margin: 1.5px 0;
 }
 .form-control {
    font-size: 16px;
 }
 .imgInput label {
    color: white;
    background-color: #DD0000;
    padding: 0.2rem 0.95rem 0.2rem 0.75rem;
    border-radius: 16px;
    font-size: 12px;
    margin: 5px 0 0 5px;
    cursor: pointer;
}

.table td, .table th {
    vertical-align: middle;
}
.table.orderlist_tbl th,
.table.news_tbl th,
.table.product_tbl th{
  width:30%;
}
h1.page_title {
  font-size: 2rem;
}
label {
  margin-bottom: .3rem;
}

/****************************************
日本地図DOM
*****************************************/
.map-section {
  padding: 100px 15px;
}
.japan_map{
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    display: table;
    max-width: 720px;
/*     background-color: #adf6ff; */
}
/* 日本地図画像（スマホ対応用） */
.japan_map img{
    max-width: 100%;
    height: auto;
    border: 0;
    -webkit-backface-visibility: hidden;
}
/* 日本地図ボタン */
.japan_map .area_btn{
    position: absolute;
    z-index: 1;
    box-sizing: border-box;
    cursor: pointer;
    border: 3px solid #333333;
    border-radius: 5px;
    background-color: #FFF;
    padding: 0.2em auto;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

/* ボタン配置（使用する日本地図画像により微調整） */
.japan_map .area_btn.area1{
    top: 27%;
    right: 2%;
    /*width: 24%;*/
    padding: 0 8px;
}
.japan_map .area_btn.area2{
    top: 60%;
    right: 11%;
    width: 13%;
}
.japan_map .area_btn.area3{
    top: 53%;
    right: 29%;
    width: 13%;
}
.japan_map .area_btn.area4{
    top: 68%;
    right: 44%;
    width: 13%;
}
.japan_map .area_btn.area5{
    top: 61%;
    left: 26%;
    width: 13%;
}
.japan_map .area_btn.area6{
    top: 79%;
    left: 27%;
    width: 13%;
}
.japan_map .area_btn.area7{
    top: 70%;
    left: 1%;
    /*width: 21%;*/
    padding: 0 8px;
}
/* オーバーレイ */
.area_overlay{
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-color: #111;
    opacity: 0.5;
    cursor: pointer;
    background: url(/images/close.png) no-repeat #111;
    background-position: right 20px top 100px;
}

/* 選択前は表示を隠す */
#mapCont .pref_area{
    display: none;
}

/* 地域毎の都道府県リスト */
#mapCont .pref_list{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: 3;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    background-color: #FFF;
}
#mapCont .pref_list > div{
    box-sizing: border-box;
    width: 50%;
    border: 1px solid #CCC;
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
    cursor: pointer;
}
.result_card {
   min-height: 250px;
}
@media screen and (max-width: 991px){
    .japan_map .area_btn{
        font-size: 14px;
    }
}
@media screen and (max-width: 767px){
    /* スマホユーザー向けにボタン文字サイズを調整 */
    .japan_map .area_btn{
        font-size: 3vw;
    }
}
@media screen and (max-width: 575px){
  .result_card {
     min-height: auto;
  }
}
.status_flg {
  float: right;
  display: inline-block;
  margin: 3px 0;
}

/**/
.box {
  padding: 20px 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
}
.nocont_msg {
  font-size: 1.1rem;
  text-align: center;
  margin: 40px auto;
}
.listcount_msg {
  font-size: 1.1rem;
  text-align: center;
  margin: 10px 15px 30px 15px;
  width: 100%;
  border: 1px #ddd solid;
  border-radius: 4px;
  padding: 5px 20px;
  background-color: #dae6ff;
}
.require {
  color: #ffffff;
  background-color: #dd0000;
  padding: 1px 4px;
  margin: 0 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #dd0000;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: normal;
  white-space: nowrap;
}
.cube-pink {
  border-style: solid;
  border-width: 1px;
  border-color: #ff3366;
  color: #fff;
  font-size: 0.6rem;
  border-radius: 3px;
  padding: 1px 4px;
  vertical-align: 3%;
  background-color: #ff3366;
  display: inline-block;
}

.imgInput label {
	color: white;  
	background-color: #DD0000;
	padding: 4px 12px 3px 10px;
	border-radius: 16px;
	font-size: 12px;
	margin: 5px 3px;
	cursor: pointer;
}

.csvInput {
	float: left;
}
.csvInput {
	color: white;  
	background-color: #4caf50;
	padding: 3px 7px 0px;
	border-radius: 30px;
	font-size: 12px;
	line-height: 1.6;
	margin: 5px 0 10px;
	cursor: pointer;
}
.csvImport_disp {
	float: left;
	margin: 5px 0 0 8px;
}
.csvImport_disp input {
	width: 100%;
	min-width: 380px;
	background-color:transparent;
	border:none;
	font-size: 13px;
}
.form-group {
 border-bottom: 1px #ddd solid;
 padding-bottom: 10px;
}
input.search_box {
  max-width: 220px;
  float: left;
  margin-right: 4px;
}

/* Seminnor Search */
.form-group.search_pref {
  width: 25%;
  display: inline-block;
  vertical-align : top;
}
.form-group.search_word {
  width: calc(75% - 200px);
  display: inline-block;
  vertical-align : top;
}
.form-group.search_submit {
  width: 190px;
  display: inline-block;
  vertical-align : top;
}
@media screen and (max-width:780px){
  .form-group.search_pref,
  .form-group.search_word {
    width: 100%;
    padding-bottom: 0;
  }
}

.btn_box {
  margin-bottom: 25px;
}
.btn_box form,
.btn_box a {
  display: inline-block;
}
table.product_list {
  border: 5px #fc7a00 solid;
  border-radius: 4px;
}
table.product_list th .require,
table.product_list_trial th .require {
  margin: 0;
}
table.product_list td {
  font-weight: bold;
}
table.product_list td.product_select,
table.product_list_trial td.product_select {
  text-align:center;
}
table.product_list td.product_name br {
  display: none;
}
table.product_list td.product_price {
  min-width: 80px;
}

table.product_list td.product_quantity input.form-control,
table.product_list_trial td.product_quantity input.form-control {
  width: 54px;
  padding:.375rem .25rem;
  text-align: center;
  margin: 0 auto;
}
table td.product_estimate {

}
table.product_list_trial {
  border: 5px #99ccff solid;
  border-radius: 4px;
}
table.product_list_paid {
  border: 5px #99ffcc solid;
  border-radius: 4px;
}
table.device_in_use {
  border: 2px #ffcc99 solid;
  border-radius: 4px;
}

.btn-xs {
    padding: .2rem .4rem;
    font-size: .725rem;
    line-height: 1.2;
    border-radius: .2rem;
}
@media only screen and (max-width: 768px) {
  table.product_list.table td, table.product_list.table th {
    padding: .35rem;
  }
  table.product_list td.product_name br {
    display: inline;
  }
}
.add_product_btnbox {
  margin: 30px 0 20px;
}
.add_product_btnbox p {
  margin-bottom: 5px;
}

/* 商品アイコン*/
.product_icon {
  max-width: 30px;
  margin: 0 6px 0 0;
  display: inline-block;
}
.product_icon img {
  max-width: 30px;
  margin: 0;
}

/* product_list responsive */
td.product_select {
  vertical-align: middle;
}
.icon_shipping_flow {
  display: inline-block;
  margin: 3px;
}
table.product_list thead th,
table.product_list_trial thead th {
  text-align: center;
  vertical-align: middle;
  padding: .55rem .35rem;
}
table.product_list tbody td,
table.product_list_trial  tbody td {
  padding: .55rem .35rem;
}
.product_list input[type=checkbox], .product_list input[type=radio],
.product_list_trial input[type=checkbox], .product_list_trial input[type=radio] {
  transform: scale(1.5);
  margin: 8px;
}
.product_list .product_price,
.product_list .product_quantity,
.product_list .product_action,
.product_list_trial .product_price,
.product_list_trial .product_quantity,
.product_list_trial .product_action {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .product_list,
  .product_list_trial {
    width: 100%;
  }
  .product_list thead,
  .product_list_trial thead {
    display: none;
  }
  .product_list tr,
  .product_list_trial tr {
    width: 100%;
  }
  .product_list td,
  .product_list_trial td {
    border-top: 0;
    display: block;
    text-align: right;
    width: 100% !important;
    border-bottom: 1px #ccc solid;
  }
  table.product_list td:first-child,
  table.product_list_trial td:first-child {
    background: #004098;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: .7rem .35rem .55rem;
  }
  .product_list td:before,
  .product_list_trial td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
  .product_list .product_price,
  .product_list .product_quantity,
  .product_list .product_action,
  .product_list_trial .product_price,
  .product_list_trial .product_quantity,
  .product_list_trial .product_action {
    text-align: right;
  }
  .product_list .product_quantity .form-control.quantity-input,
  .product_list_trial .product_quantity .form-control.quantity-input {
    display: inline-block;
    padding: .225rem .25rem;
    height: calc(1em + .75rem + 2px);
  }
  .product_list input[type=checkbox], .product_list input[type=radio],
  .product_list_trial input[type=checkbox], .product_list_trial input[type=radio] {
    margin: 0 4px;
  }
}

/* userlist_tbl responsive */
table.userlist_tbl thead th {
  text-align: center;
  vertical-align: middle;
  padding: .55rem .35rem;
}
table.userlist_tbl tbody td {
  padding: .55rem .35rem;
}
@media screen and (max-width: 768px) {
  .userlist_tbl {
    width: 100%;
  }
  .userlist_tbl.table-striped tbody tr:nth-of-type(odd) {
    background-color: inherit;
  }
  .userlist_tbl thead {
    display: none;
  }
  .userlist_tbl tr {
    width: 100%;
  }
  .userlist_tbl td {
    border-top: 0;
    display: block;
    text-align: right;
    width: 100% !important;
    border-bottom: 1px #ccc solid;
  }
  .userlist_tbl td:first-child {
    background: #004098;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .userlist_tbl td:first-child a {
    color: #fff;
  }
  .userlist_tbl td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
  .userlist_tbl .no_sp {
    display: none;
  }
}
.order_product .card {
  padding: 35px 25px;
}
.order_product .card-body {
  padding: 1.25rem 0 0;
}
.product_img_icon {
  max-width: 340px;
}