@charset "utf-8";
/*
Theme Name: 演劇ネットワークぱちぱち_v2
Description: 
Author: TGLAB×COSMICGEAR
Version: 1.0.2
*/
/*-root*/ :root {
  --base-fnt: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --fnt-noto: "Noto Sans JP", sans-serif;
  --fnt-cg: "century-gothic", sans-serif;
  --pd_side:min(50px,4vw);
  --easing: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --transit: .3s var(--easing);
  --clr-main: #00aed6;
  --color-primary-blue:#00aed6;
  --clr-lgrn: #cdff11;
  --color-primary-orange: #f39b00;
  --color-accent-red: #dd551a;
  --color-accent-orange-light: #fff3d8;
  --color-accent-blue-light: #d1f0f8;
  --color-base-white: #ffffff;
  --color-base-black: #333333;
  --wall-lgrn: rgba(205, 255, 17, .65);
  --wall-gry: #333333;
}
/*base=====*/
html {
  /* iOS Safariでのテキストサイズ自動調整を無効化 */
  -webkit-text-size-adjust: 100%;
  /* その他のブラウザ用 */
  text-size-adjust: 100%;
  /* スマホ時：固定メニューなし */
  scroll-padding-top: 0;
}
html, body {
  overscroll-behavior: none;
}
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  color: var(--color-base-black);
  font-size: clamp(0.875rem, 0.688rem + 0.63vw, 1.438rem); /*14-23*/
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-weight: 400;
  transition: opacity .6s var(--easing);
  opacity: 0;
  font-family: var(--base-fnt);
/*  font-family: var(--fnt-noto);*/
}
body.is-load {
  opacity: 1;
}
.fl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.fl.jc_c {
  justify-content: center;
}
.fl_c {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.fl_c.ai_c {
  -ms-align-items: center;
  align-items: center;
}
figure {
  margin-bottom: 0 !important;
}

a.cvr{
  position: absolute;
  inset:0;
  z-index: 1;
}
.fnt-cg{
  font-family: var(--fnt-cg);
}
/*container
========================================================*/
#container {
  width: 100%;
  min-height: 100dvh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/*hum
=====================================*/
/* ハンバーガーボタンの外枠 */
.p-hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 42px;
  height: 64px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#container .p-hamburger{
  top:0;
  height: var(--head-nav_h);
}
.p-hamburger.humhum {
  display: none;
}
.p-hamburger__inner {
  position: relative;
  width: 42px;
  height: 28px;
}
.p-hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  transition:
    transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
