#global-header {
  width: 100%;
}
#global-header .inner {
  width: 1000px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#global-header .inner .logo {
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
#global-header .inner .logo a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
#global-header .inner .logo a img {
  width: auto;
  height: 70%;
}
@media screen and (max-width: 768px) {
  #global-header .inner .logo {
    width: 100%;
    display: block;
  }
  #global-header .inner .logo h1 {
    width: 100%;
  }
  #global-header .inner .logo h1 a {
    text-align: center;
  }
}
#global-header .inner #global-navi {
  width: 80%;
}
#global-header .inner #global-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}
#global-header .inner #global-navi ul li {
  width: 100%;
}
#global-header .inner #global-navi ul li a {
  display: block;
  text-align: center;
  transition: all .7s ease;
  width: 100%;
  height: 100%;
  padding: 8px 0;
}
#global-header .inner #global-navi ul li a span {
  text-align: center;
  transition: all .7s ease;
  width: 100%;
}
#global-header .inner #global-navi ul li a span.ja {
  font-size: 1.4em;
  color: #232323;
}
#global-header .inner #global-navi ul li a span.en {
  font-size: 1.1em;
  color: #214f9e;
}
#global-header .inner #global-navi ul li a:hover {
  background: #214f9e;
}
#global-header .inner #global-navi ul li a:hover span.ja {
  color: #ffffff;
}
#global-header .inner #global-navi ul li a:hover span.en {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  #global-header .inner #global-navi {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  #global-header .inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #global-header .inner {
    display: block;
    width: 100%;
    height: 70px;
  }
}

#key-top-visual {
  position: relative;
  text-align: center;
  background: #fff;
}
#key-top-visual img.key-top-pic {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
  transition: all .2s 1.1s ease;
  opacity: 0;
}
#key-top-visual img.key-top-pic.active {
  opacity: 1;
}
#key-top-visual img.key-top-text {
  position: absolute;
  z-index: 8000;
  top: 30%;
  left: 15%;
  width: 70%;
  height: auto;
  text-align: center;
  transition: all .4s .4s ease;
  opacity: 0;
}
#key-top-visual img.key-top-text.active {
  opacity: 1;
}
#key-top-visual .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 5;
  background: #001a60;
}
#key-top-visual .overlay.active {
  animation: overlay 1.4s ease-out forwards;
}

#key-top-visual .pc {
  display: inline;
}

#key-top-visual .sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  #key-top-visual .pc {
    display: none;
  }

  #key-top-visual .sp {
    display: inline;
  }
}
@keyframes overlay {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  65% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
section#concept {
  width: 100%;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  margin-bottom: 120px;
}
section#concept div.concept-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: url(../images/concept-bg.png) no-repeat center center;
  background-size: 80%;
  animation: bgrotate 40s ease infinite;
}
section#concept .concept-box {
  width: 700px;
  height: 550px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
section#concept .concept-box .box-header {
  width: 200px;
  height: 200px;
  position: relative;
  top: 32px;
  left: 10px;
  z-index: 3;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: all .6s .2s ease;
  opacity: 0;
}
section#concept .concept-box .box-header h2 {
  font-size: 2.4em;
  font-weight: bold;
  color: #001a60;
  text-align: center;
}
section#concept .concept-box .box-header p {
  font-size: 1.6em;
  color: #001a60;
  text-align: center;
}
section#concept .concept-box .box-header.active {
  left: 64px;
  opacity: 1;
}
section#concept .concept-box .box-body {
  width: 350px;
  height: 350px;
  margin: 0 auto;
  position: relative;
  top: -32px;
  z-index: 1;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  align-items: center;
  background: #001a60;
  transition: all .6s .8s ease;
  opacity: 0;
}
section#concept .concept-box .box-body p {
  color: #ffffff;
  padding: 0 24px;
  font-size: 1.4em;
}
section#concept .concept-box .box-body.active {
  opacity: 1;
}
section#concept .concept-box .box-btn {
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  width: 140px;
  height: 140px;
  position: relative;
  top: -120px;
  left: 80%;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: all .6s .2s ease;
  opacity: 0;
}
section#concept .concept-box .box-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
section#concept .concept-box .box-btn a span {
  color: #ed1e79;
  font-size: 1.3em;
}
section#concept .concept-box .box-btn a img {
  display: inline-block;
}
section#concept .concept-box .box-btn.active {
  left: 65%;
  opacity: 1;
}
@media screen and (max-width: 415px) {
  section#concept {
    margin-bottom: 40px;
  }
  section#concept .concept-box {
    width: 100%;
  }
  section#concept .concept-box .box-header {
    width: 140px;
    height: 140px;
    left: 24px;
  }
  section#concept .concept-box .box-header h2 {
    font-size: 2em;
  }
  section#concept .concept-box .box-header p {
    font-size: 1.3em;
  }
  section#concept .concept-box .box-btn {
    top: -70px;
    left: 55%;
  }
}

