/*-------------- S:Font --------------*/
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    src: url('../font/Lato-Thin.woff2') format('font-woff2'),
         url('../font/Lato-Thin.woff') format('woff');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url('../font/Lato-Light.woff2') format('font-woff2'),
         url('../font/Lato-Light.woff') format('woff');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../font/Lato-Regular.woff2') format('font-woff2'),
         url('../font/Lato-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../font/Lato-Bold.woff2') format('font-woff2'),
         url('../font/Lato-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../font/Lato-Black.woff2') format('font-woff2'),
         url('../font/Lato-Black.woff') format('woff');
}
/*-------------- E:Font --------------*/

/*-------------- S:Reset --------------*/
*,*:before,*:after {
  margin:0; padding:0; box-sizing:border-box;
}

html{
  overflow-x:hidden;
  font-family: 'Lato', sans-serif, Helvetica, Arial;
  font-size:62.5% !important;
  color:#484848;
  letter-spacing:-0.025em;
  word-break:keep-all;
  word-wrap:break-word;
  box-sizing:border-box;
  animation:entry .3s ease forwards;
  opacity: 0;
}

body {
  width:100%;
  font-size:1.6rem;
  overflow-x:hidden;
}

img{
  max-width:100%;
}

a{
  text-decoration:none;
  color:inherit;
  outline:none;
}

b,strong{
  font-weight:800 !important;
}

ul,li {
  list-style: none;
}

button{
  font-family:inherit;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
}

table{
  border-collapse:collapse;
}

input,select,textarea{
  padding-left:15px;
  padding-right:15px;
  font-family:inherit;
  background-color:#fff;
  border:1px solid #e5e5e5;
  -webkit-transition:all ease .1s;
  transition:all ease .1s;
  outline: none;
}

textarea{
  padding:10px;
}

select{
  padding-right:30px;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-color:#fff;
  background-size:10px auto;
  background-repeat:no-repeat;
  background-position:right 10px center;
}

select::-ms-expand{
  display:none;
}

input[type=number]{
  -moz-appearance:textfield;
}

input:-moz-read-only,textarea:-moz-read-only{
  background-color:#f8f8f8;
}

input:read-only,textarea:read-only{
  background-color:#f8f8f8;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
  -webkit-appearance:none;margin:0;
}

:focus{
  outline:none;
}

::placeholder{
  color:#b4b4b4;
}

:-ms-input-placeholder{
  color:#bbbbbb;
}

::-ms-input-placeholder{
  color:#bbbbbb;
}

::selection{
  color: #fff !important;
  background-color:#55aa1c !important
}

@keyframes entry {
    to{opacity: 1;}
}

@media (max-width:1024px){
    select{
      background-size:8px auto;
      background-position:right 9px center;
    }
}
/*-------------- E:Reset --------------*/

/*-------------- S:Overflow --------------*/
.hidden {
  overflow: hidden;
}
/*-------------- E:Overflow --------------*/

/*-------------- S:Display --------------*/
.sp{display:none;}
.mo{display:none;}

@media(max-width:1024px){
  .sp{display:block;}
  .pc{display:none;}
}

@media(max-width:768px){
  .tb{display:none;}
  .mo{display:block;}
}
/*-------------- E:Display --------------*/

/*-------------- S:Ellip --------------*/
.ellip {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/*-------------- E:Ellip --------------*/

/*-------------- S:Blind --------------*/
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px,1px,1px,1px);
}
/*-------------- E:Blind --------------*/

/*-------------- S:Button --------------*/
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px solid transparent;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  cursor: pointer;
}

.button--black {
  color:#fff;
  background-color: #252525;
}

@media (min-width: 1024px) {

  .button--black:hover {
    color: #fff;
    background-color: #333;
  }

}
/*-------------- E:Button --------------*/

/*-------------- S:Pagination --------------*/
.pagination {
  display:flex;
  justify-content:center;
  margin-top:80px;
}

.pagination a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 4px;
  width:27px;
  height:27px;
  text-align:center;
  font-size:1.4rem;
  line-height:.8;
  font-weight:400;
  background-repeat:no-repeat;
  background-position:center;
  color:#1e1e1e;
  background-color:#fff;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
  border-radius:50%;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination .current {
  color:#fff;
  font-weight:700;
  background-color: #93c854;
}

.pagination__prev, .pagination__next {
}

.pagination__prev {
  background-image: url('/child/img/common/pagination-prev.png');
}

