@charset "UTF-8";
/*ベースフォント設定*/
/*Font Awesome5---------------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/*フォントサイズ*/
body {
  font-family: "Roboto", "Noto Sans JP", Verdana, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  font-size: 100%;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  margin-top: 220px;
}
@media all and (max-width: 980px ) and (min-width: 561px ) {
  body {
    margin-top: 200px;
  }
}
@media all and (max-width: 560px ) {
  body {
    -webkit-text-size-adjust: 100%;
    font-size: 87.5%;
    margin-top: 128px;
  }
}

#wrap {
  font-size: 100%;
  color: #2E302E;
  position: relative;
  height: auto;
  min-height: 100%;
}

table {
  font-size: inherit;
}

/*フォントサイズ*/
.clearfix:after {
  content: " ";
  display: block;
  height: 0.1px;
  font-size: 0.1em;
  clear: both;
  visibility: hidden;
}

* + html .clearfix {
  height: 1%;
}

* html .clearfix {
  height: 1%;
}

/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/*共通*/
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
a {
  text-decoration: none;
  color: inherit;
}
a, a > * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

@-webkit-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 70%;
  }
  70% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 70%;
  }
  70% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade {
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.fade.effect {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.slidein {
  opacity: 0;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.slidein.effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fade-list > * {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
}
.fade-list.effect > *:nth-child(1) {
  -webkit-animation: fadeUp 1s 0.5s 1 ease normal forwards;
          animation: fadeUp 1s 0.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(2) {
  -webkit-animation: fadeUp 1s 1s 1 ease normal forwards;
          animation: fadeUp 1s 1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(3) {
  -webkit-animation: fadeUp 1s 1.5s 1 ease normal forwards;
          animation: fadeUp 1s 1.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(4) {
  -webkit-animation: fadeUp 1s 2s 1 ease normal forwards;
          animation: fadeUp 1s 2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(5) {
  -webkit-animation: fadeUp 1s 2.5s 1 ease normal forwards;
          animation: fadeUp 1s 2.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(6) {
  -webkit-animation: fadeUp 1s 3s 1 ease normal forwards;
          animation: fadeUp 1s 3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(7) {
  -webkit-animation: fadeUp 1s 3.5s 1 ease normal forwards;
          animation: fadeUp 1s 3.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(8) {
  -webkit-animation: fadeUp 1s 4s 1 ease normal forwards;
          animation: fadeUp 1s 4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(9) {
  -webkit-animation: fadeUp 1s 4.5s 1 ease normal forwards;
          animation: fadeUp 1s 4.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(10) {
  -webkit-animation: fadeUp 1s 5s 1 ease normal forwards;
          animation: fadeUp 1s 5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(11) {
  -webkit-animation: fadeUp 1s 5.5s 1 ease normal forwards;
          animation: fadeUp 1s 5.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(12) {
  -webkit-animation: fadeUp 1s 6s 1 ease normal forwards;
          animation: fadeUp 1s 6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.move-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.move-img:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: 1;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}
.move-img img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  left: -100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.move-img.effect img {
  opacity: 1;
  left: 0;
}
.move-img.effect:before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  width: 100%;
}

.blur {
  -ms-filter: blur(6px);
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.blur.effect {
  -webkit-transform: scale(1);
  transform: scale(1);
  -ms-filter: blur(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}

.focus-img {
  position: relative;
}
.focus-img img {
  display: block;
  min-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.5) rotateZ(0);
  transform: translate(-50%, -50%) scale(1.5) rotateZ(0);
  -webkit-transition: all 3s;
  transition: all 3s;
}
.focus-img.effect img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(0);
  transform: translate(-50%, -50%) scale(1) rotateZ(0);
}

sup {
  vertical-align: super;
  font-size: 50%;
}

/*-----------------------------------------------------------*/
/*ヘッダー*/
/*-----------------------------------------------------------*/
#top_hed {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 2%;
  padding: 60px 3.15% 0 4.73%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  -webkit-transition: padding 0.3s, top 0.3s;
  transition: padding 0.3s, top 0.3s;
}
@media all and (max-width: 980px ) and (min-width: 561px ) {
  #top_hed {
    padding-top: 40px;
  }
}
@media all and (max-width: 560px ) {
  #top_hed {
    padding: 1.5rem 0.75rem 0;
  }
}
#top_hed.read {
  padding: 1rem 2rem 0;
}
@media all and (max-width: 560px ) {
  #top_hed.read {
    padding: 0 0 0 1rem;
  }
}
#top_hed.read.scroll {
  top: -90px;
}
#top_hed.read h1 {
  max-width: 250px;
}
#top_hed.read #g_nav {
  gap: 2rem;
}
#top_hed.read #g_nav ul {
  font-size: clamp(14px, 0.841vw, 16px);
}
#top_hed.read #g_nav #ham_open {
  width: 60px;
  height: 60px;
}
#top_hed.read #g_nav #ham_open img {
  width: 18px;
  height: auto;
}
#top_hed.read #g_nav #ham_open span {
  font-size: 10px;
}
#top_hed h1 {
  max-width: 340px;
  width: 29%;
  -webkit-transition: max-width 0.3s;
  transition: max-width 0.3s;
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  #top_hed h1 {
    width: 50%;
  }
}
#top_hed h1 img {
  width: 100%;
  height: auto;
}
#top_hed #g_nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 9.45vw;
  -webkit-transition: gap 0.3s;
  transition: gap 0.3s;
}
#top_hed #g_nav ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 0.8em;
  font-size: clamp(16px, 1.36vw, 20px);
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  #top_hed #g_nav ul {
    display: none;
  }
}
#top_hed #g_nav ul li a {
  font-weight: 900;
  padding: 1em 0.6em;
  position: relative;
}
#top_hed #g_nav ul li a:before {
  content: "";
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(1, 143, 75, 0)), color-stop(50%, #018F4B)) right/200% 100% no-repeat;
  background: linear-gradient(right, rgba(1, 143, 75, 0) 50%, #018F4B 50%) right/200% 100% no-repeat;
  position: absolute;
  bottom: -4px;
  right: 0;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}
#top_hed #g_nav ul li a:hover:before, #top_hed #g_nav ul li a:focus:before {
  background-position: left;
}
#top_hed #g_nav ul li a:before {
  height: 4px;
  bottom: 0;
}
#top_hed #g_nav #ham_open {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 8px;
  width: 80px;
  height: 80px;
  background: #018F4B;
  -webkit-transition: width 0.3s, height 0.3s;
  transition: width 0.3s, height 0.3s;
}
#top_hed #g_nav #ham_open span {
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}

