@charset "UTF-8";
/*! purgecss start ignore */
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 {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

strong,
b {
  font-weight: 500;
}

:focus,
:focus-visible {
  outline: none;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*! purgecss end ignore */
/* 共通スタイル（Input・Textarea） */
.textarea-wrapper, input[type=text],
input[type=password] {
  border: 1px solid #777777;
  transition: box-shadow 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.textarea-wrapper:hover, input[type=text]:hover,
input[type=password]:hover, .textarea-wrapper:active, input[type=text]:active,
input[type=password]:active, .textarea-wrapper:focus, input[type=text]:focus,
input[type=password]:focus, .textarea-wrapper:focus-visible, input[type=text]:focus-visible,
input[type=password]:focus-visible, .textarea-wrapper:focus-within, input[type=text]:focus-within,
input[type=password]:focus-within {
  box-shadow: inset 0 0 0 2px #777777, 0 2px 6px rgba(0, 0, 0, 0.3);
  outline: none;
}
.textarea-wrapper:disabled, input[type=text]:disabled,
input[type=password]:disabled, .textarea-wrapper:has(textarea:disabled), input[type=text]:has(textarea:disabled),
input[type=password]:has(textarea:disabled) {
  background-color: #EEEEEE;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

/* Input */
input[type=text],
input[type=password] {
  padding: 16px;
}
input[type=text].login__form-group--input,
input[type=password].login__form-group--input {
  padding: 12px;
}

/* Textarea本体 */
textarea {
  display: block;
  flex: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  resize: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  line-height: 1.5;
  font-family: inherit;
}

/* Textarea外枠 */
.textarea-wrapper {
  display: flex;
  background: #FFFFFF;
  padding: 8px;
  border-radius: 4px;
  resize: both;
  overflow: hidden;
  max-width: 100%;
  min-width: 240px;
}
.textarea-wrapper--error {
  border-color: #CE0000;
}
.textarea-wrapper--error:focus-within {
  box-shadow: inset 0 0 0 2px #CE0000, 0 2px 6px rgba(211, 47, 47, 0.3);
}
.textarea-wrapper--sm {
  width: 700px;
  height: 52px;
}
.textarea-wrapper--lg {
  width: 1000px;
  height: 128px;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 1.125rem;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.5;
  overflow-wrap: break-word;
}

a:not(.btn) {
  color: inherit;
  text-decoration: underline;
}

a:not(.btn):hover,
a:not(.btn):focus,
a:not(.btn):focus-visible {
  color: #8B008B;
}

a:not(.btn):active {
  color: #E25100;
}

a:not(.btn).is-disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

.pagination a {
  text-decoration: none;
  color: inherit;
}

table td a {
  word-break: break-all;
}

b,
strong {
  font-weight: 700;
}

sup {
  font-size: 0.5em;
  vertical-align: super;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

picture > img {
  width: 100%;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

input,
select,
textarea,
button {
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select,
button {
  cursor: pointer;
}

select {
  border: none;
}

input {
  margin: 0;
  border: none;
  box-shadow: none;
}
input[type=radio] {
  margin-top: 0;
  margin-right: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background-color: transparent;
  color: inherit;
}

/* header */
.header {
  flex-shrink: 0;
  display: none;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__inner--start {
  padding: 12px 20px;
  justify-content: flex-start;
}
.header__inner--end {
  justify-content: flex-end;
}
.header a.header__home-link {
  display: flex;
  align-items: center;
  gap: 32px;
  text-decoration: none;
  color: inherit;
}
.header a.header__home-link:hover, .header a.header__home-link:focus, .header a.header__home-link:focus-visible, .header a.header__home-link:active {
  color: inherit;
  text-decoration: none;
}
.header a.header__home-link:focus-visible {
  box-shadow: inset 0 0 0 2px #777777;
  outline: none;
}
.header__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #532300;
  white-space: nowrap;
}
.header__logo {
  width: 150px;
  aspect-ratio: 161/48;
  background: url("/assets/images/logo.svg") no-repeat left center/contain;
}

.footer {
  font-size: 1rem;
  align-self: flex-end;
  margin-top: auto;
  padding: 0 28px 24px 0;
}

/* main */
.main__wrapper {
  display: flex;
  min-height: 100vh;
  background-color: #FFFAF2;
}
.main__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.main__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 24px;
}
.main__inner > .section:last-of-type {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* sidebar */
.sidebar {
  width: 268px;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 30;
}
.sidebar a,
.sidebar button {
  width: 100%;
  color: inherit;
  text-decoration: none;
  transition: none;
  font-weight: 700;
  font-size: 1rem;
}
.sidebar a:hover, .sidebar a:active, .sidebar a:focus, .sidebar a:focus-visible,
.sidebar button:hover,
.sidebar button:active,
.sidebar button:focus,
.sidebar button:focus-visible {
  color: inherit;
  text-decoration: none;
}
.sidebar__top {
  text-align: center;
}
.sidebar__title-logo {
  display: block;
  text-decoration: none;
  color: inherit;
}
.sidebar__title-logo:focus-visible {
  box-shadow: inset 0 0 0 2px #777777;
  outline: none;
}
.sidebar__title-logo:focus-visible .sidebar__title-text {
  box-shadow: inset 2px 0 0 #777777, inset -2px 0 0 #777777, inset 0 -2px 0 #777777;
}
.sidebar__title-logo-img {
  width: 160px;
  display: block;
  margin: 16px auto;
}
.sidebar__title-text {
  display: block;
  margin: 0;
  padding: 8px 0;
  background: #F6B87E;
  font-size: 1.125rem;
  font-weight: 700;
  color: #532300;
}
.sidebar__user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: #FFFAF2;
}
.sidebar__user-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F6B87E;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar__user-name {
  font-size: 1rem;
  font-weight: 700;
  color: #532300;
  text-align: left;
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  padding: 0 0 16px 0;
}
.sidebar__nav-group {
  border-bottom: 2px solid #DDDDDD;
}
.sidebar__nav-group:last-child {
  border-bottom: none;
}
.sidebar__nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  color: #000000;
  text-decoration: none;
}
.sidebar__nav-link:hover {
  background: #FFFAF2;
}
.sidebar__nav-link.is-active {
  background: #FCE3CC;
}
.sidebar__nav-link:focus-visible {
  background: #FCE3CC;
  box-shadow: inset 0 0 0 2px #777777;
}
.sidebar__nav-icon {
  width: 24px;
  flex-shrink: 0;
}
.sidebar__overlay {
  display: none;
}
.sidebar__nav-button {
  display: block;
  width: 68px;
  height: 68px;
  background-color: #F8C799;
  border: none;
  position: relative;
}
.sidebar__nav-button:focus-visible {
  box-shadow: inset 0 0 0 2px #777777;
}
.sidebar__nav-button::before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-image: url(/assets/images/icon-hamburger.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.sidebar__top {
  position: relative;
}
.sidebar__close {
  display: flex;
  height: 68px;
  padding: 18px 32px;
  background-color: #FFFFFF;
}
.sidebar__close-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 32px;
  border: none;
  cursor: pointer;
}
.sidebar__close-button::before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(/assets/images/icon-close.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.sidebar__close-text {
  color: #000000;
}

.sidebar__nav-link[target=_blank] {
  display: inline-flex;
  align-items: center;
}

.sidebar__nav-link[target=_blank]::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/assets/images/icon-external.svg") no-repeat center/contain;
  flex-shrink: 0;
  margin-left: 2px;
}

.accordion__item {
  margin-bottom: 32px;
}
.accordion__item:last-child {
  margin-bottom: 0;
}
.accordion__item:first-of-type {
  margin-top: 32px;
}
.accordion__question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 16px 112px 16px 32px;
  font-size: 1.5rem;
  color: #532300;
  border-bottom: 2px solid #EE7300;
  cursor: pointer;
  list-style: none;
}
.accordion__question:focus-visible {
  color: #8B008B;
}
.accordion__question:hover {
  color: #8B008B;
}
.accordion__question::-webkit-details-marker {
  display: none;
}
.accordion__question::after {
  content: "+";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid #FAD5B2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  background-color: #FFFFFF;
}
.accordion__answer {
  padding: 32px 32px 0 32px;
}
.accordion__item[open] .accordion__question::after {
  content: "−";
}

/* 汎用ボタン */
.btn {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-decoration: none;
  border-radius: 100vmax;
  color: #532300;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn__group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
  width: 100%;
}
.btn-lg {
  padding: 12px 24px;
  font-size: 1.5rem;
}
.btn-md {
  padding: 16px 24px;
  font-size: 1.125rem;
}
.btn-sm {
  padding: 16px;
  font-size: 1rem;
}
.btn--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.btn__icon {
  width: 16px;
  height: 16px;
  display: block;
}
.btn:disabled {
  border: 3px solid #CCCCCC;
  background-color: #EEEEEE;
  color: rgba(83, 35, 0, 0.3);
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}
.btn-primary {
  border: 3px solid #EE7300;
  background-color: #FFFAF2;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:focus-visible {
  background-color: #FCE3CC;
  box-shadow: inset 0 0 0 2px #EE7300, 0 2px 6px rgba(0, 0, 0, 0.3);
  outline: none;
}
.btn-secondary {
  border: 3px solid #FAD5B2;
  background-color: #FFFFFF;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:focus-visible {
  background-color: #FFFAF2;
  box-shadow: inset 0 0 0 2px #FAD5B2, 0 2px 6px rgba(0, 0, 0, 0.3);
  outline: none;
}

/* カスタムチェックボックス */
.checkbox__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.checkbox__label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 36px;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  min-height: 24px;
  /* チェックボックスの外枠・背景 */
  /* ホバー・フォーカス時の背景円（::after） */
  /* --- 未選択時のホバー・フォーカス（中も外もグレー） --- */
  /* 選択時（checked）のスタイル */
  /* disable */
}
.checkbox__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #979797;
  border-radius: 2px;
  background-color: #FFFFFF;
  transition: all 0.2s ease;
  z-index: 1;
}
.checkbox__label::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s ease;
  z-index: 0;
}
.checkbox__label:not(:has(.checkbox__input:checked)):hover::before, .checkbox__label:not(:has(.checkbox__input:checked)):has(.checkbox__input:focus-visible)::before {
  background-color: #E6E6E6;
  border-color: #979797;
}
.checkbox__label:not(:has(.checkbox__input:checked)):hover::after, .checkbox__label:not(:has(.checkbox__input:checked)):has(.checkbox__input:focus-visible)::after {
  background-color: #E6E6E6;
}
.checkbox__label:has(.checkbox__input:checked)::before {
  background-color: #0564B6;
  border-color: #0564B6;
}
.checkbox__label:has(.checkbox__input:checked):hover::after, .checkbox__label:has(.checkbox__input:checked):has(.checkbox__input:focus-visible)::after {
  background-color: #E5EFF8;
}
.checkbox__label:has(.checkbox__input:checked) .checkbox__text::before {
  opacity: 1;
}
.checkbox__label:has(.checkbox__input:disabled) {
  opacity: 0.3;
  cursor: not-allowed;
}
.checkbox__label:has(.checkbox__input:disabled)::after {
  display: none;
}
.checkbox__input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}
.checkbox__text {
  position: relative;
  z-index: 2;
}
.checkbox__text::before {
  content: "";
  position: absolute;
  left: -26px;
  top: calc(50% - 2px);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.label {
  font-size: 1.125rem;
  color: #FFFFFF;
  border-radius: 5px;
  flex-shrink: 0;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}
.label--red {
  background-color: #CE0000;
}
.label--orange {
  background-color: #FA8700;
}
.label--blue {
  background-color: #0564B6;
}
.label--green {
  background-color: #259D63;
}
.label__info {
  width: 90px;
  padding: 2px 0;
}
.label__vote {
  width: 88px;
  padding: 8px 0;
}
.label__form-badge {
  font-size: 1rem;
  padding: 1px 4px;
}
.label__form-badge--optional {
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.label__member-status {
  padding: 4px 16px;
  color: #532300;
  border: 1px solid #FA8700;
  margin-left: 16px;
}
.label__member-status--new {
  background: #FCE3CC;
}
.label__member-status--incumbent {
  background: #F6B87E;
}
.label__member-status--former {
  background: #FFFAF2;
}

/* 通知ボックス */
.notice__wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
  text-align: left;
}
.notice__box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-radius: 4px;
}
.notice__box--error {
  border: 1px solid #CE0000;
  background-color: #FCF1F1;
}
.notice__box--success {
  border: 1px solid #259D63;
  background-color: #E6F2EC;
}
.notice__box--info {
  border: 1px solid #0564B6;
  background-color: #E5EFF8;
}
.notice__box--warning {
  border: 1px solid #FA8700;
  background-color: #FFEEE5;
}
.notice__text {
  display: flex;
  gap: 10px;
  font-weight: 700;
  align-items: flex-start;
  text-align: left;
}
.notice__text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.notice__text--error::before {
  background-image: url("/assets/images/icon-error.svg");
}
.notice__text--success::before {
  background-image: url("/assets/images/icon-check.svg");
}
.notice__text--info::before {
  background-image: url("/assets/images/icon-information.svg");
}
.notice__text--warning::before {
  background-image: url("/assets/images/icon-warning.svg");
}

