@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
/*-------------------------
  RESET
-------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #36322b;
  background-color: #f2f1ed;
  overflow-x: hidden;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25ch;
  text-decoration: none;
  color: #36322b;
}

a:hover,
a:focus {
  text-decoration-style: dashed;
  text-decoration: underline;
  color: #36322b;
}

a:active {
  text-decoration: none;
}

ol,
ul,
li {
  list-style: none;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/*-------------------------
  COMMON
-------------------------*/
#wrapper {
  padding: 88px 0 0;
}

.inner {
  max-width: 1560px;
  width: auto;
  margin: 0 auto;
}

.btn-primary a {
  width: 320px;
  height: 52px;
  background-color: #aa9482;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 52px;
  display: inline-block;
  position: relative;
  transition: 0.4s ease-in-out;
}
.btn-primary a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn-primary a:after {
  content: "";
  background: url(./assets/images/arrow-wh.svg) no-repeat center right/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  margin: -3px 0 0;
  width: 7px;
  height: 6px;
}

.btn-secondary a {
  width: 320px;
  height: 52px;
  background-color: #e6e1dc;
  color: #905c40;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 52px;
  display: inline-block;
  position: relative;
  transition: 0.4s ease-in-out;
}
.btn-secondary a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn-secondary a:after {
  content: "";
  background: url(./assets/images/shop-btn-arrow.svg) no-repeat center right/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  margin: -3px 0 0;
  width: 7px;
  height: 6px;
}

/*-------------------------
  HEADER
-------------------------*/

#sp-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: 50px;
  height: 50px;
}

.menu-trigger {
  display: block;
  width: 100%;
  height: 100%;
}
.menu-trigger span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background-color: #36322b;
  transition: 0.4s ease-in-out;
}
.menu-trigger span:nth-of-type(1) {
  top: 20px;
}
.menu-trigger span:nth-of-type(2) {
  top: 28px;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(4px) rotate(-30deg);
  transform: translateY(4px) rotate(-30deg);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(-4px) rotate(30deg);
  transform: translateY(-4px) rotate(30deg);
}

#sp-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #aa9482;
  color: #fff;
  text-align: center;
  z-index: 10000;
  animation: appear 0.2s ease;
}
#sp-nav-menu .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 47px);
}
#sp-nav-menu .wrap .content a {
  color: #fff;
}
#sp-nav-menu .wrap .content a.contact-modal {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 30px;
}
#sp-nav-menu .wrap .content h1 {
  margin: 0 0 60px;
}
#sp-nav-menu .wrap .content nav {
  margin: 0 0 40px;
}
#sp-nav-menu .wrap .content nav ul li {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 30px;
}
#sp-nav-menu .wrap .content nav ul li.menu-item-213 {
  display: none;
}
#sp-nav-menu .wrap .content .contact {
  padding: 40px 0 0;
  position: relative;
}
#sp-nav-menu .wrap .content .contact a {
  display: block;
}
#sp-nav-menu .wrap .content .contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #e6e1dc;
  width: 16px;
  height: 1px;
  margin: 0 0 0 -8px;
}
#sp-nav-menu .wrap .content .sns {
  padding: 40px 0 0;
}
#sp-nav-menu .wrap .content .sns a {
  margin: 0 20px;
}
#sp-nav-menu .logo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 47px;
  background-color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sp-nav-menu .logo img {
  height: 18px;
}
#sp-nav-menu.active {
  display: block;
}

/*-------------------------
  FOOTER
-------------------------*/

@media screen and (max-width: 768px) {
  #wrapper {
    padding: 50px 0 0;
  }
  header {
    height: 50px;
  }
  header .row {
    height: 50px;
    padding: 0 20px;
    justify-content: center;
  }
  header h1 {
    padding: 0 0 2px;
  }
  header h1 a img {
    height: 20px;
  }
  header .logo {
    display: none;
  }
  header nav {
    display: none;
  }
  #sp-menu {
    display: block;
  }
  #sp-nav-menu .logo {
    display: none;
  }
}
/*-------------------------
  INDEX
-------------------------*/
.index-fv {
  display: grid;
  grid-template-columns: 46.5% 46.5%;
  column-gap: 7%;
  row-gap: 45px;
  padding: 80px 50px 80px 100px;
}
@media (max-width: 1440px) {
  .index-fv {
    grid-template-columns: 47% 49%;
    column-gap: 4%;
    row-gap: 50px;
    padding: 80px 40px 70px 60px;
  }
}
@media (max-width: 1024px) {
  .index-fv {
    padding: 55px 40px 60px 40px;
    grid-template-columns: 46% 48.5%;
    column-gap: 5.5%;
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .index-fv {
    grid-template-columns: unset;
    row-gap: 0 !important;
    padding: 0 40px 80px;
  }
}
@media (max-width: 640px) {
  .index-fv {
    padding: 0 0 30px;
    row-gap: 30px;
  }
}

.index-fv__top {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}
.index-fv__top h2 {
  position: relative;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: bold;
  font-size: 42px;
  line-height: 1;
  padding-left: 30px;
  padding-right: 10px;
}
.index-fv__top h2::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 13px solid;
  border-right: 0;
}
.index-fv__top p {
  flex-grow: 1;
  font-weight: bold;
  font-size: 14px;
}
.index-fv__top p > span {
  font-size: calc(16em / 14);
}
.index-fv__top a {
  display: inline-flex;
  align-items: center;
  column-gap: 15px;
  font-weight: 500;
  font-size: 12px;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .index-fv__top a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
.index-fv__more {
  display: none;
}
@media (max-width: 1440px) {
  .index-fv__top {
    margin-bottom: 15px;
  }
  .index-fv__top h2 {
    font-size: 36px;
  }
}
@media (max-width: 1024px) {
  .index-fv__top {
    gap: 20px;
    margin-bottom: 15px;
  }
  .index-fv__top h2 {
    font-size: 24px;
    padding-left: 30px;
  }
  .index-fv__top h2::before {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid;
  }
  .index-fv__top p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .index-fv__top {
    column-gap: 40px;
    margin-bottom: 20px;
  }
  .index-fv__top h2 {
    font-size: 36px;
    padding-left: 30px;
  }
  .index-fv__top h2::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid;
  }
  .index-fv__top a {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  .index-fv__top {
    justify-content: space-between;
    column-gap: 0;
    margin-bottom: 10px;
  }
  .index-fv__top h2 {
    font-size: 28px;
    padding-left: 15px;
  }
  .index-fv__top p {
    flex-grow: unset;
    font-size: 13px;
  }
  .index-fv__top a {
    display: none;
  }
  .index-fv__more {
    display: block;
  }
  .index-fv__more a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52px;
    background-color: #e6e1dc;
    font-weight: normal;
    font-size: 12px;
    text-align: center;
    color: #905c40;
    font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  @media (hover: hover) {
    .index-fv__more a:hover {
      text-decoration: none;
      background-color: #905c40;
      color: #fff;
    }
  }
}

/*============================
#top-project
============================*/
#top-projects {
  grid-area: 1 / 2 / 2 / 3;
}
/* #top-projects .inner {
} */
/* #top-projects .inner .top {
} */
#top-projects .inner .top h2 {
  color: #17774f;
}
#top-projects .inner .top h2::before {
  border-left-color: #17774f;
}
#top-projects .inner .top p {
  color: #17774f;
}
#top-projects .inner .top a {
  color: #17774f;
}
#top-projects .project__lists {
  width: auto;
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}
#top-projects .project__list {
  margin-bottom: 0;
}
/* #top-projects .project__list img {
} */
#top-projects .project__text-top {
  font-size: 13px;
  inset: 12px auto auto 12px;
}
#top-projects .project__text-top2 {
  font-size: 40px;
  inset: 32px auto auto 12px;
}
#top-projects .project__text-center {
  font-size: 15px;
  line-height: calc(22 / 15);
  inset: auto auto -10px 12px;
}
#top-projects .project__text-bottom {
  font-size: 12px;
  inset: auto 12px 12px auto;
}
@media (max-width: 1440px) {
  #top-projects .project__lists {
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  #top-projects .project__list img {
    aspect-ratio: 220 / 160;
  }
  #top-projects .project__text-top {
    font-size: 12px;
  }
  #top-projects .project__text-top2 {
    font-size: 28px;
  }
  #top-projects .project__text-center {
    font-size: 14px;
  }
  #top-projects .project__text-bottom {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #top-projects {
    grid-area: unset;
  }
  #top-projects .project__lists {
    gap: 20px;
    grid-template-columns: unset;
  }
  #top-projects .project__list img {
    aspect-ratio: 351 / 175;
  }
  #top-projects .project__text-top {
    inset: 28px auto auto 25px;
    font-size: 13px;
  }
  #top-projects .project__text-top2 {
    inset: 52px auto auto 25px;
    font-size: 48px;
  }
  #top-projects .project__text-center {
    font-size: 21px;
    inset: auto auto 20px 25px;
  }
  #top-projects .project__text-bottom {
    display: block;
    font-size: 13px;
    inset: auto 25px 20px auto;
  }
}
@media screen and (max-width: 640px) {
  #top-projects {
    margin-bottom: 40px;
  }
  #top-projects .inner {
    padding-inline: 15px;
  }
  #top-projects .project__lists {
    gap: 10px;
    margin-bottom: 30px;
  }
  #top-projects .project__text-top {
    inset: 20px auto auto 10px;
  }
  #top-projects .project__text-top2 {
    inset: 35px auto auto 5px;
  }
  #top-projects .project__text-center {
    font-size: 16px;
    line-height: calc(22 / 15);
    inset: auto auto 5px 10px;
  }
  #top-projects .project__text-bottom {
    font-size: 13px;
    inset: auto 10px 10px auto;
  }
}

/*============================
#top-articles
============================*/
/* #top-articles {
}
#top-articles .inner {
}
#top-articles .inner .top {
} */
#top-articles .inner .top h2 {
  color: #905c40;
}
#top-articles .inner .top h2::before {
  border-left-color: #905c40;
}
#top-articles .inner .top p {
  color: #905c40;
}
#top-articles .inner .top a {
  color: #905c40;
}
#top-articles ul {
  display: grid;
  row-gap: 1px;
}
/* #top-articles ul li {
} */

.second-contents {
  display: grid;
  grid-template-columns: 1fr 1fr 340px;
  gap: 40px;
  padding-inline: 50px;
  margin-bottom: 90px;
}

.second-contents .inner {
  height: 100%;
}

.second-contents__box {
  height: 100%;
  border-radius: 12px;
  background-color: #fff;
}
.second-contents__head {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid;
}
.second-contents__head h2 {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: bold;
  font-size: 30px;
  padding-left: 20px;
	white-space: nowrap;
}
.second-contents__head p {
  flex-grow: 1;
  font-weight: bold;
  font-size: 15px;
}
.second-contents__head a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 64px;
  border-top-right-radius: 12px;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .second-contents__head a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
.second-contents__body {
  padding: 25px 25px 35px;
}
@media (max-width: 1440px) {
  .second-contents {
    grid-template-columns: 1fr 1fr 310px;
    padding-inline: 40px;
    margin-bottom: 70px;
  }
  .second-contents__body {
    padding: 20px 25px 30px;
  }
}
@media (max-width: 1024px) {
  .second-contents {
    grid-template-columns: 1fr 1fr 224px;
    gap: 30px;
    margin-bottom: 60px;
  }
  .second-contents__head {
    gap: 20px;
  }
  .second-contents__head h2 {
    font-size: 20px;
  }
  .second-contents__head p {
    font-size: 13px;
  }
  .second-contents__head a {
    width: 77px;
    height: 56px;
  }
  .second-contents__body {
    padding: 20px 10px 30px;
  }
}
@media (max-width: 768px) {
  .second-contents {
    grid-template-columns: unset;
    gap: 40px;
    margin-bottom: 70px;
  }
  .second-contents__head {
    gap: 20px;
  }
  .second-contents__head h2 {
    font-size: 30px;
  }
  .second-contents__head p {
    font-size: 15px;
  }
  .second-contents__head a {
    width: 104px;
    height: 64px;
  }

  .second-contents__body {
    padding: 20px 25px 20px;
  }
}
@media (max-width: 640px) {
  .second-contents {
    gap: 20px;
    padding-inline: 15px;
    margin-bottom: 40px;
  }
  .second-contents__head {
    gap: 15px;
  }
  .second-contents__head h2 {
    font-size: 24px;
    padding-left: 10px;
  }
  .second-contents__head p {
    font-size: 13px;
  }
  .second-contents__head a {
    width: 76px;
    height: 54px;
  }
  .second-contents__body {
    padding: 15px 10px 30px;
  }
}

/*============================
#top-people
============================*/
#top-people .second-contents__head {
  border-color: #397bbe;
}
#top-people .second-contents__head h2 {
  color: #397bbe;
}
#top-people .second-contents__head p {
  color: #397bbe;
}
#top-people .second-contents__head a {
  background-color: #397bbe;
}
#top-people .second-contents__body ul {
  display: grid;
  row-gap: 25px;
}
#top-people .second-contents__body ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  #top-people .second-contents__body ul li a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
#top-people .second-contents__body ul li a figure {
  width: 23%;
  height: auto;
  aspect-ratio: 1/1;
}
#top-people .second-contents__body ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#top-people .second-contents__body ul li a .body {
  width: 71%;
  padding-top: 10px;
}
#top-people .second-contents__body ul li a .people-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
#top-people .second-contents__body ul li a .people-en-name {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 10px;
}
#top-people .second-contents__body ul li a .people-txt {
  font-weight: 500;
  font-size: 12px;
  line-height: calc(22 / 12);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 表示する行数 */
  overflow: hidden;
}
@media (max-width: 1440px) {
  #top-people .second-contents__body ul {
    row-gap: 20px;
  }
  #top-people .second-contents__body ul li a figure {
    width: 30%;
  }
  #top-people .second-contents__body ul li a .body {
    width: 65%;
    padding-top: 5px;
  }
}
@media (max-width: 1024px) {
  #top-people .second-contents__body ul li a .body {
    width: 63%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 25px;
    padding-top: 0;
  }
  #top-people .second-contents__body ul li a .people-name {
    font-size: 15px;
    margin-bottom: 0;
  }
  #top-people .second-contents__body ul li a .people-en-name {
    margin-bottom: 0;
  }
  #top-people .second-contents__body ul li a .people-txt {
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 768px) {
  #top-people .second-contents__body ul {
    display: grid;
    row-gap: 25px;
  }
  /* #top-people .second-contents__body ul li {
} */
  #top-people .second-contents__body ul li a figure {
    width: 20%;
  }
  #top-people .second-contents__body ul li a .body {
    width: 75%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    row-gap: 0;
  }
  #top-people .second-contents__body ul li a .people-txt {
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 640px) {
  #top-people .second-contents__body ul {
    row-gap: 10px;
  }
  #top-people .second-contents__body ul li a figure {
    width: 25%;
  }
  #top-people .second-contents__body ul li a .body {
    width: 70%;
  }
  #top-people .second-contents__body ul li a .people-name {
    font-size: 14px;
  }
  #top-people .second-contents__body ul li a .people-en-name {
    font-size: 10px;
  }
  #top-people .second-contents__body ul li a .people-txt {
    font-size: 11px;
    line-height: calc(17 / 11);
  }
}

/*============================
#top-pickup
============================*/
#top-pickup .second-contents__head {
  border-color: #cb883a;
}
#top-pickup .second-contents__head h2 {
  color: #cb883a;
}
#top-pickup .second-contents__head p {
  color: #cb883a;
}
#top-pickup .second-contents__head a {
  background-color: #cb883a;
}
#top-pickup .second-contents__body ul {
  display: grid;
  row-gap: 25px;
}
#top-pickup .second-contents__body ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  #top-pickup .second-contents__body ul li a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
#top-pickup .second-contents__body ul li a figure {
  width: 23%;
  height: auto;
  aspect-ratio: 1/1;
}
#top-pickup .second-contents__body ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#top-pickup .second-contents__body ul li a .body {
  width: 69%;
  padding-top: 10px;
}
#top-pickup .second-contents__body ul li a .body p {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: calc(24 / 15);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 表示する行数 */
  overflow: hidden;
  margin-bottom: 10px;
}
#top-pickup .second-contents__body ul li a .body p small {
  font-weight: 500;
  font-size: 12px;
  color: #6c6c6c;
}
@media (max-width: 1440px) {
  #top-pickup .second-contents__body ul li a figure {
    width: 30%;
  }
  #top-pickup .second-contents__body ul li a .body {
    width: 63%;
  }
}
@media (max-width: 1024px) {
  #top-pickup .second-contents__body ul {
    row-gap: 40px;
  }
  #top-pickup .second-contents__body ul li a .body p {
    font-size: 12px;
    line-height: calc(20 / 12);
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  #top-pickup .second-contents__body ul li a figure {
    width: 20%;
  }
  #top-pickup .second-contents__body ul li a .body {
    width: 75%;
  }
  #top-pickup .second-contents__body ul li a .body p {
    font-size: 15px;
    line-height: calc(24 / 15);
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  #top-pickup .second-contents__body ul {
    row-gap: 10px;
  }
  #top-pickup .second-contents__body ul li a figure {
    width: 25%;
  }
  #top-pickup .second-contents__body ul li a .body {
    width: 70%;
  }
  #top-pickup .second-contents__body ul li a .body p {
    font-size: 14px;
    line-height: calc(20 / 14);
    margin-bottom: 10px;
  }
  #top-pickup .second-contents__body ul li a .body p small {
    font-size: 10px;
  }
}

.second-contents .col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*============================
#top-about
============================*/
#top-about a {
  position: relative;
  background-color: #905c40;
  display: flex;
  column-gap: 10px;
  height: 80px;
  align-items: center;
  padding-inline: 25px;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  #top-about a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
#top-about a p {
  font-weight: bold;
  font-size: 15px;
  color: #fff;
}
#top-about a .arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media (max-width: 1440px) {
  #top-about a {
    height: 72px;
    padding-inline: 20px;
  }
  #top-about a p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  #top-about a {
    column-gap: 10px;
    height: 49px;
    padding-inline: 15px;
  }
  #top-about a h2 img {
    width: 80px;
  }
  #top-about a p {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  #top-about a {
    column-gap: 30px;
    height: 93px;
    padding-inline: 40px;
  }
  #top-about a .arrow {
    right: 30px;
  }

  #top-about a h2 img {
    width: 165px;
  }
  #top-about a p {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  #top-about a {
    column-gap: 15px;
    height: 80px;
    padding-inline: 25px;
  }
  #top-about a h2 img {
    width: 120px;
  }
  #top-about a p {
    font-size: 15px;
  }
}

.magazine-modal {
  transition: all 1s;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
}
.magazine-modal.active {
  opacity: 1;
  visibility: visible;
}
.magazine-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.magazine-modal .modal-content {
  position: absolute;
  top: calc(50% - 283px);
  left: calc(50% - 516px);
  background-color: #f2f1ed;
  width: 100%;
  max-width: 1032px;
  height: 100%;
  max-height: 526px;
  z-index: 2;
  text-align: center;
  padding: 132px 50px 0;
}
.magazine-modal .modal-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}
.magazine-modal .modal-content p {
  font-size: 16px;
  margin-bottom: 60px;
  line-height: 2;
}
.magazine-modal .modal-content iframe {
  max-width: 560px;
  width: 100%;
  height: 72px;
  border: 0;
}
.magazine-modal .modal-content .close {
  position: absolute;
  top: 20px;
  right: 20px;
}

@media screen and (max-width: 1032px) {
  .magazine-modal .modal-content {
    max-width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .magazine-modal {
    z-index: 10001;
  }
  .magazine-modal .modal-content {
    top: 0;
    max-height: 100%;
    padding: 190px 25px 0;
  }
  .magazine-modal .modal-content h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .magazine-modal .modal-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 2;
    text-align: left;
  }
}

/*-------------------------
  PAGE
-------------------------*/
#page-header {
  padding: 120px 0;
  text-align: center;
}
#page-header .copy h2 {
  font-size: 36px;
  line-height: 1.5;
}
.contact-page #page-header .copy h2,
.faq #page-header .copy h2,
.supporters #page-header .copy h2,
.membership #page-header .copy h2 {
  font-weight: 500;
}

small {
  font-size: 16px;
  display: block;
}
@media screen and (max-width: 768px) {
  small {
    font-size: 12px;
  }
}

#page-header .copy p {
  font-size: 16px;
  padding: 40px 0 0;
  line-height: 1.8;
}
#page-header .copy img {
  max-width: 320px;
  margin-bottom: 90px;
}
.supporters #page-header .copy img {
  max-width: 1160px;
  margin-top: 94px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .supporters #page-header .copy img {
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 40px;
  }
}

#page-header.people-header {
  padding: 135px 0 108px;
}
#page-header.people-header .lead {
  width: 801px;
  margin: 60px auto 0;
  line-height: 2;
}

.page-about #page-header .copy h2 {
  font-size: 21px;
}

#about-content01 {
  margin: 0 0 120px;
}
#about-content01 .title {
  text-align: center;
}
#about-content01 .title h3 {
  font-size: 56px;
}
#about-content01 .title p {
  font-size: 18px;
  padding: 15px 0 0;
  font-weight: 700;
}
#about-content01 article.main {
  text-align: center;
  margin: 0 0 120px;
}
#about-content01 article.main p {
  font-size: 16px;
  line-height: 2;
}
#about-content01 article.main figure {
  padding: 80px 0;
}
#about-content01 article.main figure img {
  width: 100%;
  max-width: 727px;
}
#about-content01 article.sub {
  background-color: #f7f7f5;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about-content01 article.sub h3 {
  text-align: center;
  width: 50%;
}
#about-content01 article.sub h3 img {
  max-width: 318px;
  width: 100%;
}
#about-content01 article.sub .text {
  width: 50%;
  padding: 0 100px;
}
#about-content01 article.sub .text h4 {
  font-size: 18px;
  margin: 0 0 20px;
}
#about-content01 article.sub .text p {
  font-size: 16px;
  line-height: 2;
}

#about-content02 {
  margin: 0 0 120px;
}
#about-content02 .title {
  text-align: center;
  margin: 0 0 60px;
}
#about-content02 .title h3 {
  font-size: 56px;
}
#about-content02 .title p {
  font-size: 18px;
  padding: 15px 0 0;
  font-weight: 700;
}
#about-content02 article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 0 80px;
}
#about-content02 article:nth-child(even) {
  flex-direction: row-reverse;
  padding: 0 80px 0 40px;
  margin: 0 0 60px;
}
#about-content02 article figure {
  width: 55%;
}
#about-content02 article .text {
  width: 45%;
  padding: 0 100px;
}
#about-content02 article .text h4 {
  font-size: 18px;
  margin: 0 0 20px;
}
#about-content02 article .text p {
  font-size: 16px;
  line-height: 2;
}

#about-content03 {
  margin: 0 0 200px;
}
#about-content03 article {
  padding: 0 60px;
  text-align: center;
}
#about-content03 article h3 {
  font-size: 18px;
  margin: 0 0 20px;
}
#about-content03 article p {
  font-size: 16px;
  line-height: 2;
}
#about-content03 article figure {
  padding: 60px 0 0;
}
#about-content03 article .btn {
  padding: 80px 0 0;
}

#sdgs-content01 {
  margin: 0 0 120px;
}
#sdgs-content01 .main {
  margin: 0 0 60px;
  text-align: center;
}
#sdgs-content01 .main h3 {
  font-size: 21px;
  padding: 20px 0;
  border-top: solid #36322b 1px;
  border-bottom: solid #36322b 1px;
  margin: 0 0 80px;
}
#sdgs-content01 .main p {
  font-size: 16px;
  line-height: 1.8;
}
#sdgs-content01 .description .row {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}
#sdgs-content01 .description .left {
  width: 50%;
  padding: 0 40px 0 0;
}
#sdgs-content01 .description .left h4 {
  font-size: 18px;
  color: #937a63;
  margin: 0 0 10px;
}
#sdgs-content01 .description .left .image {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}
#sdgs-content01 .description .left .image figure {
  width: 128px;
  margin: 0 20px 0 0;
}
#sdgs-content01 .description .left .image .text {
  color: #937a63;
}
#sdgs-content01 .description .left .image .text p {
  font-size: 18px;
  font-weight: 700;
}
#sdgs-content01 .description .left .image .text p strong {
  font-size: 22px;
}
#sdgs-content01 .description .left .image .text small {
  display: block;
  font-size: 13px;
}
#sdgs-content01 .description .right {
  width: 50%;
  padding: 0 40px 0 0;
}
#sdgs-content01 .description .right p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 20px;
}
#sdgs-content01 .description .right small {
  display: block;
  font-size: 12px;
}
#sdgs-content01 .description .right figure {
  padding: 40px 0 0;
}
#sdgs-content01 .content {
  padding: 40px 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
#sdgs-content01 .content:nth-child(2) {
  flex-direction: row;
  margin: 0 0 40px;
}
#sdgs-content01 .content figure {
  width: 600px;
}
#sdgs-content01 .content .text {
  width: 600px;
  text-align: left;
  padding: 0 60px;
}
#sdgs-content01 .content .text h4 {
  font-size: 18px;
  margin: 0 0 30px;
}
#sdgs-content01 .content .text p {
  font-size: 16px;
  line-height: 1.8;
}

#sdgs-content02 {
  margin: 0 0 200px;
}
#sdgs-content02 .wrap {
  padding: 40px 50px;
  border: solid #937a63 1px;
}
#sdgs-content02 .wrap .top {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}
#sdgs-content02 .wrap .top h3 {
  font-size: 21px;
  color: #937a63;
  width: 48%;
}
#sdgs-content02 .wrap .top p {
  font-size: 16px;
  line-height: 1.8;
  width: 48%;
}
#sdgs-content02 .wrap .bottom {
  display: flex;
  justify-content: space-between;
}
#sdgs-content02 .wrap .bottom article {
  width: 48%;
}
#sdgs-content02 .wrap .bottom article h4 {
  padding: 0 0 0 20px;
  border-left: solid #937a63 4px;
  margin: 0 0 30px;
  font-size: 18px;
  color: #937a63;
  line-height: 1;
}
#sdgs-content02 .wrap .bottom article h4 span {
  font-size: 15px;
  display: block;
  margin: 0 0 10px;
}
#sdgs-content02 .wrap .bottom article p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 50px;
}
#sdgs-content02 .wrap .bottom article figure {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
#sdgs-content02 .wrap .bottom article figure img {
  width: 45%;
}
#sdgs-content02 .wrap .bottom article figure figcaption {
  width: 50%;
  font-size: 13px;
  line-height: 1.8;
}

