/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins","Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #444444;
  line-height: 1.8;
  letter-spacing: .06em;
}

@media (max-width: 768px) {
  body p {
  font-size: 18px;
}
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins","Noto Sans JP", sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  color: #191919;
  letter-spacing: .1em;
}
.section-header h2::before,
.section-header h2::after {
  content: "";
  width: 52px;
  height: 2px;
  background: #47b2e4;
  display: inline-block;
}

.section-header h2::before {
  margin: 0 20px 15px 0;
}

.section-header h2::after {
  margin: 0 0 15px 20px;
}

@media (max-width: 768px) {

.section-header {
  padding-bottom: 20px;
}
.section-header h2 {
  font-size: 30px;
  line-height: 1.4;
}
.section-header h2::before,
.section-header h2::after {
  width: 35px;
}
.section-header h2::before {
  margin: 0 10px 10px 0;
}
.section-header h2::after {
  margin: 0 0 10px 10px;
}
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo img.dis02 {
    display: none;
}

.header-scrolled .logo img.dis01 {
    display: none;
}

.header-scrolled .logo img.dis02 {
    display: inline;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #00ecff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  background: #1658ab;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #1684ee;
}

.navbar .getstarted i {
  margin-left: 5px;
  font-size: 16px;
  transition: 0.3s;
}

.navbar .getstarted:hover i {
  transform: translateX(5px);
}


.header-scrolled .navbar a,
.header-scrolled .navbar a:focus {
  color: #013289;
}

.header-scrolled .navbar a:hover,
.header-scrolled .navbar .active,
.header-scrolled .navbar .active:focus,
.header-scrolled .navbar li:hover>a {
  color: #4154f1;
}

.header-scrolled .navbar .getstarted,
.header-scrolled .navbar .getstarted:focus {
  color: #fff;
  background: #0071ac;
  background: -moz-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: -webkit-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: linear-gradient(to right, #0071ac 0%, #00b0c7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071ac', endColorstr='#00b0c7',GradientType=1 );
}

.header-scrolled .navbar .getstarted:hover,
.header-scrolled .navbar .getstarted:focus:hover {
  color: #fff;
  background: #00b0c7;
  background: -moz-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: -webkit-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: linear-gradient(to right, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b0c7', endColorstr='#0071ac',GradientType=1 );
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.header-scrolled .mobile-nav-toggle {
  color: #012970;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url(../img/top-bg02.jpg) fixed center center;
  background-size: cover;
}

@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero .hero-img {
    text-align: center;
  margin: 30px 0 0 0;
}

.hero h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 0 30px 0 0;
}

.hero h1 span {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #ffd515;
}

.hero h2 {
  color: #daf8f9;
  margin: 30px 0 0 0;
  font-size: 22px;
  line-height: 1.8;
  padding: 0 30px 0 0;
}

.hero .btn-get-started {
  margin-top: 40px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: #0071ac;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  box-shadow: 0px 5px 30px rgba(255, 255, 255, 0.4);
  background: #fff;
}


.hero .btn-get-started:hover {
  color: #fff;
  background: #0071ac;
}

.hero .btn-get-started span {
  font-family: "Poppins","Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .06em;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateY(5px);
}


@media (min-width: 1200px) {
.hero h1 {
  font-size: 40px;
}
.hero h1 span {
  font-size: 72px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.hero h1 {
  font-size: 32px;
}
.hero h1 span {
  font-size: 58px;
}
.hero h2 {
  font-size: 18px;
  margin: 20px 0 0 0;
}
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 0 0 60px 0;
    height: 100vh;
  }

  .hero h1 {
    font-size: 32px;
    margin-top: 160px;
  padding: 0;
  text-align: center;
  }
  
.hero h1 span {
  font-size: 48px;
}

  .hero h2 {
    font-size: 16px;
  padding: 0;
    text-align: center;
  }

  .hero .hero-img {
    text-align: center;
    margin: 20px auto 0;
  }
  .hero .hero-img img {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 20px;
    margin-top: 120px;
  padding: 0;
  line-height: 1.4;
  }
  
.hero h1 span {
  font-size: 40px;
}

  .hero h2 {
    font-size: 14px;
  padding: 0;
  margin: 10px 0 0 0;
  line-height: 1.6;
  }

.hero .btn-get-started {
  margin-top: 20px;
}

  .hero .hero-img {
    margin-top: 15px;
  }

  .hero .hero-img img {
    width: 55%;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# business
--------------------------------------------------------------*/
.business .content {
  padding: 0 0 0 0;
}
  .business .logo2 img  {
    width: 80%;
  }

@media (max-width: 991px) {
.business .content {
  padding: 40px 0 0 0;
}
  .business .logo2{
    text-align: center;
  }
  .business .logo2 img{
    width: 25% !important;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
.business .content {
  padding: 30px 0 0 0;
}
  .business .logo2 img {
    width: 30% !important;
    margin: 0 auto;
    text-align: center;
  }
}

.business .ul-box {
    margin: 0;
    padding:0;
}
.business .ul-box ul {
    list-style-type: none;
    margin: 0 0 10px 0;
    padding:0;
}

.business .ul-box ul li {
    font-size: 20px;
    padding:0 0 20px 0;
    color: #007989;
    line-height: 2;
}
.business .ul-box ul li span {
    border-bottom: 3px solid #f3a731;
    font-weight: 700;
    padding:0 0 3px 0
}

.business p {
  margin: 0 0 1.2em 0;
  line-height: 1.8;
  font-size: 18px;
}

@media (max-width: 991px) {
.business .ul-box ul li {
  text-align: center;
}
}

@media (max-width: 768px) {
.business .ul-box ul {
    margin: 0 0 0 0;
}
.business .ul-box ul li {
    font-size: 18px;
    padding:0 0 25px 0;
    line-height: 1.5;
}
.business .ul-box ul li span {
    border-bottom: 2px solid #f3a731;
    font-weight: 700;
    padding:0 0 2px 0;
    line-height: 1.8;
}
  .business p {
  font-size: 14px;
}
}

/*--------------------------------------------------------------
# Job
--------------------------------------------------------------*/
.job {
  background:url("../img/job-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0 80px 0;
  text-align: center;
}

.job .box {
  padding: 25px 30px;
  box-shadow: 0px 0 30px rgba(132, 193, 225, 0.8);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  background: #fff;
  border-radius: 8px;
}

.job .box img {
  padding: 20px 5px;
  transition: 0.5s;
  transform: scale(1);
}

.job .box h3 {
  font-size: 28px;
  color: #007989;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 18px;
}

.job .box p {
  font-size: 18px;
  text-align: left;
}

.job .box:hover {
  box-shadow: 0px 0 5px rgba(132, 193, 225, 0.8);
}

.job .box:hover img {
  transform: scale(1.1);
}

@media (min-width: 992px) and (max-width: 1199px) {
.job .box img {
  padding: 10px 20px;
}
}

@media (max-width: 991px) {
.job .box p {
  text-align: center;
}
}

@media (max-width: 768px) {
.job .box {
  padding: 15px 25px;
}
.job .box img {
  padding: 20px;
}
.job .box h3 {
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.job .box p {
  font-size: 16px;
}
}

/*--------------------------------------------------------------
# contents
--------------------------------------------------------------*/
.contents table{
  border-collapse: collapse;
  width: 100%;
  font-size: 18px;
  line-height: 2;
}

.contents .tb01 th,
.contents .tb01 td{
  padding: 20px;
  border: 1px solid #8eb5e8;
  text-align:left;
  box-sizing:border-box;
}

.contents .tb01 th {
  background: #4A7EC1;
  color: #fff;
  width: 20%;
  font-weight: 500;
}

.contents .tb01 ul {
    list-style-type: none;
    margin: 0 0 10px 0;
    padding:0 0 0 1em;
}

.contents .tb01 ul li {
    color: #444444;
    padding:0 0 0.3em 1em;
    text-indent: -1em;
    
}

.contents .tb01 i {
    color: #8b52cb;
    font-size: 22px;
    margin-right: 5px;
}

.contents .tb01 span.under-l {
    border-bottom: 2px solid #E47971;
    font-weight: 700;
    padding:0 0 3px 0
}

.contents .tb01 p {
  margin-bottom: 0.5rem;
  font-size: 18px;
}


@media (max-width: 991px) {
.contents .tb01 th {
  color: #fff;
  width: 20%;
}
}

@media screen and (max-width: 756px) {
.contents table{
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  line-height: 1.8;
}
.contents .tb01 {
    width: 100%;
  }
.contents table.tb01 th,
.contents table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  padding: 15px 20px ;
  }
.contents table.tb01 th {
  text-align:center;
  padding: 10px 15px;
}
.contents .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
.contents .tb01 i {
    font-size: 18px;
}

.contents .tb01 p {
  font-size: 16px;
}
}


/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}
.contact .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  font-size: 20px;
}

.contact .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.16);
}

.contact .section-header {
  padding-bottom: 10px;
}

.contact .btn-contact {
  margin-top: 10px;
  line-height: 1;
  padding: 30px 80px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  box-shadow: 0px 5px 30px rgba(255, 255, 255, 0.4);
  background: #0071ac;
  background: -moz-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: -webkit-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: linear-gradient(to right, #0071ac 0%, #00b0c7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071ac', endColorstr='#00b0c7',GradientType=1 );
}


.contact .btn-contact:hover {
  color: #fff;
  background: #00b0c7;
  background: -moz-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: -webkit-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: linear-gradient(to right, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b0c7', endColorstr='#0071ac',GradientType=1 );
}

.contact .btn-contact span {
  font-family: "Poppins","Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .05em;
}

.contact .btn-contact i {
  margin-left: 5px;
  font-size: 32px;
  transition: 0.3s;
}

.contact .btn-contact:hover i {
  transform: translateX(5px);
}



@media (max-width: 768px) {
.contact .box {
  padding: 30px 25px;
  font-size: 16px;
}
.contact .box p {
  font-size: 14px;
}
.contact .btn-contact {
  padding: 25px 0;
  border-radius: 50px;
  width: 95% !important;
}
.contact .btn-contact span {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .05em;
}
.contact .btn-contact i {
  margin-left: 5px;
  font-size: 24px;
}
}


/*--------------------------------------------------------------
# operation
--------------------------------------------------------------*/

.operation {
  background: #e4eeef; 
}

.operation .administrator {
  margin: 0 auto 20px auto;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 20px rgba(120, 153, 158, 0.35);
  max-width: 400px
}

.operation .administrator .administrator-img {
  position: relative;
  overflow: hidden;
}

.operation .administrator .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.operation .administrator .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.operation .administrator .social a i {
  line-height: 0;
}

.operation .administrator .social a:hover {
  color: #3498db;
}

.operation .administrator .social i {
  font-size: 18px;
  margin: 0 2px;
}

.operation .administrator .administrator-info {
  padding: 15px;
}

.operation h4 {
  font-weight: 500;
  padding: 0;
  margin: 40px 0 10px 0;
  font-size: 18px;
  color: #222222;
}

.operation .administrator .administrator-info h4 {
  font-size: 20px;
  margin: 5px 0;
  padding: 0;
  border-bottom: none;
}

.operation .administrator .administrator-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #012970;
  margin-bottom: 5px;
}

.operation .administrator:hover .social {
  opacity: 1;
}

.operation .content {
  padding: 0 0 0 20px;
  font-size: 18px;
}

.operation ul {
    list-style-type: none;
    margin: 0 0 20px 0;
    padding:0;
}

.operation ul li {
    padding:0 0 10px 0.6em;
    line-height: 1.5;
    text-indent:-0.6em;
}
.operation ul li i {
  color: #47b2e4;
  padding:0 5px 5px 0;
  
}
.operation address {
  font-size: 18px;
    margin-bottom: 20px;
    font-style: normal;
    line-height:1.8;
  font-weight: 500;
}

@media (max-width: 991px) {
.operation .content {
  margin-top: 20px;
  padding: 0 10px;
}
}


@media (max-width: 768px) {

.operation .administrator {
  max-width: 320px
}
.operation ul {
    list-style-type: none;
    margin: 0 0 20px 0;
    padding:0;
  font-size: 16px;
}
.operation .content p {
  font-size: 16px;
}
.operation .content p {
  font-size: 16px;
}

.operation address {
  font-size: 16px;
    margin-bottom: 10px;
}
}

.operation table{
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.operation .tb01 th,
.operation .tb01 td{
  padding: 10px 15px;
  border: 1px solid #83aeb2;
  text-align:left;
  box-sizing:border-box;
}

.operation .tb01 th {
  background: #89babf;
  color: #fff;
  width: 25%;
  font-weight: 500;
}

.operation .tb01 ul {
    list-style-type: none;
    margin: 0 0 10px 0;
    padding:0;
  font-size: 16px;
}

.operation .tb01 ul li {
    padding:0 0 0.3em 1em;
    text-indent: -1em;
    
}

@media (max-width: 991px) {
.operation .tb01 th {
  color: #fff;
  width: 27%;
}
}

@media screen and (max-width: 756px) {
.operation table{
  border-collapse: collapse;
  width: 100%;
  line-height: 1.8;
}
.operation .tb01 {
    width: 100%;
  }
.operation table.tb01 th,
.operation table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  padding: 7px 15px;
  }
.operation table.tb01 th {
  text-align:center;
  padding: 7px 15px;
}
.operation .tb01 tr:last-child{
    border-bottom: solid 1px #83aeb2;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #012970;
}



.pc-look,.pc-look02 { display: block !important; }
.sp-look,.sp-look02 { display: none !important; }

@media only screen and (max-width: 991px) {
.pc-look { display: none !important; }
.sp-look { display: block !important; }
}

@media only screen and (max-width: 768px) {
.pc-look02 { display: none !important; }
.sp-look02 { display: block !important; }
}

/* ----------------------------------------------------------------------
 text-align
---------------------------------------------------------------------- */
.align1{text-align:center !important;}
.align2{text-align:right !important;}
.align3{text-align:left !important;}

/* ----------------------------------------------------------------------
 font-size
---------------------------------------------------------------------- */
.text70{font-size:70% !important;}
.text80{font-size:80% !important;}
.text90{font-size:90% !important;}
.text100{font-size:100% !important;}
.text110{font-size:110% !important;}
.text120{font-size:120% !important;}
.text130{font-size:130% !important;}
.text140{font-size:140% !important;}
.text150{font-size:150% !important;}


/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.m0{margin:0 !important;} 
.mt0{margin-top:0 !important;}
.mr0{margin-right:0 !important;}
.mb0{margin-bottom:0 !important;}
.ml0{margin-left:0 !important;}

.m5{margin:5px !important;}
.mt5{margin-top:5px !important;}
.mr5{margin-right:5px !important;}
.mb5{margin-bottom:5px !important;}
.ml5{margin-left:5px !important;}

.m10{margin:10px !important;}
.mt10{margin-top:10px !important;}
.mr10{margin-right:10px !important;}
.mb10{margin-bottom:10px !important;}
.ml10{margin-left:10px !important;}

.m15{margin:15px !important;}
.mt15{margin-top:15px !important;}
.mr15{margin-right:15px !important;}
.mb15{margin-bottom:15px !important;}
.ml15{margin-left:15px !important;}

.m20{margin:20px !important;}
.mt20{margin-top:20px !important;}
.mr20{margin-right:20px !important;}
.mb20{margin-bottom:20px !important;}
.ml20{margin-left:20px !important;}

.m25{margin:25px !important;}
.mt25{margin-top:25px !important;}
.mr25{margin-right:25px !important;}
.mb25{margin-bottom:25px !important;}
.ml25{margin-left:25px !important;}

.m30{margin:30px !important;}
.mt30{margin-top:30px !important;}
.mr30{margin-right:30px !important;}
.mb30{margin-bottom:30px !important;}
.ml30{margin-left:30px !important;}

.m35{margin:35px !important;}
.mt35{margin-top:35px !important;}
.mr35{margin-right:35px !important;}
.mb35{margin-bottom:35px !important;}
.ml35{margin-left:35px !important;}

.m40{margin:40px !important;}
.mt40{margin-top:40px !important;}
.mr40{margin-right:40px !important;}
.mb40{margin-bottom:40px !important;}
.ml40{margin-left:40px !important;}

.m45{margin:45px !important;}
.mt45{margin-top:45px !important;}
.mr45{margin-right:45px !important;}
.mb45{margin-bottom:45px !important;}
.ml45{margin-left:45px !important;}

.m50{margin:50px !important;}
.mt50{margin-top:50px !important;}
.mr50{margin-right:50px !important;}
.mb50{margin-bottom:50px !important;}
.ml50{margin-left:50px !important;}

.m55{margin:55px !important;}
.mt55{margin-top:55px !important;}
.mr55{margin-right:55px !important;}
.mb55{margin-bottom:55px !important;}
.ml55{margin-left:55px !important;}

.m60{margin:60px !important;}
.mt60{margin-top:60px !important;}
.mr60{margin-right:60px !important;}
.mb60{margin-bottom:60px !important;}
.ml60{margin-left:60px !important;}

.m65{margin:65px !important;}
.mt65{margin-top:65px !important;}
.mr65{margin-right:65px !important;}
.mb65{margin-bottom:65px !important;}
.ml65{margin-left:65px !important;}

.m70{margin:70px !important;}
.mr70{margin-right:70px !important;}
.mb70{margin-bottom:70px !important;}
.ml70{margin-left:70px !important;}

.m75{margin:75px !important;}
.mt75{margin-top:75px !important;}
.mr75{margin-right:75px !important;}
.mb75{margin-bottom:75px !important;}
.ml75{margin-left:75px !important;}

.m80{margin:80px !important;}
.mt80{margin-top:80px !important;}
.mr80{margin-right:80px !important;}
.mb80{margin-bottom:80px !important;}
.ml80{margin-left:80px !important;}