@charset "UTF-8";
/*----------------------------------------------
 reset styles
----------------------------------------------*/
main { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; display:block; } 

/*----------------------------------------------
 formatting styles
----------------------------------------------*/
html { font-size: 62.5%; } 
body {
	font-family: 'Zen Maru Gothic',"Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	font-size: 1.3em;/* =13px */
	line-height: 1.6;
  color: #666;
  min-width: 1120px;
}
@media screen and (max-width:767px) {
  body {
    min-width: initial;
    -webkit-text-size-adjust: 100%;
  }
}
a {
  color: #ebc300;
  font-weight: 700;
  text-decoration: underline;
}
a:hover {
  color: #d2a000;
  text-decoration: none;
}
img {
	border-style: none;
  vertical-align: bottom;
}

/*----------------------------------------------
 clearfix
----------------------------------------------*/
.clearfix:after {
    content:"";
    display:block;
    clear:both;
}

/*----------------------------------------------
 box-sizing
----------------------------------------------*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ----------------------------------------------
header
----------------------------------------------*/
header {
  background-color: #ffeb78;
  height: 70px;
}
#headerLogo {
  padding: 30px 0 0 15px;
}
#headerLogo a {
  cursor: pointer;
}
@media print, screen and (min-width:768px){
  header {
    height: 120px;
  }
  #headerLogo {
    width: 310px;
    padding: 55px 0 0 30px;
  }
}

/* ----------------------------------------------
nav
----------------------------------------------*/

/* hamburge menu
----------------------------------------------*/
@media screen and (max-width:767px) {
  .scroll-prevent {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }
  .btnHamburger {
    position: fixed;
    z-index: 100;
    right: 10px;
    top: 10px;
    display: block;
    cursor: pointer; 
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid #ffda46;
    background-color: #fff;
    padding-top: 26px;
  }
  .btnHamburger span {
    font-family: 'Zen Maru Gothic',"Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    color: #b49100;
    line-height: 1;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.2em;
  }
  .btnHamburger::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 10px;
    width: 22px;
    height: 2px;
    background-color: #ebc300;
  }
  .btnHamburger::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 28px;
    width: 22px;
    height: 2px;
    background-color: #ebc300;
  }
  .btnHamburger span::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 19px;
    width: 22px;
    height: 2px;
    background-color: #ebc300;
  }
  .open .btnHamburger::before {
    top: 19px;
    transform: rotate(-45deg);
    transition-duration: 0.3s;
  }
  .open .btnHamburger::after {
    top: 19px;
    transform: rotate(45deg);
    transition-duration: 0.3s;
  }
  .open .btnHamburger span::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .btnHamburger .close {
    display: none;
  }
  .open .btnHamburger .open {
    display: none;
  }
  .open .btnHamburger .close {
    display: block; /* none 以外の値 */
  }
  nav {
    position: fixed;
    z-index: 90;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 75px 15px 0;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    transition-duration: 0.3s;
    transform: scale(0, 0);
    transform-origin: right top;
    background: #ffe664 url(../img/hamburger-back.svg) center top repeat;
    background-size: 32px 32px;
  }
  .open + nav {
    transform: scale(1, 1);
  }
}
@media print, screen and (min-width:768px){
  .btnHamburger {
    display: none;
  }
}

