@charset "UTF-8";
:root {
  --site-color-yellow: #FFDC00;
  --site-color-high-yellow: #FFE500;
  --site-color-orange: #ff6400;
  --site-color-orange-semilight: #FF8C64;
  --site-color-purple: #FF00B9;
  --site-color-pink: #ffafeb;
  --site-wrapper-space: 7.7%;
}
@media screen and (min-width: 769px) {
  :root {
    --site-wrapper-space: 7.5%;
  }
}
@media (max-width: 1000px) {
  :root {
    --test: 1;
  }
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  vertical-align: top;
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  overflow-x: hidden;
  color: #000000;
  font-weight: 500;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

p {
  text-align: justify;
  font-weight: 500;
}

.bold {
  color: #ff6478;
  font-size: 2rem;
  vertical-align: 0;
}

figure {
  text-align: center;
}

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

a:hover img {
  opacity: 1;
}

ul li,
ol li {
  list-style: none;
}

h1 {
  font-size: 3.6rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 23px;
}

h2 {
  font-size: 3rem;
  margin-inline: auto;
  line-height: 1.2;
  margin-bottom: 23px;
}

h3 {
  font-size: 2.6rem;
  line-height: 1.2;
}

section {
  padding-top: 5.6%;
  padding-bottom: 7.6%;
}

.margin {
  margin-bottom: 30px;
}

#page-top p {
  padding: 0 !important;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 5%;
}

.l-mainContent__inner {
  padding-block: 50px;
}

.top .l-mainContent__inner {
  padding-block: 0;
}

/*header*/
header {
  margin-bottom: 20px;
}

header .pc {
  margin-inline: auto;
}

.mv_logo {
  margin-top: -3%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px;
}

.mv_logo img:not(.mv_logo a img) {
  max-width: 60px;
  width: 7%;
  padding-bottom: 1%;
}

header .inner p {
  margin: 20px auto;
}

/*breadcrumb*/
.breadcrumb {
  padding-block: 10px;
  margin-inline: auto;
}

/* パンくずリスト */
.breadcrumb ul {
  list-style: none;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb li + li:before {
  content: ">";
  margin: 0.5em;
}

/*link*/
.link {
  text-align: center;
}

.link a {
  margin-inline: auto;
  display: inline-block;
  overflow: unset;
  transition: 0.5s;
}

.link a:hover {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
}

/*アニメーション*/
.animation {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translatex(0);
  }
  50% {
    transform: translatex(-5px);
  }
  100% {
    transform: translatex(0);
  }
}
/*ーーーーfooterーーーー*/
.l-footer {
  padding: 20px;
  color: #ffffff;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  font-size: 1.4rem;
}