#sdgs-content03 {
  margin: 0 0 120px;
}
#sdgs-content03 .wrap {
  padding: 0;
}
#sdgs-content03 .wrap article {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}
#sdgs-content03 .wrap article .head {
  width: 480px;
}
#sdgs-content03 .wrap article .head h3 {
  padding: 0 0 0 20px;
  border-left: solid #937a63 4px;
  margin: 0 0 30px;
  font-size: 18px;
  color: #937a63;
  line-height: 1.4;
}
#sdgs-content03 .wrap article .head p {
  font-size: 16px;
  line-height: 1.8;
}
#sdgs-content03 .wrap article .image {
  width: 965px;
  display: flex;
  justify-content: space-between;
}
#sdgs-content03 .wrap article .image figure {
  width: 463px;
}
#sdgs-content03 .wrap article .image figure figcaption {
  padding: 10px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (max-width: 1700px) {
  #page-header.people-header {
    padding: 7.85vw 0 6.28vw;
  }
  #page-header.people-header .lead {
    width: 46.57vw;
    margin: 3.49vw auto 0;
  }
  #about-content01 {
    padding: 0 50px;
  }
  #about-content01 article.sub {
    margin: 0 -20px;
  }
  #about-content02 {
    padding: 0 50px;
  }
  #sdgs-content01 {
    padding: 0 50px;
  }
  #sdgs-content01 .content {
    padding: 40px 40px;
  }
  #sdgs-content02 {
    padding: 0 50px;
  }
  #sdgs-content03 {
    padding: 0 50px;
  }
  #sdgs-content03 .wrap article .head {
    width: 32%;
  }
  #sdgs-content03 .wrap article .image {
    width: 64%;
  }
  #sdgs-content03 .wrap article .image figure {
    width: 48%;
  }
}
@media screen and (max-width: 1200px) {
  #about-content01 article.sub {
    padding: 40px;
  }
  #about-content01 article.sub .text {
    padding: 0 0 0 40px;
  }
  #about-content02 article {
    padding: 0;
  }
  #about-content02 article:nth-child(even) {
    padding: 0;
  }
  #about-content02 article .text {
    padding: 0 40px;
  }
  #sdgs-content01 .description .row {
    padding: 0 20px;
  }
  #sdgs-content01 .description .right {
    padding: 0;
  }
  #sdgs-content01 .content {
    padding: 20px 0;
  }
  #sdgs-content01 .content figure {
    width: 48%;
  }
  #sdgs-content01 .content .text {
    width: 48%;
    padding: 0 20px;
  }
  #sdgs-content03 .wrap {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #page-header {
    padding: 60px 26px;
  }
  .membership #page-header {
    padding-bottom: 40px;
  }
  #page-header .copy h2 {
    font-size: 24px;
  }
  .membership #page-header .copy h2 {
    font-size: 19px;
  }
  #page-header .copy p {
    text-align: left;
    font-size: 15px;
    padding: 40px 0 0;
    line-height: 2;
  }
  #page-header .copy p br.pc {
    display: none;
  }
  #page-header .copy img {
    max-width: 200px;
    margin-bottom: 72px;
  }
  #page-header.people-header {
    padding: 12vw 0;
  }
  #page-header.people-header h2 {
    font-size: 19px;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  }
  #page-header.people-header .lead {
    width: 86.13vw;
    margin: 43px auto 45px;
    text-align: justify;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
    font-size: 15px;
  }
  .page-about #page-header .copy h2 {
    font-size: 15px;
    text-align: left;
  }
  .page-about #page-header .copy p {
    padding: 20px 0 0;
  }
  #about-content01 {
    margin: 0 0 60px;
    padding: 0 26px;
  }
  #about-content01 .title {
    margin: 0 0 0px;
  }
  #about-content01 .title h3 {
    font-size: 38px;
  }
  #about-content01 .title p {
    font-size: 15px;
    padding: 2px 0 0;
  }
  #about-content01 article.main {
    margin: 0 0 60px;
    padding: 0;
  }
  #about-content01 article.main p {
    font-size: 15px;
    text-align: left;
    line-height: 2;
  }
  #about-content01 article.main p br.pc {
    display: none;
  }
  #about-content01 article.main figure {
    padding: 40px 0;
  }
  #about-content01 article.main figure img {
    width: 100%;
  }
  #about-content01 article.sub {
    margin: 0 -11px;
    padding: 40px 20px 20px;
    display: block;
  }
  #about-content01 article.sub h3 {
    text-align: center;
    width: auto;
    padding: 40px 40px 60px;
  }
  #about-content01 article.sub .text {
    width: auto;
    padding: 0;
  }
  #about-content01 article.sub .text h4 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  #about-content01 article.sub .text p {
    font-size: 15px;
  }
  #about-content02 {
    margin: 0 0 80px;
    padding: 0 26px;
  }
  #about-content02 .title {
    margin: 0 0 40px;
  }
  #about-content02 .title h3 {
    font-size: 38px;
  }
  #about-content02 .title p {
    font-size: 15px;
    padding: 2px 0 0;
  }
  #about-content02 article {
    display: block;
    padding: 0;
  }
  #about-content02 article:nth-child(even) {
    padding: 0;
    margin: 0 0 60px;
  }
  #about-content02 article figure {
    width: auto;
    margin: 0 -11px;
  }
  #about-content02 article .text {
    width: auto;
    padding: 0;
    margin: 0 0 40px;
  }
  #about-content02 article .text h4 {
    font-size: 15px;
  }
  #about-content02 article .text p {
    font-size: 15px;
  }
  #about-content03 {
    margin: 0 0 100px;
  }
  #about-content03 article {
    padding: 0 26px;
    text-align: left;
  }
  #about-content03 article h3 {
    font-size: 15px;
  }
  #about-content03 article p {
    font-size: 15px;
  }
  #about-content03 article figure {
    padding: 40px 0 0;
  }
  #about-content03 article .btn {
    text-align: center;
    padding: 60px 0 0;
  }
  #about-content03 article .btn a {
    font-size: 15px;
  }
  #sdgs-content01 {
    margin: 0 0 60px;
    padding: 0 15px;
  }
  #sdgs-content01 .main {
    margin: 0 0 40px;
  }
  #sdgs-content01 .main h3 {
    font-size: 15px;
    padding: 15px 11px;
    margin: 0 0 20px;
    text-align: left;
    line-height: 1.8;
  }
  #sdgs-content01 .main p {
    font-size: 15px;
    text-align: left;
    padding: 0 11px;
    line-height: 2;
  }
  #sdgs-content01 .main p br {
    display: none;
  }
  #sdgs-content01 .description .row {
    display: block;
    padding: 0 11px;
  }
  #sdgs-content01 .description .left {
    width: auto;
    padding: 0;
    margin: 0 0 40px;
  }
  #sdgs-content01 .description .left h4 {
    text-align: center;
    font-size: 17px;
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: solid #937a63 1px;
  }
  #sdgs-content01 .description .left .image {
    display: block;
    margin: 0 0 30px;
    text-align: center;
  }
  #sdgs-content01 .description .left .image figure {
    width: 128px;
    margin: 0 auto;
  }
  #sdgs-content01 .description .left .image .text {
    padding: 10px 0 0;
  }
  #sdgs-content01 .description .left .image .text p {
    font-size: 17px;
  }
  #sdgs-content01 .description .left .image .text p strong {
    font-size: 21px;
  }
  #sdgs-content01 .description .left .image .text small {
    font-size: 13px;
  }
  #sdgs-content01 .description .right {
    width: auto;
    padding: 0;
  }
  #sdgs-content01 .description .right p {
    margin: 0 0 10px;
  }
  #sdgs-content01 .description .right small {
    font-size: 12px;
  }
  #sdgs-content01 .description .right figure {
    padding: 40px 0 0;
  }
  #sdgs-content01 .content {
    padding: 0;
    display: block;
  }
  #sdgs-content01 .content:nth-child(2) {
    margin: 0 0 40px;
  }
  #sdgs-content01 .content figure {
    width: auto;
    margin: 0 0 20px;
  }
  #sdgs-content01 .content .text {
    width: auto;
    padding: 0 11px;
  }
  #sdgs-content01 .content .text h4 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  #sdgs-content01 .content .text p {
    font-size: 15px;
    padding: 0;
    line-height: 2;
  }
  #sdgs-content02 {
    margin: 0 0 100px;
    padding: 0 15px;
  }
  #sdgs-content02 .wrap {
    padding: 20px;
    cursor: pointer;
  }
  #sdgs-content02 .wrap .top {
    display: block;
    margin: 0;
  }
  #sdgs-content02 .wrap .top h3 {
    font-size: 15px;
    width: auto;
    position: relative;
    padding: 0 40px 0 0;
  }
  #sdgs-content02 .wrap .top h3:after {
    content: "";
    background: url(./assets/images/open-arrow.svg) no-repeat center/contain;
    width: 18px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    margin: -5px 0 0;
    transition: 0.2s ease;
  }
  #sdgs-content02 .wrap .top h3.active:after {
    transform: rotate(180deg);
  }
  #sdgs-content02 .wrap .top p {
    display: none;
    padding: 20px 0 0;
    font-size: 15px;
    width: auto;
    line-height: 2;
  }
  #sdgs-content02 .wrap .bottom {
    display: none;
    padding: 40px 0 0;
  }
  #sdgs-content02 .wrap .bottom article {
    width: auto;
    margin: 0 0 30px;
  }
  #sdgs-content02 .wrap .bottom article h4 {
    padding: 0 0 0 20px;
    margin: 0 0 20px;
    font-size: 13px;
  }
  #sdgs-content02 .wrap .bottom article h4 span {
    font-size: 13px;
    margin: 0 0 10px;
  }
  #sdgs-content02 .wrap .bottom article p {
    font-size: 15px;
    line-height: 2;
    margin: 0 0 30px;
  }
  #sdgs-content02 .wrap .bottom article figure {
    display: block;
  }
  #sdgs-content02 .wrap .bottom article figure img {
    width: auto;
  }
  #sdgs-content02 .wrap .bottom article figure figcaption {
    padding: 10px 0 0;
    width: auto;
    font-size: 13px;
  }
  #sdgs-content02 .wrap .bottom article:last-child {
    margin: 0;
  }
  #sdgs-content03 {
    margin: 0 0 60px;
    padding: 0 15px;
  }
  #sdgs-content03 .wrap {
    border-bottom: solid #e6e1dc 1px;
  }
  #sdgs-content03 .wrap article {
    display: block;
    margin: 0;
    border-top: solid #e6e1dc 1px;
    padding: 20px 11px;
    cursor: pointer;
  }
  #sdgs-content03 .wrap article .head {
    width: auto;
  }
  #sdgs-content03 .wrap article .head h3 {
    padding: 0;
    border-left: none;
    margin: 0;
    font-size: 15px;
    position: relative;
  }
  #sdgs-content03 .wrap article .head h3:after {
    content: "";
    background: url(./assets/images/open-arrow.svg) no-repeat center/contain;
    width: 18px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    margin: -5px 0 0;
    transition: 0.2s ease;
  }
  #sdgs-content03 .wrap article .head h3.active:after {
    transform: rotate(180deg);
  }
  #sdgs-content03 .wrap article .head p {
    display: none;
    padding: 20px 0 0;
    font-size: 15px;
    line-height: 2;
  }
  #sdgs-content03 .wrap article .image {
    display: none;
    padding: 20px 0 0;
    width: auto;
  }
  #sdgs-content03 .wrap article .image figure {
    width: auto;
    padding: 20px 0 0;
  }
  #sdgs-content03 .wrap article .image figure figcaption {
    font-size: 12px;
  }
}
/*-------------------------
  ARTICLES - single
-------------------------*/
#articles-single-header {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 900px;
}
#articles-single-header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50vh;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(200, 200, 200, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  bottom: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}
#articles-single-header .image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#articles-single-header .image img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#articles-single-header .copy {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#articles-single-header .copy .wrap {
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: end;
  color: #fff;
}
#articles-single-header .copy .wrap .title {
  width: 100%;
  padding: 0 0 60px;
}
#articles-single-header .copy .wrap .title .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 60px;
}
#articles-single-header .copy .wrap .title .meta .cat {
  display: flex;
  align-items: center;
  font-size: 12px;
}
#articles-single-header .copy .wrap .title .meta .cat span {
  padding: 0 60px 0 0;
  position: relative;
  display: inline-block;
}
#articles-single-header .copy .wrap .title .meta .cat span:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  right: 10px;
  top: 50%;
  background-color: #fff;
}
#articles-single-header .copy .wrap .title .meta .cat strong {
  font-weight: 500;
}
#articles-single-header .copy .wrap .title .meta .date {
  font-size: 12px;
}
#articles-single-header .copy .wrap .title h2 {
  width: 50%;
  font-size: 25px;
  line-height: 1.7;
  margin: 0 0 20px;
}
#articles-single-header .copy .wrap .title .tags {
  display: flex;
  flex-wrap: wrap;
}
#articles-single-header .copy .wrap .title .tags a {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  padding: 0 6px;
  border-radius: 20px;
  margin: 0 6px 0 0;
  border: solid #fff 1px;
}

#articles-single-content .container {
  max-width: 960px;
  margin: 0 auto;
}
#articles-single-content .container article {
  padding: 80px 0 0;
}
#articles-single-content .container article .lead-block {
  color: #937a63;
  padding: 0 0 0 20px;
  border-left: solid #937a63 4px;
  margin: 0 0 60px;
}
#articles-single-content .container article .lead-block p {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.4;
}
#articles-single-content .container article #toc_container {
  margin: 0 0 60px;
  padding: 0;
  width: auto !important;
  display: block !important;
  background-color: transparent !important;
  border: none !important;
}
#articles-single-content .container article #toc_container p {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 40px;
  color: #937a63;
  line-height: 2.4;
  text-align: left;
}
#articles-single-content .container article #toc_container ul {
  border-top: solid #e6e1dc 1px;
  counter-reset: number 0;
}
#articles-single-content .container article #toc_container ul li {
  border-bottom: solid #e6e1dc 1px;
  counter-increment: number 1;
}
#articles-single-content .container article #toc_container ul li a {
  color: #937a63;
  position: relative;
  padding: 20px 40px 20px 50px;
  display: block;
  line-height: 1.6;
  font-weight: 600;
  background: url(./assets/images/down-arrow02.svg) no-repeat center right 20px;
  transition: 0.4s ease-in-out;
}
#articles-single-content .container article #toc_container ul li a:before {
  color: #937a63;
  content: counter(number) "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -16px 0 0;
  width: 32px;
  height: 32px;
  border: solid #937a63 1px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 16px;
}
#articles-single-content .container article #toc_container ul li a:hover {
  text-decoration: none;
  opacity: 0.65;
}
#articles-single-content .container article .body {
  margin: 0 0 80px;
}
#articles-single-content .container article .body p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 40px;
  line-height: 2.4;
}
#articles-single-content .container article .body p a {
  color: #003bff;
}
#articles-single-content .container article .body h2 {
  font-size: 18px;
  color: #937a63;
  line-height: 2;
  margin: 0 0 40px;
}
#articles-single-content .container article .body h3 {
  font-size: 18px;
  color: #937a63;
  line-height: 2;
  margin: 0 0 40px;
}
#articles-single-content .container article .body blockquote {
  padding: 20px;
  background-color: #f7f7f5;
  margin: 0 0 40px;
}
#articles-single-content .container article .body blockquote p {
  margin: 0;
}
#articles-single-content .container article .body figure {
  text-align: center;
  margin: 0 0 30px;
  /*max-height:960px;*/
  gap: 0;
}
#articles-single-content .container article .body figure img {
  max-width: 100%;
  max-height: 960px;
  width: auto;
  height: auto;
}
#articles-single-content .container article .body figure figcaption {
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  background: none;
  color: #36322b;
  bottom: -40px;
  margin-bottom: 0;
  overflow: auto;
  padding: 10px 0 40px;
  width: 100%;
  box-sizing: border-box;
}
#articles-single-content .container article .body figure.wp-block-gallery {
  margin: 0 0 70px;
}
#articles-single-content .container article .body figure.wp-block-gallery figcaption {
  padding: 10px 0 0;
}
#articles-single-content .container article .body figure.full-width {
  width: 100vw;
  position: relative;
  margin: 0 calc(-50vw + 480px) 100px;
}
#articles-single-content .container article .body figure.full-width figure figcaption {
  padding: 0 40px;
}
#articles-single-content .container article .body .image-double figure {
  display: flex;
}
#articles-single-content .container article .body .image-double figure img {
  width: 50%;
}
#articles-single-content .container article .body .image-double p {
  padding: 10px 0 0;
  text-align: left;
  font-size: 13px;
}
#articles-single-content .container article .body .content-wide {
  width: 100vw;
  position: relative;
  padding: 0 0 60px;
  margin: 0 calc((-100vw + 1000px) / 2);
}
#articles-single-content .container article .body .content-wide .images {
  display: flex;
}
#articles-single-content .container article .body .content-wide .images img {
  width: 50%;
}
#articles-single-content .container article .body .content-wide p {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 0;
  text-align: left;
  font-size: 13px;
}
#articles-single-content .container article .people {
  content: "";
  display: block;
  clear: both;
  margin: 0 0 80px;
}
#articles-single-content .container article .people h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 50px;
  padding-bottom: 10px;
  color: #905c40;
  line-height: 2.4;
  border-bottom: solid #e6e1dc 1px;
}
#articles-single-content .container article .people .inner {
  display: flex;
  column-gap: 50px;
  margin-top: 40px;
}
#articles-single-content .container article .people .inner:nth-child(1),
#articles-single-content .container article .people .inner:nth-child(2) {
  margin-top: 0;
}
#articles-single-content .container article .people .inner-left {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  box-sizing: content-box;
  overflow: hidden;
  border: 7px solid #fff;
}
#articles-single-content .container article .people .inner-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#articles-single-content .container article .people .inner-right {
  width: 692px;
}
#articles-single-content .container article .people .inner-right .name {
  font-size: 21px;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #36322b;
}
#articles-single-content .container article .people .inner-right .en-name {
  padding-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #36322b;
}
#articles-single-content .container article .people .inner-right .txt {
  padding-top: 16px;
  color: #36322b;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 2;
}
#articles-single-content .container article .people .inner-right .sns {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  padding-top: 20px;
  float: left;
}
#articles-single-content .container article .people .inner-right .sns .fb {
  width: 10.19px;
  height: 17.83px;
  background: url(assets/images/sns-icons/icon-facebook-gold.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns .tw {
  width: 19.41px;
  height: 15.95px;
  background: url(assets/images/sns-icons/icon-twitter-gold.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns .in {
  width: 18.76px;
  height: 18.76px;
  background: url(assets/images/sns-icons/icon-instagram-gold.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns .yt {
  width: 18.5px;
  height: 12.95px;
  background: url(assets/images/sns-icons/yt.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns .link {
  width: 15.8px;
  height: 18px;
  background: url(assets/images/sns-icons/link.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns a {
  display: block;
  width: 100%;
  height: 100%;
}
#articles-single-content .container article .people .inner-right .to-list {
  position: relative;
  bottom: 6px;
  padding-top: 27px;
  float: right;
  font-size: 12px;
}
#articles-single-content .container article .people .inner-right .to-list a {
  padding-bottom: 5px;
  border-bottom: 1px solid #905c40;
  color: #905c40;
  text-decoration: none;
}
#articles-single-content .container article .information {
  margin: 0 0 80px;
}
#articles-single-content .container article .information h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 20px;
  color: #905c40;
  line-height: 2.4;
}
#articles-single-content .container article .information .information-main {
  margin: 0 0 20px;
}
#articles-single-content .container article .information .information-main table {
  width: 100%;
  border-collapse: collapse;
  border-top: solid #e6e1dc 1px;
}
#articles-single-content .container article .information .information-main table th {
  padding: 20px 20px 20px 0;
  font-size: 12px;
  color: #b4a698;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid #e6e1dc 1px;
  width: 10%;
}
#articles-single-content .container article .information .information-main table td {
  font-size: 13px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
  text-align: left;
  vertical-align: middle;
  padding: 20px 20px 20px 0;
  border-bottom: solid #e6e1dc 1px;
  width: 45%;
}
#articles-single-content .container article .information .information-main table td a {
  color: #003bff;
}
#articles-single-content .container article .information .information-sub {
  display: flex;
}
#articles-single-content .container article .information .information-sub .author {
  width: 50%;
}
#articles-single-content .container article .information .information-sub .author table {
  width: 100%;
  border-collapse: collapse;
}
#articles-single-content .container article .information .information-sub .author table th {
  padding: 0 20px 10px 0;
  font-size: 12px;
  color: #b4a698;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  width: 20%;
}
#articles-single-content .container article .information .information-sub .author table td {
  font-size: 13px;
  text-align: left;
  vertical-align: middle;
  padding: 0 0 10px 0;
}
#articles-single-content .container article .information .information-sub .author table td a {
  color: #003bff;
}
#articles-single-content .container article .information .information-sub .sns {
  width: 50%;
}
#articles-single-content .container article .information .information-sub .sns h4 {
  font-size: 12px;
  color: #b4a698;
  font-weight: 500;
  margin: 0 0 20px;
}
#articles-single-content .container article .information .information-sub .sns ul {
  display: flex;
  align-items: center;
}
#articles-single-content .container article .information .information-sub .sns ul li {
  margin: 0 20px 0 0;
}
#articles-single-content .container article .related {
  margin: 0 0 80px;
}
#articles-single-content .container article .related p {
  padding: 40px 0 0;
}
#articles-single-content .container article .related h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 30px;
  color: #937a63;
}
#articles-single-content .container article .related .related-posts {
  border-top: solid #e6e1dc 1px;
}
#articles-single-content .container article .related .related-posts .post {
  border-bottom: solid #e6e1dc 1px;
}
#articles-single-content .container article .related .related-posts .post a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: url(./assets/images/arrow-br.svg) no-repeat center right 12px;
  transition: 0.4s ease-in-out;
}
#articles-single-content .container article .related .related-posts .post a:hover {
  background: url(./assets/images/arrow-br.svg) no-repeat center right;
  text-decoration: none;
  opacity: 0.65;
}
#articles-single-content .container article .related .related-posts .post figure {
  width: 20%;
  margin: 0 5% 0 0;
}
#articles-single-content .container article .related .related-posts .post p {
  width: 75%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

#articles-single-other {
  padding: 60px 0 120px 0;
}
#articles-single-other h3 {
  font-size: 24px;
  margin: 0 0 60px;
  text-align: center;
}
#articles-single-other ul {
  display: flex;
  flex-wrap: wrap;
}
#articles-single-other ul li {
  width: 349px;
  margin: 0 51px 60px 0;
}
#articles-single-other ul li a {
  display: block;
}
#articles-single-other ul li figure {
  /*width:100%;
  height:233px;*/
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
  aspect-ratio: 3/2;
}
#articles-single-other ul li figure a {
  transition: 0.4s ease-in-out;
}
#articles-single-other ul li figure a:hover {
  opacity: 0.8;
}
#articles-single-other ul li figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#articles-single-other ul li .cat {
  margin: 0 0 20px;
}
#articles-single-other ul li .cat span {
  color: #fff;
  font-size: 11px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  font-weight: 600;
}
#articles-single-other ul li .cat.cat01 span {
  background-color: #1e986d;
}
#articles-single-other ul li .cat.cat02 span {
  background-color: #397bbe;
}
#articles-single-other ul li .cat.cat03 span {
  background-color: #cb883a;
}
#articles-single-other ul li h3 {
  font-size: 16px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin: 0 0 18px;
  line-height: 1.75;
  text-align: left;
}
#articles-single-other ul li h3 a {
  transition: 0.4s ease-in-out;
}
#articles-single-other ul li h3 a:hover {
  text-decoration: none;
  opacity: 0.65;
}
#articles-single-other ul li p {
  font-size: 13px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #6c6c6c;
}
#articles-single-other ul li .tags {
  padding: 24px 0 0;
  line-height: 2;
}
#articles-single-other ul li .tags a {
  display: inline-block;
  color: #905c40;
  font-size: 13px;
  padding: 5px 9px;
  border-radius: 20px;
  margin: 0 5px 0 0;
  background-color: #fff;
  transition: 0.4s ease-in-out;
}
#articles-single-other ul li .tags a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #905c40;
}
#articles-single-other ul li:nth-child(4n) {
  margin: 0 0 80px;
}

@media screen and (max-width: 1700px) {
  #articles-single-other {
    padding: 60px 50px 120px;
  }
  #articles-single-other ul li {
    width: 22%;
    margin: 0 4% 60px 0;
  }
  #articles-single-other ul li:nth-child(4n) {
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 1000px) {
  #articles-single-header .copy .wrap {
    margin: 0 40px;
  }
  #articles-single-header .copy .wrap .title h2 {
    width: auto;
  }
  #articles-single-content .container {
    margin: 0;
  }
  #articles-single-content .container article {
    padding: 60px 0 0;
  }
  #articles-single-content .container article .body {
    padding: 0 40px;
  }
  #articles-single-content .container article .body figure {
    margin: 0 -11px 60px;
  }
  #articles-single-content .container article .body figure figcaption {
    padding: 10px 11px 0;
  }
  #articles-single-content .container article .body figure.full-width {
    margin: 0 -40px 100px;
  }
  #articles-single-content .container article .body figure.full-width figure figcaption {
    padding: 0 40px;
  }
  #articles-single-content .container article .body .content-wide {
    margin: 0 -40px;
  }
  #articles-single-content .container article .body .content-wide .images {
    width: 100%;
    display: flex;
  }
  #articles-single-content .container article .body .content-wide .images img {
    width: 50%;
  }
  #articles-single-content .container article .body .content-wide p {
    margin: 0;
    padding: 10px 40px 0;
  }
  #articles-single-content .container article .people {
    padding: 0 26px;
  }
  #articles-single-content .container article .information {
    padding: 0 26px;
  }
  #articles-single-content .container article .related {
    padding: 0 26px;
  }
}
@media screen and (max-width: 768px) {
  #articles-single-header {
    height: auto;
    min-height: auto;
  }
  #articles-single-header:before {
    content: none;
  }
  #articles-single-header .image {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 220px;
  }
  #articles-single-header .copy {
    position: static;
    width: auto;
    height: auto;
    padding: 20px 26px 0;
  }
  #articles-single-header .copy .wrap {
    height: auto;
    margin: 0;
    display: block;
  }
  #articles-single-header .copy .wrap .title {
    width: 100%;
    padding: 0;
  }
  #articles-single-header .copy .wrap .title .meta {
    margin: 0 0 35px;
    color: #937a63;
  }
  #articles-single-header .copy .wrap .title .meta .cat span:after {
    background-color: #937a63;
  }
  #articles-single-header .copy .wrap .title h2 {
    width: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #36322b;
    margin: 0 0 35px;
  }
  #articles-single-header .copy .wrap .title .tags a {
    color: #937a63;
    border: solid #937a63 1px;
  }
  #articles-single-content .container {
    margin: 0;
  }
  #articles-single-content .container article {
    padding: 60px 0 0;
  }
  #articles-single-content .container article .lead-block {
    color: #937a63;
    padding: 0 26px 0 22px;
    border-left: solid #937a63 4px;
    margin: 0 -26px 40px;
  }
  #articles-single-content .container article .lead-block p {
    font-size: 15px;
  }
  #articles-single-content .container article #toc_container {
    margin: 0 0 40px;
  }
  #articles-single-content .container article #toc_container h3 {
    margin: 0 0 20px;
  }
  #articles-single-content .container article #toc_container ul li a:before {
    font-size: 15px;
  }
  #articles-single-content .container article .body {
    margin: 0 0 40px;
    padding: 0 26px;
  }
  #articles-single-content .container article .body h2 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  #articles-single-content .container article .body h3 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  #articles-single-content .container article .body p {
    font-size: 15px;
    margin: 0 0 30px;
    line-height: 2.2;
  }
  #articles-single-content .container article .body blockquote {
    padding: 20px;
  }
  #articles-single-content .container article .body blockquote p {
    margin: 0;
  }
  #articles-single-content .container article .body figure {
    max-height: none;
  }
  #articles-single-content .container article .body figure figcaption {
    font-size: 12px;
    padding: 10px 11px 0;
  }
  #articles-single-content .container article .body figure.wp-block-gallery {
    margin: 0 -11px 30px;
    max-height: none;
  }
  #articles-single-content .container article .body figure.wp-block-gallery figure {
    width: 100% !important;
    /*display:block;*/
    margin: 0 0 15px;
    max-height: none;
  }
  #articles-single-content .container article .body figure.wp-block-gallery figure img {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body figure.wp-block-gallery figure figcaption {
    position: static;
    padding: 10px 11px 0;
  }
  #articles-single-content .container article .body figure.full-width {
    display: block;
    margin: 0 -26px;
    max-height: none;
  }
  #articles-single-content .container article .body figure.full-width figure {
    display: block;
    width: 100% !important;
    margin: 0 0 36px;
  }
  #articles-single-content .container article .body figure.full-width figure img {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body figure.full-width figure figcaption {
    position: static;
    padding: 20px 26px 0;
  }
  #articles-single-content .container article .body .image-double figure {
    display: block;
  }
  #articles-single-content .container article .body .image-double figure img {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body .image-double p {
    padding: 10px 0 0;
    font-size: 12px;
  }
  #articles-single-content .container article .body .content-wide {
    width: auto;
    position: relative;
    padding: 0 0 40px;
    margin: 0 -40px;
  }
  #articles-single-content .container article .body .content-wide .images {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body .content-wide .images img {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body .content-wide p {
    margin: 0 40px;
    padding: 10px 0 0;
    font-size: 12px;
  }
  #articles-single-content .container article .people {
    margin: 0 0 40px;
    padding-bottom: 6.93vw;
  }
  #articles-single-content .container article .people h3 {
    padding-bottom: 2.13vw;
    margin-bottom: 5.07vw;
  }
  #articles-single-content .container article .people .inner {
    display: block;
    width: 100%;
    clear: both;
    padding-top: 7.82vw;
  }
  #articles-single-content .container article .people .inner:nth-child(1),
  #articles-single-content .container article .people .inner:nth-child(2) {
    padding-top: 0;
  }
  #articles-single-content .container article .people .inner-left {
    width: 29.33vw;
    height: 29.33vw;
    margin-right: 5.33vw;
    float: left;
  }
  #articles-single-content .container article .people .inner-right {
    width: auto;
  }
  #articles-single-content .container article .people .inner-right .name {
    padding-top: 9.87vw;
    font-size: 16px;
  }
  #articles-single-content .container article .people .inner-right .en-name {
    padding-top: 1.87vw;
    font-size: 12px;
  }
  #articles-single-content .container article .people .inner-right .txt {
    padding-top: 3.47vw;
    font-size: 12px;
    clear: both;
  }
  #articles-single-content .container article .people .inner-right .sns {
    padding-top: 5.33vw;
    padding-left: 1.33vw;
    column-gap: 25px;
  }
  #articles-single-content .container article .people .inner-right .sns .fb {
    width: 10.19px;
    height: 17.83px;
  }
  #articles-single-content .container article .people .inner-right .sns .tw {
    width: 19.41px;
    height: 15.95px;
  }
  #articles-single-content .container article .people .inner-right .sns .in {
    width: 18.76px;
    height: 18.76px;
  }
  #articles-single-content .container article .people .inner-right .sns .yt {
    width: 18.76px;
    height: 18.76px;
  }
  #articles-single-content .container article .people .inner-right .sns .link {
    width: 15.8px;
    height: 18px;
  }
  #articles-single-content .container article .people .inner-right .to-list {
    padding-top: 5.33vw;
    bottom: 2px;
  }
  #articles-single-content .container article .people .inner-right .to-list a {
    padding-bottom: 3px;
  }
  #articles-single-content .container article .information {
    content: "";
    display: block;
    clear: both;
    margin: 0 0 40px;
  }
  #articles-single-content .container article .information h3 {
    padding-top: 15.2vw;
    border-top: 1px solid #e6e1dc;
  }
  #articles-single-content .container article .information .information-main table {
    display: block;
  }
  #articles-single-content .container article .information .information-main table tbody {
    display: block;
  }
  #articles-single-content .container article .information .information-main table tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid #e6e1dc 1px;
    padding: 10px 0;
  }
  #articles-single-content .container article .information .information-main table th {
    display: block;
    padding: 10px 0;
    font-size: 12px;
    color: #937a63;
    font-weight: 500;
    text-align: left;
    border-bottom: none;
    width: 25%;
  }
  #articles-single-content .container article .information .information-main table td {
    display: block;
    font-size: 13px;
    text-align: left;
    padding: 10px 0;
    border-bottom: none;
  }
  #articles-single-content .container article .information .information-main table td.name {
    width: 75%;
  }
  #articles-single-content .container article .information .information-main table td.link {
    width: 75%;
    margin: 0 0 0 25%;
    padding: 0 0 10px;
    word-break: break-all;
  }
  #articles-single-content .container article .information .information-sub {
    display: block;
  }
  #articles-single-content .container article .information .information-sub .author {
    width: auto;
    padding: 0 0 10px;
    margin: 0 0 20px;
    border-bottom: solid #e6e1dc 1px;
  }
  #articles-single-content .container article .information .information-sub .author table {
    display: block;
  }
  #articles-single-content .container article .information .information-sub .author table tbody {
    display: block;
  }
  #articles-single-content .container article .information .information-sub .author table tr {
    display: flex;
  }
  #articles-single-content .container article .information .information-sub .author table th {
    display: block;
    text-align: left;
    width: 25%;
  }
  #articles-single-content .container article .information .information-sub .author table td {
    display: block;
    width: 75%;
  }
  #articles-single-content .container article .information .information-sub .sns {
    width: auto;
    display: flex;
    align-items: center;
    padding: 0 0 20px;
    border-bottom: solid #e6e1dc 1px;
  }
  #articles-single-content .container article .information .information-sub .sns h4 {
    width: 25%;
    margin: 0;
  }
  #articles-single-content .container article .information .information-sub .sns ul {
    width: 75%;
    align-items: center;
  }
  #articles-single-content .container article .related {
    margin: 0 0 40px;
  }
  #articles-single-content .container article .related h3 {
    margin: 0 0 20px;
    color: #937a63;
  }
  #articles-single-content .container article .related .related-posts .post a {
    display: block;
    background: none;
  }
  #articles-single-content .container article .related .related-posts .post figure {
    width: auto;
    margin: 0 0 14px;
  }
  #articles-single-content .container article .related .related-posts .post p {
    width: auto;
    font-size: 16px;
    line-height: 1.75;
    position: relative;
    padding: 0 20px 0 0;
    background: url(./assets/images/arrow-br.svg) no-repeat center right;
  }
  #articles-single-other {
    padding: 16vw 4vw 21.6vw;
  }
  #articles-single-other h3 {
    font-size: 24px;
    margin: 0 0 10.67vw;
  }
  #articles-single-other ul {
    display: block;
  }
  #articles-single-other ul.alm-listing .alm-reveal {
    display: block;
  }
  #articles-single-other ul.alm-listing .alm-reveal li {
    width: auto;
    margin: 0 0 40px;
  }
  #articles-single-other ul.alm-listing .alm-reveal li figure {
    height: 322px;
  }
  #articles-single-other ul.alm-listing .alm-reveal li:nth-child(3),
  #articles-single-other ul.alm-listing .alm-reveal li:nth-child(7) {
    margin: 0 0 40px;
  }
  #articles-single-other ul.alm-listing .alm-reveal li:nth-child(4n) {
    margin: 0 0 40px;
  }
  #articles-single-other ul li {
    width: auto;
    margin: 0 0 40px;
  }
  #articles-single-other ul li figure {
    /*width:100%;
    height:322px;*/
    overflow: hidden;
    position: relative;
    margin: 0 0 20px;
  }
  #articles-single-other ul li .cat {
    margin: 0 12px 20px;
  }
  #articles-single-other ul li .cat span {
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 5px 10px;
    font-weight: 600;
  }
  #articles-single-other ul li h3 {
    font-size: 15px;
    margin: 0 12px 14px;
  }
  #articles-single-other ul li p {
    font-size: 12px;
    margin: 0 12px;
  }
  #articles-single-other ul li .tags {
    padding: 14px 12px 0;
  }
  #articles-single-other ul li .tags a {
    font-size: 10px;
  }
  #articles-single-other ul li:nth-child(4n) {
    margin: 0 0 40px;
  }
}
.single-column {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0;
}
.single-column #toc_container {
  display: none;
}
.single-column .head {
  width: 25%;
}
.single-column .head h2 {
  font-size: 36px;
}
.single-column .content {
  width: 75%;
}
.single-column .content .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 80px;
}
.single-column .content .meta .cat {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.single-column .content .meta .cat span {
  padding: 0 60px 0 0;
  position: relative;
  display: inline-block;
  color: #937a63;
}
.single-column .content .meta .cat span:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  right: 10px;
  top: 50%;
  background-color: #937a63;
}
.single-column .content .meta .cat strong {
  font-weight: 500;
  color: #937a63;
}
.single-column .content .meta .date {
  font-size: 12px;
  color: #937a63;
}
.single-column .content .title {
  margin: 0 0 60px;
  padding: 0 0 60px;
  border-bottom: solid #e6e1dc 1px;
}
.single-column .content .title h3 {
  font-size: 20px;
}
.single-column .content .body h3 {
  font-size: 16px;
  color: #937a63;
  margin: 0 0 50px;
}
.single-column .content .body p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 40px;
}
.single-column .content .body figure {
  padding: 20px 0 0;
  margin: 0 0 60px;
}
.single-column .content .body figure figcaption {
  font-size: 13px;
  padding: 10px 0 0;
  margin: 0;
}
.single-column .content .body figure iframe {
  position: initial !important;
}
.single-column .content .body .wp-block-columns {
  margin: 0;
}
.single-column .content .pagenavi {
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
}
.single-column .content .pagenavi span {
  width: 100%;
}
.single-column .content .pagenavi span a {
  display: inline-block;
  border-radius: 30px;
  border: solid #937a63 1px;
  color: #937a63;
  font-size: 11px;
  position: relative;
  transition: 0.2s ease;
}
.single-column .content .pagenavi span a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #937a63;
}
.single-column .content .pagenavi span a:before {
  content: "";
  width: 7px;
  height: 6px;
  position: absolute;
  top: 50%;
  margin: -3px 0 0;
}
.single-column .content .pagenavi span.prev {
  text-align: left;
}
.single-column .content .pagenavi span.prev a {
  padding: 10px 40px 10px 50px;
}
.single-column .content .pagenavi span.prev a:before {
  background: url(./assets/images/arrow-br_l.svg) no-repeat center/contain;
  left: 30px;
}
.single-column .content .pagenavi span.next {
  text-align: right;
}
.single-column .content .pagenavi span.next a {
  padding: 10px 50px 10px 40px;
}
.single-column .content .pagenavi span.next a:before {
  background: url(./assets/images/arrow-br.svg) no-repeat center/contain;
  right: 30px;
}
.single-column .content .related {
  padding: 100px 0 0;
}
.single-column .content .related h3 {
  font-size: 24px;
  margin: 0 0 40px;
}
.single-column .content .related ul {
  border-top: solid #e6e1dc 1px;
}
.single-column .content .related ul li {
  border-bottom: solid #e6e1dc 1px;
}
.single-column .content .related ul li a {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(./assets/images/arrow-br.svg) no-repeat center right 12px;
  transition: 0.4s ease-in-out;
}
.single-column .content .related ul li a:hover {
  opacity: 0.65;
  text-decoration: none;
  background: url(./assets/images/arrow-br.svg) no-repeat center right;
}
.single-column .content .related ul li a figure {
  width: 183px;
  height: 122px;
  position: relative;
  overflow: hidden;
}
.single-column .content .related ul li a figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
.single-column .content .related ul li a .related-text {
  width: 80%;
  padding: 0 60px;
}
.single-column .content .related ul li a .related-text .related-meta {
  margin: 0 0 20px;
}
.single-column .content .related ul li a .related-text .related-meta .related-date {
  font-size: 11px;
  margin: 0 20px 0 0;
}
.single-column .content .related ul li a .related-text .related-meta .related-cat {
  color: #937a63;
  font-size: 11px;
}
.single-column .content .related ul li a .related-text h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 2;
}