.pagination__next {
  background-image: url('/child/img/common/pagination-next.png');
}
/*-------------- E:Pagination --------------*/

/*-------------- S:Form --------------*/
.form-email {
  font-size:2rem;
  color:#000000;
  margin-bottom:80px;
}

.form-table {
  display: block;
}

.form-table .table-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin:-20px -15px;
}

.form-table .table-box {
  flex:1 1 100%;
  padding:20px 15px;
}

.form-table .table-box--50 {
  flex:1 1 50%;
}

.form-table .table-box p {
  font-size:2.4rem;
  font-weight:700;
  color:#252525;
  margin-bottom:15px;
}

.form-table .table-box input[type="text"],
.form-table .table-box input[type="password"],
.form-table .table-box input[type="tel"],
.form-table .table-box input[type="email"],
.form-table .table-box input[type="url"] {
  width: 100%;
  padding:15px;
  font-size: 1.8rem;
  font-weight:300;
  color: #222;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border:none;
  border-bottom:1px solid #626262;
}

.form-table textarea {
  width:100%;
  height:280px;
  resize: none;
  padding:15px;
  border:1px solid #626262;
  font-size:1.8rem;
  font-weight:300;
}

.form-agreement {
  margin-top:30px;
}

.form-agreement .agrrement-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-agreement label {
  margin-left:5px;
}

.form-agreement button,
.form-agreement label {
  cursor: pointer;
  font-size: 2rem;
  color: #000000;
  transition: all .5s ease;
}

.form-agreement .agree-buttons {
  text-decoration: underline;
  text-underline-position: under;
  display: inline-block;
  cursor: pointer;
  color:#2833ca;
}

.form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.form-buttons .button {
  max-width: 220px;
  width: 100%;
  font-size: 2rem;
  height: 60px;
  padding: 0px 15px;
}

@media (max-width:1200px) {

  .form-email {
    font-size:1.7rem;
    margin-bottom:60px;
  }

  .form-table .table-box p {
    font-size:2rem;
    margin-bottom:10px;
  }

  .form-table .table-box input[type="text"],
  .form-table .table-box input[type="password"],
  .form-table .table-box input[type="tel"],
  .form-table .table-box input[type="email"],
  .form-table .table-box input[type="url"] {
    font-size: 1.5rem;
    padding:15px 10px;
  }

  .form-table textarea {
    font-size:1.5rem;
  }

  .form-agreement {
    margin-top:18px;
  }

  .form-agreement button,
  .form-agreement label {
    font-size:1.7rem;
  }

  .form-buttons .button {
    font-size:1.7rem;
    height: 50px;
  }

}
@media (max-width:1024px) {

  .form-table .table-inner {
    margin:-15px;
  }

  .form-table .table-box {
    padding:15px;
  }

  .form-table .table-box--50 {
    flex:1 1 100%;
  }

  .form-buttons {
    margin-top: 60px;
  }

}
@media (max-width:768px) {

  .form-email {
    font-size:1.5rem;
    margin-bottom:40px;
  }

  .form-table .table-box p {
    font-size:1.8rem;
  }

  .form-table .table-box input[type="text"],
  .form-table .table-box input[type="password"],
  .form-table .table-box input[type="tel"],
  .form-table .table-box input[type="email"],
  .form-table .table-box input[type="url"] {
    font-size: 1.3rem;
  }

  .form-table textarea {
    font-size:1.3rem;
  }

  .form-agreement {
    margin-top:12px;
  }

  .form-agreement button,
  .form-agreement label {
    font-size:1.5rem;
  }

  .form-buttons {
    margin-top: 40px;
  }

  .form-buttons .button {
    font-size:1.5rem;
    height: 44px;
  }

}
@media (max-width:500px) {

}
/*-------------- E:Form --------------*/

/*-------------- S:Modal --------------*/
.modal {
  display: none;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  top: 0;
  left: 0;
}

