@charset "UTF-8";
/* main.scss */
* {
  box-sizing: border-box;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    font-size: 14px;
  }
}

body {
  background-color: #000;
  color: white;
}

a {
  color: #AB900E;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
  z-index: 10000;
}

br[class^=br-] {
  display: none;
}

@media (min-width: 640px) {
  br.br-sm {
    display: inline;
  }
}
@media (min-width: 800px) {
  br.br-md {
    display: inline;
  }
}
@media (min-width: 1240px) {
  br.br-lg {
    display: inline;
  }
}
@media (max-width: 640px) {
  br.br-only-sm {
    display: inline;
  }
}
.img-sm-only,
.img-md-only,
.img-lg-only {
  display: none;
}

@media (max-width: 640px) {
  .img-sm-only {
    display: block;
  }
}
@media (min-width: 640px) {
  .img-sm-up {
    display: block;
  }
}
@media (max-width: 800px) {
  .img-md-only {
    display: block;
  }
}
@media (min-width: 800px) {
  .img-md-up {
    display: block;
  }
}
@media (min-width: 1240px) {
  .img-lg-up {
    display: block;
  }
}
p {
  margin: 0.5em auto 1em;
}
p:first-child {
  margin-top: 0;
}

:root {
  --page-padding: 1.5rem;
}

.entry-content {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--page-padding);
  position: relative;
}
.entry-content p {
  line-height: 1.8;
}

.entry-content > .alignwide {
  max-width: 1360px;
  margin-inline: auto;
}

.entry-content > .alignfull {
  width: var(--vw);
  max-width: var(--vw);
  margin-left: 50%;
  transform: translateX(-50%);
}

body {
  overflow-x: hidden;
}

body:not(.home, .archive, .search) .entry-content {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 3em;
  border-radius: 1em;
}
@media (max-width: 640px) {
  body:not(.home, .archive, .search) .entry-content {
    padding: 1.25em;
    margin: 0.5em;
  }
}

/* ----------------------------------------
 * WordPress: alignments
 * 画像・figure・ブロック共通
 * -------------------------------------- */
/* 左寄せ：テキスト回り込み */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

/* 右寄せ：テキスト回り込み */
.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

/* 中央寄せ：ブロックとして中央に */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

img.alignleft,
.wp-block-image .alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

img.alignright,
.wp-block-image .alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

img.aligncenter,
.wp-block-image .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* figure 共通の余白調整など */
.wp-block-image,
figure {
  max-width: 100%;
}

.wp-block-image img {
  height: auto;
}

/* キャプション */
.wp-element-caption,
.wp-block-image figcaption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5em;
  color: #666;
}

@media (max-width: 768px) {
  .alignleft,
  .alignright,
  img.alignleft,
  img.alignright,
  .wp-block-image .alignleft,
  .wp-block-image .alignright {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
h1.entry-title {
  text-align: center;
  font-size: 1.6em;
  margin: 1.5em;
}
h1.entry-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #AB900E;
  margin: 1em auto 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 2em auto 0.75em;
}
.entry-content h2 {
  font-size: 1.8em;
  padding-bottom: 0.5em;
  position: relative;
}
.entry-content h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #ab900e 0%, #edd97a 50%, #ab900e 100%);
}
@media (max-width: 640px) {
  .entry-content h2 {
    font-size: 1.4em;
  }
}
.entry-content h3 {
  font-size: 1.6em;
  border-bottom: 1px solid #AB900E;
  padding-bottom: 0.25em;
}
@media (max-width: 640px) {
  .entry-content h3 {
    font-size: 1.2em;
  }
}
.entry-content h4 {
  font-size: 1.4em;
}
@media (max-width: 640px) {
  .entry-content h4 {
    font-size: 1.2em;
  }
}
.entry-content h5 {
  font-size: 1.3em;
}
@media (max-width: 640px) {
  .entry-content h5 {
    font-size: 1.2em;
  }
}
.entry-content h6 {
  font-size: 1.2em;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75em 1em;
  box-sizing: border-box;
  border-radius: 5px;
}

input[type=submit] {
  width: auto;
}

