/*---------------------------------------------------
common
----------------------------------------------------*/
html.is-fixed {
  height: 100dvh;
  overflow: hidden;
  width: 100%;
}

.main {
  background-color: var(--bs-body-bg);
}

a[href^="tel:"] {
  text-decoration: none !important;
  color: var(--color_dark) !important;
}

.vertical-rl {
  writing-mode: vertical-rl;
}

.list-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.list-indent-02 {
  text-indent: -2.25em;
  padding-left: 2.25em;
}

.list-indent-03 {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.text-overflow {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.link-hover {
  position: relative;
  transition: 0.3s;
  z-index: 1000;
}

.button-view-more {
  border: 1px solid #333;
  background-color: var(--bs-body-bg);
  transition: 0.3s;
}

.button-view-more:hover {
  background-color: #333;
  color: var(--bs-body-bg) !important;
}

.post-container {
  word-wrap: break-word;
}

.hero-logo-img {
  height: 38px;
}

@media screen and (min-width: 992px) {
  html.is-fixed {
    padding-right: 16px;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .link-hover:hover {
    opacity: 0.5;
  }

  .cursor-pointer:hover {
    cursor: pointer;
  }
}

/*---------------------------------------------------
top
----------------------------------------------------*/
.bg-img-hero {
  height: 100svh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-img-hero.img01 {
  background-image: url("../img/top/img_hero01_sp.jpg");
  aspect-ratio: 702 / 1440;
}

.bg-img-hero.img02 {
  background-image: url("../img/top/img_hero02_sp.jpg");
  aspect-ratio: 702 / 1440;
}
.bg-img-hero.img03 {
  background-image: url("../img/top/img_hero03_sp.jpg");
  aspect-ratio: 702 / 1440;
}

.top-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 45px;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.top-news-border {
  border-top: 1px solid #7a7a7a;
}

.top-news-border:last-of-type {
  border-bottom: 1px solid #7a7a7a;
}

.top-news-arrow {
  position: relative;
}

.top-news-arrow::after {
  position: absolute;
  content: "";
  border-right: 2px solid #7a7a7a;
  border-bottom: 2px solid #7a7a7a;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-45deg);
}

.bg-profile {
  background-image: url("../img/top/bg_top_area_about_sp.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.img-artwork {
  aspect-ratio: 348 / 232;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .top-hero-title {
    max-width: 460px;
  }
}

@media screen and (min-width: 992px) {
  .top-hero-title {
    max-width: 680px;
  }

  .bg-img-hero.img01 {
    background-image: url("../img/top/img_hero01.jpg");
    aspect-ratio: 2880 / 1600;
  }
  
  .bg-img-hero.img02 {
    background-image: url("../img/top/img_hero02.jpg");
    aspect-ratio: 2880 / 1600;
  }

  .bg-img-hero.img03 {
    background-image: url("../img/top/img_hero03.jpg");
    aspect-ratio: 2880 / 1600;
  }

  .bg-profile {
    background-image: url("../img/top/bg_top_area_about.jpg");
  }

  .img-artwork {
    aspect-ratio: 880 / 408;
  }
}

/*---------------------------------------------------
news
----------------------------------------------------*/
.hero-news {
  background-image: url("../img/news/img_hero_news_sp.jpg");
  aspect-ratio: 702 / 1440;
}

.news-post-thumbnail {
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 354 / 454;
  height: 454px;
}

.single-link-arrow {
  position: relative;
}

.single-link-arrow::before {
  position: absolute;
  content: "";
  border-right: 2px solid #7a7a7a;
  border-bottom: 2px solid #7a7a7a;
  width: 7px;
  height: 7px;
  top: 50%;
}

.single-link-arrow.prev::before {
  left: 0.25em;
  transform: translateY(-30%) rotate(135deg);
}

.single-link-arrow.next::before {
  right: 0.2em;
  transform: translateY(-30%) rotate(-45deg);
}

@media screen and (min-width: 992px) {
  .hero-news {
    background-image: url("../img/news/img_hero_news.jpg");
    aspect-ratio: 2160 / 1200;
  }

  .news-post-thumbnail {
    object-position: center;
    aspect-ratio: 1140 / 454;
  }

  .single-link-arrow.prev::before {
    left: 2em;
    transform: translateY(-30%) rotate(135deg);
  }
  
  .single-link-arrow.next::before {
    right: 2em;
    transform: translateY(-30%) rotate(-45deg);
  }
}

/*---------------------------------------------------
artworks
----------------------------------------------------*/
.artworks-sub {
  position: relative;
  padding-left: 100px;
}

.artworks-sub::before {
  position: absolute;
  content: "";
  background-color: #333;
  width: 60px;
  height: 1px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

#artworks .artworks-sub::before {
  width: 190px;
  left: 45px;
}

.artworks-img {
  aspect-ratio: 350 / 204;
  object-fit: cover;
  object-position: center;
}

.artworks-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 350px;
}

.artworks-img-detail {
  object-fit: cover;
}

@media screen and (min-width: 992px) {
  .artworks-sub {
    padding-left: 250px;
  }
  
  .artworks-sub::before {
    width: 190px;
    left: 30px;
  }

  .artworks-img {
    aspect-ratio: 486 / 323;
  }

  .artworks-hero-title {
    left: 20%;
    transform: translateY(-50%);
  }

  .artworks-img-detail {
    aspect-ratio: 800 / 450;
    height: 380px;
  }
}

/*---------------------------------------------------
profile
----------------------------------------------------*/
.hero-profile {
  background-image: url("../img/profile/img_hero_profile_sp.jpg");
  aspect-ratio: 702 / 1440;
}

.profile-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 350px;
}

@media screen and (min-width: 992px) {
  .hero-profile {
    background-image: url("../img/profile/img_hero_profile.jpg");
    aspect-ratio: 2160 / 1200;
  }

  .profile-hero-title {
    left: 20%;
    transform: translateY(-50%);
  }
}

/*---------------------------------------------------
contact
----------------------------------------------------*/


@media screen and (min-width: 992px) {
  
}

/*---------------------------------------------------
privacy-policy
----------------------------------------------------*/
#privacy-policy h2 {
  font-size: 14px !important;
  font-weight: normal;
}

#privacy-policy p {
  margin-bottom: 2.5em;
}

@media screen and (min-width: 992px) {
  
}

/*---------------------------------------------------
accordion menu
----------------------------------------------------*/
.accordion-button {
  position: relative;
  cursor: pointer;
}

.accordion-button::before,
.accordion-button::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #FD9800;
}