@media screen and (max-width: 1280px) {
  .single-column {
    padding: 120px 40px;
  }
}
@media screen and (max-width: 768px) {
  .single-column {
    display: block;
    margin: 0;
    padding: 60px 26px;
  }
  .single-column .head {
    width: auto;
    text-align: center;
    margin: 0 0 60px;
  }
  .single-column .head h2 {
    font-size: 24px;
  }
  .single-column .content {
    width: auto;
    padding: 0;
  }
  .single-column .content .meta {
    margin: 0 0 40px;
  }
  .single-column .content .title {
    margin: 0 0 40px;
    padding: 0 0 40px;
  }
  .single-column .content .title h3 {
    font-size: 15px;
  }
  .single-column .content .body h3 {
    font-size: 15px;
    margin: 0 0 30px;
  }
  .single-column .content .body p {
    font-size: 15px;
    margin: 0 0 30px;
  }
  .single-column .content .body figure {
    padding: 20px 0 0;
    margin: 0 -20px 40px;
  }
  .single-column .content .body figure figcaption {
    padding: 0 20px;
  }
  .single-column .content .pagenavi span a {
    display: block;
  }
  .single-column .content .pagenavi span.prev {
    text-align: center;
    margin: 0 1% 0 0;
  }
  .single-column .content .pagenavi span.prev a {
    padding: 10px 30px 10px 40px;
  }
  .single-column .content .pagenavi span.prev a:before {
    left: 20px;
  }
  .single-column .content .pagenavi span.next {
    text-align: center;
    margin: 0 0 0 1%;
  }
  .single-column .content .pagenavi span.next a {
    padding: 10px 40px 10px 30px;
  }
  .single-column .content .pagenavi span.next a:before {
    right: 20px;
  }
  .single-column .content .related {
    padding: 60px 0 0;
  }
  .single-column .content .related ul li a {
    display: block;
    background: none;
  }
  .single-column .content .related ul li a figure {
    width: 100%;
    height: 215px;
    margin: 0 0 20px;
  }
  .single-column .content .related ul li a .related-text {
    width: auto;
    padding: 0;
  }
  .single-column .content .related ul li a .related-text h3 {
    font-size: 14px;
    padding: 0 20px 0 0;
    background: url(./assets/images/arrow-br.svg) no-repeat center right;
  }
}
.people-single {
  padding: 75px 0 81.5px;
  background-color: #e6e1dc;
}
.people-single-inner {
  width: 1025px;
  margin: 0 auto;
  display: flex;
  column-gap: 50px;
}
.people-single-left {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  box-sizing: content-box;
  overflow: hidden;
  border: 7px solid #fff;
}
.people-single-left img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.people-single-right {
  width: 768px;
}
.people-single-name {
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
.people-single-en-name {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 500;
}
.people-single-txt {
  padding-top: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
.people-single-txt + p {
  line-height: 2;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
.people-single-sns {
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding-top: 22px;
}
.people-single-sns .fb {
  width: 10.19px;
  height: 17.83px;
  background: url(assets/images/sns-icons/icon-facebook-gold.svg) no-repeat;
  background-size: contain;
}
.people-single-sns .tw {
  width: 19.41px;
  height: 15.95px;
  background: url(assets/images/sns-icons/icon-twitter-gold.svg) no-repeat;
  background-size: contain;
}
.people-single-sns .in {
  width: 18.76px;
  height: 18.76px;
  background: url(assets/images/sns-icons/icon-instagram-gold.svg) no-repeat;
  background-size: contain;
}
.people-single-sns .yt {
  width: 18.5px;
  height: 12.95px;
  background: url(assets/images/sns-icons/yt.svg) no-repeat;
  background-size: contain;
}
.people-single-sns .link {
  width: 15.8px;
  height: 18px;
  background: url(assets/images/sns-icons/link.svg) no-repeat;
  background-size: contain;
}
.people-single-sns a {
  display: block;
  width: 100%;
  height: 100%;
}

.relation-articles {
  padding: 52px 0;
}
.relation-articles .articles-content .content {
  display: none;
  animation: appear 0.2s ease;
}
.relation-articles .articles-content .content.active {
  display: block;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.relation-articles ul {
  display: flex;
  flex-wrap: wrap;
}
.relation-articles ul.alm-listing {
  display: block;
}
.relation-articles ul.alm-listing .alm-reveal {
  display: flex;
  flex-wrap: wrap;
}
.relation-articles ul.alm-listing .alm-reveal li {
  width: 349px;
}
.relation-articles ul.alm-listing .alm-reveal li figure {
  /*height:233px;*/
}
.relation-articles ul li {
  width: 349px;
  margin: 0 51px 60px 0;
}
.relation-articles ul li:nth-child(4n) {
  margin: 0;
}
.relation-articles ul li a {
  display: block;
}
.relation-articles ul li figure {
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
  aspect-ratio: 3/2;
}
.relation-articles ul li figure a {
  transition: 0.4s ease-in-out;
}
.relation-articles ul li figure a:hover {
  opacity: 0.8;
}
.relation-articles ul li figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
.relation-articles ul li .cat {
  margin: 0 0 20px;
}
.relation-articles ul li .cat span {
  color: #fff;
  font-size: 11px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  font-weight: 600;
}
.relation-articles ul li .cat.cat01 span {
  background-color: #1e986d;
}
.relation-articles ul li .cat.cat02 span {
  background-color: #397bbe;
}
.relation-articles ul li .cat.cat03 span {
  background-color: #cb883a;
}
.relation-articles ul li .cat.cat04 span {
  background-color: #e6e1dc;
}
.relation-articles ul li h3 {
  font-size: 16px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  font-weight: bold;
  margin: 0 0 18px;
  line-height: 1.75;
}
.relation-articles ul li h3 a {
  transition: 0.4s ease-in-out;
}
.relation-articles ul li h3 a:hover {
  text-decoration: none;
  opacity: 0.65;
}
.relation-articles ul li p {
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "游ゴシック";
  font-size: 12px;
  line-height: 1.8;
  color: #6c6c6c;
}
.relation-articles ul li .tags {
  padding: 24px 0 0;
  line-height: 2;
}
.relation-articles ul li .tags a {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 5px 8px 3px 9px;
  background: white;
  border-radius: 10px;
  color: #905c40;
  margin-right: 4px;
  transition: 0.4s ease-in-out;
}
.relation-articles ul li .tags a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #905c40;
}
.relation-articles .more {
  text-align: center;
}
.relation-articles .more button {
  display: inline-block;
  padding: 20px;
  width: 320px;
  background-color: #e6e1dc;
  color: #937a63;
  font-size: 13px;
  transition: 0.4s ease;
  border: none;
  cursor: pointer;
}
.relation-articles .more button:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1700px) {
  .people-single {
    padding: 4.36vw 0 4.74vw;
  }
  .people-single-inner {
    width: 59.59vw;
    column-gap: 2.91vw;
  }
  .people-single-left {
    width: 11.63vw;
    height: 11.63vw;
    border-radius: 50%;
  }
  .people-single-right {
    width: 44.65vw;
  }
  .people-single-en-name {
    padding-top: 0.58vw;
  }
  .people-single-txt {
    padding-top: 0.93vw;
  }
  .people-single-sns {
    column-gap: 0.87vw;
    padding-top: 1.28vw;
  }
  .people-single-sns .fb {
    width: 0.59vw;
    height: 1.04vw;
  }
  .people-single-sns .tw {
    width: 1.13vw;
    height: 0.93vw;
  }
  .people-single-sns .in {
    width: 1.09vw;
    height: 1.09vw;
  }
  .people-single-sns .yt {
    width: 1.09vw;
    height: 0.763vw;
  }
  .people-single-sns .link {
    width: 0.957vw;
    height: 1.09vw;
  }
  .people-single-sns a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .relation-articles {
    padding: 40px 50px 130px;
  }
  .relation-articles ul.alm-listing .alm-reveal li {
    width: 22%;
  }
  .relation-articles ul li {
    width: 22%;
    margin: 0 4% 60px 0;
  }
  .relation-articles ul li:nth-child(4n) {
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 1024px) {
  .people-single-sns {
    column-gap: 15px;
  }
  .people-single-sns .fb {
    width: 10.19px;
    height: 17.83px;
  }
  .people-single-sns .tw {
    width: 19.41px;
    height: 15.95px;
  }
  .people-single-sns .in {
    width: 18.76px;
    height: 18.76px;
  }
  .people-single-sns .yt {
    width: 18.5px;
    height: 12.95px;
  }
  .people-single-sns .link {
    width: 15.8px;
    height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .people-single {
    padding-left: 6.93vw;
    padding-right: 6.93vw;
    padding-bottom: 8.27vw;
  }
  .people-single-inner {
    display: block;
    width: 100%;
  }
  .people-single-left {
    width: 29.33vw;
    height: 29.33vw;
    margin: 2.13vw 6.4vw 0 0;
    float: left;
    border-width: 5px;
  }
  .people-single-right {
    width: auto;
  }
  .people-single-name {
    padding-top: 12vw;
    font-size: 16px;
  }
  .people-single-en-name {
    padding-top: 1.87vw;
    font-size: 12px;
  }
  .people-single-txt + p {
    padding-top: 4vw;
    font-size: 12px;
    clear: both;
  }
  .people-single-sns {
    padding-top: 5.33vw;
    column-gap: 25px;
  }
  .relation-articles {
    padding: 4vw 4vw 8vw;
  }
  .relation-articles ul {
    display: block;
  }
  .relation-articles ul.alm-listing .alm-reveal {
    display: block;
  }
  .relation-articles ul.alm-listing .alm-reveal li {
    width: auto;
    margin: 0 0 40px;
  }
  .relation-articles ul.alm-listing .alm-reveal li figure {
    height: 322px;
  }
  .relation-articles ul.alm-listing .alm-reveal li:nth-child(3),
  .relation-articles ul.alm-listing .alm-reveal li:nth-child(7) {
    margin: 0 0 40px;
  }
  .relation-articles ul.alm-listing .alm-reveal li:nth-child(4n) {
    margin: 0 0 40px;
  }
  .relation-articles ul li {
    width: auto;
    margin: 0 0 40px;
  }
  .relation-articles ul li figure {
    /*width:100%;
    height:322px;*/
    overflow: hidden;
    position: relative;
    margin: 0 0 3.47vw;
  }
  .relation-articles ul li .cat {
    margin: 0 12px 20px;
  }
  .relation-articles ul li .cat span {
    color: #fff;
    font-size: 11px;
    display: inline-block;
    line-height: 1;
    padding: 5px 12px;
    font-weight: 600;
  }
  .relation-articles ul li h3 {
    font-size: 15px;
    margin: 0 12px 14px;
  }
  .relation-articles ul li p {
    font-size: 12px;
    margin: 0 12px;
    line-height: 2;
  }
  .relation-articles ul li .tags {
    padding: 20px 12px 0;
    line-height: 1.7;
  }
  .relation-articles ul li .tags a {
    font-size: 10px;
  }
  .relation-articles ul li:nth-child(3) {
    margin: 0 0 40px;
  }
  .relation-articles ul li:nth-child(n + 4) {
    width: auto;
    margin: 0 0 40px;
  }
  .relation-articles ul li:nth-child(n + 4) figure {
    /*height:322px;*/
  }
  .relation-articles ul li:nth-child(4n + 3) {
    margin: 0 0 40px;
  }
  .relation-articles .more {
    display: none;
  }
}
/*----------------------------------
SHOP
----------------------------------*/
#page-header.shop-header {
  padding: 135px 0 108px;
}
#page-header.shop-header .lead {
  width: 801px;
  margin: 60px auto 0;
  line-height: 2;
}

#top-shop {
  padding: 0 0 80px;
}
#top-shop ul {
  display: flex;
  flex-wrap: wrap;
}
#top-shop ul li {
  width: 350px;
  margin: 0 53.33px 80px 0;
}
#top-shop ul li:nth-child(4n) {
  margin: 0 0 80px;
}
#top-shop ul li h3 {
  color: #905c40;
  font-size: 16px;
  margin: 0 0 40px;
}
#top-shop ul li .price {
  font-size: 12px;
  color: #6c6c6c;
  margin: 0 0 15px;
}
#top-shop ul li figure {
  width: 100%;
  height: 233px;
  overflow: hidden;
  aspect-ratio: 1/0.666;
  margin: 0 0 40px;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
#top-shop ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-shop ul li .btn {
  width: 100%;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #e6e1dc;
  position: relative;
  transition: 0.4s ease-in-out;
}
#top-shop ul li .btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  background: url(./assets/images/shop-btn-arrow.svg) no-repeat center/contain;
  width: 7px;
  height: 6px;
  margin: -3px 0 0;
  transition: 0.4s ease-in-out;
}
#top-shop ul li .btn span {
  font-size: 14px;
  color: #905c40;
  font-weight: 500;
  position: relative;
  transition: 0.4s ease-in-out;
}
#top-shop ul li a {
  display: block;
  border-top: solid #905c40 3px;
  padding: 25px 0 0;
  transition: 0.4s ease-in-out;
}
#top-shop ul li a:hover {
  opacity: 1;
  text-decoration: none;
}
#top-shop ul li a:hover figure {
  opacity: 0.8;
}
#top-shop ul li a:hover .btn {
  background-color: #905c40;
}
#top-shop ul li a:hover .btn:after {
  background: url(./assets/images/shop-btn-arrow_w.svg) no-repeat center/contain;
}
#top-shop ul li a:hover .btn span {
  color: #fff;
}

@media screen and (max-width: 1700px) {
  #page-header.shop-header {
    padding: 7.85vw 0 6.28vw;
  }
  #page-header.shop-header .lead {
    width: 46.57vw;
    margin: 3.49vw auto 0;
  }
  #top-shop {
    padding: 0 50px 80px;
  }
  #top-shop ul {
    /*display:flex;
    flex-wrap:wrap;*/
  }
  #top-shop ul li {
    width: 22%;
    margin: 0 4% 80px 0;
  }
  #top-shop ul li:nth-child(4n) {
    margin: 0 0 80px;
  }
  #top-shop ul li h3 {
    /*color:$color-all;
    font-size:$fsize-m;
    margin:0 0 40px;*/
  }
  #top-shop ul li .price {
    /*font-size:$fsize-xxs;
    color:$color06;
    margin:0 0 15px;*/
  }
  #top-shop ul li figure {
    height: auto;
    /*width:100%;
    height:233px;
    overflow:hidden;
    aspect-ratio:1 / 0.666;
    margin:0 0 40px;
    opacity:1;
    transition:$transition;*/
  }
  #top-shop ul li figure img {
    /*width:100%;
    height:100%;
    object-fit:cover;*/
  }
  #top-shop ul li .btn {
    /*width:100%;
    height:48px;
    line-height:48px;
    text-align:center;
    background-color:$bg02;
    position:relative;
    transition:$transition;*/
  }
  #top-shop ul li .btn:after {
    /*content:"";
    position:absolute;
    top:50%;
    right:15px;
    background:url(./assets/images/shop-btn-arrow.svg) no-repeat center /contain;
    width:7px;
    height:6px;
    margin:-3px 0 0;
    transition:$transition;*/
  }
  #top-shop ul li .btn span {
    /*font-size:$fsize-s;
    color:$color-all;
    font-weight:500;
    position:relative;
    transition:$transition;*/
  }
  #top-shop ul li a {
    /*display:block;
    border-top:solid $color-all 3px;
    padding:25px 0 0;
    transition:$transition;*/
  }
  #top-shop ul li a:hover {
    /*opacity:1;
    text-decoration:none;*/
  }
  #top-shop ul li a:hover figure {
    /*opacity:$op8;*/
  }
  #top-shop ul li a:hover .btn {
    /*background-color:$color-all;*/
  }
  #top-shop ul li a:hover .btn:after {
    /*background:url(./assets/images/shop-btn-arrow_w.svg) no-repeat center /contain;*/
  }
  #top-shop ul li a:hover .btn span {
    /*color:$white;*/
  }
}
@media screen and (max-width: 768px) {
  #page-header.shop-header {
    padding: 12vw 0 13.333vw;
  }
  #page-header.shop-header h2 {
    font-size: 5.067vw;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  }
  #page-header.shop-header .lead {
    width: 86.13vw;
    margin: 10.667vw auto 0;
    text-align: justify;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
    font-size: 4vw;
  }
  #top-shop {
    padding: 0;
    width: 86.13vw;
    margin: 0 auto;
  }
  #top-shop ul {
    display: block;
  }
  #top-shop ul li {
    width: auto;
    margin: 0 0 16vw 0;
  }
  #top-shop ul li:nth-child(4n) {
    margin: 0 0 16vw;
  }
  #top-shop ul li h3 {
    font-size: 4.267vw;
    margin: 0 0 10.667vw;
  }
  #top-shop ul li .price {
    font-size: 3.2vw;
    margin: 0 0 6.4vw;
  }
  #top-shop ul li figure {
    margin: 0 0 4vw;
  }
  #top-shop ul li .btn {
    height: 12.8vw;
    line-height: 12.8vw;
  }
  #top-shop ul li .btn:after {
    right: 4vw;
    width: 1.867vw;
    height: 1.6vw;
    margin: -0.8vw 0 0;
  }
  #top-shop ul li a {
    border-top: solid #905c40 0.8vw;
    padding: 6.667vw 0 0;
  }
}
/* WHITE PAPER DOWNLOAD */
.wp-content {
  margin-bottom: 120px;
}
.wp-content .inner {
  width: 90.7vw;
  max-width: 1560px;
  margin: 0 auto;
}
.wp-content .wp-flex > * {
  width: 48.21%;
}
.wp-content .wp-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 58px;
}
.wp-content .wp-flex .left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background: #e6e1dc;
  align-self: flex-start;
}
.wp-content .wp-flex .left img {
  width: 33.61%;
  height: auto;
  box-shadow: 0px 3px 15px -6px #000000;
}
.wp-content .wp-flex .right {
  padding: 3.45% 0;
  border-top: 3px solid #905c40;
}
.wp-content .wp-flex .right h3 {
  font-weight: 500;
  font-size: 28px;
  color: #905c40;
  margin-bottom: 40px;
}
.wp-content .wp-flex .right .text {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  width: 86.57%;
}
.wp-content .wp-flex .right .btn iframe {
  min-width: 320px;
  max-width: 651px;
  height: 48px;
  line-height: 72px;
  border: 0;
}
.wp-content .wp-flex .right .small-text {
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 37px;
}
.wp-content .wp-flex .right .small-text a {
  color: #905c40;
}
.wp-content .wp-flex .right small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.75;
}
.wp-content .wp-flex .right small:before {
  content: "※";
}
.wp-content .wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 54px;
}
.wp-content .wp-grid .grid-item {
  display: flex;
  justify-content: center;
  padding: 27px 0;
  background: #e6e1dc;
}
.wp-content .wp-grid .grid-item img {
  width: 65.33%;
  height: auto;
  box-shadow: 0px 3px 15px -6px #000000;
}

.wp-form {
  margin-bottom: 80px;
}
.wp-form .inner {
  padding: 63px 0 53px;
  background: url(assets/images/newsletter_bg.png) no-repeat center/cover;
}
.wp-form article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wp-form h3 {
  width: 266px;
  margin-bottom: 41.5px;
}
.wp-form p {
  margin-bottom: 43px;
  color: #fff;
  line-height: 2;
  text-align: center;
  font-weight: 600;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}

@media screen and (max-width: 768px) {
  .wp-download + footer {
    border-top: none;
  }
  .wp-download #page-header {
    padding: 13.33vw 0 9.33vw;
  }
  .wp-download #page-header h2 {
    font-size: 5.07vw;
  }
  .wp-content {
    margin-bottom: 8vw;
  }
  .wp-content .inner {
    width: 86.13vw;
  }
  .wp-content .wp-flex > * {
    width: auto;
  }
  .wp-content .wp-flex {
    flex-direction: column-reverse;
    margin-bottom: 4vw;
  }
  .wp-content .wp-flex .left {
    width: 92vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 6.13vw 0;
  }
  .wp-content .wp-flex .left img {
    width: 33.33%;
  }
  .wp-content .wp-flex .right {
    padding: 7.2vw 0;
  }
  .wp-content .wp-flex .right h3 {
    font-size: 4.27vw;
  }
  .wp-content .wp-flex .right .text {
    width: auto;
    font-size: 4vw;
  }
  .wp-content .wp-flex .right .btn iframe {
    width: 92vw !important;
    height: 27.73vw;
    position: relative;
    transform: translateX(-50%);
    left: 50%;
  }
  .wp-content .wp-flex .right .small-text {
    font-size: 3.2vw;
  }
  .wp-content .wp-flex .right small {
    font-size: 3.2vw;
  }
  .wp-content .wp-grid {
    display: flex;
    gap: initial;
    column-gap: 4vw;
    overflow-x: scroll;
    width: 92vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .wp-content .wp-grid .grid-item {
    flex-shrink: 0;
    padding: 7.2vw 0;
    width: 80%;
  }
  .wp-content .wp-grid .grid-item img {
    width: 56.88%;
  }
  .wp-form {
    margin-bottom: 0;
  }
  .wp-form .inner {
    padding: 14.67vw 0 4vw;
  }
  .wp-form br .pc {
    display: none;
  }
  .wp-form h3 {
    width: 49.07vw;
  }
  .wp-form p {
    width: 86.13vw;
    margin-bottom: 16vw;
    font-size: 4.27vw;
    text-align: initial;
  }
  .wp-form .btn-primary a {
    width: 92vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #e6e1dc;
    color: #905c40;
  }
  .wp-form .btn-primary a:after {
    background: url(./assets/images/shop-btn-arrow.svg) no-repeat center/contain;
  }
}
/* SUPPORTERS */
@media screen and (max-width: 1100px) {
  .supporters br.pc-only {
    display: none;
  }
}
.supporters br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .supporters br.sp {
    display: inline;
  }
}
.supporters #page-header {
  padding-bottom: 69px;
}
@media screen and (max-width: 768px) {
  .supporters #page-header {
    padding-bottom: 12vw;
  }
}
.supporters #page-header p {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
@media screen and (max-width: 1100px) {
  .supporters #page-header p {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .supporters #page-header p {
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
    font-size: 4vw;
    letter-spacing: -0.02em;
    padding-top: 28px;
  }
}

