@charset "UTF-8";

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

html,
body {
  margin: 0;
  padding: 0;
}

/* ヘッダーが隠れるのを防ぐ*/
html { scroll-padding-top: 130px; }

@media screen and (max-width: 767px) {
html { scroll-padding-top: 110px; }
} 


body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #111;
}

a {
  color: inherit!important;
  text-decoration: none!important;
	cursor: pointer;
  transition: background-color 0.3s;/* マウスオーバー点滅 */
}
/* マウスオーバー点滅アニメ 
a:hover {
  animation: blink 0.8s linear 1;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.5; } 
  100% { opacity: 1; }
}*/


/* マウスオーバー点滅アニメ 全てのaタグに適用 */
a {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: inline-block; /* 必須：サイズを認識させてエフェクトを収めるため */
  vertical-align: bottom; /* ズレ防止 */
}

a::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  pointer-events: none; /* エフェクトがクリックを邪魔しないように */
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}

a:hover::before {
  animation: kiran 0.7s linear;
}

@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/* =========================
   タブレットPC表示
========================= 
body {
	width: 100%;
	min-width: 1100px;
}
@media screen and (max-width: 767px){
body {
	min-width: initial;
}
}*/



/* =========================
   Googlefont読み込み
========================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;400;500;700&display=swap');
/* 例：Noto Sans JPを読み込む */


/* =========================
   font設定
========================= */
html {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Yu Gothic", "YuGothic", "Meiryo", "Noto Sans", sans-serif;
	scroll-behavior: smooth;
}
p{
	letter-spacing: 0.03em;
}

button,
input,
select,
textarea {
  font: inherit;
}


/* =========================
   Toggle (body直下の input#menuToggle)
========================= */
.menu-toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* =========================
   Header (SPファースト)
========================= */
.top-header {
  width: 100%;
  background-color: rgb(255 255 255 / 0.9);
	position: fixed;
	top: 0;
	box-shadow: 0 2px 14px 0px rgba(0, 0, 0, 0.3);
}

.top-header__inner {
  width: 1100px;
  max-width: calc(100% - 20px);
  margin: 0 auto;
  padding: 8px 0;
}

.top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  grid-template-areas:
    "brand right"
    "notice right";
  column-gap: 6px;
  row-gap: 6px;
  align-items: start;
  overflow-x: clip;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  min-width: 0;
}

.brand img {
  width: 158px;
  height: auto;
  object-fit: contain;
  display: block;
}

.right-area {
  grid-area: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: max-content;
  overflow: visible;
}

.auth-wrap {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "signup login"
    ". menu";
  column-gap: 4px;
  row-gap: 4px;
  justify-content: end;
  align-items: end;
  overflow: visible;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 26px;
  padding: 0 8px;
  border-radius: 0;
  border: 2px solid #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.action-btn--signup {
  grid-area: signup;
  background: #fff;
  color: #707070!important;
}

.action-btn--login {
  background: #707070!important;
  color: #fff!important;
}

.login-wrap {
  grid-area: login;
  min-width: 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

/* SPハンバーガー（少し小さめ） */
.hamburger {
  grid-area: menu;
  justify-self: end;
  margin: 0;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  z-index: 20;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  position: absolute;
  left: 1px;
  width: 30px;
  height: 2px;
  background: #666;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.28s ease, top 0.28s ease, opacity 0.2s ease;
}

.hamburger span:nth-child(1) { top: 5px; }
.hamburger span:nth-child(2) { top: 14px; }
.hamburger span:nth-child(3) { top: 23px; }

.notice_head {
  grid-area: notice;
  margin: 7px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #222;
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
	z-index: 100;
	max-width: 80%;
}
@media screen and (max-width: 767px) {
.notice_head {
	margin-top: -20px!important;
	font-size: 10.5px;
}
	
}

.notice-nowrap {
  white-space: nowrap;
}

.notice__link {
  text-decoration: underline!important;
  text-underline-offset: 2px;
}

/* =========================
   Overlay Menu
========================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

#menuToggle:checked ~ .menu-overlay {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#menuToggle:checked ~ .menu-overlay .menu-backdrop {
  opacity: 1;
}

/* 中央固定 + フェードインのみ */
.menu-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(860px, calc(100vw - 20px));
  max-height: calc(100dvh - 24px);
	max-height: 100%;
  overflow: auto;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translate(-50%, -50%);
  -webkit-overflow-scrolling: touch;
}

#menuToggle:checked ~ .menu-overlay .menu-panel {
  animation: menuFadeInCenter 0.25s ease forwards;
}

@keyframes menuFadeInCenter {
  from {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ハンバーガー -> ×（SP） */
#menuToggle:checked ~ .top-header .hamburger span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
#menuToggle:checked ~ .top-header .hamburger span:nth-child(2) {
  opacity: 0;
}
#menuToggle:checked ~ .top-header .hamburger span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.menu-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 59px; /* SPで約70% */
  height: 59px;
  cursor: pointer;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 1px;
  background: #666;
  transform-origin: center;
}

