@charset "UTF-8";
/* css for print */
@media print {
  /* ページのサイズをA4に設定 */
  @page {
    size: A4;
    /* 横向きにしたい場合は "A4 landscape" */
    margin: 1cm;
    /* 適切なマージンを設定 */
  }
  /* 不要な要素を非表示にする */
  header,
  footer,
  nav,
  .no-print {
    display: none;
  }
  /* 用紙幅に合わせて調整 */
  body {
    width: 100%;
    font-size: 12pt;
    /* フォントサイズを調整 */
  }
  /* テーブルや画像の縮小 */
  table,
  img {
    max-width: 100%;
    page-break-inside: avoid;
    /* テーブルや画像が途中で切れるのを防ぐ */
  }
}
section {
  page-break-inside: avoid;
  /* セクションが途中で切れるのを防ぐ */
  page-break-after: always;
  /* セクションの後で改ページを入れる */
}

/* テーブルや長い要素がページをまたぐ場合の対策 */
table {
  page-break-inside: auto;
  /* テーブルは途中で改ページを許可 */
}

tr {
  page-break-inside: avoid;
  /* テーブル行が途中で切れるのを防ぐ */
}

p,
h2,
img {
  page-break-inside: avoid;
  /* 段落や見出し、画像が途中で切れるのを防ぐ */
}

/* common css */
body {
  color: #000;
  font-family: "YakuHanMP", "YakuHanJP", "Noto Sans JP", sans-serif;
  background: none;
  font-size: 16px;
  /* デフォルトのフォントサイズを設定 */
  -webkit-text-size-adjust: none;
  /* iOS Safari向けのプレフィックス */
  -moz-text-size-adjust: none;
  /* Firefox向けのプレフィックス */
  -ms-text-size-adjust: none;
  /* Microsoft Edge向けのプレフィックス */
  text-size-adjust: none;
}

a,
.link {
  color: #191970;
  transition: all 0.5s;
}
a.tdon,
.link.tdon {
  text-decoration: underline;
}
a:hover,
.link:hover {
  color: #4c50a7;
  transition: all 0.5s;
}

button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Appearance and consistency in all browsers */
  *vertical-align: middle;
  /* Appearance and consistency in IE6/IE7 */
}

input[type=text],
input[type=email],
input[type=url],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=password],
input[type=file],
textarea {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 1rem;
  background-color: #fafafa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 36px;
  font-family: "YakuHanMP", "YakuHanJP", "Noto Sans JP", sans-serif;
}