/* nav
----------------------------------------------*/
@media screen and (max-width:767px) {
  nav ul.mainNav {
    padding: 15px 15px 12px;
    list-style: none;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
  }
  nav a {
    color: #4d4d4d;
    text-decoration: none;
    font-weight: 500;
  }
  nav ul.mainNav li {
    width: 100%;
    height: 80px;
    border-bottom: 1px dashed #ffda46;
  }
  nav ul.mainNav li:nth-last-child(2) {
    border-bottom: none;
  }
  nav ul.mainNav li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 32px 0 0 5px;
    background: url(../img/hamburger-arrow.svg) right 7px center no-repeat;
    background-size: 70px 24px;
    font-size: 1.8rem;
    line-height: 1;
  }
  nav ul.mainNav .homeBtn {
    width: 120px;
    height: 46px;
    position: absolute;
    top: -60px;
    left: 0;
    border-bottom: none;
  }
  nav ul.mainNav .homeBtn a {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 13px;
    border-radius: 23px;
    background: #fff;
    text-align: center;
  }
  nav ul.mainNav li.menu {
    height: auto;
  }
  nav ul.mainNav li.menu a {
    height: 40px;
		padding-top: 15px;
  }
  nav ul.subNav {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding: 3px 0 16px;
  }
  nav ul.mainNav ul.subNav li {
    width: 32%;
    height: 54px;
    border-bottom: none;
  }
  nav ul.mainNav ul.subNav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 0 1px;
    border: 1px solid #ffda46;
    border-radius: 8px;
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 400;
    text-align: center;
    background: none;
  }
  nav ul.mainNav .contactBtn {
    width: 200px;
    height: 76px;
    padding-top: 26px;
    background: url(../img/hamburger-contact.png) left top no-repeat;
    background-size: 200px 76px;
    position: absolute;
    bottom: -76px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-bottom: none;
  }
  nav ul.mainNav .contactBtn a {
    display: block;
    width: 100%;
    height: 100%;
    background: none;
    padding-top: 15px;
    text-align: center;
  }
  @media screen and (max-width:350px) {
    nav ul.mainNav ul.subNav li a {
      font-size: 1.3rem;
    line-height: 1.3;
    }
  }
}
@media print, screen and (min-width:768px){
  nav {
    width: 100%;
    position: relative;
    top: -120px;
    right: 0;
    z-index: 10;
  }
  nav ul.mainNav {
    width: 840px;
    display: flex;
    list-style: none;
    position: absolute;
    top: 0;
    right: 0;
  }
  nav ul.mainNav .homeBtn {
    display: none;
  }
  nav ul.mainNav > li {
    padding: 0 10px;
  }
  nav ul.mainNav > li br {
    display: none;
  }
  nav ul.mainNav > li a {
    display: block;
    width: 100%;
    height: 110px;
    padding: 65px 10px 0;
    color: #4d4d4d;
    font-weight: 500;
    font-size: 1.9rem;
    line-height: 100%;
    text-decoration: none;
    position: relative;
  }
  nav ul.mainNav > li a::before,
  nav ul.mainNav > li.menu::before {
    content: "";
    background-color: #fff;
    background: #fff url(../img/header-nav.png) center 19px no-repeat;
    background-size: 0 auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
    height: 110px;
    position: absolute;
    top: -120px;
    left: 0;
    z-index: -1;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    nav ul.mainNav > li a::before,
    nav ul.mainNav > li.menu::before {
      background: #fff url(../img/header-nav@2x.png) center 19px no-repeat;
      background-size: 0 auto;
    }
  }
  nav ul.mainNav > li:last-child a::before,
  nav ul.mainNav > li.menu a::before {
    display: none;
  }
  nav ul.mainNav > li a span {
    display: block;
    position: relative;
    z-index: 5;
  }
  nav ul.mainNav > li a:hover::before,
  nav ul.mainNav > li.menu:hover::before {
    top: 0px;
    background-size: 38px auto;
  }
  nav ul.mainNav > li:last-child {
    width: 160px;
  }
  nav ul.mainNav > li:last-child a {
    height: 92px;
    padding-top: 50px;
    background: url(../img/header-contact.png) left top no-repeat;
    background-size: 140px 92px;
    text-align: center;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  nav ul.mainNav > li:last-child a:hover {
    background: url(../img/header-contact-over.png) left top no-repeat;
    background-size: 140px 92px;
  }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    nav ul.mainNav > li:last-child a {
      background: url(../img/header-contact@2x.png) left top no-repeat;
      background-size: 140px 92px;
    }
    nav ul.mainNav > li:last-child a:hover {
      background: url(../img/header-contact-over@2x.png) left top no-repeat;
      background-size: 140px 92px;
    }
  }
  nav ul.subNav {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
  }
  nav ul.subNav > li a::before {
    display: none;
  }
  nav ul.mainNav > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  li.menu ul.subNav li a {
    display: block;
    width: 100%;
    height: auto;
    padding: 13px 10px 17px;
    color: #fff;
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 100%;
    text-align: center;
    text-decoration: none;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  ul.subNav li a:hover {
    background: #b3b3b3;
  }
  nav ul.mainNav {
    *zoom: 1;
  }
  nav ul.mainNav > li.menu {
    position: relative;
  }
  li.menu ul.subNav {
    position: absolute;
    top: 118px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 180px;
    background: #ebc300;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    border-radius: 10px;
  }
  li.menu ul.subNav::before {
    content: "";
    border-right: 15px solid transparent;
    border-bottom: 18px solid #ebc300;
    border-left: 15px solid transparent;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  li.menu:hover ul.subNav {
    visibility: visible;
    opacity: 1;
    padding: 15px 0;
  }
}

/* ----------------------------------------------
main
----------------------------------------------*/
#pageTitle {
  width: 100%;
  background-color: #ffeb78;
  position: relative;
}
#pageSubTitle {
  width: 100%;
  position: relative;
  line-height: 1;
}
#pageTitle::before,
#pageSubTitle::before {
  content: "";
  width: 100%;
  height: 34px;
  background: url(../img/wavyline-white.svg) center top repeat-x;
  background-size: 51px 34px;
  position: absolute;
  bottom: -16px;
  left: 0;
  z-index: 1;
}
#pageTitle.pageSubTitle::before {
  width: 100%;
  height: 26px;
  background: url(../img/wavyline-subtitle.svg) center top repeat-x;
  background-size: 78px 26px;
  position: absolute;
  bottom: -8px;
  left: 0;
  z-index: 1;
}
#pageSubTitle::before {
  width: 100%;
  height: 28px;
  background: url(../img/wavyline-subtitle-end.svg) center top repeat-x;
  background-size: 78px 28px;
  bottom: -16px;
  left: 0;
  z-index: 1;
}
#pageTitle.pageHeadNav::before {
  width: 100%;
  height: 34px;
  background: url(../img/wavyline-yellow02.svg) center top repeat-x;
  background-size: 51px 34px;
  position: absolute;
  bottom: -16px;
  left: 0;
  z-index: 1;
}
#pageTitle h1 {
  width: 100%;
  height: 150px;
  padding-top: 20px;
  text-align: center;
  position: relative;
}
#pageTitle h1::before {
  content: "";
  width: 100%;
  height: 106px;
  background: url(../img/title-illust01-sp.png) center top no-repeat;
  background-size: 387px auto;
  position: absolute;
  left: 0;
  bottom: 0;
}
#pageTitle h1::after {
  content: "";
  width: 100%;
  height: 20px;
  background: url(../img/title-illust02-sp.png) center top no-repeat;
  background-size: 375px auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
