/*
Theme Name: 12
Author:
Description: WP
Version: 1.0
*/

@charset "utf-8";

:root {
  --color-black-01:#000;
  --max-width:1280px;
  --padding-LR:0 40px;
  --padding-TB:120px 0;
  --padding-TBLR-base:120px 40px;
  --f-en-jo:"Josefin Sans", sans-serif;
  --midashi-h2:6rem;
}

body {
  font-size:1.4rem;
  font-family:"Roboto","Noto Sans JP","ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN W6", HiraKakuProN-W6, "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic W3 JIS2004";
	line-height:2.2;
	color:#000;
  font-weight:400;
	-webkit-print-color-adjust: exact;
}


img {
	vertical-align:bottom;
	touch-callout:none;
	user-select:none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
}


a img {

  transition:.5s;
}

a:hover img {
  opacity:.5;
}



/*
ローディングコンテナ***************


/* ローディングコンテナ */
#loading-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#fff;
  position:fixed;
  top:0;
  opacity: 1;
  transition: opacity 1.5s ease-out; /* 赤い●と同期したフェードアウト */
  z-index:9999999999999;
}


#new-logo {
  width: 250px;
  height: auto;
  opacity: 0;
  position: absolute;
  animation: logo-expand 1.5s cubic-bezier(.2,.26,.31,1.4) forwards;
  z-index:9999999999998;
}

/* 赤い●のスタイル */
#red-circle {
  position: absolute;
  width: 0;
  height: 0;
  background-color:#000;
  border-radius: 50%;
  opacity: 0;
  display: none; /* 初期状態で非表示 */
  z-index:9999999999997;
  animation: none;
}

/* ロゴの拡大アニメーション */
@keyframes logo-expand {
  0% {
    width: 0px;
    opacity: 1;
  }
  50% {
    width: 220px;
    opacity: 1;
  }
  75% {
    width: 220px;
    opacity: 1;
  }
  100% {
    width: 0px;
    opacity: 0;
  }
}

/* 赤い●の拡大アニメーション */
@keyframes circle-expand {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 3000px;
    height: 3000px;
    opacity: 1;
  }
}

/* 赤い●のフェードアウトアニメーション */
@keyframes circle-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ローディング画面の全体設定 */
#loading-container {
  transition: opacity 1.5s ease-out; /* ローディング画面全体のフェードアウト速度 */
}

/*
リンク色と下線の設定 --------------------------------------------*/

a {

	}

a:link {	
  color:var(--color-black-01);
  text-decoration:underline;
	}

a:visited {
  color:var(--color-black-01);
  text-decoration:underline;
	}

a:hover {
  color:var(--color-black-01);
	text-decoration:none;
	}

a:active {
  color:var(--color-black-01);
  text-decoration:underline;
}

#wrapper  {
  width: 100%;
}


.hdHeader {
  width: 100%;
  padding:8px 2%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: transform 0.3s ease;
}

/* 非表示状態 */
.hdHeader.hide {
  transform: translateY(-100%);
}