input[type=search] {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

input[type=reset],
input[type=button],
input[type=submit] {
  background-color: #191970;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  display: block;
  margin-bottom: 30px;
  padding: 6px 18px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

input[type=reset]:hover,
input[type=button]:hover,
input[type=submit]:hover {
  background-color: #747474;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

input[type=search]:focus {
  background-color: #f8f8f8;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}

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

input[type=color] {
  position: relative;
  top: 0.25em;
}

label {
  display: block;
  margin: 0.25em 0;
}

.radio-g {
  margin: 0;
}
.radio-g label {
  position: relative;
  padding: 0.25em 1em 0.25em 2em;
  line-height: 1;
  margin: 0.5em 0;
}
.radio-g label input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: rgb(0, 0, 0) 0 0 4px -2px;
  background-color: rgb(255, 255, 255);
  background-image: radial-gradient(#191970 0%, #191970 15%, #191970 45%, rgba(0, 0, 0, 0) 45%);
  background-repeat: no-repeat;
  background-size: 0 0;
  background-position: center;
  transform-origin: center;
  outline: none;
}
.radio-g label input[type=radio]:checked {
  border: solid 2px #191970;
  background-size: 100% 100%;
  transition: background-size 0.1s cubic-bezier(0, 0, 0.2, 1);
  transform-origin: center;
}
.radio-g label input[type=radio]:active {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.radio-g.inline {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.radio-g.inline label {
  display: inline-block;
  margin: 0 0 0.5em;
}

.checkbox-g {
  margin: 0;
}
.checkbox-g label {
  position: relative;
  padding: 0.25em 1em 0.25em 2em;
  line-height: 1;
  margin: 0.5em 0;
}
.checkbox-g label input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.9) 0 0 4px -2px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transform-origin: center;
  outline: none;
}
.checkbox-g label input[type=checkbox]::after {
  content: "";
  display: block;
  width: 30%;
  height: 60%;
  position: absolute;
  top: 15%;
  left: 30%;
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  filter: invert(10%) grayscale(100%) contrast(100%);
}
.checkbox-g label input[type=checkbox]:checked {
  border: solid 2px #191970;
}
.checkbox-g label input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 30%;
  height: 60%;
  position: absolute;
  top: 15%;
  left: 30%;
  border: 2px solid #191970;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  filter: none;
}
.checkbox-g label input[type=checkbox]:active {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.checkbox-g.inline {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.checkbox-g.inline label {
  display: inline-block;
  margin: 0 0 0.5em;
}

.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  min-width: 180px;
  height: 2.2em;
  padding: 0.1em calc(0.8em + 30px) 0.1em 0.8em;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.selectbox select:focus {
  outline: none;
  background-color: #fff;
}
.selectbox select:active {
  background-color: #fff;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.password-wrapper {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 1rem;
}
.password-wrapper .password__input {
  flex: 1;
  outline: none;
  appearance: none;
  padding: 10px 0 10px 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  margin: 0;
}
.password-wrapper .password__toggle {
  width: 40px;
  border: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='48' width='48'><path d='M24 31.5q3.55 0 6.025-2.475Q32.5 26.55 32.5 23q0-3.55-2.475-6.025Q27.55 14.5 24 14.5q-3.55 0-6.025 2.475Q15.5 19.45 15.5 23q0 3.55 2.475 6.025Q20.45 31.5 24 31.5Zm0-2.9q-2.35 0-3.975-1.625T18.4 23q0-2.35 1.625-3.975T24 17.4q2.35 0 3.975 1.625T29.6 23q0 2.35-1.625 3.975T24 28.6Zm0 9.4q-7.3 0-13.2-4.15Q4.9 29.7 2 23q2.9-6.7 8.8-10.85Q16.7 8 24 8q7.3 0 13.2 4.15Q43.1 16.3 46 23q-2.9 6.7-8.8 10.85Q31.3 38 24 38Zm0-15Zm0 12q6.05 0 11.125-3.275T42.85 23q-2.65-5.45-7.725-8.725Q30.05 11 24 11t-11.125 3.275Q7.8 17.55 5.1 23q2.7 5.45 7.775 8.725Q17.95 35 24 35Z'/></svg>") no-repeat center center;
  background-size: 50% auto;
  cursor: pointer;
}
.password-wrapper .password__toggle.is-visible {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='48' width='48'><path d='m31.45 27.05-2.2-2.2q1.3-3.55-1.35-5.9-2.65-2.35-5.75-1.2l-2.2-2.2q.85-.55 1.9-.8 1.05-.25 2.15-.25 3.55 0 6.025 2.475Q32.5 19.45 32.5 23q0 1.1-.275 2.175-.275 1.075-.775 1.875Zm6.45 6.45-2-2q2.45-1.8 4.275-4.025Q42 25.25 42.85 23q-2.5-5.55-7.5-8.775Q30.35 11 24.5 11q-2.1 0-4.3.4-2.2.4-3.45.95L14.45 10q1.75-.8 4.475-1.4Q21.65 8 24.25 8q7.15 0 13.075 4.075Q43.25 16.15 46 23q-1.3 3.2-3.35 5.85-2.05 2.65-4.75 4.65Zm2.9 11.3-8.4-8.25q-1.75.7-3.95 1.075T24 38q-7.3 0-13.25-4.075T2 23q1-2.6 2.775-5.075T9.1 13.2L2.8 6.9l2.1-2.15L42.75 42.6ZM11.15 15.3q-1.85 1.35-3.575 3.55Q5.85 21.05 5.1 23q2.55 5.55 7.675 8.775Q17.9 35 24.4 35q1.65 0 3.25-.2t2.4-.6l-3.2-3.2q-.55.25-1.35.375T24 31.5q-3.5 0-6-2.45T15.5 23q0-.75.125-1.5T16 20.15Zm15.25 7.1Zm-5.8 2.9Z'/></svg>");
}

@media (any-hover: hover) {
  .password__toggle:hover {
    opacity: 0.7;
  }
}
.password-error {
  color: red;
  font-size: 0.9em;
  margin-top: 4px;
}
.password-error ul {
  margin: 0;
  padding-left: 20px;
  /* インデント */
}
.password-error ul li {
  list-style: disc;
}

.rating-set {
  display: flex;
}
.rating-set input {
  display: none;
}
.rating-set label {
  color: #aaa;
}
.rating-set label.checked {
  color: #ff7f00;
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 0.25em 2em;
  background-color: #191970;
  color: #fff;
  text-decoration: none;
  border-radius: 1em;
  font-weight: bold;
}
.btn.lg {
  padding: 1em 4em;
}
.btn:hover {
  background-color: #4c50a7;
  color: #fff;
}
.btn.light {
  background-color: #7175af;
}

img {
  max-width: 100%;
}

.fbox {
  display: flex;
  gap: 1.5rem;
}
.fbox > * {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .fbox > *.fitem-2 {
    flex: 0 0 calc(50% - 0.75rem) !important;
  }
  .fbox > *.fitem-3 {
    flex: 0 0 calc(33.333% - 1rem) !important;
  }
  .fbox > *.fitem-4 {
    flex: 0 0 calc(25% - 1.125rem) !important;
  }
  .fbox > *.fitem-5 {
    flex: 0 0 calc(20% - 1.2rem) !important;
  }
  .fbox > *.fitem-6 {
    flex: 0 0 calc(16.666% - 1.25rem) !important;
  }
}
.fbox.no-gap {
  gap: 0;
}
.fbox.no-gap > * {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .fbox.no-gap > *.fitem-3 {
    flex: 0 0 50% !important;
  }
  .fbox.no-gap > *.fitem-3 {
    flex: 0 0 33.333% !important;
  }
  .fbox.no-gap > *.fitem-4 {
    flex: 0 0 25% !important;
  }
  .fbox.no-gap > *.fitem-5 {
    flex: 0 0 20% !important;
  }
  .fbox.no-gap > *.fitem-6 {
    flex: 0 0 16.666% !important;
  }
}
.fbox.jc-center {
  justify-content: center;
}
.fbox.jc-sa {
  justify-content: space-around;
}
.fbox.jc-sb {
  justify-content: space-between;
}
.fbox.wrap {
  flex-wrap: wrap;
}
.fbox.fd-row {
  flex-direction: row;
}
.fbox.fd-column {
  flex-direction: column;
}
.fbox .full {
  flex: 0 0 100%;
  width: 100%;
}
.fbox .half {
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .fbox .half {
    flex: 0 0 50%;
    width: 50%;
  }
}

.auto-divide {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: left;
  justify-content: center;
}
.auto-divide > * {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .auto-divide > *.fitem-2 {
    flex: 0 0 calc(50% - 0.75rem) !important;
  }
  .auto-divide > *.fitem-3 {
    flex: 0 0 calc(33.333% - 1rem) !important;
  }
  .auto-divide > *.fitem-4 {
    flex: 0 0 calc(25% - 1.125rem) !important;
  }
  .auto-divide > *.fitem-5 {
    flex: 0 0 calc(20% - 1.2rem) !important;
  }
  .auto-divide > *.fitem-6 {
    flex: 0 0 calc(16.666% - 1.25rem) !important;
  }
}
.auto-divide.no-gap {
  gap: 0;
}
.auto-divide.no-gap > * {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .auto-divide.no-gap > *.fitem-3 {
    flex: 0 0 50% !important;
  }
  .auto-divide.no-gap > *.fitem-3 {
    flex: 0 0 33.333% !important;
  }
  .auto-divide.no-gap > *.fitem-4 {
    flex: 0 0 25% !important;
  }
  .auto-divide.no-gap > *.fitem-5 {
    flex: 0 0 20% !important;
  }
  .auto-divide.no-gap > *.fitem-6 {
    flex: 0 0 16.666% !important;
  }
}

.t-l {
  text-align: left;
}

.t-r {
  text-align: right;
}

.t-c {
  text-align: center;
}

br.sp {
  display: block;
}
@media (min-width: 769px) {
  br.sp {
    display: none;
  }
}
br.pc {
  display: none;
}
@media (min-width: 769px) {
  br.pc {
    display: block;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: solid 1px #fff;
  margin-bottom: 1rem;
}
table tr {
  border-bottom: solid 1px #fff;
}
table tr th {
  padding: 0.5rem;
  text-align: center;
  border-right: solid 1px #fff;
  background-color: rgba(0, 0, 0, 0.2);
  width: 9rem;
  font-size: 0.7rem;
}
@media (min-width: 769px) {
  table tr th {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    width: 15rem;
  }
}
table tr td {
  padding: 0.5rem;
  text-align: left;
  width: calc(100% - 9rem);
}
@media (min-width: 769px) {
  table tr td {
    padding: 0.5rem 1rem;
    width: calc(100% - 15rem);
  }
}
table tfoot tr {
  background-color: rgba(0, 0, 0, 0.2) !important;
  border-bottom: none;
}
table.alt tr {
  background-color: #fff;
}
table.alt tr:nth-child(odd) {
  background-color: rgba(199, 230, 206, 0.5);
}
table .btn {
  padding: 0.25em 1em;
  margin: 0;
}
table.mypage tr th {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
}
table.mypage tr td {
  display: block;
  width: 100%;
  padding: 1.5rem 0;
}

.accordion {
  width: 100%;
  margin: 0.75rem auto 1.5rem;
}
.accordion .a_item {
  border: 1px solid #ccc;
  margin-top: 0.75rem;
  cursor: pointer;
}
.accordion .a_item .a_title {
  position: relative;
  padding: 15px 60px 15px 20px;
  font-weight: bold;
  cursor: pointer;
}
.accordion .a_item .a_title::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #191970;
  width: 20px;
  height: 4px;
  transition: all 0.3s;
}
.accordion .a_item .a_title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #191970;
  width: 20px;
  height: 4px;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.accordion .a_item .a_content {
  padding: 0 20px 15px 20px;
  display: none;
  cursor: pointer;
}
.accordion .a_item .a_content.is-open {
  display: block;
}
.accordion .a_item.is-active .a_title::before {
  transform: rotate(180deg);
}
.accordion .a_item.is-active .a_title::after {
  transform: rotate(180deg);
  opacity: 0;
}

.tab-container {
  width: 100%;
  margin: 0 auto;
}
.tab-container .tab-menu ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tab-container .tab-menu ul li {
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: auto;
}
.tab-container .tab-item > div {
  display: none;
}
.tab-container .tab-item > div.active {
  display: block;
}

.stab-container {
  width: 100%;
  margin: 0 auto;
}
.stab-container .stab-menu ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stab-container .stab-menu ul li {
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: auto;
}
.stab-container .stab-item > div {
  display: none;
}
.stab-container .stab-item > div.active {
  display: block;
}

.modal .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
}
.modal .modal__overlay .modal__container {
  background-color: #fff;
  padding: 2rem;
  max-width: 800px;
  width: 80vw;
  max-height: 80vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}
.modal .modal__overlay .modal__container .modal__close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 2em;
  height: 2em;
  line-height: 1;
  padding: 0.5em;
  border-radius: 100%;
  border: 0;
}
.modal .modal__overlay .modal__container .modal__close:before {
  content: "✕";
}

/**************************\
	Demo Animation Style
  \**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* keyframes */
@keyframes animbg {
  from {
    background-position: 100% 100%;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/*
animation-name: animbg;
animation-fill-mode:backwards;
animation-duration:1s;
animation-iteration-count:1; //infinite
animation-timing-function:liner;
animation-delay: 0;
animation-direction:alternate;
*/
#comment {
  padding: 2px;
  border: solid 2px #495151;
  margin-bottom: 1.5rem;
  max-width: 922px;
  margin-right: auto;
  margin-left: auto;
}
#comment h2 {
  background-color: #495151;
  color: #fff;
  padding: 0.75rem;
  margin: 0;
  font-size: 1.2rem;
}
#comment .comment-container {
  padding: 1.5rem;
}
#comment .comment-container p {
  text-align: center;
  margin: 0;
}
#comment .comment-container .comment h3 {
  font-size: 1.2rem;
  font-weight: bold;
}
#comment .comment-container .comment .k-content {
  font-weight: 300;
}
#comment .comment-container .comment .k-content {
  margin: 1.5rem auto;
}
#comment .comment-container .comment .k-meta {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-start;
  font-weight: 300;
  flex-direction: column;
}
@media (min-width: 769px) {
  #comment .comment-container .comment .k-meta {
    gap: 1.5rem;
    flex-direction: row;
  }
}
#comment .comment-container .comment .k-meta span {
  display: inline-block;
}
#comment .comment-container .comment .k-meta span.k-rate-1:before {
  content: "★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-1:after {
  content: "★★★★";
  color: #aaa;
}
#comment .comment-container .comment .k-meta span.k-rate-2:before {
  content: "★★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-2:after {
  content: "★★★";
  color: #aaa;
}
#comment .comment-container .comment .k-meta span.k-rate-3:before {
  content: "★★★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-3:after {
  content: "★★";
  color: #aaa;
}
#comment .comment-container .comment .k-meta span.k-rate-4:before {
  content: "★★★★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-4:after {
  content: "★";
  color: #aaa;
}
#comment .comment-container .comment .k-meta span.k-rate-5:before {
  content: "★★★★★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-5:after {
  content: "";
  color: #aaa;
}