/* カスタムラジオボタン */
.radio__group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  /* 縦並び用 */
}
.radio__group--vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.radio__group--approval .radio__text {
  font-size: 1.375rem;
}
.radio__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 36px;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  /* ラジオ外枠 */
  /* フォーカス背景 */
  /* checked */
  /* hover & active & focus-visible（未選択） */
  /* hover & active & focus-visible（checked） */
  /* disabled */
}
.radio__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #979797;
  border-radius: 50%;
  background-color: transparent;
  transition: border-color 0.2s ease;
  z-index: 1;
}
.radio__label::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s ease;
  z-index: 0;
}
.radio__label:has(.radio__input:checked)::before {
  border-color: #0564B6;
}
.radio__label:has(.radio__input:checked) .radio__text::before {
  opacity: 1;
}
.radio__label:hover::after, .radio__label:active::after, .radio__label:has(.radio__input:focus-visible)::after {
  background-color: #EEEEEE;
}
.radio__label:has(.radio__input:checked):hover::after, .radio__label:has(.radio__input:checked):active::after {
  background-color: #E5EFF8;
}
.radio__label:has(.radio__input:checked:focus-visible)::after {
  background-color: #E5EFF8;
}
.radio__label:has(.radio__input:disabled) {
  opacity: 0.3;
  cursor: not-allowed;
}
.radio__input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}
.radio__text {
  position: relative;
  z-index: 2;
  /* ラジオ内側の円（checked） */
}
.radio__text::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0564B6;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.text--b {
  font-weight: 700;
}
.text--m {
  font-weight: 500;
}
.text--large {
  font-size: 2rem;
}
.text-ta--center {
  text-align: center;
}
.text-ta--right {
  text-align: right;
}

