@charset "UTF-8";

/*-----------------------------
 共通部分
-----------------------------*/
:root {
  --color-primary: #f29041;
  --color-secondary: #ff8673;
  --color-tertiary: #c54a7e;
  --color-gray: #717171;
  --color-white: #fff;
  --color-black: #111111;
  --text-color: #111111;
  --bg-primary: #fff;
  --bg-secondary: #faf6f2;
  --font-primary: "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --font-KleeOne: "Klee One", cursive;
  --font-Poppins: "Poppins", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  background-color: var(--color-white);
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 500;
  height: 100%;
  line-height: 1.6;
  letter-spacing: 0.05em;
  word-break: break-all;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

*:focus {
  outline: none;
}

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.sp-only,
.sp540-only {
  display: none;
}

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

  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .sp540-only {
    display: block;
  }

  .sp540-none {
    display: none;
  }
}

.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-red {
  color: #ff4444;
}

.bg-primary {
  background-color: var(--bg-primary);
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.main-container {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.home .main-container {
  /*margin-top: 140px;*/
}

.section__inner {
  margin: 0 auto;
  padding: 120px 0;
  width: calc(100% - (20px * 2));
  max-width: 1300px;
}

.section__content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.section__title-wrap+.section__content {
  margin-top: 100px;
}

.section__title-wrap {
  position: relative;
  padding: clamp(16px, 32 / 1340 * 100vw, 32px) 0 0 clamp(22px, 50 / 1340 * 100vw, 50px);
}

.section__title-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid var(--color-gray);
  border-left: 1px solid var(--color-gray);
  aspect-ratio: 1/1;
  width: clamp(22px, 50 / 1340 * 100vw, 50px);
}

.section__title--eng {
  font-family: var(--font-Poppins);
  font-size: clamp(3.2rem, 80 / 1340 * 100vw, 8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section__title--eng::first-letter {
  color: var(--color-primary);
}

.section__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: clamp(14px, 30 / 1340 * 100vw, 30px);
  padding-left: clamp(22px, 50 / 1340 * 100vw, 50px);
}

@media screen and (max-width: 1024px) {
  .home .main-container {
    /*margin-top: 84px;*/
  }
}

@media screen and (max-width: 768px) {
  .section__inner {
    padding: 60px 0;
    max-width: 540px;
  }

  .section__title-wrap+.section__content {
    margin-top: 40px;
  }
}

/* パンくず */
.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  row-gap: 4px;
  font-size: 1.4rem;
  line-height: 1;
  padding: 1em 0 0;
}

.breadcrumb__inner a {
  color: var(--color-purple);
}

.breadcrumb span[property="name"] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

/* ボタン */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0 auto;
  text-align: center;
  height: 94px;
  width: 100%;
  max-width: 460px;
}

.btn:hover {
  background-color: var(--color-tertiary);
}

.btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../images/btn_ar01.png) no-repeat center center/contain;
  height: 27px;
  width: 27px;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -31px;
  transform: translateY(-86%);
  background: url(../images/btn_ar02.png) no-repeat center center/contain;
  height: 8.5px;
  width: 63px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover:after {
  right: -40px;
  background: url(../images/btn_ar02-hover.png) no-repeat center center/contain;
}

.btn-sm {
  font-family: var(--font-Poppins);
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin: 0 auto;
  height: 70px;
  max-width: 285px;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.6rem;
    height: 70px;
    max-width: 285px;
  }

  .btn-sm {
    font-size: 1.4rem;
  }
}

/* ページネーション */
.pagination ul {
  display: flex;
  justify-content: center;
  column-gap: 16px;
  font-size: 0;
  margin-top: 40px;
}

.pagination ul li a,
.pagination .current,
.pagination .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-tertiary);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  height: 40px;
  width: 40px;
  transition: 0.3s;
}

.pagination .dots {
  border: none;
}

.pagination ul li a {
  text-decoration: none;
}

.pagination ul li a:hover,
.pagination .current {
  color: var(--color-white);
  border-color: var(--color-tertiary);
  background-color: var(--color-tertiary);
}

