@charset "UTF-8";
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* -------- ローディング画面 -------- */
.hide{visibility:hidden !important;}
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 0.25s ease;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  z-index: 9999;
    background: linear-gradient(0deg, #0285c7, #113a92, #5B4FAD, #2673b3, #0285c7);
    background-size: 100% 800%;

    -webkit-animation: BackgroundAnimation 60s linear infinite;
    -moz-animation: BackgroundAnimation 60s linear infinite;
    animation: BackgroundAnimation 60s linear infinite;
}

@-webkit-keyframes BackgroundAnimation {
    0%{background-position:50% 0% }
    100%{background-position:50% 800% }
}
@-moz-keyframes BackgroundAnimation {
    0%{background-position:50% 0% }
    100%{background-position:50% 800% }
}
@keyframes BackgroundAnimation {
    0%{background-position:50% 0% }
    100%{background-position:50% 800% }
}
.loaded {
  opacity:0;
}

/* ローディングアニメーション */
#loading .load {
  position: relative;
  margin: 50px auto;
  width: 100px;
  height: 140px;
}

#loading .load .loader {
  width: 100px;
  aspect-ratio: 1;
  --c:no-repeat radial-gradient(farthest-side,#fff 92%,#0000);
  background: 
    var(--c) 50%  0, 
    var(--c) 50%  100%, 
    var(--c) 100% 50%, 
    var(--c) 0    50%;
  background-size: 10px 10px;
  animation: l18 1s infinite;
  position: relative;
}
#loading .load .loader::before {    
  content:"";
  position: absolute;
  inset:0;
  margin: 3px;
  background: repeating-conic-gradient(#0000 0 35deg,#fff 0 90deg);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 3px),#000 0);
  border-radius: 50%;
}
@keyframes l18 { 
  100%{transform: rotate(.5turn)}
}
#loading .text {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  font-weight:bold;
  text-align: center;
} 
#loading .text1 {
  position: absolute;
  left: 50%;
  font-family: serif;
  width:200px;
  transform: translate(-50%, 0%);
  top: -30px;
} 
#loading .text2 {
  position: absolute;
  left: 50%;
  font-family: serif;
  width:200px;
  transform: translate(-50%, -50%);
  bottom: calc(50% - 150px);
} 
.blink {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
#loading #bar {
  width: 300px;
  height: 16px;
  border:1px solid #e2e2e2;
  left: 50%;
  transform: translate(-50%, 0%);
  padding: 1px;
  margin-top: 10px;
  position:relative;
  font-size: 1px;
  }
#loading #bar span {
  display: block;
  width: 0px;
  height: 12px;
  background: #30e2e2;
  }
/* -------- /ローディング画面 -------- */