/* 1本目：青 */
.p-hamburger__line:nth-child(1) {
  top: 0;
  background-color: var(--color-primary-blue);
}
/* 2本目：オレンジ */
.p-hamburger__line:nth-child(2) {
  top: 12px; /* 4px + 8px */
  background-color: var(--color-primary-orange);
}
/* 3本目：青 */
.p-hamburger__line:nth-child(3) {
  top: 24px; /* 4px + 8px + 4px + 8px */
  background-color: var(--color-primary-blue);
}
/* --- バツにする --- */
/* 1本目30度回転 */
.js-hamburger.is-active .p-hamburger__line:nth-child(1) {
  transform: translateY(12px) rotate(30deg);
}
/* 2本目を消す */
.js-hamburger.is-active .p-hamburger__line:nth-child(2) {
  opacity: 0;
}
/* 3本目-30度回転 */
.js-hamburger.is-active .p-hamburger__line:nth-child(3) {
  transform: translateY(-12px) rotate(-30deg);
}
/* --- ハンバーガーメニュー --- */
.p-hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: none;
}
.p-hamburger-menu.is-active {
  pointer-events: auto;
}
/* オーバーレイ（黒い背景） */
.p-hamburger-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.p-hamburger-menu.is-active .p-hamburger-menu__overlay {
  opacity: 1;
}
/* ----- メニューパネル ----- */
.p-hamburger-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 400px;
  background-color: var(--color-base-white);
  border-radius: 0 0 0 24px;
  z-index: 2;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 30px 40px 50px;
}
.p-hamburger-menu.is-active .p-hamburger-menu__panel {
  transform: translateX(0);
}
/* ロゴ */
.p-hamburger-menu__logo {
  align-self: flex-start;
  margin-bottom: 40px;
}
.p-hamburger-menu__logo img{
  width: 100px;
  height: auto;
}
.p-hamburger-menu__logo svg{
  width: 110px;
  fill:var(--clr-main);
}
/* メニューリスト */
.p-hamburger-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  margin-top: 20px;
  color: var(--clr-main);
}
.p-hamburger-menu__list svg {
  fill: currentColor;
}
.p-hamburger-menu__list > li {
  position: relative;
}
/* 各メニュー項目 */
.p-hamburger-menu__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.p-hamburger-menu__list li a img:not(.p-hamburger-menu__icon), .p-hamburger-menu__list li a svg {
  height: 19px;
  width: auto;
  display: block;
}
.p-hamburger-menu__list li a svg.about{
  height: 21px;
}
.p-hamburger-menu__list li a svg.member{
  
}
.p-hamburger-menu__accordion-btn img, .p-hamburger-menu__accordion-btn svg {
  height: 21px;
  width: auto;
  display: block;
}
/* アコーディオンボタン */
.p-hamburger-menu__accordion-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: flex-end;
}
/* ＋マークの作成 */
.p-hamburger-menu__plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.p-hamburger-menu__plus::before, .p-hamburger-menu__plus::after {
  content: "";
  position: absolute;
  background-color: var(--color-primary-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-hamburger-menu__plus::before {
  width: 18px;
  height: 3px;
}
.p-hamburger-menu__plus::after {
  width: 3px;
  height: 18px;
  transition: transform 0.3s;
}
/* ＋からーにする */
.js-hamburger-accordion.is-open .p-hamburger-menu__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
/* ----- サブメニューの初期状態 ----- */
.p-hamburger-menu__sub-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0 20px 0 0;
  gap: 20px;
  align-items: flex-end;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}
.js-hamburger-accordion.is-open .p-hamburger-menu__sub-list {
  max-height: 300px;
  opacity: 1;
  padding: 20px 20px 0 0;
}
.p-hamburger-menu__sub-list img:not(.p-hamburger-menu__icon) {
  height: 19px !important;
  width: auto;
}
.p-hamburger-menu__icon {
  height: 21px;
  width: auto;
  display: block;
}
/*header
=====================================*/
header {
  width: 100%;
  transition: translate var(--transit);
}
.hero-movie_wrap {
  width: 100%;
  aspect-ratio:1/0.5625;
}
.hero-movie_wrap video {
  object-fit: cover;
  height: 100%;
  object-position: center;
  width: 100%;
}
.head-nav_wrap{
  width: 100%;
  min-height: min(90px,15vw);
  z-index: 100;
}
.head-nav__inner {
  width: 100%;
  background-color: var(--clr-main);
  z-index: 100;
  display: grid;
  grid-template-columns: min(160px, 20vw) auto;
  -ms-align-items: center;
  align-items: center;
  padding-left: min(50px, 5vw);
  padding-right: min(50px, 5vw);
}
#js-fix-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.h-logo img, .h-logo svg {
  object-fit: contain;
  height: 100%;
  object-position: center;
}
.h-logo svg {
  fill: #fff;
}
/* global navgation*/
.head_nav__link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  -ms-align-items: center;
  align-items: center;
  color: #fff;
  font-size: clamp(1rem, 0.297rem + 1.25vw, 1.313rem); /*16-21/900-1300*/
}
.el-popover {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit);
  transform-origin: top center;
  background-color: transparent;
  transform: translate(-50%, -6px);
  color: var(--clr-main);
  transition-delay: .25s;
  font-size: .85em;
}
.el-popover.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.el-popover li:nth-child(odd) {
  background-color: #f2f2f2;
}
.el-popover li:nth-child(even) {
  background-color: #e6e6e6;
}
.el-popover li a {
  display: grid;
  padding: 10px;
  text-align: center;
}
.el-popover li a img
,.el-popover li a svg{
  object-position: center;
  max-width: 100%;
}
.el-popover li a img.about
,.el-popover li a svg.about{
  height: 17px;
}
.el-popover li a img.member
,.el-popover li a svg.member{
  height: 14px;
}
.g-nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.g-nav > li{
  min-width: 5em;
}
.g-nav svg {
  fill: currentColor;
}
.g-nav > li img, .g-nav > li svg {
  height: 18px;
  object-fit: contain;
  width: 100%;
  object-position: left center;
}
.g-nav > li img.about, .g-nav > li svg.about {
  height: 19px;
}
.g-nav > li > p, .g-nav > li > a {
  display: grid;
  place-content: center;
  height: 90px;
  padding-left: .8em;
  padding-right: .8em;
  cursor: pointer;
  overflow: hidden;
}
.g-nav > li > p::before, .g-nav > li > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--clr-main);
  mix-blend-mode: multiply;
  translate: 0 -100%;
  transition: translate var(--transit);
}
.g-nav > li > p::after, .g-nav > li > a::after {
  content: "";
  width: 100%;
  height: .5em;
  background-color: var(--clr-lgrn);
  position: absolute;
  bottom: 0;
  left: 0;
  scale: 0 1;
  transform-origin: left center;
  transition: scale var(--transit);
  transition-delay: .15s;
}
@media(hover) {
  .g-nav > li:hover > p::before, .g-nav > li:hover > a::before {
    translate: 0 0;
  }
  .g-nav > li:hover > p::after, .g-nav > li:hover > a::after {
    scale: 1 1;
  }
}
.head_nav__link .sns-link-list {
  padding-left: 1em;
  border-left: 1px solid currentColor;
}
.sns-link-list {
  -ms-align-items: center;
  align-items: center;
  gap: 1em;
  justify-content: flex-start;
}
.sns-link-list a {
  height: 1em;
}
.sns-link-list a img {
  object-fit: contain;
  height: 100%;
  object-position: center;
}
.sns-link-list a.insta, .sns-link-list a.x {
  aspect-ratio: 1;
}
.sns-link-list a.yt {
  aspect-ratio: 1/0.2233;
}
/*main
=====================================*/
main {
  flex: 1;
}
.inner {
  width: min(1300px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pd_side);
  padding-right: var(--pd_side);
}
.inner.w-mid {
  width: min(1380px, 100%);
}
/*#hero
============================*/
/*#index content 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#content {
}
.index-contents {
  min-height: 1500px;
}
.lead-text {
  font-kerning: none;
  line-height: calc(32/16);
}
.in-text {
  font-kerning: none;
  line-height: calc(28/16);
}
.lead-text.cnt, .in-text.cnt {
  text-align: center;
}
/*wall*/
.stripe-wrapper {
  background-image: repeating-linear-gradient(45deg, rgba(0, 174, 214, .1), rgba(0, 174, 214, .1) min(5px, 1vw), rgba(0, 174, 214, 0) min(5px, 1vw), rgba(0, 174, 214, 0) min(10px, 2vw));
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}
.stripe-wrapper_sept{
  background-image:
    repeating-linear-gradient(45deg, rgba(0, 174, 214, .1), rgba(0, 174, 214, .1) min(5px, 1vw), rgba(0, 174, 214, 0) min(5px, 1vw), rgba(0, 174, 214, 0) min(10px, 2vw)), repeating-linear-gradient(-45deg, rgba(0, 174, 214, .1), rgba(0, 174, 214, .1) min(5px, 1vw), rgba(0, 174, 214, 0) min(5px, 1vw), rgba(0, 174, 214, 0) min(10px, 2vw));
  background-size: 50% 100%, 50% 100%;
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
}
/*title settings*/
.sec-title {
  display: flex;
  justify-content: center;
}
.sec-title img {
  height: min(100px, 16vw);
  object-fit: contain;
  width: 100%;
  object-position: center;
}
.sec-title.no-bdr img {
  height: clamp(1.75rem, 1.161rem + 2.42vw, 3.125rem);
}
/*button settings*/
.more-button {
  width: min(158px, 30vw);
}
.rect-button {
  width: min(526px, 100%);
  height: min(100px, 20vw);
  --btn-wall: var(--clr-main);
  position: relative;
}
.rect-button a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background-color: var(--btn-wall);
  border-radius: 10px;
  transition: translate .2s var(--easing);
  translate: 0 0;
}
.rect-button::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.15);
  inset: 0;
  translate: 8px 8px;
  border-radius: 10px;
  pointer-events: none;
}
.rect-button a img, .rect-button a svg {
  height: min(30px, 7vw);
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media(hover) {
  .rect-button a:hover {
    translate: 4px 4px;
  }
}
/*list*/
.note-list > li {
  padding-left: 1em;
  font-size: .875em;
  line-height: calc(30/21);
}
.note-list > li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
/*animetion*/
.index-contents .u-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
  pointer-events: none;
}
.index-contents .u-fade-up.is-animated {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* INDEX ABOUT*/
.index-about-blc {
  display: grid;
  grid-template-columns: min(1300px, 100%);
  justify-content: center;
  padding-left: min(60px, 5vw);
  padding-right: min(60px, 5vw);
}
.box-index-about {
  background-color: #fff;
  padding-left: var(--pd_side);
  padding-right: var(--pd_side);
  display: grid;
  grid-template-columns: min(1100px, 100%);
  justify-content: center;
}
/*banner*/
.index-about__banner{
  width: min(1000px,100%);
  margin-left: auto;
  margin-right: auto;
}
#banner-slider{
  overflow: hidden;
}
.banner-slide-item{
  aspect-ratio:1/0.45;
}
.banner-slide-item img{
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
}
.banner-navigation{
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  translate:0 -50%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-left: min(10px,3vw); 
  padding-right: min(10px,3vw); 
  pointer-events: none;
}
.banner-navigation button{
  width: min(30px,8vw);
  aspect-ratio:1;
  background-color:var(--wall-lgrn);
  display: grid;
  grid-template-columns: 50%;
  place-content:center;
  border-radius: 100vmax;
  border: 1px solid;
  pointer-events: auto;
}
.banner-navigation button svg{
  fill:#000;
}
.banner-navigation button.banner-button-prev{
  scale:-1 1;
}
.banner-pagination{
  bottom:auto!important;
  display: flex;
  justify-content: center;
  margin-top: min(15px,3vw);
  gap:10px;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.banner-pagination .swiper-pagination-bullet{
  margin: 0!important;
  opacity: 1;
  background-color: #ccc;
}
.banner-pagination .swiper-pagination-bullet-active{
  background-color: var(--clr-main);
}
/*disc*/
.index-about-blc .box-index-about{
  padding-top: min(200px, 15vw);
  padding-bottom: min(150px, 12vw);
}
.index-about__disc {
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
}
.index-about-blc .index-about__disc{
  margin-top: min(150px, 10vw);
}
.index-about__disc .logo {
  width: min(580px, 70vw);
}
.index-about__disc .catch-text {
  font-size: clamp(18px, 2.3438vw, 45px);
  font-weight: 900;
  line-height: calc(76/45);
  font-family: var(--fnt-noto);
  margin-top: min(60px, 8vw);
}
.index-about__disc .catch-text span {
  font-size: 1.3333em;
  color: var(--clr-main);
}
.index-about__disc .lead-text {
  font-size: clamp(16px, 1.7188vw, 33px);
  line-height: calc(54/33);
  font-weight: 600;
  margin-top: min(60px, 8vw);
}
.index-about__disc .in-text {
  margin-top: min(30px, 5vw);
}
.index-about__disc .more-button {
  margin-top: min(70px, 10vw);
}

/*INDEX JOIN*/
.index-join-blc {
  background-color: var(--wall-lgrn);
  padding: min(180px, 12vw) var(--pd_side);
  grid-template-columns: min(1126px, 100%);
  display: grid;
  justify-content: center;
}
.box-index-join {
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
}
.box-index-join .logo {
  width: min(290px, 45vw);
}
.index-join_member {
  margin-top: min(100px, 12vw);
  display: flex;
  flex-direction: column;
  gap: min(60px, 8vw);
}
.member-inquiry_wrap {
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  gap: min(20px, 5vw);
}
.note-box {
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding: min(20px, 4vw);
  border-radius: 10px;
  font-size: 0.913em;
}
.note-box .in-link {
  color: var(--clr-main);
  font-size: clamp(18px, 1.4062vw, 27px);
  font-weight: 600;
}
.note-box .in-link span {
  border-bottom: 2px solid;
}
.note-box .in-text {
  margin-top: 1em;
  line-height: calc(30/20);
}
.index-join_sponsor {
  padding-top: min(150px, 12vw);
}
.index-join_sponsor .lead-text {
  font-size: 1.2174em;
  font-weight: 600;
  text-align: center;
  margin-top: min(50px, 8vw);
}
.index-join_sponsor .in-text {
  margin-top: 1em;
}
.sponsor-list {
  margin-top: min(40px, 7vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:min(30px,7vw) min(40px,5vw);
}
.sponsor-list a {
  transition: translate .2s var(--easing);
}
.sponsor-list a::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.15);
  inset: 0;
  translate: 8px 8px;
  pointer-events: none;
  transition: translate .2s var(--easing);
}
@media(hover) {
  .sponsor-list a:hover {
    translate: 4px 4px;
  }
  .sponsor-list a:hover::before {
    translate: 4px 4px;
  }
}
/*INDEX INQUIRY*/
.index-inquiry-blc {
  padding: min(180px, 12vw) var(--pd_side);
  display: grid;
  grid-template-columns: min(930px, 100%);
  justify-content: center;
}
.index-inquiry__intro {
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
}
.index-inquiry__intro .lead-text {
  line-height: calc(34/24);
  text-align: center;
  margin-top: min(30px, 5vw);
}
.index-inquiry__intro .note-list {
  margin-top: .5em;
}
.index-inquiry__form{
  margin-top: min(70px,10vw);
}