@media screen and (max-width: 768px) {
  .pagination ul {
    column-gap: 8px;
    margin-top: 32px;
  }

  .pagination ul li a,
  .pagination .current,
  .pagination .dots {
    font-size: 1.6rem;
    height: 36px;
    width: 36px;
  }
}

.page-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  row-gap: 16px;
  margin: 60px auto 0;
}

.page-link li {
  min-width: 110px;
}

.page-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-tertiary);
  background-color: var(--color-tertiary);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  height: 40px;
  transition: 0.3s ease;
  text-transform: uppercase;
}

.page-link a:hover {
  background-color: var(--bg-primary);
  color: var(--color-tertiary);
}

@media screen and (max-width: 768px) {
  .page-link {
    margin: 32px auto 0;
  }
}

@media screen and (max-width: 540px) {
  .page-link {
    max-width: 400px;
  }

  .page-link li:nth-child(1) {
    order: 1;
  }

  .page-link li:nth-child(2) {
    order: 3;
    width: 100%;
    max-width: 235px;
  }

  .page-link li:nth-child(3) {
    order: 2;
  }
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s ease;
}

.header.active,
.header.close {
  background-color: var(--bg-primary);
  box-shadow: 0 4px 4px rgb(0 0 0 / 10%);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  /*height: 140px;*/
  width: calc(100% - 20px * 2);
  max-width: 1280px;
  padding: 2rem 0;
}

.header__logo {
  align-self: flex-end;
  /* flex: 0 1 160px; */
  flex: 0 1 75px;
  margin: 0 15px 0 min(40 / 1320 * 100vw, 40px);
}

.header__logo-img {
  object-fit: contain;
  width: 100%;
  max-height: 8rem;
}

.header:not(.active) .header__logo-img.color {
  display: none;
}

.header:not(.active) .header__logo-img.white {
  display: block;
}

.header.active .header__logo-img.color {
  display: block;
}

.header.active .header__logo-img.white {
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-nav__list {
  position: relative;
  display: flex;
  column-gap: min(40 / 1320 * 100vw, 40px);
}

.header-nav__link {
  position: relative;
  display: block;
  font-family: var(--font-Poppins);
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 28px 8px 0;
  text-align: center;
  color: white;
}

.header.active .header-nav__link {
  color: black;
}

.header-nav__link:hover {
  /*color: var(--color-tertiary);*/
  opacity: 0.5;
}

.header-nav__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /*background-color: var(--color-gray);*/
  background-color: white;
  height: 12px;
  width: 1px;
  transition: 0.3s ease;
}

.header-nav__link:hover:before {
  /*background-color: var(--color-tertiary);*/
  background-color: white;
  height: 20px;
  opacity: 0.5;
}

.header.active .header-nav__link:before {
  background-color: black;
}

.header.active .header-nav__link:hover:before {
  background-color: black;
}

.drawer__btn,
#drawer {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header__inner {
    margin: 0;
    height: 84px;
    width: calc(100% - 20px);
  }

  .header__logo {
    align-self: anchor-center;
    flex: 0 1 45px;
  }

  .header-nav {
    display: none;
  }

  .drawer__btn {
    position: relative;
    display: block;
    cursor: pointer;
    /*height: 84px;*/
    width: 84px;
  }

  .drawer__btn>span {
    display: inline-block;
    position: absolute;
    left: 50%;
    height: 2px;
    transform: translateX(-50%);
    background-color: var(--color-black);
    transition: all 0.5s;
    width: 40px;
  }

  .drawer__btn span:nth-of-type(1) {
    top: calc(50% - 7px);
  }

  .drawer__btn span:nth-of-type(2) {
    top: calc(50% + 7px);
  }

  .drawer__btn.close span:nth-of-type(1) {
    top: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }

  .drawer__btn.close span:nth-of-type(2) {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  #drawer {
    display: block;
    position: fixed;
    top: -120vh;
    right: 0;
    background: var(--color-primary);
    padding: 20px;
    padding-top: 120px;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    transition: all 0.5s;
    z-index: 50;
  }

  #drawer.panelactive {
    top: 0;
  }

  .drawer__inner {
    overflow: auto;
    margin: 0 auto;
    height: 100%;
    width: 100%;
  }

  .drawer-nav__item {
    border-bottom: 1px solid var(--color-gray);
  }

  .drawer-nav__item:first-child {
    border-top: 1px solid var(--color-gray);
  }

  .drawer-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-Poppins);
    font-weight: bold;
    line-height: 1;
    padding: 20px 12px;
  }

  .drawer-nav__link span {
    display: inline-block;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    margin-left: 8px;
  }

  .drawer-nav__btn {
    margin-top: 20px;
  }
}