.atom-spinner, .atom-spinner * {
      box-sizing: border-box;
    }

    .atom-spinner {
      height: 100px;
      width: 100px;
      overflow: hidden;
    }

    .atom-spinner .spinner-inner {
      position: relative;
      display: block;
      height: 100%;
      width: 100%;
    }

    .atom-spinner .spinner-circle {
      display: block;
      position: absolute;
      color: #fffeba;
      font-size: calc(100px * 0.24);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .atom-spinner .spinner-line {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border-left-width: calc(100px / 25);
      border-top-width: calc(100px / 25);
      border-left-color: #2c1dff;
      border-left-style: solid;
      border-top-style: solid;
      border-top-color: transparent;
    }

    .atom-spinner .spinner-line:nth-child(1) {
      animation: atom-spinner-animation-1 1s linear infinite;
      transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
    }

    .atom-spinner .spinner-line:nth-child(2) {
      animation: atom-spinner-animation-2 1s linear infinite;
      transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
    }

    .atom-spinner .spinner-line:nth-child(3) {
      animation: atom-spinner-animation-3 1s linear infinite;
      transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
    }

    @keyframes atom-spinner-animation-1 {
      100% {
        transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
      }
    }

    @keyframes atom-spinner-animation-2 {
      100% {
        transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
      }
    }

    @keyframes atom-spinner-animation-3 {
      100% {
        transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
      }
    }

.hd_container {
  position: relative;
  width:100%;
  height:calc(100vw * 0.38);
  overflow: hidden; 
}
	@media screen and (max-width:767px){
		.hd_container {height:calc(100vw * 0.8) !important;}
	}

header{
	margin-top:38px;
	height:calc(100vw * 0.54);
	background:#ffffff url(./header_bg.webp) no-repeat center;
	background-size:cover;
	display:grid;
	place-content:center;
	align-items: center;
}
	@media screen and (max-width:767px){
		header{height:calc(100vw * 0.8) !important;	background-size:cover;}
	}
@keyframes move-chara1{ 0%{margin-top: 100px;opacity:0;} 33%{opacity:0;} 75%{opacity:1;} 100%{margin-top: 0px;opacity:1;} }
@keyframes appear-disp{ 0%{margin-top: -100px;opacity:0;} 33%{opacity:0;} 75%{opacity:1;} 100%{margin-top: -25px;opacity:1;} }
@keyframes appear-disp-fg{ 0%{margin-top: 100px;opacity:0;} 33%{opacity:0;} 75%{opacity:1;} 100%{margin-top: 40px;opacity:1;} }
@keyframes appear-logo{ 0%{transform:translate(15%,20%);opacity:0;} 33%{opacity:0;} 75%{opacity:1;} 100%{transform:translate(15%,0%);opacity:1;} }
@keyframes move-disp{ 0%{margin-top: 25px;}  100%{margin-top: -25px;} }
@keyframes move-disp-fg{ 0%{margin-top: 0px;}  100%{margin-top: 40px;} }

header div#disp-bg{
  width:calc(100% );height:calc(100%);
  top:0;
  left:0;
  transform:translate(10%,0);  
  margin:0 auto;
  position:absolute;
	display:block;
	background:url(./header_bg_disp.webp) no-repeat center center;
  background-size:contain;
	opacity:0;
  animation: 1.5s ease 1.0s normal forwards 1 appear-disp,5.0s ease-in-out 2.5s alternate-reverse forwards infinite move-disp;
}

header div#nura{
	content:"";
  width:calc(100% );height:calc(100%);
  top:0;
  left:0;
  transform:translate(10%,0);
  margin:0 auto;
  position:absolute;
	display:block;
	background:url(./header_nura.webp) no-repeat center center;
	background-size:contain;
	opacity:0;
  animation: 1.5s ease 0.5s normal forwards 1 move-chara1;
}

header div#disp-fg{
	content:"";
  width:calc(100% );height:calc(100%);
  top:0;
  left:0;
  transform:translate(10%,0);
  margin:0 auto;
  position:absolute;
	display:block;
	background:url(./header_fg_disp.webp) no-repeat center center;
	background-size:contain;
	opacity:0;
  animation: 1.5s ease 1.0s normal forwards 1 appear-disp-fg,4.0s ease-in-out 2.5s alternate-reverse forwards infinite move-disp-fg;
}

header div#logo{
	content:"";
  width:calc(100%);height:calc(100%);
  bottom:0;
  left:0;
  transform:translate(50%,0%);
  margin:0 auto;
  position:absolute;
	display:block;
	background:url(./logo.webp) no-repeat left bottom;
	background-size:auto 60%;
	opacity:0;
  animation: 1.5s ease 1.0s normal forwards 1 appear-logo;
}


	@media screen and (max-width:767px){
    header div#disp-bg{transform:translate(0%,0%) !important;background-size:180% auto;}
    header div#nura{transform:translate(0%,0%) !important;background-size:180% auto;}
    header div#disp-fg{transform:translate(0%,0%) !important;background-size:180% auto;}
    header div#disp-fg{transform:translate(0%,0%) !important;background-size:180% auto;}
	}



/* HTML5 display definitions
   ========================================================================== */
/**
	
	width:calc(100% / 1502 * 1900 );height:calc(100% / 1502 * 1502 );
	transform: translateX( calc(100% / 1502 * -450 ));
	animation: 1.5s ease 0.5s normal forwards 1 move-chara1;
	
	content:"";

* Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

.login{
  color:#113a92
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Main
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 12px;
}

body {
  background: #010225;
  color: #afffff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

#body-wrapper {
  display: table;
  table-layout: fixed;
  position: relative;
  height: 100%;
  width: 100%;
}

.wrapper {
  margin: 37.5px 0;
  padding: 37.5px;
}

#shop {text-align:center;max-width:1100px;}
#shop .info {display:flex;justify-content:space-evenly;}
#shop .info a img {max-width:400px;height:auto;}
	@media screen and (max-width:767px){
		#shop a img {max-width:100% !important; height: 60px; object-fit: cover; /* この一行を追加するだけ！ */}
	}

