@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css?family=Lora:400,700');

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;
}
/* HTML5 display-role reset for older browsers */
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;
}

body{
  width: 100%;
  font-family: "Noto Sans", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  position: relative;
}
a{
  color: #000;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

a img:hover{
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity:0.6;
}

img {
  max-width: 100%;
}

#wrapper{
  text-align: left;
}
.tc {
  text-align: center;
}


/*  HEADER
========================================== */
#header {
  max-width: 1000px;
  margin: 0 auto 20px;
}
.header-inner{
  max-width: 1024px;
  padding: 20px 0;
}
.header-logo{
  display: block;
  width: 250px;
  float: left;
}
.header__contact{
  float: right;
  text-align: right;
}
.header__contact li{
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-left: 10px;
}
.header__contact a{
  background: #ff9600;
  height: 50px;
  color: #fff;
  line-height: 50px;
  display: block;
  padding: 0 20px;
  text-decoration: none;
}
.header__tel{
  line-height: 1;
}
.header__tel img{
  display: block;
  height: 24px;
  margin: 0 0 10px;
}
.header__time{
  font-size: 0.875rem;
}
#global-nav ul{
  display: flex;
  align-items: center;
}
#global-nav li{
  width: 20%;
  text-align: center;
  border-left: solid 1px #ccc;
}
#global-nav li:last-child{
  border-right: solid 1px #ccc;
}
#global-nav li a{
  display: block;
  padding: 15px 0;
  text-decoration: none;
}
#global-nav li a:hover{
  background: #006dba;
  color: #fff;
}
.burger {
  display: none;
}

/*  BURGER
========================================== */
.burger {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 15px;
  right: 20px;
  border-radius: 4px;
  z-index: 10;
}
.burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -1.5px;
}
.burger span, .burger span::before, .burger span::after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #1e96d5;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.burger span::before, .burger span::after {
  position: absolute;
  content: "";
}
.burger span::before {
  top: -9px;
}
.burger span::after {
  top: 9px;
}
.burger.clicked span {
  background-color: transparent;
}
.burger.clicked span::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.burger.clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.burger.clicked span:before, .burger.clicked span:after {
  background-color: #ffffff;
}
.burger:hover {
  cursor: pointer;
}