.menu-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.menu-content {
  padding: clamp(52px, 10vw, 80px) 24px 24px;
  text-align: center;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-item {
  display: block;
  padding: 8px 0;
}

.menu-title {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 6.2vw, 20px);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.menu-sub {
  display: block;
  margin-top: 6px;
  font-size: clamp(12px, 3.7vw, 14px);
  line-height: 1.35;
  color: #555;
  font-weight: 400;
}

/* LATEST ISSUE と ロゴの間 */
.menu-divider {
  margin: 24px 0 16px;
  border-top: 1px solid #ddd;
}

/* ロゴ上余白を少し広げる */
.menu-mag-logo {
  display: inline-block;
  line-height: 1;
  margin: 8px auto 14px;
}

.menu-mag-logo img {
  width: min(240px, 62vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.menu-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.sns-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sns-link img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-footer {
  margin-top: 14px;
  padding-bottom: 20px; /* コピー下余白 */
}

.menu-copy {
  margin: 0;
  font-size: 12px;
  font-feature-settings: "palt";
  color: #666;
}
@media screen and (max-width: 767px) {
.menu-copy {
  font-size: 12px;
}
}

/* Focus visible */
.hamburger:focus-visible,
.menu-close:focus-visible,
.action-btn:focus-visible,
.notice__link:focus-visible,
.menu-item:focus-visible,
.sns-link:focus-visible {
  outline: 2px solid #333;
  outline-offset: 2px;
}

/* =========================
   SP only: max-width 767px
========================= */
@media screen and (max-width: 767px) {
  /* iPhone SE等：縦が小さい端末向け */
  @media (max-height: 700px) {
    .top-header {
      margin-top: 6px;
    }

    .top-header__inner {
      padding: 6px 0;
    }

    .brand img {
      width: 146px;
    }

    .action-btn {
      min-width: 58px;
      height: 24px;
      font-size: 10px;
      padding: 0 6px;
      border-width: 1.5px;
    }

    .login-wrap {
      min-width: 58px;
    }

.notice_head {
      font-size: 10.5px!important;
      line-height: 1.3;
    }

    .menu-content {
      padding-top: 48px;
    }

    .menu-nav {
      gap: 10px;
    }

    .menu-item {
      padding: 6px 0;
    }

    .menu-divider {
      margin: 20px 0 14px;
    }

    .menu-mag-logo {
      margin: 6px auto 10px;
    }

    .menu-footer {
      padding-bottom: 16px;
    }
  }
}

/* =========================
   PC only: min-width 768px
========================= */
@media screen and (min-width: 768px) {
  .top-header__inner {
    max-width: calc(100% - 24px);
    padding: 0 0 2px;
  }

  .top-grid {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand right"
      "notice notice";
    column-gap: 16px;
    row-gap: 4px;
    overflow: visible;
  }

  .brand img {
    width: 239px;
    height: 41px;
  }

  .right-area {
    min-width: 0;
  }

  .auth-wrap {
    display: flex;
    align-items: flex-end;
    gap: 8px;
  }

  .action-btn {
    min-width: 82px;
    height: 30px;
    padding: 0 12px;
    font-size: 13px;
  }

  .login-wrap {
    min-width: 0;
  }

  .hamburger {
    margin-left: 8px;
    width: 40px;
    height: 30px;
  }

  .hamburger span {
    left: 6px;
    width: 28px;
    height: 2px;
  }

  .hamburger span:nth-child(1) { top: 7px; }
  .hamburger span:nth-child(2) { top: 14px; }
  .hamburger span:nth-child(3) { top: 21px; }

  #menuToggle:checked ~ .top-header .hamburger span:nth-child(1) { top: 14px; }
  #menuToggle:checked ~ .top-header .hamburger span:nth-child(3) { top: 14px; }

  .notice_head {
    margin: 2px 0 0;
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: normal;
    word-break: normal;
  }

  .menu-panel {
    width: min(860px, calc(100vw - 32px));
  }

  .menu-close {
    top: 8px;
    right: 8px;
    width: 84px;
    height: 84px;
  }

  .menu-close span {
    width: 60px;
    height: 1px;
  }

  .menu-content {
    padding: clamp(56px, 7.5vw, 88px) 24px 24px;
  }

  .menu-title {
    font-size: 24px;
  }

  .menu-sub {
    font-size: 15px;
  }

  .menu-divider {
    margin: 28px 0 18px;
  }

  .menu-mag-logo {
    margin: 10px auto 14px;
  }

  .menu-mag-logo img {
    width: 240px;
  }

  .menu-footer {
    padding-bottom: 18px;
  }
}

/* =========================
   iOS Safariちらつき軽減
========================= */
.top-header,
.menu-overlay,
.menu-panel {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}


/* ===============================================
   TOPのコンテンツの囲み
=============================================== */
.top_main {
	width: 100%;
}
.top_main a {
  text-decoration: none !important;
  color: inherit !important;
}

.top_main img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
.top_main {
	width: 100% !important;
	margin: auto;
}
}


/* ===============================================
   表紙イメージ PC
=============================================== */
.hero_wrap{
	width: 100%;
	max-width: 1140px;
	margin: 150px auto 40px;
}
.hero_wrap img{
	width: 40%;
	height: auto;
	margin: 30px auto 30px 16.5%;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
}
.js-once-anim{
  transform: none;
}

.js-once-anim.is-animating{
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  animation: rotate360 1000ms linear forwards;
}

@keyframes rotate360{
  from{ transform: perspective(800px) rotateY(0deg); }
  to  { transform: perspective(800px) rotateY(360deg); }
}

/* ===============================================
   表紙イメージ SP
=============================================== */
@media screen and (max-width: 767px) {
.hero_wrap{
	width: 100%;
	margin: 98px 0 0 !important;
}
.hero_wrap img{
	width: 100%;
	margin: 30px auto;
}

}
/* ===============================================
   CATCH EYE PC
=============================================== */
/* CATCH EYE 囲み */
.top_main .ce_wrap {
	width: 100%;
	max-width: 1140px;
	margin: 18px auto 56px !important;
	padding: 0 20px;
	animation: fadeIn 1.5s ease-in-out forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 最初は透明 */
    transform: translateY(10px); /* 少し下に配置 */
  }
  100% {
    opacity: 1; /* 最後は不透明 */
    transform: translateY(0); /* 通常位置へ */
  }
}

/* 幅1100の時の余白 
@media screen and (max-width: 1100px){
.top_main .ce_wrap {
	padding:0 16px;
}
}*/

/* inner 囲み */
.top_main .ce_wrap .inner_top {
	width: 72.7272%;
	/*max-width: 800px;*/
	margin-left: 0;
}

/* H2タイトル */
.top_main .ce_title {
	margin: 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	letter-spacing: .02em;
	padding: 1.25em 0;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
	display: flex;
	align-items: center;
}
.top_main .ce_sub {
	margin:  0 1em 0;
	font-size: 14px;
	font-weight: 400!important;
}

/* レイアウト本体 */
.top_main .ce_layout {
	width: 100% ;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* 一覧の各ボックス */
.top_main .ce_card {
	width: 46.25%;
	/*max-width: 370px;*/
	height: auto;
	margin-top: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #777;
}
/* 最後のボックスのみ下線削除 */
.top_main .ce_card:last-child {
  border-bottom: none;
}

.top_main .ce_card_img {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}
.top_main .ce_card_ttl {
	margin: 0 0 0.5em;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
}
.top_main .ce_card_txt {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}

/* ===============================================
   CATCH EYE SP
=============================================== */
@media screen and (max-width: 767px) {
/* CATCH EYE 囲み */
.top_main .ce_wrap {
    width: 92%;
    margin: 12px auto 30px;
	padding:inherit;
}

/* inner 囲み */
.top_main .ce_wrap .inner_top {
	width: 100%;
}
	
/* H2タイトル */
.top_main .ce_title {
	font-size: 20px;
	display: block;
	text-align: center;
}
.top_main .ce_sub {
	font-size: 12px;
	display: block;
	padding-top: 0.7em;
}
	
/* レイアウト本体 */
.top_main .ce_layout {
	width: 100%;
	margin-top: 30px;
	display: block;
}
	
/* 一覧の各ボックス */
.top_main .ce_card {
	width: 100%;
	margin-top: 24px;
	border-bottom: 1px solid #9a9a9a;
}
.top_main .ce_card a {
	display: block;
}
.top_main .ce_card_img {
	margin-bottom: 12px;
}
.top_main .ce_card_ttl {
	font-size: 16px;
	margin: 0 0 0.5em;
}
.top_main .ce_card_txt {
	display: inline-block;
	font-size: 14px;
	width: 100%;
}
}


/* ===============================================
   PICK UP PC
=============================================== */
/* PICK UP 囲み */
.top_main .pu_wrap {
	width: 100%;
	max-width: 1140px;
	margin: 18px auto 56px !important;
	padding: 0 20px;
}

/* inner 囲み */
.top_main .pu_wrap .inner_top {
	width: 72.7272%;
	/*max-width: 800px;*/
	margin-left: 0;
}

/* H2タイトル */
.top_main .pu_title {
	margin: 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	letter-spacing: .02em;
	padding: 1.25em 0;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
	display: flex;
	align-items: center;
}
.top_main .pu_sub {
	margin:  0 1em 0;
	font-size: 14px;
	font-weight: 400;
}

/* レイアウト本体囲み */
.top_main .pu_layout {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* 一覧の各ボックス */
.top_main .pu_card {
	width: 46.25%;
	height: auto;
	margin-top: 30px;
	/*padding-bottom: 15px;*/
}
.top_main .pu_card_img {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}
.top_main .pu_card_ttl {
	margin: 0 0 0.5em;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
}
.top_main .pu_card_txt {
	margin: 0 ;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}

/* ===============================================
   PICK UP SP
=============================================== */
@media screen and (max-width: 767px) {
/* PICK UP 囲み */
.top_main .pu_wrap {
    width: 100%!important;
    margin: 12px auto 50px;
}
/* inner 囲み */
.top_main .pu_wrap .inner_top {
	width: 100%;
}
/* H2タイトル */
.top_main .pu_title {
	font-size: 20px;
	display: block;
	text-align: center;
}
.top_main .pu_sub {
	font-size: 12px;
	display: block;
	padding-top: 0.7em;
}
	
/* レイアウト本体 */
.top_main .pu_layout {
	width: 100% ;
	margin-top: 30px;
	display: block;
}
	
/* 一覧の各ボックス */
.top_main .pu_card {
	width: 100%;
	margin-top: 24px;
}
.top_main .pu_card_img {
	margin-bottom: 12px;
}
.top_main .pu_card_ttl {
	font-size: 16px;
	margin: 0 0 0.5em;
}
.top_main .pu_card_txt {
	font-size: 14px;
}
}



/* ===============================================
   COMMENT PC
=============================================== */
/* COMMENT 囲み */
.top_main .cmt_wrap {
	width: 100%;
	max-width: 1140px;
	margin: 18px auto 56px ;
	padding: 0 20px;
}

/* inner 囲み */
.top_main .cmt_wrap .inner_top {
	width: 72.7272%;
	/*max-width: 800px;*/
	margin-left: 0;
}

/* H2タイトル */
.top_main .cmt_title {
	margin: 0 !important;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	letter-spacing: .02em;
	padding: 1.25em 0;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
	display: flex;
	align-items: center;
}
.top_main .cmt_sub {
	margin:  0 1em 0 !important;
	font-size: 14px;
	font-weight: 400!important;
}

/* レイアウト本体囲み */
.top_main .cmt_layout {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* 一覧の各ボックス */
.top_main .cmt_card {
	width: 30%;
	height: auto;
	margin-top: 30px;
	padding-bottom: 15px;
}
.top_main .cmt_card_img {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}
.top_main .cmt_card_ttl {
	margin: 0 0 0.5em !important;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
}

/* ===============================================
   COMMENT SP
=============================================== */
@media screen and (max-width: 767px) {
/* COMMENT 囲み */
.top_main .cmt_wrap {
    width: 92%!important;
    margin: 12px auto 50px !important;
	padding:inherit;
}
/* inner 囲み */
.top_main .cmt_wrap .inner_top {
	width: 100%;
}
/* H2タイトル */
.top_main .cmt_title {
	ont-size: 20px;
	display: block;
	text-align: center;
}
.top_main .cmt_sub {
	font-size: 12px;
	line-height: 1.3;
	display: block;
	padding-top: 0.5em;
	font-feature-settings: "palt";
}
/* レイアウト本体囲み */
.top_main .cmt_layout {
	width: 100% !important;
}
/* 一覧の各ボックス */
.top_main .cmt_card {
	width: 48%;
	height: auto;
	margin-top: 30px;
	padding-bottom: 0;
}
.top_main .cmt_card a{
	display: block;
}
.top_main .cmt_card_img {
}
.top_main .cmt_card_ttl {
}	
}


/* ===============================================
   7ぴあプリント PC
=============================================== */
/* 7ぴあプリント 囲み */
.top_main .print_wrap {
	max-width: 1140px;
	margin: 18px auto 56px ;
	padding: 0 20px;
}

/* inner 囲み */
.top_main .print_wrap .inner_top {
	width: 72.7272%;
	/*max-width: 800px;*/
	margin-left: 0;
}

/* H2タイトル */
.top_main .print_title {
	margin: 0 ;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	letter-spacing: .02em;
	padding: 1.25em 0;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
	display: flex;
	align-items: center;
}
.top_main .print_sub {
	margin:  0 1em 0 ;
	font-size: 13px;
	font-weight: 400;
}

/* レイアウト本体囲み */
.top_main .print_layout {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* 一覧の各ボックス */
.top_main .print_card {
	width: 30%;
	height: auto;
	margin-top: 30px;
	padding-bottom: 15px;
}
.top_main .print_card_img {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}
.top_main .print_card_ttl {
	margin: 0 0 0.5em !important;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
}

/* ===============================================
   7ぴあプリント SP
=============================================== */
@media screen and (max-width: 767px) {
/* 7ぴあプリント 囲み */
.top_main .print_wrap {
    width: 92%!important;
    margin: 12px auto 50px !important;
	padding:inherit;
}

/* inner 囲み */
.top_main .print_wrap .inner_top {
	width: 100%;
}
	
/* H2タイトル */
.top_main .print_title {
	font-size: 20px;
	display: block;
	text-align: center;
}
.top_main .print_sub {
	font-size: 12px;
	line-height: 1.3;
	display: block;
	padding-top: 0.5em;
	font-feature-settings: "palt";
}
/* レイアウト本体囲み */
.top_main .print_layout {
	width: 100% !important;
}
/* 一覧の各ボックス */
.top_main .print_card {
	width: 48%;
	height: auto;
	margin-top: 30px;
	padding-bottom: 0;
}
.top_main .print_card a{
	display: block;
}
.top_main .print_card_img {
}
.top_main .print_card_ttl {
}	
}



/* ===============================================
   最新号 CHECK PC
=============================================== */
/* 最新号 CHECK 囲み */
.top_main .latest_issue_wrap  {
	width: clamp(180px, 22vw, 260px);
	position: fixed;
	top: 135px;
	bottom: 20px;
	right: max(10px, calc(50% - 550px));
	z-index: 999;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}


/* 最新号 CHECK 囲み 元
.top_main .latest_issue_wrap {
	width: 100% !important;
  max-width: 260px;
  position: fixed;
  top: 125px;
  bottom: 20px;
	right: max(0px, calc(50% - 550px));
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; 
}*/

/* 最新号 */
.top_main .latest_issue_wrap .latest_issue_box {
	background-color: #fad5e6;
	text-align: center;
	padding: 25px 0;
}
.top_main .latest_issue_wrap .latest_issue_box h2{
	font-size: 16px;
	font-weight: 700;
}
.top_main .latest_issue_wrap .latest_issue_box img{
	width: 100%;
	max-width: 148px;
	height: auto;
	margin: 15px auto;
}
.top_main .latest_issue_wrap .latest_issue_box p{
	font-size: 13px;
	font-weight: 500;
}
.top_main .latest_issue_wrap .latest_issue_box p span{
	font-size: 12px;
	font-weight: 400;
	display: block;
	margin-top: 0.5em;
}
.top_main .latest_issue_wrap .latest_issue_box p span a{
	text-decoration: underline!important;
}
/* CHECK */
.top_main .latest_issue_wrap .check_block{
	border: solid 1px #666;
	margin-top: 15px;
	padding: 20px 15px;
	background-color: #fff;
}
.top_main .latest_issue_wrap .check_block h2{
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.top_main .latest_issue_wrap .check_block img{
	width: 100%;
	max-width: 148px;
	height: auto;
	margin: 15px auto;
}
.top_main .latest_issue_wrap .check_block p{
	font-size: 13px;
	font-weight: 700;
}
.top_main .latest_issue_wrap .check_block p span{
	font-weight: 400;
	display: block;
	text-align: right;
}
.top_main .latest_issue_wrap .check_block .check_box{
	display: flex;
	justify-content: center;
}
.top_main .latest_issue_wrap .border{
	display: block;
	border-bottom: solid 1px #999;
	margin: 20px 0 25px;
}

/* ===============================================
   最新号 CHECK SP
=============================================== */
@media screen and (max-width: 767px) {
/* 最新号 CHECK 囲み */
.top_main .latest_issue_wrap {
	width: 100% !important;
	margin: 18px auto 30px !important;
	position: static;
	animation: none;
	max-height: none; /*ボックス縦方向の制限 */
	overflow-y: visible;/*縦方向にはみ出た場合のみスクロールバーを表示 */
}
/* 最新号 */
.top_main .latest_issue_wrap .latest_issue_box {
	width: 100% !important;
}
.top_main .latest_issue_wrap .latest_issue_box img{
	width: 70%;
	height: auto;
	margin: 15px auto;
}	
	
/* CHECK */
.top_main .latest_issue_wrap .check_block{
	width: 92% !important;
	border: solid 1px #666;
	margin: 15px auto 0;
	padding: 20px 15px;
}	
.top_main .latest_issue_wrap .check_block a{
	display: block;
}
.top_main .latest_issue_wrap .check_block img{
	width: 70%;
	height: auto;
	margin: 15px auto;
}
.top_main .latest_issue_wrap .check_block p{
	margin: auto 10%;
}	
.top_main .latest_issue_wrap .check_block .check_box{
	display: block;
}
}


/* ===============================================
   TICKET INFO PC
=============================================== */
/* 7ぴあプリント 囲み */
.top_main .ticket_info_wrap {
	background: #eff2fa;
	padding: 50px 0;
	display: block;
}

.top_main .seven_backcolor{
	background-color: #f7f0eb;
}

/* inner TICKET INFO用 */
.top_main .ticket_info_wrap .inner_info {
	max-width: 1140px;
	margin: 18px auto 56px !important;
	padding: 0 20px;
}

/* inner_top 囲み */
.top_main .ticket_info_wrap .inner_top {
	width: 72.7272%;
	margin-left: 0;
}

/* H2タイトル */
.top_main .ticket_info_title {
	margin: 0 !important;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	letter-spacing: .02em;
	padding: 1.25em 0;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
	display: flex;
	align-items: center;
}
.top_main .ticket_info_sub {
	margin:  0 3em 0 !important;
	font-size: 14px;
	font-weight: 400!important;
	display: block;
	position: relative; /* 基準となる要素に指定 */
}
.top_main .ticket_info_sub::before {
	content: ''; /* 疑似要素には必須 */
	position: absolute; /* 親を基準に配置 */
	top: -50%;
	left: -1.5em;
	width: 1px; /* 線の太さ */
	height: 200%; /* 高さ100%（親要素に合わせる） */
	background-color: #666; /* 線の色 */
}
/* レイアウト本体囲み */
.top_main .ticket_info_layout {
	width: 100% !important;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 2%;
}

/* 一覧の各ボックス */
.top_main .ticket_info_card {
	width: 23.5%;
	height: auto;
	background-color: #fff;
	margin-top: 30px;
	padding: 15px ;
}
.top_main .ticket_info_card_img {
	width: auto;
	max-height: 144px;
	margin: 0 auto 12px;
}
.top_main .ticket_info_card_ttl {
	margin: 0 0 0.5em !important;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.top_main .ticket_info_card .copyright{
	font-size: 10px;
	text-align: left;
	margin-top: 1em;
	color: #666;
}



/* ===============================================
   TICKET INFO SP
=============================================== */
@media screen and (max-width: 767px) {
/* 7ぴあプリント 囲み */
.top_main .ticket_info_wrap {
    width: 100%!important;
    margin: 0 auto 0 !important;
	padding: 30px 0 50px;
}
.top_main .ticket_info_wrap .inner_info {
	width: 92%!important;
	margin: 12px auto 0 !important;
	padding:inherit;
}
	
/* inner_top 囲み */
.top_main .ticket_info_wrap .inner_top {
	width: 100%;
}
	
/* H2タイトル */
.top_main .ticket_info_title {
	font-size: 20px;
	display: block;
	text-align: center;
}
.top_main .ticket_info_sub {
	font-size: 12px;
	line-height: 1.3;
	display: block;
	padding-top: 0.5em;
	position: static;
}
.top_main .ticket_info_sub::before {
	content: none; /* 擬似要素を消す */
}
/* レイアウト本体囲み */
.top_main .ticket_info_layout {
}
/* 一覧の各ボックス */
.top_main .ticket_info_card {
	width: 48%;
	height: auto;
	margin-top: 30px;
}
.top_main .ticket_info_card a {
	display: block;
}
.top_main .ticket_info_card_img {
}
.top_main .ticket_info_card_ttl {
}	
}



/* ===============================================
   INFORMATION PC
=============================================== */
/* INFORMATION 囲み */
.top_main .information_wrap {
	width: 100%;
	max-width: 1140px;
	padding: 60px 20px 0;
	margin: 18px auto 56px;
	display: block;
}

/* inner_top 囲み */
.top_main .information_wrap .inner_top {
	width: 72.7272%;
	/*max-width: 800px;*/
	margin-left: 0;

}

/* H2タイトル */
.top_main .information_title {
	margin: 0 !important;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	letter-spacing: .02em;
	padding: 1.25em 0;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
	display: flex;
	align-items: center;
}
.top_main .information_sub {
	margin:  0 1em 0 !important;
	font-size: 14px;
	font-weight: 400!important;
}
/* タイトル下説明文 */
.top_main .information_wrap .exp{
	margin: 20px auto 0;
	padding-bottom: 2em;
	border-bottom: solid 1px #666;
}
/* 文章と写真の囲み */
.top_main .information_wrap .wrap{
	margin: 3em auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.top_main .information_wrap .wrap h3{
	font-size: 14px;
	font-weight: 700;
}
.top_main .information_wrap .wrap .next_issue{
	margin: 1em auto;
}
.top_main .information_wrap .wrap .next_issue dt{
	font-size: 14px;
	font-weight: 700;
	margin: 0.9em 0 0.3em;
}
.top_main .information_wrap .wrap .next_issue dd{
	font-size: 14px;
}

/* 写真 */
.top_main .information_wrap .wrap .photo_box{	
	margin: 20px auto;
	display: table;
}
.top_main .information_wrap .wrap .photo_box img{	
	width: 270px;
	height: auto;
}
/* 写真キャプション */
.top_main .information_wrap .wrap .photo_box figcaption {
    display: table-caption;
    caption-side: bottom;
    text-align: center;
    padding: 8px;
  }

/* ===============================================
   INFORMATION SP
=============================================== */
@media screen and (max-width: 767px) {
/* COMMENT 囲み */
.top_main .information_wrap {
    width: 92%!important;
    margin: 12px auto 50px !important;
	padding:inherit 0;
}

/* inner_top 囲み */
.top_main .information_wrap .inner_top {
	width: 100%;
}
	
/* H2タイトル */
.top_main .information_title {
	ont-size: 20px;
	display: block;
}
.top_main .information_sub {
	font-size: 13px;
	line-height: 1.3;
	display: block;
	padding-top: 0.5em;
}
/* タイトル下説明文 */
.top_main .information_wrap .exp{
	margin: 20px auto 0;
	padding-bottom: 2em;
	border-bottom: solid 1px #666;
}
/* 文章と写真の囲み */
.top_main .information_wrap .wrap{
	margin: 2em auto 0;
	display: block;
}
/* 写真 */
.top_main .information_wrap .wrap .photo_box{	
	margin-top: 20px;
}
.top_main .information_wrap .wrap .photo_box img{
	width: 100%;
	height: auto;
	margin: auto;
}
}
	

/* ===============================================
   Footer PC
=============================================== */	
.site-footer {
  margin-top: clamp(40px, 8vw, 80px);
  background: #fff;
}
.site-footer__inner {
  width: 100%;
  /*max-width: calc(100% - 40px);*/
  margin: 0 auto;
  padding: 40px 0 30px;
  text-align: center;
	border-top: 1px solid #8f8f8f;
}
/* 罫線 
.site-footer__line {
  height: 1px;
  background: #8f8f8f;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 22px;
}*/
/* 7ぴあロゴ */
.site-footer__logo {
  display: inline-block;
  line-height: 1;
}

.site-footer__logo img {
  width: 239px;
  height: 41px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
/* SNS アイコン */
.site-footer__sns {
  margin: 18px 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.site-footer__sns-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-footer__sns-link img {
  width: 100%;
  height: auto;
  display: block;
}
/* copyright */
.site-footer__copy {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #4f4f4f;
}

/* ===============================================
   Footer SP
=============================================== */	
@media screen and (max-width: 767px) {
  .site-footer__inner {
    max-width: calc(100% - 24px);
    padding: 18px 0 22px;
  }
  .site-footer__line {
    margin-bottom: 16px;
  }
  /* フッターロゴ */
  .site-footer__logo img {
    width: 158px;
    height: auto;
  }
  .site-footer__sns {
    margin: 14px 0 12px;
    gap: 10px;
  }
  .site-footer__sns-link {
    width: 24px;
    height: 24px;
  }
  .site-footer__copy {
    font-size: 11px;
    line-height: 1.45;
  }
}


/* フッターの最下段メニューの上書き */	
footer {
  padding: 20px 0;
  background-color: #fff;
  color: #333;
}
footer a:link, footer a:visited {
  color: #666;
}
footer a:hover, footer a:active {
  color: #999;
}


/* ===============================================
   7ぴあプリント 好評発売中　フロート
=============================================== */
#bnr_7piaprint_wrap{
	width: 710px;
	max-width: 710px;
	height: auto;
	color: #fff;
	position: fixed;
	bottom: 30px;
	left: max(0px, calc(50% - 500px));
	z-index: 2000;
	background-color: #e52f81;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px;
	font-weight: 700;
	font-size: 13px;
	animation: fadeIn 2s ease-in-out forwards;
	opacity: 0;
	box-sizing: border-box;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media screen and (max-width: 1100px){
	#bnr_7piaprint_wrap{
		width: calc(600 / 1100 * 100vw);
		margin-left: 9vw;
	}
	#bnr_7piaprint_wrap .sp{
		display: block;
	}
}

#bnr_7piaprint_wrap .tx_left{
	display: flex;
	align-items: center;
	border: solid 1px #fff;
	padding: 0.7em;
	height: 55px;
	text-align: center;
	font-size: 12px;
}

#bnr_7piaprint_wrap .tx_right{
	padding-left: 10px;
}

#close-btn {
	position: absolute;
	top: 6px;
	right: 5px;
	border: none;
	background: #fff;
	color: #e52f81;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

@media screen and (max-width: 767px) {
	#bnr_7piaprint_wrap{
		width: calc(100% - 4px);
		max-width: none;
		left: 2px;
		right: 2px;
		margin-left: 0;

		/* 下端に接しない */
		bottom: calc(12px + env(safe-area-inset-bottom, 0px));

		background-color: #e52f81;
		padding: 5px;
		box-sizing: border-box;
	}

	#bnr_7piaprint_wrap .tx_left{
		text-align: center;
		font-size: 2.6vw;
		white-space: nowrap;
		height: auto;
		padding: 0.5em;
	}

	#bnr_7piaprint_wrap .tx_right{
		font-size: 2.58vw;
	}
}


/* ===============================================
   MOREボタン
=============================================== */
.btn_more{
	background: transparent;
	color: #666;
	border: 1px solid #666;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.7s ease;
	margin: 20px auto 30px;
	padding: 0.75em 4em;
	display: block;
	width: 160px;
	text-align: center;
}
.btn_more:hover {
  background: #666;
  color: #fff!important;
}


/* TICKET INFO用 MOREボタン */
.btn_more_ticketinfo{
	background: transparent;
	color: #666;
	border: 1px solid #666;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.7s ease;
	margin: 40px auto 0;
	padding: 0.75em 4em;
	display: block;
	width: 160px;
	text-align: center;
}
.btn_more_ticketinfo a:hover {
	background: #666;
	color: #fff!important;
}


/* ===============================================
   PC SP　切り替え
=============================================== */
.pc{
	display: block;
}
.sp{
	display: none;
}
@media screen and (max-width: 767px) {
.pc{
	display: none;
}
.sp{
	display: block;
}	
}


/* ===============================================
   先頭へ戻るボタン
=============================================== */
.pagetop {
    height: 40px!important;
    width: 40px!important;
    position: fixed!important;
    right: calc(50% - 600px)!important;
    bottom: 40px!important;
    top: inherit!important;
    left: inherit!important;
    background: #666;
    border-radius: 50%;
    display: flex!important;
    justify-content: center;
    align-items: center;
    z-index: 1000;
	opacity: 0.8;
	animation: fadeIn 2s ease-in-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* 少し下から */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 元の位置へ */
  }
}
.pagetop_arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
.pagetop {
    right: 2%!important;
    bottom: 10vh!important;
}
}


/* ===============================================
   ふわっと出現アニメーション
=============================================== */
.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}