#link .link-external-banner {margin-bottom:2.0em;}
#link .link-external-banner a img {max-width:500px;height:auto;margin-bottom:0.5em;}
#link .link-external-text a {display:inline-block;padding:1em;background:rgba(255,255,255,0.7);margin:2px;}
#link .link-external-text a:before{
	content:"≫";
	display:inline-block;
	margin-right:0.2em;
}
	@media screen and (max-width:767px){
		#link img{max-width:100% !important;}
	}

#link .link-external-textbanner {margin-bottom:2.0em;display:flex;flex-wrap:wrap;justify-content: center;}

  .banner_box {
    display:flex;
    background: linear-gradient(0deg, #ffffff, #d1e5f5);
    border:1px solid #0285c7;
    color: white;
    width:333px;
    height:66px;
    justify-content: center;
      flex-flow: column;
    align-items: center;
    text-align: center;
    border-radius: 0.1em;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    font-family: "Yu Gothic UI", "Hiragino Kaku Gothic ProN", sans-serif;
  }
  
  .banner-subtitle {
  font-size:  12px;
  opacity: 0.8;
  color:#6b69ff;
}

/* 中央の大きなメイン文字 */
.banner-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  font-size: 16px;
  color:#6b69ff;
}


  .btext{
  color:#6b69ff;
  }

  /* 小さい画面では余白を減らして見やすく */
  @media (max-width: 600px) {
      .banner_box {
      font-size: clamp(12px, 4vw, 25px);
      padding: 1em;
      max-width:100%;
      height:auto;
  }
  }

/* リンク */
a {
  color: #1fa5ff;
  text-decoration: none;
}
a:not(#scroll-to-top):not(.btn):not(.banner):hover {
  border-bottom: 3px solid #f9d76d;
}

/* 画像 */
img {
  vertical-align: top;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  -webkit-font-smoothing: antialiased;
}

h1,
h2 {
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
}

h1 {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 4.0rem;
  text-align: center;
}

h2 {
  display: flex;
  align-items: center;
  text-align: center;
  color: #09ffff;
  font-size: 2.4rem;
  font-weight: normal;
}


h2:before, h2:after {
  border-top: 1px solid #09ffff;
  content: '';
  display: inline;
  /* for IE */
  flex-grow: 1;
}
h2:before {
  margin-right: 0.5em;
}
h2:after {
  margin-left: 0.5em;
}

#about h3{
  display: flex;
  align-items: center;
  text-align: center;
  color: #29cfcf;
  font-size: 2.0rem;
  font-weight: normal;
}


#about h3:before, h3:after {
  border-top: 1px solid #29cfcf;
  content: '';
  display: inline;
  /* for IE */
  flex-grow: 1;
}
#about h3:before {
  margin-right: 0.5em;
  margin-left: 5%;
}
#about h3:after {
  margin-left: 0.5em;
  margin-right: 5%;
}

#about h4{
  align-items: center;
  text-align: center;
  color: #afffff;
  font-size: 1.5rem;
  font-weight: normal;
  margin-left: 5%;
  margin-right: 5%;
}

.sentence{
  display:block;
  text-align: center;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;  
}

@media screen and (max-width:768px){
  #about h4{
    text-align: left;
  }
  .sentence{
  word-break: normal;
  display:inline;
  text-align: left;
}
}
ruby_box{
  align-items: flex-end;
}

h5 {
  font-size: 1.5rem;
  font-weight: normal;
}

/* 寄せ */
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* セクション */
section {
  display: block;
  margin-bottom: 5rem;
  display: block;
  *zoom: 1;
}
section:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  font-size: 0;
  clear: both;
}

/* 定義リスト */
dl {
  margin: 20px auto;
  overflow: hidden;
  position: relative;
}
dl dt {
  float: left;
  width: 28%;
  clear: both;
  padding: 3px 2% 15px 0;
  position: relative;
}
dl dd {
  float: right;
  width: 67%;
  margin: 0;
  padding: 3px 0 15px 3%;
}
dl.contact-form dt {
  width: 36%;
  text-align: right;
  position: relative;
  top: 5px;
}
dl.contact-form dd {
  width: 62%;
}




