@charset "UTF-8";
/* ==========================================================================
 *Foundation
 *========================================================================== */
/* Reset
 *----------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain) */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*  :root CSSの変数定義*/
:root {
  /* --------------------
     Color Palette color-色の管理
  -------------------- */
  --corporate-color: #e50012;
  --color-white: #fff;
  --color-bg: #fff5f5;
  --color-text: #333;
  --color-badge: #ff0000;
  --color-border: #e5eaf0;
  --color-table-border: #bbb;

  /* --------------------
     Typography font-フォントの管理
  -------------------- */
  --size-menu: 10px;
  --size-small12: clamp(11px, 2.79vw, 12px);
  --size-small13: clamp(11.5px, 3.02vw, 13px);
  --size-small14: clamp(12.5px, 3.45vw, 14.5px);
  --size-body: clamp(13.5px, 3.57vw, 16px);
  --size-label: clamp(14.5px, 3.72vw, 17px);
  --size-title: clamp(15px, 4.19vw, 18px);
  --size-big-title :clamp(16px, 4.65vw, 20px);

  /* --------------------
     Borders & Effects ボーダー・影・角丸など
  -------------------- */
  --border-radius-default: 8px;

}

/* Base
 *	----------------------------------------------------------------- */
* {
  -webkit-touch-callout: none;
}
html {
  background: var(--color-bg);
  height: 100%;
  overscroll-behavior: none;
}

body {
  color: var(--color-text);
  font-family: "メイリオ","Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN,  sans-serif;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.03em;
  line-height: 1.5;
  overflow-x: hidden;
  height: 100%;
  background: var(--color-bg);
  font-size: var(--size-body);
  overscroll-behavior: none;
}

a {
  opacity: 1;
  text-decoration: none;
  outline: none;
  color: var(--color-text);
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 834px) {
  a:hover {
    opacity: 0.7;
    text-decoration: none;
    -webkit-transition: none;
    transition: none;
  }
}

img {
  vertical-align: bottom;
  -webkit-user-drag: none;
  user-drag: none;
}

svg {
  -webkit-user-drag: none;
  user-drag: none;
}

/* ==========================================================================
 *	Layout
 *========================================================================== */
/* Header ============== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  -webkit-transition: background 0.4s, border-color 0.4s;
  transition: background 0.4s, border-color 0.4s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.l-header__inner {
  max-width: 1024px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.l-header__title {
  height: 50px;
  line-height: 50px;
  font-size: var(--size-big-title);
  font-weight: bold;
  background-color: var(--color-white);
  text-align: center;
}
.l-header__list li {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.l-header__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
}

.l-header__menu,
.l-header__link,
.l-header__close,
.l-header__notice {
  top: 50%;
  position: absolute;
  margin-top: -20px;
  z-index: 2;
}

.l-header__menu {
  right: 8px;
}

.l-header__notice {
  top:25.5px;
  right: 55px;
}

.l-header__link {
  left: 8px;
}
.l-header__menu_font {
  font-size: var(--size-menu);
  display: block;
}

.l-header__close {
  right: 15px;
}
.badge {
  position: absolute;
  top: -2px;
  right: -8px;
  background-color: var(--color-badge);
  color: var(--color-white);
  border-radius: 50%;
  min-width: 10px;
  height: 10px;
  padding: 3px 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.05em;
}

.page_back {
  position: absolute;
  left: 15px;
  margin-bottom: 5px;
}

/* footer ============== */
.simulation-menu {
  position: relative;
  margin-top: -30px;
}

.elephant-circle {
  width: 60px;
  height: 60px;
  background-color: #ffcccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border: 4px solid var(--color-white);
  position: relative;
  z-index: 10;
}

.elephant-circle img {
  width: 45px;
  height: 50px;
}

/* Tabbar ============== */
.l-tabbar {
  position: fixed;
  bottom: env(safe-area-inset-bottom, 0);
  left: 0;
  width: 100%;
  height: 72px;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-white);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1000;
}

.l-tabbar__list {
  max-width: 1024px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--size-menu);
}