.supporters-content .text-link {
  border-bottom: 1px solid #905c40;
  color: #905c40;
  transition: 0.5s;
  text-decoration: none;
}
.supporters-content .text-link:hover {
  text-decoration: none;
  opacity: 0.5;
  text-decoration: none;
}
.supporters-content .inner {
  width: 90.64vw;
  padding: 42px 0 27px;
}
@media screen and (max-width: 768px) {
  .supporters-content .inner {
    width: 86.13vw;
  }
  .membership .supporters-content .inner {
    padding-top: 0;
  }
}
.supporters-content .benefit,
.supporters-content .method,
.supporters-content .lists,
.supporters-content .precautions {
  position: relative;
  padding-bottom: 89px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit,
  .supporters-content .method,
  .supporters-content .lists,
  .supporters-content .precautions {
    padding-bottom: 11.47vw;
  }
}
.supporters-content .benefit h3,
.supporters-content .method h3,
.supporters-content .lists h3,
.supporters-content .precautions h3 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  font-weight: bold;
  color: #905c40;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit h3,
  .supporters-content .method h3,
  .supporters-content .lists h3,
  .supporters-content .precautions h3 {
    font-size: 4.27vw;
    position: initial;
    margin-bottom: 11.47vw;
  }
}
.supporters-content .benefit p,
.supporters-content .method p,
.supporters-content .lists p,
.supporters-content .precautions p {
  width: 43.84vw;
  margin: 0 auto 60px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit p,
  .supporters-content .method p,
  .supporters-content .lists p,
  .supporters-content .precautions p {
    width: auto;
    margin-bottom: 14.67vw;
    font-size: 4vw;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
    letter-spacing: -0.02em;
  }
}
.supporters-content .benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #905c40;
  padding-top: 43px;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit {
    padding-top: 4.53vw;
  }
}
.supporters-content .benefit h3 {
  top: 43px;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit h3 {
    top: 4.53vw;
  }
}
.supporters-content .benefit .benefit-row {
  width: 59.36vw;
  margin: 2.67vw auto 3.26vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1280px) {
  .supporters-content .benefit .benefit-row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .benefit-row {
    width: initial;
    flex-direction: column;
    margin-bottom: 10.67vw;
  }
}
.supporters-content .benefit .benefit-row li {
  width: 13.37vw;
}
@media screen and (max-width: 1280px) {
  .supporters-content .benefit .benefit-row li {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .benefit-row li {
    width: initial;
  }
}
.supporters-content .benefit .benefit-row li img {
  margin-bottom: 2.15vw;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .benefit-row li img {
    margin-bottom: 9.87vw;
  }
}
.supporters-content .benefit .benefit-row li a {
  padding: 0.76vw 0.58vw;
  display: block;
  width: 100%;
  color: #fff;
  background: #905c40;
  border-radius: 1.57vw;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  transition: 0.5s;
  pointer-events: none;
  cursor: default;
}
.supporters-content .benefit .benefit-row li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
@media screen and (max-width: 1500px) {
  .supporters-content .benefit .benefit-row li a {
    border-radius: 27px;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .benefit-row li a {
    font-size: 4vw;
    padding: 2.93vw;
    border-radius: 7.2vw;
  }
}
.supporters-content .benefit .benefit-row li a br {
  display: none;
}
@media screen and (max-width: 1500px) {
  .supporters-content .benefit .benefit-row li a br {
    display: inline;
  }
}
@media screen and (max-width: 1280px) {
  .supporters-content .benefit .benefit-row li a br {
    display: none;
  }
}
.supporters-content .benefit .scroll-x {
  overflow: hidden;
  overflow-x: scroll;
}
@media screen and (min-width: 769px) {
  .supporters-content .benefit .scroll-x::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .scroll-x:after {
    content: "scroll →";
    display: block;
    text-align: right;
  }
}
.supporters-content .benefit table {
  width: 78.78vw;
  max-width: 1355px;
  margin: auto;
  border-collapse: collapse;
  border-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit table {
    width: 266.67vw;
    /*375px => 1000px相当*/
  }
}
.supporters-content .benefit table th {
  color: white;
  font-size: 15px;
  font-weight: bold;
  background: #aa9481;
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid #aa9481;
  border-left: 1px solid #c6c6c6;
}
.supporters-content .benefit table th.innactive {
  color: #c8b9ad;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit table th {
    font-size: 4vw;
  }
}
.supporters-content .benefit table td {
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 10px;
  background: #fff;
  border-bottom: 1px solid #c6c6c6;
  border-left: 1px solid #c6c6c6;
}
.supporters-content .benefit table td.bg-primary {
  background: #e6e1dc;
  font-weight: bold;
}
.supporters-content .benefit table td.bg-secondary {
  background: #cbc0b3;
  border-bottom-color: #aa9481;
}
.supporters-content .benefit table td.text-center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit table td {
    font-size: 4vw;
  }
}
.supporters-content .benefit .announce {
  width: 43.83vw;
  padding: 26px 32px;
  margin: 45px auto 0;
  color: #905c40;
  background: #fff;
  border: 1px solid #905c40;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .announce {
    width: 92vw;
    padding: 4.3vw 5.33vw;
    font-size: 4vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.supporters-content .method {
  border-top: 1px solid #905c40;
  padding-top: 43px;
}
@media screen and (max-width: 768px) {
  .supporters-content .method {
    padding-top: 4.53vw;
  }
}
.supporters-content .method h3 {
  top: 43px;
}
@media screen and (max-width: 768px) {
  .supporters-content .method h3 {
    top: 4.53vw;
  }
}
.supporters-content .method .btn-wrap {
  width: 43.84vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1721px) {
  .supporters-content .method .btn-wrap {
    justify-content: space-around;
  }
}
@media screen and (max-width: 1100px) {
  .supporters-content .method .btn-wrap {
    flex-direction: column;
    row-gap: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .method .btn-wrap {
    width: 92vw;
    flex-direction: column;
    row-gap: 2.13vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.supporters-content .method .btn-primary a,
.supporters-content .method .btn-secondary a {
  width: 349px;
}
@media screen and (max-width: 1720px) {
  .supporters-content .method .btn-primary a,
  .supporters-content .method .btn-secondary a {
    width: 20.29vw;
  }
}
@media screen and (max-width: 1100px) {
  .supporters-content .method .btn-primary a,
  .supporters-content .method .btn-secondary a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .method .btn-primary a,
  .supporters-content .method .btn-secondary a {
    width: 100%;
  }
}
.supporters-content .lists h3 {
  position: initial;
  margin-bottom: 60px;
  font-size: 16px;
  font-weight: bold;
  color: #36322b;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .supporters-content .lists h3 {
    margin-bottom: 11.47vw;
    font-size: 4.27vw;
    text-align: initial;
  }
}
.supporters-content .lists ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1.74vw;
}
@media screen and (max-width: 768px) {
  .supporters-content .lists ul {
    grid-template-columns: 1fr 1fr;
    gap: 1.87vw;
  }
}
.supporters-content .lists ul li a {
  transition: 0.5s;
}
.supporters-content .lists ul li a:hover {
  opacity: 0.5;
}
.supporters-content .precautions .content {
  width: 43.84vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .supporters-content .precautions .content {
    width: auto;
  }
}
.supporters-content .precautions p {
  margin-bottom: 45px;
  text-align: justify;
  word-break: break-all;
}
.supporters-content .precautions p.text-bold {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #905c40;
}
.supporters-content .precautions ol {
  counter-reset: li;
  text-align: justify;
}
.supporters-content .precautions ol li {
  list-style: none;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .supporters-content .precautions ol li {
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
    font-size: 4vw;
    letter-spacing: -0.02em;
  }
}
.supporters-content .precautions ol li:before {
  counter-increment: li;
  content: counter(li) ") ";
}

/* サポーター会員規約 */
.membership .precautions {
  border-top: 1px solid #905c40;
  padding-top: 40px;
}
.membership .precautions h3 {
  top: 40px;
}

/* よくある質問 */
@media screen and (max-width: 1100px) {
  .faq br.pc {
    display: none;
  }
}
.faq br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .faq br.sp {
    display: inline;
  }
}
.faq .faq-content {
  margin-bottom: 136px;
}
@media screen and (max-width: 768px) {
  .faq .faq-content {
    margin-bottom: 18.67vw;
  }
}
.faq .faq-content .inner {
  width: 90.64vw;
}
@media screen and (max-width: 768px) {
  .faq .faq-content .inner {
    width: 86.13vw;
  }
}
.faq .faq-content .text-link {
  color: #905c40;
  border-bottom: 1px solid #905c40;
  transition: 0.5s;
}
.faq .faq-content .text-link:hover {
  text-decoration: none;
  opacity: 0.5;
}
.faq dl {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  margin-bottom: 41px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .faq dl {
    font-size: 3.73vw;
  }
}
.faq dl dt {
  border-top: 1px solid #e6e1dc;
  padding: 42px 30px 0;
  font-weight: bold;
  color: #905c40;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .faq dl dt {
    padding: 5.6vw 0 0;
    margin-bottom: 4.27vw;
  }
}
.faq dl dt p {
  text-indent: -1.9em;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .faq dl dt p {
    text-indent: -1.6em;
    margin-left: 1.9em;
  }
}
.faq dl dd {
  padding: 0 30px 51px;
}
@media screen and (max-width: 768px) {
  .faq dl dd {
    padding: 0 0 5.6vw;
  }
}
.faq dl dd p {
  text-indent: -1.9em;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .faq dl dd p {
    text-indent: -1.6em;
    margin-left: 1.9em;
  }
}
.faq dl dd:last-child {
  border-bottom: 1px solid #e6e1dc;
}
.faq .other {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 2;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .faq .other {
    font-size: 3.73vw;
    padding: 0;
  }
}

/* PROJECTS */
.project-single {
  padding-bottom: 108px;
}
@media screen and (max-width: 768px) {
  .project-single {
    padding-bottom: 12.53vw;
  }
}

.project-single-inner {
  width: 90.7vw;
  max-width: 1560px;
  margin: 45px auto 0;
}
@media screen and (max-width: 768px) {
  .project-single-inner {
    width: 86.13vw;
  }
}
.project-single-inner h2 {
  font-size: 38px;
  font-weight: normal;
  line-height: 1.42;
}
@media screen and (max-width: 768px) {
  .project-single-inner h2 {
    font-size: 5.6vw;
  }
}

.project-single__head-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 63px;
}
@media screen and (max-width: 768px) {
  .project-single__head-flex {
    margin-bottom: 6.93vw;
  }
}

.project-single__head-text {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .project-single__head-text {
    font-size: 3.47vw;
  }
}
.project-single__head-text span {
  display: inline-block;
  margin-left: 40px;
  margin-top: -6px;
  font-size: 105px;
  vertical-align: text-top;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .project-single__head-text span {
    display: block;
    margin-left: 0;
    margin-top: 0;
    font-size: 10.67vw;
  }
}

.project-single-image {
  width: 100vw;
  max-width: 1720px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 2/1;
  object-fit: cover;
}

.project-single__movie-wrap {
  width: 100vw;
  max-width: 1720px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
}
.project-single__movie-wrap video {
  display: block;
  margin: auto;
  width: 68.2% !important;
}
@media screen and (max-width: 768px) {
  .project-single__movie-wrap video {
    width: 100% !important;
    aspect-ratio: 2/1;
    object-fit: cover;
  }
}

.project-single__aria {
  position: relative;
  margin-top: 73px;
}
@media screen and (max-width: 768px) {
  .project-single__aria {
    margin-top: 11.07vw;
  }
}
.project-single__aria h3 {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 26px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .project-single__aria h3 {
    position: initial;
    font-size: 4.8vw;
    margin-bottom: 6.93vw;
  }
}
.project-single__aria p {
  font-size: 18px;
  line-height: 2;
  width: 51.92vw;
  max-width: 893px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .project-single__aria p {
    width: auto;
    font-size: 4vw;
  }
}

.aria-approach__tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 27.5px;
  row-gap: 10px;
  width: 51.92vw;
  max-width: 893px;
  margin: 0 auto 16.5px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .aria-approach__tags {
    width: auto;
    column-gap: 7.6vw;
    row-gap: 3.07vw;
    font-size: 3.73vw;
  }
}
.aria-approach__tags li:before {
  content: "#";
}
.aria-approach__tags a {
  text-decoration: none;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .aria-approach__tags a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
}
.aria-approach__tags a:before {
  content: "# ";
}

.project-articles {
  border-top: 1px solid #9e593a;
}
@media screen and (max-width: 768px) {
  .project-articles {
    width: 86.13vw;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles {
    padding: 6.4vw 0 0;
  }
}
.project-articles .relation-articles h2 {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #9e593a;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles h2 {
    font-size: 4.8vw;
    margin-bottom: 7.47vw;
  }
}
.project-articles .relation-articles ul {
  display: initial;
}
.project-articles .relation-articles ul li {
  width: min(349px, 20.29vw) !important;
  margin-right: 2.97vw;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li {
    width: auto !important;
    margin-right: 0;
  }
}
.project-articles .relation-articles ul li:nth-child(4n) {
  margin: 0 51px 60px 0;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li:nth-child(4n) {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li figure {
    margin-bottom: 4.8vw;
    width: 92vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.project-articles .relation-articles ul li date {
  display: block;
  margin-bottom: 20px;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li date {
    margin-bottom: 2.4vw;
    font-size: 3.73vw;
  }
}
.project-articles .relation-articles ul li h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li h3 {
    font-size: 4.27vw;
    margin: 0;
  }
}
.project-articles .relation-articles .js-article-slider .slick-prev {
  background: url(./assets/images/slider-prev.svg) no-repeat center/contain;
  width: 62px;
  height: 62px;
  z-index: 10;
}
.project-articles .relation-articles .js-article-slider .slick-prev:before {
  content: none;
}
.project-articles .relation-articles .js-article-slider .slick-prev.slick-disabled {
  display: none !important;
}
.project-articles .relation-articles .js-article-slider .slick-next {
  background: url(./assets/images/slider-next.svg) no-repeat center/contain;
  width: 62px;
  height: 62px;
}
.project-articles .relation-articles .js-article-slider .slick-next:before {
  content: none;
}

.project-head__inner {
  width: 94.19vw;
  max-width: 1620px;
  margin: 94px auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .project-head__inner {
    margin: 3.73vw auto 9.07vw;
    width: 86.13vw;
    flex-direction: column;
  }
}
.project-head h2 {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .project-head h2 {
    font-size: 8.53vw;
    margin-bottom: 9.87vw;
  }
}
.project-head p {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 2;
  margin-left: min(21.34vw, 367px);
}
@media screen and (max-width: 768px) {
  .project-head p {
    font-size: 4vw;
    width: auto;
    margin-left: 0;
  }
}

.project-body__inner {
  width: 94.19vw;
  max-width: 1620px;
  margin: 40px auto 30px;
}

.project__lists {
  width: 96.51vw;
  max-width: 1660px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .project__lists {
    width: 93.6vw;
  }
}
.project__list {
  margin-bottom: 30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .project__list {
    margin-bottom: 3.33vw;
  }
}
.project__list a {
  display: block;
  position: relative;
}
@media (any-hover: hover) {
  .project__list a:hover img {
    transform: scale(105%);
  }
  .project__list a:hover video {
    transform: scale(105%);
  }
}
.project__list img,
.project__list video {
  vertical-align: bottom;
  transition: 0.5s;
  filter: brightness(70%);
  aspect-ratio: 2/1;
  object-fit: cover;
}
.project__text-top {
  position: absolute;
  inset: 20px auto auto 27px;
  color: #fff;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .project__text-top {
    font-size: 3.47vw;
    inset: 3.6vw auto auto 2.93vw;
  }
}
.project__text-top2 {
  position: absolute;
  inset: 8px auto auto 223px;
  color: #fff;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 105px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .project__text-top2 {
    font-size: 10.67vw;
    inset: 10.93vw auto auto 2.93vw;
  }
}
.project__text-center {
  position: absolute;
  inset: 50% auto auto 27px;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .project__text-center {
    font-size: 4.27vw;
    inset: auto auto 4vw 2.93vw;
    transform: none;
  }
}
.project__text-bottom {
  position: absolute;
  inset: auto auto 28px 27px;
  color: #fff;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 27px;
  line-height: 1;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .project__text-bottom {
    font-size: 3.47vw;
    inset: auto 2.93vw 4vw auto;
  }
}
@media (any-hover: hover) {
  .project__text-bottom:hover {
    opacity: 0.5;
  }
}

/* #mainvisual {
  width: 100%;
  height: calc(100vh - 70px);
  min-height: calc(var(--vh, 1vh) * 100 - 70px);
  position: relative;
  overflow: hidden;
}
#mainvisual .copy {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#mainvisual .copy h2 {
  padding: 0 0 90px;
}
#mainvisual .copy h2 img {
  height: 155px;
}
#mainvisual .slider {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#mainvisual .slider:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50vh;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(200, 200, 200, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  bottom: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}
#mainvisual .slider .slick-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
#mainvisual .slider .slick-slider .slick-list {
  height: 100%;
}
#mainvisual .slider .slick-slider .slick-list .slick-track {
  height: 100%;
}
#mainvisual .slick-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#mainvisual .slick-slide img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#mainvisual .menu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
#mainvisual .menu ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  position: relative;
}
#mainvisual .menu ul:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 1px;
  background-color: #13C666;
}
#mainvisual .menu ul li {
  width: 33.33%;
  padding: 0 0 40px;
  position: relative;
}
#mainvisual .menu ul li:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 10px;
  width: 1px;
  background-color: #fff;
}
#mainvisual .menu ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #13C666;
}
#mainvisual .menu ul li a {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
#mainvisual .menu ul li a span {
  display: inline-block;
  padding: 0 40px 0 0;
  background: url(./assets/images/mv-arrow.png) no-repeat right center/23px auto;
}
#mainvisual .menu ul li.active:after {
  width: 100%;
  transition: 6s linear;
}
#mainvisual .menu ul li.done:after {
  width: 100%;
  transition: none;
}
#mainvisual .menu ul li.done:before {
  background-color: #13C666;
}
#mainvisual .banner {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 4;
  width: 390px;
  height: 100px;
}
#mainvisual .banner a {
  display: block;
  transition: 0.4s ease-in-out;
}
#mainvisual .banner a:hover {
  opacity: 0.8;
} */

#index-pickup {
  padding: 40px 0;
  background-color: #e6e1dc;
}
#index-pickup h2 {
  text-align: center;
  font-size: 21px;
  margin: 0 0 40px;
}
#index-pickup ul {
  display: flex;
}
#index-pickup ul li {
  width: 360px;
  margin: 0 40px 0 0;
}
#index-pickup ul li:last-child {
  margin: 0;
}
#index-pickup ul li a {
  display: block;
  position: relative;
  transition: 0.4s ease-in-out;
}
#index-pickup ul li a:hover {
  opacity: 0.8;
}
#index-pickup ul li a figure {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
#index-pickup ul li a figure:after {
  content: "";
  background: url(./assets/images/arrow-wh.svg) no-repeat center right/contain;
  position: absolute;
  top: 50%;
  right: 30px;
  margin: -3px 0 0;
  width: 7px;
  height: 6px;
}
#index-pickup ul li a figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#index-pickup ul li a h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 20px;
  color: #fff;
  font-size: 17px;
}
#index-pickup ul li a p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 15px 90px 15px 20px;
  color: #fff;
  font-size: 16px;
}
#index-pickup ul li a p::before {
  content: "# ";
}
#index-pickup ul li a span {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

#index-about {
  text-align: center;
  padding: 130px 0;
  margin: 0;
}
#index-about h2 {
  margin: 0 0 50px;
}
#index-about h2 img {
  height: 93px;
}
#index-about p {
  font-size: 16px;
  line-height: 2.4;
  margin: 0 0 40px;
}
#index-about .btn {
  padding: 20px 0 0;
}

#index-news {
  padding-bottom: 130px;
}
#index-news ul {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
  border-top: solid #e6e1dc 1px;
}
#index-news ul li {
  border-bottom: solid #e6e1dc 1px;
}
#index-news ul li a {
  padding: 20px 0;
  font-size: 14px;
  display: flex;
  background: url(./assets/images/arrow-br.svg) no-repeat center right 12px;
  transition: 0.4s ease-in-out;
}
#index-news ul li a span {
  transition: 0.4s ease-in-out;
}
#index-news ul li a span.date {
  width: 15%;
  font-size: 12px;
  padding: 2px 0 0;
}
#index-news ul li a span.tit {
  width: 85%;
}
#index-news ul li a:hover {
  background: url(./assets/images/arrow-br.svg) no-repeat center right;
  text-decoration: none;
}
#index-news ul li a:hover span {
  opacity: 0.65;
}
#index-news .more {
  text-align: right;
  padding: 40px 0 0;
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}
#index-news .more a {
  display: inline-block;
  font-size: 12px;
  color: #937a63;
  border-bottom: solid #937a63 1px;
  padding: 0 0 3px;
  transition: opacity 0.4s ease-in-out;
}
#index-news .more a:hover {
  text-decoration: none;
  opacity: 0.65;
  border-bottom: none;
}

#index-articles {
  padding: 130px 0;
}
#index-articles.page {
  padding: 0 0 130px;
}
#index-articles h2 {
  font-size: 40px;
  margin: 0 0 60px;
  text-align: center;
}
#index-articles .articles-tabs ul {
  display: flex;
  justify-content: center;
  border-bottom: solid #905c40 1px;
}
#index-articles .articles-tabs ul li {
  margin: 0 1px 0 0;
}
#index-articles .articles-tabs ul li span {
  display: block;
  padding: 0 20px 20px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
#index-articles .articles-tabs ul li span:after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s ease-in-out;
}
#index-articles .articles-tabs ul li:hover span {
  opacity: 0.65;
}
#index-articles .articles-tabs ul li.all {
  color: #905c40;
}
#index-articles .articles-tabs ul li.all span:after {
  background-color: #905c40;
}
#index-articles .articles-tabs ul li.cat {
  color: #b4a698;
}
#index-articles .articles-tabs ul li.cat span:after {
  background-color: #b4a698;
}
#index-articles .articles-tabs ul li.cat:hover {
  color: #937a63;
}
#index-articles .articles-tabs ul li.cat:hover:after {
  background-color: #937a63;
}
#index-articles .articles-tabs ul li.cat:hover span {
  opacity: 1;
}
#index-articles .articles-tabs ul li.cat:hover span:after {
  background-color: #937a63;
}
#index-articles .articles-tabs ul li.cat01 span {
  color: #1e986d;
}
#index-articles .articles-tabs ul li.cat01 span:after {
  background-color: #1e986d;
}
#index-articles .articles-tabs ul li.cat02 span {
  color: #397bbe;
}
#index-articles .articles-tabs ul li.cat02 span:after {
  background-color: #397bbe;
}
#index-articles .articles-tabs ul li.cat03 span {
  color: #cb883a;
}
#index-articles .articles-tabs ul li.cat03 span:after {
  background-color: #cb883a;
}
#index-articles .articles-tabs ul li.cat04 span {
  color: #8fa720;
}
#index-articles .articles-tabs ul li.cat04 span:after {
  background-color: #8fa720;
}
#index-articles .articles-tabs ul li.active span:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 4px;
  margin: 0 0 0 -2px;
}
#index-articles .articles-tabs ul li.active.all span:before {
  background-image: url(./assets/images/up-arrow01.svg);
}
#index-articles .articles-tabs ul li.active.cat {
  color: #937a63;
}
#index-articles .articles-tabs ul li.active.cat span:before {
  background-image: url(./assets/images/up-arrow05.svg);
}
#index-articles .articles-tabs ul li.active.cat span:after {
  background-color: #937a63;
}
#index-articles .articles-tabs ul li.active.cat01 span:before {
  background-image: url(./assets/images/up-arrow02.svg);
}
#index-articles .articles-tabs ul li.active.cat02 span:before {
  background-image: url(./assets/images/up-arrow03.svg);
}
#index-articles .articles-tabs ul li.active.cat03 span:before {
  background-image: url(./assets/images/up-arrow04.svg);
}
#index-articles .articles-tabs ul li.active.cat04 span:before {
  background-image: url(./assets/images/up-arrow06.svg);
}
#index-articles .articles-tags {
  padding: 40px 0;
  margin-bottom: 53px;
  border-bottom: 1px solid #e5e1dc;
}
#index-articles .articles-tags .row {
  display: flex;
  justify-content: space-between;
}
#index-articles .articles-tags .row h3 {
  text-align: left;
  font-size: 21px;
  color: #905c40;
}
#index-articles .articles-tags .row ul {
  padding: 0 20px;
}
#index-articles .articles-tags .row ul li {
  display: inline-block;
  margin: 0 3px 12px;
  line-height: 2;
}
#index-articles .articles-tags .row ul li a {
  display: inline-block;
  color: #905c40;
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  font-size: 14px;
  background: white;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
}
#index-articles .articles-tags .row ul li a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #905c40;
}
#index-articles .articles-tags .row ul li.active a {
  text-decoration: none;
  color: #fff;
  background-color: #aa9482;
}
#index-articles .articles-tags .row .more {
  min-width: 60px;
}
#index-articles .articles-tags .row .more a {
  display: inline-block;
  color: #905c40;
  font-size: 12px;
  padding: 0 12px 0 0;
  background: url(./assets/images/down-arrow01.svg) no-repeat right center;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}
#index-articles .articles-tags .row .more a:hover {
  opacity: 0.65;
}
#index-articles .articles-tags .row .tags_sp {
  display: none;
}
#index-articles .articles-content .content {
  display: none;
  animation: appear 0.2s ease;
}
#index-articles .articles-content .content.active {
  display: block;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#index-articles .articles-content .content ul {
  display: flex;
  flex-wrap: wrap;
}
#index-articles .articles-content .content ul.alm-listing {
  /*   display: block; */
}
#index-articles .articles-content .content ul.alm-listing {
  display: flex;
  flex-wrap: wrap;
}
#index-articles .articles-content .content ul.alm-listing li {
  width: 349px;
}
@media screen and (max-width: 1700px) {
  #index-articles .articles-content .content ul.alm-listing li {
    width: 22%;
    margin: 0 4% 60px 0;
  }
}
#index-articles .articles-content .content ul.alm-listing li figure {
  /*height:233px;*/
}
#index-articles .articles-content .content ul.alm-listing li:nth-child(3),
#index-articles .articles-content .content ul.alm-listing li:nth-child(7) {
  margin: 0 51px 60px 0;
}
#index-articles .articles-content .content ul.alm-listing li:nth-child(4n + 3) {
  margin: 0 51px 60px 0 !important;
}
@media screen and (max-width: 1373px) {
  #index-articles .articles-content .content ul.alm-listing li:nth-child(4n + 3) {
    width: 22%;
    margin: 0 4% 60px 0 !important;
  }
}
@media screen and (max-width: 768px) {
  #index-articles .articles-content .content ul.alm-listing li:nth-child(4n + 3) {
    width: 22%;
    margin: 0 0 40px !important;
  }
}
#index-articles .articles-content .content ul.alm-listing li:nth-child(4n + 4) {
  margin: 0 0 80px !important;
}
@media screen and (max-width: 768px) {
  #index-articles .articles-content .content ul.alm-listing li {
    width: auto;
  }
  #index-articles .articles-content .content ul.alm-listing li:nth-child(4n + 3) {
    width: auto;
  }
  #index-articles .articles-content .content ul.alm-listing li:nth-child(4n + 4) {
    margin: 0 0 40px !important;
  }
}
#index-articles .articles-content .content ul li {
  width: 486px;
  margin: 0 51px 60px 0;
}
#index-articles .articles-content .content ul li a {
  display: block;
}
#index-articles .articles-content .content ul li figure {
  /*width:100%;
  height:322px;*/
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
  aspect-ratio: 3/2;
}
#index-articles .articles-content .content ul li figure a {
  transition: 0.4s ease-in-out;
}
#index-articles .articles-content .content ul li figure a:hover {
  opacity: 0.8;
}
#index-articles .articles-content .content ul li figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#index-articles .articles-content .content ul li .cat {
  margin: 0 0 20px;
}
#index-articles .articles-content .content ul li .cat span {
  color: #fff;
  font-size: 11px;
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  font-weight: 600;
}
#index-articles .articles-content .content ul li .cat.cat01 span {
  background-color: #1e986d;
}
#index-articles .articles-content .content ul li .cat.cat02 span {
  background-color: #397bbe;
}
#index-articles .articles-content .content ul li .cat.cat03 span {
  background-color: #cb883a;
}
#index-articles .articles-content .content ul li .cat.cat04 span {
  background-color: #8fa720;
}
#index-articles .articles-content .content ul li h3 {
  font-size: 16px;
  margin: 0 0 18px;
  line-height: 1.75;
}
#index-articles .articles-content .content ul li h3 a {
  transition: 0.4s ease-in-out;
}
#index-articles .articles-content .content ul li h3 a:hover {
  text-decoration: none;
  opacity: 0.65;
}
#index-articles .articles-content .content ul li p {
  font-size: 12px;
  line-height: 1.8;
}
#index-articles .articles-content .content ul li .tags {
  padding: 24px 0 0;
  line-height: 2;
}
#index-articles .articles-content .content ul li .tags a {
  display: inline-block;
  color: #aa9482;
  font-size: 10px;
  line-height: 1;
  padding: 5px 8px 3px 9px;
  background: white;
  border-radius: 10px;
  color: #905c40;
  margin-right: 4px;
  transition: 0.4s ease-in-out;
}
#index-articles .articles-content .content ul li .tags a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #905c40;
}
#index-articles .articles-content .content ul li:nth-child(3) {
  margin: 0 0 80px;
}
#index-articles .articles-content .content ul li:nth-child(n + 4) {
  width: 349px;
}
#index-articles .articles-content .content ul li:nth-child(n + 4) figure {
  /*height:233px;*/
}
#index-articles .articles-content .content ul li:nth-child(4n + 3) {
  margin: 0 0 80px;
}
#index-articles .articles-content .content .more {
  padding: 40px 0 0;
  text-align: center;
}
#index-articles .articles-content .content .more a {
  display: inline-block;
  padding: 20px;
  width: 320px;
  background-color: #e6e1dc;
  color: #937a63;
  font-size: 13px;
  transition: 0.4s ease-in-out;
}
#index-articles .articles-content .content .more a:hover {
  opacity: 0.7;
  text-decoration: none;
}
#index-articles .articles-content .content .alm-btn-wrap {
  text-align: center;
}
#index-articles .articles-content .content .alm-btn-wrap .infinite-more {
  display: inline-block;
  padding: 20px;
  width: 320px;
  background-color: #e6e1dc;
  color: #937a63;
  font-size: 13px;
  transition: 0.4s ease;
  border: none;
}
#index-articles .articles-content .content .alm-btn-wrap .infinite-more:hover {
  opacity: 0.7;
}
#index-articles .articles-content .content .alm-btn-wrap .infinite-more.done {
  display: none;
}
#index-articles .news-content {
  margin: 0 0 100px;
}
#index-articles .news-content .content {
  display: none;
  animation: appear 0.2s ease;
}
#index-articles .news-content .content.active {
  display: block;
}
#index-articles .news-content .content ul li {
  border-bottom: solid #e6e1dc 1px;
}
#index-articles .news-content .content ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: url(./assets/images/arrow-br.svg) no-repeat center right 12px;
  transition: 0.4s ease-in-out;
}
#index-articles .news-content .content ul li a:hover {
  background: url(./assets/images/arrow-br.svg) no-repeat center right;
  opacity: 0.65;
  text-decoration: none;
}
#index-articles .news-content .content ul li figure {
  width: 183px;
  height: 122px;
  overflow: hidden;
  position: relative;
}
#index-articles .news-content .content ul li figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#index-articles .news-content .content ul li .date {
  width: 20%;
  padding: 0 40px;
  text-align: center;
  font-size: 11px;
}
#index-articles .news-content .content ul li .cat {
  width: 20%;
  padding: 0 40px;
  text-align: center;
  font-size: 11px;
  color: #937a63;
}
#index-articles .news-content .content ul li .cat_sp {
  display: none;
}
#index-articles .news-content .content ul li h3 {
  width: 50%;
  font-size: 15px;
  text-align: left;
  font-weight: 500;
  line-height: 2;
}