#post-com-container {
  padding: 0;
  border: solid 1px #495151;
  max-width: 922px;
  margin-right: auto;
  margin-left: auto;
}
#post-com-container #com-trigger {
  padding: 0.75rem;
  text-align: center;
  font-size: 1.2rem;
  background-color: #fff;
  color: #495151;
}
#post-com-container #com-inner {
  border-top: solid 1px #495151;
  padding: 0;
  background-color: #E5E7EB;
}
#post-com-container #com-inner form div {
  padding: 1.5rem;
}
#post-com-container #com-inner form div + div {
  border-top: solid 1px #495151;
}
#post-com-container #com-inner form div h3 {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
#post-com-container #com-inner form div h3 span {
  background-color: #000;
  color: #fff;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  font-size: 0.6em;
  margin-left: 1em;
  line-height: 1em;
}
#post-com-container #com-inner form div.send {
  border: none;
  text-align: center;
  margin-top: -1.5rem;
}
#post-com-container #com-inner form div.attention h3 {
  text-align: center;
  color: #8f252c;
}
#post-com-container #com-inner form div.attention p {
  max-width: 600px;
  margin: 1rem auto;
}
#post-com-container #com-inner form div p {
  font-size: 0.8em;
}
#post-com-container #com-inner form div input,
#post-com-container #com-inner form div textarea {
  border: none;
  margin-bottom: 0.75rem;
}
#post-com-container #com-inner form div input[type=text]:focus,
#post-com-container #com-inner form div input[type=password]:focus,
#post-com-container #com-inner form div textarea:focus {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.05);
}
#post-com-container #com-inner form div input[type=text]:focus,
#post-com-container #com-inner form div input[type=password]:focus,
#post-com-container #com-inner form div textarea:active {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.05);
}
#post-com-container #com-inner form div div {
  background-color: #fff;
  padding: 0.75rem;
}