.l-tabbar__list li {
  padding-top: 8px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.l-tabbar__list li:last-child {
  padding-top: 0px;
}

.l-tabbar-txt {
  display: block;
}


/* Sidebar ============== */
.l-sidebar {
  position: fixed;
  left: -200%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.2s, left 0s 0.2s;
  transition: background-color 0.2s, left 0s 0.2s;
  cursor: pointer;
  z-index: 200;
}
.is-openSidebar .l-sidebar {
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: background-color 0.4s, left 0s 0s;
  transition: background-color 0.4s, left 0s 0s;
}

.l-sidebar__inner {
  position: absolute;
  top: 0;
  right: -275px;
  overflow: hidden;
  overflow-y: scroll;
  background: var(--color-white);
  width: 100%;
  height: 100%;
  padding: 23px 15px 72px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
  cursor: default;
}
.is-openSidebar .l-sidebar__inner {
  right: 0;
  -webkit-transition: right 0.4s 0s;
  transition: right 0.4s 0s;
}
@media screen and (min-width: 834px) {
  .l-sidebar__inner {
    max-width: 380px;
    padding: 40px 30px;
  }
}

.l-sidebar__logo {
  font-size: var(--size-title);
  color: var(--color-text);
  text-align: center;
  justify-content: center;
  width: 100%;
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
  -webkit-transition: transform 0.4s 0s, opacity 0.4s 0s;
  transition: transform 0.4s 0s, opacity 0.4s 0s;
}
.is-openSidebar .l-sidebar__logo {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: transform 0.4s 0.2s, opacity 0.4s 0.2s;
  transition: transform 0.4s 0.2s, opacity 0.4s 0.2s;
}
.l-sidebar_back {
  width: 30px;
  height: 30px;
}
.l-sidebar_flex {
  display: flex;
}
.close_sidebar {
  margin-top: 5px;
}
.l-sidebar_img {
  transform: scaleX(-1);
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
}
.l-sidebar .l-sidebar_img .ele {
  opacity: 0;
  width: 80px;
  height: auto;
  transform: translateX(-100%);
  transition: transform 1s ease, opacity 2.0s ease;
}
.is-openSidebar .l-sidebar_img .ele {
  opacity: 1;
  transform: translateX(0);
}
.is-openSidebar .l-sidebar__name {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: transform 0.4s 0.25s, opacity 0.4s 0.25s;
  transition: transform 0.4s 0.25s, opacity 0.4s 0.25s;
}

.l-sidebar__list {
  margin-top: 17px;
  padding-top: 5px;
  font-size: var(--size-label);
}
.l-sidebar__list + .l-sidebar__list {
  margin-top: 29px;
}
.l-sidebar__list li {
  opacity: 0;
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
  -webkit-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  margin-bottom: 10px;
  margin-top: -12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  background-color: rgba(255,255,255,0.5);
}
.is-openSidebar .l-sidebar__list li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.l-sidebar__list li + li {
  padding-bottom: 12px;
}

/* 設定アコーディオン閉じているとき */
.collapsible-inactive::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  right: 10px;
  top: 75%;
  margin-top: -17px;
  background: url(/icon/ic-gray-arrowdown.svg) /*Vの画像*/
    no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
/* 設定アコーディオン開いているとき */
.collapsible-active::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  right: 10px;
  top: 75%;
  margin-top: -17px;
  background: url(/icon/ic-gray-arrowup.svg) /*∧の画像*/
    no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

 .collapsible-body-menu {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  border-top: 1px solid var(--color-border);
  background: transparent;
 }
.collapsible-body-menu li + li {
  padding-bottom: 5px;
}
.collapsible-header-menu {
  border: none !important;
}
.collapsible-body-menu li:nth-child(1) {
  background: transparent;
}
.collapsible-body{
  display: none;
}

.collapsible-body-menu li {
  opacity: 0;
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
}

.collapsible-body-menu.sub-active {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 12px;
}

.collapsible-body li,
.collapsible-body-menu li,
.collapsible-body-plan li {
  margin-left: 35px;
  border: none;
}

.collapsible-header,
.collapsible-header-menu,
.collapsible-body-plan {
  cursor: pointer;
}
.l-sidebar__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 27px;
}
.l-sidebar__list a span {
  width: 25px;
  margin-right: 15px;
  display: block;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.l-sidebar__list li:nth-child(1),
.sub-active li:nth-child(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(1),
.is-openSidebar .sub-active li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.l-sidebar__list li:nth-child(2) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(2),
.is-openSidebar .sub-active li:nth-child(2)  {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.l-sidebar__list li:nth-child(3) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(3),
.is-openSidebar .sub-active li:nth-child(3)  {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.l-sidebar__list li:nth-child(4) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(4),
.is-openSidebar .sub-active li:nth-child(4)  {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.l-sidebar__list li:nth-child(5) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(5),
.is-openSidebar .sub-active li:nth-child(5)  {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.l-sidebar__list li:nth-child(6) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(6),
.is-openSidebar .sub-active li:nth-child(6)  {
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s;
  border-bottom: 1px solid var(--color-border);
}

.collapsible li:nth-child(6) {
  border-bottom: none !important;
}

.l-sidebar__close {
  position: absolute;
  top: 30px;
  right: 30px;
}

/* ===============================
  ページ全体の調整
================================ */
.l-contents {
  padding: 0 0 80px;
  box-sizing: border-box;
  /* min-height: 100vh; */
  background: var(--color-bg);
}
.l-header + .l-contents {
  padding: 47px 0 70px;
}

.mlz-input_field {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.center-small-text {
  text-align: center;
  font-size: var(--size-small13);
}

/* ===============================
      生体認証画面
================================ */
.biometric-label {
  font-size: var(--size-label);
}

/* ===============================
    生体認証トグルスイッチ（修正版）
=============================== */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  cursor: pointer;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 50px;
  height: 31px;
  background-color: #ddd;
  border: 2px solid var(--color-border);
  border-radius: 15px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
}
/* スイッチオンの時の背景色 */
.switch label input[type=checkbox]:checked + .lever {
  background-color: var(--corporate-color);
  border-color: var(--corporate-color);
  -webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
  transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
}
/* スイッチの丸い部分 */
.switch label .lever:before,
.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
  left: -8px;
  top: -3px;
  -webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
  transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
  cursor: pointer;
}
.switch label .lever:after {
  background-color: var(--color-white);
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
/* スイッチオンにした時の丸い部分 */
 .switch label input[type=checkbox]:checked + .lever:before,
 .switch label input[type=checkbox]:checked + .lever:after {
  background-color: var(--color-white);
  border: 1px solid var(--corporate-color);
  left: 20px;
}
/* スイッチが非活性の時（生体認証） */
.switch label input[type=checkbox][disabled] + .lever {
  background-color: #bdbdbd;
  cursor: default;
}
.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  background-color: #ddd;
  cursor: default;
}

.s-switch {
  max-width: 430px;
  margin: 0 auto;
  width: 100%;
}
.toggle-area {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-default);
  line-height: 1;
  margin: 30px 0;
  padding: 0 15px;
}
.s-switch form:nth-child(2) {
  margin-top: 60px;
}
#biometricSettingForm .toggle-area {
  margin-bottom: 0;
}


/* ===============================
  モーダル全体
================================ */
.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center; /* ← モーダル本体を中央に */
  align-items: center;
}

.modal-content {
  background-color: var(--color-white);
  border-radius: var(--border-radius-default);
  width: 90%;
  max-width: 380px;
  overflow: hidden;
  position: absolute;
  flex-direction: column;
  margin: 30px auto;
  z-index: 1000;
  position: relative;
}

.homeBackdrop {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  pointer-events: all;
  /* モバイルで<canvas>がmodalより前面に来てしまうのを防ぐために追加 */
  will-change: transform;
  transform: translateZ(0);
}

.nrk-status-modal-box {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  width: 85%;
  background-color: #fff;
  border-radius: var(--border-radius-default);
  text-align: center;
}

.nrk-status-modal-box .modal-box {
  width: 95%;
}

.h-nrk-modal-text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--color-white);
  background-color:var(--color-white);
  width: 100%;
  padding-top: 20px;
  padding-bottom: 0px;
}
.h-nrk-modal-text .modal-title {
  font-size: inherit;
}

.modal-terms-close {
  position: absolute;
  right: 10px;
  font-size: 25px;
  cursor: pointer;
  z-index: 2;
}
.modal-terms-close:hover {
  font-weight: bold;
  color: var(--color-text);
}
.modal-terms-body{
  height: 85vh;
  height: 85dvh;
  overflow-y: auto;
}

.slide-content {
  height: 300px;
  margin: 0 auto;
  position: relative;

}
.slide-content img {
  display: block;
  margin: 20px auto;
}
.slide-img-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
}
.slide-img-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px !important;
}
.slide-img-3 {
  width: 60% !important;
}
.slide-img-4 {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 220px;
}