.form-btn-p.center {
  text-align: center;
  padding: 3em 0;
}
.form-btn-p button,
.form-btn-p input {
  padding: 0.75em 2em;
  border-radius: 5px;
  background-color: gray;
  color: white;
  transition: background-color 0.3s ease;
}
.form-btn-p button:hover,
.form-btn-p input:hover {
  background-color: black;
  color: white;
}
.form-btn-p :is(button.btn-go-confirm, input.wpcf7-submit) {
  background-color: #AB900E;
  color: white;
  cursor: pointer;
}
.form-btn-p :is(button.btn-go-confirm, input.wpcf7-submit):hover {
  background-color: black;
}
.form-btn-p :is(button.btn-go-confirm, input.wpcf7-submit).is-inactive {
  background-color: gray;
  color: white;
  cursor: not-allowed;
}

p.mail-title .red {
  font-size: 0.8rem;
  color: red;
}

.confirmform p.mail-title {
  border-bottom: 1px solid #ccc;
  padding: 0.25em 0;
  margin-bottom: 0.5em;
}

.confirm-item {
  margin: 1em auto;
}

/* =========================================================
   Header (fixed) + SP Menu Button + Mobile Nav
   ========================================================= */
header#header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  background: black;
  z-index: 1000;
}
header#header p.header-description {
  margin: 0;
  font-size: 12px;
  color: white;
  padding: 0.15em 0.75em;
  background-color: #AB900E;
}
@media (max-width: 1240px) {
  header#header p.header-description {
    display: none;
  }
}
header#header .site-logo {
  max-width: 340px;
  padding: 0.15em 0.75em;
}
header#header .header-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 1240px) {
  header#header .header-container {
    align-items: center;
  }
}
header#header .header-container .sponsor {
  height: 100%;
}
header#header .header-container .sponsor a {
  display: flex;
  color: black;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
  text-align: center;
  background: linear-gradient(264deg, #ab900e 0%, #edd97a 50%, #ab900e 100%);
  font-weight: 700;
  line-height: 1.2;
}
header#header .header-container .sponsor a:hover {
  background: white;
}

.nav-area {
  display: flex;
}
.nav-area * {
  height: 100%;
}

ul#global-menu-ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul#global-menu-ul li a {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
}
ul#global-menu-ul li a:hover {
  background-color: white;
  color: black;
}

.sub-menu {
  background: linear-gradient(264deg, #ab900e 0%, #edd97a 50%, #ab900e 100%);
  display: flex;
  justify-content: center;
  padding: 0.5em 1em;
}
.sub-menu ul#sub-menu-ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5em;
}
.sub-menu ul#sub-menu-ul li a {
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  height: 100%;
  padding: 0.5em 1em;
  background: white;
  border-radius: 3px;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-menu ul#sub-menu-ul li a:hover {
  background-color: black;
}
@media (max-width: 640px) {
  .sub-menu ul#sub-menu-ul li a {
    font-size: 0.95em;
  }
}

.icon-card a {
  gap: 0.25em;
}
.icon-card a:before {
  content: "";
  width: 3em;
  height: 1.6em;
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-card.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .icon-card a:before {
    display: none;
  }
}

/* -----------------------------------------
     Hamburger button
     ----------------------------------------- */
.sp-menu {
  /* 初期は非表示（PC）。md以下で出す */
  display: none;
}
@media (max-width: 1240px) {
  .sp-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5em;
    /* ボタンリセット */
    appearance: none;
    border: 0;
    background: #AB900E;
    color: #fff;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
    /* 3本のバー（span）はボタン内の中央に重ねる */
  }
  .sp-menu span {
    position: absolute;
    left: 20%;
    width: 60%;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .sp-menu span:nth-child(1) {
    top: 14px;
  }
  .sp-menu span:nth-child(2) {
    top: 23px;
  }
  .sp-menu span:nth-child(3) {
    top: 32px;
  }
  .sp-menu:hover, .sp-menu:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
  }
  .sp-menu {
    /* active（開）でX化 */
  }
  .sp-menu.active span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }
  .sp-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }
  .sp-menu.active span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
  }
}