.modal-content {
  max-width: 680px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-container {
  width: 100%;
  padding: 40px;
  background-color: #fff;
  border-radius: 5px;
}

.modal-head {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.modal-head h5 {
  text-align: center;
  font-size: 2rem;
  color: #000;
}

.modal-head .modal-close {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-ransform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-size: auto 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('/child/img/common/modal-close.png');
  width: 20px;
  height: 20px;
}

.modal-body {
  max-height: 240px;
  overflow-x: hidden;
}

.modal-body.modal-body--style {
  padding-top: 30px;
  border-top: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal-body .input-layout {
  max-width: 240px;
  width: 100%;
  margin: 20px auto;
}

.modal-body .input-layout input {
  width: 100%;
  height: 32px;
}

.modal-body p {
  font-size: 1.6rem;
  line-height: 1.4;
}

.modal-body p.hint-tit {
  text-align: center;
  font-weight: 500;
}

.modal-body .button {
  max-width: 120px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width:1200px) {

}
@media (max-width:1024px) {

}
@media (max-width:768px) {

  .modal-container {
    padding: 20px;
  }

  .modal-head h5 {
    font-size: 1.8rem;
  }

  .modal-head .modal-close {
    background-size: auto 14px;
    width: 14px;
    height: 14px;
  }

  .modal-body .input-layout {
    max-width: 160px;
    width: 100%;
    margin: 12px auto;
  }

  .modal-body .input-layout input {
    width: 100%;
    height: 28px;
  }

  .modal-body p {
    font-size: 1.3rem;
  }

}
@media (max-width:500px) {

}
/*-------------- E:Modal --------------*/

/*-------------- S:Main --------------*/
.main {
  min-height:calc(100vh - 215px);
}
/*-------------- E:Main --------------*/

/*-------------- S:Contaer --------------*/
.container {
  max-width:1310px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}

.container-st01 {
  max-width:1630px;
}
/*-------------- E:Contaer --------------*/

/*-------------- S:Header --------------*/
.header[data-header-theme = "white"] .header-inner__logo a {
  background-image: url('/child/img/common/header-logo-on.png');
}

.header[data-header-theme = "white"] {
  background-color: #fff;
  box-shadow: 0px 2px 4px 0px rgb(50 50 50 / 10%);
}

.header[data-header-theme = "white"] .header-menu__link {
  color:#484848;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom:1px solid rgba(255,255,255,.3);
  -webkit-transition:all ease-out .3s;
  -ms-transition:all ease-out .3s;
  transition:all ease-out .3s;
  z-index: 10000;
}

.header-inner {
  position: relative;
}

.header-inner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin: auto;
    max-width: 1630px;
    padding: 0 15px;
    width: 100%;
}

.header-inner__left {

}

.header-inner__logo {
  display:block;
  margin-top: 35px;
  width: 186px;
  height: 36px;
}

.header-inner__logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url('/child/img/common/header-logo.png') no-repeat;
  -webkit-transition:all ease .15s;
  -ms-transition:all ease .15s;
  transition:all ease .15s;
}

.mobile-menu {
  z-index: 10000;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
}

.mobile-menu__button {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

.mobile-menu__button span {
  position: relative;
  margin: 0 auto;
}

.mobile-menu__button span::before,
.mobile-menu__button span::after {
  content: '';
  position: absolute;
}

.mobile-menu__button span,
.mobile-menu__button span::before,
.mobile-menu__button span::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #484848;
}

.mobile-menu__button span::before {
  margin-top: -10px;
}

.mobile-menu__button span::after {
  margin-top: 10px;
}

.mobile-menu__button[aria-pressed="true"] span {
  background-color: rgba(0,0,0,0) !important;
   -webkit-transition-delay: 0.2s; transition-delay: 0.2s;
}

.mobile-menu__button[aria-pressed="true"] span,
.mobile-menu__button[aria-pressed="true"] span::before,
.mobile-menu__button[aria-pressed="true"] span::after {
  background-color: #484848;
}

.mobile-menu__button[aria-pressed="true"] span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.mobile-menu__button[aria-pressed="true"] span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.mobile-menu__button--flip span::before {
	-webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
	-webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
	-webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}
.mobile-menu__button--flip span::after {
	-webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
	-webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
	-webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10000;
  position: relative;
}

.header-menu > li {
  position: relative;
}

.header-menu__link {
  display: block;
  padding:40px;
  line-height: 1;
  font-size: 2rem;
  color:#ffffff;
  cursor: pointer;
  position: relative;
}

.header-menu__link h2 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.header-submenu {
  width:100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition:all ease .3s;
  transition:all ease .3s;
}

.header-submenu::before {
  content:"";
  display:block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.header-submenu li {
  padding:6px 0px;
}

.header-submenu a {
  font-size:2rem;
  line-height:1;
  font-weight:400;
}

.header-main-background {
  z-index: 9998;
  overflow: hidden;
}


@media (min-width:1201px) {

  .header-submenu {
    width:100%;
    min-width:210px;
    position: absolute;
    top:120px;
    left:50%;
    -webkit-ransform: translateX(-50%);
    transform: translateX(-50%);
    border-radius:10px;
    padding:30px;
    box-shadow: 0px 0px 4px 0px rgb(50,50,50,.1);
    text-align: center;
  }

  .header.sticky {
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgb(50 50 50 / 10%);
  }

  .header.sticky .header-inner__logo a {
    background-image: url('/child/img/common/header-logo-on.png');
  }

  .header.sticky .header-menu__link {
    color:#484848;
  }

  .header-menu > li.on .header-submenu {
    height:auto;
    opacity:1;
    visibility: visible;
  }

  .header.active {
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgb(50 50 50 / 10%);
  }

  .header.active .header-inner__logo a {
    background-image: url('/child/img/common/header-logo-on.png');
  }

  .header.active .header-menu__link {
    color:#484848;
  }

  .header.menu-active {
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgb(50 50 50 / 10%);
  }

  .header.menu-active .header-inner__logo a {
    background-image: url('/child/img/common/header-logo-on.png');
  }

  .header.menu-active .header-menu__link {
    color:#484848;
  }

  .header-menu > li.on .header-submenu {
    height:auto;
    opacity:1;
    visibility: visible;
  }

  .header[data-header-submenu="on"] {
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgb(50 50 50 / 10%);
  }

  .header[data-header-submenu="on"] .header-inner__logo a {
    background-image: url('/child/img/common/header-logo-on.png');
  }

  .header[data-header-submenu="on"] .header-menu__link {
    color:#484848;
  }

  .header-menu > li:hover .header-submenu {
    height:auto;
    opacity:1;
    visibility: visible;
  }

}

@media (max-width:1200px) {

  .header-inner {
    display:block;
    height:70px;
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgb(50 50 50 / 10%);
  }

  .header-inner__left {
    position: static;
  }

  .header-inner__logo {
    position: absolute;
    top:22px;
    left:15px;
    width:135px;
    height: 26px;
    margin:0px;
  }

  .header-inner__logo a {
    background-size:auto 26px;
    background-image: url('/child/img/common/header-logo-on.png');
  }

  .mobile-menu {
    display: block;
    top: 0px;
    right: 0px;
  }

  .header-main-container {
    overflow-y: auto;
    display: block;
    z-index: 9999;
    position: fixed;
    top: 0;
    right: -100%;
    padding: 80px 24px;
    max-width: 550px;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transition: all ease .35s;
    transition: all ease .35s;
  }

  .header-menu {
    display:block;
  }

  .header-menu > li {
    border-bottom:1px solid #e6e6e6;
  }

  .header-menu__link {
    font-size:1.8rem;
    padding:10px 0px;
    margin:10px 0px;
    color:#484848;
  }

  .header-submenu {
    position: relative;
    top:0;
    left:0;
    width:auto;
    padding:0px;
    max-height: 0;
    height:auto;
    min-height:auto;
    -webkit-ransform: none;
    transform: none;
  }

  .header-submenu::before {
    display: none;
  }

  .header-submenu li {
    padding:0px;
    padding-bottom:5px;
  }

  .header-submenu a {
    display: inline-block;
    padding: 10px 0px;
    font-size:1.6rem;
    line-height:1;
    color:#484848;
  }

  .header-main-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17,17,17,.8);
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    visibility: hidden;
    opacity: 0;
  }

  [data-header-mobile="on"] .header-main-container {
    right:0;
  }

  [data-header-mobile="on"] .header-main-background {
    opacity:1;
    visibility: visible;
  }

  .header-menu__link[aria-pressed="true"] + .header-submenu {
    max-height:300px;
    opacity:1;
    visibility: visible;
  }

  .header-menu__link--on h2:before,
  .header-menu__link--on h2:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 13px;
    margin-top: -1px;
    background-color: #333;
    height: 3px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .3s;
    transition: all .3s;
  }

  .header-menu__link--on h2:before {
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1;
  }

  .header-menu__link--on[aria-pressed="true"] h2:before {
    background: #222 !important;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .header-menu__link--on[aria-pressed="true"] h2:after {
    opacity: 0;
    background: #222 !important;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

}