footer .l-container {
  display: flex;
  max-width: 1000px;
  margin-inline: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.l-footer__link {
  margin: 0 0.5em;
}

.l-footer__nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.l-footer__nav li a {
  color: #000;
}

.copyright {
  color: #000;
  text-align: center;
}

.wrapper {
  margin-left: var(--site-wrapper-space);
  margin-right: var(--site-wrapper-space);
}

.btn-image {
  transition: opacity 0.2s ease;
}
.btn-image img {
  height: 100%;
}
.btn-image:hover {
  opacity: 0.75;
}

.btn-purple {
  transition-property: background, color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 2em;
  color: white;
  border-radius: 0.6vw;
  background: var(--site-color-purple);
}
.btn-purple:hover, .btn-purple:active {
  background: black;
}

.btn-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.btn-area.back2top {
  font-size: clamp(15px, 3.5vw, 28px);
  margin-top: 2em;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  .btn-area.back2top {
    margin-block: 2em;
    margin-bottom: 0.5em;
  }
}

/*-------------------------------------------*/
/*  Page-top
/*-------------------------------------------*/
.mainvisual {
  margin: 0;
}
.mainvisual img {
  width: 100%;
}

.result-shop-list {
  padding-top: 4.7%;
  padding-bottom: 6.6%;
}
@media screen and (min-width: 769px) {
  .result-shop-list {
    padding-top: 1.7%;
  }
}
.result-shop-list .post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 100%);
  gap: 0.9vw;
  padding-bottom: 3.3%;
  border: 1.1vw solid var(--site-color-yellow);
  border-radius: 2.668vw;
  background: white;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list {
    grid-template-columns: repeat(auto-fit, 50%);
    gap: 0;
    padding: 1.6% 2% 2.7%;
    border-width: 1.2vw;
    border-radius: 2.9vw;
  }
}
.result-shop-list .post-list .list-item .item-inner {
  padding: 4.6% 4.2%;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .item-inner {
    padding: 5% 3.5% 5.6%;
  }
}
.result-shop-list .post-list .list-item .shop-name {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4.15% 6%;
  height: 13.2vw;
  background: url(../img/home/img-shopname-bg-sp.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-name {
    height: 6.4vw;
  }
}
.result-shop-list .post-list .list-item .shop-name img {
  object-fit: contain;
  height: 100%;
}
.result-shop-list .post-list .list-item .shop-image, .result-shop-list .post-list .list-item .shop-info-area {
  margin-inline: 2.2%;
}
.result-shop-list .post-list .list-item .shop-image {
  margin-top: 3.2%;
  height: 39.4vw;
  border: 2px solid var(--site-color-purple);
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-image {
    height: 19.1vw;
    border-width: 0.3vw;
  }
}
.result-shop-list .post-list .list-item .shop-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.result-shop-list .post-list .list-item .shop-info-area {
  display: grid;
  grid-template-columns: 60% 35%;
  gap: 5%;
  margin-top: 2.5%;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-info-area {
    grid-template-columns: 61% 35%;
    gap: 4%;
    margin-top: 3%;
  }
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data {
  --my-text-image-height: 4.8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1.1%;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-info-area .shop-info-data {
    --my-text-image-height: 2.4vw;
    justify-content: flex-start;
  }
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data > dl, .result-shop-list .post-list .list-item .shop-info-area .shop-info-data > p {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  padding: 5.8% 0;
  background: url(../img/common/img-line-dot1-sp.svg) repeat-x bottom left;
  background-size: 200%;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-info-area .shop-info-data > dl, .result-shop-list .post-list .list-item .shop-info-area .shop-info-data > p {
    padding: 5.3% 0 5.9%;
    background-image: url(../img/common/img-line-dot1-pc.svg);
  }
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data > dl a, .result-shop-list .post-list .list-item .shop-info-area .shop-info-data > p a {
  display: flex;
  align-items: center;
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data dl dt {
  display: flex;
  align-items: center;
  padding-top: 0.5%;
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data dl dd {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-grow: 1;
  gap: 2%;
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data dl dd .num {
  display: flex;
  justify-content: flex-end;
  gap: 5%;
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data dl dd .num img {
  height: 5.8vw;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-info-area .shop-info-data dl dd .num img {
    height: 2.85vw;
  }
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data dl dd .unit {
  display: flex;
  padding-bottom: 1.5%;
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data dl dd .unit img {
  height: 4.95vw;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-info-area .shop-info-data dl dd .unit img {
    height: 2.45vw;
  }
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data .pachinko dt img {
  height: var(--my-text-image-height);
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data .slot dt img {
  height: var(--my-text-image-height);
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data .shop-link {
  padding: 7.8% 0 8%;
  justify-content: center;
}
.result-shop-list .post-list .list-item .shop-info-area .shop-info-data .shop-link img {
  display: block;
  width: 100%;
}
.result-shop-list .post-list .list-item .shop-info-area .investigator-info .investigator-name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5%;
  height: 10vw;
  background: var(--site-color-orange-semilight);
  border-radius: 0.8vw;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-info-area .investigator-info .investigator-name {
    padding: 5.3% 0;
    height: 4.9vw;
    border-radius: 0.43vw;
  }
}
.result-shop-list .post-list .list-item .shop-info-area .investigator-info .investigator-name img {
  height: 100%;
}
.result-shop-list .post-list .list-item .shop-info-area .investigator-info .investigator-image {
  margin-top: 5%;
  height: 21.6vw;
}
@media screen and (min-width: 769px) {
  .result-shop-list .post-list .list-item .shop-info-area .investigator-info .investigator-image {
    margin-top: 6%;
    height: 10.4vw;
  }
}
.result-shop-list .post-list .list-item .shop-info-area .investigator-info .investigator-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

#page-top a {
  background: #ff00c8;
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 10px;
}

#page-top {
  position: fixed;
  bottom: 30px;
  right: 10px;
  font-size: 1.2rem;
  z-index: 9;
}

@media screen and (min-width: 769px) {
  #link-interview {
    padding-top: 2.6%;
    padding-bottom: 4.2%;
  }
}
#link-interview .btn-image {
  height: 25vw;
}
@media screen and (min-width: 769px) {
  #link-interview .btn-image {
    height: 12.9vw;
    height: clamp(129px, 12.9vw, 160px);
  }
}

/* PC ==========================================================================================================*/
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 768.98px) {
  .pc {
    display: none !important;
  }
}

/* スマホ ==========================================================================================================*/
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  .margin {
    margin-bottom: 20px;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }
  .bold {
    font-size: 1.6rem;
  }
  img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  header .inner p {
    margin: 10px auto;
  }
  .inner {
    padding-inline: 4%;
  }
  .l-mainContent__inner {
    padding-block: 30px;
  }
  .l-footer {
    padding: 10px 4%;
    font-size: 1.3rem;
  }
  footer .l-container {
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 360px) {
  .l-container > a {
    width: 100%;
    order: 4;
  }
  .l-footer__nav {
    flex-direction: column;
    gap: 5px;
  }
}
@media screen and (min-width: 991px) {
  .inner {
    padding-inline: 50px;
  }
}
/*===============================TOPページ===============================*/
.top h2 {
  width: 95%;
  text-align: center;
}

.bg-yellow {
  background: var(--site-color-high-yellow) url(../img/common/img-bg-2.png);
  background-size: 270%;
}
@media screen and (min-width: 769px) {
  .bg-yellow {
    background-size: 100%;
  }
}

.bg-pink, .p-result-list {
  background: var(--site-color-pink) url(../img/common/img-bg-1.png);
  background-size: 270%;
}
@media screen and (min-width: 769px) {
  .bg-pink, .p-result-list {
    background-size: 100%;
  }
}

.p-result-list-month {
  margin: 0;
  padding-top: 3%;
  padding-bottom: 3%;
  background: white;
}
@media screen and (min-width: 769px) {
  .p-result-list-month {
    padding-top: 3.2%;
    padding-bottom: 2.4%;
  }
}
.p-result-list-month .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8.4vw;
}
@media screen and (min-width: 769px) {
  .p-result-list-month .inner {
    height: 7vw;
  }
}
.p-result-list-month span {
  display: inline-block;
}
.p-result-list-month .month-num, .p-result-list-month .month-cooperating_stores {
  height: 100%;
}
.p-result-list-month .month-num img, .p-result-list-month .month-cooperating_stores img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.p-result-list-month .month-num {
  margin-right: 0.5%;
}
.u-arrow-down {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.u-arrow-down img {
  width: 4.4vw;
}
@media screen and (min-width: 769px) {
  .u-arrow-down img {
    width: 2.4vw;
  }
}

/*===============================固定ページ===============================*/
.back {
  min-height: calc(100vh - 65px);
}

.cat_wrap {
  border-radius: 15px;
  border: 5px solid #fbb03b;
  background: #fff;
  padding: 50px 30px 30px;
}

/*===============================取材結果一覧===============================*/
.interview_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.interview_wrap li {
  border-radius: 15px;
  border: 5px solid #fbb03b;
  background: #fff;
}

.interview_wrap li:hover {
  filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.2));
}

.interview_wrap li a {
  display: flex;
  padding: 2px 20px;
  color: #000;
}

.interview_data {
  width: 200px;
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 3rem;
  border-right: 3px dotted #fbb03b;
  padding-block: 3px;
}

.interview_store {
  width: calc(100% - 200px);
  display: flex;
  align-items: center;
  font-weight: 700;
  justify-content: space-between;
  font-size: 3rem;
  padding-left: 20px;
  padding-block: 3px;
}

.interview_store img {
  width: 37px;
}

.archive_links {
  margin-top: 6vw;
  margin-top: clamp(30px, 5.5vw, 120px);
}
.archive_links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10%;
  justify-content: center;
}
.archive_links ul li {
  padding: 0.5% 1.5%;
  border-radius: 0.4vw;
  background: white;
}
.archive_links ul li a {
  color: #ff00c8;
}
.archive_links ul li a:hover {
  color: black;
}

/*===============================contact===============================*/
.c-form__wrap {
  margin-bottom: 20px;
}

.c-form lavel {
  width: 100%;
}

.c-form input[type=text], .c-form textarea {
  width: 100%;
  border-radius: 7px;
}

.wpcf7 input, .wpcf7 textarea, .wpcf7 select {
  border: solid 2px #000;
  border-radius: 7px;
  width: 100%;
  padding: 0.3em 0.6em;
  font-size: 1.6rem;
  background-color: #fff;
  line-height: 1.8;
  margin-top: 5px;
}

.u-red {
  color: #ff00a0;
  margin-left: 3px;
}

.send {
  width: 95%;
  margin: 0 auto;
}

.send_wrap .return {
  margin: 30px auto !important;
}

.send input, .wpcf7 .has-spinner {
  background-color: #ff00a0;
  color: #ffffff;
  border-radius: 7px;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  padding: 14px;
  border: none;
  cursor: pointer;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ff00a0;
}

.post_content table {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
  max-width: 100%;
  text-align: left;
  width: 100%;
}

.post_content th {
  background-color: #FAFAFA;
  font-weight: 700;
}

.post_content td, .post_content th {
  border: 1px solid #000;
  padding: 0.5em;
}

.wpcf7-not-valid-tip {
  color: #ff00a0;
}

/*===============================プライバシーポリシー・利用規約===============================*/
.policy p {
  font-size: 1.6rem;
}

.policy h2 {
  border-bottom: 3px solid #ff00a0;
  padding-bottom: 10px;
  margin-top: 50px;
  font-size: 2.8rem;
}

.policy h3 {
  margin: 50px 0 23px;
  border-left: 3px solid #ff00a0;
  padding-left: 5px;
  font-size: 2.4rem;
}

.policy h4 {
  margin: 25px 0 15px;
}

/*===============================結果詳細ページ===============================*/
.result section:not(.result section:first-child) {
  background: #fff;
  margin-bottom: 26px;
  padding: 30px;
}

.result section:last-child {
  margin-bottom: 0;
}

.result h2 {
  text-align: center;
}

/*日付とタイトル*/
.result_h1 {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-inline: 3%;
  padding-block: 0;
}

.result_h1 .result_data {
  background: #ff00c8;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  padding: 18px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.result_h1 h1 {
  margin-bottom: 0;
  background: #ff00c8;
  color: #fff;
  font-weight: 700;
  padding: 18px;
  border-radius: 15px 15px 0 0;
  flex-grow: 3;
}

.result table {
  font-weight: 700;
}

.result table th, .result table td {
  font-weight: 700;
  font-size: 2.4rem;
  vertical-align: middle;
}

/*出玉ランキング*/
.result_lank {
  border-radius: 15px;
  border: 6px solid #ff00c8;
}

.result_lank th {
  background: #ffc8ff;
  text-align: center;
  font-size: 2rem !important;
}

.result_lank td:first-child {
  background: #ffffdc;
  text-align: center;
}

.result_lank td:first-child span {
  text-align: center;
  text-align: -webkit-center;
}

.result_lank td:nth-child(2), .result table td:nth-child(4) {
  text-align: center;
}

.result_lank td:nth-child(3) {
  max-width: 400px;
}

.result_lank p {
  margin-top: 20px;
  margin-inline: auto;
  max-inline-size: fit-content;
  color: #ff00c8;
  font-weight: 700;
  font-size: 3rem;
}

/*機種別データ*/
.model_wrap {
  margin-bottom: 30px;
  border-bottom: 6px dotted #000;
  padding-bottom: 30px;
}

.model_wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.post_pickup {
  border-radius: 15px;
  border: 6px solid #0000c8;
}

.recommendation h3 {
  text-align: center;
  color: #fff;
  background: #0000c8;
  border-radius: 50px;
  margin-bottom: 20px;
  padding: 15px;
  font-size: 3rem;
}

.recommendation figure {
  margin-bottom: 20px;
}

.recommendation th, .recommendation td {
  text-align: center;
}

.recommendation th {
  background: #ffffdc;
  text-align: center;
  width: 220px;
}

.red {
  color: #ff0000;
}

/*機種別データ（アコーディオン）*/
.data_wrap {
  margin-top: 20px;
}

.details {
  border-top: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  border-radius: 5px;
}

.details:last-of-type {
  border-bottom: 1px solid;
}

.details-summary {
  position: relative;
  display: block;
  padding: 10px 20px;
  font-size: 2.4rem;
  font-weight: bold;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(230, 230, 230) 100%);
  border-radius: 5px;
}

.details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}

.details-summary .btn {
  position: absolute;
  top: 37%;
  right: 20px;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition-duration: 0.2s;
}

.details-summary .btn:before,
.details-summary .btn:after {
  content: "";
  background-color: #000;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  transform-origin: center center;
}

.details-summary .btn:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.details-summary.is-active .btn {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.details-summary.is-active .btn:before {
  content: none;
}

.details-summary::-webkit-details-marker {
  display: none;
}

.details-content p {
  margin: 0 0 20px;
  color: #000;
  font-size: 1.8rem;
  text-align: left;
}

.details-content p:last-of-type {
  margin: 0 0 0;
}

.details-content th {
  background: #b496ff;
  color: #fff;
  text-align: center;
}

.details-content td {
  text-align: center;
}

.details-content td:first-child {
  background: #f5ecff;
}

/*バラエティコーナー*/
.variety {
  border-radius: 15px;
  border: 6px solid #008c00;
}

.variety th {
  background: #00c800;
  color: #fff;
  text-align: center;
}

.variety td {
  text-align: center;
}

.variety td:first-child {
  background: "#ffffdc";
}

.variety td:nth-child(2) {
  text-align: left;
}

/*取材統括*/
.summary {
  border-radius: 15px;
  border: 6px solid #ff6400;
}

.summary h2 {
  margin-top: -50px;
}

.summary_img {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.summary th {
  background: #ffffdc;
  text-align: center;
  width: 55%;
}

.summary td {
  text-align: center;
  color: #ff6400;
}

.summary_comment {
  margin-top: 20px;
}

.summary_comment strong {
  color: #ff0000;
}

.x .twitter-tweet {
  margin-inline: auto;
  margin-top: 20px;
}

/*===============================スマホ===============================*/
@media screen and (max-width: 768px) {
  /*TOPページ*/
  .members h3 {
    min-height: unset;
    aspect-ratio: 17/4;
  }
  .members {
    gap: 10px;
  }
  .members p {
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  .member_list {
    gap: 10px;
  }
  .member_content {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
    align-items: center;
  }
  .member_wrap h4 {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: -1px;
  }
  .member_wrap ul {
    margin-block: 8px;
    gap: 8px;
    justify-content: center;
  }
  .member_wrap ul li img {
    width: 30px;
  }
  .member_content figure {
    width: 20vw;
    height: 20vw;
  }
  .ja .member_list > li {
    border: 2px solid #aa64ff;
    border-radius: 10px;
  }
  .ma .member_list > li {
    border: 2px solid #ffe600;
    border-radius: 10px;
  }
  .member_list > li {
    aspect-ratio: unset;
    padding: 10px;
    min-height: 280px;
  }
  .interview_wrap1 {
    flex-wrap: wrap;
    width: calc(100% - 75px);
  }
  .Interviewdata_wrap {
    padding-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center !important;
    align-items: center;
    width: 75px;
    border-right: 1px solid;
  }
  .interview_wrap2 {
    width: 100%;
    display: flex;
    gap: 0 10px;
    padding-left: 10px;
  }
  .Interview_name {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
  }
  .interview_wrap1.name {
    width: unset;
    padding: 0;
  }
  .interview_wrap1 .store {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid;
    padding: 0 0 4px 10px;
    width: 100%;
  }
  .cat_wrap {
    border-radius: 5px;
    border: 2px solid #fbb03b;
    padding: 30px 10px 10px;
  }
  /*取材結果一覧ページ*/
  .page-interview h1 {
    width: 80%;
    margin-inline: auto;
    margin-bottom: 10px;
  }
  .interview_wrap {
    gap: 10px;
  }
  .interview_wrap li {
    border-radius: 5px;
    border: 2px solid #fbb03b;
  }
  .interview_wrap li a {
    padding: 2px 10px;
  }
  .interview_data, .interview_store {
    font-size: 1.5rem;
    padding-left: 10px;
    padding-block: 0;
  }
  .interview_data {
    width: 120px;
  }
  .interview_store {
    width: calc(100% - 120px);
  }
  .interview_store img {
    width: 14px;
  }
  .archive_links {
    margin-top: 20px;
  }
  /*結果詳細ページ*/
  .result section:not(.result section:first-child) {
    padding: 10px;
  }
  .result table th, .result table td {
    font-size: 1.3rem;
    padding: 0.2em;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  .result_lank {
    border-radius: 5px;
    border: 2px solid #ff00c8;
  }
  .result_h1 .result_data {
    line-height: 1.2;
    width: 20%;
    text-align: center;
  }
  .result_h1 .result_data, .result_h1 h1 {
    padding: 8px 10px 10px;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -1px;
  }
  .result h2 {
    width: 85%;
  }
  .result_lank h2 {
    width: 74%;
  }
  .result_lank th {
    font-size: 1.3rem !important;
  }
  .result_lank td:first-child {
    width: 10%;
    font-size: 1.05rem;
  }
  .result_lank td:first-child span {
    width: 62%;
    display: inline-block;
  }
  .result_lank p {
    font-size: 1.8rem;
    margin-top: 10px;
  }
  .recommendation h3 {
    margin-bottom: 10px;
    padding: 5px;
    font-size: 1.6rem;
  }
  .recommendation figure {
    margin-bottom: 10px;
  }
  .model_wrap {
    margin-bottom: 20px;
    border-bottom: 3px dotted #000;
    padding-bottom: 20px;
  }
  .post_pickup {
    border-radius: 5px;
    border: 2px solid #0000c8;
  }
  .post_pickup h2 {
    width: 70%;
  }
  .data_wrap {
    margin-top: 10px;
  }
  .details-content td:first-child {
    font-size: 1.2rem;
  }
  .variety {
    border-radius: 5px;
    border: 2px solid #008c00;
  }
  .summary {
    border-radius: 5px;
    border: 2px solid #ff6400;
  }
  .details-summary {
    font-size: 1.4rem;
    padding: 10px 30px 10px 10px;
  }
  .details-summary .btn {
    right: 10px;
    top: 30%;
  }
  .details-summary .btn:before {
    width: 2px;
    height: 16px;
    top: 1px;
    left: 8px;
  }
  .details-summary .btn:after {
    width: 16px;
    height: 2px;
    top: 8px;
    left: 1px;
  }
  .summary h2 {
    width: 50%;
    margin-top: -30px;
  }
  .summary_img {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
  .summary th {
    width: 60%;
  }
  .wpcf7 input, .wpcf7 textarea, .wpcf7 select {
    border: solid 1px #000;
    border-radius: 2px;
  }
  .send input, .wpcf7 .has-spinner {
    font-size: 2rem;
    padding: 10px;
  }
  .policy p {
    font-size: 1.4rem;
  }
  .policy h2 {
    border-bottom: 2px solid #ff00a0;
    padding-bottom: 10px;
    margin-top: 30px;
    font-size: 2rem;
  }
  .policy h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
  }
  .policy h4 {
    margin: 20px 0 10px;
  }
}
.edit-post .twitter-timeline, .edit-post .twitter-tweet {
  margin: 1.5em auto;
  margin-top: 1.5em !important;
  margin-bottom: 1.5em !important;
}
.edit-post .twitter-timeline:not(.twitter-tweet-rendered), .edit-post .twitter-timeline:not(.twitter-timeline-rendered), .edit-post .twitter-tweet:not(.twitter-tweet-rendered), .edit-post .twitter-tweet:not(.twitter-timeline-rendered) {
  display: none;
}

/****** Page navi *******/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-top: clamp(10px, 4vw, 60px);
  font-size: clamp(15px, 3.5vw, 30px);
}

.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .page,
.wp-pagenavi .current {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 2em;
  height: 2em;
  color: black;
  background: white;
  line-height: 1.05;
  padding: 0.5em;
  border-radius: 0.6vw;
  border-style: solid;
  border-color: black;
  border-width: clamp(2px, 0.5vw, 4px);
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .page {
  transition: color 0.2s ease;
  transition-property: color, background-color, border-color;
}

.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
  transition: color 0.2s ease;
  transition-property: border-color;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .page:hover {
  color: var(--site-color-orange);
  border-color: var(--site-color-orange);
}

.wp-pagenavi .previouspostslink:hover:before,
.wp-pagenavi .nextpostslink:hover:before {
  border-color: var(--site-color-orange);
}

.wp-pagenavi .previouspostslink {
  margin-right: 2vw;
}

.wp-pagenavi .nextpostslink {
  margin-left: 2vw;
}

.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
  content: "";
  transform: rotate(-135deg);
  display: block;
  height: 0.5em;
  width: 0.5em;
  margin-left: 0.2em;
  border-style: solid;
  border-color: black;
  border-width: 3px 3px 0 0;
}

.wp-pagenavi .nextpostslink:before {
  transform: rotate(45deg);
  margin-right: 0.2em;
  margin-left: 0;
}

.wp-pagenavi .current {
  color: white;
  border-color: var(--site-color-orange);
  background: var(--site-color-orange);
}

.wp-pagenavi .previouspostslink.empty,
.wp-pagenavi .nextpostslink.empty {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    padding: 0.25em;
    border-radius: 0.7vw;
  }
  .wp-pagenavi .previouspostslink:before,
  .wp-pagenavi .nextpostslink:before {
    border-width: 2px 2px 0 0;
  }
  .wp-pagenavi {
    font-size: clamp(18px, 4.5vw, 30px);
    margin-top: 8vw;
  }
  .wp-pagenavi .previouspostslink {
    margin-right: 0;
  }
  .wp-pagenavi .nextpostslink {
    margin-left: 0;
  }
  .wp-pagenavi .previouspostslink:before {
    margin-left: 0.25em;
  }
  .wp-pagenavi .nextpostslink:before {
    margin-right: 0.25em;
  }
  .wp-pagenavi .page {
    display: none !important;
  }
}

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