@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを15pxに設定 */
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: justify;
  letter-spacing: -0.02em;
  line-height: 1.875;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.5rem;
  }
}
.f-en {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  position: relative;
  /* 印刷禁止 */
}

.drawer--open {
  overflow: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

em {
  font-style: normal;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 959px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .br-sp {
    display: block;
  }
}

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 519px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*　上に上がる動き　*/
.l-header.UpMove {
  top: -10rem;
}
@media screen and (max-width: 959px) {
  .l-header.UpMove {
    top: -7rem;
  }
}
@media screen and (max-width: 519px) {
  .l-header.UpMove {
    top: -5.3rem;
  }
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/*　下に下がる動き　*/
.l-header.DownMove {
  top: 0;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin: 0 auto;
  max-width: 110rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .l-inner {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 959px) {
  .l-inner {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .l-inner {
    padding: 0 2rem;
  }
}

.l-inner--wide {
  max-width: 1266px;
}
@media screen and (max-width: 1366px) {
  .l-inner--wide {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 959px) {
  .l-inner--wide {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .l-inner--wide {
    padding: 0 2rem;
  }
}

.l-inner--900 {
  max-width: 90rem;
}
@media screen and (max-width: 940px) {
  .l-inner--900 {
    padding: 0 5rem;
  }
}

.l-inner--620 {
  max-width: 62rem;
}
@media screen and (max-width: 1200px) {
  .l-inner--620 {
    padding: 0;
  }
}
@media screen and (max-width: 720px) {
  .l-inner--620 {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 959px) {
  .l-inner--620 {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .l-inner--620 {
    padding: 0 2rem;
  }
}

.l-inner--760 {
  max-width: 76rem;
}
@media screen and (max-width: 1200px) {
  .l-inner--760 {
    padding: 0;
  }
}
@media screen and (max-width: 860px) {
  .l-inner--760 {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 959px) {
  .l-inner--760 {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .l-inner--760 {
    padding: 0 2rem;
  }
}

.l-inner--770 {
  max-width: 77rem;
}
@media screen and (max-width: 1210px) {
  .l-inner--770 {
    padding: 0;
  }
}
@media screen and (max-width: 860px) {
  .l-inner--770 {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 959px) {
  .l-inner--770 {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .l-inner--770 {
    padding: 0 2rem;
  }
}

.l-main {
  margin-top: 14rem;
}
@media screen and (max-width: 519px) {
  .l-main {
    margin-top: 6rem;
  }
}

.l-footer {
  margin-top: 15rem;
}
@media screen and (max-width: 519px) {
  .l-footer {
    margin-top: 8.5rem;
  }
}

/* component
------------------------------------------------ */
.c-header {
  width: 100%;
}

.c-header__container {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  border-bottom: solid 1px #e5e5e5;
}

.c-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 7rem;
}
@media screen and (max-width: 519px) {
  .c-header__wrapper {
    height: 6rem;
  }
}

.c-header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 13rem;
  line-height: 1;
}
@media screen and (max-width: 519px) {
  .c-header__logo {
    width: 12rem;
  }
}
.c-header__logo a {
  line-height: 1;
}

.c-header__search-icon {
  width: 2.2rem;
  cursor: pointer;
}
@media screen and (max-width: 519px) {
  .c-header__search-icon {
    width: 2.4rem;
  }
}

.c-header__search-close {
  display: none;
  width: 2.2rem;
  cursor: pointer;
}
.c-header__search-close path {
  fill: black;
}

.c-header__hamburger {
  position: relative;
  z-index: 100;
  width: 3rem;
  height: 2rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border--top {
  top: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.c-header__hamburger-border--bottom {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  -webkit-transform: translate(0, 0) rotate(45deg);
          transform: translate(0, 0) rotate(45deg);
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  -webkit-transform: translate(0, 0) rotate(-45deg);
          transform: translate(0, 0) rotate(-45deg);
}

.c-header__drawer {
  position: fixed;
  top: 0;
  left: -40rem;
  z-index: 40;
  width: 40rem;
  height: 100vh;
  height: 100dvh;
  color: white;
  background-color: black;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 519px) {
  .c-header__drawer {
    left: -100vw;
    width: 100vw;
  }
}

.c-header__drawer--open {
  left: 0;
}

.c-header__drawer-container {
  position: relative;
  padding: 3rem 3rem 5rem 5rem;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (max-width: 519px) {
  .c-header__drawer-container {
    padding: 1.5rem 2rem 5rem 2.6rem;
  }
}

.c-header__drawer-close {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.c-header__drawer-close::before, .c-header__drawer-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
  height: 2px;
  background: #fff;
}
.c-header__drawer-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-header__drawer-close.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-header__drawer-menus {
  margin-top: 6.5rem;
  font-weight: bold;
  font-size: 3rem;
  list-style: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 959px) {
  .c-header__drawer-menus {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__drawer-menus {
    font-weight: 500;
    font-size: 2.4rem;
  }
}

.c-header__drawer-menu {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.c-header__drawer-menu > a, .c-header__drawer-menu > div:first-child {
  padding: 0.3rem 0;
  cursor: pointer;
}
@media screen and (max-width: 519px) {
  .c-header__drawer-menu > a, .c-header__drawer-menu > div:first-child {
    padding: 0.7rem 0;
  }
}
.c-header__drawer-menu > a:hover, .c-header__drawer-menu > div:first-child:hover {
  opacity: 1;
}

.c-header__drawer-menu--hover > a, .c-header__drawer-menu--hover > div:first-child {
  opacity: 0.5;
}

.c-header__drawer-menu.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-header__drawer-copyright {
  display: none;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  font-size: 1.2rem;
}
@media screen and (max-width: 519px) {
  .c-header__drawer-copyright {
    display: block;
  }
}

.c-header__drawer-acord-head {
  position: relative;
}
.c-header__drawer-acord-head::after {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(180%, -76%) rotate(45deg);
          transform: translate(180%, -76%) rotate(45deg);
  content: "";
  aspect-ratio: 1;
  width: 1.4rem;
  height: auto;
  border-right: solid 2px white;
  border-bottom: solid 2px white;
}
@media screen and (max-width: 519px) {
  .c-header__drawer-acord-head::after {
    width: 1.2rem;
  }
}

.c-header__drawer-acord-head--open::after {
  -webkit-transform: translate(180%, -30%) rotate(-135deg);
          transform: translate(180%, -30%) rotate(-135deg);
}

.c-header__drawer-acord {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.c-header__drawer-acord--open {
  grid-template-rows: 1fr;
}

.c-header__drawer-acord-wrap {
  overflow: hidden;
}

.c-grobal {
  position: relative;
  z-index: 0;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 519px) {
  .c-grobal {
    display: none;
  }
}

/*　上に上がる動き　*/
.c-grobal.UpMove {
  margin-top: -7rem;
}

/*　下に下がる動き　*/
.c-grobal.DownMove {
  margin-top: 0;
}

.c-grobal__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
  padding: 0 5rem;
  height: 7rem;
  list-style: none;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 959px) {
  .c-grobal__menus {
    gap: 3rem;
  }
}
@media screen and (max-width: 630px) {
  .c-grobal__menus {
    gap: 3vw;
    font-size: 1.6rem;
  }
}

.c-grobal__menu {
  position: relative;
}

.c-grobal__menu--current::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}

.c-search-form {
  width: 100%;
  background-color: black;
}

.c-search-form__container {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-search-form__container--open {
  grid-template-rows: 1fr;
}

.c-search-form__wrapper {
  overflow: hidden;
}
.c-search-form__wrapper form {
  position: relative;
  padding: 10rem 0;
  font-size: 2.4rem;
  color: gray;
}
@media screen and (max-width: 519px) {
  .c-search-form__wrapper form {
    padding: 7rem 0;
    font-size: 2rem;
  }
}
.c-search-form__wrapper form input {
  font-family: "Roboto", "Zen Old Mincho", serif;
  width: 100%;
  color: gray;
  border-bottom: solid 1px gray;
}
.c-search-form__wrapper form button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 2.5rem;
}
@media screen and (max-width: 519px) {
  .c-search-form__wrapper form button {
    width: 2.2rem;
  }
}
.c-search-form__wrapper form button img {
  vertical-align: text-bottom;
}

.c-spacer {
  height: 15rem;
}
@media screen and (max-width: 519px) {
  .c-spacer {
    height: 11rem;
  }
}

@media screen and (max-width: 959px) {
  .c-spacer--top {
    height: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .c-spacer--top {
    height: 8rem;
  }
}

.c-spacer--border {
  position: relative;
}
.c-spacer--border::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}

.c-list {
  width: 100%;
}

.c-list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 7rem;
  margin-top: 2.6rem;
}
@media screen and (max-width: 959px) {
  .c-list__container {
    gap: 3rem 4rem;
  }
}
@media screen and (max-width: 519px) {
  .c-list__container {
    gap: 7rem;
    margin-top: 2rem;
  }
}

.c-list__container--page {
  margin-top: 0;
}

.c-list__container--list {
  display: block;
}

.c-list__card {
  width: calc(33.333% - 4.6666666667rem);
}
@media screen and (max-width: 959px) {
  .c-list__card {
    width: calc(33.333% - 2.6666666667rem);
  }
}
@media screen and (max-width: 519px) {
  .c-list__card {
    width: 100%;
  }
}

.c-list__image {
  width: 100%;
}
.c-list__image img {
  aspect-ratio: 32/22;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-list__image--square img {
  aspect-ratio: 1;
}

.c-list__body {
  width: 100%;
}

.c-list__time {
  display: block;
  margin-top: 2.4rem;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .c-list__time {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-list__time {
    margin-top: 2.4rem;
  }
}

.c-list__title {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.c-list__excerpt {
  margin-top: 0.3rem;
  max-height: 7.7rem;
  line-height: 1.75;
  letter-spacing: -0.04em;
  overflow: hidden;
}
@media screen and (max-width: 519px) {
  .c-list__excerpt {
    max-height: 4.7rem;
  }
}

.c-list__excerpt--list {
  display: none;
}

.c-list__name {
  margin-top: 2.2rem;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 519px) {
  .c-list__name {
    margin-top: 1.3rem;
  }
}

.c-list__kana {
  display: none;
}

.c-list__card--list {
  margin-top: 2rem;
  width: 100%;
  border: solid 1px #e5e5e5;
  background-color: #fff;
}
.c-list__card--list:hover {
  -webkit-filter: drop-shadow(5px 5px 5px #efefef);
          filter: drop-shadow(5px 5px 5px #efefef);
}
.c-list__card--list:first-of-type {
  margin-top: 0;
}
.c-list__card--list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
}
@media screen and (max-width: 519px) {
  .c-list__card--list a {
    gap: 1rem;
    padding: 1.5rem;
  }
}
.c-list__card--list .c-list__image {
  width: 25%;
}
@media screen and (max-width: 959px) {
  .c-list__card--list .c-list__image {
    width: 33%;
  }
}
@media screen and (max-width: 519px) {
  .c-list__card--list .c-list__image {
    width: 30%;
  }
}
.c-list__card--list .c-list__image.c-list__image--square {
  width: 15%;
}
@media screen and (max-width: 959px) {
  .c-list__card--list .c-list__image.c-list__image--square {
    width: 20%;
  }
}
@media screen and (max-width: 519px) {
  .c-list__card--list .c-list__image.c-list__image--square {
    width: 30%;
  }
}
.c-list__card--list .c-list__body {
  width: calc(75% - 2rem);
}
@media screen and (max-width: 959px) {
  .c-list__card--list .c-list__body {
    width: calc(67% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .c-list__card--list .c-list__body {
    width: calc(70% - 1rem);
  }
}
.c-list__card--list .c-list__time {
  margin-top: 0;
}
@media screen and (max-width: 519px) {
  .c-list__card--list .c-list__time {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-list__card--list .c-list__title {
    margin-top: 0.4rem;
    font-size: 4.8vw;
    letter-spacing: 0;
  }
}
.c-list__card--list .c-list__excerpt {
  display: none;
  max-height: none;
}
.c-list__card--list .c-list__excerpt--list {
  display: block;
}
@media screen and (max-width: 519px) {
  .c-list__card--list .c-list__excerpt--list {
    display: none;
  }
}
.c-list__card--list .c-list__name {
  margin-top: 0;
  width: calc(85% - 2rem);
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .c-list__card--list .c-list__name {
    width: calc(80% - 2rem);
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 519px) {
  .c-list__card--list .c-list__name {
    width: calc(70% - 1rem);
    font-size: 4.5vw;
  }
}
.c-list__card--list .c-list__name .c-list__kana {
  display: block;
  margin-top: 1rem;
}

.c-head1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 519px) {
  .c-head1 {
    display: block;
  }
}
.c-head1 h2 {
  position: relative;
  margin-right: 5rem;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-head1 h2 {
    margin-right: 0;
    font-size: 2.8rem;
  }
}
.c-head1 h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -2.5rem;
  width: 0.05rem;
  height: 100%;
  background-color: black;
}
@media screen and (max-width: 519px) {
  .c-head1 h2::after {
    display: none;
  }
}
.c-head1 a {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-head1 a {
    display: block;
    margin-top: 0.8rem;
    font-size: 1.3rem;
  }
}
.c-head1 a::after {
  content: "";
  display: inline-block;
  margin-left: 1rem;
  width: 2rem;
  height: 0.5rem;
  background-image: url(../images/common/arrow_right.webp);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-head1 a::after {
    margin-left: 0.6rem;
    width: 1.9rem;
  }
}

@media screen and (max-width: 519px) {
  .c-head1--sp a {
    display: none;
  }
}

.c-pickup {
  width: 100%;
}

.c-pickup__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .c-pickup__container {
    gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .c-pickup__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2rem;
  }
}
.c-pickup__container:first-child {
  margin-top: 0;
}

@media screen and (max-width: 519px) {
  .c-pickup__container--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.c-pickup__container--new {
  margin-top: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 519px) {
  .c-pickup__container--new {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.c-pickup__left {
  width: 68.36%;
}
@media screen and (max-width: 519px) {
  .c-pickup__left {
    width: 100%;
  }
}

.c-pickup__left--new {
  width: 45.45%;
}
@media screen and (max-width: 519px) {
  .c-pickup__left--new {
    width: 100%;
  }
}

.c-pickup__right {
  width: 27.27%;
}
@media screen and (max-width: 519px) {
  .c-pickup__right {
    width: 100%;
  }
}

.c-pickup__right--new {
  width: 50%;
}
@media screen and (max-width: 519px) {
  .c-pickup__right--new {
    width: 100%;
  }
}

.c-pickup__title {
  margin-top: 4rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.154;
  letter-spacing: 0;
}
@media screen and (max-width: 519px) {
  .c-pickup__title {
    margin-top: 5rem;
    font-size: 2.3rem;
  }
}
.c-pickup__title small {
  display: inline-block;
  margin-left: 1.7rem;
  font-size: 0.583em;
}
@media screen and (max-width: 519px) {
  .c-pickup__title small {
    font-size: 0.53em;
  }
}

.c-pickup__title--new {
  margin-top: 0;
}
@media screen and (max-width: 519px) {
  .c-pickup__title--new {
    margin-top: 3rem;
  }
}

.c-pickup__excerpt {
  margin-top: 1.6rem;
}

.c-pickup__image {
  width: 100%;
}
.c-pickup__image img {
  aspect-ratio: 300/424;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-pickup__excerpt--new {
  letter-spacing: 0;
}

.c-pickup__image--new img {
  aspect-ratio: 5/3;
}

.c-footer {
  padding-bottom: 2.5rem;
  width: 100%;
}

.c-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
  padding: 0 5rem;
  height: 7rem;
  list-style: none;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-top: solid 1px #e5e5e5;
  border-bottom: solid 1px #e5e5e5;
}
@media screen and (max-width: 959px) {
  .c-footer__menus {
    gap: 3rem;
  }
}
@media screen and (max-width: 630px) {
  .c-footer__menus {
    gap: 3vw;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__menus {
    display: none;
  }
}

.c-footer__credit {
  padding: 10rem 0;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .c-footer__credit {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__credit {
    padding: 9rem 0 5rem;
    border-top: solid 1px #e5e5e5;
  }
}

.c-footer__name {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 959px) {
  .c-footer__name {
    font-size: 1.8rem;
  }
}
.c-footer__address {
  margin-top: 0.8rem;
  line-height: 1.625;
  letter-spacing: 0;
}
@media screen and (max-width: 519px) {
  .c-footer__address {
    margin-top: 0.4rem;
    line-height: 1.8;
  }
}

.c-footer__copyright {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .c-footer__copyright {
    font-size: 1.3rem;
  }
}

.c-all {
  display: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-all {
    margin-top: 2rem;
    font-size: 1.3rem;
  }
}
.c-all::after {
  content: "";
  display: inline-block;
  margin-left: 1rem;
  width: 2rem;
  height: 0.5rem;
  background-image: url(../images/common/arrow_right.webp);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-all::after {
    margin-left: 0.6rem;
    width: 1.9rem;
  }
}

@media screen and (max-width: 519px) {
  .c-all--sp {
    display: block;
  }
}

.c-page-title {
  padding: 12rem 0 9rem;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 959px) {
  .c-page-title {
    padding: 10rem 0 8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-page-title {
    padding: 7rem 0 6rem;
    font-size: 4rem;
  }
}

.c-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10rem;
}
@media screen and (max-width: 519px) {
  .c-pagenation {
    margin-top: 6rem;
    font-size: 1.4rem;
  }
}
.c-pagenation .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.7rem;
  aspect-ratio: 1;
  width: 4rem;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .c-pagenation .page-numbers {
    margin: 0 0.5rem;
    width: 3rem;
  }
}
.c-pagenation .current {
  border: solid 1px black;
  border-radius: 50%;
  pointer-events: none;
}
.c-pagenation .current:hover {
  opacity: 1;
}
.c-pagenation .dots {
  margin: 0;
  width: 2rem;
}
.c-pagenation .prev, .c-pagenation .next {
  position: relative;
  margin: 0 2rem 0 0;
  padding: 0 0 0 2rem;
  aspect-ratio: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 519px) {
  .c-pagenation .prev, .c-pagenation .next {
    margin: 0 0.5rem 0 0;
    padding: 0 0 0 1.5rem;
  }
}
.c-pagenation .prev::before, .c-pagenation .next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%) rotate(-45deg);
          transform: translate(0%, -50%) rotate(-45deg);
  aspect-ratio: 1;
  width: 1.4rem;
  height: auto;
  border-top: solid 1px black;
  border-left: solid 1px black;
}
@media screen and (max-width: 519px) {
  .c-pagenation .prev::before, .c-pagenation .next::before {
    width: 1.2rem;
  }
}
.c-pagenation .next {
  margin: 0 0 0 2rem;
  padding: 0 2rem 0 0;
}
@media screen and (max-width: 519px) {
  .c-pagenation .next {
    margin: 0 0 0 0.5rem;
    padding: 0 1.5rem 0 0;
  }
}
.c-pagenation .next::before {
  left: auto;
  right: 0;
  border-top: none;
  border-left: none;
  border-bottom: solid 1px black;
  border-right: solid 1px black;
}

.c-post {
  width: 100%;
}

.c-post__time {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.c-post__title {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.c-post__content {
  margin-top: 3.5rem;
  word-wrap: break-word;
}
.c-post__content p,
.c-post__content figure,
.c-post__content iframe {
  margin-bottom: 1rem;
}

.c-post__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8rem;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-post__pager {
    margin-top: 6rem;
  }
}

.c-post__next,
.c-post__prev {
  width: 2rem;
}
.c-post__next img,
.c-post__prev img {
  vertical-align: baseline;
}

.c-post__prev img {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.c-post__numbers {
  margin: 0 1.8rem;
}

.c-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8rem;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-pager {
    margin-top: 6rem;
  }
}

.c-pager__next,
.c-pager__prev {
  width: 2rem;
}
.c-pager__next img,
.c-pager__prev img {
  vertical-align: baseline;
}

.c-pager__prev img {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.c-pager__numbers {
  margin: 0 1.8rem;
}

.c-2col {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto;
}
@media screen and (max-width: 760px) {
  .c-2col {
    display: block;
  }
}
.c-2col main {
  grid-column: 2/3;
  grid-row: 1/2;
}
.c-2col aside {
  grid-column: 1/2;
  grid-row: 1/2;
}

.c-archives {
  margin-top: 26rem;
  margin-right: 17.7rem;
  margin-left: auto;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1150px) {
  .c-archives {
    margin-right: 8vw;
  }
}
@media screen and (max-width: 959px) {
  .c-archives {
    margin-top: 24rem;
    margin-right: 0;
    padding-left: 1rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 760px) {
  .c-archives {
    margin-top: 10rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    font-size: 1em;
  }
}
@media screen and (max-width: 519px) {
  .c-archives {
    margin-top: 8.5rem;
  }
}
.c-archives ul {
  list-style: none;
}

.c-archives--drawer {
  margin: 0;
  padding-left: 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 760px) {
  .c-archives--drawer {
    text-align: justify;
  }
}

.c-archives__head {
  font-weight: bold;
}

.c-archives__year {
  position: relative;
  width: 5.5rem;
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .c-archives__year {
    width: 7.5rem;
  }
}
.c-archives__year::after {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(0%, -89%) rotate(45deg);
          transform: translate(0%, -89%) rotate(45deg);
  content: "";
  aspect-ratio: 1;
  width: 0.9rem;
  height: auto;
  border-right: solid 1px black;
  border-bottom: solid 1px black;
}

@media screen and (max-width: 760px) {
  .c-archives__year--drawer {
    width: 5.3rem;
  }
}
.c-archives__year--drawer::after {
  border-right: solid 1px white;
  border-bottom: solid 1px white;
}

.c-archives__year--open::after {
  -webkit-transform: translate(0%, -50%) rotate(-135deg);
          transform: translate(0%, -50%) rotate(-135deg);
}

.c-archives__acord {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.c-archives__acord--open {
  grid-template-rows: 1fr;
}

.c-archives__acord-wrap {
  overflow: hidden;
}

.c-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
  line-height: 1;
}
@media screen and (max-width: 519px) {
  .c-sns {
    margin-top: 1rem;
  }
}

.c-sns--footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-sns__icon {
  display: inline-block;
  margin-right: 1rem;
  width: 2.3rem;
}
@media screen and (max-width: 519px) {
  .c-sns__icon {
    width: 2rem;
  }
}
.c-sns__icon img {
  vertical-align: super;
}

.c-sns__icon--facebook {
  margin-right: 0.6rem;
}
@media screen and (max-width: 519px) {
  .c-sns__icon--facebook {
    margin-right: 0.5rem;
  }
}

.c-sns__icon--threads {
  width: 2.9rem;
}
@media screen and (max-width: 519px) {
  .c-sns__icon--threads {
    width: 2.55rem;
  }
}

.c-view-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

.c-view-switch--top {
  margin: 0 0 0 auto;
  padding: 0;
}
@media screen and (max-width: 519px) {
  .c-view-switch--top {
    margin-top: 1rem;
  }
}

.c-view-switch__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0.3rem;
  aspect-ratio: 1;
  border: solid 1px rgb(0, 0, 0);
  opacity: 0.5;
}
.c-view-switch__btn img {
  width: 3rem;
}
@media screen and (max-width: 519px) {
  .c-view-switch__btn img {
    width: 2.5rem;
  }
}
.c-view-switch__btn:hover {
  opacity: 1;
}

.c-view-switch__btn--active {
  opacity: 1;
}

/* project
------------------------------------------------ */
.p-top-mv {
  padding: 0 5rem 0;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .p-top-mv {
    padding: 0 2rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv {
    padding: 0;
  }
}

.p-top-mv__slides {
  width: 100%;
  margin-bottom: 4rem !important;
}
.p-top-mv__slides .slick-dots {
  bottom: -3rem;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slides .slick-dots {
    bottom: -2.3rem;
  }
}
.p-top-mv__slides .slick-dots li {
  margin: 0 1rem;
  width: 5rem;
  height: 0.2rem;
  background-color: #ccc;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slides .slick-dots li {
    margin: 0 0.5rem;
    width: 3rem;
    height: 0.15rem;
  }
}
.p-top-mv__slides .slick-dots li.slick-active {
  background-color: black;
}
.p-top-mv__slides .slick-dots li button {
  padding: 0;
  width: 100%;
  height: 100%;
}
.p-top-mv__slides .slick-dots li button::before {
  display: none;
}

.p-top-mv__slide {
  position: relative;
  width: 100%;
}
.p-top-mv__slide img {
  aspect-ratio: 1266/581;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slide img {
    aspect-ratio: auto;
    height: calc(100vh - 6rem - 4rem);
    height: calc(100svh - 6rem - 4rem);
  }
}

.p-top-artist {
  width: 100%;
}

.p-top-artist__slides {
  margin-top: 2.6rem;
}
@media screen and (max-width: 519px) {
  .p-top-artist__slides {
    margin-top: 5rem;
  }
}

.p-top-artist__slide {
  margin: 0 1.5rem;
}
@media screen and (max-width: 519px) {
  .p-top-artist__slide {
    margin: 0 1.4rem;
  }
}

.p-top-artist__image img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-artist__name {
  margin-top: 2.2rem;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 519px) {
  .p-top-artist__name {
    margin-top: 1.3rem;
    font-size: 1.3rem;
  }
}

.p-artist {
  width: 100%;
}

.p-artist__mv img {
  width: 100%;
}

.p-artist__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 17.2rem;
}
@media screen and (max-width: 959px) {
  .p-artist__container {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .p-artist__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 7rem;
  }
}

.p-artist__left,
.p-artist__right {
  width: 50%;
}
@media screen and (max-width: 519px) {
  .p-artist__left,
  .p-artist__right {
    width: 100%;
  }
}

.p-artist__left {
  padding-right: 2.2rem;
}
@media screen and (max-width: 519px) {
  .p-artist__left {
    padding: 0;
  }
}

.p-artist__right {
  padding-top: 1.8rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 519px) {
  .p-artist__right {
    margin-top: 2rem;
    padding: 0;
  }
}

.p-artist__image {
  display: block;
  margin: 0 0 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 519px) {
  .p-artist__image {
    margin: 0 auto 0;
  }
}
.p-artist__image img {
  aspect-ratio: 1;
  width: 15rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.p-artist__name {
  letter-spacing: 0;
}
.p-artist__name .en {
  margin-right: 0.4rem;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.176;
}
.p-artist__name .jp {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.133;
}
.p-artist__name small {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.p-artist__sns {
  margin-top: 2.7rem;
  font-weight: 400;
  list-style: none;
  letter-spacing: 0;
}
.p-artist__sns li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-artist__sns li img {
  margin-right: 0.7rem;
  width: 2rem;
  vertical-align: middle;
}

.p-artist__info {
  margin: 4rem auto 0;
  max-width: 62rem;
}

.p-artist__gallery {
  width: 100%;
}

.p-artist__product {
  padding-top: 9.5rem;
}
@media screen and (max-width: 959px) {
  .p-artist__product {
    padding-top: 7rem;
  }
}
.p-artist__product-image {
  width: 100%;
}
.p-artist__product-image img {
  width: 100%;
}

.p-artist__product-content {
  text-align: center;
}

.p-artist__product-name {
  margin-top: 3rem;
  font-size: 1em;
  font-weight: inherit;
}

.p-artist__product-caption {
  margin-top: 2rem;
}
@media screen and (max-width: 519px) {
  .p-artist__product-caption {
    margin-top: 0.5rem;
  }
}

.p-artist__product-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.p-artist__product-btns button {
  position: relative;
  width: 8rem;
  color: rgba(1, 1, 1, 0.3019607843);
  letter-spacing: 1px;
}
.p-artist__product-btns button:hover {
  color: #000;
  opacity: 1;
}

.p-artist__share {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #000;
  border: solid 0.8px #e5e5e5;
  opacity: 0;
  visibility: hidden;
}
.p-artist__share a {
  display: block;
  padding: 0.9rem 1.7rem;
  border-bottom: solid 0.8px #e5e5e5;
  background-color: #fff;
}
.p-artist__share a:last-child {
  border-bottom: none;
}
.p-artist__share a:hover {
  opacity: 1;
  background-color: #f1f1f1;
}

.p-artist__share--visible {
  opacity: 1;
  visibility: visible;
}

.p-artist__inquire {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 10rem 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5176470588);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media screen and (max-width: 519px) {
  .p-artist__inquire {
    padding: 0;
  }
}

.p-artist__inquire--open {
  opacity: 1;
  visibility: visible;
}

.p-artist__inquire-form {
  margin: 0 auto;
  width: 100%;
  max-width: 60rem;
  background-color: #fff;
  border: solid 1px #e5e5e5;
}

.p-artist__inquire-head {
  position: relative;
  padding: 4rem;
  border-bottom: solid 1px #e5e5e5;
}
@media screen and (max-width: 519px) {
  .p-artist__inquire-head {
    padding: 3rem 3rem 3rem 2rem;
  }
}

.p-artist__inquire-title span {
  margin-right: 0.5rem;
}

.p-artist__inquire-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 1.8rem;
  cursor: pointer;
}
.p-artist__inquire-close:hover {
  opacity: 0.8;
}
.p-artist__inquire-close path {
  fill: black;
}

.p-artist__inquire-body {
  padding: 4rem;
}
@media screen and (max-width: 519px) {
  .p-artist__inquire-body {
    padding: 2rem;
  }
}
.p-artist__inquire-body .hidden {
  display: none;
}

.p-artist__contact {
  display: block;
  margin: 8rem auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: solid 1px black;
}
@media screen and (max-width: 519px) {
  .p-artist__contact {
    margin: 6rem auto 0;
  }
}

.p-artist__back {
  display: block;
  margin-top: 8rem;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .p-artist__back {
    margin-top: 6rem;
  }
}

.p-contact {
  width: 100%;
  font-family: "Roboto", "Zen Old Mincho", serif;
}

.p-contact__unit {
  margin-top: 8rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 519px) {
  .p-contact__unit {
    margin-top: 7rem;
    font-size: 1em;
  }
}
.p-contact__unit:first-of-type {
  margin-top: 0;
}

.p-contact__label::after {
  content: "※";
  margin-left: 0.5rem;
  color: #ed0874;
}

.p-contact__input {
  margin-top: 0.5rem;
  width: 100%;
}
.p-contact__input input, .p-contact__input select, .p-contact__input textarea {
  padding: 0.5rem 1rem;
  width: 100%;
  color: inherit;
  border-bottom: 1.5px solid black;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-contact__input input:focus, .p-contact__input select:focus, .p-contact__input textarea:focus {
  background-color: rgb(243, 243, 243);
  outline: none;
}
.p-contact__input textarea {
  height: 14rem;
  border: solid 1.5px black;
  border-radius: 0.5rem;
}
.p-contact__input .wpcf7-radio input[type=radio] {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.p-contact__input .wpcf7-radio span.wpcf7-list-item:first-of-type {
  margin-left: 0;
}
.p-contact__input .wpcf7-radio span.wpcf7-list-item-label {
  position: relative;
  margin-right: 3.5rem;
  padding-left: 2.7rem;
  cursor: pointer;
}
@media screen and (max-width: 519px) {
  .p-contact__input .wpcf7-radio span.wpcf7-list-item-label {
    margin-right: 1.5rem;
  }
}
.p-contact__input .wpcf7-radio span.wpcf7-list-item-label::before {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 10px;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 1px solid #aaa9a7;
  border-radius: 50%;
}
.p-contact__input .wpcf7-radio span.wpcf7-list-item-label::after {
  display: none;
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: gray;
}
.p-contact__input .wpcf7-radio input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.p-contact__input--2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.p-contact__input--2col p, .p-contact__input--2col input {
  width: 50%;
}
.p-contact__input--2col p input, .p-contact__input--2col input input {
  width: 100%;
}

.p-contact__submit {
  margin: 8rem auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 519px) {
  .p-contact__submit {
    margin-top: 7rem;
  }
}
.p-contact__submit input {
  padding: 1rem;
  width: 19rem;
  background-color: #efefef;
}

.p-top-contact {
  text-align: center;
}

.p-top-contact__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 15rem;
  padding-top: 15rem;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .p-top-contact__title {
    margin-top: 6rem;
    padding-top: 5.7rem;
  }
}
.p-top-contact__title span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-top-contact__title small {
  margin-top: 1.3rem;
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
}

.p-top-contact__info {
  margin-top: 1.5rem;
}
@media screen and (max-width: 519px) {
  .p-top-contact__info {
    margin-top: 3.5rem;
  }
}

.p-top-contact__detail {
  margin: 8rem auto 0;
  max-width: 50rem;
  text-align: center;
  list-style: none;
}
@media screen and (max-width: 519px) {
  .p-top-contact__detail {
    margin-top: 5.4rem;
    padding: 0 0.7rem;
  }
}
.p-top-contact__detail li {
  border-top: solid 1px #e5e5e5;
}
.p-top-contact__detail li:last-child {
  border-bottom: solid 1px #e5e5e5;
}

.p-top-contact__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5rem auto 0;
  padding: 0 5rem 5rem;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .p-top-contact__images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 2rem 2rem;
  }
}
.p-top-contact__images img {
  width: 50%;
}
@media screen and (max-width: 519px) {
  .p-top-contact__images img {
    aspect-ratio: 1;
    width: 100%;
  }
}

/* utility
------------------------------------------------ */
.u-anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */