@charset "UTF-8";
html {
  height: 100%;
  overflow-y: scroll;
}

body {
  height: 100%;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.header {
  margin-bottom: 1rem;
}

.main {
  margin-bottom: 1rem;
}

.footer {
  margin-top: auto;
}

.header_normal {
  margin-bottom: 0;
  z-index: 100;
}
.header_normal::after {
  content: "";
  display: block;
  border-bottom: 10px solid #f58466;
  box-shadow: 0 1px 2px rgba(95, 95, 95, 0.5);
  z-index: 2;
}
.header_normal .header_inner {
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header_normal .header_inner h1 {
  display: flex;
  margin: 0;
}
.header_normal .header_inner h1 a {
  font-size: 0;
}
.header_normal .header_inner h1 a img {
  height: 48px;
  flex: none;
}

.breadcrumb {
  background-color: #efefef;
  box-shadow: 0px 1px #ccc;
  z-index: 50;
}
.breadcrumb ul {
  display: flex;
  margin: 0;
  padding: 5px 0;
  list-style-type: none;
  font-size: 0.75rem;
  overflow-x: scroll;
  scrollbar-width: 0;
}
.breadcrumb ul::-webkit-scrollbar {
  display: none;
}
.breadcrumb li {
  display: flex;
  color: #333;
  white-space: nowrap;
}
.breadcrumb li:not(:first-child)::before {
  content: "≫";
  display: block;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.breadcrumb a {
  color: #333;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .breadcrumb ul {
    overflow: hidden;
  }
}

.main {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.article_normal h1.h1_normal {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 0 1rem 0;
  padding: 3px 0;
  font-weight: normal;
  font-size: 1.3rem;
  border-bottom: 2px solid #333;
}
.article_normal h1.h1_normal::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #0e5886;
}
.article_normal h2 {
  position: relative;
  margin: 0.5em 0 1rem 0;
  padding: 3px 0;
  font-weight: normal;
  font-size: 1.3rem;
  color: #0e5886;
  border-bottom: 1px solid #0e5886;
}
.article_normal h2[class^=icon_] {
  display: flex;
  align-items: center;
}
.article_normal h2[class^=icon_]::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.article_normal h2.icon_summary::before {
  background-image: url(../images/icon/summary.svg);
}
.article_normal h2.icon_access::before {
  background-image: url(../images/icon/access.svg);
}
.article_normal h2.icon_pdf::before {
  background-image: url(../images/icon/pdf.svg);
}
.article_normal section:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .article_normal h1 {
    margin-top: 0.5rem;
    font-size: 1.4rem;
  }
  .article_normal h2 {
    font-weight: bold;
  }
}

.footer_normal {
  border-top: 1px solid #ccc;
}
.footer_normal p {
  margin: 0;
}
.footer_normal .footer_inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer_normal .footer_logo {
  flex-grow: 1;
}
.footer_normal .footer_logo a {
  font-size: 0;
}
.footer_normal .footer_logo a img {
  height: 32px;
}
.footer_normal .footer_cr {
  display: flex;
  color: #222422;
  font-size: 0.5rem;
  margin-left: 0.5rem;
}
.footer_normal .footer_cr::before {
  content: "©";
  display: inline-flex;
  margin-right: 0.125rem;
}
@media (min-width: 576px) {
  .footer_normal .footer_cr {
    font-size: 0.75rem;
  }
}

.key_visual {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.key_visual .key_image img {
  max-width: 100%;
}
.key_visual .key_image img.key_pc {
  display: none;
}
.key_visual .key_image img.key_sp {
  display: block;
}
.key_visual h1 {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  margin: 0;
  padding: 0.5rem;
  font-size: 0;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #0e5886;
  height: 50%;
  width: 50%;
  max-width: calc(100% - 1rem);
}
.key_visual h1 img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  flex: none;
}
.key_visual .key_texts {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  max-height: calc(50% - 1.5rem);
  max-width: calc(100% - 1rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #0e5886;
  margin: 0;
}
.key_visual .key_description {
  margin-bottom: 0;
  padding-right: 0.25rem;
  display: flex;
  flex-direction: column;
  color: #000;
}
.key_place {
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
}
.key_place_en {
  font-size: 0.5rem;
  font-weight: normal;
}
.key_visual .key_register {
  margin-bottom: 0;
}
.key_register a:first-child {
  margin-bottom: 0.25rem;
}

@media (min-width: 576px) {
  .key_visual h1 {
    width: auto;
  }
  .key_visual .key_texts {
    padding: 0.5rem;
  }
  .key_visual .key_description {
    padding-right: 1rem;
  }
  .key_date b:nth-child(2) {
    font-weight: normal;
    font-size: 2rem;
  }
  .key_place {
    font-size: 1rem;
  }
  .key_place_en {
    font-size: 0.625rem;
  }
}
@media (min-width: 768px) {
  .key_visual h1 {
    top: 1rem;
    left: 1rem;
    height: auto;
  }
  .key_visual h1 img {
    width: 300px;
  }
  .key_visual .key_image img {
    max-width: 100%;
  }
  .key_visual .key_image img.key_pc {
    display: block;
  }
  .key_visual .key_image img.key_sp {
    display: none;
  }
  .key_visual .key_texts {
    bottom: 1rem;
    right: 1rem;
  }
  .key_visual .key_description {
    display: block;
  }
  .key_date {
    display: block;
  }
  .key_date b:first-child {
    font-size: 2rem;
    font-weight: normal;
  }
  .key_date b:nth-child(2) {
    font-size: 3rem;
  }
  .key_place {
    display: block;
  }
  .key_place b:first-child {
    margin-right: 0.5rem;
  }
  .key_place b:last-child {
    display: block;
  }
  .key_place_en {
    width: 100%;
    font-size: 0.875rem;
  }
  .key_register a:first-child {
    margin-bottom: 1rem;
  }
}

@media (min-width: 992px) {
  .key_visual h1 {
    padding: 1rem;
  }
  .key_visual h1 img {
    width: 400px;
  }
  .key_visual .key_texts {
    padding: 1rem;
  }
  .key_place b:not(:last-child) {
    font-size: 1.25rem;
  }
  .key_register a {
    padding: 15px;
  }
  .key_register a span {
    font-weight: bold;
    font-size: 1.25rem;
  }
  .key_register a span::before {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
  }
}

.introduction {
  padding: 0.5rem;
  border: 1px solid #cfdee7;
}
.introduction p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .introduction {
    padding: 0.75rem;
  }
}

.desktop_row {
  display: flex;
  flex-direction: column;
}
.desktop_row .flyer_image figcaption {
  margin-bottom: 0.5rem;
}
.desktop_row .flyer_image p {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  margin-bottom: 0;
}
.desktop_row .flyer_image img {
  flex: none;
  max-width: 100%;
}
@media (min-width: 768px) {
  .desktop_row {
    flex-direction: row;
    justify-content: space-between;
  }
  .desktop_row .flyer_image {
    width: calc(60% - 0.5rem);
  }
  .desktop_row .flyer_description {
    width: calc(40% - 0.5rem);
  }
  .desktop_row .flyer_description .flyer_dl {
    margin-top: 1.5rem;
  }
}

.access_link {
  display: inline-flex;
  color: #0d719c;
  text-decoration: underline;
}
.access_link svg {
  width: 1rem;
  height: 1rem;
  fill: #0d719c;
  margin-right: 0.25rem;
  margin-top: 0.375rem;
}

.lecture_ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (min-width: 768px) {
  .lecture_ul {
    display: flex;
    align-items: flex-start;
  }
  .lecture_ul li:first-child {
    margin-right: 0.5rem;
  }
}

.aster_ul {
  margin: 0;
  padding: 0 0 0 1rem;
}
.aster_ul li {
  list-style-type: "※";
}

.form_link {
  display: flex;
  align-items: center;
  padding: 0.1875rem 0.3125rem;
  text-decoration: none;
  background-color: #0e5886;
  border: 1px solid #fff;
  border-radius: 0.375rem;
  color: #fff;
}
.form_link span {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}
.form_link span::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  background-image: url(../images/icon/globe_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 576px) {
  .form_link {
    padding: 0.3125rem 0.625rem;
  }
  .form_link span {
    font-size: 1rem;
  }
  .form_link span::before {
    width: 1rem;
    height: 1rem;
  }
}

.event_dl {
  margin: 0;
}
.event_dl p {
  margin: 0;
}
.event_dl dt {
  margin: 0;
  padding: 0.625rem;
  border: 1px solid #cfdee7;
  border-bottom-width: 0;
  background-color: #266892;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.event_dl dd {
  margin: 0;
  padding: 0.625rem;
  border: 1px solid #cfdee7;
  border-bottom-width: 0;
}
.event_dl dd:last-child {
  border-bottom-width: 1px;
}
@media (min-width: 768px) {
  .event_dl {
    display: flex;
    flex-wrap: wrap;
  }
  .event_dl dt {
    padding: 10px 10px;
    width: 20%;
    border-right-width: 0;
  }
  .event_dl dt:nth-last-child(2) {
    border-bottom-width: 1px;
  }
  .event_dl dt.title {
    width: 100%;
    border-right-width: 1px;
  }
  .event_dl dd {
    padding: 10px 10px;
    width: 80%;
  }
}

.flyer_dl {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.flyer_dl dt {
  margin: 0;
  padding: 0.625rem;
  border: 1px solid #cfdee7;
  border-bottom-width: 0;
  width: 30%;
  border-right-width: 0;
  background-color: #266892;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.flyer_dl dt:nth-last-child(2) {
  border-bottom-width: 1px;
}
.flyer_dl dd {
  margin: 0;
  padding: 0.625rem;
  border: 1px solid #cfdee7;
  border-bottom-width: 0;
  width: 70%;
}
.flyer_dl dd:last-child {
  border-bottom-width: 1px;
}

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

.h-auto {
  height: auto;
}

.w-auto {
  width: auto;
}

.w-10px {
  width: 10px;
}

.h-10px {
  height: 10px;
}

.w-20px {
  width: 20px;
}

.h-20px {
  height: 20px;
}

.w-30px {
  width: 30px;
}

.h-30px {
  height: 30px;
}

.w-40px {
  width: 40px;
}

.h-40px {
  height: 40px;
}

.w-50px {
  width: 50px;
}

.h-50px {
  height: 50px;
}

.w-60px {
  width: 60px;
}

.h-60px {
  height: 60px;
}

.w-70px {
  width: 70px;
}

.h-70px {
  height: 70px;
}

.w-80px {
  width: 80px;
}

.h-80px {
  height: 80px;
}

.w-90px {
  width: 90px;
}

.h-90px {
  height: 90px;
}

.w-100px {
  width: 100px;
}

.h-100px {
  height: 100px;
}

.w-110px {
  width: 110px;
}

.h-110px {
  height: 110px;
}

.w-120px {
  width: 120px;
}

.h-120px {
  height: 120px;
}

.w-130px {
  width: 130px;
}

.h-130px {
  height: 130px;
}

.w-140px {
  width: 140px;
}

.h-140px {
  height: 140px;
}

.w-150px {
  width: 150px;
}

.h-150px {
  height: 150px;
}

.w-160px {
  width: 160px;
}

.h-160px {
  height: 160px;
}

.w-170px {
  width: 170px;
}

.h-170px {
  height: 170px;
}

.w-180px {
  width: 180px;
}

.h-180px {
  height: 180px;
}

.w-190px {
  width: 190px;
}

.h-190px {
  height: 190px;
}

.w-200px {
  width: 200px;
}

.h-200px {
  height: 200px;
}

.w-210px {
  width: 210px;
}

.h-210px {
  height: 210px;
}

.w-220px {
  width: 220px;
}

.h-220px {
  height: 220px;
}

.w-230px {
  width: 230px;
}

.h-230px {
  height: 230px;
}

.w-240px {
  width: 240px;
}

.h-240px {
  height: 240px;
}

.w-250px {
  width: 250px;
}

.h-250px {
  height: 250px;
}

.w-260px {
  width: 260px;
}

.h-260px {
  height: 260px;
}

.w-270px {
  width: 270px;
}

.h-270px {
  height: 270px;
}

.w-280px {
  width: 280px;
}

.h-280px {
  height: 280px;
}

.w-290px {
  width: 290px;
}

.h-290px {
  height: 290px;
}

.w-300px {
  width: 300px;
}

.h-300px {
  height: 300px;
}

.w-310px {
  width: 310px;
}

.h-310px {
  height: 310px;
}

.w-320px {
  width: 320px;
}

.h-320px {
  height: 320px;
}

.w-330px {
  width: 330px;
}

.h-330px {
  height: 330px;
}

.w-340px {
  width: 340px;
}

.h-340px {
  height: 340px;
}

.w-350px {
  width: 350px;
}

.h-350px {
  height: 350px;
}

.w-360px {
  width: 360px;
}

.h-360px {
  height: 360px;
}

.w-370px {
  width: 370px;
}

.h-370px {
  height: 370px;
}

.w-380px {
  width: 380px;
}

.h-380px {
  height: 380px;
}

.w-390px {
  width: 390px;
}

.h-390px {
  height: 390px;
}

.w-400px {
  width: 400px;
}

.h-400px {
  height: 400px;
}

.w-410px {
  width: 410px;
}

.h-410px {
  height: 410px;
}

.w-420px {
  width: 420px;
}

.h-420px {
  height: 420px;
}

.w-430px {
  width: 430px;
}

.h-430px {
  height: 430px;
}

.w-440px {
  width: 440px;
}

.h-440px {
  height: 440px;
}

.w-450px {
  width: 450px;
}

.h-450px {
  height: 450px;
}

.w-460px {
  width: 460px;
}

.h-460px {
  height: 460px;
}

.w-470px {
  width: 470px;
}

.h-470px {
  height: 470px;
}

.w-480px {
  width: 480px;
}

.h-480px {
  height: 480px;
}

.w-490px {
  width: 490px;
}

.h-490px {
  height: 490px;
}

.w-500px {
  width: 500px;
}

.h-500px {
  height: 500px;
}

.w-510px {
  width: 510px;
}

.h-510px {
  height: 510px;
}

.w-520px {
  width: 520px;
}

.h-520px {
  height: 520px;
}

.w-530px {
  width: 530px;
}

.h-530px {
  height: 530px;
}

.w-540px {
  width: 540px;
}

.h-540px {
  height: 540px;
}

.w-550px {
  width: 550px;
}

.h-550px {
  height: 550px;
}

.w-560px {
  width: 560px;
}

.h-560px {
  height: 560px;
}

.w-570px {
  width: 570px;
}

.h-570px {
  height: 570px;
}

.w-580px {
  width: 580px;
}

.h-580px {
  height: 580px;
}

.w-590px {
  width: 590px;
}

.h-590px {
  height: 590px;
}

.w-600px {
  width: 600px;
}

.h-600px {
  height: 600px;
}

.w-1 {
  width: 1%;
}

.w-2 {
  width: 2%;
}

.w-3 {
  width: 3%;
}

.w-4 {
  width: 4%;
}

.w-5 {
  width: 5%;
}

.w-6 {
  width: 6%;
}

.w-7 {
  width: 7%;
}

.w-8 {
  width: 8%;
}

.w-9 {
  width: 9%;
}

.w-10 {
  width: 10%;
}

.w-11 {
  width: 11%;
}

.w-12 {
  width: 12%;
}

.w-13 {
  width: 13%;
}

.w-14 {
  width: 14%;
}

.w-15 {
  width: 15%;
}

.w-16 {
  width: 16%;
}

.w-17 {
  width: 17%;
}

.w-18 {
  width: 18%;
}

.w-19 {
  width: 19%;
}

.w-20 {
  width: 20%;
}

.w-21 {
  width: 21%;
}

.w-22 {
  width: 22%;
}

.w-23 {
  width: 23%;
}

.w-24 {
  width: 24%;
}

.w-25 {
  width: 25%;
}

.w-26 {
  width: 26%;
}

.w-27 {
  width: 27%;
}

.w-28 {
  width: 28%;
}

.w-29 {
  width: 29%;
}

.w-30 {
  width: 30%;
}

.w-31 {
  width: 31%;
}

.w-32 {
  width: 32%;
}

.w-33 {
  width: 33%;
}

.w-34 {
  width: 34%;
}

.w-35 {
  width: 35%;
}

.w-36 {
  width: 36%;
}

.w-37 {
  width: 37%;
}

.w-38 {
  width: 38%;
}

.w-39 {
  width: 39%;
}

.w-40 {
  width: 40%;
}

.w-41 {
  width: 41%;
}

.w-42 {
  width: 42%;
}

.w-43 {
  width: 43%;
}

.w-44 {
  width: 44%;
}

.w-45 {
  width: 45%;
}

.w-46 {
  width: 46%;
}

.w-47 {
  width: 47%;
}

.w-48 {
  width: 48%;
}

.w-49 {
  width: 49%;
}

.w-50 {
  width: 50%;
}

.w-51 {
  width: 51%;
}

.w-52 {
  width: 52%;
}

.w-53 {
  width: 53%;
}

.w-54 {
  width: 54%;
}

.w-55 {
  width: 55%;
}

.w-56 {
  width: 56%;
}

.w-57 {
  width: 57%;
}

.w-58 {
  width: 58%;
}

.w-59 {
  width: 59%;
}

.w-60 {
  width: 60%;
}

.w-61 {
  width: 61%;
}

.w-62 {
  width: 62%;
}

.w-63 {
  width: 63%;
}

.w-64 {
  width: 64%;
}

.w-65 {
  width: 65%;
}

.w-66 {
  width: 66%;
}

.w-67 {
  width: 67%;
}

.w-68 {
  width: 68%;
}

.w-69 {
  width: 69%;
}

.w-70 {
  width: 70%;
}

.w-71 {
  width: 71%;
}

.w-72 {
  width: 72%;
}

.w-73 {
  width: 73%;
}

.w-74 {
  width: 74%;
}

.w-75 {
  width: 75%;
}

.w-76 {
  width: 76%;
}

.w-77 {
  width: 77%;
}

.w-78 {
  width: 78%;
}

.w-79 {
  width: 79%;
}

.w-80 {
  width: 80%;
}

.w-81 {
  width: 81%;
}

.w-82 {
  width: 82%;
}

.w-83 {
  width: 83%;
}

.w-84 {
  width: 84%;
}

.w-85 {
  width: 85%;
}

.w-86 {
  width: 86%;
}

.w-87 {
  width: 87%;
}

.w-88 {
  width: 88%;
}

.w-89 {
  width: 89%;
}

.w-90 {
  width: 90%;
}

.w-91 {
  width: 91%;
}

.w-92 {
  width: 92%;
}

.w-93 {
  width: 93%;
}

.w-94 {
  width: 94%;
}

.w-95 {
  width: 95%;
}

.w-96 {
  width: 96%;
}

.w-97 {
  width: 97%;
}

.w-98 {
  width: 98%;
}

.w-99 {
  width: 99%;
}

.w-100 {
  width: 100%;
}

.mw-10 {
  max-width: 10%;
}

.mw-20 {
  max-width: 20%;
}

.mw-30 {
  max-width: 30%;
}

.mw-40 {
  max-width: 40%;
}

.mw-50 {
  max-width: 50%;
}

.mw-60 {
  max-width: 60%;
}

.mw-70 {
  max-width: 70%;
}

.mw-80 {
  max-width: 80%;
}

.mw-90 {
  max-width: 90%;
}

.mw-100 {
  max-width: 100%;
}

.mb-half {
  margin-bottom: 0.5rem;
}

.mt-pc-1 {
  margin-top: 0rem !important;
}

.mt-sp-1 {
  margin-top: 0rem !important;
}

.mt-pc-1 {
  margin-top: 1rem !important;
}

.mt-sp-1 {
  margin-top: 1rem !important;
}

.me-pc-1 {
  margin-right: 0rem !important;
}

.me-sp-1 {
  margin-right: 0rem !important;
}

.me-pc-1 {
  margin-right: 1rem !important;
}

.me-sp-1 {
  margin-right: 1rem !important;
}

.mb-pc-1 {
  margin-bottom: 0rem !important;
}

.mb-sp-1 {
  margin-bottom: 0rem !important;
}

.mb-pc-1 {
  margin-bottom: 1rem !important;
}

.mb-sp-1 {
  margin-bottom: 1rem !important;
}

.ms-pc-1 {
  margin-left: 0rem !important;
}

.ms-sp-1 {
  margin-left: 0rem !important;
}

.ms-pc-1 {
  margin-left: 1rem !important;
}

.ms-sp-1 {
  margin-left: 1rem !important;
}

.pt-pc-1 {
  padding-top: 0rem !important;
}

.pt-sp-1 {
  padding-top: 0rem !important;
}

.pt-pc-1 {
  padding-top: 1rem !important;
}

.pt-sp-1 {
  padding-top: 1rem !important;
}

.pe-pc-1 {
  padding-right: 0rem !important;
}

.pe-sp-1 {
  padding-right: 0rem !important;
}

.pe-pc-1 {
  padding-right: 1rem !important;
}

.pe-sp-1 {
  padding-right: 1rem !important;
}

.pb-pc-1 {
  padding-bottom: 0rem !important;
}

.pb-sp-1 {
  padding-bottom: 0rem !important;
}

.pb-pc-1 {
  padding-bottom: 1rem !important;
}

.pb-sp-1 {
  padding-bottom: 1rem !important;
}

.ps-pc-1 {
  padding-left: 0rem !important;
}

.ps-sp-1 {
  padding-left: 0rem !important;
}

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

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

.opacity-1 {
  opacity: 10%;
}

.opacity-2 {
  opacity: 20%;
}

.opacity-3 {
  opacity: 30%;
}

.opacity-4 {
  opacity: 40%;
}

.opacity-5 {
  opacity: 50%;
}

.opacity-6 {
  opacity: 60%;
}

.opacity-7 {
  opacity: 70%;
}

.opacity-8 {
  opacity: 80%;
}

.opacity-9 {
  opacity: 90%;
}

.position-relative {
  position: relative;
}

.d-none {
  display: none !important;
}

.indent {
  text-indent: 1rem;
}

.border {
  border: 1px solid #dee2e6;
}

.pc_break {
  display: none;
}

@media (min-width: 768px) {
  .sp_break {
    display: none;
  }
  .pc_break {
    display: inline;
  }
}
@media (hover: hover) {
  a.access_link:hover {
    color: #007bff;
    text-decoration: none;
  }
  a.access_link:hover svg {
    fill: #007bff;
  }
  .flyer_link:hover img {
    opacity: 0.8;
  }
  .form_link:hover {
    border: 1px solid #0e5886;
    background-color: #fff;
    color: #0e5886;
    text-decoration: none;
  }
  .form_link:hover span::before {
    background-image: url(../images/icon/globe_main.svg);
  }
}