.modal-header,
.modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5px 10px;
  background-color: var(--color-white);
}
.modal-header {
  position: relative;
}

.modal-footer {
  padding: 25px 10px;
}

.modal.open {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.modal-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.logout-modal-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 100vh;
  margin: 0 auto;
}

.nrk-modal-text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--color-white);
  border-radius: var(--border-radius-default);
  background-color:var(--color-white);
  width: 100%;
  padding: 20px;
  padding-bottom: 0px;
}

.logout-modal-text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--color-white);
  background-color:var(--color-white);
  border-radius: var(--border-radius-default);
  width: 100%;
  padding: 20px;
  padding-bottom: 0px;
}

.modal-title {
  font-weight: bold;
  font-size: var(--size-title);
  text-align: center;
}

#login-help-modal {
  display: none;
}
#login-help-modal.open {
  display: block;
}

.nrk-help {
  margin-top: 3px;
  padding: 4px 6px;
}

/* ！・？モーダル */
.pass-title {
  background: #ffe384;
  font-size: var(--size-big-title);
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}
.question-title {
  background: #b1b1b1;
  font-size: var(--size-big-title);
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}

.open-home-help-modal {
  cursor: pointer;
}

.pw-help {
  padding-bottom: 3px;
  padding-left: 5px;
}

.point {
  font-size: var(--size-menu);
  vertical-align: top;
}

  /* 更新処理成功時（仮） */
  .flash-success {
    background-color: #e6ffed;
    margin: auto;
    border: 2px solid #a3d9a5;
    color: #22543d;
    text-align: center;
    padding: 12px;
    width: 50%;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* ===============================
  チュートリアルモーダルフッターナビゲーション（戻る・次へ・閉じる）
================================ */
.modal-footer-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 20px;
}
.modal-footer-nav .next-btn,
.modal-footer-nav .back-btn,
.modal-footer-nav .last-btn {
  width: 100%;
}
.modal-footer-nav .next-btn a,
.modal-footer-nav .back-btn a,
.modal-footer-nav .last-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5px;
  font-weight: bold;
  border-radius: var(--border-radius-default);
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  color: var(--color-white);
}

/* 個別ボタンカラー */
.modal-footer-nav .next-btn a,
.modal-footer-nav .last-btn a {
  background-color: var(--corporate-color);
}
.modal-footer-nav .back-btn a {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

/* Swiper の disabled 状態の上書き */
.modal-footer-nav .next-btn.swiper-button-disabled,
.modal-footer-nav .back-btn.swiper-button-disabled,
.modal-footer-nav .last-btn.swiper-button-disabled {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* アイコンの調整 */
.modal-footer-nav .next-btn a img,
.modal-footer-nav .back-btn a img {
  width: auto;
  height: auto;
  margin-left: 5px;
}

/* 「はじめる」ボタンは初期非表示 */
.last-btn {
  display: none;
}
.back-btn {
  display: none;
}

  /* モーダルヘッダー内デザイン */
.login__tutorial-modal-inner-head {
  display: flex;
  line-height: 1.8rem;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: var(--size-big-title);
  font-weight: bold;
}
.login__tutorial-modal-text {
  text-align: center;
  padding: 0 20px;
}

.login__tutorial-modal-page {
  position: absolute;
  left: 10px;
  top: 10px;
  letter-spacing: 0.2em; /* 文字間隔 */
}

.zoomed {
  background-color: var(--color-white);
  transform: scale(1.5); /* 拡大率 */
  cursor: zoom-out;
  z-index: 100;
}

/* Swiper関連のスタイル調整 */
.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  width: auto;
  height: auto;
  margin: 0;
  color: inherit;
  background: none;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
  display: none !important;
}


/* ==========================================================================
 *	Object
 *========================================================================== */
/* Component
 *----------------------------------------------------------------- */
/* Contents header */
.c-contents__head {
  min-height: 50px;
  color: var(--color-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--size-big-title);
  margin: auto;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.c-login__title {
  max-width: 90%;
  margin: 0 auto;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--size-big-title);
  font-weight: bold;
}
.c-contents__title {
  max-width: 90%;
  margin: 0 auto;
  min-height: 60px;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--size-title);
  font-weight: bold;
  border-bottom: 2px solid var(--color-border); /* 線の太さ・色・スタイルを指定 */
  padding: 10px;
}

/* Section */
.c-section {
  background: var(--color-bg);
  padding: 0;
  max-width: 1024px;
  margin: 0 auto;
  padding: 15px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-section.c-section_top {
    margin-top: 47px;
}

#unyoChart {
    max-width: 100%;
    height: 240px; /* ← お好みの高さに調整 */
}

.tabbox {
  position: absolute;
  left: 0;
  width: 100%;
}
/* タブナビゲーション（スライド） */
.tab-navigation {
  height: 60px;
  display: flex;
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  position: relative;
  z-index: 60;
}
#slideContainer {
  touch-action: pan-y;
  overscroll-behavior: contain;
  position: relative;
}