/*form settings +++++++++++++++++++++++++++++++*/
.screen-reader-response {
  display: none !important;
}
.wpcf7 form > .wpcf7-not-valid-tip {
  display: none !important;
}
.p-contact__item {
  display: flex;
  flex-direction: column;
}
.p-contact__item label {
  order: 1;
}
.p-contact__item .wpcf7-not-valid-tip {
  order: 2;
  color: #ff0000;
  font-size: 0.8rem;
  margin-bottom: 5px;
  margin-top: 5px;
}
.p-contact__item .wpcf7-form-control-wrap {
  order: 3;
}
/* 親要素：ここが Flex コンテナになっているのが原因 */
.p-contact__radio-group {
  display: block !important;
  text-align: left;
}
/* 各選択肢のラベル */
.p-contact__radio {
  display: inline-flex !important;
  vertical-align: middle;
  margin-right: 20px !important;
  margin-bottom: 10px;
  cursor: pointer;
  order: 0 !important;
  position: static !important;
}
.p-contact__radio-group .wpcf7-not-valid-tip {
  flex-basis: 100%;
  order: -1;
  color: #ff0000;
  font-size: 0.8rem;
  margin-top: 5px;
}
.wpcf7-response-output {
  margin: 20px auto !important;
  padding: 25px !important;
  border: none !important;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  background: #fff;
  border-radius: 15px;
  width: fit-content;
  max-width: 100%;
  display: none;
}
.index-inquiry-blc .wpcf7-response-output{
  background-color: #ededed;
}
.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.spam .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output {
  display: block !important;
}
/* error */
.wpcf7.invalid .wpcf7-response-output, .wpcf7.unspam .wpcf7-response-output {
  background-color: #fce8e6;
  color: #d93025;
}