.hidden {
  display: none !important;
}

.parallax {
  position: relative;
  height: 50vh;
  /* パフォーマンスを最適化 */
  overflow: hidden;
}
.parallax .inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  /* 半透明 */
}
.parallax .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  clip-path: inset(0);
}
.parallax .bg .img {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*
&.parallax{
	height: 100vh;
	text-align: center;
	.bg{
		.img{
			background-image: url('../images/reesoratop.webp');
		}
	}
}
*/
/* this site css start */
.btn {
  border-radius: 3px;
  color: white;
  background-color: rgb(24.347826087, 26.7826086957, 31.652173913);
  transition: color 0.3s;
}
.btn:hover {
  color: rgb(158.5328467153, 158.5328467153, 233.4671532847);
  background-color: rgb(24.347826087, 26.7826086957, 31.652173913);
}
.btn.btn-sm {
  font-size: 0.8rem;
  padding: 0.2em 0.5em;
}

.container {
  width: 100%;
  max-width: 1658px;
  margin: 0 auto;
  padding: 1.5rem;
}

body#system {
  height: 100vh !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
body#system header {
  background-color: rgb(24.347826087, 26.7826086957, 31.652173913);
  z-index: 100;
  box-shadow: 0 1px 0 rgb(46.5217391304, 51.1739130435, 60.4782608696);
  color: #fff;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  flex: 0 0 100%;
}
body#system header > * {
  margin: 0;
  padding: 0;
}
body#system header a {
  display: inline-block;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-decoration: none;
  color: rgb(158.5328467153, 158.5328467153, 233.4671532847);
}
body#system header a:hover {
  color: rgb(106.5555555556, 110.1111111111, 187.4444444444);
}
body#system header a img {
  max-height: 1em;
  width: auto;
  height: 100%;
}
body#system nav {
  height: 100%;
  background-color: rgb(24.347826087, 26.7826086957, 31.652173913);
  padding: 0;
  flex: 0 0 300px;
  height: calc(100% - 5rem);
}
body#system nav ul {
  margin: 0;
  padding: 0 0 1px;
  background-color: rgb(46.5217391304, 51.1739130435, 60.4782608696);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