/* フッター */
.footer {
  border-top: 1px solid var(--color-gray);
}

.footer__inner {
  padding: 70px 0 60px;
}

.footer__logo {
  margin: 0 auto;
  width: 150px;
}

.footer__logo img {
  width: 100%;
}

.footer__text {
  margin: 4rem auto;
  text-align: center;
}

.footer__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  margin: 30px auto 0;
  width: 100%;
  max-width: 220px;
}

.footer__tel-icon {
  flex: 0 1 22px;
}

.footer__tel-icon img {
  object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
}

.footer__tel-num {
  flex: 1;
  color: var(--color-secondary);
  font-family: var(--font-Poppins);
  font-size: 2.4rem;
  font-weight: bold;
}

.footer__address {
  text-align: center;
  margin-top: 8px;
}

.footer__list {
  margin: 20px auto 0;
  width: 100%;
  max-width: 440px;
}

.footer__item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  padding: 10px 0;
}

.footer__item:not(:first-child) {
  border-top: 1px solid var(--color-gray);
}

.footer__item-title {
  flex: 0 1 120px;
  background-color: rgba(255, 134, 115, 0.5);
  font-size: 1.4rem;
  font-weight: bold;
  padding: 20px 10px;
  text-align: center;
}

.footer__item-text {
  flex: 1;
}

.footer__map {
  position: relative;
  width: 100%;
}

.footer__map iframe {
  height: 300px;
  width: 100%;
  vertical-align: bottom;
}

.footer__copyright {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-Poppins);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 40px 0;
  }

  .footer__logo {
    width: 120px;
  }

  .footer__tel {
    margin: 20px auto 0;
  }

  .footer__item {
    column-gap: 12px;
  }

  .footer__item-title {
    flex: 0 1 100px;
  }
}

/* トップへ戻る */
.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 40px;
  background-color: var(--color-secondary);
  border: 1px solid var(--bg-primary);
  cursor: pointer;
  opacity: 0;
  width: 60px;
  height: 60px;
  z-index: 10;
  transition: 0.3s ease;
}

.page-top.active {
  bottom: 25px;
  opacity: 1;
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  height: 20px;
  width: 20px;
}

@media screen and (min-width: 1921px) {
  .page-top {
    right: calc((100vw - 1920px) / 2 + 40px);
  }
}

@media screen and (max-width: 768px) {
  .page-top {
    right: 10px;
    height: 40px;
    width: 40px;
  }

  .page-top.active {
    bottom: 10px;
  }

  .page-top::after {
    height: 14px;
    width: 14px;
  }
}

/* メインビジュアル */
.mv {
  position: relative;
}