.tab-item {
  flex: 1;
  padding: 8px 15px;
  text-align: center;
  font-size: var(--size-body);
  color: #999;
  background: transparent;
  border: none;
  border-left: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tab-item.active {
  background: var(--corporate-color);
  color: var(--color-white);
  font-weight: bold;
}

.content-area {
  /* height: calc(100% - 49px); */
  overflow: hidden;
  margin-top: 70px;
  position: relative;
  transition: height 0.3s ease;
}
/* スライドコンテナ */
.slide-container {
  display: flex;
  width: 400%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 商品変更スライドコンテナ */
.henkouslide-container {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 各スライド */
.slide {
  width: 25%;
  height: auto;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 10px;
  margin-bottom: 30px;
}

.s-section {
  padding: 25px 0 0;
}
.henkouslide {
  width: 50%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

/* 汎用赤枠 */
.content-frame {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--border-radius-default);
  border: var(--corporate-color) 1px solid;
  padding: 18px 10px;
  margin: 0 auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.content-frame__go {
  display: flex;
  align-items: center;
  position:absolute;
  right:-3px;
}

.vertical-center {
  display: flex;
  align-items: center;
  position: relative;
}

/* 汎用カスタムセレクトボックス */
.custom-select-wrapper {
  position: relative;
}

.custom-select {
  position: relative;
  user-select: none;
  background-color: var(--color-white);
  border-radius: var(--border-radius-default);
  border: 1px solid var(--color-text);
  padding: 5px 15px;
  margin: 0 auto;
  max-width: 90%;
}

.custom-select__trigger {
  background: var(--color-white);
  padding: 10px;
  cursor: pointer;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  display: none;
  z-index: 9999;
  border-radius: var(--border-radius-default);
  border: 1px solid var(--color-text);
  padding: 5px 15px;
}
.custom-select::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  right: 10px;
  top: 60%;;
  margin-top: -17px;
  background: url(/icon/ic-gray-arrowdown.svg)
      no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
.custom-select.open::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  right: 10px;
  top: 60%;;
  margin-top: -17px;
  background: url(/icon/ic-gray-arrowup.svg)
      no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.custom-option {
  position: relative;
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 9999;
}

.custom-select.open .custom-options {
  display: block;
}

.custom-select__go {
  position: absolute;
  right: 10px;
  top: 15px;
  transform: rotate(90deg);
}

.new_icon {
  position: absolute;
  right: 22px;
  top: 0;
  height: 20px;
}

  /* ===============================
　　　　    　関連リンク
  ================================ */
.nissay-link {
  margin: 10px auto;
}
.nissay-link-img {
  margin-right: 5px;
  width: 30px;
  height: auto;
  position: absolute;
}
.nissay-link-img-n {
  width: 30px;
  margin: 5px;
  height: auto;
  position: absolute;
  left: -5px;
}
.nissay-link h1 {
  color: var(--corporate-color);
  font-weight: bold;
}
.nissay-link-text {
  width: 90%;
  padding: 10px;
  padding-left: 40px;
  margin: 0 auto;
}

  /* ===============================
　　　　　ホーム画面HOME画面
  ================================ */
/* ページ全体の背景色をグレーにする */
/* .page-status {
  background-color: #a3a0a0;
} */
.home-section {
  background: var(--color-bg);
  padding: 0;
  max-width: 1024px;
  margin: 0 auto;
  padding: 65px 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.home-area {
  padding: 0 10px;
}
.home-plan-name {
  text-align: left;
  font-size: var(--size-title);
  font-weight: bold;
  padding-left: 5px;
}

.w-80 {
  width: 80%;
}

/* ホームのお知らせ */
.home-news-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-default);
  border: var(--corporate-color) 1px solid;
  padding: 10px 10px;
  margin: 0 auto;
  margin-top: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  position: relative;
  z-index: 1;
}

/* タイトル */
.home-news-card__title {
  text-align: left;
}

.home-news-card__lion {
  position: absolute;
  top: 60px;
  right: 15px;
  text-align: center;
  width: 70px;
  height: auto;
  z-index: 0;
}

  /* 矢印 */
.home-news-card__go {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
}
.home__margin {
  margin-bottom: 10px
}

.home-section-title {
  font-size: var(--size-title);
  font-weight: bold;
}

.home-day-time {
  font-size: var(--size-small12);
  color: #777;
  margin-left: auto;
}

canvas {
  z-index: 1;
}

/* タブの中身　共有 */
.category-legend {
  flex: 1 1 190px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-legend li {
  display: flex;
  align-items: center;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between; /* カテゴリ名と割合を左右に配置 */
  gap: 8px;
  font-size: var(--size-small13);
  min-width: 165px;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 4px;
}

.category-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 8px;
}

.legend-ratio .number {
  font-weight: bold;
}

.legend-ratio .percent {
  color: #000; /* ％だけ黒 */
  margin-left: 1px;
}

.right-text {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.dummy-image-wrapper img{
  width: 100%;
}

/* 資産状況（修正版）スライド１ */
.summary-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  flex-direction: column;
}

.home-chart-card__content {
  position: relative; /* ← 中の絶対配置要素の基準にする */
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius-default);
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.summary-wrapper .home-chart-card__content {
  flex: 1 1 calc(25% - 12px); /* 4列表示（間にgap） */
  min-width: 150px;
}

.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}


/* 中のラベルや値はそのまま利用可 */
.summary-label {
  width: 100%;
  display: flex;
  align-items: center;
}

.summary-value {
  font-size: var(--size-big-title);
  margin-left: auto;
}

.summary-value .unit {
  margin-left: 4px;
  color: #555;
}

.sisan-help {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 資産内訳 */
.asset-breakdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.chart-wrapper {
  flex: 1 1 175px;
  display: flex;
  justify-content: center;
}

  /* 新規CSS */
#assetBreakdownChartSlide1 {
  width: 100% !important;
  height: 100% !important;
}

#assetBreakdownChartSlide2 {
  width: 100% !important;
  height: 100% !important;
}

#contributionBreakdownChartSlide2 {
  width: 100% !important;
  height: 100% !important;
}

#contributionPieChart {
  width: 100% !important;
  height: 200px !important;
  display: block;
}
/* 資産状況（修正版）スライド１ここまで   */

/* 掛金 スライド２ */
.instalment {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius-default);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid var(--corporate-color);
  width: 100%;
}
.instalment th {
  border-bottom: 1px solid var(--color-table-border);
  padding-left: 30px;
  text-align: left;
}
.instalment td {
  border-bottom: 1px solid var(--color-table-border);
  padding: 10px;
  text-align: right;
}
.instalment tr:first-child {
  background-color: var(--color-bg);
  font-size: var(--size-title);
}
.instalment tr:first-child th {
  padding: auto;
  padding: 10px;
}
.instalment tr:last-child th,
.instalment tr:last-child td {
  border-bottom: none;
}
.instalment .spacer td {
  padding: 5px;
}
.instalment img {
  padding-left: 10px;
}

.next-contribution {
  width: 95%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  font-weight: bold;
  font-size: var(--size-label);
}

.legend-entry {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.legend-text {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.product-header {
  display: flex;
  justify-content: space-between;
  font-size: var(--size-small12);
}

.product-row {
  display: flex;
  align-items: center;
  margin-right: auto;
  font-size: var(--size-small13);
  width: 75%;
  word-wrap: break-word;
}

.categoryratio {
  display: flex;
  text-align: right;
  align-items: center;
}

.category-title {
  margin: 10px 0 5px;
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
}
.line {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--color-table-border);
  left: 80%;
}

.syouhin-vertical-line {
  display: inline-block;
  width: 8px;
  margin-right: 8px;
  background-color: red;
}

.asset-trends {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius-default);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid var(--color-table-border);
  width: 100%;
  margin: 0 auto;
  font-size: var(--size-small12);
}
.asset-trends th {
  border-bottom: 1px solid var(--color-table-border);
  padding: 5px 0;
}
.asset-trends td {
  border-bottom: 1px solid var(--color-table-border);
  padding: 8px;
  text-align: right;
}

