@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  font-size: 16px;
}

/* WindowsとMac両方で良い見栄えのフォントを設定 */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 1.6rem;
  color: #383838;
}

body {
  min-height: 100vh;
  height: 100%;
  font-size: 14px;
  color: #383838;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.5;
  letter-spacing: 0.8pt;
}

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

header,
nav,
article,
aside,
section,
footer {
  display: block;
  /*←新要素はデフォルトではinline要素なのでこの指定が必要。*/
}

header,
nav,
article,
aside,
section,
footer {
  margin: 0px;
}

a {
  text-decoration: none;
  color: #383838;
  cursor: pointer;
}

/** フォーム関連　**/
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #ccc;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
}
input:placeholder-shown,
textarea:placeholder-shown {
  color: #ccc;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}

input:disabled,
select:disabled,
textarea:disabled {
  color: #383838;
}

input {
  font-size: 14px;
  border: 1px solid #ccc;
  line-height: 24px;
  padding: 0 10px;
  background-color: #fafafa;
  border-radius: 2px;
}
input.date {
  width: 160px;
}
input.num2 {
  width: 30px;
}
input.meter {
  width: 40px;
}
input.file {
  display: none;
}
input.w100 {
  width: 100%;
}
input.sei, input.mei {
  width: 150px;
  text-align: center;
}
input.sei {
  margin-right: 5px;
}
input.shotnum {
  width: 4rem;
}

/** プルダウン基本 **/
.selectWrap {
  position: relative;
  display: inline-block;
}
.selectWrap::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #ccc;
  border-right: solid 2px #ccc;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
  pointer-events: none;
  z-index: 1;
  border-radius: 0px;
}

.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 24px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
  background-color: #fff;
}

/** グレイパネル **/
div.gray_panel,
div.gray_panel2,
div.gray_panel3 {
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10;
  opacity: 0.7;
  background: #666;
  text-align: center;
  display: none;
}
div.gray_panel.show,
div.gray_panel2.show,
div.gray_panel3.show {
  display: block;
}
div.gray_panel i,
div.gray_panel2 i,
div.gray_panel3 i {
  color: #fff;
  margin-top: 50vh;
}

#gray_panel {
  z-index: 25;
}

#gray_panel2 {
  z-index: 10;
}

#gray_panel3 {
  z-index: 30;
}

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

#alert-window,
.modalblock {
  position: fixed;
  z-index: 70;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  min-width: 300px;
}