@keyframes bgrotate {
  0% {
    transform: rotateZ(0);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: rotateZ(360deg);
    opacity: 1;
  }
}
#blog {
  width: 1000px;
  margin: 0 auto 120px;
  padding-top: 80px;
}
#blog .box-body {
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  #blog {
    width: 95%;
  }
}

#blog.topics {
  width: 1000px;
  margin: 0 auto 120px;
}
#blog.topics .box-body {
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  #blog.topics {
    width: 95%;
  }
}

#blog .box-header {
  text-align: center;
  margin-bottom: 64px;
}
#blog .box-header h2 {
  font-size: 2.1em;
  color: #1a1a1a;
}
#blog .box-header p {
  font-size: 1.3em;
  color: #1a1a1a;
}
#blog .box-body {
  margin-bottom: 64px;
}
#blog .box-body .post {
  position: relative;
}
#blog .box-body .post div.post-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
#blog .box-body .post div.post-link .post-thumb {
  width: 30%;
  margin-right: 2%;
}
#blog .box-body .post div.post-link .post-thumb img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  #blog .box-body .post div.post-link .post-thumb {
    height: 100%;
  }
  #blog .box-body .post div.post-link .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
}
#blog .box-body .post div.post-link .post-info {
  width: 68%;
}
#blog .box-body .post div.post-link .post-info .post-meta {
  margin-bottom: 16px;
}
#blog .box-body .post div.post-link .post-info .post-meta span, #blog .box-body .post div.post-link .post-info .post-meta time {
  display: inline-block;
}
#blog .box-body .post div.post-link .post-info .post-meta .post-category {
  text-align: center;
  padding: 2px 64px;
  border: 1px solid #1a1a1a;
  font-size: 1.2em;
  margin-right: 24px;
}
#blog .box-body .post div.post-link .post-info .post-meta .post-time {
  font-size: 1.2em;
}
#blog .box-body .post div.post-link .post-info .post-body dt {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 16px;
}
#blog .box-body .post div.post-link .post-info .post-body dd {
  font-size: 1.2em;
}
@media screen and (max-width: 415px) {
  #blog .box-body .post div.post-link {
    display: block;
  }
  #blog .box-body .post div.post-link .post-thumb {
    width: 100%;
    margin-bottom: 16px;
  }
  #blog .box-body .post div.post-link .post-info {
    width: 100%;
  }
}
#blog .box-body .post .post-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #f2f7e8;
  transition: all .5s ease;
}
#blog .box-body .post .post-color.active {
  width: 100%;
}
#blog .box-btn a {
  width: 160px;
  padding: 16px 0;
  display: block;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
#blog .box-btn a span {
  display: inline-block;
  text-align: center;
}
#blog .box-btn a span.text {
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 12px;
}
#blog .box-btn a span.color-bar {
  width: 80%;
  margin-left: 10%;
  height: 6px;
  background: #ed1e79;
  border-radius: 2em;
}
@media screen and (max-width: 415px) {
  #blog .box-body {
    margin-bottom: 64px;
  }
  #blog .box-body .post a {
    display: block;
  }
  #blog .box-body .post a .post-thumb {
    width: 100%;
    margin-bottom: 16px;
  }
  #blog .box-body .post a .post-info {
    width: 100%;
  }
}