@media (max-width: 1240px) {
  .nav-area {
    position: absolute;
    display: block;
    background-color: black;
    width: 50%;
    right: 0;
    transform: translateX(100%);
    transition: all ease 0.3s;
  }
}
@media (max-width: 1240px) and (max-width: 640px) {
  .nav-area {
    width: 100%;
  }
}
@media (max-width: 1240px) {
  .nav-area * {
    height: auto;
  }
  .nav-area ul#global-menu-ul {
    display: block;
  }
  .nav-area ul#global-menu-ul li a {
    padding: 1em;
  }
  .nav-area .sponsor a {
    padding: 1em !important;
  }
  .nav-area.active {
    transform: translateX(0);
  }
}

/* slider color */
:root {
  --swiper-theme-color: #edd97a !important;
}

/* ページャー */
nav.navigation.pagination {
  margin: 3em auto;
}
nav.navigation.pagination .nav-links {
  text-align: center;
}
nav.navigation.pagination .nav-links a,
nav.navigation.pagination .nav-links span {
  display: inline-block;
  padding: 0.5em 1em;
  margin: 0 0.25em;
  border: 1px solid #4f4f4f;
  border-radius: 3px;
  color: white;
}
nav.navigation.pagination .nav-links a:hover,
nav.navigation.pagination .nav-links span:hover {
  background-color: #4f4f4f;
}
nav.navigation.pagination .nav-links a.current,
nav.navigation.pagination .nav-links span.current {
  background-color: #AB900E;
}
nav.navigation.pagination .nav-links a.current:hover,
nav.navigation.pagination .nav-links span.current:hover {
  background-color: #AB900E;
}

/* archive */
.post-content .inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1em;
  margin: 1em auto;
  border-bottom: 1px dotted;
}
@media (max-width: 640px) {
  .post-content .inner {
    grid-template-columns: 1fr;
  }
}
.post-content .summary {
  font-size: 13px;
}
@media (max-width: 640px) {
  .post-content .summary {
    display: flex;
    gap: 0.5em;
  }
}
.post-content .summary .date {
  padding: 0.15em 0.25em;
}
.post-content .summary .category a {
  border: 1px solid #AB900E;
  border-radius: 3px;
  padding: 0.15em 0.25em;
  color: white;
  display: inline-block;
}
.post-content .summary .category a:hover {
  background-color: #AB900E;
}
.post-content h2 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  width: 100%;
}
.post-content h2::after {
  display: none;
}
.post-content h2 a {
  color: white;
  background-color: #4f4f4f;
  border: 1px solid #4f4f4f;
  display: block;
  padding: 1em 2em;
  border-radius: 3px;
}
.post-content h2 a:hover {
  background-color: black;
}
@media (max-width: 640px) {
  .post-content h2 a {
    padding: 0.5em 1em;
  }
}

/* card-archive */
.card-archive-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media (max-width: 800px) {
  .card-archive-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .card-archive-wrapper {
    grid-template-columns: 1fr;
  }
}

.post-card a img {
  border: 1px solid #4f4f4f;
  border-radius: 20px;
  position: relative;
  top: 0;
  transform: scale(1);
  transition: all 0.3s ease;
}
.post-card a:hover img {
  top: -20px;
  transform: scale(1.15);
}
.post-card a h2 {
  margin: 0.5em auto 0;
  font-size: 1.1em;
  color: white;
}
.post-card a h2::after {
  display: none;
}
.post-card a h2 span.subtitle {
  display: block;
  font-size: 13px;
  font-weight: 400;
  padding: 0.4em 0;
  border-bottom: 1px solid gray;
}
.post-card .main-name {
  font-size: 14px;
  color: #4f4f4f;
}
.post-card .main-name .main-name-link,
.post-card .main-name .main-name-inner {
  display: flex;
  padding: 0.25em 0.5em;
  border: 1px solid #4f4f4f;
  border-radius: 3px;
  color: white;
}
.post-card .main-name .main-name-link::before,
.post-card .main-name .main-name-inner::before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/card_treat.svg);
  width: 1.75em;
  height: 0.8em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
  margin-top: 0.4em;
}
.post-card .main-name .main-name-link {
  background-color: #AB900E;
}
.post-card .main-name .main-name-link:hover {
  background-color: black;
}
.post-card .main-name .main-name-inner {
  background-color: #4f4f4f;
}