.asset-trends thead th {
  background-color: var(--color-bg);
  font-size: 11px;
  padding: 8px 0;
}
.asset-trends tr:last-child th,
.asset-trends tr:last-child td {
  border-bottom: none;
}

.instalment-indent {
  padding-left: 1em;
  text-indent: -1em;
}

  /* ここまで */

/* 商品別評価損益 :スライド３*/

.evaluation-profit-wrapper {
  display: flex;
  flex-direction: column;
  /* margin-top: 10px; */
  max-width: 100%;
}

.evaluation-category-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.evaluation-category-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-weight: bold;
}

/* 商品カード */

.evaluation-item {
  box-sizing: border-box;
  margin-bottom: 10px;
  border-radius: var(--border-radius-default);
  padding: 5px;
}

/* 商品名表示部分 */

.product-name-row {
  border-radius: var(--border-radius-default);
  display: flex;
  align-items: center;
  padding: 0 0 5px 5px;
  gap: 5px;
  font-size: var(--size-small13);
}


/* 評価項目レイアウト */

.evaluation-item__body {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.evaluation-row {
  flex: 3;
  padding-right: 10px;
  border-right: solid 1px var(--color-table-border);
}

.evaluation-item .evaluation-row:last-child {
  flex: 2;
  border: none;
  padding-right: 5px;
}

.evaluation-value {
  font-weight: bold;
  text-align: right;
}

/* 過去資産推移：スライド４ */
.asset-chart-legend {
  margin-top: 8px;
  display:flex;
  justify-content: space-evenly;
}
.asset-chart-legend span {
  font-size: var(--size-small13);
}

.past-bar-chart{
  display:inline-block;
  width:20px;
  height:14px;
  vertical-align:middle;
  margin-right:4px;
}

/* 利益/損失の色 */

.profit-plus {
    color: #007bff; /* 青 */
    font-weight: bold;
    letter-spacing: 1px;
}

.profit-minus {
    color: #e74c3c; /* 赤 */
    font-weight: bold;
    letter-spacing: 1px;
}

/* ここまで */

  /* ===============================
　　　　    　商品一覧
  ================================ */
.p-find__item {
  background: var(--color-white);
  border-radius: var(--border-radius-default);
  padding: 10px 10px 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.p-find__item__margin {
  margin-bottom: 10px;
}
.p-find__item .balance:last-of-type .c-form__margin {
  margin-bottom: 0;
}

.p-find__item-type {
  margin-left: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.balance .custom-select {
  border-color: rgb(97, 49, 255);
}

.s-mailcheck {
  padding: 10px;
  border-top: 1px solid var(--color-table-border);
}
.syouhinlist {
  position: relative;
  user-select: none;
  background-color: var(--color-white);
  border-radius: var(--border-radius-default);
  border: 1px solid;
  margin: 0 auto;
  max-width: 98%;
  font-size: var(--size-small14);
  min-height: 60px;
}
.cursor {
  cursor: pointer;
}
.toggle-target {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.toggle-target.open {
  max-height: 1000px;
}

.syouhin_open {
  cursor: pointer;
}

.toggle-target.open table tr:first-child {
  border-top: 1px solid;
}

.syouhinlist_item {
  width: 85%;
  padding: 10px;
  padding-top: 20px;
}
.syouhinlist_item.padding-small {
  padding: 10px;
}
.syouhinlist table{
  width: 100%;
  border-collapse: collapse;
}

.syouhinmei {
  min-height: 60px;
  display: flex;
  align-items: center;
  width: 100%;
}

.syouhinmei img {
  padding: 10px;
}

.syouhinlist_kbn {
  display: flex;
  position: absolute;
  top: 0;
}
.hoyusyouhin {
  border: 2px solid var(--corporate-color);
  color: var(--corporate-color);
  background-color: var(--color-white);
  font-weight: bold;
  font-size: 0.8em;
  text-align: center;
  padding: 0 5px;
  margin-left: 10px;
}
.s-active {
  border: 2px solid var(--color-text);
  background-color: #fff1b8;
  min-width: 70px;
  font-weight: bold;
  font-size: 0.8em;
  text-align: center;
  padding: 0 3px;
  margin-left: 10px;
}
.s-index {
  border: 2px solid var(--color-text);
  background-color: #d4f0ff;
  min-width: 70px;
  font-weight: bold;
  font-size: 0.8em;
  text-align: center;
  padding: 0 3px;
  margin-left: 10px;
}
.category-style table th {
  border-bottom: 1px solid var(--color-table-border);
  padding: 5px;
  vertical-align: middle;
  text-align: left;
  overflow: hidden;
}

.category-style table td {
  border-bottom: 1px solid  var(--color-table-border);
  padding: 5px 8px;
  text-align: right;
}
.category-style table tr:last-child th,
.category-style table tr:last-child td {
  border-bottom: none;
}

.asset-management-company {
  text-align: left;
}
.headLine01 {
  max-width: 55px;
  text-align: center;
  width: 30%;
}
.subHead01 {
	padding-left: 5px;
	white-space: nowrap;
}
.minus {
  color: var(--corporate-color);
  font-weight: bold;
}
.plus {
  color:#007bff;
  font-weight: bold;
}

.c-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-check {
  margin-top: 10px;
  margin-left: 5px;
}

/* Button */
.c-button {
  background: var(--corporate-color);
  width: 100%;
  border-radius: var(--border-radius-default);
  padding: 8px 10px;
  color: var(--color-white);
  text-align: center;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  cursor: pointer;
  position : relative;
}

/* <button> タグでも <a> と同じスタイルにする */
button.c-button {
  all: unset;
  background: var(--corporate-color);
  height: 45px;
  line-height: 45px;
  border-radius: var(--border-radius-default);
  padding: 0 20px;
  color: var(--color-white);
  text-align: center;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

button.c-button:hover {
    opacity: 0.9;
}

button.c-button:focus,
button.c-button:active {
    outline: none;
    box-shadow: none;
    background: var(--corporate-color);
}

button.c-button.is-disable {
    opacity: 0.5;
    pointer-events: none;
}

.c-button.c-button-cancel {
  width: 45%;
  background-color: var(--color-white);
  color: var(--corporate-color);
  border: 1px solid var(--corporate-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-button.c-button-confirm {
  width: 45%;
  cursor: pointer;
}
.c-button-register {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin: 20px 0;
}

/* button非活性 */
button:disabled {
    pointer-events: none;
}

/* aタグ非活性化 */
.disabled {
  pointer-events: none;   /* クリック無効 */
}

@-webkit-keyframes buttonAnime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.5);
    transform: scale(1.2, 1.5);
    opacity: 0;
  }
}
@keyframes buttonAnime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.5);
    transform: scale(1.2, 1.5);
    opacity: 0;
  }
}

/* Tab */
.c-tab {
  position: relative;
}

.c-tab__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #cccccc;
}

