@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
:root {
  --base-col: #FFFFFF;
  --primary-col: #62b6d1;
  --secondary-col: #b7d100;
  --third-col: #f39800;
  --force-col: #ef94ae;
  --fifth-col: #f4e827;
  --six-col: #0068b1;
  --seven-col: #1eaa39;
  --black-col: #000000;
  --gray-col: #6E6E6E;
  --pink-col: #cc9cad;
  --white-col: #FFFFFF;
  --red-col: #ff1d25;
  --txt-col: #3A3A3A;
  --link-col: #000000;
  --link-hov-col: #4c4c4c;
  --header-col: var(--base-col);
  --header-txt-col: var(--base-col);
  --bg-col: var(--primary-col);
  --btn-col: var(--force-col);
  --btn-txt-col: var(--base-col);
  --border-form-col: #FFFFFF;
  --border-table-col: var(--gray-col);
  --check-active-col: #FFFFFF;
  --section-active-col: #FFFFFF;
  --font-size: 10px;
  --font-primary: "Noto Sans JP", serif;
  --font-secondary: "Shippori Mincho", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-arial: "Crimson Text", serif;
  --header-height: 7.0rem;
}

.col1 {
  --bg-col: var(--base-col);
}

.col2 {
  --bg-col: var(--secondary-col);
}

.col3 {
  --bg-col: var(--third-col);
}

.col4 {
  --bg-col: var(--force-col);
}

.col5 {
  --bg-col: var(--primary-col);
}

.col6 {
  --bg-col: var(--six-col);
  --txt-col: var(--base-col);
}

.col7 {
  --bg-col: var(--seven-col);
  --txt-col: var(--base-col);
}