body#system nav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0;
}
body#system nav ul li a {
  display: block;
  padding: 0.5rem 0.5em;
  text-decoration: none;
  color: rgb(158.5328467153, 158.5328467153, 233.4671532847);
  background-color: rgb(24.347826087, 26.7826086957, 31.652173913);
}
body#system nav ul li a:hover {
  color: rgb(106.5555555556, 110.1111111111, 187.4444444444);
}
body#system nav ul li span {
  display: block;
  padding: 0.5rem 0.5em;
  text-decoration: none;
  background-color: rgb(158.5328467153, 158.5328467153, 233.4671532847);
  color: rgb(24.347826087, 26.7826086957, 31.652173913);
}
body#system main {
  padding: 1.5rem;
  height: calc(100% - 5rem);
  flex: 0 0 calc(100% - 300px);
  background-color: rgb(247.9464285714, 249.7321428571, 252.0535714286);
  overflow-y: scroll;
}
body#system main.full {
  flex: 0 0 100%;
  overflow-y: auto;
  height: auto;
  min-height: calc(100% - 5rem);
  padding: 0;
}
body#system main h1 {
  font-size: 1.5rem;
  font-weight: bold;
  background-color: rgb(200.2262773723, 200.2262773723, 242.7737226277);
  color: rgb(24.347826087, 26.7826086957, 31.652173913);
  padding: 0.25em 0.5em;
  margin-bottom: 1em;
  box-shadow: 0 3px 0px rgba(0, 0, 0, 0.1), 3px 3px 0px rgba(0, 0, 0, 0.1), -1px 0 0px rgba(0, 0, 0, 0.1);
}
body#system main h2 {
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: solid 2px #000;
  padding-bottom: 0.25em;
  margin-bottom: 1.5rem;
}
body#system main h3 {
  font-size: 1rem;
  font-weight: bold;
}
body#system main .message {
  padding: 1.5rem;
  margin: 1.5rem auto;
  background-color: #fff;
  box-shadow: 0 3px 0px rgba(0, 0, 0, 0.1), 3px 3px 0px rgba(0, 0, 0, 0.1), -1px 0 0px rgba(0, 0, 0, 0.1);
}
body#system main .message > *:last-child {
  margin-bottom: 0;
}
body#system main .message.alert {
  background-color: rgba(255, 0, 0, 0.1);
}
body#system main form {
  margin-bottom: 1.5rem;
}
body#system main .table-wrap-b {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}
body#system main .table-wrap-b table {
  table-layout: fixed;
  width: 100%;
  max-width: none;
  position: relative;
}
body#system main .table-wrap-b table tr th {
  width: auto;
  border: solid 1px rgb(24.347826087, 26.7826086957, 31.652173913);
  padding-right: 0;
  padding-left: 0;
}
body#system main .table-wrap-b table tr td {
  width: auto;
  background-color: rgb(247.9464285714, 249.7321428571, 252.0535714286);
  border: solid 1px rgb(24.347826087, 26.7826086957, 31.652173913);
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
body#system main .table-wrap-b table tr td:last-child {
  width: 5rem;
}
body#system main .table-wrap-b table tr td button {
  display: inline-block;
  margin: auto;
}
body#system main .table-wrap-b table tr td > * {
  margin: 0;
}
body#system main .table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}
body#system main .table-wrap.narrow {
  max-width: 1080px;
  margin: 0 auto;
}
body#system main .table-wrap table {
  table-layout: fixed;
  width: 100%;
  max-width: none;
  position: relative;
}
body#system main .table-wrap table tr th {
  width: auto;
  padding-right: 0;
  padding-left: 0;
  border: solid 1px rgb(24.347826087, 26.7826086957, 31.652173913);
}
body#system main .table-wrap table tr td {
  width: auto;
  background-color: rgb(247.9464285714, 249.7321428571, 252.0535714286);
  border: solid 1px rgb(24.347826087, 26.7826086957, 31.652173913);
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
body#system main .table-wrap table tr td > * {
  margin: 0;
}
body#system main .table-wrap-free {
  display: block;
  width: 100%;
  overflow-x: auto;
  position: relative;
}
body#system main .table-wrap-free table {
  width: auto;
  position: relative;
}
body#system main .table-wrap-free table tr th {
  width: auto;
  padding-right: 0;
  padding-left: 0;
  border: solid 1px rgb(24.347826087, 26.7826086957, 31.652173913);
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
body#system main .table-wrap-free table tr td {
  white-space: nowrap;
  width: auto;
  background-color: rgb(247.9464285714, 249.7321428571, 252.0535714286);
  border: solid 1px rgb(24.347826087, 26.7826086957, 31.652173913);
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
body#system main .table-wrap-free table tr td > * {
  margin: 0;
}
body#system footer {
  background-color: rgb(24.347826087, 26.7826086957, 31.652173913);
  color: #fff;
  flex: 0 0 100%;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  height: 2rem;
  flex: 0 0 100%;
}
body#system footer > * {
  margin: 0;
  padding: 0;
}
body#system footer a {
  display: inline-block;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-decoration: none;
}