#service {
  margin-bottom: 100px;
}
#service .box-header {
  text-align: center;
  margin-bottom: 64px;
}
#service .box-header h2 {
  font-size: 2.1em;
  color: #1a1a1a;
}
#service .box-header p {
  font-size: 1.3em;
  color: #1a1a1a;
}
#service .box-body {
  width: 1366px;
  margin: 0 auto 64px;
}
#service .box-body .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#service .box-body .inner ul {
  width: 30%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all .6s ease;
  top: -80px;
  opacity: 0;
}
#service .box-body .inner ul li.pic {
  margin-bottom: 16px;
}
#service .box-body .inner ul li.pic img {
  width: 100%;
  height: auto;
}
#service .box-body .inner ul li.janre {
  margin-bottom: 16px;
  padding: 0 16px;
}
#service .box-body .inner ul li.janre span {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #1a1a1a;
  border-radius: 2em;
  font-size: 1.3em;
}
#service .box-body .inner ul li.title {
  padding: 0 24px 8px;
  margin-bottom: 8px;
  font-size: 1.8em;
  color: #1a1a1a;
}
#service .box-body .inner ul li.comment {
  padding: 0 24px;
  margin-bottom: 16px;
  font-size: 1.4em;
}
#service .box-body .inner ul li.comment b {
  font-weight: bold;
  color: #db4f92;
}
#service .box-body .inner ul.active {
  top: 0;
  opacity: 1;
}
#service .box-btn a {
  width: 250px;
  padding: 16px 0;
  display: block;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
#service .box-btn a span {
  display: inline-block;
  text-align: center;
}
#service .box-btn a span.text {
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 12px;
}
#service .box-btn a span.color-bar {
  width: 80%;
  margin-left: 10%;
  height: 6px;
  background: #ed1e79;
  border-radius: 2em;
}
@media screen and (max-width: 1024px) {
  #service .box-body {
    width: 90%;
  }
  #service .box-body .inner ul {
    width: 33%;
  }
  #service .box-body .inner ul li.janre span {
    padding: 3px 10px;
    font-size: 1.1em;
  }
  #service .box-body .inner ul li.title {
    padding: 0 16px 8px;
    margin-bottom: 4px;
    font-size: 1.3em;
    color: #1a1a1a;
  }
  #service .box-body .inner ul li.comment {
    padding: 0 16px 24px;
    margin-bottom: 16px;
    font-size: 1.4em;
  }
  #service .box-body .inner ul li.comment br {
    display: none;
  }
  #service .box-body .inner ul li.comment b {
    font-weight: bold;
    color: #db4f92;
  }
}
@media screen and (max-width: 768px) {
  #service .box-body {
    width: 95%;
  }
  #service .box-body .inner ul {
    width: 32%;
  }
}
@media screen and (max-width: 415px) {
  #service .box-body {
    width: 90%;
  }
  #service .box-body .inner {
    display: block;
  }
  #service .box-body .inner ul {
    width: 100%;
  }
}

