@charset "UTF-8";
/* style.cssにて 1rem = 10px 設定*/
/*==============================================
インナー
===============================================*/
.contents-inner {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/*==============================================
フッター　スタイル
===============================================*/
footer {
  background-color: #F0F3F5;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 43px 0 0;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding: 3.90625vw 0 0;
  }
}

footer .contents-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  footer .contents-inner {
    margin: 0 auto calc((100vw - 375px) * 0.0194174757 + 20px);
    padding: 0 calc((100vw - 375px) * 0.0517799353 + 20px);
  }
}
@media screen and (min-width: 1920px) {
  footer .contents-inner {
    margin: 0 auto 2.6041666667vw;
    padding: 0 18.75vw;
  }
}

.footer-left {
  white-space: nowrap;
}

.logo-f {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .logo-f {
    width: 10.4166666667vw;
    margin-bottom: 0.5208333333vw;
  }
}
@media screen and (min-width: 1920px) {
  .logo-f {
    width: 10.4166666667vw;
  }
}

.logo-f img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .name-f {
    font-size: calc((100vw - 375px) * 0.0025889968 + 14px);
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1920px) {
  .name-f {
    font-size: 0.9375vw;
  }
}

.adress-f {
  font-size: 1.3rem;
}
@media screen and (min-width: 1920px) {
  .adress-f {
    font-size: 0.6770833333vw;
  }
}

.tel-f {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .tel-f {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1920px) {
  .tel-f {
    font-size: 0.6770833333vw;
  }
}

.footer-right {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .footer-right {
    font-size: 0.6770833333vw;
  }
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-menu .column {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .footer-menu .column {
    margin-left: 2.6041666667vw;
    margin-top: 1.0416666667vw;
    min-width: 150px;
  }
}

@media screen and (min-width: 768px) {
  .footer-menu .column dt {
    margin-bottom: 0.2604166667vw;
  }
}

.footer-menu .column dt a {
  color: #0084CC;
  font-size: 20px;
  font-weight: bold;
  font-family: "Montserrat", "Padauk", sans-serif;
}
@media screen and (min-width: 1920px) {
  .footer-menu .column dt a {
    font-size: 1.0416666667vw;
  }
}

@media screen and (min-width: 768px) {
  .footer-menu .column dd {
    margin-bottom: 0.2604166667vw;
  }
}

.footer-menu .column dd::before {
  content: "−";
}
@media screen and (min-width: 768px) {
  .footer-menu .column dd::before {
    margin-right: 0.2604166667vw;
  }
}

.copyright {
  font-size: 1.1rem;
  /* justify-content: flex-end; */
  margin-bottom: 0;
  background-color: #0084CC;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .copyright {
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .copyright {
    padding: 0.9375vw;
  }
}

@media screen and (min-width: 768px) {
  .footer-hp-pd {
    margin-top: 1.3541666667vw;
  }
}

.btn-footer {
  position: relative;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "Montserrat", "Padauk", sans-serif;
}
@media screen and (min-width: 1920px) {
  .btn-footer {
    font-size: 0.6770833333vw;
  }
}

.btn-footer::before {
  position: absolute;
  top: 8px;
  left: 40px;
  /* transform: translateY(-50%); */
  content: "";
  background: url(../img/footer-mail-img.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 31px;
  /*アニメーションの設定*/
  transition: all 0.5s;
}

.btn-footer:hover::before {
  top: -8px;
}

/*==============================================
SP版
===============================================*/
#menu-list-sp-f .menu-panel-sp {
  border-bottom: 1px solid #0084CC;
  /*矢印の位置と向き*/
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .menu-panel-sp {
    display: block;
  }
}
#menu-list-sp-f .menu-panel-sp > li {
  width: 100%;
  position: relative;
}
#menu-list-sp-f .menu-panel-sp > li:not([class])::after {
  position: absolute;
  content: "";
  right: 3rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #0084CC;
  border-right: 1px solid #0084CC;
  transform: rotate(45deg) translateY(-50%);
  vertical-align: middle;
}
#menu-list-sp-f .menu-panel-sp > li a {
  display: flex;
  align-items: center;
}
#menu-list-sp-f .menu-panel-sp > li a span {
  display: block;
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .menu-panel-sp li.has-child ul,
#menu-list-sp-f .menu-panel-sp li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .menu-panel-sp .menu-link-main {
    border-top: 1px solid #0084CC;
    padding: 14px 20px;
  }
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .menu-panel-sp li.has-child {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .menu-panel-sp li.has-child::before, #menu-list-sp-f .menu-panel-sp li.has-child::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 1px;
    background-color: #0B84CC;
  }
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .menu-panel-sp li.has-child::before {
    top: 34px;
    transform: rotate(0deg);
    right: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .menu-panel-sp li.has-child::after {
    top: 34px;
    right: 2.5rem;
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .menu-panel-sp li.has-child.active::before {
    transform: rotate(0deg);
    top: 34px;
  }
}
#menu-list-sp-f .menu-panel-sp li.has-child.active::after {
  display: none;
}
#menu-list-sp-f .menu-panel-sp .child-link {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: right;
}
#menu-list-sp-f .menu-panel-sp .child-link li {
  font-size: 11px;
  padding: 1.6rem 1.4rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 80%;
}
#menu-list-sp-f .menu-panel-sp .child-link li a {
  color: #0084CC;
}
#menu-list-sp-f .menu-panel-sp .child-link li::before {
  position: absolute;
  content: "";
  left: 0rem;
  top: 50%;
  width: 4px;
  height: 1px;
  border-top: 1px solid #0084CC;
  transform: translateY(-50%);
  vertical-align: middle;
}
#menu-list-sp-f .menu-panel-sp .child-link li::after {
  position: absolute;
  content: "";
  right: 3rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #0084CC;
  border-right: 1px solid #0084CC;
  transform: rotate(45deg) translateY(-50%);
  vertical-align: middle;
}
#menu-list-sp-f .menu-panel-sp .menu-item-en {
  font-size: 2rem;
  color: #0084CC;
  font-family: "Montserrat", "Padauk", sans-serif;
  font-weight: bold;
  width: 40.625%;
}
#menu-list-sp-f .menu-panel-sp .menu-item-ja {
  font-size: 1.1rem;
  color: #000;
  font-weight: 500;
}
#menu-list-sp-f .contact-btn-sp {
  margin: 2rem auto;
  padding: 0 6rem;
}
#menu-list-sp-f .btn-contact::before {
  position: absolute;
  top: 6px;
  left: 40px;
  /* transform: translateY(-50%); */
  content: "";
  background: url(../img/top/top-btn-contact.svg) no-repeat;
  background-size: contain;
  width: 70px;
  height: 43px;
}
@media screen and (max-width: 767px) {
  #menu-list-sp-f .btn-contact::before {
    top: 16px;
    left: 24px;
    width: 40px;
    height: 26px;
  }
}
#menu-list-sp-f .menu-footer-sp {
  padding: 0rem 2rem 3.6rem;
}
#menu-list-sp-f .menu-footer-sp img {
  max-width: 206px;
}
#menu-list-sp-f .menu-footer-txt {
  margin-top: 16px;
  font-size: 1.4rem;
}
#menu-list-sp-f .menu-footer-txt-wrap a {
  display: block;
  font-size: 1.3rem;
}
#menu-list-sp-f .menu-footer-txt-wrap .menu-footer-img-pin {
  margin-bottom: -2px;
  margin-left: 2px;
}
#menu-list-sp-f .menu-footer-txt-wrap .menu-footer-img-tel {
  margin-bottom: -2px;
  margin-right: 2px;
}