@media screen and (max-width:370px) {
  #pageTitle h1::before {
    background-size: 330px auto;
    background-position: center bottom;
  }
  #pageTitle h1::after {
    background-size: 318px auto;
  }
}
#pageSubTitle {
  background: #fffde6 url(../img/subtitle-back.svg) center top 8px repeat;
  background-size: 78px 26px;

}
#pageSubTitle h2 {
  padding: 24px 15px 45px;
  display: block;
  text-align: center;
  position: relative;
  z-index: 2;
}
#pageSubTitle h2 img {
  max-width: 100%;
}
@media print, screen and (min-width:768px){
  #pageTitle::before {
    bottom: -21px;
  }
  #pageTitle.pageSubTitle::before {
    bottom: -13px;
  }
  #pageTitle.pageHeadNav::before {
    bottom: -21px;
  }
  #pageTitle h1 {
    width: 980px;
    height: 215px;
    margin: 0 auto;
    padding: 40px 0 0 160px;
    text-align: left;
  }
  #pageTitle h1::before {
    height: 215px;
    background: url(../img/title-illust01.png) center top no-repeat;
    background-size: 980px auto;
  }
  #pageTitle h1::after {
    height: 35px;
    background: url(../img/title-illust02.png) center top no-repeat;
    background-size: 980px auto;
    bottom: -17px;
    z-index: 5;
  }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    #pageTitle h1::before {
      background: url(../img/title-illust01@2x.png) center top no-repeat;
      background-size: 980px auto;
    }
    #pageTitle h1::after {
      background: url(../img/title-illust02@2x.png) center top no-repeat;
      background-size: 980px auto;
    }
  }
  #pageSubTitle {
    background-position: center top 13px;
  }
  #pageSubTitle h2 {
    width: 980px;
    margin: 0 auto;
    padding: 48px 0 65px;
  }
}