#ham_menu {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: -392px;
  width: 100%;
  max-width: 392px;
  height: 100%;
  background: #fff;
  padding: 96px 4em 4em;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
#ham_menu.active {
  right: 0;
}
#ham_menu #ham_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #555;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  color: #fff;
}
#ham_menu #ham_close i {
  font-size: 175%;
}
#ham_menu #ham_close span {
  font-size: 87.5%;
  font-weight: bold;
}
#ham_menu .ham_main_menu li {
  border-top: 1px solid #ccc;
}
#ham_menu .ham_main_menu li:last-child {
  border-bottom: 1px solid #ccc;
}
#ham_menu .ham_main_menu li a {
  display: block;
  padding: 1em;
}
#ham_menu .ham_sub_menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 1rem;
  margin: 2rem 0;
}
#ham_menu .ham_sub_menu li {
  font-size: 87.5%;
  color: #777;
}
#ham_menu .ham_sub_menu li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f105";
}

/*-----------------------------------------------------------*/
/*フッター*/
/*-----------------------------------------------------------*/
footer {
  max-width: 1578px;
  padding: 0 24px;
  margin: 142px auto 70px;
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  footer {
    margin: 110px 0 58px;
  }
}
footer .f_title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 6.8%;
  margin-bottom: 66px;
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  footer .f_title {
    margin-bottom: 45px;
  }
}
footer .f_title h2 {
  max-width: 340px;
  width: 30%;
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  footer .f_title h2 {
    max-width: unset;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
}
footer .f_title h2 img {
  max-width: 340px;
  width: 100%;
  height: auto;
}
footer .f_title .f_bnr {
  width: 63.2%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 1rem 3.1%;
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  footer .f_title .f_bnr {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 14.54vw;
  }
  footer .f_title .f_bnr li {
    width: 48.45%;
  }
  footer .f_title .f_bnr li img {
    width: 100%;
    height: auto;
  }
}
footer .f_menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 4%;
}
footer .f_menu .f_address {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 1rem;
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  footer .f_menu .f_address {
    margin: 0 auto;
  }
}
footer .f_menu .f_address address {
  font-size: clamp(16px, 1.157vw, 22px);
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  footer .f_menu .f_address address {
    font-size: clamp(16px, 2.56vw, 22px);
  }
}
@media all and (max-width: 560px ) {
  footer .f_menu .f_address address {
    padding-right: 32px;
  }
}
footer .f_menu .f_address p {
  font-size: clamp(12px, 0.946vw, 18px);
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  footer .f_menu .f_address p {
    display: none;
  }
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  footer .f_menu .f_menu_box {
    display: none;
  }
}
footer .f_menu .f_menu_box ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  font-size: clamp(16px, 1.157vw, 22px);
  gap: 1.5em 3.55em;
  max-height: 9.545em;
}
footer .f_menu .f_menu_box ul li {
  line-height: 1;
  position: relative;
}
footer .f_menu .f_menu_box ul li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f105";
  margin-right: 0.5em;
  color: #018F4B;
}

#top_link {
  position: sticky;
  z-index: 1000;
  right: 34px;
  bottom: 34px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -92px 0 34px auto;
}
@media all and (max-width: 560px ) {
  #top_link {
    right: 8px;
    bottom: 8px;
    margin-top: -82px;
  }
}
#top_link a {
  width: 58px;
  height: 58px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  background: #018F4B;
  color: #fff;
  font-size: 22px;
}
@media all and (max-width: 560px ) {
  #top_link a {
    width: 48px;
    height: 48px;
  }
}

.foot_copy {
  background: #018F4B;
  display: block;
  text-align: center;
  color: #fff;
  padding: 45px;
  font-weight: 900;
  font-size: 125%;
  letter-spacing: 0.06em;
}
@media all and (max-width: 980px ) and (min-width: 561px ), all and (max-width: 560px ) {
  .foot_copy {
    font-size: 112.5%;
  }
}