.mv__inner {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 240px 0 200px min(40 / 1440 * 100vw, 40px);
  width: calc(100% - 20px * 2);
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

.mv__title {
  font-family: var(--font-Poppins);
  font-size: clamp(3.2rem, 80 / 1340 * 100vw, 8rem);
  font-weight: 600;
  line-height: 1;
  /*letter-spacing: 0.3em;*/
  letter-spacing: 0.1em;
  margin-top: clamp(16px, 33 / 1440 * 100vw, 33px);
  text-transform: uppercase;
  color: white;
}

.mv__title::first-letter {
  /*color: var(--color-primary);*/
}

.mv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mv {
  background-size: cover;
}

.category-topics .mv,
.single-post .mv {
  background-image: url(../images/top/mv_img08.jpg) !important;
}

.contact-new .mv {
  background-image: url(../images/s_CONTACT_header.jpg) !important;
}

.about .mv {
  background-image: url(../images/studio/s_studio_header210304.jpg) !important;
}

.contact-new .mv-overlay,
.about .mv-overlay {
  opacity: 0.2;
  background-color: #000000;
}

.single-post .mv__inner {
  padding: 110px 0 110px min(40 / 1440 * 100vw, 40px);
}

.single-post .mv__title {
  font-size: clamp(3.2rem, 80 / 1340 * 100vw, 5rem);
}

@media screen and (max-width: 1024px) {
  .mv__inner {
    padding-top: 84px;
  }
}

/* フォーム */
.form__content {
  max-width: 960px;
}

.form__text {
  font-size: 1.8rem;
}

.form__text-center {
  text-align: center;
}

.form__text+.form__text {
  margin-top: 1em;
}

.form__body {
  border-top: 1px solid var(--color-gray);
  margin-top: 20px;
  padding-top: 40px;
}

.form__item+.form__item {
  margin-top: 40px;
}

.form__name {
  font-size: 1.8rem;
  font-weight: bold;
}

.form__name .required {
  color: #ff4444;
  margin-left: 6px;
}

.form__input {
  margin-top: 8px;
}

.form__input {
  font-size: 1.8rem;
}

.form__item input[type="text"],
.form__item input[type="email"],
.form__item select,
.form__item textarea {
  background-color: var(--bg-secondary);
  border: 1px solid var(--color-gray);
  font-size: 1.8rem;
  padding: 8px;
  width: 100%;
}

.mw_wp_form_confirm .form__item-text {
  display: none;
}

.form__btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  row-gap: 20px;
  margin-top: 40px;
}

.form__btn-wrap .btn {
  margin: 0;
}

.form__btn-wrap .btn-sm {
  margin: 0;
}

.form__btn-wrap .btn input {
  width: 100%;
  height: 100%;
}

.form__btn {
  margin: 0;
}

.form__btn.back {
  background-color: var(--color-gray);
  height: 60px;
  max-width: 200px;
}

.form__btn.back::before,
.form__btn.back::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .form__text {
    font-size: 1.6rem;
  }

  .form__text-center {
    text-align: left;
  }

  .form__item+.form__item {
    margin-top: 20px;
  }

  .form__name {
    font-size: 1.6rem;
    font-weight: bold;
  }

  .form__input {
    margin-top: 4px;
  }

  .form__input {
    font-size: 1.6rem;
  }

  .form__item input[type="text"],
  .form__item input[type="email"],
  .form__item select,
  .form__item textarea {
    font-size: 1.6rem;
  }

  .form__item-text {
    font-size: 1.4rem;
  }

  .form__btn-wrap {
    margin-top: 20px;
  }
}

/*=========================
    contact form 7
=========================*/
.wpcf7-spinner {
  position: absolute !important;
  top: 0;
  left: 0;

}


/* works一覧 */
.works__content {
  /* max-width: 1100px; */
  max-width: 800px;
}

.works-cards {
  display: flex;
  flex-wrap: wrap;
  column-gap: 22px;
  row-gap: 40px;
}

.works-card {
  flex: 0 1 calc((100% - 22px * 2) / 3);
}

.works-card__img {
  overflow: hidden;
  width: 100%;
}

.works-card__img img {
  object-fit: cover;
  aspect-ratio: 22/15;
  width: 100%;
  transition: 0.3s ease;
}

.works-card:hover .works-card__img img {
  transform: scale(1.2);
}

.works-card__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  column-gap: 20px;
  row-gap: 8px;
  padding: 20px 16px 0;
}

.works-card__categorys {
  flex: 0 1 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 4px;
}

.works-card__category {
  background-color: var(--color-secondary);
  border-radius: 5px;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  padding: 8px 12px;
}