/*-------------- E:Header --------------*/

/*-------------- S:Footer --------------*/
.footer {
  background-color: #434343;
}

.footer-container {
  max-width:1310px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-top {
  border-bottom:1px solid #efefef;
}

.footer-top .footer-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items:center;
  padding:15px 0px;
  position: relative;
}

.footer-top .footer-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin:0px -15px;
}

.footer-top .footer-inner li {
  padding:0px 15px;
  border-right:1px solid #efefef;
}

.footer-top .footer-inner li:last-child{
  border-right:0px;
}

.footer-top .footer-sns {
  margin:0px -8px;
}

.footer-top .footer-sns li{
  border:0px;
  padding:0px 8px;
}

.footer-top .footer-inner a {
  display:block;
  line-height:.8;
  font-size:1.6rem;
  color:#efefef;
}

.footer-bottom {
  padding:40px 0px;
}

.footer-bottom .footer-left {
  position: absolute;
}

.footer-bottom .footer-logo {
  display: block;
  width:185px;
  height:36px;
  background:url('/child/img/common/footer-logo.png') no-repeat;
}

.footer-bottom .footer-info {
  font-size:0px;
  max-width:880px;
  margin-left:300px;
}

.footer-bottom .footer-info li {
  display: inline-block;
  font-size:1.4rem;
  line-height:1.6;
  font-weight:300;
  color:#fff;
  padding:0px 10px;
}