/*----------------------------------------------
 pageHeadNav
----------------------------------------------*/
#pageHeadNav {
  width: 100%;
  position: relative;
  background-color: #ffdc46;
}
#pageHeadNav::after {
  content: "";
  width: 100%;
  height: 34px;
  background: url(../img/wavyline-yellow02.svg) center top repeat-x;
  background-size: 51px 34px;
  position: absolute;
  bottom: -17px;
  left: 0;
}
#pageHeadNav ul {
  list-style: none;
  width: 100%;
  padding: 11px 15px 3px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#pageHeadNav li {
  width: 48%;
  margin-bottom: 10px;
  position: relative;
}
#pageHeadNav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  color: #666;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
}
#pageHeadNav li a span {
  display: block;
  width: 100%;
  padding-bottom: 2px;
  text-align: center;
  position: relative;
  z-index: 1;
}
#pageHeadNav li a span::before,
#pageHeadNav li a span::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 2;
}
#pageHeadNav li a span::before {
  background: url(../img/pagenav-icon-left.svg) center top no-repeat;
  background-size:13px 13px;
  left: 6px;
}
#pageHeadNav li a span::after {
  background: url(../img/pagenav-icon-right.svg) center top no-repeat;
  background-size:13px 13px;
  right: 6px;
}
@media screen and (max-width:360px) {
  #pageHeadNav li a {
    font-size: 1.4rem;
    line-height: 1;
  }
}
@media print, screen and (min-width:768px){
  #pageHeadNav ul {
    width: 980px;
    margin: 0 auto;
    padding: 25px 0 23px;
  }
  #pageHeadNav li {
    width: 230px;
    margin-bottom: 0;
  }
  #pageHeadNav li a {
    height: 56px;
    border-radius: 28px;
    font-size: 2.2rem;
  }
  #pageHeadNav li a span {
    padding-bottom: 3px;
  }
  #pageHeadNav li a span::before,
  #pageHeadNav li a span::after {
    width: 19px;
    height: 19px;
  }
  #pageHeadNav li a span::before {
    background-size:19px 19px;
  }
  #pageHeadNav li a span::after {
    background-size:19px 19px;
  }
  #pageHeadNav li a::before {
    content: "";
    width: 0;
    height: 100%;
    background-color: #fff58c;
    border-radius: 28px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  #pageHeadNav li a:hover::before {
    width: 100%;
  }
  #pageHeadNav li a:hover {
    color: #333;
  }
}