.works-card__date {
  font-size: clamp(1.2rem, 14 / 375 * 100vw, 1.6rem);
  line-height: 1.4;
}

.works-card__title {
  color: var(--color-secondary);
  font-size: clamp(1.4rem, 16 / 375 * 100vw, 2rem);
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .works-cards {
    column-gap: min(12 / 375 * 100vw, 20px);
  }

  .works-card {
    flex: 0 1 calc((100% - min(12 / 375 * 100vw, 20px)) / 2);
  }

  .works-card__body {
    row-gap: 4px;
    padding: 10px 4px 0;
  }

  .works-card__category {
    padding: 4px 8px;
  }
}

/* works詳細 */
.works__head {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
}

.works__categorys {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 16px;
  row-gap: 8px;
  margin-bottom: 26px;
}

.works__category-link {
  display: block;
  background-color: var(--color-secondary);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  padding: 12px 20px;
}

.works__title {
  font-family: var(--font-Poppins);
  font-size: clamp(2rem, 20 / 375 * 100vw, 3rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

.works__slide {
  margin-top: 26px;
}

.works__img img {
  object-fit: contain;
  aspect-ratio: 3/2;
  width: 100%;
}

.works__date {
  display: block;
  line-height: 1.4;
  margin-top: 18px;
  text-align: right;
}

.works__sub-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 15px;
  row-gap: 15px;
  margin-top: 40px;
}

.works__sub-img {
  cursor: pointer;
  flex: 0 1 calc((100% - 15px * 3) / 4);
  transition: 0.3s ease;
}

.works__sub-img:hover,
.works__sub-img-active {
  opacity: 0.6;
}

.works__sub-img img {
  object-fit: contain;
  aspect-ratio: 3/2;
  width: 100%;
}

.works__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 36px;
  margin-top: 115px;
}

.works__item {
  flex: 0 1 100%;
}

.works__item--col2 {
  flex: 0 1 calc((100% - 16px) / 2);
}

.works__item-title {
  display: inline-block;
  background: linear-gradient(transparent 50%,
      rgba(120, 213, 207, 0.5) 50% 100%);
  background-color: transparent;
  font-family: var(--font-Poppins);
  font-size: clamp(2rem, 20 / 375 * 100vw, 3rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 3px;
  min-width: clamp(176px, 176 / 375 * 100vw, 264px);
}

.works__item-text {
  line-height: 2.4;
  margin-top: 22px;
}

.works__item-text a:hover {
  color: var(--color-secondary);
}

.works-swiper__wrap {
  position: relative;
  margin-top: 60px;
  width: 100%;
}

.works-swiper__wrap .swiper-wrapper {
  flex-wrap: nowrap;
  column-gap: 0;
}

.works-swiper__wrap .works-card {
  flex: none;
}

.works-swiper__wrap .swiper-button-prev,
.works-swiper__wrap .swiper-button-next {
  top: min(120 / 1140 * 100vw, 120px);
  margin: 0;
  height: 60px;
  width: 60px;
}

.works-swiper__wrap .swiper-button-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.works-swiper__wrap .swiper-button-next {
  right: 0;
  transform: translate(50%, -50%);
}

.works-swiper__wrap .swiper-button-prev::after,
.works-swiper__wrap .swiper-button-next::after {
  background: url(../images/top/mv_ar.svg) no-repeat center center/contain;
  aspect-ratio: 1/1;
  width: 100%;
}

.swiper-button-prev::after {
  transform: scale(-1, 1);
}

.works__text {
  flex: 1;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .works__categorys {
    column-gap: 8px;
    margin-bottom: 12px;
  }

  .works__category-link {
    border-radius: 5px;
    font-size: 1.2rem;
    padding: 8px 12px;
  }

  .works__slide {
    margin-top: 20px;
  }

  .works__date {
    margin-top: 12px;
  }

  .works__sub-imgs {
    column-gap: 8px;
    row-gap: 8px;
    margin-top: 20px;
  }

  .works__sub-img {
    flex: 0 1 calc((100% - 8px * 3) / 4);
  }

  .works__list {
    row-gap: 20px;
    margin-top: 40px;
  }

  .works__item--col2 {
    flex: 0 1 100%;
  }

  .works__item-text {
    line-height: 2;
    margin-top: 12px;
  }

  .works-swiper__wrap {
    margin-top: 40px;
  }

  .works-swiper__wrap .swiper-button-prev,
  .works-swiper__wrap .swiper-button-next {
    top: min(55 / 375 * 100vw, 90px);
    height: 36px;
    width: 36px;
  }
}

/* news一覧 */
.news__content {
  max-width: 1100px;
}

.news-medias {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}

.news-media {
  position: relative;
  flex: 0 1 calc((100% - 20px) / 2);
  display: flex;
  flex-wrap: wrap;
  column-gap: min(30 / 1140 * 100vw, 30px);
  background-color: var(--bg-primary);
  padding: min(40 / 1140 * 100vw, 40px);
}

.news-media::after {
  content: "";
  position: absolute;
  bottom: min(30 / 1140 * 100vw, 30px);
  right: 30px;
  background: url(../images/ar.png) no-repeat center center/contain;
  height: 9px;
  width: 30px;
  transition: 0.3s ease;
}

.news-media:hover::after {
  right: 20px;
}

.news-media__img {
  flex: 0 1 30%;
  overflow: hidden;
  max-width: 130px;
}

.news-media__img img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  transition: 0.3s ease;
}