/* 整形済みテキスト */
pre {
  padding: 0.5rem;
  width: 98%;
  background: #ebebeb;
  border: 1px solid #d6d6d6;
  border-radius: 0.2em;
  font-size: 0.9em;
  font-family: Consolas, 'Courier New', Courier, Monaco, monospace;
  white-space: pre;
  white-space: pre-wrap;
}

/* Enterページ的なやつ */
#enter {
  margin: 0;
  position: absolute;
  background-color: #ffffff;
  transition: all 0.8s ease-out;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20% 2em;
  opacity: 0;
  filter: alpha(opacity=0);
}
#enter.show {
  z-index: 99999;
  opacity: 1;
  filter: alpha(opacity=100);
}

#button-enter {
  margin-top: 2em;
}

/* アイキャッチ */
#eyecatch {
  margin: 0 auto;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position: right;
  position: relative;
  color: #612626;
}
#eyecatch h1 {
  padding-top: 1em;
  padding-left: 1em;
  font-size: 3.6rem;
  font-weight: normal;
  line-height: 1.12rem;
  text-align: left;
}

#album{
 display: inline-block;
 margin: 0 auto;
 width: 400px;
 position: relative;
 top: 230px;
 left: 10%;
}

/* ナビゲーションメニュー */
#navbar {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 999;
  top: 0;
  width: 100%;
  background-color: #141414;
}
	@media screen and (min-width:768px){
		#navbar {
		  	position: fixed;
		}
	}

#nav {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0;
  float: left;
}
#nav li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
}
#nav li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
}
#nav a {
  position: relative;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  box-sizing: border-box;
  color: #ffffff;
}
#nav a:hover {
  border: 0px !important;
}
#nav a:hover .nav-label {
  border-bottom: 3px solid #f9d76d;
}

#nav-opener {
  display: none;
}

#nav-opener-check {
  display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-device-width: 1080px), only screen and (min--moz-device-pixel-ratio: 1.5) and (max-device-width: 1080px), only screen and (-o-min-device-pixel-ratio: 1.5 / 1) and (max-device-width: 1080px), only screen and (min-resolution: 144dpi) and (max-device-width: 1080px), only screen and (min-resolution: 1.5dppx) and (max-device-width: 1080px) {

  /* ナビゲーションバー */
  #navbar {
    position: fixed;
    min-height: 45px;
    font-size: 1.8rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  #nav {
    margin: 0;
    padding: 0;
    width: 86%;
  }
  #nav li {
    margin: 0;
    padding: 0;
    display: block;
  }
  #nav li a {
    padding: 0.8rem 0.6em;
  }
  #nav li a:active {
    background-color: #f9d76d;
  }

  #nav-opener {
    display: block;
    position: relative;
    float: right;
    margin: 0 10px 0 0;
    padding: 10px;
    color: #ffffff;
    line-height: 1;
  }

  #nav-opener-check + ul {
    overflow: hidden;
    transition: all 1s 0.5s;
    opacity: 0;
    max-height: 0;
  }
  #nav-opener-check:checked + ul {
    opacity: 1;
    max-height: 50rem;
  }
}


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

  /* ナビゲーションバー */
  #navbar {
    position: fixed;
    min-height: 45px;
    font-size: 1.8rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  #nav {
    margin: 0;
    padding: 0;
    width: 86%;
  }
  #nav li {
    margin: 0;
    padding: 0;
    display: block;
  }
  #nav li a {
    padding: 0.8rem 0.6em;
  }
  #nav li a:active {
    background-color: #f9d76d;
  }

  #nav-opener {
    display: block;
    position: relative;
    float: right;
    margin: 0 10px 0 0;
    padding: 10px;
    color: #ffffff;
    line-height: 1;
  }

  #nav-opener-check + ul {
    overflow: hidden;
    transition: all 1s 0.5s;
    opacity: 0;
    max-height: 0;
  }
  #nav-opener-check:checked + ul {
    opacity: 1;
    max-height: 50rem;
  }
}