#index-people {
  padding: 130px 0;
}
#index-people.page {
  padding: 0 0 130px;
}
#index-people h2 {
  font-size: 40px;
  margin: 0 0 60px;
  text-align: center;
}
#index-people .people-tabs ul {
  display: flex;
  justify-content: center;
  border-bottom: solid #905c40 1px;
}
#index-people .people-tabs ul li {
  margin: 0 1px 0 0;
}
#index-people .people-tabs ul li span {
  display: block;
  padding: 0 20px 20px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
#index-people .people-tabs ul li span:after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s ease-in-out;
}
#index-people .people-tabs ul li:hover span {
  opacity: 0.65;
}
#index-people .people-tabs ul li.all {
  color: #905c40;
}
#index-people .people-tabs ul li.all span:after {
  background-color: #905c40;
}
#index-people .people-tabs ul li.cat {
  color: #b4a698;
}
#index-people .people-tabs ul li.cat span:after {
  background-color: #b4a698;
}
#index-people .people-tabs ul li.cat:hover {
  color: #937a63;
}
#index-people .people-tabs ul li.cat:hover:after {
  background-color: #937a63;
}
#index-people .people-tabs ul li.cat:hover span {
  opacity: 1;
}
#index-people .people-tabs ul li.cat:hover span:after {
  background-color: #937a63;
}
#index-people .people-tabs ul li.cat01 span {
  color: #1e986d;
}
#index-people .people-tabs ul li.cat01 span:after {
  background-color: #1e986d;
}
#index-people .people-tabs ul li.cat02 span {
  color: #397bbe;
}
#index-people .people-tabs ul li.cat02 span:after {
  background-color: #397bbe;
}
#index-people .people-tabs ul li.cat03 span {
  color: #cb883a;
}
#index-people .people-tabs ul li.cat03 span:after {
  background-color: #cb883a;
}
#index-people .people-tabs ul li.active span:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 4px;
  margin: 0 0 0 -2px;
}
#index-people .people-tabs ul li.active.all span:before {
  background-image: url(./assets/images/up-arrow01.svg);
}
#index-people .people-tabs ul li.active.cat {
  color: #937a63;
}
#index-people .people-tabs ul li.active.cat span:before {
  background-image: url(./assets/images/up-arrow05.svg);
}
#index-people .people-tabs ul li.active.cat span:after {
  background-color: #937a63;
}
#index-people .people-tabs ul li.active.cat01 span:before {
  background-image: url(./assets/images/up-arrow02.svg);
}
#index-people .people-tabs ul li.active.cat02 span:before {
  background-image: url(./assets/images/up-arrow03.svg);
}
#index-people .people-tabs ul li.active.cat03 span:before {
  background-image: url(./assets/images/up-arrow04.svg);
}
#index-people .people-tags {
  padding: 36px 0;
  margin-bottom: 53px;
  border-top: 1px solid #905c40;
  border-bottom: 1px solid #e5e1dc;
}
#index-people .people-tags .row {
  display: flex;
  justify-content: space-between;
}
#index-people .people-tags .row h3 {
  text-align: left;
  font-size: 21px;
  font-weight: 500;
  color: #905c40;
}
#index-people .people-tags .row ul {
  padding: 0 20px;
}
#index-people .people-tags .row ul li {
  display: inline-block;
  margin: 0 3px 12px;
  line-height: 2;
}
#index-people .people-tags .row ul li a {
  display: inline-block;
  color: #905c40;
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  font-size: 14px;
  background: white;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
}
#index-people .people-tags .row ul li a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #905c40;
}
#index-people .people-tags .row ul li.active a {
  text-decoration: none;
  color: #fff;
  background-color: #aa9482;
}
#index-people .people-tags .row .more {
  min-width: 60px;
}
#index-people .people-tags .row .more a {
  display: inline-block;
  color: #905c40;
  font-size: 12px;
  padding: 0 12px 0 0;
  background: url(./assets/images/down-arrow01.svg) no-repeat right center;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}
#index-people .people-tags .row .more a:hover {
  opacity: 0.65;
}
#index-people .people-tags .row .tags_sp {
  display: none;
}
#index-people .peoples-content .content .people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 70px;
  margin-bottom: 80px;
}
#index-people .peoples-content .content .people-grid-unit {
  clear: both;
}
#index-people .peoples-content .content .people-img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  border: 7px solid #fff;
  box-sizing: content-box;
  overflow: hidden;
}
#index-people .peoples-content .content .people-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#index-people .peoples-content .content .people-name {
  padding-top: 29px;
  text-align: center;
  font-weight: 500;
  color: #36322b;
}
#index-people .peoples-content .content .people-en-name {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding-top: 7px;
  color: #36322b;
}
#index-people .peoples-content .content .people-txt {
  padding-top: 29px;
  font-size: 12px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 2;
  color: #6c6c6c;
}
#index-people .peoples-content .content .people-sns {
  display: flex;
  align-items: center;
  column-gap: 15px;
  float: left;
  padding: 30px 0 0 5px;
}
#index-people .peoples-content .content .people-sns .fb {
  width: 10.19px;
  height: 17.83px;
  background: url(assets/images/sns-icons/icon-facebook-gold.svg) no-repeat;
  background-size: contain;
}
#index-people .peoples-content .content .people-sns .fb a {
  display: block;
  width: 100%;
  height: 100%;
}
#index-people .peoples-content .content .people-sns .tw {
  width: 19.41px;
  height: 15.95px;
  background: url(assets/images/sns-icons/icon-twitter-gold.svg) no-repeat;
  background-size: contain;
}
#index-people .peoples-content .content .people-sns .tw a {
  display: block;
  width: 100%;
  height: 100%;
}
#index-people .peoples-content .content .people-sns .in {
  width: 18.76px;
  height: 18.76px;
  background: url(assets/images/sns-icons/icon-instagram-gold.svg) no-repeat;
  background-size: contain;
}
#index-people .peoples-content .content .people-sns .in a {
  display: block;
  width: 100%;
  height: 100%;
}
#index-people .peoples-content .content .people-sns .yt {
  width: 18.5px;
  height: 12.95px;
  background: url(assets/images/sns-icons/yt.svg) no-repeat;
  background-size: contain;
}
#index-people .peoples-content .content .people-sns .yt a {
  display: block;
  width: 100%;
  height: 100%;
}
#index-people .peoples-content .content .people-sns .link {
  width: 15.8px;
  height: 18px;
  background: url(assets/images/sns-icons/link.svg) no-repeat;
  background-size: contain;
}
#index-people .peoples-content .content .people-sns .link a {
  display: block;
  width: 100%;
  height: 100%;
}
#index-people .peoples-content .content .people-to-list {
  position: relative;
  bottom: 3px;
  float: right;
  padding: 30px 5px 0 0;
  font-size: 12px;
}
#index-people .peoples-content .content .people-to-list a {
  padding-bottom: 5px;
  color: #905c40;
  border-bottom: 1px solid #905c40;
  text-decoration: none;
}
#index-people .more {
  text-align: center;
}
#index-people .more button {
  display: inline-block;
  padding: 20px;
  width: 320px;
  background-color: #e6e1dc;
  color: #937a63;
  font-size: 13px;
  transition: 0.4s ease;
  border: none;
  cursor: pointer;
}
#index-people .more button:hover {
  opacity: 0.7;
}

#index-projects {
  background-color: #e6e1dc;
  padding: 0 0 0;
}
#index-projects .bg {
  width: 100%;
  height: 440px;
  position: relative;
  margin: 0 0 0;
}
#index-projects .bg img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#index-projects .content h2 {
  text-align: center;
  margin: 0 0 60px;
  font-size: 24px;
}
#index-projects .content ul {
  display: flex;
  justify-content: space-between;
}
#index-projects .content ul li {
  width: 752px;
  height: 233px;
  overflow: hidden;
  position: relative;
}
#index-projects .content ul li a {
  display: flex;
  background-color: #fff;
  transition: 0.4s ease-in-out;
}
#index-projects .content ul li a:hover {
  text-decoration: none;
  opacity: 0.8;
}
#index-projects .content ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(./assets/images/square-arrow.png) no-repeat center/contain;
  width: 25px;
  height: 25px;
}
#index-projects .content ul li a figure {
  width: 50%;
  height: 233px;
  overflow: hidden;
  position: relative;
}
#index-projects .content ul li a figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#index-projects .content ul li a .text {
  width: 50%;
  padding: 0 20px;
  height: 233px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#index-projects .content ul li a .text p {
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
}

#index-contact {
  padding: 120px 50px;
  text-align: center;
}
#index-contact .contact-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#index-contact .contact-flex .flex-content {
  text-align: left;
  width: 50%;
  padding-right: 50px;
}
#index-contact .contact-flex .flex-content:last-child {
  border-left: 1px #e6e1dc solid;
  padding-left: 50px;
}
#index-contact h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 20px;
}
#index-contact h2 small {
  padding: 10px 0 0;
  display: block;
  font-size: 15px;
}
#index-contact p {
  font-size: 16px;
  line-height: 1.8;
}
#index-contact .btn {
  padding: 40px 0 0;
}
#index-contact .btn a,
#index-contact .btn iframe {
  width: 100%;
  min-width: 320px;
  max-width: 430px;
  height: 72px;
  line-height: 72px;
  border: 0;
}

.magazine-modal {
  transition: all 1s;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
}
.magazine-modal.active {
  opacity: 1;
  visibility: visible;
}
.magazine-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.magazine-modal .modal-content {
  position: absolute;
  top: calc(50% - 283px);
  left: calc(50% - 516px);
  background-color: #f2f1ed;
  width: 100%;
  max-width: 1032px;
  height: 100%;
  max-height: 526px;
  z-index: 2;
  text-align: center;
  padding: 132px 50px 0;
}
.magazine-modal .modal-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}
.magazine-modal .modal-content p {
  font-size: 16px;
  margin-bottom: 60px;
  line-height: 2;
}
.magazine-modal .modal-content iframe {
  max-width: 560px;
  width: 100%;
  height: 72px;
  border: 0;
}
.magazine-modal .modal-content .close {
  position: absolute;
  top: 20px;
  right: 20px;
}

@media screen and (max-width: 1032px) {
  .magazine-modal .modal-content {
    max-width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .magazine-modal {
    z-index: 10001;
  }
  .magazine-modal .modal-content {
    top: 0;
    max-height: 100%;
    padding: 190px 25px 0;
  }
  .magazine-modal .modal-content h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .magazine-modal .modal-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 2;
    text-align: left;
  }
}
@media screen and (max-width: 1700px) {
  #index-pickup {
    padding: 40px 50px;
  }
  #index-about {
    padding: 130px 50px;
  }
  #index-articles {
    padding: 40px 50px 130px;
  }
  #index-articles.page {
    padding: 0 50px 130px;
  }
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li {
    width: 22%;
  }
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li:nth-child(3),
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li:nth-child(7) {
    margin: 0 4% 60px 0;
  }
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li:nth-child(4n) {
    margin: 0 0 60px;
  }
  #index-articles .articles-content .content ul li {
    width: 30%;
    margin: 0 4% 60px 0;
  }
  #index-articles .articles-content .content ul li:nth-child(3) {
    margin: 0 0 60px;
  }
  #index-articles .articles-content .content ul li:nth-child(n + 4) {
    width: 22%;
    margin: 0 4% 60px 0;
  }
  #index-articles .articles-content .content ul li:nth-child(4n + 3) {
    margin: 0 0 60px;
  }
  #page-header .lead {
    width: 46.57vw;
    margin: 4.07vw auto 0;
  }
  #index-people {
    padding: 40px 50px 130px;
  }
  #index-people.page {
    padding: 0 50px 130px;
  }
  #index-people .people-tags {
    padding: 2.09vw 0;
    margin-bottom: 3.08vw;
  }
  #index-people .peoples-content .content .people-grid {
    column-gap: 2.91vw;
    row-gap: 4.07vw;
    margin-bottom: 4.65vw;
  }
  #index-people .peoples-content .content .people-img {
    width: 11.63vw;
    height: 11.63vw;
  }
  #index-people .peoples-content .content .people-name {
    padding-top: 1.69vw;
  }
  #index-people .peoples-content .content .people-en-name {
    padding-top: 0.41vw;
  }
  #index-people .peoples-content .content .people-txt {
    padding-top: 1.69vw;
  }
  #index-people .peoples-content .content .people-sns {
    column-gap: 0.87vw;
    padding: 1.74vw 0 0 0.29vw;
  }
  #index-people .peoples-content .content .people-sns .fb {
    width: 0.59vw;
    height: 1.04vw;
  }
  #index-people .peoples-content .content .people-sns .tw {
    width: 1.13vw;
    height: 0.93vw;
  }
  #index-people .peoples-content .content .people-sns .in {
    width: 1.09vw;
    height: 1.09vw;
  }
  #index-people .peoples-content .content .people-sns .yt {
    width: 1.09vw;
    height: 0.763vw;
  }
  #index-people .peoples-content .content .people-sns .link {
    width: 0.957vw;
    height: 1.09vw;
  }
  #index-people .peoples-content .content .people-to-list {
    padding: 1.74vw 0.29vw 0 0;
  }
  #index-projects .content {
    padding: 0 50px;
  }
  #index-projects .content ul li {
    width: 48%;
  }
}
@media screen and (max-width: 1024px) {
  #index-pickup ul {
    flex-wrap: wrap;
  }
  #index-pickup ul li {
    width: 48%;
    margin: 0 4% 40px 0;
  }
  #index-pickup ul li:nth-child(even) {
    margin: 0 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  #index-people .peoples-content .content .people-sns .fb {
    width: 1.3vw;
    height: auto;
  }
  #index-people .peoples-content .content .people-sns .tw {
    width: 1.56vw;
    height: auto;
  }
  #index-people .peoples-content .content .people-sns .in {
    width: 1.2vw;
  }
  #index-people .peoples-content .content .people-sns .yt {
    width: 1.56vw;
    height: auto;
  }
  #index-people .peoples-content .content .people-sns .link {
    width: 1.56vw;
    height: auto;
  }
  footer .inner .footer-link a div {
    font-size: 1.6842105263vw;
    padding: 21px 0 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper-sp {
    width: 86.13vw;
  }
  /* #mainvisual {
    height: calc(100vh - 50px);
    min-height: calc(var(--vh, 1vh) * 100 - 50px);
  }
  #mainvisual .copy h2 {
    padding: 0 0 60px;
  }
  #mainvisual .copy h2 img {
    height: 82px;
  }
  #mainvisual .menu ul {
    width: 100%;
    margin: 0;
    display: block;
  }
  #mainvisual .menu ul:before {
    content: none;
  }
  #mainvisual .menu ul li {
    opacity: 0;
    width: 100%;
    padding: 0 0 20px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #mainvisual .menu ul li:before {
    content: none;
  }
  #mainvisual .menu ul li:after {
    width: 0;
    height: 3px;
  }
  #mainvisual .menu ul li a {
    display: block;
    color: #fff;
    font-size: 16px;
  }
  #mainvisual .menu ul li a span {
    display: block;
    padding: 0 60px 0 10px;
    text-align: right;
    background: url(./assets/images/mv-arrow.png) no-repeat right 20px center/23px auto;
  }
  #mainvisual .menu ul li.active {
    opacity: 1;
  }
  #mainvisual .menu ul li.active:after {
    width: 100%;
  }
  #mainvisual .menu ul li.done {
    opacity: 0;
  }
  #mainvisual .menu ul li.done:after {
    width: 0;
    transition: none;
  }
  #mainvisual .banner {
    top: 0;
    width: 100%;
    height: auto;
  } */
  #index-pickup {
    padding: 40px 15px;
  }
  #index-pickup ul {
    display: block;
  }
  #index-pickup ul li {
    width: auto;
    margin: 0 0 15px;
  }
  #index-pickup ul li:nth-child(even) {
    margin: 0 0 15px;
  }
  #index-pickup ul li:last-child {
    margin: 0;
  }
  #index-about {
    padding: 60px 26px;
    margin: 0 0 20px;
  }
  #index-about h2 {
    margin: 0 0 30px;
  }
  #index-about h2 img {
    height: 60px;
  }
  #index-about p {
    font-size: 15px;
    text-align: left;
    margin: 0 10px 30px;
    line-height: 2;
  }
  #index-about p br.pc {
    display: none;
  }
  #index-about .btn {
    padding: 0;
  }
  #index-about .btn a {
    width: 100%;
  }
  #index-news {
    padding-bottom: 60px;
  }
  #index-news ul {
    width: auto;
    max-width: none;
    margin: 0 26px;
  }
  #index-news ul li a {
    font-size: 13px;
    display: block;
    padding: 20px 20px 20px 10px;
    line-height: 1.8;
  }
  #index-news ul li a span {
    display: block;
  }
  #index-news ul li a span.date {
    width: auto;
    font-size: 10px;
    margin: 0 0 5px;
  }
  #index-news ul li a span.tit {
    width: auto;
    line-height: 2;
  }
  #index-news .more {
    text-align: right;
    padding: 40px 0 0;
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;
  }
  #index-news .more a {
    display: inline-block;
    font-size: 14px;
    color: #937a63;
    border-bottom: solid #937a63 1px;
    padding: 0 0 4px;
  }
  #index-news .more a:hover {
    text-decoration: none;
  }
  #index-articles {
    padding: 30px 15px;
  }
  #index-articles.page {
    padding: 0 15px 60px;
  }
  #index-articles h2 {
    font-size: 24px;
    margin: 0 0 40px;
  }
  #index-articles .articles-tabs ul {
    display: block;
    border-bottom: none;
    margin: -20px 0 0;
  }
  #index-articles .articles-tabs ul li {
    margin: 0;
    display: none;
  }
  #index-articles .articles-tabs ul li:first-child {
    background: url(./assets/images/down-arrow03.svg) no-repeat right 20px center;
  }
  #index-articles .articles-tabs ul li span {
    font-size: 13px;
    text-align: center;
    padding: 20px;
  }
  #index-articles .articles-tabs ul li.active {
    display: block;
  }
  #index-articles .articles-tabs ul li.active span:before {
    content: none;
  }
  #index-articles .articles-tags {
    padding: 20px 0;
  }
  #index-articles .articles-tags .row {
    display: block;
  }
  #index-articles .articles-tags .row h3 {
    display: none;
  }
  #index-articles .articles-tags .row ul {
    padding: 0 20px;
  }
  #index-articles .articles-tags .row ul li {
    display: inline-block;
    margin: 0 3px;
    line-height: 2;
  }
  #index-articles .articles-tags .row ul li a {
    display: inline-block;
    color: #905c40;
    font-size: 10px;
    line-height: 1;
    padding: 5px 8px 3px 9px;
    border-radius: 10px;
  }
  #index-articles .articles-tags .row ul li a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #905c40;
  }
  #index-articles .articles-tags .row ul.tags {
    display: none;
  }
  #index-articles .articles-tags .row .more {
    display: none;
  }
  #index-articles .articles-tags .row .tags_sp {
    display: block;
  }
  #index-articles .articles-tags .row .tags_sp .toggle a {
    display: block;
    padding: 10px;
    color: #905c40;
    border-radius: 40px;
    text-align: center;
    background-color: white;
    background-image: url(./assets/images/down-arrow03.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
  }
  #index-articles .articles-tags .row .tags_sp .toggle a:hover {
    text-decoration: none;
  }
  #index-articles .articles-tags .row .tags_sp ul {
    display: none;
    padding: 20px 0 0;
  }
  #index-articles .articles-content .content ul {
    display: block;
  }
  #index-articles .articles-content .content ul.alm-listing .alm-reveal {
    display: block;
  }
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li {
    width: auto;
    margin: 0 0 40px;
  }
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li figure {
    height: 322px;
  }
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li:nth-child(3),
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li:nth-child(7) {
    margin: 0 0 40px;
  }
  #index-articles .articles-content .content ul.alm-listing .alm-reveal li:nth-child(4n) {
    margin: 0 0 40px;
  }
  #index-articles .articles-content .content ul li {
    width: auto;
    margin: 0 0 40px;
  }
  #index-articles .articles-content .content ul li figure {
    /*width:100%;
    height:322px;*/
    overflow: hidden;
    position: relative;
    margin: 0 0 20px;
  }
  #index-articles .articles-content .content ul li .cat {
    margin: 0 12px 20px;
  }
  #index-articles .articles-content .content ul li .cat span {
    color: #fff;
    font-size: 11px;
    display: inline-block;
    line-height: 1;
    padding: 5px 18px;
    font-weight: 600;
  }
  #index-articles .articles-content .content ul li h3 {
    font-size: 15px;
    margin: 0 12px 14px;
  }
  #index-articles .articles-content .content ul li p {
    font-size: 12px;
    margin: 0 12px;
    line-height: 2;
  }
  #index-articles .articles-content .content ul li .tags {
    padding: 20px 12px 0;
    line-height: 1.7;
  }
  #index-articles .articles-content .content ul li .tags a {
    font-size: 10px;
  }
  #index-articles .articles-content .content ul li:nth-child(3) {
    margin: 0 0 40px;
  }
  #index-articles .articles-content .content ul li:nth-child(n + 4) {
    width: auto;
    margin: 0 0 40px;
  }
  #index-articles .articles-content .content ul li:nth-child(n + 4) figure {
    /*height:322px;*/
  }
  #index-articles .articles-content .content ul li:nth-child(4n + 3) {
    margin: 0 0 40px;
  }
  #index-articles .articles-content .content .more {
    padding: 20px 0 0;
  }
  #index-articles .articles-content .content .more a {
    display: block;
    padding: 20px 0;
    width: auto;
  }
  #index-articles .articles-content .content .alm-btn-wrap .infinite-more {
    display: block;
    padding: 20px 0;
    width: 100%;
  }
  #index-articles .news-content .content ul li a {
    display: block;
    padding: 20px 0;
  }
  #index-articles .news-content .content ul li a:hover {
    background-color: transparent;
  }
  #index-articles .news-content .content ul li figure {
    width: 100%;
    height: 322px;
    margin: 0 0 20px;
  }
  #index-articles .news-content .content ul li .date {
    width: auto;
    padding: 0 20px 0 11px;
    display: inline-block;
  }
  #index-articles .news-content .content ul li .cat {
    display: none;
  }
  #index-articles .news-content .content ul li .cat_sp {
    display: inline-block;
    font-size: 11px;
    color: #937a63;
    padding: 0 20px 0 0;
  }
  #index-articles .news-content .content ul li h3 {
    width: auto;
    padding: 20px 26px 0 11px;
    font-size: 15px;
    text-align: left;
    background: url(./assets/images/arrow-br.svg) no-repeat center right;
  }
  #index-people {
    padding: 30px 15px;
  }
  #index-people.page {
    padding: 0 15px 60px;
  }
  #index-people h2 {
    font-size: 24px;
    margin: 0 0 40px;
  }
  #index-people .people-tabs ul {
    display: block;
    border-bottom: none;
    margin: -20px 0 0;
  }
  #index-people .people-tabs ul li {
    margin: 0;
    display: none;
  }
  #index-people .people-tabs ul li:first-child {
    background: url(./assets/images/down-arrow03.svg) no-repeat right 20px center;
  }
  #index-people .people-tabs ul li span {
    font-size: 13px;
    text-align: center;
    padding: 20px;
  }
  #index-people .people-tabs ul li.active {
    display: block;
  }
  #index-people .people-tabs ul li.active span:before {
    content: none;
  }
  #index-people .people-tags {
    padding: 5.33vw 0;
    margin-bottom: 0;
    border: none;
  }
  #index-people .people-tags .row {
    display: block;
  }
  #index-people .people-tags .row h3 {
    display: none;
  }
  #index-people .people-tags .row ul {
    padding: 0 20px;
  }
  #index-people .people-tags .row ul li {
    display: inline-block;
    margin: 0 3px;
    line-height: 2;
  }
  #index-people .people-tags .row ul li a {
    display: inline-block;
    color: #905c40;
    font-size: 10px;
    line-height: 1;
    padding: 5px 8px 3px 9px;
    border-radius: 10px;
  }
  #index-people .people-tags .row ul li a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #905c40;
  }
  #index-people .people-tags .row ul.tags {
    display: none;
  }
  #index-people .people-tags .row .more {
    display: none;
  }
  #index-people .people-tags .row .tags_sp {
    display: block;
  }
  #index-people .people-tags .row .tags_sp .toggle a {
    display: block;
    padding: 10px;
    color: #905c40;
    border-radius: 40px;
    text-align: center;
    font-size: 12px;
    background-color: white;
    background-image: url(./assets/images/down-arrow03.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
  }
  #index-people .people-tags .row .tags_sp .toggle a:hover {
    text-decoration: none;
  }
  #index-people .people-tags .row .tags_sp ul {
    display: none;
    padding: 20px 0 0;
  }
  #index-people .peoples-content {
    padding: 0 11px;
  }
  #index-people .peoples-content .content .people-grid {
    grid-template-columns: 1fr;
    row-gap: 8.27vw;
  }
  #index-people .peoples-content .content .people-grid-unit {
    padding-bottom: 6.67vw;
    border-bottom: 1px solid #e5e1dc;
  }
  #index-people .peoples-content .content .people-grid-unit:last-child {
    border-bottom: none;
  }
  #index-people .peoples-content .content .people-img {
    width: 29.33vw;
    height: 29.33vw;
    margin-right: 7.73vw;
    float: left;
    border-width: 5px;
  }
  #index-people .peoples-content .content .people-name {
    padding-top: 10.67vw;
    text-align: left;
  }
  #index-people .peoples-content .content .people-en-name {
    padding-top: 2.13vw;
    text-align: left;
  }
  #index-people .peoples-content .content .people-txt {
    padding-top: 4.27vw;
    clear: both;
  }
  #index-people .peoples-content .content .people-sns {
    column-gap: 6.67vw;
    padding: 5.33vw 0 0 1.33vw;
  }
  #index-people .peoples-content .content .people-sns .fb {
    width: 10.19px;
    height: 17.83px;
  }
  #index-people .peoples-content .content .people-sns .tw {
    width: 19.41px;
    height: 15.95px;
  }
  #index-people .peoples-content .content .people-sns .in {
    width: 18.76px;
    height: 18.76px;
  }
  #index-people .peoples-content .content .people-sns .yt {
    width: 18.5px;
    height: 12.95px;
  }
  #index-people .peoples-content .content .people-sns .link {
    width: 15.8px;
    height: 18px;
  }
  #index-people .peoples-content .content .people-to-list {
    padding-top: 5.87vw;
  }
  #index-people .peoples-content .content .people-to-list a {
    padding-bottom: 4px;
  }
  #index-people .more button {
    width: 345px;
  }
  #index-projects {
    padding: 0 0 0;
  }
  #index-projects .bg {
    height: 180px;
    margin: 0 0 0;
  }
  #index-projects .content {
    padding: 0 15px;
  }
  #index-projects .content h2 {
    text-align: center;
    margin: 0 0 45px;
    font-size: 21px;
  }
  #index-projects .content ul {
    display: block;
  }
  #index-projects .content ul li {
    width: auto;
    height: auto;
    margin: 0 0 15px;
  }
  #index-projects .content ul li a {
    display: block;
  }
  #index-projects .content ul li a figure {
    width: auto;
    height: 213px;
  }
  #index-projects .content ul li a .text {
    width: auto;
    height: auto;
    text-align: left;
    display: block;
    padding: 20px;
  }
  #index-projects .content ul li a .text p {
    font-size: 15px;
  }
  #index-contact {
    padding: 60px 15px;
  }
  #index-contact .contact-flex .flex-content {
    width: 100%;
    padding-right: 0;
  }
  #index-contact .contact-flex .flex-content:first-child {
    padding-bottom: 30px;
    border-bottom: 1px #e6e1dc solid;
    margin-bottom: 40px;
  }
  #index-contact .contact-flex .flex-content:last-child {
    padding-left: 0;
    border-left: 0;
  }
  #index-contact h2 {
    font-size: 21px;
    margin: 0 0 25px;
    text-align: center;
  }
  #index-contact h2 small {
    font-size: 15px;
  }
  #index-contact p {
    font-size: 15px;
    text-align: left;
    line-height: 2;
  }
  #index-contact .btn {
    padding: 30px 0 0;
  }
  #index-contact .btn a,
  #index-contact .btn iframe {
    width: auto;
    display: block;
    max-width: none;
    min-width: none;
    height: 52px;
    line-height: 52px;
  }
}
@media screen and (max-width: 480px) {
  #index-articles .articles-content .content ul li figure {
    /*height:225px;*/
  }
  #index-articles .news-content .content ul li figure {
    height: 225px;
  }
}
/*-------------------------
  PAGE
-------------------------*/
#page-header {
  padding: 120px 0;
  text-align: center;
}
#page-header .copy h2 {
  font-size: 36px;
  line-height: 1.5;
}
.contact-page #page-header .copy h2,
.faq #page-header .copy h2,
.supporters #page-header .copy h2,
.membership #page-header .copy h2 {
  font-weight: 500;
}