/* post-nav */
.post-nav {
  width: min(100% - 1rem * 2, 1240px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  margin: 2em auto;
}
.post-nav .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.post-nav .nav-links a {
  color: white;
  padding: 0.5em;
}
.post-nav .nav-links a:hover {
  background-color: #AB900E;
}
.post-nav .nav-links .nav-previous a:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/card_treat.svg);
  width: 1.75em;
  height: 0.8em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}
.post-nav .nav-links .nav-next {
  text-align: right;
}
.post-nav .nav-links .nav-next a:after {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/card_treat.svg);
  width: 1.75em;
  height: 0.8em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}

footer {
  background: linear-gradient(264deg, #ab900e 0%, #edd97a 50%, #ab900e 100%);
  font-size: 0.9em;
  color: black;
  padding: 1.5rem 0;
  margin-top: 5em;
}
footer a {
  color: black;
}

p.site-info {
  text-align: center;
  margin: 1em auto;
}

div#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 999;
}
div#page_top img {
  width: 38px;
  height: 38px;
}

.single-card .content-container.blue {
  --main-color: #1652c9;
}
.single-card .content-container.red {
  --main-color: #c9281d;
}
.single-card .content-container.green {
  --main-color: #06a447;
}
.single-card .content-container.yellow {
  --main-color: #ffcb27;
}
.single-card .content-container.black {
  --main-color: #ffffff;
}
.single-card .content-container:after {
  content: "";
  display: block;
  inset: 0 0 100% 0;
  position: absolute;
  z-index: -50;
  width: 100%;
  background: linear-gradient(180deg, var(--main-color) 0%, #000 100%);
  min-height: 100vh;
}
.single-card .content-container {
  padding-top: 2em;
}

.card-main-container {
  width: min(100% - 1rem * 2, 1440px);
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 5em;
}
@media (max-width: 800px) {
  .card-main-container {
    display: block;
  }
}
.card-main-container .card-container {
  position: sticky;
  top: 180px;
  width: 40%;
  z-index: 0;
}
.card-main-container .card-container .card img {
  display: block;
  margin: auto;
  max-width: 100%;
  width: 320px;
  height: auto;
}
@media (max-width: 640px) {
  .card-main-container .card-container .card img {
    padding: 1em;
  }
}
@media (max-width: 800px) {
  .card-main-container .card-container {
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 2rem;
  }
}
.card-main-container .card-description-container {
  position: relative;
  width: 60%;
  z-index: 10;
  height: auto;
  overflow-y: visible;
}
@media (max-width: 800px) {
  .card-main-container .card-description-container {
    width: 100%;
  }
}

.circle-container {
  position: absolute;
  bottom: -75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  aspect-ratio: 1/1;
  max-width: 500px;
  z-index: -1;
  pointer-events: none;
}
.circle-container .magic-ring {
  width: 100%;
  height: 100%;
  background-color: var(--main-color, #00d4ff);
  -webkit-mask-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image//card_circle.svg);
  mask-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image//card_circle.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  filter: drop-shadow(0 0 10px var(--main-color));
  animation: circle-rotate 30s linear infinite;
  will-change: transform;
  opacity: 0.8;
}
.circle-container .circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid var(--main-color, #00d4ff);
  box-shadow: 0 0 15px var(--main-color), inset 0 0 10px var(--main-color);
  animation: circle-rotate 10s linear infinite;
  opacity: 0.8;
}
.circle-container .circle-1 {
  scale: 1;
}
.circle-container .circle-2 {
  scale: 1.15;
  animation-duration: 25s;
  animation-direction: reverse;
  border-style: dashed;
  border-width: 3px;
  opacity: 0.5;
}
.circle-container .circle-3 {
  scale: 0.85;
  animation-duration: 8s;
  border-style: double;
  border-width: 6px;
}
.circle-container.blue {
  --main-color: #1652c9;
}
.circle-container.red {
  --main-color: #c9281d;
}
.circle-container.green {
  --main-color: #06a447;
}
.circle-container.yellow {
  --main-color: #ffcb27;
}
.circle-container.black {
  --main-color: #ffffff;
}
@media (max-width: 640px) {
  .circle-container {
    max-width: inherit;
    overflow: hidden;
  }
}

@keyframes circle-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.thumb-expansion {
  margin: 1em auto;
  text-align: center;
}
.thumb-expansion .button-expansion {
  font-size: 14px;
  padding: 0.25em 0.75em;
  font-weight: 400;
  background-color: var(--main-color);
}
.thumb-expansion .button-yellow,
.thumb-expansion .button-black {
  color: black;
}

.thumb-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.thumb-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.thumb-modal-inner {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.thumb-js-modal-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.thumb-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  outline: none;
  padding: 5px;
}
.thumb-modal-close:hover {
  color: #ccc;
}

/***************************************************
  * ディスクリプション
  ***************************************************/
.card-description-inner {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2em;
  border: 1px solid var(--main-color);
}
.card-description-inner h2 {
  line-height: 1.2;
  margin: 1em auto;
}
.card-description-inner h2 span {
  background-color: var(--main-color);
  padding: 0.25em 0.5em;
}
.card-description-inner h2 .en {
  display: inline-block;
  font-size: 14px;
  position: relative;
  transform: translate(0px, 1px);
}
.card-description-inner h2 .en:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/card_treat.svg);
  width: 1.75em;
  height: 0.8em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}