/* 最上部へスクロールするボタン */
#scroll-to-top {
  position: fixed;
  z-index: 99;
  bottom: 10px;
  right: 10px;
  font-size: 5rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  border-radius: 0.4em;
  transition: all 0.3s 0.2s;
}
#scroll-to-top:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* ダミー */
.dummy {
  text-align: center;
  position: relative;
}
.dummy:before {
  content: '';
  display: block;
  width: 100%;
  vertical-align: middle;
  z-index: 0;
  background-color: #efefef;
  background-image: linear-gradient(-45deg, #1ba5a5 25%, #aaaaaa 25%, #aaaaaa 50%, #1ba5a5 50%, #1ba5a5 75%, #aaaaaa 75%, #aaaaaa);
  background-size: 16px 16px;
}
.dummy:after {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}
.dummy * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* 紙ものを格納する要素 */
.paper {
  margin: 0 1rem 1rem 0;
  float: left;
  width: 36%;
  height: auto;
}
.paper img {
  width: 100%;
  min-width: 250px;
  height: auto;
}
.paper.dummy:before {
  padding-top: 141.4%;
}
.paper.dummy:after {
  content: 'Now Printing';
  font-size: 2.4rem;
}

/* 概要 */
#spec {
  display: block;
  font-size: 1.3rem;
  *zoom: 1;
}
#spec:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  font-size: 0;
  clear: both;
}
#spec dt:before {
  content: "";
  width: 30px;
  position: absolute;
  border-top: 1px solid #333;
  top: -5px;
  right: -15px;
}
#spec dt:after {
  content: "";
  width: 5px;
  height: 5px;
  background: #333;
  position: absolute;
  border-radius: 50%;
  top: -7px;
  right: -3px;
}
#spec:before {
  content: "";
  width: 1px;
  position: absolute;
  border-left: 1px solid #333;
  top: 0;
  bottom: 0;
  left: 28%;
}
#spec ul {
  margin: 0;
  padding: 0;
}

/* credit */
#cred {
  display: block;
  font-size: 1.3rem;
  *zoom: 1;
}
#cred:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}
#cred dt{
  text-align: right;
  width: 37%;
  margin-right: 1%;
  margin-left: 10%;
  padding-right: 0;
}
#cred dd{
  text-align: left;
  width: 37%;
  margin-left: 1%;
  margin-right: 10%;
  padding-left: 0;
}
#cred ul {
  margin: 0;
  padding: 0;
}


/* ソーシャルメディア */
#share {
  margin: 0;
  padding: 0;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  text-align: center;
}
#share li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
}
#share li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.btn i {
  margin-right: 0.2rem;
}

.btn.twitter {
  background-color: #55acee;
}
.btn.twitter:hover, .btn.twitter:active {
  background-color: #7abef2;
}

.btn.facebook {
  background-color: #3b5998;
}
.btn.facebook:hover, .btn.facebook:active {
  background-color: #466ab5;
}

.btn.line {
  background-color: #00c300;
  display: none;
}
.btn.line:hover, .btn.line:active {
  background-color: #00ec00;
}

.social-count {
  margin: 0 auto 12px auto;
  padding: 8px 0;
  position: relative;
  width: 95%;
  color: #777777;
  font-size: 1.1em;
  text-align: center;
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 0.3rem;
}
.social-count:after, .social-count:before {
  position: absolute;
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  pointer-events: none;
}
.social-count:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 10px;
  margin-left: -10px;
}
.social-count:before {
  border-color: rgba(175, 175, 175, 0);
  border-top-color: #efefef;
  border-width: 11px;
  margin-left: -11px;
}
.social-count a {
  color: #555555;
  display: block;
  width: 80%;
  margin: auto;
}

#xfd {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  display: block;
}


#tracklist{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  display: block;
  margin-top: 3em;
}

#tracklist h3 {
  display: flex;
  align-items: center;
  text-align: center;
  color: #43caca;
  font-size: 1.8rem;
  font-weight: normal;
  margin-left: 10%;
}
#tracklist h3:after {
  border-top: 1px solid #43caca;
  content: '';
  display: inline;
  /* for IE */
  flex-grow: 1;
}

#tracklist h3:after {
  margin-left: 1em;
  margin-right: 10%;
}

#tracklist h4 {
  text-align: left;
  color: #d5ffff;
  font-size: 1.3rem;
  font-weight: normal;

  margin-top: 1.0em;
  margin-bottom: 3em;
  margin-left: 15%;
  padding: 0;
}



#credit{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  display: block;
  margin-top: 3em;
}

#credit h3 {
  display: flex;
  align-items: center;
  text-align: center;
  color: #43caca;
  font-size: 1.8rem;
  font-weight: normal;
  margin-left: 10%;
}
#credit h3:after {
  border-top: 1px solid #43caca;
  content: '';
  display: inline;
  /* for IE */
  flex-grow: 1;
}