small {
  font-size: 16px;
  display: block;
}
@media screen and (max-width: 768px) {
  small {
    font-size: 12px;
  }
}

#page-header .copy p {
  font-size: 16px;
  padding: 40px 0 0;
  line-height: 1.8;
}
#page-header .copy img {
  max-width: 320px;
  margin-bottom: 90px;
}
.supporters #page-header .copy img {
  max-width: 1160px;
  margin-top: 94px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .supporters #page-header .copy img {
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 40px;
  }
}

#page-header.people-header {
  padding: 135px 0 108px;
}
#page-header.people-header .lead {
  width: 801px;
  margin: 60px auto 0;
  line-height: 2;
}

.page-about #page-header .copy h2 {
  font-size: 21px;
}

#about-content01 {
  margin: 0 0 120px;
}
#about-content01 .title {
  text-align: center;
}
#about-content01 .title h3 {
  font-size: 56px;
}
#about-content01 .title p {
  font-size: 18px;
  padding: 15px 0 0;
  font-weight: 700;
}
#about-content01 article.main {
  text-align: center;
  margin: 0 0 120px;
}
#about-content01 article.main p {
  font-size: 16px;
  line-height: 2;
}
#about-content01 article.main figure {
  padding: 80px 0;
}
#about-content01 article.main figure img {
  width: 100%;
  max-width: 727px;
}
#about-content01 article.sub {
  background-color: #f7f7f5;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about-content01 article.sub h3 {
  text-align: center;
  width: 50%;
}
#about-content01 article.sub h3 img {
  max-width: 318px;
  width: 100%;
}
#about-content01 article.sub .text {
  width: 50%;
  padding: 0 100px;
}
#about-content01 article.sub .text h4 {
  font-size: 18px;
  margin: 0 0 20px;
}
#about-content01 article.sub .text p {
  font-size: 16px;
  line-height: 2;
}

#about-content02 {
  margin: 0 0 120px;
}
#about-content02 .title {
  text-align: center;
  margin: 0 0 60px;
}
#about-content02 .title h3 {
  font-size: 56px;
}
#about-content02 .title p {
  font-size: 18px;
  padding: 15px 0 0;
  font-weight: 700;
}
#about-content02 article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 0 80px;
}
#about-content02 article:nth-child(even) {
  flex-direction: row-reverse;
  padding: 0 80px 0 40px;
  margin: 0 0 60px;
}
#about-content02 article figure {
  width: 55%;
}
#about-content02 article .text {
  width: 45%;
  padding: 0 100px;
}
#about-content02 article .text h4 {
  font-size: 18px;
  margin: 0 0 20px;
}
#about-content02 article .text p {
  font-size: 16px;
  line-height: 2;
}

#about-content03 {
  margin: 0 0 200px;
}
#about-content03 article {
  padding: 0 60px;
  text-align: center;
}
#about-content03 article h3 {
  font-size: 18px;
  margin: 0 0 20px;
}
#about-content03 article p {
  font-size: 16px;
  line-height: 2;
}
#about-content03 article figure {
  padding: 60px 0 0;
}
#about-content03 article .btn {
  padding: 80px 0 0;
}

#sdgs-content01 {
  margin: 0 0 120px;
}
#sdgs-content01 .main {
  margin: 0 0 60px;
  text-align: center;
}
#sdgs-content01 .main h3 {
  font-size: 21px;
  padding: 20px 0;
  border-top: solid #36322b 1px;
  border-bottom: solid #36322b 1px;
  margin: 0 0 80px;
}
#sdgs-content01 .main p {
  font-size: 16px;
  line-height: 1.8;
}
#sdgs-content01 .description .row {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}
#sdgs-content01 .description .left {
  width: 50%;
  padding: 0 40px 0 0;
}
#sdgs-content01 .description .left h4 {
  font-size: 18px;
  color: #937a63;
  margin: 0 0 10px;
}
#sdgs-content01 .description .left .image {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}
#sdgs-content01 .description .left .image figure {
  width: 128px;
  margin: 0 20px 0 0;
}
#sdgs-content01 .description .left .image .text {
  color: #937a63;
}
#sdgs-content01 .description .left .image .text p {
  font-size: 18px;
  font-weight: 700;
}
#sdgs-content01 .description .left .image .text p strong {
  font-size: 22px;
}
#sdgs-content01 .description .left .image .text small {
  display: block;
  font-size: 13px;
}
#sdgs-content01 .description .right {
  width: 50%;
  padding: 0 40px 0 0;
}
#sdgs-content01 .description .right p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 20px;
}
#sdgs-content01 .description .right small {
  display: block;
  font-size: 12px;
}
#sdgs-content01 .description .right figure {
  padding: 40px 0 0;
}
#sdgs-content01 .content {
  padding: 40px 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
#sdgs-content01 .content:nth-child(2) {
  flex-direction: row;
  margin: 0 0 40px;
}
#sdgs-content01 .content figure {
  width: 600px;
}
#sdgs-content01 .content .text {
  width: 600px;
  text-align: left;
  padding: 0 60px;
}
#sdgs-content01 .content .text h4 {
  font-size: 18px;
  margin: 0 0 30px;
}
#sdgs-content01 .content .text p {
  font-size: 16px;
  line-height: 1.8;
}

#sdgs-content02 {
  margin: 0 0 200px;
}
#sdgs-content02 .wrap {
  padding: 40px 50px;
  border: solid #937a63 1px;
}
#sdgs-content02 .wrap .top {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}
#sdgs-content02 .wrap .top h3 {
  font-size: 21px;
  color: #937a63;
  width: 48%;
}
#sdgs-content02 .wrap .top p {
  font-size: 16px;
  line-height: 1.8;
  width: 48%;
}
#sdgs-content02 .wrap .bottom {
  display: flex;
  justify-content: space-between;
}
#sdgs-content02 .wrap .bottom article {
  width: 48%;
}
#sdgs-content02 .wrap .bottom article h4 {
  padding: 0 0 0 20px;
  border-left: solid #937a63 4px;
  margin: 0 0 30px;
  font-size: 18px;
  color: #937a63;
  line-height: 1;
}
#sdgs-content02 .wrap .bottom article h4 span {
  font-size: 15px;
  display: block;
  margin: 0 0 10px;
}
#sdgs-content02 .wrap .bottom article p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 50px;
}
#sdgs-content02 .wrap .bottom article figure {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
#sdgs-content02 .wrap .bottom article figure img {
  width: 45%;
}
#sdgs-content02 .wrap .bottom article figure figcaption {
  width: 50%;
  font-size: 13px;
  line-height: 1.8;
}

#sdgs-content03 {
  margin: 0 0 120px;
}
#sdgs-content03 .wrap {
  padding: 0;
}
#sdgs-content03 .wrap article {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}
#sdgs-content03 .wrap article .head {
  width: 480px;
}
#sdgs-content03 .wrap article .head h3 {
  padding: 0 0 0 20px;
  border-left: solid #937a63 4px;
  margin: 0 0 30px;
  font-size: 18px;
  color: #937a63;
  line-height: 1.4;
}
#sdgs-content03 .wrap article .head p {
  font-size: 16px;
  line-height: 1.8;
}
#sdgs-content03 .wrap article .image {
  width: 965px;
  display: flex;
  justify-content: space-between;
}
#sdgs-content03 .wrap article .image figure {
  width: 463px;
}
#sdgs-content03 .wrap article .image figure figcaption {
  padding: 10px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (max-width: 1700px) {
  #page-header.people-header {
    padding: 7.85vw 0 6.28vw;
  }
  #page-header.people-header .lead {
    width: 46.57vw;
    margin: 3.49vw auto 0;
  }
  #about-content01 {
    padding: 0 50px;
  }
  #about-content01 article.sub {
    margin: 0 -20px;
  }
  #about-content02 {
    padding: 0 50px;
  }
  #sdgs-content01 {
    padding: 0 50px;
  }
  #sdgs-content01 .content {
    padding: 40px 40px;
  }
  #sdgs-content02 {
    padding: 0 50px;
  }
  #sdgs-content03 {
    padding: 0 50px;
  }
  #sdgs-content03 .wrap article .head {
    width: 32%;
  }
  #sdgs-content03 .wrap article .image {
    width: 64%;
  }
  #sdgs-content03 .wrap article .image figure {
    width: 48%;
  }
}
@media screen and (max-width: 1200px) {
  #about-content01 article.sub {
    padding: 40px;
  }
  #about-content01 article.sub .text {
    padding: 0 0 0 40px;
  }
  #about-content02 article {
    padding: 0;
  }
  #about-content02 article:nth-child(even) {
    padding: 0;
  }
  #about-content02 article .text {
    padding: 0 40px;
  }
  #sdgs-content01 .description .row {
    padding: 0 20px;
  }
  #sdgs-content01 .description .right {
    padding: 0;
  }
  #sdgs-content01 .content {
    padding: 20px 0;
  }
  #sdgs-content01 .content figure {
    width: 48%;
  }
  #sdgs-content01 .content .text {
    width: 48%;
    padding: 0 20px;
  }
  #sdgs-content03 .wrap {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #page-header {
    padding: 60px 26px;
  }
  .membership #page-header {
    padding-bottom: 40px;
  }
  #page-header .copy h2 {
    font-size: 24px;
  }
  .membership #page-header .copy h2 {
    font-size: 19px;
  }
  #page-header .copy p {
    text-align: left;
    font-size: 15px;
    padding: 40px 0 0;
    line-height: 2;
  }
  #page-header .copy p br.pc {
    display: none;
  }
  #page-header .copy img {
    max-width: 200px;
    margin-bottom: 72px;
  }
  #page-header.people-header {
    padding: 12vw 0;
  }
  #page-header.people-header h2 {
    font-size: 19px;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  }
  #page-header.people-header .lead {
    width: 86.13vw;
    margin: 43px auto 45px;
    text-align: justify;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
    font-size: 15px;
  }
  .page-about #page-header .copy h2 {
    font-size: 15px;
    text-align: left;
  }
  .page-about #page-header .copy p {
    padding: 20px 0 0;
  }
  #about-content01 {
    margin: 0 0 60px;
    padding: 0 26px;
  }
  #about-content01 .title {
    margin: 0 0 0px;
  }
  #about-content01 .title h3 {
    font-size: 38px;
  }
  #about-content01 .title p {
    font-size: 15px;
    padding: 2px 0 0;
  }
  #about-content01 article.main {
    margin: 0 0 60px;
    padding: 0;
  }
  #about-content01 article.main p {
    font-size: 15px;
    text-align: left;
    line-height: 2;
  }
  #about-content01 article.main p br.pc {
    display: none;
  }
  #about-content01 article.main figure {
    padding: 40px 0;
  }
  #about-content01 article.main figure img {
    width: 100%;
  }
  #about-content01 article.sub {
    margin: 0 -11px;
    padding: 40px 20px 20px;
    display: block;
  }
  #about-content01 article.sub h3 {
    text-align: center;
    width: auto;
    padding: 40px 40px 60px;
  }
  #about-content01 article.sub .text {
    width: auto;
    padding: 0;
  }
  #about-content01 article.sub .text h4 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  #about-content01 article.sub .text p {
    font-size: 15px;
  }
  #about-content02 {
    margin: 0 0 80px;
    padding: 0 26px;
  }
  #about-content02 .title {
    margin: 0 0 40px;
  }
  #about-content02 .title h3 {
    font-size: 38px;
  }
  #about-content02 .title p {
    font-size: 15px;
    padding: 2px 0 0;
  }
  #about-content02 article {
    display: block;
    padding: 0;
  }
  #about-content02 article:nth-child(even) {
    padding: 0;
    margin: 0 0 60px;
  }
  #about-content02 article figure {
    width: auto;
    margin: 0 -11px;
  }
  #about-content02 article .text {
    width: auto;
    padding: 0;
    margin: 0 0 40px;
  }
  #about-content02 article .text h4 {
    font-size: 15px;
  }
  #about-content02 article .text p {
    font-size: 15px;
  }
  #about-content03 {
    margin: 0 0 100px;
  }
  #about-content03 article {
    padding: 0 26px;
    text-align: left;
  }
  #about-content03 article h3 {
    font-size: 15px;
  }
  #about-content03 article p {
    font-size: 15px;
  }
  #about-content03 article figure {
    padding: 40px 0 0;
  }
  #about-content03 article .btn {
    text-align: center;
    padding: 60px 0 0;
  }
  #about-content03 article .btn a {
    font-size: 15px;
  }
  #sdgs-content01 {
    margin: 0 0 60px;
    padding: 0 15px;
  }
  #sdgs-content01 .main {
    margin: 0 0 40px;
  }
  #sdgs-content01 .main h3 {
    font-size: 15px;
    padding: 15px 11px;
    margin: 0 0 20px;
    text-align: left;
    line-height: 1.8;
  }
  #sdgs-content01 .main p {
    font-size: 15px;
    text-align: left;
    padding: 0 11px;
    line-height: 2;
  }
  #sdgs-content01 .main p br {
    display: none;
  }
  #sdgs-content01 .description .row {
    display: block;
    padding: 0 11px;
  }
  #sdgs-content01 .description .left {
    width: auto;
    padding: 0;
    margin: 0 0 40px;
  }
  #sdgs-content01 .description .left h4 {
    text-align: center;
    font-size: 17px;
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: solid #937a63 1px;
  }
  #sdgs-content01 .description .left .image {
    display: block;
    margin: 0 0 30px;
    text-align: center;
  }
  #sdgs-content01 .description .left .image figure {
    width: 128px;
    margin: 0 auto;
  }
  #sdgs-content01 .description .left .image .text {
    padding: 10px 0 0;
  }
  #sdgs-content01 .description .left .image .text p {
    font-size: 17px;
  }
  #sdgs-content01 .description .left .image .text p strong {
    font-size: 21px;
  }
  #sdgs-content01 .description .left .image .text small {
    font-size: 13px;
  }
  #sdgs-content01 .description .right {
    width: auto;
    padding: 0;
  }
  #sdgs-content01 .description .right p {
    margin: 0 0 10px;
  }
  #sdgs-content01 .description .right small {
    font-size: 12px;
  }
  #sdgs-content01 .description .right figure {
    padding: 40px 0 0;
  }
  #sdgs-content01 .content {
    padding: 0;
    display: block;
  }
  #sdgs-content01 .content:nth-child(2) {
    margin: 0 0 40px;
  }
  #sdgs-content01 .content figure {
    width: auto;
    margin: 0 0 20px;
  }
  #sdgs-content01 .content .text {
    width: auto;
    padding: 0 11px;
  }
  #sdgs-content01 .content .text h4 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  #sdgs-content01 .content .text p {
    font-size: 15px;
    padding: 0;
    line-height: 2;
  }
  #sdgs-content02 {
    margin: 0 0 100px;
    padding: 0 15px;
  }
  #sdgs-content02 .wrap {
    padding: 20px;
    cursor: pointer;
  }
  #sdgs-content02 .wrap .top {
    display: block;
    margin: 0;
  }
  #sdgs-content02 .wrap .top h3 {
    font-size: 15px;
    width: auto;
    position: relative;
    padding: 0 40px 0 0;
  }
  #sdgs-content02 .wrap .top h3:after {
    content: "";
    background: url(./assets/images/open-arrow.svg) no-repeat center/contain;
    width: 18px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    margin: -5px 0 0;
    transition: 0.2s ease;
  }
  #sdgs-content02 .wrap .top h3.active:after {
    transform: rotate(180deg);
  }
  #sdgs-content02 .wrap .top p {
    display: none;
    padding: 20px 0 0;
    font-size: 15px;
    width: auto;
    line-height: 2;
  }
  #sdgs-content02 .wrap .bottom {
    display: none;
    padding: 40px 0 0;
  }
  #sdgs-content02 .wrap .bottom article {
    width: auto;
    margin: 0 0 30px;
  }
  #sdgs-content02 .wrap .bottom article h4 {
    padding: 0 0 0 20px;
    margin: 0 0 20px;
    font-size: 13px;
  }
  #sdgs-content02 .wrap .bottom article h4 span {
    font-size: 13px;
    margin: 0 0 10px;
  }
  #sdgs-content02 .wrap .bottom article p {
    font-size: 15px;
    line-height: 2;
    margin: 0 0 30px;
  }
  #sdgs-content02 .wrap .bottom article figure {
    display: block;
  }
  #sdgs-content02 .wrap .bottom article figure img {
    width: auto;
  }
  #sdgs-content02 .wrap .bottom article figure figcaption {
    padding: 10px 0 0;
    width: auto;
    font-size: 13px;
  }
  #sdgs-content02 .wrap .bottom article:last-child {
    margin: 0;
  }
  #sdgs-content03 {
    margin: 0 0 60px;
    padding: 0 15px;
  }
  #sdgs-content03 .wrap {
    border-bottom: solid #e6e1dc 1px;
  }
  #sdgs-content03 .wrap article {
    display: block;
    margin: 0;
    border-top: solid #e6e1dc 1px;
    padding: 20px 11px;
    cursor: pointer;
  }
  #sdgs-content03 .wrap article .head {
    width: auto;
  }
  #sdgs-content03 .wrap article .head h3 {
    padding: 0;
    border-left: none;
    margin: 0;
    font-size: 15px;
    position: relative;
  }
  #sdgs-content03 .wrap article .head h3:after {
    content: "";
    background: url(./assets/images/open-arrow.svg) no-repeat center/contain;
    width: 18px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    margin: -5px 0 0;
    transition: 0.2s ease;
  }
  #sdgs-content03 .wrap article .head h3.active:after {
    transform: rotate(180deg);
  }
  #sdgs-content03 .wrap article .head p {
    display: none;
    padding: 20px 0 0;
    font-size: 15px;
    line-height: 2;
  }
  #sdgs-content03 .wrap article .image {
    display: none;
    padding: 20px 0 0;
    width: auto;
  }
  #sdgs-content03 .wrap article .image figure {
    width: auto;
    padding: 20px 0 0;
  }
  #sdgs-content03 .wrap article .image figure figcaption {
    font-size: 12px;
  }
}
/*-------------------------
  ARTICLES - single
-------------------------*/
#articles-single-header {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 900px;
}
#articles-single-header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50vh;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(200, 200, 200, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  bottom: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}
#articles-single-header .image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#articles-single-header .image img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#articles-single-header .copy {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#articles-single-header .copy .wrap {
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: end;
  color: #fff;
}
#articles-single-header .copy .wrap .title {
  width: 100%;
  padding: 0 0 60px;
}
#articles-single-header .copy .wrap .title .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 60px;
}
#articles-single-header .copy .wrap .title .meta .cat {
  display: flex;
  align-items: center;
  font-size: 12px;
}
#articles-single-header .copy .wrap .title .meta .cat span {
  padding: 0 60px 0 0;
  position: relative;
  display: inline-block;
}
#articles-single-header .copy .wrap .title .meta .cat span:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  right: 10px;
  top: 50%;
  background-color: #fff;
}
#articles-single-header .copy .wrap .title .meta .cat strong {
  font-weight: 500;
}
#articles-single-header .copy .wrap .title .meta .date {
  font-size: 12px;
}
#articles-single-header .copy .wrap .title h2 {
  width: 50%;
  font-size: 25px;
  line-height: 1.7;
  margin: 0 0 20px;
}
#articles-single-header .copy .wrap .title .tags {
  display: flex;
  flex-wrap: wrap;
}
#articles-single-header .copy .wrap .title .tags a {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  padding: 0 6px;
  border-radius: 20px;
  margin: 0 6px 0 0;
  border: solid #fff 1px;
}

#articles-single-content .container {
  max-width: 960px;
  margin: 0 auto;
}
#articles-single-content .container article {
  padding: 80px 0 0;
}
#articles-single-content .container article .lead-block {
  color: #937a63;
  padding: 0 0 0 20px;
  border-left: solid #937a63 4px;
  margin: 0 0 60px;
}
#articles-single-content .container article .lead-block p {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.4;
}
#articles-single-content .container article #toc_container {
  margin: 0 0 60px;
  padding: 0;
  width: auto !important;
  display: block !important;
  background-color: transparent !important;
  border: none !important;
}
#articles-single-content .container article #toc_container p {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 40px;
  color: #937a63;
  line-height: 2.4;
  text-align: left;
}
#articles-single-content .container article #toc_container ul {
  border-top: solid #e6e1dc 1px;
  counter-reset: number 0;
}
#articles-single-content .container article #toc_container ul li {
  border-bottom: solid #e6e1dc 1px;
  counter-increment: number 1;
}
#articles-single-content .container article #toc_container ul li a {
  color: #937a63;
  position: relative;
  padding: 20px 40px 20px 50px;
  display: block;
  line-height: 1.6;
  font-weight: 600;
  background: url(./assets/images/down-arrow02.svg) no-repeat center right 20px;
  transition: 0.4s ease-in-out;
}
#articles-single-content .container article #toc_container ul li a:before {
  color: #937a63;
  content: counter(number) "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -16px 0 0;
  width: 32px;
  height: 32px;
  border: solid #937a63 1px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 16px;
}
#articles-single-content .container article #toc_container ul li a:hover {
  text-decoration: none;
  opacity: 0.65;
}
#articles-single-content .container article .body {
  margin: 0 0 80px;
}
#articles-single-content .container article .body p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 40px;
  line-height: 2.4;
}
#articles-single-content .container article .body p a {
  color: #003bff;
}
#articles-single-content .container article .body h2 {
  font-size: 18px;
  color: #937a63;
  line-height: 2;
  margin: 0 0 40px;
}
#articles-single-content .container article .body h3 {
  font-size: 18px;
  color: #937a63;
  line-height: 2;
  margin: 0 0 40px;
}
#articles-single-content .container article .body blockquote {
  padding: 20px;
  background-color: #f7f7f5;
  margin: 0 0 40px;
}
#articles-single-content .container article .body blockquote p {
  margin: 0;
}
#articles-single-content .container article .body figure {
  text-align: center;
  margin: 0 0 30px;
  /*max-height:960px;*/
  gap: 0;
}
#articles-single-content .container article .body figure img {
  max-width: 100%;
  max-height: 960px;
  width: auto;
  height: auto;
}
#articles-single-content .container article .body figure figcaption {
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  background: none;
  color: #36322b;
  bottom: -40px;
  margin-bottom: 0;
  overflow: auto;
  padding: 10px 0 40px;
  width: 100%;
  box-sizing: border-box;
}
#articles-single-content .container article .body figure.wp-block-gallery {
  margin: 0 0 70px;
}
#articles-single-content .container article .body figure.wp-block-gallery figcaption {
  padding: 10px 0 0;
}
#articles-single-content .container article .body figure.full-width {
  width: 100vw;
  position: relative;
  margin: 0 calc(-50vw + 480px) 100px;
}
#articles-single-content .container article .body figure.full-width figure figcaption {
  padding: 0 40px;
}
#articles-single-content .container article .body .image-double figure {
  display: flex;
}
#articles-single-content .container article .body .image-double figure img {
  width: 50%;
}
#articles-single-content .container article .body .image-double p {
  padding: 10px 0 0;
  text-align: left;
  font-size: 13px;
}
#articles-single-content .container article .body .content-wide {
  width: 100vw;
  position: relative;
  padding: 0 0 60px;
  margin: 0 calc((-100vw + 1000px) / 2);
}
#articles-single-content .container article .body .content-wide .images {
  display: flex;
}
#articles-single-content .container article .body .content-wide .images img {
  width: 50%;
}
#articles-single-content .container article .body .content-wide p {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 0;
  text-align: left;
  font-size: 13px;
}
#articles-single-content .container article .people {
  content: "";
  display: block;
  clear: both;
  margin: 0 0 80px;
}
#articles-single-content .container article .people h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 50px;
  padding-bottom: 10px;
  color: #905c40;
  line-height: 2.4;
  border-bottom: solid #e6e1dc 1px;
}
#articles-single-content .container article .people .inner {
  display: flex;
  column-gap: 50px;
  margin-top: 40px;
}
#articles-single-content .container article .people .inner:nth-child(1),
#articles-single-content .container article .people .inner:nth-child(2) {
  margin-top: 0;
}
#articles-single-content .container article .people .inner-left {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  box-sizing: content-box;
  overflow: hidden;
  border: 7px solid #fff;
}
#articles-single-content .container article .people .inner-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#articles-single-content .container article .people .inner-right {
  width: 692px;
}
#articles-single-content .container article .people .inner-right .name {
  font-size: 21px;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #36322b;
}
#articles-single-content .container article .people .inner-right .en-name {
  padding-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #36322b;
}
#articles-single-content .container article .people .inner-right .txt {
  padding-top: 16px;
  color: #36322b;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 2;
}
#articles-single-content .container article .people .inner-right .sns {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  padding-top: 20px;
  float: left;
}
#articles-single-content .container article .people .inner-right .sns .fb {
  width: 10.19px;
  height: 17.83px;
  background: url(assets/images/sns-icons/icon-facebook-gold.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns .tw {
  width: 19.41px;
  height: 15.95px;
  background: url(assets/images/sns-icons/icon-twitter-gold.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns .in {
  width: 18.76px;
  height: 18.76px;
  background: url(assets/images/sns-icons/icon-instagram-gold.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns .yt {
  width: 18.5px;
  height: 12.95px;
  background: url(assets/images/sns-icons/yt.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns .link {
  width: 15.8px;
  height: 18px;
  background: url(assets/images/sns-icons/link.svg) no-repeat;
  background-size: contain;
}
#articles-single-content .container article .people .inner-right .sns a {
  display: block;
  width: 100%;
  height: 100%;
}
#articles-single-content .container article .people .inner-right .to-list {
  position: relative;
  bottom: 6px;
  padding-top: 27px;
  float: right;
  font-size: 12px;
}
#articles-single-content .container article .people .inner-right .to-list a {
  padding-bottom: 5px;
  border-bottom: 1px solid #905c40;
  color: #905c40;
  text-decoration: none;
}
#articles-single-content .container article .information {
  margin: 0 0 80px;
}
#articles-single-content .container article .information h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 20px;
  color: #905c40;
  line-height: 2.4;
}
#articles-single-content .container article .information .information-main {
  margin: 0 0 20px;
}
#articles-single-content .container article .information .information-main table {
  width: 100%;
  border-collapse: collapse;
  border-top: solid #e6e1dc 1px;
}
#articles-single-content .container article .information .information-main table th {
  padding: 20px 20px 20px 0;
  font-size: 12px;
  color: #b4a698;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid #e6e1dc 1px;
  width: 10%;
}
#articles-single-content .container article .information .information-main table td {
  font-size: 13px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
  text-align: left;
  vertical-align: middle;
  padding: 20px 20px 20px 0;
  border-bottom: solid #e6e1dc 1px;
  width: 45%;
}
#articles-single-content .container article .information .information-main table td a {
  color: #003bff;
}
#articles-single-content .container article .information .information-sub {
  display: flex;
}
#articles-single-content .container article .information .information-sub .author {
  width: 50%;
}
#articles-single-content .container article .information .information-sub .author table {
  width: 100%;
  border-collapse: collapse;
}
#articles-single-content .container article .information .information-sub .author table th {
  padding: 0 20px 10px 0;
  font-size: 12px;
  color: #b4a698;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  width: 20%;
}
#articles-single-content .container article .information .information-sub .author table td {
  font-size: 13px;
  text-align: left;
  vertical-align: middle;
  padding: 0 0 10px 0;
}
#articles-single-content .container article .information .information-sub .author table td a {
  color: #003bff;
}
#articles-single-content .container article .information .information-sub .sns {
  width: 50%;
}
#articles-single-content .container article .information .information-sub .sns h4 {
  font-size: 12px;
  color: #b4a698;
  font-weight: 500;
  margin: 0 0 20px;
}
#articles-single-content .container article .information .information-sub .sns ul {
  display: flex;
  align-items: center;
}
#articles-single-content .container article .information .information-sub .sns ul li {
  margin: 0 20px 0 0;
}
#articles-single-content .container article .related {
  margin: 0 0 80px;
}
#articles-single-content .container article .related p {
  padding: 40px 0 0;
}
#articles-single-content .container article .related h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 30px;
  color: #937a63;
}
#articles-single-content .container article .related .related-posts {
  border-top: solid #e6e1dc 1px;
}
#articles-single-content .container article .related .related-posts .post {
  border-bottom: solid #e6e1dc 1px;
}
#articles-single-content .container article .related .related-posts .post a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: url(./assets/images/arrow-br.svg) no-repeat center right 12px;
  transition: 0.4s ease-in-out;
}
#articles-single-content .container article .related .related-posts .post a:hover {
  background: url(./assets/images/arrow-br.svg) no-repeat center right;
  text-decoration: none;
  opacity: 0.65;
}
#articles-single-content .container article .related .related-posts .post figure {
  width: 20%;
  margin: 0 5% 0 0;
}
#articles-single-content .container article .related .related-posts .post p {
  width: 75%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

