@charset "UTF-8";

body {
  width: 100%;
  margin: 0;
}

#container {
  width: 100%;
  max-width: 100%;
}

#container a {
  color: #0073be;
  letter-spacing: 0;
}

#event_app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  font-family: "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  padding-bottom: 50px;
  padding-top: 20px;
}

.content_title {
  display: none;
}

/* nav */
.__nav {
  position: fixed;
  z-index: 2;
  top: 70px;
  left: 0;
  width: 250px;
  height: calc(100% - 70px);
  padding: 10px;
  background: #f4f4f4;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
  overflow-y: auto;
  padding-bottom: 60px;
}

.__nav::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 70px;
  background: #f4f4f4;
}

@media screen and (width <=768px) {
  .__nav {
    top: 0;
    width: 50px;
    height: 100%;
    padding: 70px 5px 10px;
    overflow-y: hidden;
    transform: translateX(calc(-100% + 50px));
    transition: transform 0.5s ease;
  }

  .__nav.is-open {
    width: 250px;
    overflow-y: auto;
    transform: translateX(0);
  }

  .__nav::after {
    display: none;
  }
}

@media screen and (width <=480px) {
  .__nav {
    padding: 56px 5px 10px;
  }
}

.__sp_btn {
  display: block;
}

@media screen and (width <=768px) {
  .icon-menu,
  .icon-close {
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .icon-close {
    display: none;
  }

  .icon-menu::before,
  .icon-close::before {
    content: "\f138";
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
    display: inline-flex;
    justify-content: center;
    margin: auto;
    cursor: pointer;
    font-family: "font awesome 6 free";
    font-weight: 600;
  }

  .icon-close::before {
    content: "\f137";
  }

  .__nav.is-open .icon-menu {
    display: none;
  }

  .__nav.is-open .icon-close {
    display: flex;
  }
}

.__overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0 0 0 / 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media screen and (width <=768px) {
  .__overlay {
    display: block;
  }
}

.__nav.is-open + .__overlay {
  opacity: 1;
  pointer-events: auto;
}

ul.__parent_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  counter-reset: my-counter;
}

@media screen and (width <=768px) {
  ul.__parent_list {
    display: none;
  }

  .__nav.is-open .__parent_list {
    display: block;
    margin-top: 40px;
  }
}

ul.__parent_list li.nmb {
  position: relative;
  font-size: 0.875rem;
  list-style: none;
  padding-left: 1.25rem;
}

ul.__parent_list li.nmb::before {
  content: counter(my-counter) ",";
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: my-counter;
}

ul.__child_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 1.25rem;
  padding-top: 10px;
}

ul.__child_list li {
  font-size: 0.8125rem;
  list-style: disc;
}

ul.__parent_list li a,
ul.__child_list li a {
  text-decoration: none;
}

/* section */
.main_section_wrapper {
  display: flex;
  margin-left: 250px;
}

@media screen and (width <=768px) {
  .main_section_wrapper {
    margin-left: 50px;
  }
}

section.main_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;

  /* padding: 0 0 0 50px; */
  counter-reset: my-counter;
  max-width: 900px;
}

@media screen and (width <=1300px) {
  section.main_section {
    padding: 0 10px 0 20px;
  }
}

@media screen and (width <=768px) {
  section.main_section {
    padding: 0 5px;
    font-size: 0.8125rem;
  }
}