.underline--gray {
  border-bottom: 2px solid #cccccc;
}

.pagination {
  padding-top: 24px;
  text-align: center;
}
.pagination a {
  color: #532300;
}
.pagination a:hover {
  color: #532300;
}
.pagination a:focus-visible {
  box-shadow: inset 0 0 0 2px #EE7300, 0 2px 6px rgba(0, 0, 0, 0.3);
  outline: none;
}
.pagination__list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.pagination__item {
  display: flex;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #FAD5B2;
  color: #532300;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination__link:hover {
  background: #FFFAF2;
}
.pagination__link--active {
  border: 2px solid #EE7300;
  background-color: #FFFAF2;
  pointer-events: none;
  cursor: default;
}
.pagination__link--disabled {
  opacity: 0.4;
  pointer-events: none;
}
.pagination__link:focus-visible {
  background-color: #FCE3CC;
  box-shadow: inset 0 0 0 2px #EE7300, 0 2px 6px rgba(0, 0, 0, 0.3);
  outline: none;
  border: 2px solid #EE7300;
}
.pagination__item--prev a, .pagination__item--next a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: all 0.2s ease;
}
.pagination__item--prev a:hover, .pagination__item--next a:hover {
  opacity: 0.7;
}
.pagination__arrow {
  font-size: 18px;
}
.pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  vertical-align: middle;
  padding-bottom: 8px;
}
.pagination__arrow img {
  width: 16px;
  height: 16px;
}
.pagination__info {
  color: #532300;
}

.info__group {
  padding: 56px 32px;
}
.info__header {
  display: flex;
  position: relative;
  z-index: 10;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 12px 32px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  gap: 8px;
}
.info__header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.info__header-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.info__header-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
}
.info__header-item > :last-child {
  min-width: 0;
}
.info__header .label {
  font-size: 1rem;
}
.info__header-action {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: flex-end;
}
.info__header-action > .info__header-more {
  font-size: 1rem;
  font-weight: 700;
  color: #532300;
  text-decoration: none;
  padding-left: 16px;
}
.info__text-imp {
  font-weight: 500;
}
.info-date-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 32px;
  margin-bottom: 32px;
}
.info__article-title.section__sub-title {
  margin-bottom: 0;
}
.info__article-title.section__h3-title, .info__article-title.section__h4-title {
  padding-left: 0;
}