.card-description-inner h2 .en:after {
  content: "";
  position: absolute;
  width: 2em;
  height: 100%;
  background-color: var(--main-color);
  right: -1.95em;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.card-description-inner h2 .ja {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-description-inner h2 .ja:after {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/card_treat.svg);
  width: 1.75em;
  height: 0.8em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}
.card-description-inner h3 {
  background-color: var(--main-color);
  padding: 0.1em 0.75em;
  display: inline-block;
  position: relative;
  margin: 1em auto 0.5em;
}
.card-description-inner h3:after {
  content: "";
  border-right: 16px double var(--main-color);
  position: absolute;
  height: 100%;
  top: 0;
  right: -22px;
}

.card_color-yellow .card-description-inner h2 span,
.card_color-black .card-description-inner h2 span {
  color: black;
}
.card_color-yellow .card-description-inner h2 span.en:before,
.card_color-black .card-description-inner h2 span.en:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/card_treat_black.svg);
  width: 1.75em;
  height: 0.8em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}
.card_color-yellow .card-description-inner h2 span.ja:after,
.card_color-black .card-description-inner h2 span.ja:after {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/card_treat_black.svg);
  width: 1.75em;
  height: 0.8em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}
.card_color-yellow .card-description-inner h3,
.card_color-black .card-description-inner h3 {
  color: black;
}

.title-area .subtitle {
  font-size: 1.1em;
  margin: 0;
  margin-bottom: 0.15em;
}
.title-area .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  font-size: 1.8em;
  border-bottom: 1px solid #ccc;
  padding: 0 0 0.25em 0;
  line-height: 1.25;
}
.title-area .card-title .main-title {
  display: block;
}
.title-area .card-title .main-title .version {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 0.25em;
}
.title-area .card-title .main-title .version:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/card_treat.svg);
  width: 1.75em;
  height: 0.8em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}

span.title-icon {
  display: block;
  line-height: 1;
}
span.title-icon:before {
  content: "";
  width: 2em;
  height: 2em;
  display: inline-block;
  margin-right: 0.25em;
  line-height: 1;
}
span.title-icon.battle:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-battle.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
span.title-icon.zone:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-zone.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
span.title-icon.skill:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-skill.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.card-term {
  display: flex;
  gap: 2em;
  margin: 0.5em 0;
  align-items: center;
}
@media (max-width: 640px) {
  .card-term {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
}
.card-term .card-type {
  display: flex;
  align-items: center;
}
.card-term .card-type .type-icon:before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  margin-right: 0.25em;
  line-height: 1;
}
.card-term .card-type.battle .type-icon:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-battle.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.card-term .card-type.zone .type-icon:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-zone.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.card-term .card-type.skill .type-icon:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-skill.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

