@charset "UTF-8";
/* ================================================================

	init

================================================================ */
/* ================================
	color
================================ */
/* ================================
    @mixin text-hidden
================================ */
/* ================================
    brakpoint
    @mixin media-query
================================ */
/* ================================================================

	default

================================================================ */
/* ================================
	View
================================ */
body {
  min-height: 100vh;
}

/* ================================
	Typography
================================ */
:root {
  font-size: 56.25%;
  min-height: 0vw;
}
@media screen and (min-width: 481px) {
  :root {
    font-size: calc(0.5625rem + (1vw - 4.8px) * 0.2083);
  }
}
@media screen and (min-width: 961px) {
  :root {
    font-size: 62.5%;
  }
}

body {
  text-rendering: optimizeSpeed; /* tmp */
}

/* ================================
	Battery Note
================================ */
.battery-note {
  position: fixed;
  bottom: 120px;
  left: 5%;
  color: #333;
  font-size: 1.2rem;
  z-index: 1000;
  text-align: center;
  transition: opacity 0.3s ease;
}

.battery-note.is-hidden {
  display: none;
}

/* スマホサイズでの調整 */
@media screen and (max-width: 768px) {
  .battery-note {
    bottom: 38vw;
    font-size: 1.1rem;
  }
}

/* ================================
	Controls Modal
================================ */
.controls-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.controls-modal.is-hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 2001;
}

.modal-content h2 {
  margin: 0 0 20px 0;
  font-size: 2rem;
  text-align: center;
  color: #333;
}

.controls-list {
  margin-bottom: 25px;
}

.control-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.control-action {
  font-weight: bold;
  color: #555;
  min-width: 120px;
}

.control-description {
  color: #333;
}

.modal-close-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #333;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-close-btn:hover {
  opacity: 0.8;
}

/* ================================
	Controls Button
================================ */
.buttons {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.controls-button {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.controls-button:hover {
  background: rgba(0, 0, 0, 0.9);
}

.controls-button--white {
  background: #fff;
  color: #000;
  border: solid 1px rgba(0, 0, 0, 0.8);
}
.controls-button--white:hover {
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 815px) {
  .controls-button {
  }
}
.is-blank::after {
  width: 1.8em;
  height: 1.4em;
  background: url(../images/c-icon-blank-green.svg) no-repeat center center /
    contain;
}
/* ================================
	Responsive Controls
================================ */
.desktop-controls {
  display: block;
}

.mobile-controls {
  display: none;
}

@media screen and (max-width: 768px) {
  .desktop-controls {
    display: none;
  }

  .mobile-controls {
    display: block;
  }
}

.page {
  font-size: 1.6rem;
  font-family:
    "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Arial", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #333;
}

small,
figcaption {
  font-size: 80%;
  line-height: 1.3;
}

/* ================================
	Link
================================ */
a:link {
  text-decoration: none;
}
/* ================================
	Img
================================ */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.full {
  width: 100%;
}

/* ================================
	List
================================ */
ul[class],
ol[class] {
  list-style: none;
}

/* ================================
	Utility
================================ */
/* clerfix -micro clearfix
-------------------------------- */
.cf::after {
  content: "";
  display: block;
  clear: both;
}

/* 画像回り込み
-------------------------------- */
.imgL {
  float: left;
  margin: 0 1em 1em 0;
}

.imgR {
  float: right;
  margin: 0 0 1em 1em;
}

/* 回り込み解除 */
.imgTXT {
  overflow: hidden;
}

/* テキスト行位置
-------------------------------- */
.tC {
  text-align: center;
}

.tR {
  text-align: right;
}

/*	非表示
---------------------- */
@media (min-width: 768px) {
  .is-spOnly {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .is-pcOnly {
    display: none !important;
  }
}
/* 非表示 チェック用 */
.hide {
  display: none !important;
}

/*	type serif
---------------------- */
.serif {
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN",
    "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* ================================
	Utility
	margin,padding,funt-size調整用
	※長期運用時は
	あると便利？
	テスト的に採用

	memo:
	レスポンシブの場合、
	かえって邪魔かも
================================ */
/*	margin
---------------------- */
.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

/*	padding
---------------------- */
.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

/*	font-size
---------------------- */
.fs-s {
  font-size: 80%;
}

.fs-l {
  font-size: 120%;
}

.fs-xl {
  font-size: 140%;
}

.fs-10 {
  font-size: 10px;
  font-size: 1rem;
}

.fs-11 {
  font-size: 11px;
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 12px;
  font-size: 1.2rem;
} /*# sourceMappingURL=default.css.map */

/* ================================
	external
================================ */
.external {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.external::after {
  content: "";
  display: inline-block;
  color: #333;
  background: #333;
  block-size: 15px;
  aspect-ratio: 18/15;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='15' fill='none'%3E%3Cpath fill='%23000' d='M3.57 0v10.83h14.427V0H3.57Zm12.94 9.537H5.058v-7.13H16.51v7.13Z'/%3E%3Cpath fill='%23000' d='M1.488 12.912V4.798h.928V3.563H0v10.834h14.412v-2.435h-1.225v.952l-11.7-.002Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='15' fill='none'%3E%3Cpath fill='%23000' d='M3.57 0v10.83h14.427V0H3.57Zm12.94 9.537H5.058v-7.13H16.51v7.13Z'/%3E%3Cpath fill='%23000' d='M1.488 12.912V4.798h.928V3.563H0v10.834h14.412v-2.435h-1.225v.952l-11.7-.002Z'/%3E%3C/svg%3E");
}