.info-list {
  display: flex;
  flex-direction: column;
}
.info-list__item {
  display: grid;
  grid-template-columns: 150px auto 1fr;
  grid-template-areas: "new . ." "date label title";
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 0;
  align-items: start;
  padding: 16px 32px;
  border-bottom: 1px solid #999999;
}
.info-list__inner {
  display: flex;
  flex-direction: column;
}
.info-list__date-wrap {
  grid-area: date;
  min-width: 0;
}
.info-list__new {
  grid-area: new;
  color: #CE0000;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.info-list .label {
  grid-area: label;
}
.info-list__title {
  grid-area: title;
  margin: 0;
  min-width: 0;
  font-weight: 500;
}

.section {
  min-width: 300px;
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.section + .section {
  margin-top: 32px;
}
.section__group:not(:last-child) {
  margin-bottom: 72px;
}
.section__group-complete {
  margin-bottom: 128px;
}
.section__block {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.section__block:not(:last-child) {
  margin-bottom: 56px;
}
.section__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.section__titlebar {
  width: calc(100% + 48px);
  margin: 0 -24px 32px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #532300;
  font-size: 2.375rem;
  font-weight: 700;
  text-align: center;
}
.section__titlebar--approved {
  background-color: #FCE3CC;
}
.section__titlebar--disapproved {
  background-color: #EEEEEE;
}
.section__titlebar--inner {
  width: 100%;
  margin: 0 0 32px;
}
.section__titlebar-icon {
  width: 40px;
  height: auto;
  display: block;
  flex-shrink: 0;
  margin-right: 32px;
}
.section__titlebar-fit {
  padding-top: 0;
}
.section__title {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 2rem;
  font-weight: 700;
  color: #532300;
  padding-left: 32px;
  padding-bottom: 24px;
  border-bottom: 5px solid #EE7300;
  margin-bottom: 32px;
}
.section__title--text {
  display: flex;
  align-items: center;
  gap: 32px;
}
.section__title--count {
  font-size: 1.125rem;
  white-space: nowrap;
}
.section__title--candidate {
  display: block;
}
.section__title--candidate .label__member-status {
  display: inline-block;
  position: relative;
  top: -4px;
}
.section__sub-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding: 0 32px;
  color: #532300;
}
.section__sub-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: 16px;
  margin-bottom: 40px;
}
.section__sub-header .section__sub-title {
  margin-bottom: 0;
}
.section__sub-header.election_results {
  margin-bottom: 24px;
}
.section__meta {
  display: inline-flex;
  align-items: center;
  background: #EEEEEE;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 4px;
  white-space: nowrap;
}
.section__meta-sep {
  margin: 0 16px;
}
.section__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #EE7300;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.section__form-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #532300;
  text-align: left;
}
.section__form-title-wrapper {
  width: 100%;
  padding: 16px 32px;
  margin-bottom: 32px;
  background-color: #FCE3CC;
}
.section__form-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0 32px 32px;
}
.section__form-group:not(:last-child) {
  margin-bottom: 32px;
}
.section__form-group--align {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.section__form-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.section__form-field--confirm {
  background: #EEEEEE;
  padding: 40px;
  border-radius: 10px;
}
.section__form-field__label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-right: 24px;
  white-space: nowrap;
}
.section__form-field__value {
  flex: 1;
  font-size: 1.125rem;
}
.section__form-field__question {
  font-size: 1.125rem;
  margin-bottom: 16px;
}
.section__form-field__question span {
  margin-left: 8px;
}
.section__gray {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #EEEEEE;
}
.section__gray-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0 32px 40px;
}
.section__gray-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 48px;
  color: #532300;
  text-align: center;
  margin-bottom: 40px;
}
.section__gray-title-accent {
  display: block;
  font-size: 2rem;
}
.section__gray-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 24px 40px;
  border-radius: 10px;
}
.section__gray-box-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-right: 24px;
  white-space: nowrap;
}
.section__message {
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: center;
}
.section__confirm-message {
  font-size: 2rem;
  font-weight: 700;
}
.section__confirm-answer:not(:last-child) {
  margin-bottom: 24px;
}
.section__confirm-icon {
  width: 124px;
  height: auto;
  margin-top: 24px;
  margin-bottom: 32px;
}
.section__complete-message {
  font-size: 1.5rem;
  font-weight: 500;
}
.section__text-area {
  margin-bottom: 24px;
  padding: 0 32px;
}
.section__text {
  margin-bottom: 8px;
}
.section__question-group {
  padding: 0 16px 24px;
}
.section__question-group + .section__question-group {
  margin-top: 24px;
}
.section__question-group + .section__message {
  margin-top: 24px;
}
.section__group-complete .underline--gray {
  margin-bottom: 48px;
  padding-bottom: 48px;
}
.section__h3-title, .section__h4-title {
  font-weight: 700;
  margin-bottom: 24px;
  padding: 0 32px;
  color: #532300;
}
.section__h3-title {
  font-size: 1.75rem;
}
.section__h4-title {
  font-size: 1.5rem;
}
.section__pdf-link {
  font-weight: 500;
}
.section__pdf-link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  background-image: url("/assets/images/icon-pdf.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.section__sent-field {
  background: #eeeeee;
  border-radius: 24px;
}
.section__sent-answer {
  font-size: 1.125rem;
  color: #532300;
}
.section__sent-message {
  font-size: 1.25rem;
  font-weight: bold;
  color: #532300;
  margin-top: 64px;
}
.section__result {
  border: 1px solid #EE7300;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}
.section__result-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.section__result-area__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.section__result-area__item {
  display: flex;
  align-items: center;
  gap: 32px;
}
.section__result-area__name {
  font-size: 2rem;
  font-weight: 700;
}
.section__myvote-message {
  font-size: 1.5rem;
  font-weight: 700;
  color: #532300;
  margin: 32px 0 24px;
}

.video-container {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}
.video-wrap {
  position: relative;
}
.video-wrap video {
  display: block;
  max-width: 100%;
  min-width: 300px;
  max-height: 80vh;
  border-radius: 16px;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 130px;
  height: 130px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s;
  pointer-events: auto;
}
.video-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.video-play-btn img {
  width: 100%;
  height: 100%;
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.is-active {
  display: flex;
}
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal-box {
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1;
}
.modal-close-btn {
  width: 64px;
  height: 64px;
  margin-bottom: 7px;
  transform: translateX(7px);
  border: none;
  background: none;
  cursor: pointer;
}
.modal-close-btn img {
  width: 100%;
  height: 100%;
  display: block;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.loader {
  position: relative;
  width: 10em;
  height: 10em;
  font-size: 4.4px;
  text-indent: -9999em;
  transform: translateZ(0);
  color: #532300;
  box-shadow: inset 0 0 0 1em;
  border-radius: 50%;
}
.loader::before, .loader::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #FFFFFF;
}
.loader::before {
  width: 5.2em;
  height: 10.2em;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  transform-origin: 5.1em 5.1em;
  animation: load2 2s infinite ease 1.5s;
}
.loader::after {
  width: 5.2em;
  height: 10.2em;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 4.9em;
  transform-origin: 0.1em 5.1em;
  animation: load2 2s infinite ease;
}

@keyframes load2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5 {
  color: #532300;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 16px;
}
.rich-text h1:first-child, .rich-text h2:first-child, .rich-text h3:first-child, .rich-text h4:first-child, .rich-text h5:first-child {
  margin-top: 0;
}
.rich-text h1 {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 2rem;
  padding-bottom: 24px;
  border-bottom: 5px solid #EE7300;
}
.rich-text h2 {
  font-size: 1.875rem;
}
.rich-text h3, .rich-text h4, .rich-text h5 {
  padding: 0;
}
.rich-text h3 {
  font-size: 1.75rem;
}
.rich-text h4 {
  font-size: 1.5rem;
}
.rich-text h5 {
  font-size: 1.25rem;
}
.rich-text a {
  text-decoration: underline;
  font-weight: 500;
}
.rich-text a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  background-image: url(/assets/images/icon-pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.rich-text p {
  margin-bottom: 8px;
}
.rich-text strong,
.rich-text b {
  font-weight: 700;
}
.rich-text em {
  font-style: italic;
}
.rich-text sup {
  font-size: 0.5em;
  vertical-align: super;
}
.rich-text sub {
  font-size: 0.5em;
  vertical-align: sub;
}
.rich-text s {
  text-decoration: line-through;
}
.rich-text hr {
  border-top: 2px solid #CCCCCC;
  margin: 16px 0;
}
.rich-text ul {
  list-style: none;
  margin-bottom: 16px;
}
.rich-text ul li {
  position: relative;
  padding-left: 2.2rem;
}
.rich-text ul li + li {
  margin-top: 8px;
}
.rich-text ul li::before {
  content: "";
  position: absolute;
  top: calc(0.5lh - 0.4em);
  left: 2px;
  width: 14px;
  height: 14px;
  background: #EE7300;
  border-radius: 50%;
}
.rich-text ul ul {
  margin: 8px 0;
}
.rich-text ul ul li::before {
  top: calc(0.5lh - 0.3em);
  width: 10px;
  height: 10px;
  border: 1px solid #EE7300;
  background: transparent;
}
.rich-text ul ul ul li::before {
  content: "・";
  width: auto;
  height: auto;
  background: none;
  border: none;
  top: calc(0.5lh - 0.2em);
  font-size: 1em;
  line-height: 1;
  color: #EE7300;
}
.rich-text ol {
  list-style-type: decimal;
  padding-left: 1.4rem;
  margin-bottom: 16px;
}
.rich-text ol li {
  padding-left: 0.8rem;
}
.rich-text ol li + li {
  margin-top: 8px;
}
.rich-text ol li::marker {
  color: #532300;
  font-weight: bold;
}
.rich-text ol ol {
  margin: 8px 0;
  padding-left: 1.4rem;
}
.rich-text .table-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
}
.rich-text table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  table-layout: fixed;
}
.rich-text table th,
.rich-text table td {
  border-width: 1px;
  border-style: solid;
  border-color: #999999;
  padding: 24px;
  text-align: left;
}
.rich-text table th {
  background-color: #EEEEEE;
  font-weight: 700;
}

.login__bg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(0deg, #F5AB66, #EE7300 50% 100%);
}
.login__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.login__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #FFFFFF;
  text-align: center;
}
.login__title-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 40px;
  margin-bottom: 24px;
}
.login__logo {
  padding: 0 16px;
  margin-bottom: 24px;
}
.login__logo-image {
  width: 236px;
  height: auto;
  display: inline-block;
}
.login__title {
  width: 100%;
  padding: 8px 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #532300;
  background-color: #FCE3CC;
}
.login__form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 448px;
  margin: 0 auto;
}
.login__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.login__form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.login__form-group + .login__form-group {
  margin-top: 16px;
}
.login__form-group--label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 700;
}
.login__form-group--input {
  width: 100%;
  border-radius: 4px;
  font-size: 1.125rem;
}
.login__form-group--input-wrap {
  margin-bottom: 16px;
}
.login__form-group--input.is-error {
  border: 2px solid #CE0000;
  background-color: #FCF1F1;
}
.login__password-wrap {
  position: relative;
}
.login__password-wrap--eye {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.login__password-wrap--eye:focus, .login__password-wrap--eye:focus-visible {
  outline: 2px solid #777777;
  outline-offset: 2px;
  border-radius: 4px;
}
.login__forgot {
  margin-top: 16px;
  font-size: 1.125rem;
}
.login__copyright {
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 16px;
}
.login__link-external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
}
.login__notice {
  padding: 0 32px;
}
.login__notice-box {
  padding: 8px;
}
.auth__wrapper-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth__title {
  padding: 16px;
  margin-bottom: 32px;
}
.auth__title-wrapper {
  width: 100%;
  flex-shrink: 0;
}
.auth__message-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  margin-bottom: 32px;
}
.auth__message-text {
  font-size: 1.125rem;
}
.auth__message-complete {
  font-size: 1.5rem;
  font-weight: 500;
}
.auth__icon {
  width: 124px;
  height: auto;
  margin-top: 24px;
  margin-bottom: 32px;
}
.auth__btn-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.vote__title {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 16px 32px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #532300;
  background-color: #FCE3CC;
  border-radius: 8px;
}
.vote__title--count {
  font-size: 1.125rem;
  white-space: nowrap;
}
.vote__period {
  margin-bottom: 24px;
  padding: 0 32px;
}
.vote__period-text {
  font-size: 1.125rem;
}
.vote__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  font-size: 1.125rem;
}
.vote__table th,
.vote__table td {
  padding: 16px 32px;
  word-break: break-word;
}
.vote__table th .vote__label,
.vote__table td .vote__label {
  margin: 0 auto;
}
.vote__table thead th {
  font-weight: 700;
  text-align: left;
  color: #532300;
  background-color: #FFFAF2;
  white-space: nowrap;
}
.vote__table tbody tr:hover {
  background-color: #FFFAF2;
}
.vote__table tbody tr:first-child {
  border-top: 2px solid #999999;
}
.vote__table tbody tr.vote__row--clickable {
  cursor: pointer;
}
.vote__table tbody tr.vote__row--clickable:focus {
  outline: 2px solid #777777;
  outline-offset: -2px;
  box-shadow: 0 0 0 2px #777777;
  background-color: #FFFAF2;
}
.vote__table tbody tr.vote__row--clickable td.vote__candidate-link {
  text-decoration: underline;
}
.vote__table tbody td {
  border-bottom: 1px solid #999999;
  vertical-align: middle;
}
.vote__table-thead--sp {
  display: none;
}
.vote__table-thead--pc {
  display: table-header-group;
}
.vote__candidate-link {
  text-decoration: underline;
}
.vote__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  max-width: 72px;
  height: 32px;
  font-weight: 500;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  white-space: nowrap;
}
.vote__label--done {
  background-color: #EEEEEE;
}
.vote__label--approved {
  background-color: #FCE3CC;
  border: 1px solid #EE7300;
}
.vote__label--unapproved {
  background-color: #FFFFFF;
  border: 1px solid #EE7300;
}
.vote__label--ended {
  background-color: #EEEEEE;
  border: none;
}
.vote__label--published {
  background-color: #FFFFFF;
  border: 1px solid #777777;
}
.vote-header {
  background-color: #FFFFFF;
  border-radius: 0 0 24px 24px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(-32px);
}
.vote-header__content {
  padding: 0 8px;
}
.vote-header__text {
  font-size: 1rem;
}
.vote-header__range-sep {
  display: inline-block;
  margin-inline: 1rem;
}
.vote-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #532300;
  padding: 0 8px 16px;
  margin-bottom: 16px;
  border-bottom: 3px solid #EE7300;
}
.vote-header__title--count {
  font-size: 1.125rem;
  white-space: nowrap;
}