/*
    --figure-height: 60vh;
    @include figure;
*/
/*
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
*/
/*
font-family: "Noto Serif JP", serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
*/
/*
font-family: "Crimson Text", serif;
font-weight: 400;
font-style: normal;
*/
/*
font-family: "Source Sans 3", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
*/
/* ----------------------------------------------------------------
base
-------------------------------------------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size);
}

body {
  padding: 0;
  color: var(--txt-col);
  letter-spacing: 1px;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
}

body, button, input, textarea {
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: underline;
  color: var(--link-col);
  background-color: transparent;
  transition: all 0.1s linear;
}
a:active {
  outline: 0;
}
a:hover {
  color: var(--link-hov-col);
  outline: 0;
  text-decoration: none;
}

h1 {
  font-size: 3.2rem;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  h5 {
    font-size: 1.6rem;
  }
}

table {
  --bg-col: none;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  table {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  table tr {
    display: block;
    border-bottom: solid 1px var(--border-table-col);
    padding: 2rem 0;
  }
}
table td,
table th {
  font-size: 1.8rem;
  font-weight: normal;
}
@media screen and (min-width: 1025px) {
  table td,
  table th {
    border-bottom: solid 1px var(--border-table-col);
    padding: 12px 2rem;
  }
}
@media screen and (max-width: 1024px) {
  table td,
  table th {
    display: block;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  table td:before,
  table th:before {
    content: attr(title);
  }
}
@media screen and (max-width: 1024px) {
  table thead {
    display: none;
  }
}
table thead th {
  text-align: left;
  background-color: var(--bg-col);
  color: var(--txt-col);
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  table thead th {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  table tbody {
    border-top: solid 1px var(--border-table-col);
    display: block;
  }
}
table tbody th {
  text-align: left;
  background-color: var(--bg-col);
  color: var(--txt-col);
}
table tbody td {
  text-align: left;
  background-color: var(--bg-col);
  color: var(--txt-col);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

p,
label {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  p,
  label {
    font-size: 1.6rem;
  }
}

ul li,
ol li {
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

ol li {
  list-style: decimal;
  margin-left: 20px;
}

input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

/* ----------------------------------------------------------------
header
-------------------------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
}

/* ----------------------------------------------------------------
footer
-------------------------------------------------------------------*/
.footer {
  background-color: var(--six-col);
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer_top {
  background-color: var(--fifth-col);
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .footer_top_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 20px;
  }
}
.footer_top_inner h2 {
  color: var(--seven-col);
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .footer_top_inner h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.footer_top_date {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 10px;
}
@media screen and (min-width: 1025px) {
  .footer_top_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
  }
}
.footer_top_date p {
  color: var(--seven-col);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
}
@media screen and (max-width: 1024px) {
  .footer_top_date p {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1;
  }
}
.footer_top_date p span {
  font-size: 24px;
  font-weight: 700;
}
.footer_top_date dl {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 10px;
}
.footer_top_date dl dt {
  color: #FFFFFF;
  background-color: var(--seven-col);
  padding: 4px 8px;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .footer_top_date dl dt {
    font-size: 14px;
  }
}
.footer_top_date dl dd {
  text-align: left;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .footer_top_date dl dd {
    font-size: 14px;
  }
}
.footer_bottom {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .footer_bottom {
    padding: 80px 20px 140px;
  }
}
.footer_bottom h3 {
  color: #FFFFFF;
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .footer_bottom h3 {
    font-size: 18px;
  }
}
.footer_bottom p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .footer_bottom p {
    font-size: 16px;
  }
}
.footer_bottom p + p {
  margin-top: 20px;
}
.footer_bottom p.copy {
  font-size: 14px;
  margin-top: 80px;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

.page-body {
  background-color: var(--bg-col);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.top_main {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  padding-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .top_main {
    padding: 40px 20px 80px;
    padding-bottom: 160px;
  }
}

.top_kv_inner {
  display: grid;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .top_kv_inner {
    grid-template-areas: "nav1 heading nav2";
    grid-template-columns: auto auto auto;
    grid-gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top_kv_inner {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
.top_kv_title {
  grid-area: heading;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top_kv_title {
    grid-column: 1/span 3;
    grid-row: 1;
  }
}
.top_kv_title h2 {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .top_kv_title h2 img {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 1024px) {
  .top_kv_title h2 {
    left: 0;
    margin-left: 0;
    bottom: 0px;
  }
}
.top_kv_left {
  grid-area: nav1;
  text-align: center;
}
.top_kv_left img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .top_kv_left {
    text-align: right;
  }
}
@media screen and (max-width: 1024px) {
  .top_kv_left {
    grid-column: 1/2;
    grid-row: 2;
  }
}
.top_kv_right {
  grid-area: nav2;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .top_kv_right {
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .top_kv_right {
    grid-column: 2/3;
    grid-row: 2;
  }
}
.top_kv_right img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .top_kv_right img {
    max-width: 256px;
  }
}
.top_kv_tip {
  position: absolute;
  top: -20px;
  right: 50%;
  margin-right: -440px;
}
@media screen and (max-width: 1024px) {
  .top_kv_tip {
    width: 120px;
    margin-right: -160px;
  }
}

.top_concept {
  background-color: var(--secondary-col);
  padding-top: 60px;
  padding-bottom: 160px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top_concept {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}
.top_concept:before {
  content: "";
  background-color: var(--secondary-col);
  clip-path: ellipse(50% 50px at 50% 100%);
  width: 100%;
  height: 50px;
  position: absolute;
  top: -50px;
  display: block;
}
.top_concept:after {
  content: "";
  background-color: var(--primary-col);
  clip-path: ellipse(50% 50px at 50% 100%);
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: -1px;
  display: block;
}
.top_concept h2 {
  text-align: center;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 700;
  background-color: var(--third-col);
  border-radius: 30px;
  display: block;
  padding: 0 40px;
  margin: 0 auto 60px;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .top_concept h2 {
    font-size: 25px;
  }
}
.top_concept_txt_1 {
  text-align: center;
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top_concept_txt_1 {
    font-size: 22px;
  }
}
.top_concept_txt_2 {
  text-align: center;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .top_concept_txt_2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.top_concept_img01 {
  width: 100%;
  max-width: 280px;
}
@media screen and (min-width: 1025px) {
  .top_concept_img01 {
    position: absolute;
    left: 50%;
    top: 60px;
    z-index: 1;
    margin-left: -600px;
  }
}
@media screen and (max-width: 1024px) {
  .top_concept_img01 {
    margin: 0 auto;
    margin-left: 0;
  }
}
.top_concept_img02 {
  width: 100%;
  max-width: 280px;
}
@media screen and (min-width: 1025px) {
  .top_concept_img02 {
    position: absolute;
    right: 50%;
    top: 100px;
    z-index: 1;
    margin-right: -600px;
  }
}
@media screen and (max-width: 1024px) {
  .top_concept_img02 {
    margin: 0 auto;
    margin-right: 0;
  }
}

.top_info {
  padding: 80px 0 160px;
  position: relative;
}

.block {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 80px 40px 60px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .block {
    padding: 80px 20px 40px;
  }
}
.block_title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  margin-top: -30px;
  text-align: center;
  color: var(--force-col);
  display: block;
}
.block_title h2 {
  border: solid 4px var(--force-col);
  padding: 0 40px;
  background-color: #FFFFFF;
  border-radius: 30px;
  color: var(--force-col);
  font-size: 25px;
  font-weight: 700;
  height: 60px;
  text-align: center;
  line-height: 52px;
  display: inline-block;
}
.block + .block {
  margin-top: 60px;
}
.block_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.block_title_sub {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin-top: -20px;
  text-align: center;
  color: var(--force-col);
  display: block;
}
.block_title_sub h3 {
  padding: 0 20px;
  background-color: var(--force-col);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  height: 40px;
  text-align: center;
  line-height: 36px;
  display: inline-block;
}
.block_txt p {
  font-size: 20px;
  text-align: left;
  line-height: 2;
}
.block_txt p + p {
  margin-top: 20px;
}
.block_txt p span {
  font-size: 16px;
  text-align: left;
  line-height: 2;
}
.block_txt_2 {
  background-color: var(--third-col);
  color: #FFFFFF;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
}

.map {
  position: relative;
  padding-top: 50%;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top_entry {
  padding: 80px 0 160px;
  position: relative;
  background-color: var(--fifth-col);
}
.top_entry .block_title {
  margin-top: -80px;
}
.top_entry:before {
  content: "";
  background-color: var(--fifth-col);
  clip-path: ellipse(50% 50px at 50% 100%);
  width: 100%;
  height: 50px;
  position: absolute;
  top: -50px;
  display: block;
}
.top_entry:after {
  content: "";
  background-color: var(--primary-col);
  clip-path: ellipse(50% 50px at 50% 100%);
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  display: block;
}

.top_gallery {
  padding: 80px 0 120px;
}
@media screen and (max-width: 1024px) {
  .top_gallery {
    padding: 40px 0 80px;
  }
}
.top_gallery_filter {
  position: relative;
  z-index: 2;
}
.top_gallery_list {
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top_gallery_list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
.top_gallery_list figure {
  --figure-height: 75%;
  display: block;
  position: relative;
  padding-top: var(--figure-height);
  overflow: hidden;
  z-index: 1;
}
.top_gallery_list figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
  transition: all 0.3s linear;
}

.banner_ing {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 900;
}
.banner_ing a {
  height: 160px;
  width: 160px;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  background-color: var(--force-col);
  color: #FFFFFF;
  font-size: 16px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1024px) {
  .banner_ing a {
    height: 120px;
    width: 120px;
    border-radius: 60px;
    font-size: 12px;
  }
}
.banner_ing a:before {
  content: "";
  height: 140px;
  width: 140px;
  border-radius: 70px;
  border: solid 2px #FFFFFF;
  opacity: 0.6;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .banner_ing a:before {
    height: 100px;
    width: 100px;
    border-radius: 50px;
  }
}
.banner_ing a:hover {
  background-color: #FFFFFF;
  color: var(--force-col);
}
.banner_ing a:hover:before {
  border-color: var(--force-col);
}

.entry_btn {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
.entry_btn a {
  --txt-col: var(--btn-txt-col);
  --bg-col: var(--btn-col);
  font-size: 38px;
  font-weight: 700;
  width: 100%;
  min-height: 8rem;
  line-height: 1.6;
  display: inline-block;
  background: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 1rem 4rem;
  color: var(--txt-col);
  position: relative;
  z-index: 2;
  max-width: 500px;
  border-radius: 40px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
.entry_btn a span {
  position: relative;
  z-index: 2;
}
.entry_btn a:after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  right: -1px;
  z-index: 1;
  border: solid 1px var(--bg-col);
  display: block;
  transition: all 0.2s ease;
  border-radius: 40px;
  background-color: var(--bg-col);
}
@media screen and (min-width: 1025px) {
  .entry_btn a:hover:after {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 1024px) {
  .entry_btn a {
    font-size: 30px;
  }
}

/* ----------------------------------------------------------------
btns
-------------------------------------------------------------------*/
.btn {
  --txt-col: var(--btn-txt-col);
  --bg-col: var(--btn-col);
  font-size: 38px;
  font-weight: 700;
  width: 100%;
  min-height: 8rem;
  line-height: 1.6;
  display: inline-block;
  background: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 1rem 4rem;
  color: var(--txt-col);
  position: relative;
  z-index: 2;
  max-width: 100%;
  border-radius: 10px;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn:after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  right: -1px;
  z-index: 1;
  border: solid 1px var(--bg-col);
  display: block;
  transition: all 0.2s ease;
  border-radius: 10px;
  background-color: var(--bg-col);
}
.btn:hover {
  opacity: 0.9;
  color: var(--txt-col);
}
.btn:hover:after {
  transform: scale(1.1);
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: 30px;
  }
}

.btn_area {
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
}

.btn:disabled,
.btn.disabled {
  --bg-col: #CCC;
  --txt-col: #333;
  cursor: default;
}
.btn:disabled:hover:after,
.btn.disabled:hover:after {
  transform: scale(1);
}

/* ----------------------------------------------------------------
plugin
-------------------------------------------------------------------*/
.eu_anim {
  /*
  overflow: hidden;
  */
  opacity: 0;
}
.eu_anim.is_show {
  opacity: 1;
}
.eu_anim_fade_item {
  opacity: 0;
}
.eu_anim_fade_item.is_show {
  opacity: 1;
  transition: all 0.8s linear;
}
.eu_anim_wide_item {
  position: relative;
}
.eu_anim_wide_item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--bg-col);
  transform: scaleX(1);
  transition: all 0.8s linear;
}
.eu_anim_wide_item.is_show:before {
  transform: scaleX(0);
}
.eu_anim_window_left {
  opacity: 0;
  transform: translateX(-400px);
}
.eu_anim_window_right {
  opacity: 0;
  transform: translateX(400px);
}
.eu_anim_window.is_show .eu_anim_window_left {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.8s linear;
}
.eu_anim_window.is_show .eu_anim_window_right {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.8s linear;
}
.eu_anim_slidetop_item, .eu_anim_slidetop_list {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.1s ease;
  transition-delay: 0s;
}
.eu_anim_slidetop_item.is_show, .eu_anim_slidetop_list.is_show {
  opacity: 1;
  transform: translateY(0px);
}

/* ----------------------------------------------------------------
utility
-------------------------------------------------------------------*/
.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.target {
  position: relative;
}
.target:after {
  content: "";
  width: 12.25px;
  height: 11.06px;
  background-image: url(../img/ico_link_target.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 1rem;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml100 {
  margin-left: 100px !important;
}

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

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

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

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

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

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.font-10 {
  font-size: 10px !important;
}

.font-11 {
  font-size: 11px !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-13 {
  font-size: 13px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-15 {
  font-size: 15px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-17 {
  font-size: 17px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-19 {
  font-size: 19px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-21 {
  font-size: 21px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-23 {
  font-size: 23px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-25 {
  font-size: 25px !important;
}

.font-26 {
  font-size: 26px !important;
}

.font-27 {
  font-size: 27px !important;
}

.font-28 {
  font-size: 28px !important;
}

.font-29 {
  font-size: 29px !important;
}

.font-30 {
  font-size: 30px !important;
}

.small {
  font-size: 0.6em !important;
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.red {
  background-color: var(--red-col) !important;
}