#pharmacy {
  margin-bottom: 120px;
}
#pharmacy .box-header {
  text-align: center;
  margin-bottom: 64px;
}
#pharmacy .box-header h2 {
  font-size: 2.1em;
  color: #1a1a1a;
}
#pharmacy .box-header p {
  font-size: 1.3em;
  color: #1a1a1a;
}
#pharmacy .box-body {
  height: 650px;
  position: relative;
}
#pharmacy .box-body .box-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  margin: 0 auto;
  background: url(../svg/pharmacy-bg.svg) no-repeat center center;
  background-size: 90%;
}
#pharmacy .box-body div.pic-box {
  width: 1000px;
  height: 650px;
  margin: 0 auto 120px;
  position: relative;
}
#pharmacy .box-body div.pic-box p.director,
#pharmacy .box-body div.pic-box p.innai,
#pharmacy .box-body div.pic-box p.uma {
  position: absolute;
}
#pharmacy .box-body div.pic-box p.director {
  top: 5px;
  left: 10px;
  opacity: 0;
  z-index: 5;
  transition: all .6s .8s ease;
}
#pharmacy .box-body div.pic-box p.innai {
  z-index: 4;
  top: 50px;
  left: 30%;
  opacity: 0;
  transition: all .8s .4s ease;
}
#pharmacy .box-body div.pic-box p.uma {
  z-index: 3;
  top: 200px;
  right: 5px;
  opacity: 0;
  transition: all .8s .6s ease;
}
#pharmacy .box-body div.pic-box p.director.active {
  top: 30px;
  left: 60px;
  opacity: 1;
}
#pharmacy .box-body div.pic-box p.innai.active {
  top: 100px;
  left: 50%;
  opacity: 1;
}
#pharmacy .box-body div.pic-box p.uma.active {
  top: 300px;
  right: 30px;
  opacity: 1;
}
#pharmacy .box-body .box-btn a {
  width: 240px;
  padding: 16px 0;
  display: block;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  text-align: center;
  position: absolute;
  z-index: 10;
  bottom: 100px;
  left: 35%;
}
#pharmacy .box-body .box-btn a span {
  display: inline-block;
  text-align: center;
}
#pharmacy .box-body .box-btn a span.text {
  width: 85%;
  font-size: 1.3em;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 12px;
}
#pharmacy .box-body .box-btn a span.color-bar {
  width: 85%;
  height: 6px;
  background: #ed1e79;
  border-radius: 2em;
}
@media screen and (max-width: 768px) {
  #pharmacy {
    margin-bottom: 40px;
  }
  #pharmacy .box-body div.pic-box {
    width: 100%;
    margin-bottom: 40px;
  }
  #pharmacy .box-body div.pic-box p.director {
    top: 5px;
    left: 20px;
    z-index: 5;
  }
  #pharmacy .box-body div.pic-box p.director img {
    width: 250px;
    height: auto;
  }
  #pharmacy .box-body div.pic-box p.innai {
    z-index: 4;
    top: 240px;
    left: 15%;
  }
  #pharmacy .box-body div.pic-box p.innai img {
    width: 180px;
    height: auto;
  }
  #pharmacy .box-body div.pic-box p.uma {
    z-index: 3;
    top: 100px;
    right: 70px;
  }
  #pharmacy .box-body div.pic-box p.uma img {
    width: 250px;
    height: auto;
  }
  #pharmacy .box-body div.pic-box p.director.active {
    top: 30px;
    left: 60px;
  }
  #pharmacy .box-body div.pic-box p.innai.active {
    top: 200px;
    left: 30%;
  }
  #pharmacy .box-body div.pic-box p.uma.active {
    top: 60px;
    right: 30px;
  }
  #pharmacy .box-body div.pic-box .box-btn a {
    width: 240px;
    padding: 16px 0;
    display: block;
    position: absolute;
    z-index: 10;
    bottom: 100px;
    left: 35%;
  }
  #pharmacy .box-body div.pic-box .box-btn a span {
    display: inline-block;
    text-align: center;
  }
  #pharmacy .box-body div.pic-box .box-btn a span.text {
    width: 85%;
    font-size: 1.3em;
    font-weight: bold;
    color: #1c1c1c;
    margin-bottom: 12px;
  }
  #pharmacy .box-body div.pic-box .box-btn a span.color-bar {
    width: 85%;
    height: 6px;
    background: #ed1e79;
    border-radius: 2em;
  }
}
@media screen and (max-width: 415px) {
  #pharmacy .box-body {
    height: 500px;
  }
  #pharmacy .box-body div.pic-box {
    width: 100%;
    height: 500px;
    margin-bottom: 40px;
  }
  #pharmacy .box-body div.pic-box p.director {
    top: 10px;
    left: 40px;
    z-index: 5;
  }
  #pharmacy .box-body div.pic-box p.director img {
    width: 180px;
    height: auto;
  }
  #pharmacy .box-body div.pic-box p.innai {
    z-index: 4;
    top: 200px;
    left: 2%;
  }
  #pharmacy .box-body div.pic-box p.innai img {
    width: 100px;
    height: auto;
  }
  #pharmacy .box-body div.pic-box p.uma {
    z-index: 3;
    top: 130px;
    right: 20px;
  }
  #pharmacy .box-body div.pic-box p.uma img {
    width: 160px;
    height: auto;
  }
  #pharmacy .box-body div.pic-box p.director.active {
    top: 30px;
    left: 60px;
  }
  #pharmacy .box-body div.pic-box p.innai.active {
    top: 240px;
    left: 8%;
  }
  #pharmacy .box-body div.pic-box p.uma.active {
    top: 180px;
    right: 40px;
  }
  #pharmacy .box-body div.pic-box .box-btn a {
    width: 240px;
    padding: 16px 0;
    display: block;
    position: absolute;
    z-index: 10;
    bottom: 60px;
    left: 19%;
  }
  #pharmacy .box-body div.pic-box .box-btn a span {
    display: inline-block;
    text-align: center;
  }
  #pharmacy .box-body div.pic-box .box-btn a span.text {
    width: 85%;
    font-size: 1.3em;
    font-weight: bold;
    color: #1c1c1c;
    margin-bottom: 12px;
  }
  #pharmacy .box-body div.pic-box .box-btn a span.color-bar {
    width: 85%;
    height: 6px;
    background: #ed1e79;
    border-radius: 2em;
  }
}