.is-sp {
  display: none;
}
.candidate__content {
  display: flex;
  gap: 48px;
  padding: 0 16px;
  margin-bottom: 40px;
}
.candidate__content.election_results {
  margin-bottom: 0;
}
.candidate__media {
  flex: 0 0 calc(50% - 24px);
  overflow: hidden;
}
.candidate__video {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #EEEEEE;
  border: 1px solid #CCCCCC;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.candidate__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
}
.candidate__video:hover::before, .candidate__video:focus-visible::before {
  opacity: 1;
}
.candidate__video::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #777777;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
  pointer-events: none;
}
.candidate__video:focus-visible {
  outline: none;
}
.candidate__video:focus-visible::after {
  opacity: 1;
}
.candidate__video img {
  max-width: 100%;
  max-height: 562px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.candidate__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 130px;
  height: 130px;
  pointer-events: none;
}
.candidate__play img {
  width: 100%;
  height: 100%;
  display: block;
}
.candidate__profile {
  flex: 1;
}
.candidate__profile-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #532300;
}
.candidate__profile-text:not(:last-child) {
  margin-bottom: 32px;
}
.candidate__profile-list {
  margin-bottom: 32px;
}
.candidate__profile-list div {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.candidate__profile-list dt {
  min-width: 4.5rem;
  font-weight: 700;
  white-space: nowrap;
}
.candidate__profile-list dd {
  margin: 0;
}

.faq__title {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 16px 32px;
  font-size: 1.875rem;
  font-weight: 700;
  color: #532300;
  background-color: #FCE3CC;
  border-radius: 8px;
  scroll-margin-top: 68px;
}
.faq__title--count {
  font-size: 1.125rem;
  white-space: nowrap;
}
.faq__group:not(:last-child) {
  margin-bottom: 80px;
}
.faq__anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 56px;
       column-gap: 56px;
  row-gap: 16px;
  margin-bottom: 32px;
  padding: 16px 24px;
  list-style: none;
}
.faq__anchor-item {
  margin: 0;
  overflow-wrap: anywhere;
}
.faq__anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.faq__anchor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #FAD5B2;
  border-radius: 50%;
  background-color: #FFFFFF;
  text-decoration: none;
  flex-shrink: 0;
}
.faq__anchor-button:hover {
  background: #FFFAF2;
}
.faq__anchor-button--active {
  border: 2px solid #EE7300;
  background-color: #FFFAF2;
}
.faq__anchor-button--disabled {
  opacity: 0.4;
  pointer-events: none;
}
.faq__anchor-button img {
  width: 16px;
  height: auto;
  display: block;
}