/* フォーム項目 */
.p-contact__item {
  margin-bottom: 24px;
}
.p-contact__item.is-contact {
  margin-bottom: 10px;
}
.p-contact__item label, .p-contact__label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: clamp(0.938rem, 0.911rem + 0.11vw, 1rem); /* 15px-16px */
}
.p-contact__item input[type="text"], .p-contact__item input[type="email"], .p-contact__item textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-base-white);
  font-family: inherit;
  resize: vertical;
}
.p-contact__radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.p-contact__radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-contact__radio input {
  display: none;
}
.p-contact__radio-text {
  position: relative;
  padding-left: 34px;
  font-weight: 400;
  display: flex;
  align-items: center;
  min-height: 28px;
}
/* input rario */
.p-contact__radio-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: var(--color-base-white);
  border-radius: 50%;
  border: 2px solid transparent; /* 未選択時は枠線なし */
  transition: border-color 0.2s;
}
.index-inquiry__form .p-contact__radio-text::before{
  border-color: currentColor;
}
.p-contact__radio input:checked + .p-contact__radio-text::before {
  border-color: var(--color-primary-blue);
}
.p-contact__radio-text::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--color-primary-blue);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.p-contact__radio input:checked + .p-contact__radio-text::after {
  opacity: 1;
}
.p-contact__radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: bold;
}
/* submit button */
.p-contact__submit {
  text-align: center;
  margin-top: 24px;
  width: 100%;
  margin-bottom: 24px;
}
.p-contact__submit button {
  background-color: var(--clr-main);
  border: none;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.p-contact__submit button img {
  height: 24px;
  width: auto;
  display: block;
}
.p-contact__submit button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.p-contact__note {
  font-size: clamp(0.813rem, 0.786rem + 0.11vw, 0.875rem); /* 13px-14px */
  margin-bottom: 38px;
}
.index-inquiry__form .p-contact__note {
  line-height: calc(29/20);
  
}
.index-inquiry__form .p-contact__item input[type="text"]
,.index-inquiry__form  .p-contact__item input[type="email"]
,.index-inquiry__form  .p-contact__item textarea{
  border: 1px solid;
}

/* ------- PCサイズ ------- */
/*++++++++++ page topトップへ戻るボタン+++++++++*/

.p-page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-orange);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