/* ===============================================
   ヘッダー部分　上書き変更
=============================================== */	
/* innerに入っていた指定を消してロゴの左余白を消す */
.inner:before, .inner:after {
  content: none;
  display: block;
}
	
/* global.css headerの上書き */	
header{
	background-color: inherit;
	z-index: 3!important;
	width: 100%;
	background-color: rgb(255 255 255 / 0.9);
	position: fixed;
	top: 0;
	box-shadow: 0 2px 14px 0px rgba(0, 0, 0, 0.3);
}	
header .inner {
	width: 1100px;
	max-width: calc(100% - 20px);
	margin: 0 auto;
	padding: 8px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;

}
header .header_main{
	max-width: auto;
	padding: 0;
}
	
header .siteHeading{
	width: auto;
	margin: 0;
	padding: 0;
}
header .siteHeading img{
	width: 239px;
	height: auto;
}
	
/* global header_userの上書き */	
#header_user {
	position: absolute;
	top: 10px;
	right: 60px;
	/*width: 170px;*/
	width: auto;
	gap: 20px;
	font-size: 92.3%;
	float: none;
}

#header_user p {
	margin-right: 2em;
	float: none;
}
#header_user dt{
		display: none;
	}
#header_user dd{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0;
	gap: 10px;
}

#header_user dd p{
	color: #333;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	height: 26px;
	padding: 0 8px;
	border-radius: 0;
	border: 2px solid #707070;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	margin: 0;
}