.news-media:hover .news-media__img img {
  transform: scale(1.2);
}

.news-media__body {
  flex: 1;
  padding-top: 10px;
}

.news-media__date {
  line-height: 1.4;
}

.news-media__title {
  color: var(--color-secondary);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .news-medias {
    column-gap: min(12 / 375 * 100vw, 20px);
    row-gap: min(12 / 375 * 100vw, 20px);
  }

  .news-media {
    flex: 0 1 100%;
    column-gap: min(12 / 375 * 100vw, 20px);
    padding: min(12 / 375 * 100vw, 20px);
  }

  .news-media::after {
    bottom: min(12 / 375 * 100vw, 20px);
    right: min(12 / 375 * 100vw, 20px);
  }

  .news-media__img {
    flex: 0 1 25%;
  }

  .news-media__body {
    padding-top: 0;
  }

  .news-media__date {
    font-size: clamp(1.4rem, 14 / 375 * 100vw, 1.6rem);
  }

  .news-media__title {
    font-size: clamp(1.4rem, 16 / 375 * 100vw, 1.8rem);
    margin-top: 4px;
  }
}

.news__list {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}

.news__item+.news__item {
  margin-top: 60px;
}

.news__item {
  display: block;
}

.news__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  row-gap: 8px;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 20px;
}

.news__item-title {
  flex: 0 1 100%;
  font-family: var(--font-Poppins);
  font-size: min(20 / 375 * 100vw, 3.2rem);
  font-weight: bold;
  transition: 0.3s ease;
}

.news__item:hover .news__item-title {
  color: var(--color-secondary);
}

.news__item-date {
  line-height: 1;
}

.news__item-category {
  background-color: var(--color-secondary);
  border-radius: 5px;
  color: var(--color-white);
  line-height: 1;
  padding: 4px 12px;
  text-transform: uppercase;
}

.news__item-foot {
  margin-top: 20px;
}

.news__item-text {
  line-height: 2;
  transition: 0.3s ease;
}

.news__item:hover .news__item-text {
  color: var(--color-secondary);
}

.news__item-link {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: bold;
  text-decoration: underline;
}

.news__item:hover .news__item-link {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .news__item+.news__item {
    margin-top: 40px;
  }

  .news__item-head {
    padding-bottom: 16px;
  }

  .news__item-foot {
    margin-top: 12px;
  }

  .news__item-text {
    line-height: 1.6;
  }
}

/* 投稿・固定 */
.single__content,
.page__content {
  max-width: 900px;
}

.single__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  row-gap: 8px;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 20px;
}