.p-page-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-page-top__icon {
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--color-base-white);
  border-right: 3px solid var(--color-base-white);
  transform: rotate(-45deg);
  margin-top: 4px;
}

@media (hover: hover) {
  .p-page-top:hover {
    transform: translateY(-5px);
  }
}

/*footer
=====================================*/
footer {
  background-color: var(--clr-main);
  color: #fff;
  padding-top: min(50px, 12vw);
}
.footer_inner {
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  gap: min(50px, 12vw);
  font-size: clamp(0.875rem, 0.75rem + 0.42vw, 1.25rem);
}
.footer__nav_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  -ms-align-items: flex-end;
  align-items: flex-end;
  gap: 1.25em 1em;
  line-height: calc(24/16);
}
.footer_nav__contents {
  display: flex;
  justify-content: flex-end;
  gap: min(40px, 5vw);
}
.footer_nav__contents > li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  gap: 1em;
}
.footer__nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.footer-nav__other {
  grid-column: span 2;
  text-align: center;
  padding-top: 1em;
  border-top: 1px solid;
}
.foot-logo {
  display: grid;
  grid-template-columns:min(240px, 50vw);
  justify-content: center;
}
.foot-logo a.u-fade-up {
   opacity: 0;
  transform: scale(0.8) translateY(10px); /* 少し小さく、少し下に */
  filter: blur(4px); /* 少しぼかしておくと「ぽわっと」感アップ */
  transition:
    opacity 1.2s ease-out,
    transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 1.2s ease-out;
  pointer-events: none;
}
.foot-logo a.u-fade-up.is-animated {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
  pointer-events: auto;
}
footer p.copy {
  text-align: center;
  background-color: var(--wall-gry);
  padding: 1em var(--pd_side);
  font-size: 0.75rem;
}