#header_user dd p:nth-of-type(2) {
	color: #fff;
	background-color: #707070;
}
	
/* header内に「7ぴあ」は〜の追加部分指定 */
header .inner .notice {
	width: 100%;
	margin-top: 7px;
}

@media screen and (max-width: 767px) {
header {

}
header .inner {
	width: 100%;
	max-width: 92%;
	padding: 8px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
	
header .header_main{
	width: 40%;
}
header .siteHeading img{
	width: 100%;
	height: auto;
	margin: 0!important;
	padding: 0!important;
}
#header_user {
	width: auto;
	float: none;
	background-color: transparent!important;
	position: static;
}
#header_user dd{
	gap: 5px;
}

#header_user dd p{
	color: #333;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	height: 26px;
	padding: 0 8px;
	border-radius: 0;
	border: 2px solid #707070;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 11px;
	line-height: 1;
	white-space: nowrap;
	margin-left: 6px;
}
}		
	
	
/* こちらで作成したハンバーガーメニュー 追加指定*/
.hamburger{
	position: absolute;
	top: 10px;
	right: 1px;
}
@media screen and (max-width: 767px) {	
.hamburger{
	width: 30%;
	margin-left: 70%;
	display: block;
	position: relative;
	z-index: 2;
}
.hamburger span {
	display: block;
	position: absolute;
	left: calc(100% - 30px);
	width: 30px;
	height: 2px;
	background: #666;
	border-radius: 2px;
	transform-origin: center;
	transition: transform 0.28s ease, top 0.28s ease, opacity 0.2s ease;
}
}