p.flavor-text {
  margin: 2em auto;
}

.card-effect {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 640px) {
  .card-effect {
    grid-template-columns: 1fr;
  }
}
.card-effect > div {
  padding: 1em;
  border: 1px solid white;
}
.card-effect .effect-title {
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-flow: row wrap;
  gap: 0.25em;
}

span.card-effect-item {
  display: flex;
  align-items: center;
}
span.card-effect-item:before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  margin-right: 0.25em;
  line-height: 1;
  background-color: var(--main-color);
  border-radius: 100%;
}
span.card-effect-item.card-effect-item--rock:before {
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-rock.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
span.card-effect-item.card-effect-item--scissors:before {
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-scissors.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
span.card-effect-item.card-effect-item--paper:before {
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-paper.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.other-info {
  margin: 2em auto;
}
.other-info .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 640px) {
  .other-info .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.other-info .grid > div {
  border: 1px solid white;
  padding: 1em;
}
.other-info .grid .table-title {
  background-color: rgba(255, 255, 255, 0.4);
}
.other-info .text-block {
  margin: 1em auto;
}
.other-info .text-block .title {
  display: inline-block;
  border: 1px solid white;
  padding: 0.25em 1em;
  margin-right: 0.5em;
}

.card-tag {
  display: inline-block;
  color: white;
  padding: 0.5em 0.5em 0.5em 0;
}
.card-tag:after {
  content: "／";
  margin-left: 0.5em;
}
.card-tag:hover {
  text-decoration: none;
  color: var(--main-color);
}

.quest-content {
  margin: 1em auto 2em;
}

.map-links a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.75em 1em;
  border: 1px solid white;
  margin: 1em 0;
  color: white;
}
.map-links a:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-map.svg);
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}
.map-links a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
  z-index: -1;
}
.map-links a:hover:after {
  width: 0;
}

.info-links .website-links a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.75em 1em;
  border: 1px solid white;
  margin: 1em 0;
  color: white;
}
.info-links .website-links a:before {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-site.svg);
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.25em;
  line-height: 1;
}
.info-links .website-links a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
  z-index: -1;
}
.info-links .website-links a:hover:after {
  width: 0;
}

.info-detail {
  margin: 1em auto;
}

.sns-links {
  display: flex;
  gap: 1em;
}
.sns-links a {
  width: 38px;
  height: 38px;
  display: block;
  overflow: hidden;
  line-height: 999;
  position: relative;
}
.sns-links a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  line-height: 1;
  top: 0;
  left: 0;
}
.sns-links a:hover {
  background-color: var(--main-color);
}