#articles-single-other {
  padding: 60px 0 120px 0;
}
#articles-single-other h3 {
  font-size: 24px;
  margin: 0 0 60px;
  text-align: center;
}
#articles-single-other ul {
  display: flex;
  flex-wrap: wrap;
}
#articles-single-other ul li {
  width: 349px;
  margin: 0 51px 60px 0;
}
#articles-single-other ul li a {
  display: block;
}
#articles-single-other ul li figure {
  /*width:100%;
  height:233px;*/
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
  aspect-ratio: 3/2;
}
#articles-single-other ul li figure a {
  transition: 0.4s ease-in-out;
}
#articles-single-other ul li figure a:hover {
  opacity: 0.8;
}
#articles-single-other ul li figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
#articles-single-other ul li .cat {
  margin: 0 0 20px;
}
#articles-single-other ul li .cat span {
  color: #fff;
  font-size: 11px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  font-weight: 600;
}
#articles-single-other ul li .cat.cat01 span {
  background-color: #1e986d;
}
#articles-single-other ul li .cat.cat02 span {
  background-color: #397bbe;
}
#articles-single-other ul li .cat.cat03 span {
  background-color: #cb883a;
}
#articles-single-other ul li h3 {
  font-size: 16px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin: 0 0 18px;
  line-height: 1.75;
  text-align: left;
}
#articles-single-other ul li h3 a {
  transition: 0.4s ease-in-out;
}
#articles-single-other ul li h3 a:hover {
  text-decoration: none;
  opacity: 0.65;
}
#articles-single-other ul li p {
  font-size: 13px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #6c6c6c;
}
#articles-single-other ul li .tags {
  padding: 24px 0 0;
  line-height: 2;
}
#articles-single-other ul li .tags a {
  display: inline-block;
  color: #905c40;
  font-size: 13px;
  padding: 5px 9px;
  border-radius: 20px;
  margin: 0 5px 0 0;
  background-color: #fff;
  transition: 0.4s ease-in-out;
}
#articles-single-other ul li .tags a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #905c40;
}
#articles-single-other ul li:nth-child(4n) {
  margin: 0 0 80px;
}

@media screen and (max-width: 1700px) {
  #articles-single-other {
    padding: 60px 50px 120px;
  }
  #articles-single-other ul li {
    width: 22%;
    margin: 0 4% 60px 0;
  }
  #articles-single-other ul li:nth-child(4n) {
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 1000px) {
  #articles-single-header .copy .wrap {
    margin: 0 40px;
  }
  #articles-single-header .copy .wrap .title h2 {
    width: auto;
  }
  #articles-single-content .container {
    margin: 0;
  }
  #articles-single-content .container article {
    padding: 60px 0 0;
  }
  #articles-single-content .container article .body {
    padding: 0 40px;
  }
  #articles-single-content .container article .body figure {
    margin: 0 -11px 60px;
  }
  #articles-single-content .container article .body figure figcaption {
    padding: 10px 11px 0;
  }
  #articles-single-content .container article .body figure.full-width {
    margin: 0 -40px 100px;
  }
  #articles-single-content .container article .body figure.full-width figure figcaption {
    padding: 0 40px;
  }
  #articles-single-content .container article .body .content-wide {
    margin: 0 -40px;
  }
  #articles-single-content .container article .body .content-wide .images {
    width: 100%;
    display: flex;
  }
  #articles-single-content .container article .body .content-wide .images img {
    width: 50%;
  }
  #articles-single-content .container article .body .content-wide p {
    margin: 0;
    padding: 10px 40px 0;
  }
  #articles-single-content .container article .people {
    padding: 0 26px;
  }
  #articles-single-content .container article .information {
    padding: 0 26px;
  }
  #articles-single-content .container article .related {
    padding: 0 26px;
  }
}
@media screen and (max-width: 768px) {
  #articles-single-header {
    height: auto;
    min-height: auto;
  }
  #articles-single-header:before {
    content: none;
  }
  #articles-single-header .image {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 220px;
  }
  #articles-single-header .copy {
    position: static;
    width: auto;
    height: auto;
    padding: 20px 26px 0;
  }
  #articles-single-header .copy .wrap {
    height: auto;
    margin: 0;
    display: block;
  }
  #articles-single-header .copy .wrap .title {
    width: 100%;
    padding: 0;
  }
  #articles-single-header .copy .wrap .title .meta {
    margin: 0 0 35px;
    color: #937a63;
  }
  #articles-single-header .copy .wrap .title .meta .cat span:after {
    background-color: #937a63;
  }
  #articles-single-header .copy .wrap .title h2 {
    width: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #36322b;
    margin: 0 0 35px;
  }
  #articles-single-header .copy .wrap .title .tags a {
    color: #937a63;
    border: solid #937a63 1px;
  }
  #articles-single-content .container {
    margin: 0;
  }
  #articles-single-content .container article {
    padding: 60px 0 0;
  }
  #articles-single-content .container article .lead-block {
    color: #937a63;
    padding: 0 26px 0 22px;
    border-left: solid #937a63 4px;
    margin: 0 -26px 40px;
  }
  #articles-single-content .container article .lead-block p {
    font-size: 15px;
  }
  #articles-single-content .container article #toc_container {
    margin: 0 0 40px;
  }
  #articles-single-content .container article #toc_container h3 {
    margin: 0 0 20px;
  }
  #articles-single-content .container article #toc_container ul li a:before {
    font-size: 15px;
  }
  #articles-single-content .container article .body {
    margin: 0 0 40px;
    padding: 0 26px;
  }
  #articles-single-content .container article .body h2 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  #articles-single-content .container article .body h3 {
    font-size: 15px;
    margin: 0 0 20px;
  }
  #articles-single-content .container article .body p {
    font-size: 15px;
    margin: 0 0 30px;
    line-height: 2.2;
  }
  #articles-single-content .container article .body blockquote {
    padding: 20px;
  }
  #articles-single-content .container article .body blockquote p {
    margin: 0;
  }
  #articles-single-content .container article .body figure {
    max-height: none;
  }
  #articles-single-content .container article .body figure figcaption {
    font-size: 12px;
    padding: 10px 11px 0;
  }
  #articles-single-content .container article .body figure.wp-block-gallery {
    margin: 0 -11px 30px;
    max-height: none;
  }
  #articles-single-content .container article .body figure.wp-block-gallery figure {
    width: 100% !important;
    /*display:block;*/
    margin: 0 0 15px;
    max-height: none;
  }
  #articles-single-content .container article .body figure.wp-block-gallery figure img {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body figure.wp-block-gallery figure figcaption {
    position: static;
    padding: 10px 11px 0;
  }
  #articles-single-content .container article .body figure.full-width {
    display: block;
    margin: 0 -26px;
    max-height: none;
  }
  #articles-single-content .container article .body figure.full-width figure {
    display: block;
    width: 100% !important;
    margin: 0 0 36px;
  }
  #articles-single-content .container article .body figure.full-width figure img {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body figure.full-width figure figcaption {
    position: static;
    padding: 20px 26px 0;
  }
  #articles-single-content .container article .body .image-double figure {
    display: block;
  }
  #articles-single-content .container article .body .image-double figure img {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body .image-double p {
    padding: 10px 0 0;
    font-size: 12px;
  }
  #articles-single-content .container article .body .content-wide {
    width: auto;
    position: relative;
    padding: 0 0 40px;
    margin: 0 -40px;
  }
  #articles-single-content .container article .body .content-wide .images {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body .content-wide .images img {
    display: block;
    width: 100%;
  }
  #articles-single-content .container article .body .content-wide p {
    margin: 0 40px;
    padding: 10px 0 0;
    font-size: 12px;
  }
  #articles-single-content .container article .people {
    margin: 0 0 40px;
    padding-bottom: 6.93vw;
  }
  #articles-single-content .container article .people h3 {
    padding-bottom: 2.13vw;
    margin-bottom: 5.07vw;
  }
  #articles-single-content .container article .people .inner {
    display: block;
    width: 100%;
    clear: both;
    padding-top: 7.82vw;
  }
  #articles-single-content .container article .people .inner:nth-child(1),
  #articles-single-content .container article .people .inner:nth-child(2) {
    padding-top: 0;
  }
  #articles-single-content .container article .people .inner-left {
    width: 29.33vw;
    height: 29.33vw;
    margin-right: 5.33vw;
    float: left;
  }
  #articles-single-content .container article .people .inner-right {
    width: auto;
  }
  #articles-single-content .container article .people .inner-right .name {
    padding-top: 9.87vw;
    font-size: 16px;
  }
  #articles-single-content .container article .people .inner-right .en-name {
    padding-top: 1.87vw;
    font-size: 12px;
  }
  #articles-single-content .container article .people .inner-right .txt {
    padding-top: 3.47vw;
    font-size: 12px;
    clear: both;
  }
  #articles-single-content .container article .people .inner-right .sns {
    padding-top: 5.33vw;
    padding-left: 1.33vw;
    column-gap: 25px;
  }
  #articles-single-content .container article .people .inner-right .sns .fb {
    width: 10.19px;
    height: 17.83px;
  }
  #articles-single-content .container article .people .inner-right .sns .tw {
    width: 19.41px;
    height: 15.95px;
  }
  #articles-single-content .container article .people .inner-right .sns .in {
    width: 18.76px;
    height: 18.76px;
  }
  #articles-single-content .container article .people .inner-right .sns .yt {
    width: 18.76px;
    height: 18.76px;
  }
  #articles-single-content .container article .people .inner-right .sns .link {
    width: 15.8px;
    height: 18px;
  }
  #articles-single-content .container article .people .inner-right .to-list {
    padding-top: 5.33vw;
    bottom: 2px;
  }
  #articles-single-content .container article .people .inner-right .to-list a {
    padding-bottom: 3px;
  }
  #articles-single-content .container article .information {
    content: "";
    display: block;
    clear: both;
    margin: 0 0 40px;
  }
  #articles-single-content .container article .information h3 {
    padding-top: 15.2vw;
    border-top: 1px solid #e6e1dc;
  }
  #articles-single-content .container article .information .information-main table {
    display: block;
  }
  #articles-single-content .container article .information .information-main table tbody {
    display: block;
  }
  #articles-single-content .container article .information .information-main table tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid #e6e1dc 1px;
    padding: 10px 0;
  }
  #articles-single-content .container article .information .information-main table th {
    display: block;
    padding: 10px 0;
    font-size: 12px;
    color: #937a63;
    font-weight: 500;
    text-align: left;
    border-bottom: none;
    width: 25%;
  }
  #articles-single-content .container article .information .information-main table td {
    display: block;
    font-size: 13px;
    text-align: left;
    padding: 10px 0;
    border-bottom: none;
  }
  #articles-single-content .container article .information .information-main table td.name {
    width: 75%;
  }
  #articles-single-content .container article .information .information-main table td.link {
    width: 75%;
    margin: 0 0 0 25%;
    padding: 0 0 10px;
    word-break: break-all;
  }
  #articles-single-content .container article .information .information-sub {
    display: block;
  }
  #articles-single-content .container article .information .information-sub .author {
    width: auto;
    padding: 0 0 10px;
    margin: 0 0 20px;
    border-bottom: solid #e6e1dc 1px;
  }
  #articles-single-content .container article .information .information-sub .author table {
    display: block;
  }
  #articles-single-content .container article .information .information-sub .author table tbody {
    display: block;
  }
  #articles-single-content .container article .information .information-sub .author table tr {
    display: flex;
  }
  #articles-single-content .container article .information .information-sub .author table th {
    display: block;
    text-align: left;
    width: 25%;
  }
  #articles-single-content .container article .information .information-sub .author table td {
    display: block;
    width: 75%;
  }
  #articles-single-content .container article .information .information-sub .sns {
    width: auto;
    display: flex;
    align-items: center;
    padding: 0 0 20px;
    border-bottom: solid #e6e1dc 1px;
  }
  #articles-single-content .container article .information .information-sub .sns h4 {
    width: 25%;
    margin: 0;
  }
  #articles-single-content .container article .information .information-sub .sns ul {
    width: 75%;
    align-items: center;
  }
  #articles-single-content .container article .related {
    margin: 0 0 40px;
  }
  #articles-single-content .container article .related h3 {
    margin: 0 0 20px;
    color: #937a63;
  }
  #articles-single-content .container article .related .related-posts .post a {
    display: block;
    background: none;
  }
  #articles-single-content .container article .related .related-posts .post figure {
    width: auto;
    margin: 0 0 14px;
  }
  #articles-single-content .container article .related .related-posts .post p {
    width: auto;
    font-size: 16px;
    line-height: 1.75;
    position: relative;
    padding: 0 20px 0 0;
    background: url(./assets/images/arrow-br.svg) no-repeat center right;
  }
  #articles-single-other {
    padding: 16vw 4vw 21.6vw;
  }
  #articles-single-other h3 {
    font-size: 24px;
    margin: 0 0 10.67vw;
  }
  #articles-single-other ul {
    display: block;
  }
  #articles-single-other ul.alm-listing .alm-reveal {
    display: block;
  }
  #articles-single-other ul.alm-listing .alm-reveal li {
    width: auto;
    margin: 0 0 40px;
  }
  #articles-single-other ul.alm-listing .alm-reveal li figure {
    height: 322px;
  }
  #articles-single-other ul.alm-listing .alm-reveal li:nth-child(3),
  #articles-single-other ul.alm-listing .alm-reveal li:nth-child(7) {
    margin: 0 0 40px;
  }
  #articles-single-other ul.alm-listing .alm-reveal li:nth-child(4n) {
    margin: 0 0 40px;
  }
  #articles-single-other ul li {
    width: auto;
    margin: 0 0 40px;
  }
  #articles-single-other ul li figure {
    /*width:100%;
    height:322px;*/
    overflow: hidden;
    position: relative;
    margin: 0 0 20px;
  }
  #articles-single-other ul li .cat {
    margin: 0 12px 20px;
  }
  #articles-single-other ul li .cat span {
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 5px 10px;
    font-weight: 600;
  }
  #articles-single-other ul li h3 {
    font-size: 15px;
    margin: 0 12px 14px;
  }
  #articles-single-other ul li p {
    font-size: 12px;
    margin: 0 12px;
  }
  #articles-single-other ul li .tags {
    padding: 14px 12px 0;
  }
  #articles-single-other ul li .tags a {
    font-size: 10px;
  }
  #articles-single-other ul li:nth-child(4n) {
    margin: 0 0 40px;
  }
}
.single-column {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0;
}
.single-column #toc_container {
  display: none;
}
.single-column .head {
  width: 25%;
}
.single-column .head h2 {
  font-size: 36px;
}
.single-column .content {
  width: 75%;
}
.single-column .content .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 80px;
}
.single-column .content .meta .cat {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.single-column .content .meta .cat span {
  padding: 0 60px 0 0;
  position: relative;
  display: inline-block;
  color: #937a63;
}
.single-column .content .meta .cat span:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  right: 10px;
  top: 50%;
  background-color: #937a63;
}
.single-column .content .meta .cat strong {
  font-weight: 500;
  color: #937a63;
}
.single-column .content .meta .date {
  font-size: 12px;
  color: #937a63;
}
.single-column .content .title {
  margin: 0 0 60px;
  padding: 0 0 60px;
  border-bottom: solid #e6e1dc 1px;
}
.single-column .content .title h3 {
  font-size: 20px;
}
.single-column .content .body h3 {
  font-size: 16px;
  color: #937a63;
  margin: 0 0 50px;
}
.single-column .content .body p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 40px;
}
.single-column .content .body figure {
  padding: 20px 0 0;
  margin: 0 0 60px;
}
.single-column .content .body figure figcaption {
  font-size: 13px;
  padding: 10px 0 0;
  margin: 0;
}
.single-column .content .body figure iframe {
  position: initial !important;
}
.single-column .content .body .wp-block-columns {
  margin: 0;
}
.single-column .content .pagenavi {
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
}
.single-column .content .pagenavi span {
  width: 100%;
}
.single-column .content .pagenavi span a {
  display: inline-block;
  border-radius: 30px;
  border: solid #937a63 1px;
  color: #937a63;
  font-size: 11px;
  position: relative;
  transition: 0.2s ease;
}
.single-column .content .pagenavi span a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #937a63;
}
.single-column .content .pagenavi span a:before {
  content: "";
  width: 7px;
  height: 6px;
  position: absolute;
  top: 50%;
  margin: -3px 0 0;
}
.single-column .content .pagenavi span.prev {
  text-align: left;
}
.single-column .content .pagenavi span.prev a {
  padding: 10px 40px 10px 50px;
}
.single-column .content .pagenavi span.prev a:before {
  background: url(./assets/images/arrow-br_l.svg) no-repeat center/contain;
  left: 30px;
}
.single-column .content .pagenavi span.next {
  text-align: right;
}
.single-column .content .pagenavi span.next a {
  padding: 10px 50px 10px 40px;
}
.single-column .content .pagenavi span.next a:before {
  background: url(./assets/images/arrow-br.svg) no-repeat center/contain;
  right: 30px;
}
.single-column .content .related {
  padding: 100px 0 0;
}
.single-column .content .related h3 {
  font-size: 24px;
  margin: 0 0 40px;
}
.single-column .content .related ul {
  border-top: solid #e6e1dc 1px;
}
.single-column .content .related ul li {
  border-bottom: solid #e6e1dc 1px;
}
.single-column .content .related ul li a {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(./assets/images/arrow-br.svg) no-repeat center right 12px;
  transition: 0.4s ease-in-out;
}
.single-column .content .related ul li a:hover {
  opacity: 0.65;
  text-decoration: none;
  background: url(./assets/images/arrow-br.svg) no-repeat center right;
}
.single-column .content .related ul li a figure {
  width: 183px;
  height: 122px;
  position: relative;
  overflow: hidden;
}
.single-column .content .related ul li a figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
.single-column .content .related ul li a .related-text {
  width: 80%;
  padding: 0 60px;
}
.single-column .content .related ul li a .related-text .related-meta {
  margin: 0 0 20px;
}
.single-column .content .related ul li a .related-text .related-meta .related-date {
  font-size: 11px;
  margin: 0 20px 0 0;
}
.single-column .content .related ul li a .related-text .related-meta .related-cat {
  color: #937a63;
  font-size: 11px;
}
.single-column .content .related ul li a .related-text h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 2;
}

@media screen and (max-width: 1280px) {
  .single-column {
    padding: 120px 40px;
  }
}
@media screen and (max-width: 768px) {
  .single-column {
    display: block;
    margin: 0;
    padding: 60px 26px;
  }
  .single-column .head {
    width: auto;
    text-align: center;
    margin: 0 0 60px;
  }
  .single-column .head h2 {
    font-size: 24px;
  }
  .single-column .content {
    width: auto;
    padding: 0;
  }
  .single-column .content .meta {
    margin: 0 0 40px;
  }
  .single-column .content .title {
    margin: 0 0 40px;
    padding: 0 0 40px;
  }
  .single-column .content .title h3 {
    font-size: 15px;
  }
  .single-column .content .body h3 {
    font-size: 15px;
    margin: 0 0 30px;
  }
  .single-column .content .body p {
    font-size: 15px;
    margin: 0 0 30px;
  }
  .single-column .content .body figure {
    padding: 20px 0 0;
    margin: 0 -20px 40px;
  }
  .single-column .content .body figure figcaption {
    padding: 0 20px;
  }
  .single-column .content .pagenavi span a {
    display: block;
  }
  .single-column .content .pagenavi span.prev {
    text-align: center;
    margin: 0 1% 0 0;
  }
  .single-column .content .pagenavi span.prev a {
    padding: 10px 30px 10px 40px;
  }
  .single-column .content .pagenavi span.prev a:before {
    left: 20px;
  }
  .single-column .content .pagenavi span.next {
    text-align: center;
    margin: 0 0 0 1%;
  }
  .single-column .content .pagenavi span.next a {
    padding: 10px 40px 10px 30px;
  }
  .single-column .content .pagenavi span.next a:before {
    right: 20px;
  }
  .single-column .content .related {
    padding: 60px 0 0;
  }
  .single-column .content .related ul li a {
    display: block;
    background: none;
  }
  .single-column .content .related ul li a figure {
    width: 100%;
    height: 215px;
    margin: 0 0 20px;
  }
  .single-column .content .related ul li a .related-text {
    width: auto;
    padding: 0;
  }
  .single-column .content .related ul li a .related-text h3 {
    font-size: 14px;
    padding: 0 20px 0 0;
    background: url(./assets/images/arrow-br.svg) no-repeat center right;
  }
}
.people-single {
  padding: 75px 0 81.5px;
  background-color: #e6e1dc;
}
.people-single-inner {
  width: 1025px;
  margin: 0 auto;
  display: flex;
  column-gap: 50px;
}
.people-single-left {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  box-sizing: content-box;
  overflow: hidden;
  border: 7px solid #fff;
}
.people-single-left img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.people-single-right {
  width: 768px;
}
.people-single-name {
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
.people-single-en-name {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 500;
}
.people-single-txt {
  padding-top: 16px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
.people-single-txt + p {
  line-height: 2;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
.people-single-sns {
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding-top: 22px;
}
.people-single-sns .fb {
  width: 10.19px;
  height: 17.83px;
  background: url(assets/images/sns-icons/icon-facebook-gold.svg) no-repeat;
  background-size: contain;
}
.people-single-sns .tw {
  width: 19.41px;
  height: 15.95px;
  background: url(assets/images/sns-icons/icon-twitter-gold.svg) no-repeat;
  background-size: contain;
}
.people-single-sns .in {
  width: 18.76px;
  height: 18.76px;
  background: url(assets/images/sns-icons/icon-instagram-gold.svg) no-repeat;
  background-size: contain;
}
.people-single-sns .yt {
  width: 18.5px;
  height: 12.95px;
  background: url(assets/images/sns-icons/yt.svg) no-repeat;
  background-size: contain;
}
.people-single-sns .link {
  width: 15.8px;
  height: 18px;
  background: url(assets/images/sns-icons/link.svg) no-repeat;
  background-size: contain;
}
.people-single-sns a {
  display: block;
  width: 100%;
  height: 100%;
}

.relation-articles {
  padding: 52px 0;
}
.relation-articles .articles-content .content {
  display: none;
  animation: appear 0.2s ease;
}
.relation-articles .articles-content .content.active {
  display: block;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.relation-articles ul {
  display: flex;
  flex-wrap: wrap;
}
.relation-articles ul.alm-listing {
  display: block;
}
.relation-articles ul.alm-listing .alm-reveal {
  display: flex;
  flex-wrap: wrap;
}
.relation-articles ul.alm-listing .alm-reveal li {
  width: 349px;
}
.relation-articles ul.alm-listing .alm-reveal li figure {
  /*height:233px;*/
}
.relation-articles ul li {
  width: 349px;
  margin: 0 51px 60px 0;
}
.relation-articles ul li:nth-child(4n) {
  margin: 0;
}
.relation-articles ul li a {
  display: block;
}
.relation-articles ul li figure {
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
  aspect-ratio: 3/2;
}
.relation-articles ul li figure a {
  transition: 0.4s ease-in-out;
}
.relation-articles ul li figure a:hover {
  opacity: 0.8;
}
.relation-articles ul li figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}
.relation-articles ul li .cat {
  margin: 0 0 20px;
}
.relation-articles ul li .cat span {
  color: #fff;
  font-size: 11px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  font-weight: 600;
}
.relation-articles ul li .cat.cat01 span {
  background-color: #1e986d;
}
.relation-articles ul li .cat.cat02 span {
  background-color: #397bbe;
}
.relation-articles ul li .cat.cat03 span {
  background-color: #cb883a;
}
.relation-articles ul li .cat.cat04 span {
  background-color: #e6e1dc;
}
.relation-articles ul li h3 {
  font-size: 16px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  font-weight: bold;
  margin: 0 0 18px;
  line-height: 1.75;
}
.relation-articles ul li h3 a {
  transition: 0.4s ease-in-out;
}
.relation-articles ul li h3 a:hover {
  text-decoration: none;
  opacity: 0.65;
}
.relation-articles ul li p {
  font-family: "YuGothic", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "游ゴシック";
  font-size: 12px;
  line-height: 1.8;
  color: #6c6c6c;
}
.relation-articles ul li .tags {
  padding: 24px 0 0;
  line-height: 2;
}
.relation-articles ul li .tags a {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 5px 8px 3px 9px;
  background: white;
  border-radius: 10px;
  color: #905c40;
  margin-right: 4px;
  transition: 0.4s ease-in-out;
}
.relation-articles ul li .tags a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #905c40;
}
.relation-articles .more {
  text-align: center;
}
.relation-articles .more button {
  display: inline-block;
  padding: 20px;
  width: 320px;
  background-color: #e6e1dc;
  color: #937a63;
  font-size: 13px;
  transition: 0.4s ease;
  border: none;
  cursor: pointer;
}
.relation-articles .more button:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1700px) {
  .people-single {
    padding: 4.36vw 0 4.74vw;
  }
  .people-single-inner {
    width: 59.59vw;
    column-gap: 2.91vw;
  }
  .people-single-left {
    width: 11.63vw;
    height: 11.63vw;
    border-radius: 50%;
  }
  .people-single-right {
    width: 44.65vw;
  }
  .people-single-en-name {
    padding-top: 0.58vw;
  }
  .people-single-txt {
    padding-top: 0.93vw;
  }
  .people-single-sns {
    column-gap: 0.87vw;
    padding-top: 1.28vw;
  }
  .people-single-sns .fb {
    width: 0.59vw;
    height: 1.04vw;
  }
  .people-single-sns .tw {
    width: 1.13vw;
    height: 0.93vw;
  }
  .people-single-sns .in {
    width: 1.09vw;
    height: 1.09vw;
  }
  .people-single-sns .yt {
    width: 1.09vw;
    height: 0.763vw;
  }
  .people-single-sns .link {
    width: 0.957vw;
    height: 1.09vw;
  }
  .people-single-sns a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .relation-articles {
    padding: 40px 50px 130px;
  }
  .relation-articles ul.alm-listing .alm-reveal li {
    width: 22%;
  }
  .relation-articles ul li {
    width: 22%;
    margin: 0 4% 60px 0;
  }
  .relation-articles ul li:nth-child(4n) {
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 1024px) {
  .people-single-sns {
    column-gap: 15px;
  }
  .people-single-sns .fb {
    width: 10.19px;
    height: 17.83px;
  }
  .people-single-sns .tw {
    width: 19.41px;
    height: 15.95px;
  }
  .people-single-sns .in {
    width: 18.76px;
    height: 18.76px;
  }
  .people-single-sns .yt {
    width: 18.5px;
    height: 12.95px;
  }
  .people-single-sns .link {
    width: 15.8px;
    height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .people-single {
    padding-left: 6.93vw;
    padding-right: 6.93vw;
    padding-bottom: 8.27vw;
  }
  .people-single-inner {
    display: block;
    width: 100%;
  }
  .people-single-left {
    width: 29.33vw;
    height: 29.33vw;
    margin: 2.13vw 6.4vw 0 0;
    float: left;
    border-width: 5px;
  }
  .people-single-right {
    width: auto;
  }
  .people-single-name {
    padding-top: 12vw;
    font-size: 16px;
  }
  .people-single-en-name {
    padding-top: 1.87vw;
    font-size: 12px;
  }
  .people-single-txt + p {
    padding-top: 4vw;
    font-size: 12px;
    clear: both;
  }
  .people-single-sns {
    padding-top: 5.33vw;
    column-gap: 25px;
  }
  .relation-articles {
    padding: 4vw 4vw 8vw;
  }
  .relation-articles ul {
    display: block;
  }
  .relation-articles ul.alm-listing .alm-reveal {
    display: block;
  }
  .relation-articles ul.alm-listing .alm-reveal li {
    width: auto;
    margin: 0 0 40px;
  }
  .relation-articles ul.alm-listing .alm-reveal li figure {
    height: 322px;
  }
  .relation-articles ul.alm-listing .alm-reveal li:nth-child(3),
  .relation-articles ul.alm-listing .alm-reveal li:nth-child(7) {
    margin: 0 0 40px;
  }
  .relation-articles ul.alm-listing .alm-reveal li:nth-child(4n) {
    margin: 0 0 40px;
  }
  .relation-articles ul li {
    width: auto;
    margin: 0 0 40px;
  }
  .relation-articles ul li figure {
    /*width:100%;
    height:322px;*/
    overflow: hidden;
    position: relative;
    margin: 0 0 3.47vw;
  }
  .relation-articles ul li .cat {
    margin: 0 12px 20px;
  }
  .relation-articles ul li .cat span {
    color: #fff;
    font-size: 11px;
    display: inline-block;
    line-height: 1;
    padding: 5px 12px;
    font-weight: 600;
  }
  .relation-articles ul li h3 {
    font-size: 15px;
    margin: 0 12px 14px;
  }
  .relation-articles ul li p {
    font-size: 12px;
    margin: 0 12px;
    line-height: 2;
  }
  .relation-articles ul li .tags {
    padding: 20px 12px 0;
    line-height: 1.7;
  }
  .relation-articles ul li .tags a {
    font-size: 10px;
  }
  .relation-articles ul li:nth-child(3) {
    margin: 0 0 40px;
  }
  .relation-articles ul li:nth-child(n + 4) {
    width: auto;
    margin: 0 0 40px;
  }
  .relation-articles ul li:nth-child(n + 4) figure {
    /*height:322px;*/
  }
  .relation-articles ul li:nth-child(4n + 3) {
    margin: 0 0 40px;
  }
  .relation-articles .more {
    display: none;
  }
}
/*----------------------------------
SHOP
----------------------------------*/
#page-header.shop-header {
  padding: 135px 0 108px;
}
#page-header.shop-header .lead {
  width: 801px;
  margin: 60px auto 0;
  line-height: 2;
}

#index-shop {
  padding: 0 0 80px;
}
#index-shop ul {
  display: flex;
  flex-wrap: wrap;
}
#index-shop ul li {
  width: 350px;
  margin: 0 53.33px 80px 0;
}
#index-shop ul li:nth-child(4n) {
  margin: 0 0 80px;
}
#index-shop ul li h3 {
  color: #905c40;
  font-size: 16px;
  margin: 0 0 40px;
}
#index-shop ul li .price {
  font-size: 12px;
  color: #6c6c6c;
  margin: 0 0 15px;
}
#index-shop ul li figure {
  width: 100%;
  height: 233px;
  overflow: hidden;
  aspect-ratio: 1/0.666;
  margin: 0 0 40px;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