@media screen and (width <=480px) {
  section.main_section {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

section.main_section article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* ｈ */
h2.h2_title {
  flex-basis: 100%;
  padding: 10px;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
}

@media screen and (width <=768px) {
  h2.h2_title {
    font-size: 1.125rem;
  }
}

@media screen and (width <=480px) {
  h2.h2_title {
    font-size: 0.875rem;
  }
}

h3.h3_nmb_title {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  padding-left: 1.25rem;
}

@media screen and (width <=768px) {
  h3.h3_nmb_title {
    font-size: 1rem;
  }
}

@media screen and (width <=480px) {
  h3.h3_nmb_title {
    font-size: 0.875rem;
  }
}

h3.h3_nmb_title::before {
  content: counter(my-counter) ",";
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: my-counter;
}

h4.h4_title,
h5.h5_title,
h5.list_title,
h6.h6_title {
  height: auto;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (width <=768px) {
  h4.h4_title,
  h5.h5_title,
  h5.list_title,
  h6.h6_title {
    font-size: 0.875rem;
  }
}

@media screen and (width <=480px) {
  h4.h4_title,
  h5.h5_title,
  h5.list_title,
  h6.h6_title {
    font-size: 0.8125rem;
  }
}

h5.list_title {
  margin: 0;
}

/* grid */
.__grid {
  display: grid;
  row-gap: 1rem;
  grid-template-columns: 0.3fr 1fr;
}

.__grid_left,
.__grid_right {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 1rem;
}

@media screen and (width <=768px) {
  .__grid_left,
  .__grid_right {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.__grid_left {
  font-weight: 600;
}

.__grid_left small {
  font-size: 0.875rem;
}

@media screen and (width <=480px) {
  .__grid_left small {
    font-size: 0.7rem;
  }
}

.__grid_right {
  font-size: 0.9375rem;
}

@media screen and (width <=480px) {
  .__grid_right {
    font-size: 0.75rem;
  }
}

.__grid_right em {
  font-weight: 600;
}

.__grid_right small.__txt_red {
  display: block;
  font-size: 0.75rem;
  color: #f00;
  font-weight: 600;
}

@media screen and (width <=480px) {
  .__grid {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .__grid_left {
    font-weight: 600;
  }

  .__grid_right {
    margin-bottom: 10px;
    margin-left: 10px;
  }

  .__grid_right small.__txt_red {
    font-size: 0.625rem;
  }
}

.__grid_border {
  display: grid;
  gap: 0;
  grid-template-columns: 0.5fr 1fr;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.__grid_border div {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.__grid_b-bottom {
  display: grid;
  gap: 0;
  grid-template-columns: 0.5fr 1fr;
}

.__grid_b-bottom div {
  padding: 10px;
  border-bottom: 1px dotted #ccc;
}

@media screen and (width <=768px) {
  .__grid_b-bottom div {
    border-bottom: none;
  }
}

.__grid_b-bottom div:nth-last-child(-n + 1) {
  border-bottom: none;
}

.__2col {
  grid-template-columns: 1fr 1fr;
}

.__3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.__2col div,
.__3col div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3px 10px;
  font-size: 0.875rem;
  text-align: center;
}

@media screen and (width <=480px) {
  .__2col div,
  .__3col div {
    font-size: 0.75rem;
  }
}

.__2col div:nth-child(odd) {
  background-color: #f9f9f9;
}

.__2col div:nth-child(even) {
  background-color: #fff2cc;
}

.__2col div:nth-child(n + 3) {
  display: block;
  text-align: left;
}

.__3col div:nth-child(3n + 1) {
  background-color: #fce4d6;
}

.__3col div:nth-child(3n),
.__3col div:nth-child(3n + 2) {
  color: #b00;
}

.__3col div:nth-child(1) {
  color: #333;
  background-color: #ffc000;
  font-weight: 600;
}

.__3col div:nth-child(2) {
  color: #333;
  background-color: #ffe699;
  font-weight: 600;
}

.__3col div:nth-child(3) {
  color: #333;
  background-color: #fff2cc;
  font-weight: 600;
}

.__3col div.-c-black {
  color: #333;
}

.__wide {
  grid-column: span 2;
}

.__wide-3col {
  grid-column: span 3;
}

.__sub_grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 0.3fr 1fr;
}

@media screen and (width <=480px) {
  .__sub_grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 1rem;
  }

  .__sub_grid div:nth-child(odd) {
    font-weight: 600;
  }
}

.__grid_cols {
  display: grid !important;
  grid-column: 1 / 3;
}

.__parent_grid {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: 2.5rem 1fr 1fr;
  grid-gap: 0;
  margin-top: 20px;
}

.__parent_grid div {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.__child_grid2,
.__child_grid4,
.__child_grid6,
.__child_grid8 {
  border-left: 1px solid #555;
  border-top: 1px solid #555;
}

.__child_grid3,
.__child_grid5,
.__child_grid7,
.__child_grid9 {
  border-left: 1px solid #555;
  border-right: 1px solid #555;
  border-top: 1px solid #555;
}

.__child_grid8,
.__child_grid9 {
  border-bottom: 1px solid #555;
}

.__child_grid1 {
  grid-area: 1 / 1 / 6 / 2;
}

.__child_grid2 {
  grid-area: 1 / 2 / 2 / 3;
}

.__child_grid3 {
  grid-area: 1 / 3 / 2 / 4;
}

.__child_grid4 {
  grid-area: 2 / 2 / 3 / 3;
}

.__child_grid5 {
  grid-area: 2 / 3 / 3 / 4;
}

.__child_grid6 {
  grid-area: 3 / 2 / 4 / 3;
}

.__child_grid7 {
  grid-area: 3 / 3 / 4 / 4;
}

.__child_grid8 {
  grid-area: 4 / 2 / 5 / 3;
}

.__child_grid9 {
  grid-area: 4 / 3 / 5 / 4;
}

.__child_grid10 {
  display: flex;
  justify-content: flex-end;
  grid-area: 5 / 2 / 6 / 4;
}

.__inline-flex {
  display: flex;
  border: none !important;
}

.__inline-flex span {
  word-break: break-all;
}

.__inline-flex small {
  font-size: 0.75rem;
}

/* su_box */

.su_box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px dotted #666;
  margin-top: 1rem;
}

h3.su_box__title {
  font-size: 1rem;
  color: #007;
  text-align: center;
  border-bottom: 1px dashed #007;
  font-weight: 600;
}

.su_box__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1.5fr;
}

.su_box__grid:not(:last-child) {
  border-bottom: 1px dotted #666;
  padding-bottom: 1rem;
}

h4.su_box__subtitle {
  grid-column: span 2;
  height: auto;
  padding: 0;
  font-size: 0.875rem;
  color: red;
  font-weight: 600;
}

.su_box__grid_left {
  padding: 0;
}

.su_box__grid_right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}

.su_box__label-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 10px 0;
  font-size: 0.875rem;
  color: #07b;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #07b;
  font-weight: 600;
}

.su_box__label-title small {
  font-size: 0.75rem;
  font-weight: normal;
}

@media screen and (width <=768px) {
  h3.su_box__title,
  .su_box__grid,
  h4.su_box__subtitle,
  .su_box__label-title {
    font-size: 0.75rem;
  }

  .su_box__label-title small {
    font-size: 0.625rem;
  }
}

@media screen and (width <=480px) {
  .su_box__grid {
    grid-template-columns: 1fr;
  }

  h4.su_box__subtitle {
    grid-column: span 1;
  }
}

/* p要素 */
p {
  margin: 0;
}

p.lead {
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

@media screen and (width <=768px) {
  p.lead {
    font-size: 0.8125rem;
  }
}

@media screen and (width <=480px) {
  p.lead {
    font-size: 0.75rem;
    margin-left: 5px;
  }
}

/* box要素 */
.__box {
  padding: 5px;
  background: lightyellow;
  border-radius: 4px;
}

.__border_box {
  display: inline-flex;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #555;
}

.__light_icon,
.__finger_icon {
  position: relative;
  margin: 0;
  padding-left: 1.5rem;
}

.__light_icon::before,
.__finger_icon::before {
  content: "\f0eb";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  color: gold;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}

.__finger_icon::before {
  content: "\f0a4";
}

.__border_block,
.__border_wblock,
.__border_block2 {
  position: relative;
  flex-basis: 400px;
  text-align: center;
  border: 1px solid #999;
  margin-bottom: 1.5rem;
}

@media screen and (width <=480px) {
  .__border_block,
  .__border_wblock,
  .__border_block2 {
    flex-basis: 0;
    margin-bottom: 4rem;
  }

  .__sp_absolute,
  .__sp_absolute2 {
    position: absolute;
    right: 0;
    bottom: 40px;
    left: 0;
    display: flex;
    justify-content: center;
  }

  .__sp_absolute2 {
    bottom: 30px;
    line-height: 1.25;
  }
}

.__border_wblock {
  display: flex;
  justify-content: center;
}

.__border_block2 {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: left;
}

.__border_block::after,
.__border_block2::after {
  content: "\f063";
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  left: 0;
  margin: auto;
  font-size: 1rem;
  color: #444;
  text-align: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}

@media screen and (width <=480px) {
  .__border_block::after,
  .__border_block2::after {
    bottom: -3rem;
  }
}

.__border_block_last::after {
  display: none;
}

.__border_wblock::before,
.__border_wblock::after {
  content: "\f063";
  position: absolute;
  bottom: -1.5rem;
  font-size: 1rem;
  color: #444;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}

@media screen and (width <=480px) {
  .__border_wblock::before,
  .__border_wblock::after {
    bottom: -4rem;
  }
}

.__border_wblock::before {
  left: 25%;
}

.__border_wblock::after {
  right: 25%;
}

.__wblock {
  flex-basis: 50%;
}

.__wblock:first-child {
  border-right: 1px solid #999;
}

.__wblock small {
  font-size: 0.75rem;
}

@media screen and (width <=480px) {
  .__wblock small {
    font-size: 0.6rem;
  }
}

.__highlight {
  margin: 10px 0;
  background: lightgoldenrodyellow;
}

.__box_arrow,
.__box_diamond {
  position: relative;
  display: flex;
  margin: 20px 0;
  padding-left: 1.5rem;
}

.__box_diamond {
  flex-direction: column;
}

.__box_arrow::before,
.__box_diamond::before {
  content: "\f061";
  position: absolute;
  top: 3px;
  left: 0;
  color: #555;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}

.__box_diamond::before {
  content: "\f219";
}

.__box_deco_border {
  padding: 10px 0;
  background-image: repeating-linear-gradient(
    90deg,
    #ccc,
    #ccc 10px,
    transparent 10px,
    transparent 20px,
    #ccc 20px,
    #ccc 22px,
    transparent 22px,
    transparent 32px
  );
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  margin-left: 20px;
}

/* list */
ul {
  margin: 0;
}

ul.__list {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 10px;
  padding-left: 1rem;
}

ul.__list li {
  display: flex;
  flex: 1 0 0;
  flex-wrap: wrap;
}

@media screen and (width <=480px) {
  ul.__list li {
    flex-flow: column nowrap;
  }
}

@media screen and (width <=480px) {
  ul.__list li {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

ul.__list li.__disc {
  display: list-item;
  list-style: disc;
  margin-left: 1.5rem;
}

ul.__list li.__circle {
  display: list-item;
  list-style: circle;
  margin-left: 1.5rem;
}

ul.__list li.column {
  flex-direction: column;
}

li.__list_boder {
  display: flex;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}

ul.__list li label {
  flex-basis: 20%;
  font-weight: 600;
}

@media screen and (width <=768px) {
  ul.__list li label {
    flex-basis: 20%;
  }
}

@media screen and (width <=480px) {
  ul.__list li label {
    flex-basis: 25%;
    font-size: 0.8125rem;
  }
}

ul.__list li span.__value {
  flex-basis: 80%;
}

@media screen and (width <=768px) {
  ul.__list li span.__value {
    flex-basis: 80%;
  }
}

@media screen and (width <=480px) {
  ul.__list li span.__value {
    flex-basis: 75%;
    font-size: 0.8125rem;
  }
}

ul.__list li small {
  flex-basis: 100%;
  font-size: 0.875rem;
  padding-left: 20%;
}

@media screen and (width <=768px) {
  ul.__list li small {
    padding-left: 20%;
  }
}

@media screen and (width <=480px) {
  ul.__list li small {
    font-size: 0.75rem;
    line-height: 1.5rem;
    padding-left: 25%;
  }
}

ul.list_nmb {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: my-counter;
  padding-left: 1rem;
}

ul.list_nmb.__count_from8 {
  counter-reset: my-counter 7;
}

ul.list_nmb.__count_from5 {
  counter-reset: my-counter 4;
}

@media screen and (width <=768px) {
  ul.list_nmb {
    margin-left: 6px;
  }
}

ul.list_nmb li {
  font-size: 1rem;
  list-style: none;
  padding-left: 1.5rem;
}

@media screen and (width <=768px) {
  ul.list_nmb li {
    font-size: 0.8125rem;
    padding-left: 1.25rem;
  }
}

@media screen and (width <=480px) {
  ul.list_nmb li {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
  }
}

.__disc,
.__nmb,
.__nmb_parens,
.__nmb_comma,
.__nmb_circle,
.__kana,
.__alpha {
  position: relative;
}

ul.list_nmb li.__disc {
  list-style: disc;
  padding-left: 0;
}

.__nmb::before,
.__nmb_comma::before,
.__nmb_parens::before,
.__alpha::before,
.__kana::before {
  content: counter(my-counter) ")";
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: my-counter;
}

.__nmb_parens::before {
  content: "(" counter(my-counter) ")";
}

.__nmb_comma::before {
  content: counter(my-counter) ",";
}

.__alpha::before {
  content: "(" counter(my-counter, upper-alpha) ")";
}

.__kana::before {
  content: counter(my-counter, katakana) ")";
}

.__nmb_circle::before {
  content: counter(my-counter);
  position: absolute;
  top: 3px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
  border-radius: 50%;
  line-height: 0;
  border: 1px solid;
  box-sizing: border-box;
  counter-increment: my-counter;
  letter-spacing: 0;
}

@media screen and (width <=768px) {
  .__nmb_circle {
    padding-left: 24px;
  }

  .__nmb_circle::before {
    top: 5px;
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
}

@media screen and (width <=480px) {
  .__nmb_circle::before {
    top: 5px;
    width: 14px;
    height: 14px;
    font-size: 8px;
  }
}

/* その他 */
#event_app em {
  font-style: normal;
  font-weight: 600;
}

span.description {
  display: flex;
  padding: 5px 0 0;
  font-weight: normal;
}

.right_arrow {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  padding-left: 30px;

  /* display: block; */
  padding-top: 20px;
}

@media screen and (width <=1400px) {
  .right_arrow {
    font-size: 16px;
  }
}

@media screen and (width <=480px) {
  .right_arrow {
    font-size: 14px;
  }
}

.right_arrow::before {
  content: "\f178";
  position: absolute;
  top: 45%;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* ADエリア */
.__ad {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 4px double #e41;
}

.__ad_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (width <=480px) {
  .__ad_title {
    margin: 0;
  }
}

.__ad_title em {
  font-size: 1.5rem;
  color: #f52;
  font-weight: 600;
}

@media screen and (width <=480px) {
  .__ad_title em {
    font-size: 0.875rem;
  }
}

.__ad_title p.__ad_caption {
  font-size: 0.875rem;
  color: #f52;
}

@media screen and (width <=480px) {
  .__ad_title p.__ad_caption {
    font-size: 0.6rem;
  }
}

.__ad_lead {
  font-size: 1.25rem;
  color: #07f;
  text-align: center;
  font-weight: 600;
}

@media screen and (width <=480px) {
  .__ad_lead {
    font-size: 0.875rem;
  }
}

.__ad_text {
  font-size: 0.875rem;
  color: #07f;
  text-align: center;
}

@media screen and (width <=480px) {
  .__ad_text {
    font-size: 0.75rem;
  }
}

/***** 補足指定 *****/
.__flex {
  display: flex !important;
}

.__flex_column {
  display: flex;
  flex-direction: column;
}

.__flex_start {
  display: flex;
  justify-content: flex-start !important;
}

.__flex_end {
  display: flex;
  justify-content: flex-end !important;
}

.__flex_center {
  display: flex;
  justify-content: center !important;
}

.__flex_between {
  display: flex;
  justify-content: space-between !important;
}

.__align_self_start {
  align-self: start;
}

.__gap_10 {
  display: flex;
  gap: 10px !important;
}

.__gap_20 {
  display: flex;
  gap: 20px !important;
}

.__center {
  text-align: center;
}

.fb300 {
  flex-basis: 300px !important;
}

@media screen and (width <=768px) {
  .fb300 {
    flex-basis: 250px !important;
  }
}

.fb250 {
  flex-basis: 250px !important;
}

.fb200 {
  flex-basis: 200px !important;
}

.fb150 {
  flex-basis: 150px !important;
}

@media screen and (width <=768px) {
  .fb150 {
    flex-basis: 100px !important;
  }
}

@media screen and (width <=480px) {
  .fb300,
  .fb250,
  .fb200,
  .fb150 {
    flex-basis: auto !important;
  }
}

.fb-auto {
  flex: 1 0 0;
}

@media screen and (width <=480px) {
  .__sp_fd_row {
    flex-flow: row wrap !important;
  }
}

.__col_left,
.__col_right {
  flex-basis: calc(50% - 10px);
}

.mg-0 {
  margin: 0;
}

.mg-10 {
  margin: 10px;
}

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

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

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

.mg-left-minus-1rem {
  margin-left: -1rem !important;
}

@media screen and (width <=768px) {
  .mg-left-minus-1rem {
    margin-left: -0.5rem !important;
  }
}

.mg-left-20 {
  margin-left: 20px;
}

@media screen and (width <=480px) {
  .mg-left-20 {
    margin-left: 5px;
  }
}

.mg-left-40 {
  margin-left: 40px;
}

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

.pd-top-10 {
  padding-top: 10px !important;
}

.pd-top-20 {
  padding-top: 20px !important;
}

.pd-top-30 {
  padding-top: 30px !important;
}

.pd-top-40 {
  padding-top: 40px !important;
}

.pd-top-50 {
  padding-top: 50px !important;
}

.pd-10 {
  padding: 10px !important;
}

.pd-20 {
  padding: 20px !important;
}

.pd-20-0 {
  padding: 20px 0 !important;
}

.pd-left-1rem {
  padding-left: 1rem !important;
}

.pd-left-20 {
  padding-left: 20px !important;
}

@media screen and (width <=480px) {
  .pd-left-20 {
    padding-left: 5px !important;
  }
}

.pd-btm-20 {
  padding-bottom: 20px !important;
}

.pd-btm-50 {
  padding-bottom: 50px !important;
}

.pd-btm-100 {
  padding-bottom: 100px !important;
}

.__fs-small {
  font-size: 75%;
}

.__fslarge {
  font-size: 125%;
}

.__fsXlarge {
  font-size: 150%;
}

.__txt_small {
  font-size: 0.75rem;
}

.__asterisk {
  position: relative;
  display: block;
  align-self: center;
  font-size: 0.875rem !important;
  color: #555;
  line-height: 1.5;
  padding-left: 1.125rem;
}

@media screen and (width <=480px) {
  .__asterisk {
    font-size: 0.7rem !important;
    padding-left: 1rem;
  }
}

.__asterisk::before {
  content: "※";
  position: absolute;
  left: 0;
}

.__example,
.__example-eng {
  position: relative;
  display: block;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
  padding-left: 1.5rem;
}

@media screen and (width <=480px) {
  .__example,
  .__example-eng {
    font-size: 0.7rem;
    padding-left: 1.25rem;
  }
}

.__example::before {
  content: "例)";
  position: absolute;
  left: 0;
}

.__example-eng::before {
  content: "EXP)";
  position: absolute;
  left: 0;
}

.__disc_mark {
  position: relative;
  padding-left: 1.5rem;
}

.__disc_mark::before {
  content: "・";
  position: absolute;
  left: 0;
}

.__address,
.__tell,
.__fax,
.__email {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 30px;
}

.__address::before,
.__tell::before,
.__fax::before,
.__email::before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.__address::before {
  content: "\f3c5";
}

.__tell::before {
  content: "\f095";
}

.__fax::before {
  content: "\f1ac";
}

.__email::before {
  content: "\f0e0";
}

.txt-center {
  text-align: center;
}

.black,
.black div {
  color: #333 !important;
}

.red {
  color: red !important;
}

.blue {
  color: blue !important;
}

.__border_tb {
  padding: 20px 0 !important;
  border-bottom: 1px solid #444;
  border-top: 1px solid #444;
}

.copyright {
  margin-left: 250px;
}

@media screen and (width <=768px) {
  .copyright {
    margin-left: 50px;
  }

  .copyright ul {
    gap: 10px;
  }
}

.toggle {
  scroll-margin-top: 80px;
}

.-label-wrap {
  display: flex;
  justify-content: start;
  margin-bottom: 0.5rem;
}

.-label-title {
  padding: 2px 5px;
  font-size: 0.75rem;
  color: #07b;
  border-radius: 4px;
  border: 1px solid #07b;
  font-weight: 600;
}

.--dbox {
  display: inline-block;
  padding: 0.5rem 5rem;
  color: #07b;
  border-radius: 4px;
  border: 1px solid #07b;
  font-weight: 600;
}

.pagetop {
  right: 5vw;
  left: auto;
}

@media screen and (width <= 480px) {
  .pagetop {
    bottom: 5vw;
  }
}