.hdHeader__inner {
  width:100%;
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.hdHeader__innerH1 {
  width:200px;
}

.menuBox {

}

.menuBox__list {
  display:flex;
  gap:24px;
  font-family:var(--f-en-jo);
  font-weight:700;
  line-height:1;
  align-items:center;
}

.menuBox__list a {
  padding:8px 0;
  letter-spacing:1px;
  text-decoration:none !important;
}

.subMenuSns {
  display:flex;
  gap:10px;
  margin-top:-6px;
}

.subMenuSns li {
  width:30px;
}


.fv {
  width:100%;
  overflow:hidden;
  padding-bottom:64px;
}

.fv__innerImg {
  width:80%;
  height:40vw;

  margin-top:60px;
  margin-left:20%;
  position:relative;
}

.fv__innerImg .bgfv {
  width:100%;
  height:100%;
  background:url(imgs/bg-fv-04.jpg) no-repeat 80% 17% / 100%;
}


.fv__innerImg:after {
 content:'';
 background:#F4F4F4;
 width:100%;
 height:20vw; 
 position:absolute;
 top:50%;
 left:-40%;
 z-index:-1;
 transform:translateY(-50%);
}

.fv__cacth {
  max-width:var(--max-width);
  padding:var(--padding-LR);
  margin:-18vw auto 0;
  position:relative;
  z-index:2;
}

.fv__cacth p {
  width:64%;
}

img.img-fv-catch {
  max-width:68%;
  margin-bottom:16px;
}

 .marquee-wrapper {
    overflow: hidden;
    width: 100%;
    background: #fff;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
    padding:8px 0;
}

  .marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 20s linear infinite;
  }

  .marquee-inner {
    display: flex;
  }

  .marquee-track li {
    list-style: none;
    font-size: 2rem;
    font-weight: 600;
    margin-right: 24px;
    white-space: nowrap;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

.topNews,
.topTalent {
  padding:80px 0;
}

.topIdol {
  padding:120px 0 100px;
}

.topIdol a {
  text-decoration:none;
}

.base__block {
  max-width:var(--max-width);
  margin:auto;
  padding:var(--padding-LR);
}

.base__block-padding {
  max-width:var(--max-width);
  padding:var(--padding-TBLR-base);
  margin:auto;
}

.misashiH2 {
  font-size:var(--midashi-h2);
  font-family:var(--f-en-jo);
  font-weight:700;
  line-height:1;
  margin-bottom:40px;
  letter-spacing:4px;
}

/*
.swiper {
  max-width:1200px !important;
  margin:auto !important;
}
*/

.card02 .swiper,
.card03 .swiper {
  max-width:1200px !important;
  margin:auto !important;
  /* padding:var(--padding-LR) !important; */
}


.sw-pd-LR {
  padding:var(--padding-LR) !important;
}


.card02 {
  overflow: hidden !important;
}

.card02 .swiper {
  overflow: visible;
}


.card02 .swiper a,
.card03 .swiper a {
  text-decoration:none;
}
.card02 .swiper-slide {
  width:28rem !important;
}

.card02 .swiper .swiper-parts,
.card03 .swiper .swiper-parts {
  display: flex;
  position:relative;
  justify-content:space-between;
  margin-top:32px;
}

.card02 .swiper .custom-navigation,
.card03 .swiper .custom-navigation {
  width:120px;
  position:relative;
  align-items:center;
  display:flex;
  justify-content:space-between;
}

.card02 .swiper .swiper-button-next,
.card02 .swiper .swiper-button-prev,
.card03 .swiper .swiper-button-next,
.card03 .swiper .swiper-button-prev {
  width:50px !important;
  position:relative !important;
  padding:0 !important;
  margin-top:0 !important;
  justify-content:space-between;
  top:auto !important;
  left:auto !important;
  right:auto !important;
}

.card02 .swiper .swiper-button-next:after,
.card02 .swiper .swiper-button-prev:after,
.card03 .swiper .swiper-button-next:after,
.card03 .swiper .swiper-button-prev:after {
    font-size:0 !important;
    line-height: 1 !important;
    position:relative !important;
    left:auto !important;
}



a.btn-01 {
  width:200px;
  display:block;
  padding:18px 0 12px;
  line-height:1;
  background:#fff;
  border:1px solid #000;
  border-radius:50px;
  text-align:center;
  border:1px solid #000;
  font-family:var(--f-en-jo);
  font-weight:600;
  font-size:1.8rem;
  transition:.5s;
  text-decoration:none !important;
}

.btn-01:hover {
  background:#000;
  color:#fff;
}

.card02 .swiper-button-disabled,
.card03 .swiper-button-disabled {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.topNews__txt {
  margin-top:8px;
}

time.base {
  font-weight:500;
  display:inline-block;
  margin-right:4px;
  font-size:1.2rem;
  /* color:#666; */
}

.icon-cate {
  display:inline-block;
  background:#000;
  color:#fff;
  padding:5px 10px 2px;
  font-size:1.3rem;
  line-height:1;
  font-size:1.2rem;
  letter-spacing:1px;
  font-family:var(--f-en-jo);
}

.kijiTitle {
  font-size:1.3rem;
  line-height:1.7;
  padding-top:6px;
}

.topNews__thum {
  position:relative;

}

.topNews__thum img {
  aspect-ratio: 25 / 16;
  width: 100% !important;
  height: auto;
  object-fit: cover;
  display: block;
}

.talent__thum {

  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.talent__thum img {
  width:100% !important;
  height:auto;
}


.talent__listName {
  line-height:1;
  padding-top:24px;
}

.talent__listName span {
  font-family:var(--f-en-jo);
  letter-spacing:2px;
  font-size:1rem;
  display:block;
  margin-bottom:8px;
}

.talent__listName h3 {
  font-size:1.8rem;
}

.idol__list {
  max-width:var(--max-width);
  display:flex;
  margin:auto;
  padding:var(--padding-LR);
  gap:56px;
}

.topMusic {
  /* background:#000; */
  color:#fff;
  padding:var(--padding-TB);
  position: relative;
}

.topMusic:after {
  display:block;
  content:'';
  width:100%;
  height:100%;
  background:#000;
  z-index:-2;
  position:absolute;
  top:0;
  left:0;
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity:.2;
}

.topMusic__midashi {
  margin:32px 0 40px;
}

.topMusic__inner01 {
  display:flex;
  justify-content:space-around;
  align-items:center;
  flex-direction:row-reverse;
}

.topMusic__inner01--img {
  width:36%;
}

.topMusic__inner01--txt {
  width:46%;
}

.pLead {
  font-weight:600;
  font-size:1.8rem;
  margin-bottom:14px;
  line-height:1.7;
  letter-spacing:1px;
}

.topMusic__inner02 {
  padding:80px 0;
}

.topmusic__kyoku {
  text-align:center;
  background:#fff;
  color:#000;
  padding:10px 0;
  font-size:2rem;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:48px;
}

.youtubeFlame {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtubeFlame iframe {
  width: 100%;
  height: 100%;
}

.mvtitleP {
  font-size:1.3rem;
  line-height:1.6;
}

.swiper-wrapper {
  height:auto !important;
}
.card03 {
  overflow: hidden !important;
}

.card03 .swiper {
  overflow: visible;
}

.card03 .swiper-slide {
  width:44rem !important;
}

.topMusic__inner03 {
  max-width:var(--max-width);
  padding:var(--padding-LR);
  margin:auto;
}

.topMusic__inner03List {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 16px;
  align-items:flex-start;
}

.topMusic__inner03List li {
  display:flex;
  gap:16px;
  align-items:center;
}

.topMusic__inner03List li .img_box {
  width:24%;
}

.topMusic__inner03List li .img_box img {
  border:1px solid #ccc;
  padding:4px;
  background:#fff;
}

.topMusic__inner03List li .txt_box {
  width:68%;
}

.topMusic__inner03List li a {
  text-decoration:underline;
}


.topMusic__inner03List li a:hover {
  text-decoration:none;
}

.release-artist {
  font-size:1.4rem;
  line-height:1;
  margin-bottom:6px;
}

.release-txt {
  font-size:1.1rem;
  line-height:1.3;
  margin-bottom:4px;
}

.release-txt-01 {
  font-size:1.2rem;
  line-height:1.5;
  margin-top:8px;
}

.release-txt-02 {
  font-size:1.1rem;
  line-height:1.5;
  margin-top:8px;
}

.music__moreBtn {
  display:flex;
  flex-direction:row-reverse;
  padding-top:32px;
}

.music__moreBtn a {
  text-decoration:none;
}

footer {
  background:#fff;
  overflow:hidden;
}

footer a {
  text-decoration:none !important;
}

.ft__inner {
  max-width:var(--max-width);
  padding:100px 40px 20px;
  margin:auto;
  display:flex;
  gap:80px;
  justify-content:space-between;
}

.subMenuSns.ftSNS {
  justify-content:flex-start;
  margin:0 0 16px 0;
  font-size:2rem
}

.subMenuSns.ftSNS li {
  width:40px !important;
}


.ft__inner--L {
  width:50%;
}

.ft__inner--R {
width:50%;
font-family:var(--f-en-jo);
}

.ftMenu01 {
  display:flex;
  flex-direction:column;
  gap:18px;
  font-family:var(--f-en-jo);
  font-weight:700;
  font-size:5rem;
  line-height:1;
  margin-top:24px;
}

.ft_ad {
  font-weight:700;
  margin:20px 0 16px;
  line-height:1.4;
}

.ft_dl {
  margin-bottom:16px;

}

.ft_dl dt {
  font-size:1.6rem;
  font-weight:700;
  line-height:1.4;
  margin-bottom:8px;
}

.ft_dl dd {
  line-height:1.4;
}

.ftMenu02 {
  display:flex;
  gap:28px;
  font-family:var(--f-en-jo);
  font-weight:700;
  font-size:1.7rem;
  line-height:1;
  margin-top:24px;
}

.ftLogo {
  width:70%;
}

.copy {
  letter-spacing:1px;
  text-align:center;
  font-family:var(--f-en-jo);
  font-size:1.1rem;
  padding-bottom:4px;
  font-weight:500;
}


div.breadcrumbs {
  margin-top:;
  text-align:right;
  max-width:var(--max-width);
  margin:120px auto 0; 
  padding:var(--padding-LR);
  font-size:1.1rem;
  letter-spacing:1px;
}


/*
PC talent --------------------------------------------*/
.lower__bottomMargin {
  height:40px;
}

.lower__title {
  margin-top:60px;
  text-align:center;
  padding:128px 0 40px;
}

.talent__list {
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap:80px 40px;
}

.talent__list a {
  text-decoration:none;
}

.idolLower__list {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px 56px;
}

.idolLower__list a {
  text-decoration:none;
}

.talentSingleBlock {
  display:flex;
  justify-content:space-around;
  gap:56px;
  /* flex-direction:row-reverse; */
  align-items:flex-start;
}

.talentSingleBlock__img {
  width:45%;
  position:sticky;
  top:0px;
}

.talentSingleBlock__profile {
  width:40%;
}

.talentSingleBlock__profile a {
  text-decoration:none;
}

.talentSingleName {
  font-size:2.7rem;
  letter-spacing:2px;
  font-family:var(--f-en-jo);
}

.talentSingleName span {
  font-size:1.2rem;
  letter-spacing:2px;
  font-weight:400;
  font-family:var(--f-en-jo);
  display:block;
  margin-bottom:4px;
}

.talentSNS__list {
  margin:0px 0 32px;
  display:flex;
  gap:16px;
}

.talentSNS__list img {
  width:20px;
}

.talentSNS__list img.sr {
  width:24px;
  transform:translateY(2px);
}

.taletSingleProfile {
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px 0;
  line-height:1.5;
}

.taletSingleProfile dt {
  width:24%;
}

.taletSingleProfile dd {
  width:76%;
}

.taletSingleMedia {
  margin-top:32px;
}

.taletSingleMedia dt {
  border-bottom:1px solid #000;
  padding-bottom:4px;
  margin-bottom:10px;
  font-weight:500;
}

.taletSingleMedia dd li {
  font-size:1.3rem;
  margin-bottom:4px;
  padding-left:1em;
  text-indent:-1em;
}

.taletSingleMedia dd a {
  text-decoration:underline;
}

.taletSingleMedia dd a:hover {
  text-decoration:none;
}

.taletSingleMedia dd li:before {
  content:'・';
}

.idol__schedule {
  margin-top:72px;
}


ul.nomalList li {
  margin-bottom:4px;
  padding-left:1em;
  text-indent:-1em;
}

ul.nomalList li:before {
  content:'・';
}

.talentSlide {

}



.talentSlide .swiper-button-prev {
  color:#fff;
  width:40px !important;
  height:40px !important;
  font-size:0 !important;
  background:url(/wp/wp-content/themes/twelve/imgs/img-arrow-l.svg) no-repeat 0 0 / cover;
}

.talentSlide .swiper-button-next {
  color:#fff;
  width:40px !important;
  height:40px !important;
  font-size:0 !important;
  background:url(/wp/wp-content/themes/twelve/imgs/img-arrow-r.svg) no-repeat 0 0 / cover;
}


.talentSlide .swiper-button-next:after,
.talentSlide .swiper-button-prev:after {
  display:none; /* < >を消す  */
  font-size:3rem;
}

@media screen and (max-width: 480px) {
.talentSlide .swiper-button-prev {
  width:24px !important;
  height:24px !important;
  font-size:0 !important;
}

.talentSlide .swiper-button-next {
  width:24px !important;
  height:24px !important;
  font-size:0 !important;
}


.talentSlide .swiper-button-next:after,
.talentSlide .swiper-button-prev:after {
  font-size:2.2rem;
}
}

/*
PC NEWS --------------------------------------------*/
.newsSingleBlock {
  max-width:800px;
  margin:auto;
}

.newsSingleBlock img {
  max-width:80%;
  display:block;
  margin:16px auto 0;
}

.newsSingleTitle {
  margin-bottom:32px;
}

.newsSingleBody {
  border-bottom:1px solid #ccc;
  padding-bottom:48px;
  margin-bottom:24px;
}



.newsSingleBody p {
  margin-bottom: 1em !important;
}



.newsSingleTitle h3 {
  font-size:2rem;
  font-weight:500;
  letter-spacing:1px;
  padding-bottom:3px;
  border-bottom:1px solid #ccc;
}

.newsSinglePager {
  display:flex;
  justify-content:space-around;
  align-items:flex-start;
  width:54%;
  margin:auto;
}

.newsSinglePager .btn-01 {
  width:180px;
  padding:16px 0 10px;
  font-size:1.35rem;
}

.newsSinglePager a {
  text-decoration:none;
}

.btn-01 a {
  text-decoration:none !important;
}

/*
PC COMPANY --------------------------------------------*/
.companyBlock {
  max-width:800px;
  margin:auto;
}

table.base-01 {
  width: 100%;
}

table.base-01 th {
  width: 25%;
  border-top:1px solid #ccc;
  border-bottom:1px solid #ccc;
  padding:20px 0;
  text-align: center;
  display: table-cell;
  font-weight:500;
  vertical-align:middle;

}

table.base-01 td {
  width: 75%;
  border-top:1px solid #ccc;
  border-bottom:1px solid #ccc;
  padding:20px 0 15px 20px;
  display: table-cell;
  text-align: left;
  margin-bottom: 0;
  line-height:1.8;
}


/*
PC CONTACT --------------------------------------------*/

.contactLead {
  text-align:center;
  margin-bottom:32px;
}

.requ {
  color:#E22632;
}




/*
PC audition --------------------------------------------*/

.auditionLead {
  text-align:center;
  margin-bottom:32px;
}

.auditionFV {
  margin-bottom:48px;
  overflow:hidden;
}

.img-line-qr {
  display:block;
  margin-top:8px;
  width:200px;
}

.btn-auditionContact {
  width:400px;
  margin:auto;
}

.btn-auditionContact {
  text-decoration:none !important;
}


/*
PC about --------------------------------------------*/
.aboutBlcok01 {
  position:relative;
  margin-bottom:120px;
}

.aboutBlcok01:after {
 content:'';
 background:#F4F4F4;
 width:100%;
 height:40vw; 
 position:absolute;
 top:50%;
 left:-10%;
 z-index:-1;
 transform:translateY(-50%);
}

.aboutBlcok01__inner {
  max-width:780px;
  margin:auto;
  padding:var(--padding-LR);
}

.aboutCatch {
  margin-bottom:32px;
}

.aboutImg01 {
  width:90%;
  height:34vw;
  background:url(imgs/bg-fv-04.jpg) no-repeat 100% 17% / 100%;
  margin-top:40px;
  margin-left:10%;
}

.aboutBlcok02 {
  position:relative;
}

.aboutImg02 {
  width:90%;
  height:34vw;
  background:url(imgs/bg-about-girl-02.jpg) no-repeat 90% 40% / 100%;
  margin-top:40px;
  margin-right:10%;
}


/*
PC Music --------------------------------------------*/
.musicCreators__title {
  font-family:var(--f-en-jo);
  font-weight:600;
  font-size:3.6rem;
  /* margin-bottom:16px; */
}

.musicCreators__title-single {
  margin-bottom:40px;
  text-align:center;
}

.musicCreators__list {
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap:16px 48px;
  padding:0 4%;
}

.musicCreators__list li:before {
  content:'・';
}

.musicCreators__list li a {
  text-decoration:underline;
}

.musicCreators__list li a:hover {
  text-decoration:none;
}

.musicCreators__mb {
  margin-bottom:80px;
}

.musicCreators__workstitle {
  font-family:var(--f-en-jo);
  font-weight:600;
  font-size:2rem;
  border-bottom:1px solid #ccc;
  padding-bottom:0px;
  margin-bottom:32px;
}

.musicWorksBlock {
  margin-bottom:56px;
}

.createrName__mb {
  margin-bottom:80px;
}

.createrName {
  text-align:center;
  font-size:2.5rem;
  margin-bottom:24px;
  font-weight:500;
  letter-spacing:3px;
}

.createrName span {
  display:inline-block;
  padding-left:8px;
  font-size:1.25rem;
  font-weight:400;
  letter-spacing:0;
}

.musicTeikyou {
  margin-top:16px;
  padding-bottom:6px;
  border-bottom:1px dashed #ccc;
}


.musicTeikyou dt {
  font-size:1.2rem;

}

.musicTeikyou dd {
  padding-bottom:6px;
}

/*
PC contact --------------------------------------------*/
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  /* -webkit-appearance: button; */
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
}


input[type=radio] {
  display:inline-block;
}

.wpcf7-list-item {
  width:auto !important;
  padding-bottom:10px !important;
}

.wpcf7-list-item { display: block; float: left; width: 80%; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  font-size:1.6rem;
  padding: 20px 8px;
  width: 100%;
 background:#eee;
}

input[type="date"] {
  appearance: none; /* ブラウザのデフォルトスタイルを無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #eee;
  border:none;
  font-size:1.6rem !important;
  padding: 15px 8px !important;
  margin-bottom:15px !important;
}


input[type="datetime-local"] {
-webkit-appearance: none !important;
width: 50% !important;
height: 3rem !important;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left !important;
}

input[type="date"] {

}

input[type="text"].nenrei-txt {
  width:100px;
  margin-right:10px;
}

input[type="text"].tel-numtxt {
  width:80%;
}



input[type="submit"].wpcf7-confirm,
input[type="submit"].wpcf7-submit,
.wpcf7-back { 
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 30px auto 0;
  padding: 20px 0;
  text-align: center;
  width: 40%;
  background:#000;
  border-radius:5px;
}

button.wpcf7cp-cfm-submit-btn {
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  font-weight:bold;
  margin: 0 auto 0;
  padding: 30px 0;
  text-align: center;
  width: 40%;
   background:#000;
}
input[type="button"].wpcf7-confirm,
input[type="button"].wpcf7-submit,
input[type="button"].wpcf7-form-control { 
  background:#555;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 0 auto 0;
  padding: 15px 0;
  text-align: center;
  width: 40%;
  border-radius:5px;
}


/*
input[type="button"].wpcf7cp-cfm-submit-btn,
input[type="button"].wpcf7-submit {
  background:#555;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 30px auto 0;
  padding: 20px 0;
  text-align: center;
  width: 70%;
}
*/


button.wpcf7cp-cfm-edit-btn { 
  background:#fff;
  border:1px solid #000;
  color: #000;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 0px auto 0;
  padding: 15px 0;
  text-align: center;
  width: 25%;
}


textarea {
  height:200px;
}


select {
  width:350px;
  border-radius: 0px;
  -webkit-appearance: none;
  appearance: none;
position:relative;
    border: 1px solid #bdbdbd;
    position:relative;
    background-image: url(/wp-content/themes/ikina/imgs/bg-contact-arrow-bottom.png);
    background:-color:#fff;
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  font-size:1.6rem;
  padding: 15px 8px;
  }

button.wpcf7cp-cfm-edit-btn {
    margin-right:auto !important;
    margin-bottom: 20px;
}

.wpcf7-not-valid-tip {
    display:block;
    clear:both;
    font-weight:bold;
}

input[type=checkbox],input[type=radio] {
  transform: scale(1.4);
  margin: 0 5px 0 0;
}

.kojin-jyohou-box {
width:88%;
  background:#eee;
  font-size:1.2rem;
  line-height:1.5;
  padding:30px;
  height:170px;
  overflow:scroll;
  margin-bottom:50px;
  border-radius:5px;
  margin:50px auto 30px;
}

.kojin-title {
  text-align:center;
  font-size:1.8rem;
  font-weight:bold;
  margin:30px 0 15px;
}

.kojin-lead {
  font-size:1.3rem;
  line-height:1.4;
  margin-bottom:15px;
}

.required {
  font-size:1rem;
  color:#B80928;
  margin-left:4px;
}

::placeholder {
  font-size:1.1rem;
}











































.jumpText span {
  display: inline-block;
  animation: none;
}

@keyframes jump {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  60%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}



/*
margin parts --------------------------------------------*/
.mb16 {
  margin-bottom:16px;
}

.mb24 {
  margin-bottom:24px;
}






/*
PC txt --------------------------------------------*/
.txt-c {
  text-align:center;
}

.txt-c-pt {
  text-align:center;
}


/*
アニメーション **********/

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-down.visible {
    opacity: 1;
    transform: translateY(0);
}


.fade-in-zoom {
    opacity: 0;
    transform: scale(0);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-zoom.visible {
    opacity: 1;
    transform: scale(1);
}


.fade-in-R {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-R.visible {
    opacity: 1;
    transform: translateX(0);
}


.fade-in-L {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-L.visible {
    opacity: 1;
    transform: translateX(0);
}

.grecaptcha-badge { visibility: hidden; }


.wp-pagenavi {
    margin: 20px 0 30px;
    font-size: 1.2rem;
    text-align:center;
}
.wp-pagenavi a {
    color: #4a4a4a;
    text-decoration:none;

}
.pages {
    margin-right: 20px;
}
.wp-pagenavi .current,
.wp-pagenavi a.page {
    margin: 0 6px;
    display: inline-block;
    border: solid 1px #eee;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
}
.wp-pagenavi .current {
    border: none;
    background:#000;
    color: #fff;
}
.wp-pagenavi a.page:hover {
    background:#000;
    color: #fff;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {/* ... */
    margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    display: none;
}


/*
PC block --------------------------------------------*/
.i_p_b {display: block !important;}
.i_t_b {display: none !important;}
.i_s_b {display: none !important;}
.i_pt_b {display: block !important;}
.i_ts_b {display: none !important;}
.dis-none {display:none !important;}