#accessmap {
  margin-bottom: 120px;
}
#accessmap .box-header {
  text-align: center;
  margin-bottom: 64px;
}
#accessmap .box-header h2 {
  font-size: 2.1em;
  color: #1a1a1a;
}
#accessmap .box-header p {
  font-size: 1.3em;
  color: #1a1a1a;
}
#accessmap .box-body {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
#accessmap .box-body .map-body {
  width: 580px;
  height: 580px;
  position: relative;
  left: 96px;
  z-index: 1;
}
#accessmap .box-body .map-body iframe {
  width: 100%;
  height: 100%;
}
#accessmap .box-body .info-area {
  position: relative;
  z-index: 2;
}
#accessmap .box-body .info-area .info-map {
  width: 420px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  position: relative;
  bottom: 100px;
  left: -40px;
}
#accessmap .box-body .info-area .info-map h3 {
  font-size: 1.6em;
}
#accessmap .box-body .info-area .info-map p {
  font-size: 1.2em;
  line-height: 1.8;
  letter-spacing: .15em;
}
#accessmap .box-body .info-area .info-btn {
  width: 420px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  position: relative;
  bottom: 120px;
  left: -40px;
}
#accessmap .box-body .info-area .info-btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
#accessmap .box-body .info-area .info-btn a span.text {
  font-size: 1.4em;
  font-weight: bold;
}
#accessmap .box-body .info-area .info-btn a span.color-bar {
  display: inline-block;
  width: 30%;
  height: 10px;
  background: #ed1e79;
  border-radius: 2em;
}
@media screen and (max-width: 768px) {
  #accessmap .box-body {
    display: block;
    width: 100%;
  }
  #accessmap .box-body .map-body {
    position: static;
    margin: 0 auto;
  }
  #accessmap .box-body .info-area {
    position: static;
  }
  #accessmap .box-body .info-area .info-map {
    position: static;
    width: 580px;
    margin: 0 auto 16px;
  }
  #accessmap .box-body .info-area .info-btn {
    position: static;
    width: 580px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 415px) {
  #accessmap .box-body .map-body {
    width: 100%;
    height: 400px;
  }
  #accessmap .box-body .info-area .info-map {
    position: static;
    width: 100%;
    margin: 0 auto 16px;
  }
  #accessmap .box-body .info-area .info-btn {
    position: static;
    width: 100%;
    margin: 0 auto;
  }
}

.backtop {
  text-align: center;
  border-top: 1px solid #dfdfdf;
}
.backtop a {
  display: block;
  width: 100%;
  padding: 16px 0;
  transition: all .4s ease;
}
.backtop a img {
  width: auto;
  height: 13px;
}
.backtop a:hover {
  background: #dfdfdf;
}

footer#global-footer {
  background: #f2f2f2;
}
footer#global-footer .footer-inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer#global-footer .footer-inner h1 {
  width: 24%;
  text-align: center;
}
footer#global-footer .footer-inner h1 a {
  padding: 12px 0;
  display: inline-block;
}
footer#global-footer .footer-inner h1 a img {
  vertical-align: bottom;
  width: auto;
  height: 60%;
}
footer#global-footer .footer-inner .footer-navi {
  width: 76%;
}
footer#global-footer .footer-inner .footer-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}
footer#global-footer .footer-inner .footer-navi ul li {
  width: 100%;
}
footer#global-footer .footer-inner .footer-navi ul li a {
  font-size: 1.4em;
  letter-spacing: .15em;
  padding: 28px 0;
  line-height: 1;
  width: 100%;
  color: #333;
  display: inline-block;
  text-align: center;
  transition: all .5s ease;
}
footer#global-footer .footer-inner .footer-navi ul li a:hover {
  background: #001035;
  color: #ffffff;
}
footer#global-footer .copy {
  background: #4d4d4d;
}
footer#global-footer .copy small {
  display: block;
  width: 1000px;
  margin: 0 auto;
  color: #ffffff;
  padding: 8px 0;
  font-size: 1.2em;
}
@media screen and (max-width: 1200px) {
  footer#global-footer .footer-inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  footer#global-footer .footer-inner {
    width: 95%;
  }
  footer#global-footer .footer-inner h1 {
    width: 15%;
  }
  footer#global-footer .footer-inner .footer-navi {
    width: 85%;
  }
  footer#global-footer .copy small {
    width: 90%;
  }
}
@media screen and (max-width: 415px) {
  footer#global-footer .footer-inner h1 {
    width: 100%;
  }
  footer#global-footer .footer-navi {
    display: none;
  }
  footer#global-footer .copy {
    text-align: center;
  }
  footer#global-footer .copy small {
    width: 100%;
  }
}

/*# sourceMappingURL=index.css.map */