#credit h3:after {
  margin-left: 1em;
  margin-right: 10%;
}

#credit h4 {
  text-align: left;
  color: #d5ffff;
  font-size: 1.3rem;
  font-weight: normal;

  margin-left: 15%;
  padding: 0;
}


/* サンプル一覧 */
#sample-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  display: block;
  *zoom: 1;
}
#sample-list li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
}
#sample-list:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  font-size: 0;
  clear: both;
}
#sample-list li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  overflow: hidden;
  width: 32.7%;
  margin: 0.3%;
  float: left;
  border-radius: 0.5rem;
}
#sample-list li .sample-caption.on {
  bottom: 0;
}

.sample-img {
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.sample-img:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.banner {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 200px;
}
.banner.dummy:after {
  margin-top: -6%;
  top: 50%;
}
.banner.dummy:before {
  padding-top: 20%;
  border-radius: 0.25rem;
}
.banner.dummy:after {
  content: 'no banner';
  font-size: 13px;
}

.sample-caption {
  position: absolute;
  bottom: -70%;
  left: 0;
  z-index: 2;
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  text-align: left;
  transition: all 0.5s 0.2s;
}
.sample-caption p {
  margin: 0;
  padding: 0;
  margin-bottom: 0.2rem;
  z-index: 9;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s 0.2s;
}
.sample-caption img {
  width: 200px;
}

.caption-toggle {
  float: right;
  font-size: 2rem;
  cursor: pointer;
  z-index: 99;
  transition: all 0.5s 0.2s;
}
.caption-toggle:before {
  content: '\f0fe';
}
.on .caption-toggle:before {
  content: '\f146';
}
.caption-toggle + p {
  opacity: 1;
  filter: alpha(opacity=100);
}

.on p {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* ソーシャルメディアアイコン */
.icon-pixiv {
  background: url(parts/icons/pixiv@2x.png);
}

.icon-twitter {
  background: url(parts/icons/twitter@2x.png);
}

.icon-novelist {
  background-image: url(parts/img/icons/novelist@2x.png);
}

.icon-tinami {
  background-image: url(parts/img/icons/tinami@2x.png);
}

.icon-tumblr {
  background-image: url(parts/img/icons/tumblr@2x.png);
}

.icon-facebook {
  background-image: url(parts/img/icons/facebook@2x.png);
}

.icon-piapro {
  background-image: url(parts/img/icons/piapro@2x.png);
}

.icon-soundcloud {
  background-image: url(parts/img/icons/soundcloud@2x.png);
}

.icon-nicovideo {
  background-image: url(parts/img/icons/nicovideo@2x.png);
}

.icon-disabled {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.icon-social {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: text-top;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

/* テキストボックス、テキストエリア */
input[type='text'],
textarea {
  padding: 0.3rem;
  width: 24rem;
  max-width: 95%;
  border: 1px solid #aaaaaa;
  border-radius: 0.3rem;
  outline: none;
}
input[type='text']:focus,
textarea:focus {
  border-color: #1ba5a5;
}

textarea {
  height: 7rem;
}

/* ボタン */
button,
input[type='submit'],
input[type='reset'],
.btn {
  margin: 3px;
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  outline: none;
  border: none;
  border-radius: 0.3em;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  box-shadow: inset 0 -0.2rem rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-out;
  cursor: pointer;
  background-color: #aaaaaa;
}
button:hover, button:active,
input[type='submit']:hover,
input[type='submit']:active,
input[type='reset']:hover,
input[type='reset']:active,
.btn:hover,
.btn:active {
  background-color: #bebebe;
}
button:hover,
input[type='submit']:hover,
input[type='reset']:hover,
.btn:hover {
  text-decoration: none;
}
button:active,
input[type='submit']:active,
input[type='reset']:active,
.btn:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}
button .icon,
input[type='submit'] .icon,
input[type='reset'] .icon,
.btn .icon {
  margin: 0.1rem;
  width: 1rem;
  height: 1rem;
}

button[type='submit'],
input[type='submit'],
.submit {
  background-color: #1ba5a5;
}
button[type='submit']:hover, button[type='submit']:active,
input[type='submit']:hover,
input[type='submit']:active,
.submit:hover,
.submit:active {
  background-color: #21c8c8;
}

/* チェックボックス、ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
}
input[type="checkbox"] + i,
input[type="radio"] + i {
  margin-right: 0.2rem;
  font-size: 1.2rem;
  width: 1.2rem;
  vertical-align: middle;
}

input[type="checkbox"] + i:before {
  content: '\f096';
}
input[type="checkbox"]:checked + i:before {
  content: "\f14a";
}

input[type="radio"] + i:before {
  content: '\f10c';
}
input[type="radio"]:checked + i:before {
  content: "\f192";
}

/* フッター */
#footer {
  margin-bottom: 0;
  background: #5755bd;
  color: #ffffff;
}
#footer > div {
  margin: 0;
  padding: 1rem;
  width: 50%;
  float: left;
}



#credit {
  margin-top: 2rem;
  text-align: center;
  clear: both;
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
  font-size: 0.9rem;
}

