/* Breakpoint
------------------------------------- */
/* Mobile First */
/* Desktop First */
/* Text Style
------------------------------------- */
/* Font Family */
/* Font Size for Paragraph (Area Text) */
/* Font Size for Title and Word (Point Text) */
/* Font Weight */
/* Line Height */
/* Color Palette
------------------------------------- */
/* Spacing
------------------------------------- */
.p_footer-top {
  background-color: #26B7BC;
  padding: 12px 0 10px;
  position: relative;
  text-align: center;
}

/*----------------------------------------------
	Footer Menu
---------------------------------------------*/
.p_footer__menu {
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p_footer__menu_inner {
  margin-left: 40px;
  width: 82%;
}

.p_footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          /* justify-content: center; */
}

.p_footer__menu ul li {
  position: relative;
}
.p_footer__menu ul li:after {
  background-color: #E9F8F8;
  content: "";
  height: 19px;
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
}
.p_footer__menu ul li:last-child:after {
  background-color: transparent;
}

.p_footer__menu ul li a {
  color: #E9F8F8;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 27px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p_footer__menu ul li a:hover {
  opacity: 0.6;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .p_footer__menu {
    display: block;
    padding: 25px 20px;
    text-align: center;
  }

  .p_footer__menu_inner {
    width: 100%;
    margin-left: 0;
  }

  .p_footer__menu ul li {
    margin: 4px 0;
  }

  .p_footer__menu ul li:after {
    top: 6px;
  }
}


/*----------------------------------------------
	Footer MenuALL
---------------------------------------------*/
.p_footer__menuAll {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 0 16px;
  padding-top: 32px;
  align-items: normal;
}

.p_footer__menuALL__tbl {
  width: calc(25% - 16px);
  margin-bottom: 32px;
}

.p_footer__menuALL__ttl {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  display: block;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
  padding-bottom: 8px;
}

.p_footer__menuALL__inner {
  text-align: left;
  padding: 0 8px;
}

.p_footer__menuAll__tlist {
  line-height: 1.5;
}

.p_footer__menuAll__tlist li {
  padding-bottom: 10px;
}

.p_footer__menuAll__tlist li a {
  color: #E9F8F8;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .p_footer__menuAll {
    padding: 0 20px;
    text-align: center;
  }

  .p_footer__menuALL__ttl {
    font-size: 16px;
  }

  .p_footer__menuALL__tbl {
    width: calc(50% - 10px);
    margin-bottom: 24px;
  }

  .p_footer__menuAll__tlist li a {
    font-size: 14px;
  }
}

/*----------------------------------------------
	Footer Logo
---------------------------------------------*/
.p_footer__logo {
  display: block;
  line-height: 0;
  /* padding-bottom: 7px; */
  width: 18%;
}
.p_footer__logo img {
  width: 100%;
  /* max-width: 142px; */
}

.p_footer__logo a {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .p_footer__logo {
    width: 90%;
    max-width: 420px;
    margin: 0 auto 16px;
  }
}

/*----------------------------------------------
	SNS icon
-----------------------------------------*/
.p_footer__icon {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: #fff;
}

.p_footer__icon li {
  max-width: 60px;
  width: 8%;
}

.p_footer__icon li:first-child {
  margin-right: 24px;
}

.p_footer__icon li img {
  width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .p_footer__icon li {
    min-width: 50px;
    width: 8%;
  }
  .p_footer__icon li:first-child {
    margin-right: 16px;
  }
}

/*----------------------------------------------
	Copyright
---------------------------------------------*/
.copyright {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .p_footer-top {
    padding-bottom: 70px;
  }
  .p_footer__menu {
    font-size: 14px;
  }
  .p_footer__menu ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p_footer__menu ul li a {
    padding: 0 10px;
  }
  .copyright {
    font-size: 10px;
  }
}


/*----------------------------------------------
	Other 
---------------------------------------------*/
.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}