.single__title {
  flex: 0 1 100%;
  font-family: var(--font-Poppins);
  font-size: min(20 / 375 * 100vw, 3.2rem);
  font-weight: bold;
  transition: 0.3s ease;
}

.single__date {
  line-height: 1;
}

.single__category {
  background-color: var(--color-secondary);
  border-radius: 5px;
  color: var(--color-white);
  line-height: 1;
  padding: 4px 12px;
  text-transform: uppercase;
}

.single__body {
  margin-top: 40px;
}

.single__body>*:first-child {
  margin-top: 0;
}

.single__body h2,
.page__body h2 {
  font-size: clamp(2rem, 20 / 375 * 100vw, 2.4rem);
  font-weight: bold;
  margin-top: 1.5em;
}

.single__body h3,
.page__body h3 {
  font-size: clamp(1.8rem, 18 / 375 * 100vw, 2rem);
  font-weight: bold;
  margin-top: 1.5em;
}

.single__body h4,
.page__body h4 {
  font-size: clamp(1.6rem, 16 / 375 * 100vw, 1.8rem);
  font-weight: bold;
  margin-top: 1.5em;
}

.single__body h4,
.single__body h5,
.page__body h4,
.page__body h5 {
  font-size: clamp(1.4rem, 14 / 375 * 100vw, 1.6rem);
  font-weight: bold;
  margin-top: 1.5em;
}

.single__body p,
.page__body p {
  font-size: clamp(1.4rem, 14 / 375 * 100vw, 1.6rem);
  margin-top: 1em;
}

.single__body a,
.page__body a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.single__body ul,
.page__body ul {
  list-style: disc;
  margin-top: 1em;
  padding-left: 2em;
}

.single__body li,
.page__body li {
  margin-top: 0.5em;
}

.single__body .wp-block-columns,
.single__body .wp-block-embed,
.single__body .wp-block-image,
.page__body .wp-block-columns,
.page__body .wp-block-embed,
.page__body .wp-block-image {
  margin-top: 16px;
}

/* 404 Not Found */
.error404 .mv__title {
  font-size: min(80 / 1340 * 100vw, 8rem);
}

.not-found__text {
  font-size: clamp(1.6rem, 20 / 1140 * 100vw, 2rem);
  text-align: center;
}

.not-found__btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .error404 .mv__title {
    font-size: min(26 / 375 * 100vw, 4rem);
  }

  .not-found__text {
    text-align: left;
  }
}

.corp-link {
  position: relative;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
}

.corp-link:hover {
  color: var(--color-secondary);
}

.corp-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid var(--color-gray);
  border-left: 1px solid var(--color-gray);
  aspect-ratio: 1 / 1;
  width: 22px;
}

.corp-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 1px solid var(--color-gray);
  border-right: 1px solid var(--color-gray);
  aspect-ratio: 1 / 1;
  width: 22px;
}


/* 2025/12/22 */
.header__left {
  display: flex;
  align-items: center;
}

.header__insta {
  width: 50px;
}

.header__insta a {
  display: block;
  width: 100%;
}

.header__insta img {
  object-fit: contain;
  width: 100%;
}

.header:not(.active) .header__insta.white {
  display: block;
}

.header:not(.active) .header__insta.color {
  display: none;
}

.header.active .header__insta.white {
  display: none;
}

.header.active .header__insta.color {
  display: block;
}

@media screen and (max-width: 1024px) {
  .header__insta {
    align-self: anchor-center;
    flex: 0 1 35px;
  }
}

.footer__line {
  height: 80px;
  background: url(/punaphoto/wp-content/themes/punaphoto/common/images/bg_color03.jpg) top left repeat;
}

.visual-portfolio-archive .vp-pagination__style-minimal .vp-pagination__item a {
  background: var(--color-secondary);
  color: #fff;
  transition: all 0.3s ease;
}

.visual-portfolio-archive .vp-pagination__style-minimal .vp-pagination__item a:hover {
  color: #fff;
  opacity: 0.7;
}