a.faq__anchor-link {
  color: #532300;
  font-weight: 700;
  text-decoration: none;
}
a.faq__page-top {
  display: block;
  text-align: right;
  font-weight: 700;
  color: #532300;
  margin-top: 32px;
  padding-right: 32px;
}

.modal__loading {
  display: none;
  position: fixed;
  width: 480px;
  height: 320px;
  min-width: 280px;
  min-height: 200px;
  max-width: calc(100vw - 64px);
  max-height: calc(100vh - 64px);
  background-color: #fff;
  border-radius: 16px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10002;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  padding: 32px;
}
.modal__loading.is-active {
  display: flex;
}
.modal__loading-text {
  margin-top: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
.modal__loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #707070;
  z-index: 10001;
}
.modal__loading-overlay.is-active {
  display: flex;
}
@media (min-width: 768px){
  .br-sp {
    display: none;
  }
  .login__main {
    padding: 24px 0;
  }
  .login__wrapper {
    width: 768px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    justify-content: flex-start;
  }
  .auth__wrapper {
    justify-content: space-between;
  }
}
@media (min-width: 1200px){
  .sidebar {
    position: sticky;
    top: 0;
  }
  .sidebar__close {
    display: none;
  }
  .faq__title {
    scroll-margin-top: 0;
  }
}
@media (max-width: calc(1200px - 1px)){
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 68px;
    display: flex;
    justify-content: space-between;
    background-color: #FFFFFF;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    overflow-y: hidden;
    z-index: 20;
  }
  .main__wrapper {
    flex-direction: column;
  }
  .main__content {
    padding-top: 68px;
    overflow-y: visible;
    overflow-x: visible;
  }
  .main__inner {
    width: 100%;
    max-width: none;
  }
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .sidebar.is-active {
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
  .sidebar__title {
    display: none;
  }
  .sidebar__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: none;
  }
  .sidebar__overlay.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
  }
  .accordion__question:hover {
    color: #532300;
  }
}
@media (max-width: calc(768px - 1px)){
  .textarea-wrapper--sm {
    width: 100%;
    height: 6rem;
  }
  .textarea-wrapper--lg {
    width: 100%;
    height: 6rem;
  }
  body {
    background-color: #FFFAF2;
  }
  body {
    font-size: 1rem;
  }
  .header__inner {
    gap: 16px;
  }
  .header a.header__home-link {
    gap: 16px;
  }
  .header__logo {
    width: 40px;
    min-width: 40px;
    aspect-ratio: 1/1;
    background-image: url("/assets/images/logo-sm.svg");
  }
  .main__inner {
    padding: 16px;
  }
  .accordion__question {
    font-size: 1.125rem;
    min-height: 66px;
    padding: 8px 80px 8px 16px;
  }
  .accordion__question::after {
    right: 16px;
  }
  .accordion__answer {
    padding: 32px 16px 0 16px;
  }
  .btn__group {
    gap: 24px;
  }
  .btn-lg {
    font-size: 1.125rem;
  }
  .btn-md {
    padding: 16px 16px;
    font-size: 1rem;
  }
  .checkbox__label {
    font-size: 1rem;
  }
  .label {
    font-size: 1rem;
  }
  .label__info {
    width: 80px;
  }
  .label__vote {
    width: 82px;
  }
  .label__member-status {
    padding: 1px 4px;
    margin-left: 0;
  }
  .notice__box {
    padding: 16px;
  }
  .radio__group {
    gap: 24px;
  }
  .radio__group--vertical {
    gap: 12px;
  }
  .radio__group--approval .radio__text {
    font-size: 1.125rem;
  }
  .radio__label {
    font-size: 1rem;
    padding-left: 36px;
  }
  .text--large {
    font-size: 1.375rem;
  }
  .info__group {
    padding: 56px 0;
  }
  .info__header {
    padding: 16px;
  }
  .info__header-inner {
    flex-direction: column;
  }
  .info__header-action {
    width: 100%;
    text-align: right;
  }
  .info-date-label {
    padding-left: 0;
  }
  .info-list {
    padding: 0;
  }
  .info-list__item {
    grid-template-columns: 1fr auto;
    grid-template-areas: "new ." "date label" "title title";
    padding: 16px 24px;
  }
  .info-list__new {
    margin-bottom: 4px;
  }
  .info-list__date-wrap {
    width: auto;
    margin-bottom: 16px;
  }
  .info-list .label {
    margin-left: auto;
    margin-bottom: 16px;
  }
  .section {
    padding: 24px 16px;
  }
  .section__group-complete {
    margin-bottom: 112px;
  }
  .section__block:not(:last-child) {
    margin-bottom: 48px;
  }
  .section__titlebar {
    font-size: 1.75rem;
    margin-bottom: 24px;
    padding: 16px;
  }
  .section__titlebar-icon {
    width: 28px;
    margin-right: 16px;
  }
  .section__titlebar-fit {
    padding-top: 0;
  }
  .section.section__titlebar-fit {
    padding: 0 24px 24px;
  }
  .section__title {
    gap: 12px;
    font-size: 1.5rem;
    padding: 0 0 16px;
    margin-bottom: 24px;
  }
  .section__title--text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .section__title--candidate .label__member-status {
    top: -2px;
    margin-top: 4px;
  }
  .section__sub-title {
    font-size: 1.375rem;
    padding: 0 4px;
  }
  .section__sub-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .section__sub-header .section__sub-title {
    margin-bottom: 8px;
  }
  .section__sub-header.election_results .section__sub-title {
    margin-bottom: 0px;
  }
  .section__meta {
    font-size: 1rem;
    padding: 8px 16px;
    margin: 0 4px;
    white-space: normal;
  }
  .section__meta-sep {
    margin: 0;
  }
  .section__form-title {
    font-size: 1.375rem;
  }
  .section__form-title-wrapper {
    margin-bottom: 24px;
  }
  .section__form-inner {
    justify-content: flex-start;
    padding: 0 16px 24px;
  }
  .section__form-group:not(:last-child) {
    margin-bottom: 24px;
  }
  .section__form-field {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .section__form-field__label {
    margin-bottom: 16px;
  }
  .section__form-field__value {
    font-size: 1rem;
    width: 100%;
  }
  .section__form-field__question {
    font-size: 1rem;
  }
  .section__gray-inner {
    justify-content: flex-start;
    padding: 0 12px 12px;
  }
  .section__gray-title {
    font-size: 1rem;
    line-height: 32px;
  }
  .section__gray-title-accent {
    font-size: 1.375rem;
  }
  .section__gray-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }
  .section__gray-box-label {
    margin-bottom: 16px;
  }
  .section__message {
    font-size: 1.125rem;
    margin-bottom: 0;
  }
  .section__confirm-message {
    font-size: 1.375rem;
  }
  .section__confirm-icon {
    margin-top: 8px;
  }
  .section__complete-message {
    font-size: 1.375rem;
    font-weight: 700;
  }
  .section__text-area {
    padding: 0 4px;
  }
  .section__question-group {
    padding: 0 8px 24px;
  }
  .section__h3-title {
    font-size: 1.25rem;
    padding: 0 4px;
  }
  .section__h4-title {
    font-size: 1.125rem;
    padding: 0 4px;
  }
  .section__sent-answer {
    font-size: 1rem;
  }
  .section__sent-message {
    font-size: 1rem;
    margin-top: 40px;
  }
  .section__result {
    margin-bottom: 24px;
  }
  .section__result-area {
    padding: 0;
  }
  .section__result-area__list {
    margin-bottom: 24px;
  }
  .section__result-area__name {
    font-size: 1.375rem;
  }
  .video-play-btn {
    width: 78px;
    height: 78px;
  }
  .modal-close-btn {
    width: 40px;
    height: 40px;
    margin-bottom: 11px;
    transform: translateX(5px);
  }
  .rich-text h1 {
    gap: 12px;
    font-size: 1.5rem;
    padding-bottom: 16px;
  }
  .rich-text h2 {
    font-size: 1.375rem;
  }
  .rich-text h3 {
    font-size: 1.25rem;
  }
  .rich-text h4 {
    font-size: 1.125rem;
  }
  .rich-text h5 {
    font-size: 1rem;
  }
  .login__main {
    align-items: flex-start;
  }
  .login__wrapper {
    min-height: 100vh;
    min-width: 360px;
    padding-top: 56px;
  }
  .login__title-wrapper {
    padding-top: 0;
  }
  .login__logo {
    margin-bottom: 48px;
  }
  .login__logo-image {
    width: 225px;
  }
  .login__title {
    font-size: 1.5rem;
  }
  .login__form-wrapper {
    padding: 0 24px;
  }
  .login__form-group--label {
    font-size: 1rem;
  }
  .login__forgot {
    font-size: 1rem;
  }
  .login__notice {
    padding: 0 24px;
    margin: 0 0 24px;
  }
  .auth__wrapper {
    padding-top: 0;
    justify-content: flex-start;
  }
  .auth__wrapper-inner {
    justify-content: flex-start;
  }
  .auth__title {
    padding: 8px;
  }
  .auth__message-complete {
    font-size: 1.125rem;
  }
  .vote__title {
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 0px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
  .vote__period {
    padding: 0 16px;
    margin-bottom: 16px;
  }
  .vote__period-text {
    font-size: 1rem;
  }
  .vote__table {
    font-size: 1rem;
  }
  .vote__table tbody tr.vote__row--has-label {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 16px;
    padding: 12px 16px;
  }
  .vote__table tbody td {
    padding: 0;
  }
  .vote__table tbody td:nth-child(1),
  .vote__table tbody td:nth-child(2),
  .vote__table tbody td:nth-child(4) {
    grid-column: 1;
  }
  .vote__table tbody td:nth-child(3) {
    grid-column: 2;
    grid-row: 1/span 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
  }
  .vote__table-head--left {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-right: 16px;
  }
  .vote__table-chunk {
    white-space: nowrap;
  }
  .vote__table-sep {
    margin: 0 2px;
  }
  .vote__table-head--right {
    margin-left: auto;
  }
  .vote__table th, .vote__table tr {
    padding: 16px;
  }
  .vote__table tbody tr {
    display: block;
    border-bottom: 1px solid #CCCCCC;
  }
  .vote__table tbody td {
    display: block;
    padding: 4px 0;
    border: none;
  }
  .vote__table-thead--pc {
    display: none;
  }
  .vote__table-thead--sp {
    display: table-header-group;
  }
  .vote-header {
    padding: 16px;
    transform: translateY(-16px);
  }
  .vote-header__text {
    font-size: 1rem;
  }
  .vote-header__range-sep {
    margin-inline: 0.5rem;
  }
  .candidate__content {
    flex-direction: column;
    gap: 32px;
    padding: 0;
    margin-bottom: 32px;
  }
  .candidate__content.election_results {
    gap: 24px;
  }
  .candidate__media {
    flex: none;
    width: 100%;
  }
  .candidate__play {
    width: 78px;
    height: 78px;
  }
  .candidate__profile {
    margin: 0 4px;
  }
  .candidate__profile-title {
    font-size: 1.25rem;
    padding-left: 0;
    margin-bottom: 24px;
  }
  .candidate__profile-text:not(:last-child) {
    margin-bottom: 24px;
  }
  .candidate__profile-list {
    margin-bottom: 24px;
  }
  .candidate__profile-list dt {
    min-width: 4rem;
  }
  .faq__title {
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 0px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 1.375rem;
  }
  .faq__group:not(:last-child) {
    margin-bottom: 48px;
  }
  .faq__anchor {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
  }
  .faq__anchor-button {
    width: 32px;
    height: 32px;
  }
  .faq__anchor-button img {
    width: 10px;
  }
  a.faq__page-top {
    margin-top: 24px;
    padding-right: 24px;
  }
  .modal__loading {
    height: 218px;
  }
  .modal__loading-text {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px){
  .is-pc {
    display: none;
  }
  .is-sp {
    display: table-row;
  }
  .is-sp th {
    display: flex;
    align-items: center;
  }
}