.accordion-button::before{
  top:48%;
  right: 24px;
  transform: rotate(0deg) !important;
  transition: 0.3s;
  opacity: 1;
}

.accordion-button::after{
  top:48%;
  right: 24px;
  transform: rotate(90deg) !important;
  transition: 0.3s;
}

.accordion-button.is-open::before{
  transform: rotate(45deg) !important;
  opacity: 0;
}

.accordion-button.is-open::after{
  transform: rotate(180deg) !important;
}

.accordion-body {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.accordion-body.is-open {
  opacity: 1;
  visibility: visible;
  height: auto;
}

@media screen and (min-width: 992px) {
  .select-container {
    max-width: calc((100% - 160px) / 5);
    width: 100%;
  }

  .accordion-button::before{
    right: 50px;
  }

  .accordion-button::after{
    right: 50px;
  }
}

/*---------------------------------------------------
contact form 7
----------------------------------------------------*/
.input-height {
  height: 60px;
  font-size: 18px;
}

.textarea-height {
  resize: none;
  height: 330px;
  font-size: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.any,
.required {
  width: 45px;
}

.any::after {
  content: "任意";
  position: absolute;
  top: 0;
  align-self: center;
  color: #555555;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 1px 6px;
  border: 1px solid #333;
}

.required::after {
  content: "必須";
  position: absolute;
  top: 0;
  align-self: center;
  color: #F20303;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 1px 6px;
  border: 1px solid #F20303;
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 !important;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  margin-right: 0 !important;
  cursor: auto;
}

.wpcf7-spinner {
  display: none !important;
}

/*---------------------------------------------------
pagination
----------------------------------------------------*/
.l-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
}

@media screen and (max-width: 959px) {
  .l-pagination {
    gap: 12px;
  }
}

.l-pagination__prev, .l-pagination__next {
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  list-style-type: none;
}

.l-pagination__prev {
  width: 20px;
  height: 20px;
  margin-right: 24px;
}

.l-pagination-arrow__prev,
.l-pagination-arrow__next {
  display: block;
  position: relative;
  width: auto;
  height: auto;
}

.l-pagination-arrow__prev::before,
.l-pagination-arrow__next::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-right: 2px solid #7a7a7a;
  border-bottom: 2px solid #7a7a7a;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(135deg);
}

.l-pagination-arrow__prev::before {
  transform: translateY(-50%) rotate(135deg);
}

.l-pagination-arrow__next::before {
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 959px) {
  .l-pagination__prev {
    margin-right: 8px;
  }
}

.l-pagination__next {
  width: 20px;
  height: 20px;
  margin-left: 24px;
}

@media screen and (max-width: 959px) {
  .l-pagination__next {
    margin-left: 8px;
  }
}

.l-pagination__arrow {
  width: 20px;
  height: 20px;
}

.l-pagination__number {
  border: 1px solid #7a7a7a;
  max-width: 42px;
  width: 100%;
  height: 42px;
  list-style-type: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 959px) {
  .l-pagination__number {
    max-width: 40px;
    height: 45px;
  }
}

.l-pagination__number:hover {
  opacity: 0.5;
}

.l-pagination__number:has(.current) {
  background-color: #7a7a7a;
  color: #ffffff;
}

.l-pagination__number:has(.current):hover {
  opacity: 1;
}

.l-pagination__number:has(.dots) {
  border: none;
}

.l-pagination__number:has(.dots):hover {
  opacity: 1;
}

.l-pagination__number__text {
  display: block;
  width: 100%;
  height: 100%;
}

.l-pagination__number__text .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;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0em;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 959px) {
  .l-pagination__number__text .page-numbers {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0em;
	padding-left: 10px;
 	padding-right: 10px;
  }
}