/*----------------------------------------------
 section
----------------------------------------------*/
section {
  width: 100%;
  padding: 77px 0;
  position: relative;
}
section.yellow {
  background-color: #ffeb78;
  padding: 50px 0;
}
section.yellow::before,
section.yellow::after {
  content: "";
  width: 100%;
  height: 34px;
  background: url(../img/wavyline-yellow.svg) center top repeat-x;
  background-size: 51px 34px;
  position: absolute;
}
section.yellow::before {
  top: -17px;
  left: 0;
}
section.yellow::after {
  bottom: -17px;
  left: 0;
}
section .titleWrap {
  padding: 0 15px;
}
section h2 {
  text-align: center;
  padding: 0 0 45px;
}
section h2 img {
  max-width: 100%;
  height: auto;
}
@media print, screen and (min-width:768px){
  section {
    width: 980px;
    margin: 0 auto;
    padding: 117px 0 110px;
  }
  section.yellow {
    width: 100%;
    padding: 90px 0;
  }
  section.yellow .sectionWrap {
    width: 980px;
    margin: 0 auto;
  }
  section .titleWrap {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  section h2 {
    width: 60px;
    padding: 0 10px 0 0;
  }
}

/* ----------------------------------------------
footoer
----------------------------------------------*/
footer {
  width: 100%;
  position: relative;
  padding: 30px 0 50px;
  background-color: #f2f2f2;
}
footer::before {
  content: "";
  width: 100%;
  height: 36px;
  background: url(../img/wavyline-footer.svg) center top repeat-x;
  background-size: 51px 36px;
  position: absolute;
  top: -18px;
  left: 0;
}
footer img {
  max-width: 100%;
  height: auto;
}
footer .footerWrap {
  overflow: hidden;
}
footer a {
  color: #666;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
footer .company {
  margin: 0 15px;
  padding: 13px 0 48px;
  border-bottom: 2px solid #fff;
  font-size: 1.7rem;
  line-height: 1.8;
  position: relative;
}
footer .company::before {
  content: "";
  width: 110px;
  height: 226px;
  background: url(../img/footer-panda01-sp.png) left top no-repeat;
  background-size: 110px 226px;
  position: absolute;
  right: -13px;
  bottom: -3px;
}
footer .company h2 {
  padding-bottom: 18px;
}
footer .company .address {
  padding-bottom: 14px;
  line-height: 1.4;
}
footer .serviceLink {
  margin: 0 15px;
  padding-top: 37px;
  border-bottom: 2px solid #fff;
  position: relative;
  font-size: 1.7rem;
  line-height: 1.2;
}
footer .serviceLink::before {
  content: "";
  width: 78px;
  height: 95px;
  background: url(../img/footer-panda02-sp.png) left top no-repeat;
  background-size: 78px 95px;
  position: absolute;
  top: -28px;
  left: 8px;
}
footer .serviceLink::after {
  content: "";
  width: 77px;
  height: 94px;
  background: url(../img/footer-panda03-sp.png) left top no-repeat;
  background-size: 77px 94px;
  position: absolute;
  right: 24px;
  bottom: -6px;
}
footer .serviceLink h3 {
  padding-bottom: 25px;
  color: #333;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
footer .serviceLink h3 a {
  color: #333;
  font-weight: 500;
}
footer .serviceLink ul {
	width: 50%;
	margin: 0 auto;
  list-style: none;
}
footer .serviceLink ul ul {
  display: block;
	width: 100%;
}
footer .serviceLink li {
  width: 100%;
  padding-bottom: 27px;
}
footer .serviceLink li li {
  width: 100%;
  max-width: auto;
  padding: 15px 0 0;
}
footer .serviceLink li .mi {
  color: #333;
  line-height: 1;
  font-weight: 500;
	font-size: 1.8rem;
}
footer .serviceLink li li a {
  display: block;
  padding-left: 15px;
  position: relative;
}
footer .serviceLink li li a::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: #ebc300;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
footer .othersLink {
  display: flex;
  justify-content: space-between;
  padding: 30px 15px 40px;
}
footer .othersLink ul {
  list-style: none;
}
footer .othersLink ul:nth-child(1) {
  width: 55%;
}
footer .othersLink ul:nth-child(2) {
  width: 41%;
}
footer .othersLink ul ul,
footer .othersLink ul ul:nth-child(1),
footer .othersLink ul ul:nth-child(2) {
  width: 100%;
}
footer .othersLink li {
  padding-bottom: 27px;
}
footer .othersLink li li {
  padding: 15px 0 0;
}
footer .othersLink li a {
  color: #333;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
}
footer .othersLink li li a {
  display: block;
  padding-left: 15px;
  position: relative;
  color: #666;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
}
footer .othersLink li li a::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: #ebc300;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
footer .othersLink li a:hover {
  color: #d2a000;
}
footer .copyright {
  color: #808080;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}
footer .copyright span {
  display: block;
}
@media screen and (max-width:360px) {
  footer .company {
    margin: 0 10px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  footer .company::before {
    right: -35px;
  }
  footer .serviceLink li .mi {
    font-size: 1.8rem;
  }
  footer .serviceLink li li,
  footer .othersLink li li a {
    font-size: 1.5rem;
  }
  footer .copyright {
    font-size: 1.3rem;
  }
	footer .serviceLink::after {
  content: "";
  width: 77px;
  height: 94px;
  background: url(../img/footer-panda03-sp.png) left top no-repeat;
  background-size: 77px 94px;
  position: absolute;
  right: 5px;
  bottom: -6px;
}
}
@media print, screen and (min-width:768px){
  footer {
    padding: 95px 0 70px;
  }
  footer .footerWrap {
    width: 980px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
		justify-content: flex-end;
  }
  footer .company {
    width: 400px;
    margin: 0 auto 0 0;
    padding: 0;
    border-bottom: none;
  }
  footer .company::before {
    width: 242px;
    height: 170px;
    background: url(../img/footer-panda01.png) left top no-repeat;
    background-size: 242px 170px;
    top: 184px;
    left: 1px;
    right: auto;
    bottom: auto;
  }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    footer .company::before {
      background: url(../img/footer-panda01@2x.png) left top no-repeat;
      background-size: 242px 170px;
    }
  }
  footer .serviceLink {
    width: 250px;
    margin: 0;
    padding-top: 0;
    border-bottom: none;
  }
  footer .serviceLink::before {
    width: 97px;
    height: 118px;
    background: url(../img/footer-panda02.png) left top no-repeat;
    background-size: 97px 118px;
    top: 104px;
    left: -280px;
  }
  footer .serviceLink::after {
    width: 96px;
    height: 118px;
    background: url(../img/footer-panda03.png) left top no-repeat;
    background-size: 96px 118px;
    top: 280px;
    right: 38px;
    bottom: auto;
  }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    footer .serviceLink::before {
      background: url(../img/footer-panda02@2x.png) left top no-repeat;
      background-size: 97px 118px;
    }
    footer .serviceLink::after {
      width: 96px;
      height: 118px;
      background: url(../img/footer-panda03@2x.png) left top no-repeat;
      background-size: 96px 118px;
    }
  }
  footer .serviceLink h3 {
    text-align: left;
  }
  footer .serviceLink ul {
		width: 100%;
  }
  footer .serviceLink ul ul {
    display: block;
  }
  footer .serviceLink li {
    width: 180px;
  }
  footer .serviceLink li li {
    width: 100%;
  }
  footer .othersLink {
    width: 180px;
    display: block;
    padding: 0;
  }
  footer .othersLink ul:nth-child(1),
  footer .othersLink ul:nth-child(2) {
    width: 100%;
  }
  footer .othersLink ul:nth-child(1) {
    padding-bottom: 15px;
  }
  footer .serviceLink h3 a:hover,
  footer .othersLink li a:hover {
    color: #d2a000;
  }
  footer .copyright {
    width: 980px;
    margin: 0 auto;
    padding-top: 50px;
  }
  footer .copyright span {
    display: inline;
    padding-left: 2em;
  }
}

/* ----------------------------------------------
pagetop
*---------------------------------------------- */
#pagetop {
	position: relative;
}
#pagetop a {
	display: block;
	width: 53px;
	position: fixed;
	right: 10px;
	bottom: -150px;
	z-index: 10;
}
#pagetop a img {
	width: 53px auto;
}
#pagetop .bottom {
	position: absolute;
}
@media all and (min-width: 768px) {
	#pagetop a {
		width: 63px;
		right: 40px;
	}
  #pagetop a img {
    width: 63px auto;
  }
	#pagetop a:hover {
    transform: rotate(10deg);
    transition: 0.6s;
	}
}