/*  NAV
========================================== */
.nav-sp {
  background-color: #1e96d5;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 515px;
  width: 100%;
  padding: 100px 40px 60px 40px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.nav-sp.show {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
.nav-sp.show ul li {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}
.nav-sp.show ul li:nth-child(1) {
  transition-delay: 0.15s;
}
.nav-sp.show ul li:nth-child(2) {
  transition-delay: 0.3s;
}
.nav-sp.show ul li:nth-child(3) {
  transition-delay: 0.45s;
}
.nav-sp.show ul li:nth-child(4) {
  transition-delay: 0.6s;
}
.nav-sp.show ul li:nth-child(5) {
  transition-delay: 0.75s;
}
.nav-sp.show ul li:nth-child(6) {
  transition-delay: 0.9s;
}
.nav-sp.show ul li:nth-child(7) {
  transition-delay: 1.05s;
}
.nav-sp.show ul li:nth-child(8) {
  transition-delay: 1.2s;
}
.nav-sp.show ul li:nth-child(9) {
  transition-delay: 1.35s;
}
.nav-sp.show .about, .nav-sp.show .social, .nav-sp.show ul.sub {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: .85s;
}
@media (min-width: 667px) {
  .nav-sp {
    padding: 120px 90px 70px 90px;
  }
}
.nav-sp ul {
  list-style-type: none;
}
.nav-sp ul li {
  margin-bottom: 20px;
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-sp ul li:last-of-type {
  margin-bottom: 0px;
}
.nav-sp ul li a {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  letter-spacing: 5px;
  font-weight: 600;
  /* padding: 10px 0; */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-sp ul li a span {
  color: #006dba;
}
.nav-sp ul li a:hover {
  color: #006dba;
}
.nav-sp .about {
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav-sp .about p {
  color: #ffffff;
  font-family: "Spectral", serif;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  line-height: 170%;
}
.nav-sp .social {
  margin-top: 40px;
  position: relative;
  padding-bottom: 30px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav-sp .social:after {
  content: "";
  width: 230px;
  height: 2px;
  background-color: #b7ac7f;
  position: absolute;
  bottom: 0;
  left: 0;
}
.nav-sp .social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 25px;
}
.nav-sp .social a:last-of-type {
  margin-right: 0px;
}
.nav-sp .social a:hover svg path, .nav-sp .social a:hover svg circle {
  fill: #b7ac7f;
}
.nav-sp .social a svg {
  width: 100%;
  height: 100%;
}
.nav-sp .social a svg path, .nav-sp .social a svg circle {
  fill: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-sp ul.sub {
  list-style-type: none;
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.nav-sp ul.sub li {
  margin-bottom: 10px;
}
.nav-sp ul.sub li:last-of-type {
  margin-bottom: 0px;
}
.nav-sp ul.sub li a {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-sp ul.sub li a:hover {
  color: #b7ac7f;
}

/*  OVERLAY
========================================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}
.overlay.show {
  opacity: 0.8;
  visibility: visible;
}


/*  CONTAINER
========================================== */
.container{
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 0;
}
#container{
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 40px;
  min-height: 600px;
  height: auto !important;
  height: 600px;
}
.contents-title{
  padding-bottom: 30px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 40px;
}
.breadcrumb{
  padding: 0 0 30px;
  white-space: 0.4;
  background: none;
  font-size: 14px;
}
.breadcrumb li{
  display: inline;
}
.breadcrumb li:after {
  content:" > ";
}
.breadcrumb li:last-child:after {
  content: none;
}

/* ------------------------------------------------------
  Contents
-------------------------------------------------------　*/
.contents-title{
  padding-bottom: 30px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 40px;
}
.contents-title h1,
.breadcrumb,
#contents{
  width: 1000px;
  margin: 0 auto;
}
#contents{
  overflow: hidden;
}
.contents-title h1{
  font-size: 30px;
  color: #206cb6;
}

/* ------------------------------------------------------
  Support
-------------------------------------------------------　*/

.support {
  text-align: center;
  margin:100px 0 0;
}
.support h2 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}
/*.support img {
  width: 480px;
}*/
@media (max-width: 425px){
  .support h2 {
    font-size: 18px;
  }
}


/*  FOOTER
========================================== */
.footer{
  padding:3.125rem 0 0;
}
.footer-contact{
  background: #1e96d5;
  padding: 1.25rem 0;
  text-align: center;
  color: #fff;
}
.footer-contact h2{
  font-weight: bold;
  font-size: 1.5rem;
}
.footer-contact__mail,
.footer-contact__tel{
  display: inline-block;
  vertical-align: top;
  padding: 0 20px;
}
.footer-contact__mail a{
  width: 300px;
  margin: 0 auto;
  background: #fff;
  display: block;
  padding: 20px;
  color: #1e96d5;
  font-size: 1.25rem;
  font-weight: bold;
  line-height:  1;
}
.footer-contact__mail a svg{
  margin-right: 10px;
}
.footer-contact__mail a:hover{
  text-decoration: none;
}
.footer-contact__mail a:hover{
  text-decoration: none;
}
.footer-contact__tel img{
  width: 300px;
}
.footer__title{
  width: 300px;
}
.footer__item h3{
  font-weight: bold;
}
footer__item .col-sm-12,
footer__item .col-md-6{
  padding-left: 0;
}

.footer__item{
  float: left;
}
.footer__item li{
  padding: 0 0 5px;
}
.group-link{
  border-top: solid 1px #ccc;
  padding: 1.25rem 0 0;
}
.group-link li{
  text-align: center;
}
.group-link li img{
  width: 90%;
  margin: 0 auto;
}
.group-link li.aoicoffee img{
  width: 60%;
}
.copyright{
  background: #1e96d5;
  color: #fff;
  padding: 0.625rem 0;
  text-align: center;
}

.pagetop{
  position: fixed;
  right: 20px;
  bottom: 150px;
  text-align: right;
}
.pagetop a:link,
.pagetop a:visited{
  width:40px;
  height: 0;
  background: url(../img/common/btn_pagetop.png) no-repeat;
  display: block;
  overflow: hidden;
  padding-top: 40px;
}
.pagetop a:hover,
.pagetop a:active{
  background-position: 0 -40px;
}


/* margin */
.mb-20{
  margin-bottom: 1.25rem;
}
.mb-50{
  margin-bottom: 3.125rem;
}
.mb-80{
  margin: 0 0 5rem;
}
.pb-30{
  padding:0 0 1.875rem;
}

@media screen and (max-width: 1024px){
  img{
    max-width: 100%;
  }
  .burger {
    display: block;
  }
  #header{
    width: auto;
    margin: 0;
    height: 80px;
    position: relative;
  }
  .header-logo{
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .header__contact{
    display: none;
  }
  .nav-pc{
    display: none;
  }
  #container,
  .container,
  .contents-title h1,
  .breadcrumb,
  #contents{
    width: 96%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px){
  .mb-20{
    margin: 0 0 0.9375rem;
  }
  .mb-50{
    margin: 0 0 1.875rem;
  }
  .mb-80{
    margin: 0 0 3.125rem;
  }
  .pb-30{
    padding:0 0 1.25rem;
  }
  .footer-contact__mail,
  .footer-contact__tel{
    display: block;
    padding: 0 0 20px;
  }
  .footer__item{
    padding: 0 0 20px;
  }
}

@media screen and (max-width: 425px){   #header{     height: 70px;   }
.header-logo{     width: 180px;     position: absolute;     top: 20px;
left: 10px;   }   .burger {     top: 10px;     right: 10px;   }
.mb-50{ margin: 0 0 1.25rem;   }   .mb-80{     margin: 0 0 1.875rem;
} .footer__title{     max-width: 80%;   }   .footer-contact h2{
font-size: 1rem;   }   .footer-contact__mail a,   .footer-contact__tel
img{     max- width: 100%;   } } #sidebar{   float: left;   width:
240px;   } #sidebar h2{ background: #206cb6;   padding: 10px;   font-
size: 18px;   font-weight: bold; margin-bottom: 20px;   color: #fff; }
#sidebar ul{   padding-bottom: 20px; } #sidebar li{   background:
url(/demo/ms-sys/img/common/arrow.png) no-repeat 0 5px;   padding: 0 0
5px 15px; } /* ------------------------------------------------------
#main-contents -------------------------------------------------------
*/ #main-contents{ float: right;   width: 720px; } .pagination{
text-align: center;   letter- spacing: -0.4; } .pagination li{
display: inline-block;   /* IE 6/7 */ /display: inline;   /zoom: 1;
padding: 0 10px;   letter-spacing: normal; } .pagination li a:link,
.pagination li a:visited{   padding:10px 15px; border: solid 1px
#206cb6;   color: #206cb6;   display: block;   text- decoration: none;
} .pagination li a:hover, .pagination li a:active{ background:
#206cb6;   color: #fff; }

@media screen and (max-width: 1024px){
  #sidebar,
  #main-contents{
    float: none;
    width: auto;
  }
  #main-contents{
    margin: 0 0 20px;
  }
}


.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
  padding: 0 10px;
}