#pledge-page1,
#pledge-page2 {
  display: none;
}
#pledge-page1 h3.pledge,
#pledge-page2 h3.pledge {
  margin-bottom: 15px;
}
#pledge-page1 p,
#pledge-page2 p {
  margin-top: 10px;
  text-indent: 1em;
}
#pledge-page1 p.copy,
#pledge-page2 p.copy {
  margin-top: 30px;
  text-align: right;
}
#pledge-page1 button.pledge-agree,
#pledge-page1 button.pledge-close,
#pledge-page2 button.pledge-agree,
#pledge-page2 button.pledge-close {
  background-color: #ff7f50;
  margin: 10px 0;
  padding: 10px 20px;
  color: #fff;
  border-width: 0px;
  font-size: 16px;
  font-weight: 800;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
}
#pledge-page1 button.pledge-agree:hover,
#pledge-page1 button.pledge-close:hover,
#pledge-page2 button.pledge-agree:hover,
#pledge-page2 button.pledge-close:hover {
  opacity: 0.8;
}
#pledge-page1 button.pledge-close,
#pledge-page2 button.pledge-close {
  background-color: #00bbff;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox],
  input[type=radio] {
    --active: #275efe;
    --active-inner: #fff;
    --border: #bbc1e1;
    --border-hover: #275efe;
    --background: #fafafa;
    --disabled: #f6f8ff;
    --disabled-inner: #e1e6f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background 0.3s, border-color 0.3s, -webkit-box-shadow 0.2s;
    transition: background 0.3s, border-color 0.3s, -webkit-box-shadow 0.2s;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  }
  input[type=checkbox]:after,
  input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  input[type=checkbox]:checked,
  input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  }
  input[type=checkbox]:disabled,
  input[type=radio]:disabled {
    cursor: not-allowed;
  }
  input[type=checkbox]:disabled + label,
  input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  input[type=checkbox]:hover:not(:checked):not(:disabled),
  input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=checkbox]:focus,
  input[type=radio]:focus {
    -webkit-box-shadow: 0 0 0 var(--focus);
            box-shadow: 0 0 0 var(--focus);
  }
  input[type=checkbox]:not(.switch),
  input[type=radio]:not(.switch) {
    width: 21px;
  }
  input[type=checkbox]:not(.switch):after,
  input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=checkbox]:not(.switch):checked,
  input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  input[type=checkbox] + label,
  input[type=radio] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }
  input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(var(--r, 20deg));
            transform: rotate(var(--r, 20deg));
  }
  input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  input[type=checkbox].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
            transform: translateX(var(--x, 0));
  }
  input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
  input[type=radio] {
    border-radius: 50%;
  }
  input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  input[type=radio]:checked {
    --s: 0.5;
  }
}
section.loginForm {
  margin: auto;
  background-color: #fff;
  max-width: 465px;
  min-width: 465px;
}
section.loginForm p {
  text-align: center;
}
section.loginForm h1 {
  margin-top: 20px;
  text-align: center;
  font-size: 28px;
}
section.loginForm p.btn {
  text-align: center;
  margin-top: 35px;
}
section.loginForm form#login {
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 50px;
  font-size: 14px;
}
section.loginForm dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 12px 0;
}
section.loginForm dl.mint {
  width: 365px;
  margin: 20px auto;
}
section.loginForm dl.mint dt {
  margin-right: 10px;
}
section.loginForm dl dt {
  width: 130px;
  font-weight: 100;
  color: #31aac0;
}
section.loginForm dl dt.otp {
  text-align: right;
  width: 160px;
}
section.loginForm dl input[type=text],
section.loginForm dl input[type=password] {
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0 10px;
  width: 200px;
  font-size: 14px;
}
section.loginForm button.login {
  border: 1px solid #31aac0;
  color: #fff;
  font-weight: 100;
  border-radius: 3px;
  background-color: #31aac0;
  width: 200px;
  padding: 10px 0;
  font-size: 20px;
  cursor: pointer;
}
section.loginForm button.login:hover {
  opacity: 0.8;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 5px 0;
  position: relative;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
*:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

header {
  container-type: inline-size;
}

body {
  container-type: inline-size;
}
body .exp .inner {
  padding: 20px 40px;
  font-size: 14px;
  color: #333;
}

/* グローバルナビのスタイル */
.global-nav {
  background-color: #222;
  height: 50px;
}

.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.global-nav li {
  padding: 0 15px;
}

.global-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* ナビゲーションリンクのホバー時のスタイル */
.global-nav a:hover {
  opacity: 0.7;
}

/* オプション：アクティブなページへのスタイル */
.global-nav a.active {
  /* アクティブなページのスタイルを追加してください */
}

/* オプション：レスポンシブ対応のスタイル */
@media screen and (max-width: 400px) {
  .global-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .global-nav li {
    padding: 10px;
  }
  .global-nav a {
    font-size: 12px;
  }
}
header {
  -webkit-box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.3);
  color: #efefef;
  background-color: #ff7e00;
  z-index: 2;
}
header .header-container {
  font-weight: 800;
  margin: 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-container .logo dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-container .logo dl dt {
  font-size: 18px;
}
header .header-container .logo dl dd {
  font-size: 13px;
  margin-left: 1rem;
}
header .header-container .user-info {
  margin-left: auto;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: -webkit-linear-gradient(315deg, #e8f3f3, #f2f3f4);
  background: linear-gradient(135deg, #e8f3f3, #f2f3f4);
}
main.login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #51aad0;
}

/* styles.css */
.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.side-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* サイドメニューのスタイル */
  width: 220px;
  min-width: 220px;
  background-color: #eee;
  -webkit-box-shadow: 10px 5px 10px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 5px 10px -6px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.side-menu ul {
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.side-menu ul li {
  margin: 5px 0;
}
.side-menu ul li.span {
  margin-top: 20px;
}
.side-menu ul li.pledge {
  display: none;
}
.side-menu ul li.pledge dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  font-weight: 800;
  padding: 5px;
}
.side-menu ul li.pledge dl dt {
  position: relative;
  height: 40px;
}
.side-menu ul li.pledge dl dt .arrow {
  position: absolute;
  top: -28px;
  left: -15px;
  width: 20px;
  height: 20px;
  border-left: 4px solid #333;
  border-bottom: 4px solid #333;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin: 50px auto;
  -webkit-animation: upDown 1s infinite;
          animation: upDown 1s infinite;
}
@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(0) rotate(135deg);
            transform: translateY(0) rotate(135deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-15px) rotate(135deg);
            transform: translateY(-15px) rotate(135deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(0) rotate(135deg);
            transform: translateY(0) rotate(135deg);
    opacity: 1;
  }
}
@keyframes upDown {
  0% {
    -webkit-transform: translateY(0) rotate(135deg);
            transform: translateY(0) rotate(135deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-15px) rotate(135deg);
            transform: translateY(-15px) rotate(135deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(0) rotate(135deg);
            transform: translateY(0) rotate(135deg);
    opacity: 1;
  }
}
.side-menu ul li.pledge dl dd {
  text-align: center;
}
.side-menu ul li a {
  font-size: 15px;
  line-height: 38px;
  display: block;
  color: #888;
  font-weight: 800;
  padding-left: 35px;
  position: relative;
}
.side-menu ul li a:hover {
  background-color: rgba(255, 126, 0, 0.3);
}
.side-menu ul li a.selected {
  background-color: #fff;
  font-weight: 800;
}
.side-menu ul li a::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 10px;
}
.side-menu ul li a.non::after {
  content: "";
}
.side-menu ul li a.non::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
}
.side-menu ul li a::before {
  position: absolute;
  left: 10px;
  font-weight: 700;
}
.side-menu ul li a.home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
}
.side-menu ul li a.list::before {
  content: "\f022";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.side-menu ul li a.consent::before {
  content: "\f56c";
  font-family: "Font Awesome 5 Free";
}
.side-menu ul li a.oath::before {
  content: "\f573";
  font-family: "Font Awesome 5 Free";
}
.side-menu ul li a.password::before {
  content: "\f09c";
  font-family: "Font Awesome 5 Free";
}
.side-menu ul li a.user::before {
  content: "\f013";
  font-family: "Font Awesome 5 Free";
}
.side-menu ul li a.useradd::before {
  content: "\f234";
  font-family: "Font Awesome 5 Free";
}
.side-menu ul.policy-links {
  font-size: 13px;
  margin-bottom: 20px;
}
.side-menu ul.policy-links li a {
  font-size: 13px;
}
.side-menu ul.policy-links li.copyright {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
}

.main-content {
  /* メインコンテンツエリアのスタイル */
}
.main-content .content-inner {
  margin: auto;
  padding: 10px;
  max-width: 1100px;
}

footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

p.explanation {
  font-weight: 800;
}

p.attention2 {
  font-size: 13px;
  color: #dc143c;
  font-weight: 800;
  margin-left: 2rem;
}

dl.flex1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
dl.flex1 input[type=text],
dl.flex1 input[type=email] {
  max-width: 480px;
}
dl.flex1.round {
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fafafa;
  width: calc(100% - 10px);
  margin: 10px auto;
  padding: 10px;
}
dl.flex1.round dd {
  color: #333;
}
dl.flex1 dt {
  -webkit-flex-basis: 180px;
      -ms-flex-preferred-size: 180px;
          flex-basis: 180px;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: right;
  padding-right: 10px;
  color: #604c3f;
  font-weight: 800;
}
dl.flex1 dt.required::after {
  content: "※";
  color: #ff6a6a;
}
dl.flex1 dd {
  padding-left: 10px;
  -webkit-flex-basis: calc(100% - 200px);
      -ms-flex-preferred-size: calc(100% - 200px);
          flex-basis: calc(100% - 200px);
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: left;
}
dl.flex1 dd ul {
  max-width: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
dl.flex1 dd ul li label {
  display: block;
  width: 80px;
}
dl.flex1 dd.ddflex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
dl.flex1 dd.ddflex p,
dl.flex1 dd.ddflex button,
dl.flex1 dd.ddflex a,
dl.flex1 dd.ddflex span {
  margin-left: 1rem;
}

section {
  container-type: inline-size;
  background-color: #e5f0f0;
  padding-top: 20px;
  padding-bottom: 20px;
}
section .contents-wrapper > div.inner {
  background-color: #fff;
  margin: 10px;
  padding: 10px;
  border: 2px #187fff solid;
  border-radius: 10px;
}
section h2 {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

input {
  width: calc(100% - 20px);
}
input.name {
  max-width: 200px;
}
input.longName {
  max-width: 480px;
}
input.exnum {
  width: 80px;
}
input.phone {
  width: 140px;
}
input[type=mail] {
  max-width: 400px;
}
input.zip {
  max-width: 8rem;
}
input.address {
  max-width: 700px;
}
input.ceo {
  max-width: 200px;
}

.passindex section {
  padding: 10px;
}
.passindex input[type=password] {
  width: 250px;
}
.passindex dl dt {
  margin-bottom: 10px;
}
.passindex dl dd {
  height: 32px;
  margin-left: 1rem;
  margin-bottom: 20px;
}

.button-wrap {
  margin: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.button-wrap.page2 {
  margin-top: 50px;
}

a.btn-back {
  display: block;
  background-color: transparent;
  width: 120px;
  text-align: center;
  border-radius: 4px;
  background-color: #3498db;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

/* デフォルトのボタンスタイルをリセット */
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* メインのスタイル */
.submit-button {
  background-color: #3498db;
  color: #ffffff;
  border-radius: 4px;
  padding: 10px 20px;
  min-width: 200px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.submit-button.custom {
  width: 330px;
}
.submit-button.hold {
  background-color: #ff7f50;
}
.submit-button.cancel {
  background-color: #bbb;
}

/* ホバー時のスタイル */
.submit-button:hover {
  background-color: #1c7db9;
}
.submit-button:hover.hold {
  background-color: #dc143c;
}

/* アクティブ（クリック中）時のスタイル */
.submit-button:active {
  background-color: #126eab;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* フォーカス時のスタイル */
.submit-button:focus {
  outline: none;
  /* フォーカス時のスタイルを追加してください */
}

/* オプション：ボタンが無効化された場合のスタイル */
.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hollnum_input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 700px;
  margin: 20px auto;
  font-size: 14px;
}
.hollnum_input p {
  font-weight: 800;
}

p.caution {
  color: #ff0000;
  font-size: 12px;
  font-weight: 800;
}
p.caution::before {
  content: "※";
}

/* クールなボタンのスタイル */
.cool-button {
  background-color: #3498db;
  color: #ffffff;
  border: 2px solid #3498db;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* アイコンのスタイル */
.cool-button i {
  margin-right: 5px;
}

/* ホバー時のスタイル */
.cool-button:hover {
  background-color: #1c7db9;
  color: #fff;
}

/* アクティブ（クリック中）時のスタイル */
.cool-button:active {
  background-color: #126eab;
  color: #fff;
}

/* フォーカス時のスタイル */
.cool-button:focus {
  outline: none;
  /* フォーカス時のスタイルを追加してください */
}

/* オプション：ボタンが無効化された場合のスタイル */
.cool-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

div.contact-person-info h3 {
  font-weight: 800;
  color: #666;
  font-size: 15px;
  padding: 10px;
}
div.contact-person-info h3.top-margin {
  margin-top: 20px;
}

dl.border {
  margin-bottom: 20px;
}
dl.border dt,
dl.border dd {
  border-width: 0 1px 1px 0;
  border-color: #eee;
  border-style: solid;
  height: 42px;
}
dl.border dt:first-child, dl.border dt:nth-child(2),
dl.border dd:first-child,
dl.border dd:nth-child(2) {
  border-top: 1px;
  border-color: #eee;
  border-style: solid;
}
dl.border dt {
  border-left: 1px;
  border-color: #eee;
  border-style: solid;
}

ul.rampart-wrap li:not(:first-child) {
  border-top: 3px dotted #eee;
  padding-top: 20px;
  margin-top: 20px;
}

section {
  display: none;
}
section.loginForm {
  display: block;
}
section.control {
  display: block;
}
section#status-table {
  display: block;
}

section#contactInfo {
  display: block;
}

@container (min-width: 1020px) {
  .contents-wrapper,
  .global-nav ul,
  header > .inner,
  div.exp {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .control-wrapper {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
table.entry-list {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
table.entry-list thead th {
  background-color: #66cdaa;
  /* 爽やかな緑色 */
  color: white;
  /* テキストを白色に */
  text-align: center;
  padding: 5px 2px;
  border: 1px solid #ccc;
}
table.entry-list thead th.date {
  width: 130px;
}
table.entry-list thead th.pref {
  width: 90px;
}
table.entry-list thead th.no {
  width: 90px;
}
table.entry-list thead th.name {
  width: 135px;
  max-width: 135px;
}
table.entry-list thead th.status {
  width: 115px;
}
table.entry-list tbody td {
  text-align: center;
  padding: 5px 2px;
  border: 1px solid #ccc;
}
table.entry-list tbody tr td:nth-child(4) {
  text-align: left;
}
table.entry-list tbody tr:nth-child(odd) {
  background-color: #fff;
}
table.entry-list tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
table.entry-list a.command {
  font-size: 12px;
  display: block;
  padding: 1px;
  width: 100px;
  border: 1px solid #aaa;
  border-radius: 4px;
  margin: auto;
  font-weight: 800;
}
table.entry-list a.command:hover {
  opacity: 0.8;
}

div.form-area {
  background-color: #fefefe;
  margin-bottom: 10px;
  padding: 10px;
}
div.form-area label {
  margin-left: 10px;
}

table.appoly {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.appoly th,
table.appoly td {
  padding: 5px 10px;
  border: 1px solid #cecece;
}
table.appoly th {
  background-color: #66cdaa;
  /* 爽やかな緑色 */
  color: white;
  /* テキストを白色に */
  width: 180px;
}
table.appoly td {
  background-color: #fff;
}
table.appoly td.name {
  width: 200px;
}

table.detail {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.detail th,
table.detail td {
  padding: 5px 10px;
  border: 1px solid #cecece;
}
table.detail th {
  background-color: #60ccda;
  color: #fff;
}
table.detail th.appoly {
  background-color: #ffd700;
  /* 申込 - ゴールド色 */
  color: #666;
  width: 40%;
}
table.detail th.db {
  width: 40%;
}
table.detail td {
  background-color: #fff;
}
table.detail tr td:last-child {
  text-align: center;
}
table.detail div {
  height: 30px;
  width: 30px;
  margin: auto;
  border-radius: 15px;
}
table.detail div.complete {
  background-color: #98fb98;
}
table.detail div.nomatch {
  background-color: #dc143c;
}

table.common {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
  font-size: 13px;
  /* データ行のスタイル */
  /* 奇数行の背景色を交互に設定 */
  /* ホバー時のスタイル */
}
table.common th,
table.common td {
  background-color: #fff;
  border: 1px solid #ccc;
  font-weight: 400;
}
table.common th.hidden,
table.common td.hidden {
  display: none;
}
table.common th {
  color: #000;
}
table.common th.pdf {
  width: 101px;
}
table.common td {
  padding: 5px 10px;
  border: 1px solid #dddddd;
}
table.common tbody tr:nth-child(odd) {
  background-color: #f7f7f7;
}
table.common tbody tr:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

a.command,
p.command {
  font-size: 12px;
  display: block;
  padding: 1px;
  width: 100px;
  border: 1px solid #aaa;
  border-radius: 4px;
  margin: auto;
  text-align: center;
  font-weight: 800;
}
a.command:hover,
p.command:hover {
  opacity: 0.8;
}
a.command.oath, a.command.consent, a.command.cert,
p.command.oath,
p.command.consent,
p.command.cert {
  width: 80px;
}

p.pledge,
button.pledge-button {
  font-size: 12px;
  display: block;
  padding: 2px 0;
  background-color: #ff7e00;
  background-color: #00bfff;
  width: 95px;
  color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  margin: auto;
  text-align: center;
  font-weight: 800;
}
p.pledge.done,
button.pledge-button.done {
  background-color: #32cd32;
}
p.pledge.pending,
button.pledge-button.pending {
  background-color: #ff7e00;
}
p.pledge.agree,
button.pledge-button.agree {
  background-color: #00bfff;
  -webkit-box-shadow: 2px 2px 2px #88a6f3;
          box-shadow: 2px 2px 2px #88a6f3;
  /* 影の濃さと高さ */
}
p.pledge.agree:hover,
button.pledge-button.agree:hover {
  opacity: 0.8;
}
p.pledge.agree:active,
button.pledge-button.agree:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

p.app,
a.app {
  background-color: #ffd700;
  /* 申込 - ゴールド色 */
  color: #666;
}
p.match,
a.match {
  background-color: #87cefa;
  /* 受付中 - スカイブルー */
  color: #fff;
}
p.comp,
a.comp {
  background-color: #98fb98;
  /* 完了 - ミントクリーム色 */
  color: #666;
}
p.accept,
a.accept {
  background-color: #ff7f50;
  /* 申請確認 - コーラル色 */
  color: #fff;
}
p.conf,
a.conf {
  background-color: aqua;
  /* 申請中 **/
  color: #666;
}

.edit-wrap {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#hall-detail {
  display: none;
}

.hallview {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hallview > div {
  width: 50%;
}
.hallview h3 {
  margin: 5px 0;
  text-align: center;
}
.hallview .info {
  height: 186px;
}
.hallview .info .inner {
  background-color: bisque;
  border: 1px solid #eee;
  margin: 5px;
  padding: 10px;
  font-size: 13px;
}

dl.hall-table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
dl.hall-table dt {
  margin: 5px 0;
  width: 120px;
  text-align: right;
  padding-right: 5px;
}
dl.hall-table dd {
  margin: 5px 0;
  width: calc(100% - 120px);
}

.extra-form {
  margin: 10px 0;
}
.extra-form label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 490px;
  padding: 10px;
  background-color: orange;
  color: #fff;
  margin: 5px 0;
  font-weight: 800;
  border-radius: 10px;
}
.extra-form label div {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 10px;
}
.extra-form p.attention {
  color: red;
  font-size: 13px;
  margin-left: 10px;
}

.button-area .inner {
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

#alert-window,
.modalblock {
  position: fixed;
  z-index: 70;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  max-width: 600px;
  max-height: 80vh;
  overflow: scroll;
  display: none;
  -webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
  min-width: 300px;
}
#alert-window .message,
.modalblock .message {
  margin-top: 10px;
  text-align: center;
  padding: 20px;
}
#alert-window .message div.inner,
.modalblock .message div.inner {
  text-align: left;
}
#alert-window .message dl,
.modalblock .message dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
}
#alert-window .message dl dt,
.modalblock .message dl dt {
  margin: 10px 0;
  width: 30px;
}
#alert-window .message dl dd,
.modalblock .message dl dd {
  margin: 10px 0;
  width: calc(100% - 30px);
}
#alert-window .message p.caution,
.modalblock .message p.caution {
  font-size: 14px;
  text-align: center;
  font-weight: 800;
}
#alert-window .btnWrap,
.modalblock .btnWrap {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 10px;
}
#alert-window .btnWrap div,
.modalblock .btnWrap div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
#alert-window .btnWrap.alert,
.modalblock .btnWrap.alert {
  display: none;
}
#alert-window .btnWrap.confirm button,
.modalblock .btnWrap.confirm button {
  margin: 10px;
}
#alert-window button.btn,
#alert-window a.btn,
.modalblock button.btn,
.modalblock a.btn {
  display: inline-block;
  border: 2px solid #888;
  padding: 0;
  width: 110px;
  text-align: center;
  font-weight: 800;
  color: #333;
  background-color: #f0f0f0;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
}
#alert-window button.btn.closeAlert,
#alert-window a.btn.closeAlert,
.modalblock button.btn.closeAlert,
.modalblock a.btn.closeAlert {
  display: inline-block;
  font-size: 12px;
  padding: 3px 15px;
}
#alert-window button.btn.back,
#alert-window a.btn.back,
.modalblock button.btn.back,
.modalblock a.btn.back {
  background-color: #ff7f50;
  color: #fff;
  border-width: 0px;
  width: 140px;
}

a.csvBtn {
  float: right;
  margin: 0 2px;
  border: 1px solid #f8f9f9;
  background-color: #91cddf;
  color: #fff;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
}

button.pledge {
  background-color: #ff7f50;
  margin: 0 5px;
  padding: 5px;
  width: calc(100% - 12px);
  color: #fff;
  border-width: 0px;
  font-size: 16px;
  font-weight: 800;
  border: 1px solid #fff;
  border-radius: 8px;
  cursor: pointer;
}
button.pledge:hover {
  opacity: 0.8;
}

.modalblock .flex-container {
  padding: 10px;
  border: 2px dotted #ccc;
  border-radius: 10px;
  margin: 20px 0 40px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.modalblock .flex-container a {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 calc(50% - 10px);
      -ms-flex: 1 1 calc(50% - 10px);
          flex: 1 1 calc(50% - 10px);
  /* 横2つになるよう計算 */
  text-align: center;
  padding: 12px 0;
  text-decoration: none;
  background-color: #3498db;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modalblock .flex-container a:hover {
  background-color: #217dbb;
}/*# sourceMappingURL=style.css.map */