.c-tab__navi li {
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 207px;
  width: 50%;
}
.c-tab__navi li:first-child {
  margin-left: 0;
}
.c-tab__navi li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding-bottom: 15px;
  font-size: var(--size-small14);
  color: #a5a5a5;
  border-bottom: 3px solid transparent;
}

.c-tab__content {
  display: none;
}
.c-tab__content.is-active {
  display: block;
  -webkit-animation: fade-in 0.4s ease 0s 1 normal;
  animation: fade-in 0.4s ease 0s 1 normal;
}

/* Modal */
body.is-noscroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.c-modal {
  position: fixed;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  opacity: 0;
  -webkit-transition: left 0s 0.4s, opacity 0.2s 0.2s;
  transition: left 0s 0.4s, opacity 0.2s 0.2s;
  cursor: pointer;
}
.c-modal.is-active {
  left: 0;
  opacity: 1;
  -webkit-transition: left 0s, opacity 0.2s;
  transition: left 0s, opacity 0.2s;
}

.c-modal__title {
  font-size: var(--size-title);
  line-height: 1;
  text-align: center;
}

.c-modal__close {
  position: absolute;
  top: 17px;
  right: 17px;
}
.c-modal__close a {
  display: inline-block;
  text-indent: -10000px;
  outline: none;
  width: 17px;
  height: 17px;
  background: url(/img/icn-header_close.svg)
    no-repeat center center;
  background-size: contain;
}

/* Form */
input {
  -webkit-appearance: none;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
input::-webkit-search-cancel-button {
  display: none;
}

select::-ms-expand {
  display: none;
}

.c-alert--error {
  color: var(--color-badge);
  text-align: left;
}
.c-alert p {
  margin: 5px 0;
}

.c-alert p:last-child {
  margin-bottom: 0;
}

.elephant-circle-login {
  width: 105px;
  height: 105px;
  background-color: #ffc0c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border: 4px solid var(--color-white);
  position: relative;
  z-index: 10;
}
.elephant-circle-login img {
  width: 88px;
  height: 88px;
  margin-top: 6px;
}

.c-form {
  max-width: 430px;
  padding: 20px 15px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  background: var(--color-white);
  border-radius: var(--border-radius-default);
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.c-form > div {
  width: 100%;
}

.c-form-en {
  max-width: 430px;
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  background: var(--color-white);
  border-radius: var(--border-radius-default);
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.c-form-en > div {
  width: 100%;
}

.c-form-login {
  max-width: 430px;
  padding: 50px 15px 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background: var(--color-white);
  border-radius: var(--border-radius-default);
  position: relative;
  margin-top: -55px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.c-form-login > div {
  width: 100%;
}

.c-form__label_title {
  font-size: var(--size-label);
  margin-top: 5px;
}

.c-form__text_confirm {
  font-weight: bold;
  color: var(--corporate-color);
  overflow-wrap: break-word;
}

.c-form__confirm {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
}
.c-form__required {
  border: 1px solid var(--corporate-color);
  color: var(--corporate-color);
  font-size: 0.8em;
  font-weight: bold;
  padding: 1px 5px ;
  margin: 0px 10px 0px 5px;
}

.c-form__margin {
  margin-bottom: 20px;
}

.c-form__checkbox {
  padding: 10px;
}

.c-form__annotation {
  font-size: var(--size-small13);
}

/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* checkbox */
/* 共通スタイル（初期状態） */
[type="checkbox"] + span:not(.lever) {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  user-select: none;
}

/* 疑似ボックスの初期スタイル */
[type="checkbox"] + span:not(.lever)::before,
[type="checkbox"] + span:not(.lever)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: border .25s, background-color .25s,
              width .2s .1s, height .2s .1s,
              top .2s .1s, left .2s .1s;
}

/* filled-in チェックボックス：未チェック状態の before（チェックマーク） */
[type="checkbox"].filled-in:not(:checked) + span:not(.lever)::before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  transform: rotateZ(37deg);
  transform-origin: 100% 100%;
  z-index: 1;
}
/* filled-in チェックボックス：未チェック状態の after（背景） */
[type="checkbox"].filled-in:not(:checked) + span:not(.lever)::after {
  width: 20px;
  height: 20px;
  background-color: transparent;
  box-sizing: border-box;
  border: 2px solid #a5a5a5;
  z-index: 1;
  top: 0;
  border-radius: 2px;
}

/* filled-in チェックボックス：チェック状態の before（チェックマーク） */
[type="checkbox"].filled-in:checked + span:not(.lever)::before {
  width: 5px;
  height: 9px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 3px solid var(--color-white);
  border-bottom: 3px solid var(--color-white);
  transform: rotateZ(45deg);
  transform-origin: 100% 100%;
  z-index: 2;
}
/* filled-in チェックボックス：チェック状態の after（背景） */
[type="checkbox"].filled-in:checked + span:not(.lever)::after {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid #a5a5a5;
  background-color: var(--corporate-color);
  border-radius: 2px;
  top: 0;
  z-index: 1;
}

.c-form__link {
  color: #0062ff;
  text-decoration: underline;
  cursor: pointer;
}

.c-form__slider {
  margin: 15px 0;
}

/* radio button */
.c-form__radio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-default);
  line-height: 1;
  margin-bottom:50px;
  padding: 20px 20px;
}

[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[type="radio"]:not(:checked) + span,
[type="radio"]:checked + span {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: var(--size-label);
  color: var(--color-text);
  transition: .28s ease;
  user-select: none;
}

[type="radio"] + span:before,
[type="radio"] + span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 25px;
  height: 25px;
  z-index: 0;
  transition: .28s ease;
  box-sizing: border-box;
}