@media screen and (min-width: 1200px) {
  #sample-list li {
    width: 24%;
  }

  .wrapper:not(#footer) {
    margin: 0 auto;
    width: 1200px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-device-width: 1080px), only screen and (min--moz-device-pixel-ratio: 1.5) and (max-device-width: 1080px), only screen and (-o-min-device-pixel-ratio: 1.5 / 1) and (max-device-width: 1080px), only screen and (min-resolution: 144dpi) and (max-device-width: 1080px), only screen and (min-resolution: 1.5dppx) and (max-device-width: 1080px) {
  /* ラッパ */
  .wrapper {
    padding: 0.5rem;
  }

  /* ナビゲーションバー */
  #navbar {
    position: fixed;
    min-height: 45px;
    font-size: 1.8rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  #nav {
    margin: 0;
    padding: 0;
    width: 86%;
  }
  #nav li {
    margin: 0;
    padding: 0;
    display: block;
  }
  #nav li a {
    padding: 0.8rem 0.6em;
  }
  #nav li a:active {
    background-color: #f9d76d;
  }

  #nav-opener {
    display: block;
    position: relative;
    float: right;
    margin: 0 10px 0 0;
    padding: 10px;
    color: #ffffff;
    line-height: 1;
  }

  #nav-opener-check + ul {
    overflow: hidden;
    transition: all 1s 0.5s;
    opacity: 0;
    max-height: 0;
  }
  #nav-opener-check:checked + ul {
    opacity: 1;
    max-height: 50rem;
  }

  /* アイキャッチ */
  #eyecatch {
    margin-top: 45px;
    height: 400px;
  }

  #eyecatch h1 {
    padding-top: 2em;
    padding-left: 1em;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.12rem;
    text-align: left;
  }
  
  #album{
    display: inline-block;
    margin: 0 auto;
    width: 200px;
    position: relative;
    top: 230px;
    left: 5%;
   }

  #cred dt{
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  #cred dd{
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2em;
  }


  /* 紙もの */
  .paper {
    margin: 0 auto;
    width: 100%;
    float: none;
  }

  /* LINEボタンはスマホのみ表示 */
  .btn.line {
    display: block;
  }

  /* サンプル一覧 */
  #sample-list li {
    width: 100%;
    margin: 0.2rem 0;
  }

  .sample-img:before {
    padding-top: 45%;
  }

  .icon-social {
    width: 40px;
    height: 40px;
  }

  /* dl要素 */
  dl dt,
  dl dd,
  dl.contact-form dt,
  dl.contact-form dd {
    display: block;
    width: 100%;
  }
  dl dt,
  dl.contact-form dt {
    text-align: left;
  }
  dl dt:before, dl dt:after,
  dl.contact-form dt:before,
  dl.contact-form dt:after {
    display: none;
  }
  dl:before,
  dl.contact-form:before {
    display: none;
  }

  /* フッター */
  #footer > div {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 580px) {
  /* ラッパ */
  .wrapper {
    padding: 0.5rem;
  }

  /* ナビゲーションバー */
  #navbar {
    position: fixed;
    min-height: 45px;
    font-size: 1.8rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  #nav {
    margin: 0;
    padding: 0;
    width: 86%;
  }
  #nav li {
    margin: 0;
    padding: 0;
    display: block;
  }
  #nav li a {
    padding: 0.8rem 0.6em;
  }
  #nav li a:active {
    background-color: #f9d76d;
  }

  #nav-opener {
    display: block;
    position: relative;
    float: right;
    margin: 0 10px 0 0;
    padding: 10px;
    color: #ffffff;
    line-height: 1;
  }

  #nav-opener-check + ul {
    overflow: hidden;
    transition: all 1s 0.5s;
    opacity: 0;
    max-height: 0;
  }
  #nav-opener-check:checked + ul {
    opacity: 1;
    max-height: 50rem;
  }

  /* アイキャッチ */
  #eyecatch {
    margin-top: 45px;
    height: 400px;
  }

  #eyecatch h1 {
    padding-top: 2em;
    padding-left: 1em;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.12rem;
    text-align: left;
  }
  
  #album{
   display: inline-block;
   margin: 0 auto;
   width: 200px;
   position: relative;
   top: 230px;
   left: 5%;
  }

  /* 紙もの */
  .paper {
    margin: 0 auto;
    width: 100%;
    float: none;
  }

  /* LINEボタンはスマホのみ表示 */
  .btn.line {
    display: block;
  }

  /* サンプル一覧 */
  #sample-list li {
    width: 100%;
    margin: 0.2rem 0;
  }

  .sample-img:before {
    padding-top: 45%;
  }

  .icon-social {
    width: 40px;
    height: 40px;
  }

  /* dl要素 */
  dl dt,
  dl dd,
  dl.contact-form dt,
  dl.contact-form dd {
    display: block;
    width: 100%;
  }
  dl dt,
  dl.contact-form dt {
    text-align: left;
  }
  dl dt:before, dl dt:after,
  dl.contact-form dt:before,
  dl.contact-form dt:after {
    display: none;
  }
  dl:before,
  dl.contact-form:before {
    display: none;
  }

  /* フッター */
  #footer > div {
    width: 100%;
    float: none;
  }
}