.footer-bottom .footer-info li:first-child {
  width:100%;
  font-weight:400;
  border:0px;
  margin:0px 0px 10px;
}

.footer-bottom .footer-info li.copylight {
  width:100%;
  font-weight:400;
  border:0px;
  margin:20px 0px 0px;
}

.footer-addlogo {
  display: flex;
  margin:20px -10px 0px;
}

.footer-addlogo li {
  padding:0px 10px;
}

@media (max-width:1200px) {

}
@media (max-width:1024px) {

  .footer-inner {
    -webkit-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-top .footer-inner ul {
    margin:0px -8px;
  }

  .footer-top .footer-inner li {
    padding:0px 8px;
  }

  .footer-top .footer-inner a {
    font-size:1.4rem;
  }

  .footer-bottom .footer-left {
    position:relative;
    margin:0 auto 20px;
  }

  .footer-bottom .footer-logo {
    height:24px;
    background-size:auto 24px;
    background-position: center;
  }

  .footer-bottom .footer-info {
    max-width:none;
    margin:0 auto;
    text-align: center;
  }

  .footer-bottom .footer-info li {
    font-size:1.2rem;
    padding:0px 5px;
  }

  .footer-bottom .footer-info li.copylight {
    margin:12px 0px 0px;
  }

}
@media (max-width:768px) {

  .footer-top .footer-inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding:10px 0px;
  }

  .footer-top .footer-inner ul {
    width:100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding:10px 0px;
    margin:0px -6px;
  }

  .footer-top .footer-inner li {
    padding:0px 6px;
  }

  .footer-top .footer-inner ul.footer-sns {
    padding:20px 0px 10px;
  }

  .footer-top .footer-inner a {
    font-size:1.3rem;
  }

}
@media (max-width:500px) {

}
/*-------------- E:Footer --------------*/

/*------------------------------------*/

/* Popup */
#popup {
  position: relative;
}

.popup-layer {
  z-index: 10000;
  position: absolute;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
  animation: popup-fade .65s ease-in-out .35s forwards;
  opacity: 0;
  max-width:800px;
}

@keyframes popup-fade {
  0% { opacity: 0;
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px); }
  100% { opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
}
.popup-layer__body {
  background: #fff;
}

.popup-layer__body img {
  display: block;
  margin: 0 auto;
  border: none;
  max-width: 100%;
}

.popup-layer__foot {
  background: #424242;
}

.popup-layer__foot ul {
  display:flex;
  flex-wrap: wrap;
}

.popup-layer__foot li {
  width:50%;
  padding:10px;
}

.popup-layer__foot li:first-child {
  padding-right:0;
}

.popup-layer__foot li:last-child {
  text-align: right;
}

.popup-layer__foot span {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
  /* .popup-layer { z-index: 999; } */
  .popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

  .popup-layer {
    width:calc(100% - 10px);
  }

  .popup-layer img {
    max-width: none;
    width:100%;
    height: auto !important;
  }
  .popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
  .popup-layer-foot li { width: 100%; }
  .popup-layer-foot li:last-child { text-align: left; }
}