#index-shop ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#index-shop ul li .btn {
  width: 100%;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #e6e1dc;
  position: relative;
  transition: 0.4s ease-in-out;
}
#index-shop ul li .btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  background: url(./assets/images/shop-btn-arrow.svg) no-repeat center/contain;
  width: 7px;
  height: 6px;
  margin: -3px 0 0;
  transition: 0.4s ease-in-out;
}
#index-shop ul li .btn span {
  font-size: 14px;
  color: #905c40;
  font-weight: 500;
  position: relative;
  transition: 0.4s ease-in-out;
}
#index-shop ul li a {
  display: block;
  border-top: solid #905c40 3px;
  padding: 25px 0 0;
  transition: 0.4s ease-in-out;
}
#index-shop ul li a:hover {
  opacity: 1;
  text-decoration: none;
}
#index-shop ul li a:hover figure {
  opacity: 0.8;
}
#index-shop ul li a:hover .btn {
  background-color: #905c40;
}
#index-shop ul li a:hover .btn:after {
  background: url(./assets/images/shop-btn-arrow_w.svg) no-repeat center/contain;
}
#index-shop ul li a:hover .btn span {
  color: #fff;
}

@media screen and (max-width: 1700px) {
  #page-header.shop-header {
    padding: 7.85vw 0 6.28vw;
  }
  #page-header.shop-header .lead {
    width: 46.57vw;
    margin: 3.49vw auto 0;
  }
  #index-shop {
    padding: 0 50px 80px;
  }
  #index-shop ul {
    /*display:flex;
    flex-wrap:wrap;*/
  }
  #index-shop ul li {
    width: 22%;
    margin: 0 4% 80px 0;
  }
  #index-shop ul li:nth-child(4n) {
    margin: 0 0 80px;
  }
  #index-shop ul li h3 {
    /*color:$color-all;
    font-size:$fsize-m;
    margin:0 0 40px;*/
  }
  #index-shop ul li .price {
    /*font-size:$fsize-xxs;
    color:$color06;
    margin:0 0 15px;*/
  }
  #index-shop ul li figure {
    height: auto;
    /*width:100%;
    height:233px;
    overflow:hidden;
    aspect-ratio:1 / 0.666;
    margin:0 0 40px;
    opacity:1;
    transition:$transition;*/
  }
  #index-shop ul li figure img {
    /*width:100%;
    height:100%;
    object-fit:cover;*/
  }
  #index-shop ul li .btn {
    /*width:100%;
    height:48px;
    line-height:48px;
    text-align:center;
    background-color:$bg02;
    position:relative;
    transition:$transition;*/
  }
  #index-shop ul li .btn:after {
    /*content:"";
    position:absolute;
    top:50%;
    right:15px;
    background:url(./assets/images/shop-btn-arrow.svg) no-repeat center /contain;
    width:7px;
    height:6px;
    margin:-3px 0 0;
    transition:$transition;*/
  }
  #index-shop ul li .btn span {
    /*font-size:$fsize-s;
    color:$color-all;
    font-weight:500;
    position:relative;
    transition:$transition;*/
  }
  #index-shop ul li a {
    /*display:block;
    border-top:solid $color-all 3px;
    padding:25px 0 0;
    transition:$transition;*/
  }
  #index-shop ul li a:hover {
    /*opacity:1;
    text-decoration:none;*/
  }
  #index-shop ul li a:hover figure {
    /*opacity:$op8;*/
  }
  #index-shop ul li a:hover .btn {
    /*background-color:$color-all;*/
  }
  #index-shop ul li a:hover .btn:after {
    /*background:url(./assets/images/shop-btn-arrow_w.svg) no-repeat center /contain;*/
  }
  #index-shop ul li a:hover .btn span {
    /*color:$white;*/
  }
}
@media screen and (max-width: 768px) {
  #page-header.shop-header {
    padding: 12vw 0 13.333vw;
  }
  #page-header.shop-header h2 {
    font-size: 5.067vw;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
  }
  #page-header.shop-header .lead {
    width: 86.13vw;
    margin: 10.667vw auto 0;
    text-align: justify;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック";
    font-size: 4vw;
  }
  #index-shop {
    padding: 0;
    width: 86.13vw;
    margin: 0 auto;
  }
  #index-shop ul {
    display: block;
  }
  #index-shop ul li {
    width: auto;
    margin: 0 0 16vw 0;
  }
  #index-shop ul li:nth-child(4n) {
    margin: 0 0 16vw;
  }
  #index-shop ul li h3 {
    font-size: 4.267vw;
    margin: 0 0 10.667vw;
  }
  #index-shop ul li .price {
    font-size: 3.2vw;
    margin: 0 0 6.4vw;
  }
  #index-shop ul li figure {
    margin: 0 0 4vw;
  }
  #index-shop ul li .btn {
    height: 12.8vw;
    line-height: 12.8vw;
  }
  #index-shop ul li .btn:after {
    right: 4vw;
    width: 1.867vw;
    height: 1.6vw;
    margin: -0.8vw 0 0;
  }
  #index-shop ul li a {
    border-top: solid #905c40 0.8vw;
    padding: 6.667vw 0 0;
  }
}
/* WHITE PAPER DOWNLOAD */
.wp-content {
  margin-bottom: 120px;
}
.wp-content .inner {
  width: 90.7vw;
  max-width: 1560px;
  margin: 0 auto;
}
.wp-content .wp-flex > * {
  width: 48.21%;
}
.wp-content .wp-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 58px;
}
.wp-content .wp-flex .left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background: #e6e1dc;
  align-self: flex-start;
}
.wp-content .wp-flex .left img {
  width: 33.61%;
  height: auto;
  box-shadow: 0px 3px 15px -6px #000000;
}
.wp-content .wp-flex .right {
  padding: 3.45% 0;
  border-top: 3px solid #905c40;
}
.wp-content .wp-flex .right h3 {
  font-weight: 500;
  font-size: 28px;
  color: #905c40;
  margin-bottom: 40px;
}
.wp-content .wp-flex .right .text {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
  width: 86.57%;
}
.wp-content .wp-flex .right .btn iframe {
  min-width: 320px;
  max-width: 651px;
  height: 48px;
  line-height: 72px;
  border: 0;
}
.wp-content .wp-flex .right .small-text {
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 37px;
}
.wp-content .wp-flex .right .small-text a {
  color: #905c40;
}
.wp-content .wp-flex .right small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.75;
}
.wp-content .wp-flex .right small:before {
  content: "※";
}
.wp-content .wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 54px;
}
.wp-content .wp-grid .grid-item {
  display: flex;
  justify-content: center;
  padding: 27px 0;
  background: #e6e1dc;
}
.wp-content .wp-grid .grid-item img {
  width: 65.33%;
  height: auto;
  box-shadow: 0px 3px 15px -6px #000000;
}

.wp-form {
  margin-bottom: 80px;
}
.wp-form .inner {
  padding: 63px 0 53px;
  background: url(assets/images/newsletter_bg.png) no-repeat center/cover;
}
.wp-form article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wp-form h3 {
  width: 266px;
  margin-bottom: 41.5px;
}
.wp-form p {
  margin-bottom: 43px;
  color: #fff;
  line-height: 2;
  text-align: center;
  font-weight: 600;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}

@media screen and (max-width: 768px) {
  .wp-download + footer {
    border-top: none;
  }
  .wp-download #page-header {
    padding: 13.33vw 0 9.33vw;
  }
  .wp-download #page-header h2 {
    font-size: 5.07vw;
  }
  .wp-content {
    margin-bottom: 8vw;
  }
  .wp-content .inner {
    width: 86.13vw;
  }
  .wp-content .wp-flex > * {
    width: auto;
  }
  .wp-content .wp-flex {
    flex-direction: column-reverse;
    margin-bottom: 4vw;
  }
  .wp-content .wp-flex .left {
    width: 92vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 6.13vw 0;
  }
  .wp-content .wp-flex .left img {
    width: 33.33%;
  }
  .wp-content .wp-flex .right {
    padding: 7.2vw 0;
  }
  .wp-content .wp-flex .right h3 {
    font-size: 4.27vw;
  }
  .wp-content .wp-flex .right .text {
    width: auto;
    font-size: 4vw;
  }
  .wp-content .wp-flex .right .btn iframe {
    width: 92vw !important;
    height: 27.73vw;
    position: relative;
    transform: translateX(-50%);
    left: 50%;
  }
  .wp-content .wp-flex .right .small-text {
    font-size: 3.2vw;
  }
  .wp-content .wp-flex .right small {
    font-size: 3.2vw;
  }
  .wp-content .wp-grid {
    display: flex;
    gap: initial;
    column-gap: 4vw;
    overflow-x: scroll;
    width: 92vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .wp-content .wp-grid .grid-item {
    flex-shrink: 0;
    padding: 7.2vw 0;
    width: 80%;
  }
  .wp-content .wp-grid .grid-item img {
    width: 56.88%;
  }
  .wp-form {
    margin-bottom: 0;
  }
  .wp-form .inner {
    padding: 14.67vw 0 4vw;
  }
  .wp-form br .pc {
    display: none;
  }
  .wp-form h3 {
    width: 49.07vw;
  }
  .wp-form p {
    width: 86.13vw;
    margin-bottom: 16vw;
    font-size: 4.27vw;
    text-align: initial;
  }
  .wp-form .btn-primary a {
    width: 92vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #e6e1dc;
    color: #905c40;
  }
  .wp-form .btn-primary a:after {
    background: url(./assets/images/shop-btn-arrow.svg) no-repeat center/contain;
  }
}
/* SUPPORTERS */
@media screen and (max-width: 1100px) {
  .supporters br.pc-only {
    display: none;
  }
}
.supporters br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .supporters br.sp {
    display: inline;
  }
}
.supporters #page-header {
  padding-bottom: 69px;
}
@media screen and (max-width: 768px) {
  .supporters #page-header {
    padding-bottom: 12vw;
  }
}
.supporters #page-header p {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
@media screen and (max-width: 1100px) {
  .supporters #page-header p {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .supporters #page-header p {
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
    font-size: 4vw;
    letter-spacing: -0.02em;
    padding-top: 28px;
  }
}

.supporters-content .text-link {
  border-bottom: 1px solid #905c40;
  color: #905c40;
  transition: 0.5s;
  text-decoration: none;
}
.supporters-content .text-link:hover {
  text-decoration: none;
  opacity: 0.5;
  text-decoration: none;
}
.supporters-content .inner {
  width: 90.64vw;
  padding: 42px 0 27px;
}
@media screen and (max-width: 768px) {
  .supporters-content .inner {
    width: 86.13vw;
  }
  .membership .supporters-content .inner {
    padding-top: 0;
  }
}
.supporters-content .benefit,
.supporters-content .method,
.supporters-content .lists,
.supporters-content .precautions {
  position: relative;
  padding-bottom: 89px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit,
  .supporters-content .method,
  .supporters-content .lists,
  .supporters-content .precautions {
    padding-bottom: 11.47vw;
  }
}
.supporters-content .benefit h3,
.supporters-content .method h3,
.supporters-content .lists h3,
.supporters-content .precautions h3 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  font-weight: bold;
  color: #905c40;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit h3,
  .supporters-content .method h3,
  .supporters-content .lists h3,
  .supporters-content .precautions h3 {
    font-size: 4.27vw;
    position: initial;
    margin-bottom: 11.47vw;
  }
}
.supporters-content .benefit p,
.supporters-content .method p,
.supporters-content .lists p,
.supporters-content .precautions p {
  width: 43.84vw;
  margin: 0 auto 60px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit p,
  .supporters-content .method p,
  .supporters-content .lists p,
  .supporters-content .precautions p {
    width: auto;
    margin-bottom: 14.67vw;
    font-size: 4vw;
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
    letter-spacing: -0.02em;
  }
}
.supporters-content .benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #905c40;
  padding-top: 43px;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit {
    padding-top: 4.53vw;
  }
}
.supporters-content .benefit h3 {
  top: 43px;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit h3 {
    top: 4.53vw;
  }
}
.supporters-content .benefit .benefit-row {
  width: 59.36vw;
  margin: 2.67vw auto 3.26vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1280px) {
  .supporters-content .benefit .benefit-row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .benefit-row {
    width: initial;
    flex-direction: column;
    margin-bottom: 10.67vw;
  }
}
.supporters-content .benefit .benefit-row li {
  width: 13.37vw;
}
@media screen and (max-width: 1280px) {
  .supporters-content .benefit .benefit-row li {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .benefit-row li {
    width: initial;
  }
}
.supporters-content .benefit .benefit-row li img {
  margin-bottom: 2.15vw;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .benefit-row li img {
    margin-bottom: 9.87vw;
  }
}
.supporters-content .benefit .benefit-row li a {
  padding: 0.76vw 0.58vw;
  display: block;
  width: 100%;
  color: #fff;
  background: #905c40;
  border-radius: 1.57vw;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  transition: 0.5s;
  pointer-events: none;
  cursor: default;
}
.supporters-content .benefit .benefit-row li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
@media screen and (max-width: 1500px) {
  .supporters-content .benefit .benefit-row li a {
    border-radius: 27px;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .benefit-row li a {
    font-size: 4vw;
    padding: 2.93vw;
    border-radius: 7.2vw;
  }
}
.supporters-content .benefit .benefit-row li a br {
  display: none;
}
@media screen and (max-width: 1500px) {
  .supporters-content .benefit .benefit-row li a br {
    display: inline;
  }
}
@media screen and (max-width: 1280px) {
  .supporters-content .benefit .benefit-row li a br {
    display: none;
  }
}
.supporters-content .benefit .scroll-x {
  overflow: hidden;
  overflow-x: scroll;
}
@media screen and (min-width: 769px) {
  .supporters-content .benefit .scroll-x::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .scroll-x:after {
    content: "scroll →";
    display: block;
    text-align: right;
  }
}
.supporters-content .benefit table {
  width: 78.78vw;
  max-width: 1355px;
  margin: auto;
  border-collapse: collapse;
  border-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit table {
    width: 266.67vw;
    /*375px => 1000px相当*/
  }
}
.supporters-content .benefit table th {
  color: white;
  font-size: 15px;
  font-weight: bold;
  background: #aa9481;
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid #aa9481;
  border-left: 1px solid #c6c6c6;
}
.supporters-content .benefit table th.innactive {
  color: #c8b9ad;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit table th {
    font-size: 4vw;
  }
}
.supporters-content .benefit table td {
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 10px;
  background: #fff;
  border-bottom: 1px solid #c6c6c6;
  border-left: 1px solid #c6c6c6;
}
.supporters-content .benefit table td.bg-primary {
  background: #e6e1dc;
  font-weight: bold;
}
.supporters-content .benefit table td.bg-secondary {
  background: #cbc0b3;
  border-bottom-color: #aa9481;
}
.supporters-content .benefit table td.text-center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit table td {
    font-size: 4vw;
  }
}
.supporters-content .benefit .announce {
  width: 43.83vw;
  padding: 26px 32px;
  margin: 45px auto 0;
  color: #905c40;
  background: #fff;
  border: 1px solid #905c40;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .supporters-content .benefit .announce {
    width: 92vw;
    padding: 4.3vw 5.33vw;
    font-size: 4vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.supporters-content .method {
  border-top: 1px solid #905c40;
  padding-top: 43px;
}
@media screen and (max-width: 768px) {
  .supporters-content .method {
    padding-top: 4.53vw;
  }
}
.supporters-content .method h3 {
  top: 43px;
}
@media screen and (max-width: 768px) {
  .supporters-content .method h3 {
    top: 4.53vw;
  }
}
.supporters-content .method .btn-wrap {
  width: 43.84vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1721px) {
  .supporters-content .method .btn-wrap {
    justify-content: space-around;
  }
}
@media screen and (max-width: 1100px) {
  .supporters-content .method .btn-wrap {
    flex-direction: column;
    row-gap: 2.13vw;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .method .btn-wrap {
    width: 92vw;
    flex-direction: column;
    row-gap: 2.13vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.supporters-content .method .btn-primary a,
.supporters-content .method .btn-secondary a {
  width: 349px;
}
@media screen and (max-width: 1720px) {
  .supporters-content .method .btn-primary a,
  .supporters-content .method .btn-secondary a {
    width: 20.29vw;
  }
}
@media screen and (max-width: 1100px) {
  .supporters-content .method .btn-primary a,
  .supporters-content .method .btn-secondary a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .supporters-content .method .btn-primary a,
  .supporters-content .method .btn-secondary a {
    width: 100%;
  }
}
.supporters-content .lists h3 {
  position: initial;
  margin-bottom: 60px;
  font-size: 16px;
  font-weight: bold;
  color: #36322b;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .supporters-content .lists h3 {
    margin-bottom: 11.47vw;
    font-size: 4.27vw;
    text-align: initial;
  }
}
.supporters-content .lists ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1.74vw;
}
@media screen and (max-width: 768px) {
  .supporters-content .lists ul {
    grid-template-columns: 1fr 1fr;
    gap: 1.87vw;
  }
}
.supporters-content .lists ul li a {
  transition: 0.5s;
}
.supporters-content .lists ul li a:hover {
  opacity: 0.5;
}
.supporters-content .precautions .content {
  width: 43.84vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .supporters-content .precautions .content {
    width: auto;
  }
}
.supporters-content .precautions p {
  margin-bottom: 45px;
  text-align: justify;
  word-break: break-all;
}
.supporters-content .precautions p.text-bold {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #905c40;
}
.supporters-content .precautions ol {
  counter-reset: li;
  text-align: justify;
}
.supporters-content .precautions ol li {
  list-style: none;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .supporters-content .precautions ol li {
    font-family: "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "Noto Sans JP", sans-serif;
    font-size: 4vw;
    letter-spacing: -0.02em;
  }
}
.supporters-content .precautions ol li:before {
  counter-increment: li;
  content: counter(li) ") ";
}

/* サポーター会員規約 */
.membership .precautions {
  border-top: 1px solid #905c40;
  padding-top: 40px;
}
.membership .precautions h3 {
  top: 40px;
}

/* よくある質問 */
@media screen and (max-width: 1100px) {
  .faq br.pc {
    display: none;
  }
}
.faq br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .faq br.sp {
    display: inline;
  }
}
.faq .faq-content {
  margin-bottom: 136px;
}
@media screen and (max-width: 768px) {
  .faq .faq-content {
    margin-bottom: 18.67vw;
  }
}
.faq .faq-content .inner {
  width: 90.64vw;
}
@media screen and (max-width: 768px) {
  .faq .faq-content .inner {
    width: 86.13vw;
  }
}
.faq .faq-content .text-link {
  color: #905c40;
  border-bottom: 1px solid #905c40;
  transition: 0.5s;
}
.faq .faq-content .text-link:hover {
  text-decoration: none;
  opacity: 0.5;
}
.faq dl {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  margin-bottom: 41px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .faq dl {
    font-size: 3.73vw;
  }
}
.faq dl dt {
  border-top: 1px solid #e6e1dc;
  padding: 42px 30px 0;
  font-weight: bold;
  color: #905c40;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .faq dl dt {
    padding: 5.6vw 0 0;
    margin-bottom: 4.27vw;
  }
}
.faq dl dt p {
  text-indent: -1.9em;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .faq dl dt p {
    text-indent: -1.6em;
    margin-left: 1.9em;
  }
}
.faq dl dd {
  padding: 0 30px 51px;
}
@media screen and (max-width: 768px) {
  .faq dl dd {
    padding: 0 0 5.6vw;
  }
}
.faq dl dd p {
  text-indent: -1.9em;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .faq dl dd p {
    text-indent: -1.6em;
    margin-left: 1.9em;
  }
}
.faq dl dd:last-child {
  border-bottom: 1px solid #e6e1dc;
}
.faq .other {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 2;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .faq .other {
    font-size: 3.73vw;
    padding: 0;
  }
}

/* PROJECTS */
.project-single {
  padding-bottom: 108px;
}
@media screen and (max-width: 768px) {
  .project-single {
    padding-bottom: 12.53vw;
  }
}

.project-single-inner {
  width: 90.7vw;
  max-width: 1560px;
  margin: 45px auto 0;
}
@media screen and (max-width: 768px) {
  .project-single-inner {
    width: 86.13vw;
  }
}
.project-single-inner h2 {
  font-size: 38px;
  font-weight: normal;
  line-height: 1.42;
}
@media screen and (max-width: 768px) {
  .project-single-inner h2 {
    font-size: 5.6vw;
  }
}

.project-single__head-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 63px;
}
@media screen and (max-width: 768px) {
  .project-single__head-flex {
    margin-bottom: 6.93vw;
  }
}

.project-single__head-text {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .project-single__head-text {
    font-size: 3.47vw;
  }
}
.project-single__head-text span {
  display: inline-block;
  margin-left: 40px;
  margin-top: -6px;
  font-size: 105px;
  vertical-align: text-top;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .project-single__head-text span {
    display: block;
    margin-left: 0;
    margin-top: 0;
    font-size: 10.67vw;
  }
}

.project-single-image {
  width: 100vw;
  max-width: 1720px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 2/1;
  object-fit: cover;
}

.project-single__movie-wrap {
  width: 100vw;
  max-width: 1720px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
}
.project-single__movie-wrap video {
  display: block;
  margin: auto;
  width: 68.2% !important;
}
@media screen and (max-width: 768px) {
  .project-single__movie-wrap video {
    width: 100% !important;
    aspect-ratio: 2/1;
    object-fit: cover;
  }
}

.project-single__aria {
  position: relative;
  margin-top: 73px;
}
@media screen and (max-width: 768px) {
  .project-single__aria {
    margin-top: 11.07vw;
  }
}
.project-single__aria h3 {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 26px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .project-single__aria h3 {
    position: initial;
    font-size: 4.8vw;
    margin-bottom: 6.93vw;
  }
}
.project-single__aria p {
  font-size: 18px;
  line-height: 2;
  width: 51.92vw;
  max-width: 893px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .project-single__aria p {
    width: auto;
    font-size: 4vw;
  }
}

.aria-approach__tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 27.5px;
  row-gap: 10px;
  width: 51.92vw;
  max-width: 893px;
  margin: 0 auto 16.5px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .aria-approach__tags {
    width: auto;
    column-gap: 7.6vw;
    row-gap: 3.07vw;
    font-size: 3.73vw;
  }
}
.aria-approach__tags li:before {
  content: "#";
}
.aria-approach__tags a {
  text-decoration: none;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .aria-approach__tags a:hover {
    opacity: 0.5;
    text-decoration: none;
  }
}
.aria-approach__tags a:before {
  content: "# ";
}

.project-articles {
  border-top: 1px solid #9e593a;
}
@media screen and (max-width: 768px) {
  .project-articles {
    width: 86.13vw;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles {
    padding: 6.4vw 0 0;
  }
}
.project-articles .relation-articles h2 {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #9e593a;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles h2 {
    font-size: 4.8vw;
    margin-bottom: 7.47vw;
  }
}
.project-articles .relation-articles ul {
  display: initial;
}
.project-articles .relation-articles ul li {
  width: min(349px, 20.29vw) !important;
  margin-right: 2.97vw;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li {
    width: auto !important;
    margin-right: 0;
  }
}
.project-articles .relation-articles ul li:nth-child(4n) {
  margin: 0 51px 60px 0;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li:nth-child(4n) {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li figure {
    margin-bottom: 4.8vw;
    width: 92vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.project-articles .relation-articles ul li date {
  display: block;
  margin-bottom: 20px;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li date {
    margin-bottom: 2.4vw;
    font-size: 3.73vw;
  }
}
.project-articles .relation-articles ul li h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}
@media screen and (max-width: 768px) {
  .project-articles .relation-articles ul li h3 {
    font-size: 4.27vw;
    margin: 0;
  }
}
.project-articles .relation-articles .js-article-slider .slick-prev {
  background: url(./assets/images/slider-prev.svg) no-repeat center/contain;
  width: 62px;
  height: 62px;
  z-index: 10;
}
.project-articles .relation-articles .js-article-slider .slick-prev:before {
  content: none;
}
.project-articles .relation-articles .js-article-slider .slick-prev.slick-disabled {
  display: none !important;
}
.project-articles .relation-articles .js-article-slider .slick-next {
  background: url(./assets/images/slider-next.svg) no-repeat center/contain;
  width: 62px;
  height: 62px;
}
.project-articles .relation-articles .js-article-slider .slick-next:before {
  content: none;
}

.project-head__inner {
  width: 94.19vw;
  max-width: 1620px;
  margin: 94px auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .project-head__inner {
    margin: 3.73vw auto 9.07vw;
    width: 86.13vw;
    flex-direction: column;
  }
}
.project-head h2 {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .project-head h2 {
    font-size: 8.53vw;
    margin-bottom: 9.87vw;
  }
}
.project-head p {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 2;
  margin-left: min(21.34vw, 367px);
}
@media screen and (max-width: 768px) {
  .project-head p {
    font-size: 4vw;
    width: auto;
    margin-left: 0;
  }
}

.project-body__inner {
  width: 94.19vw;
  max-width: 1620px;
  margin: 40px auto 30px;
}

.project__lists {
  width: 96.51vw;
  max-width: 1660px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .project__lists {
    width: 93.6vw;
  }
}
.project__list {
  margin-bottom: 30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .project__list {
    margin-bottom: 3.33vw;
  }
}
.project__list a {
  display: block;
  position: relative;
}
@media (any-hover: hover) {
  .project__list a:hover img {
    transform: scale(105%);
  }
  .project__list a:hover video {
    transform: scale(105%);
  }
}
.project__list img,
.project__list video {
  vertical-align: bottom;
  transition: 0.5s;
  filter: brightness(70%);
  aspect-ratio: 2/1;
  object-fit: cover;
}
.project__text-top {
  position: absolute;
  inset: 20px auto auto 27px;
  color: #fff;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .project__text-top {
    font-size: 3.47vw;
    inset: 3.6vw auto auto 2.93vw;
  }
}
.project__text-top2 {
  position: absolute;
  inset: 8px auto auto 223px;
  color: #fff;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 105px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .project__text-top2 {
    font-size: 10.67vw;
    inset: 10.93vw auto auto 2.93vw;
  }
}
.project__text-center {
  position: absolute;
  inset: 50% auto auto 27px;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .project__text-center {
    font-size: 4.27vw;
    inset: auto auto 4vw 2.93vw;
    transform: none;
  }
}
.project__text-bottom {
  position: absolute;
  inset: auto auto 28px 27px;
  color: #fff;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 27px;
  line-height: 1;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .project__text-bottom {
    font-size: 3.47vw;
    inset: auto 2.93vw 4vw auto;
  }
}
@media (any-hover: hover) {
  .project__text-bottom:hover {
    opacity: 0.5;
  }
}