#wrap {
  position: relative;
  height:100%;
  max-width: 900px;
  min-height: 100vh;
  margin:0 auto;
  color: #fff;
  line-height: 1.7em;
  display:flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
#before-login {
	width:100%;
	height:100%;
  max-width: 500px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(44, 45, 73, 0.9);
  border-top:6px double #1bddff;
  border-bottom:6px double #1bddff;
  border-left:6px solid #1bddff;
  border-right:6px  solid #1bddff;
  padding:40px;
}
#before-login form{
	margin:1em auto;
}

#after-login {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(44, 45, 73, 0.8);
  padding: 20px;
  padding-top: 0px;
}

.after_wrapper {
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 20px 0;
  padding: 10px;
}

.after_wrapper h3{
  display: flex;
  align-items: center;
  text-align: center;
  color: #29cfcf;
  font-size: 2.0rem;
  font-weight: normal;
}
.after_wrapper h3:before, h3:after {
  border-top: 1px solid #29cfcf;
  content: '';
  display: inline;
  /* for IE */
  flex-grow: 1;
}
.after_wrapper h3:before {
  margin-right: 0.5em;
  margin-left: 5%;
}
.after_wrapper h3:after {
  margin-left: 0.5em;
  margin-right: 5%;
}

.after_wrapper h4{
  align-items: center;
  text-align: center;
  color: #afffff;
  font-size: 1.5rem;
  font-weight: normal;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 10%;
}

@media screen and (max-width:768px){
  .after_wrapper h4{
    text-align: left;
  }
}

.bhd_container {
  position: relative;
  width:100%;
  height:calc(100vw * 0.2);
  overflow: hidden; 
}
	@media screen and (max-width:767px){
		.bhd_container {height:calc(100vw * 0.4) !important;}
	}

div#bonus_header{
  width:calc(100%);
  height:calc(100vw * 0.2);
	background:url(../parts/header.png) no-repeat center;
  top:0;
  left:0;
  margin:0 auto;
  position:absolute;
	display:block;
  background-size:contain;
}


  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery-item {
    position: relative;
    aspect-ratio: 1 / 1; /* 正方形 */
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background-image:linear-gradient(20deg, #2a62da, #3cf2ff);;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  }

  .gallery-item-text{
    background-color: #ffffff;
  }


  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* === モーダル === */
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 20px;
  }

  .modal.active {
    display: flex;
  }

  .modal-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    background: #1a2235;
    border-radius: 10px;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .modal-name {
    padding: 0.5em 1.8em;
    font-size: 1.6rem;
    line-height: 1.0;
    color: #ddd;
  }

  .modal-desc {
    padding: 0.5em 1.5em;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ddd;
  }

  .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    background: rgba(0,0,0,0.3);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }

  .close-btn:hover {
    background: rgba(255,255,255,0.2);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
  }