.tab-get {
  width: 100%;
  margin: 0 auto;
}
.tab-get .tab-menu ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tab-get .tab-menu ul li {
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: auto;
}
.tab-get .tab-menu ul li a {
  display: block;
  border: solid 1px #fff;
  border-bottom: none;
  padding: 0.75rem 1.5rem 0.5rem;
  text-decoration: none;
  box-shadow: 3px 0 0px rgba(0, 0, 0, 0.1), -1px 0 0px rgba(0, 0, 0, 0.1), 0 -1px 0px rgba(0, 0, 0, 0.1);
  background-color: rgb(229.9598214286, 236.2991071429, 244.5401785714);
}
.tab-get .tab-menu ul li a:hover {
  background-color: rgb(211.9732142857, 222.8660714286, 237.0267857143);
}
.tab-get .tab-menu ul li.active a {
  background-color: #fff;
}
.tab-get .tab-main {
  border: solid 1px #fff;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0 3px 0px rgba(0, 0, 0, 0.1), 3px 3px 0px rgba(0, 0, 0, 0.1), -1px 0 0px rgba(0, 0, 0, 0.1);
}

#sortable {
  list-style-type: none;
  margin: 0 0 1.5rem;
  padding: 0;
  width: 300px;
}
#sortable li {
  margin: 2px 0;
  padding: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: grab;
}
#sortable li::before {
  content: "☰";
  margin-right: 0.25em;
}
#sortable li.dragging {
  opacity: 0.5;
}/*# sourceMappingURL=base.css.map */