/* Unchecked styles */
[type="radio"]:not(:checked) + span:before,
[type="radio"]:not(:checked) + span:after,
[type="radio"]:checked + span:before,
[type="radio"]:checked + span:after,
[type="radio"].with-gap:checked + span:before,
[type="radio"].with-gap:checked + span:after {
  border-radius: 50%;
}

[type="radio"]:not(:checked) + span:before,
[type="radio"]:not(:checked) + span:after {
  border: 2px solid #a5a5a5;
}

/* Checked styles */
[type="radio"]:checked + span:before {
  border: 2px solid transparent;
}

[type="radio"]:checked + span:after,
[type="radio"].with-gap:checked + span:before,
[type="radio"].with-gap:checked + span:after {
  border: 2px solid var(--corporate-color);
}
[type="radio"]:checked + span:after,
[type="radio"].with-gap:checked + span:after {
  background-color: var(--corporate-color);
}

[type="radio"]:checked + span:after {
  transform: scale(1);
}
[type="radio"].with-gap:checked + span:after {
  transform: scale(0.6);
}


.c-form__messeage {
  font-size: var(--size-big-title);
  font-weight: bold;
}
.c-form__messeage.c-form__description {
  margin-bottom: 0;
}

.c-form__text {
  width: 100%;
  text-align: center;
  font-size: var(--size-small12);
  margin-top: 10px;
  line-height: 1;
}
.c-form__text:first-child {
  margin-top: 0;
}
.c-form__text a {
  text-decoration: underline;
  font-size: var(--size-body);
}

.c-form__description {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}
.c-form__comments {
  display: inline-block;
  text-align: left;
  font-size: var(--size-small13);
  text-indent: -1em;
  padding-left: 1em;
  padding-bottom: 20px;
}

.message-area {
  margin: 30px 20px;
  line-height: 1.8;
  width: 100%;
  text-align: center;
}
.message-area2 {
  margin: 10px 0;
  width: 100%;
  text-align: center;
}

.message-area p {
  margin-bottom: 20px;
}

.c-form__showpw {
  display: inline-block;
  width: 23px;
  height: 14px;
  background: url(/icon/ic-pwshow.svg)
    no-repeat center center;
  text-indent: -100000px;
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -7px;
  cursor: pointer;
}
.c-form__showpw.is-active {
  width: 23px;
  height: 14px;
  background-image: url(/icon/ic-pwshow-active.svg);
}

.c-form__center {
  text-align: center;
}
.c-form__center.c-form__margin {
  margin-top: 30px;
}

.c-form__action__text {
  margin: 20px auto 50px;
  font-size: var(--size-title);
}

.c-form__action__text a {
  text-decoration: underline;
}

.c-form__img {
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  margin-bottom: 20px;
  gap: 5px;
  position: relative;
}
.c-form__img img {
  height: 120px;
}
.c-form__img__horizontal {
  transform: scaleX(-1);
}

.c-form__img__position {
  height: 80px !important;
  position: absolute;
  right: -15px;
  bottom: 0px;
  z-index: 0;
}

.c-form__placeholder::placeholder {
  color: #a6a6a6 !important;
  font-size: var(--size-small14);
}

.mlz-input_field {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.mlz-input_field > input {
  padding: 0px 10px !important;
}

.mlz-input_field > label:not(.label-icon).active {
  display: none;
}

input[type=text]:not(.browser-default),
input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default),
input[type=number]:not(.browser-default) {
  background-color: transparent;
  border: none;
  border: 1px solid #ccc;
  border-radius: var(--border-radius-default);
  outline: none;
  height: 35px;
  line-height: 35px;
  width: 100%;
  font-size: var(--size-label);
  margin: 0 0 0 0;
  padding: 0;
  box-shadow: none;
  box-sizing: content-box;
  transition: box-shadow .3s, border .3s;
}
.registration-complete {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

#languageForm {
  width: 100%;
}
/* 言語ドロップダウンのラッパー */
.language-dropdown-wrapper {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 100;
}

/* ログイン前言語切り替えカスタムドロップダウン */
.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown-trigger {
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  color: var(--color-text);
  border: none;
  min-width: 100px;
  font-size: var(--size-small12);
  transition: all 0.2s ease;
  gap: 6px;
}

.custom-dropdown-content {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: var(--border-radius-default);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  display: none;
  overflow: hidden;
}

.custom-dropdown-content li {
  border-bottom: none;
  text-align: center;
}

.custom-dropdown-content li button {
  display: inline-block;
  background: none;
  border: none;
  padding: 8px 12px;
  white-space: nowrap;
}

/* Project
 *----------------------------------------------------------------- */
/* Status */
.page-status .l-contents {
  background-color: var(--color-bg);
  padding-top: 0;
}
.page-status .c-section {
  padding: 20px 10px;
}
.page-status .c-section__title {
  font-size: var(--size-title);
  line-height: 1;
}
.page-status .c-section__title img {
  margin-right: 10px;
}

.p-stats {
  position: relative;
  padding-top: 47px;
  background: var(--color-white);
  background-size: 100% auto;
  min-height: 265px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1024px;
  margin: 0 auto;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.p-stats__loading {
  font-size: 0;
  display: inline-block;
  margin-left: 13px;
}
.p-stats__loading:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/img/icn-status_loading.svg)
    no-repeat center center;
  background-size: cover;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Message & Information */
.p-message__list {
  margin: 0 10px;
  margin-top: 15px;
}
.p-message__list:first-child {
  margin-top: 10px;
}
@media screen and (min-width: 834px) {
  .p-message__list li a:hover p {
    opacity: 0.7;
  }
}
.p-message__list li + li {
  margin-top: 20px;
}

.m-ar {
  position: relative;
}

.p-message__title {
  font-size: var(--size-label);
  line-height: 1;
  position: relative;
  padding: 5px;
  padding-bottom: 0px;
}
.m-ar .p-message-card::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/icon/ic-gray-arrowright.svg) /*＞の画像*/
    no-repeat center center;
  background-size: contain;
}

.p-message__time {
  font-size: var(--size-small12);
  color: #777;
  text-align: left;
}

.p-message_detail__title {
  font-size: var(--size-title);
  font-weight: bold;
}

.p-message-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-default);
  border: 1px solid var(--color-text);
  padding: 10px 15px;
  margin: 10px auto;
  max-width: 90%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  position: relative;
}