.info-link.instagram:before {
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-instagram.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.info-link.facebook:before {
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-facebook.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.info-link.sns_x:before {
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-sns_x.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.info-link.sns_other:before {
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-sns_other.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.related-faqs-list .related-faq-item {
  margin: 1em auto;
}
.related-faqs-list .related-faq-item a {
  display: block;
  position: relative;
  padding: 0.75em 2em 0.75em 0.5em;
  border-bottom: 1px solid #ccc;
  color: white;
}
.related-faqs-list .related-faq-item a:after {
  content: "";
  background-image: url(/sagamihero_wp/wp-content/themes/cockpit/assets/image/icon-back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-right: 0;
  transform: translateY(-50%) rotate(90deg);
  width: 1em;
  height: 1em;
  top: 50%;
  right: 0;
  position: absolute;
}
.related-faqs-list .related-faq-item a:hover {
  background-color: var(--main-color);
}

.faq-question,
.faq-answer {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 1em;
  font-size: 18px;
}
.faq-question span.faq-label,
.faq-answer span.faq-label {
  font-size: 20px;
  font-weight: 600;
}

.faq-question {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.faq-question h2 {
  margin: 0;
  font-size: 1em;
}
.faq-question h2:after {
  display: none;
}

.faq-answer {
  border-bottom: 1px solid #ccc;
}

.related-cards-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5em;
}
@media (max-width: 640px) {
  .related-cards-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.related-cards-list span.card-name {
  display: block;
  text-align: center;
  margin-top: 0.25em;
  font-size: 12px;
}
.related-cards-list .card-thumbnail-wrapper img {
  margin: auto;
}

.breadcrumbs {
  background-color: black;
  font-size: 0.8em;
  padding: 0.25em 0.75em;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs li + li::before {
  content: ">";
  margin-right: 0.5rem;
  color: #999;
}

.card-search-form-wrapper {
  background-color: #4f4f4f;
  padding: 1em 2em;
  border-radius: 5px;
  margin-bottom: 3em;
}
@media (max-width: 640px) {
  .card-search-form-wrapper {
    padding: 1em;
  }
}
.card-search-form-wrapper .select-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
@media (max-width: 640px) {
  .card-search-form-wrapper .select-items {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.card-search-form-wrapper .search-item {
  margin-bottom: 0.5em;
}
.card-search-form-wrapper .checkbox-group-horizontal {
  display: flex;
  gap: 1em;
  padding: 1em;
  background-color: #333;
  border-radius: 5px;
  margin-bottom: 1em;
  height: 60px;
  overflow-y: scroll !important;
}
.card-search-form-wrapper .checkbox-group-horizontal input {
  width: auto;
}
.card-search-form-wrapper .checkbox-group-horizontal .checkbox-inline {
  display: none;
}
.card-search-form-wrapper .checkbox-group-horizontal .checkbox-inline.is-selected {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #AB900E;
  border-radius: 4px;
  padding: 4px 8px;
}
.card-search-form-wrapper .range-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
.card-search-form-wrapper .search-actions {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-bottom: 1em;
}
@media (max-width: 640px) {
  .card-search-form-wrapper .search-actions button,
  .card-search-form-wrapper .search-actions a.button {
    padding: 0.25em 0.75em;
    font-size: 16px;
    font-weight: 500;
  }
}
.card-search-form-wrapper .button-clear {
  background-color: #333;
}

.search-item-checkbox .tag-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-item-checkbox .tag-header-wrapper .button-sub {
  padding: 0.25em 0.75em;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.search-item-checkbox .checkbox-group-horizontal {
  height: 60px;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-item-checkbox .tag-modal-dialog {
  padding: 0;
  border: none;
  border-radius: 8px;
  max-width: 640px;
  width: calc(100% - 40px);
  max-height: 80vh;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.search-item-checkbox .tag-modal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.search-item-checkbox .tag-modal-dialog .modal-inner {
  display: flex;
  flex-direction: column;
  max-height: calc(80vh - 0px);
}
.search-item-checkbox .tag-modal-dialog .modal-header {
  padding: 0.5em 1em;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-item-checkbox .tag-modal-dialog .modal-header h3 {
  margin: 0;
  font-size: 16px;
}
.search-item-checkbox .tag-modal-dialog .modal-header .button-close {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.search-item-checkbox .tag-modal-dialog .modal-content-tags {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.search-item-checkbox .tag-modal-dialog .modal-content-tags input {
  width: auto;
}
.search-item-checkbox .tag-modal-dialog .modal-content-tags .checkbox-inline-modal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  background-color: #f5f5f5;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.search-item-checkbox .tag-modal-dialog .modal-content-tags .checkbox-inline-modal:hover {
  background-color: #e0e0e0;
}
.search-item-checkbox .tag-modal-dialog .modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #eeeeee;
  background-color: #fafafa;
  margin-top: 20px;
  text-align: right;
}
.search-item-checkbox .tag-modal-dialog .modal-footer .button-primary {
  padding: 0.5em 1em;
}

.rule_faq-search-form-wrapper {
  background-color: #4f4f4f;
  padding: 1em 2em;
  border-radius: 5px;
  margin-bottom: 3em;
}
@media (max-width: 640px) {
  .rule_faq-search-form-wrapper {
    padding: 1em;
  }
}
.rule_faq-search-form-wrapper .rule_faq-card-search-form {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 100px;
}
.rule_faq-search-form-wrapper .rule_faq-card-search-form input {
  height: 100%;
  border: 0;
  border-radius: 10px;
}
.rule_faq-search-form-wrapper .rule_faq-card-search-form .select-items {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
}
@media (max-width: 640px) {
  .rule_faq-search-form-wrapper .rule_faq-card-search-form .select-items {
    grid-template-columns: 1fr;
  }
}
.rule_faq-search-form-wrapper .rule_faq-card-search-form .search-field {
  width: 100%;
}

/* 右側に回り込まないようにする */
.is-layout-constrained > * {
  clear: both;
}

.alignright {
  clear: none;
}

.is-layout-constrained::after {
  content: "";
  display: table;
  clear: both;
}

.wp-block-button .wp-block-button__link:hover {
  background-color: black;
  color: white;
  border-color: black;
}

.is-provider-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.is-provider-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

figure.wp-block-embed.aligncenter.is-type-video.is-provider-youtube.wp-block-embed-youtube {
  text-align: center;
}

/* パララックスが含まれる場合のみ、transformを解除して計算式に差し替える */
.entry-content > .alignfull:has(.has-parallax) {
  transform: none;
  margin-left: calc(50% - var(--vw) / 2);
}

.has-background {
  padding: 1em;
}

/*ボタンの変更*/
button,
input[type=button],
input[type=submit],
input[type=reset],
a.button,
.button,
.wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #AB900E;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

button:hover,
input[type=submit]:hover,
input[type=button]:hover,
a.button:hover,
.button:hover,
.wp-block-button .wp-block-button__link:hover {
  background: #4b4b4b;
}

body.page-template-front-page .entry-content {
  max-width: inherit;
  width: auto;
  padding: 0;
  margin: 0 auto;
}
body.page-template-front-page .entry-content h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-bottom: 10px;
}
body.page-template-front-page .entry-content h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #ab900e 0%, #edd97a 50%, #ab900e 100%);
  z-index: -1;
}
body.page-template-front-page .entry-content h2 span.h2-wrap {
  background-color: black;
  color: white;
  padding: 0 20px 8px;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 640px) {
  body.page-template-front-page .entry-content h2 span.h2-wrap {
    width: 70%;
    font-size: 1em;
  }
}
body.page-template-front-page .entry-content h2 span.h2-wrap::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 100%;
  left: -1.475em;
  top: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: black;
}
body.page-template-front-page .entry-content h2 span.h2-wrap::after {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 100%;
  right: -1.475em;
  top: 0;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  background-color: black;
}

.swiper-fv {
  margin: 1em 0;
}

.slider-pickup {
  padding: 3.5em 0 2em;
  background: white;
}
.slider-pickup .swiper-pickup .swiper-wrapper {
  transition-timing-function: linear !important;
}

/*info
---------------------------------------------*/
.top-info-container {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - 1rem * 2, 1240px);
  margin-inline: auto;
}
@media (max-width: 640px) {
  .top-info-container {
    grid-template-columns: 1fr;
  }
}
.top-info-container article.info-article a {
  color: white;
  display: block;
}
.top-info-container article.info-article a .thumb-image {
  max-width: 380px;
  height: 214px;
  background-position: center;
  background-size: contain;
  background-color: white;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  margin: auto;
}
.top-info-container article.info-article a h3 {
  font-size: 1.25em;
  color: white;
  margin: 0.5em 0;
  border: none;
}

.about-sec {
  padding-top: 120px;
  margin: 1em;
}
@media (max-width: 640px) {
  .about-sec {
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  .card-reverse div:nth-child(1) {
    order: 2;
  }
  .card-reverse div:nth-child(2) {
    order: 1;
  }
}

.carduse-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}
.carduse-list li {
  width: 120px;
  height: 120px;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  text-align: center;
}

.sponsor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 2em;
}
.sponsor-list li a {
  display: block;
  padding: 1em;
  background-color: #4f4f4f;
  margin-bottom: 1em;
  border-radius: 0.4em;
  color: white;
}
.sponsor-list li a:hover {
  background-color: #333;
}
@media (max-width: 640px) {
  .sponsor-list {
    column-count: 1;
  }
}

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