/*========= ページトップのためのCSS ===============*/
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 50px;
  z-index: 100;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(150px);
}
@media screen and (min-width: 768px) {
  #page-top {
    right: 2.6041666667vw;
    bottom: 5.2083333333vw;
  }
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(250px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(250px);
  }
}
/*画像の切り替えと動き*/
#page-top a {
  /*aタグの形状*/
  display: block;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  /*背景画像の指定*/
  background-size: contain;
}
@media screen and (max-width: 767px) {
  #page-top a {
    width: 80px;
    height: 103px;
    background: url("../img/gototop-after.png") no-repeat center;
  }
}
@media screen and (min-width: 768px) {
  #page-top a {
    width: 147px;
    height: 67px;
    background: url("../img/gototop-pre.png") no-repeat center;
  }
}

#page-top a:hover {
  /*aタグの形状*/
  width: 80px;
  height: 103px;
  /*背景画像の指定*/
  background: url("../img/gototop-after.png") no-repeat center;
  background-size: contain;
}

#page-top.floatAnime a {
  width: 80px;
  height: 103px;
  /*背景画像の指定*/
  background: url("../img/gototop-after.png") no-repeat center;
  background-size: contain;
  /*アニメーションの指定*/
  -webkit-animation: floatAnime 2s linear infinite;
          animation: floatAnime 2s linear infinite;
  opacity: 0;
}

@-webkit-keyframes floatAnime {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
    opacity: 1;
  }
}

@keyframes floatAnime {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
    opacity: 1;
  }
}
/*Page Topと書かれたテキストの位置*/
/*# sourceMappingURL=footer.css.map */