.p-notice_category {
  color: var(--color-white);
  background-color: var(--corporate-color);
  padding: 0 5px;
  border: solid 1px var(--corporate-color);
  border-radius: 20px;
  font-size: 11px;
  margin-left: 10px;
}

.p-notice_unread {
  position: absolute;
  color: var(--color-white);
  background-color: var(--corporate-color);
  border: solid 1px var(--corporate-color);
  border-radius: 50%;
  font-size: 11px;
  padding: 5px 2px;
  right: -10px;
  top: -10px;
  z-index: 1;
}

.p-message_detail.c-section {
  word-wrap: break-word;
}

/* Study */
.p-study.c-section {
  background: none;
  max-width: 430px;
  padding: 15px 10px;
}

.p-study__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2列 */
  justify-content: center;
  width: 100%;
  gap: 15px 8px;
  margin-bottom: 20px;
}
.p-study__list li {
  padding-left: 8px;
  padding-right: 12px;
  display: flex;
}

.p-study__list__ja {
  color: var(--corporate-color);
  font-size: var(--size-small14);
  flex: 1;
  align-items: center;
}
.p-study__list__en {
  margin-top: 6px;
  display: block;
  line-height: 1;
  font-weight: 600;
  font-family: system-ui, "Roboto", sans-serif;
  font-size: var(--size-small12);
  color: #a5a5a5;
}

.p-study__list__icon {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

/* Register */
.page-register .c-contents__title {
  margin-bottom: 30px;
}
.page-register .c-tab {
  margin-top: 40px;
}
.page-register .c-section {
  padding-top: 20px;
}

/* Terms & Policy Document */
.p-document {
  font-size: var(--size-small14);
}
.p-document-title {
  font-size: var(--size-big-title);
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}

.p-document-terms dt {
  padding-top: 20px;
  font-size: var(--size-body);
}
.p-document-indent {
  text-indent: 1em;
  overflow-wrap: break-word;
}
.p-document-terms li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.p-document-modal {
  padding: 0 20px 20px;
  font-size: var(--size-small14);
}

/* ===============================
 　　　　　 　　学ぶ
================================ */
.learning_movie {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 0 auto;
}

.learning_title {
  color: var(--corporate-color);
  font-size: var(--size-title);
  font-weight: bold;
}

.learning_text {
  font-size: var(--size-small14);
  margin-top: 8px;
  margin-bottom: 16px;
}

.download_icon {
  margin: auto 5px;
  margin-right: 10px;
  width: 20px;
}
.gaibu-link_icon {
  margin: auto 5px;
  margin-right: 10px;
  width: 18px;
}

.learning_new_icon {
  position: absolute;
  right: 22px;
  top: 0;
  height: 18px;
}

.learning_animal {
  position: relative;
}

.learning_panda {
  width: 200px;
}

.learning_friends {
  height: 125px;
  display: flex;
  gap: 5px;
  position: absolute;
  right: -5px;
  top: 55px;
}
.more_btn {
  max-width: 430px;
}

.link-item.is-hidden {
    display: none;
}
.link-item.is-visible {
    display: block;
}

.learning_more_link {
  color: var(--corporate-color);
  font-size: 0.9em;
  text-align: right;
  text-decoration: underline;
}

/* ===============================
 　　　　　 商品変更
================================ */
.t-simulation-wrapper {
  position: relative;
}
.t-simulation {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius-default);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid var(--color-table-border);
  width: 100%;
  margin: 0 auto;
  font-size: var(--size-small13);
}
.t-simulation th {
  border-bottom: 1px solid var(--color-table-border);
  padding: 5px 0;
  text-align: left;
}
.t-simulation td {
  border-bottom: 1px solid var(--color-table-border);
  padding: 8px;
}

.t-simulation thead th {
  background-color: var(--color-bg);
  font-size: 11px;
  padding: 8px;
}
.t-simulation tr:last-child th,
.t-simulation tr:last-child td {
  border-bottom: none;
}

/* 逆三角 */
.t-simulation-wrapper:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 18px solid transparent;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: var(--color-table-border);
}

.buy {
  border: 1px solid var(--corporate-color);
  margin-bottom: 20px;
}

hr {
  margin: 20px 0;
  width: 100%;
  height: 2px;
  background: var(--color-table-border);
  border: none;
}

.shouhin-iframe {
  height: calc(100vh - 120px);
  width:100%;
  border: none;
}

/* ===============================
 　　　　　 読み込み時グルグル
================================ */

#spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: var(--color-table-border);
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
  /* ===============================
　　　　　グルグル位置調整
  ================================ */

.slide-spinner {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990; /* slide内で一番上 */
}

/* ===============================
 　　　　　 レスポンシブ
================================ */
@media screen and (max-width: 400px) {
  .l-header__menu_font {
    font-size: 9px !important;
  }
/*  .badge {
    right: 0px;
  }
 .product-header {
    font-size: 11px;
  }
  .product-row {
    font-size: 12px;
  }

  .product-name-row {
    font-size: 12px;
  } */
  .question-title,
  .pass-title  {
    font-size: var(--size-title);
  }
}

/* レスポンシブ対応 */
@media (max-width: 380px) {
  .language-dropdown-wrapper {
    top: 10px;
    right: 5px;
  }

  .custom-dropdown-trigger {
    min-width: 80px;
    padding: 5px 8px;
  }

  .custom-dropdown-trigger img {
    width: 20px;
    height: 20px;
  }

  .custom-dropdown-content li a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .tab-item {
    font-size: 13px;
  }
  .evaluation-value {
    font-size: 13px;
  }
  .categoryratio {
    font-size: 13px;
  }
  .question-title,
  .pass-title {
    font-size: var(--size-body);
  }
  /* .p-document-modal {
    font-size: 13px;
  }
  .c-form__label_title {
    font-size: var(--size-body)
  } */
  .nrk-help {
    padding: 2px 4px;
  }

  /* .p-study__list__ja {
    font-size: 13px;
  } */
}

@media screen and (max-width: 365px) {
  .c-tab__navi li a,
  .mlz-input_field > input,
  .mlz-input_field > label,
  .c-form__label,
  .c-form__select select,
  .c-form__radio span,
  .c-button.ext-autoadress {
    font-size: 11px !important;
  }

  .evaluation-value {
    font-size: 12px;
  }
  .product-name-row {
    font-size: 11px;
  }
}
