@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;600;700;900&display=swap);
@charset "UTF-8";
/**
* Base - サイトのベースになるcss
*/
/*
* Color
*/
:root {
  --txt-primary: #242424;
  --border-solid: #afafaf;
  --border-solid-2: #777777;
  --border-dotted: #888;
  --bg-green: #cfe081;
  --bg-orange: #fbcd73;
  --bg-purple: #dad0e6;
  --bg-yellow: #fee793;
  --bg-blue: #b9e3f9;
  --bg-pink: #f7c8dc;
  --bg-lightgreen: #bce1da;
  --bg-orange2: #f5af7e;
  --bg-gray: #ebebeb;
  --color-link: #1558d6;
  --color-danger: #db0000;
  --color-green: #356603;
  --color-brown: #921b12;
}

/*
* ダークモードに対応する場合は以下のメディアクエリを
*/
/*
* Font
*/
/*
* Font Size
*/
/* PC Tablet */
/* Mobile */
/*
* Media Query
*/
/*
* メディアクエリ
*/
/*
* ドロップシャドウ
*/
/*
* vwの計算
*/
html {
  font-size: 62.5%;
}

* {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "BIZ UDPGothic", Meiryo, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}

body {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--txt-primary);
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

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

address {
  font-style: normal;
}

strong {
  font-weight: bold;
}

input[type=radio] {
  margin: 0 7px 0 0;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
select:focus,
textarea {
  font-size: 16px;
}

p {
  color: var(--txt-primary);
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.ly_main {
  max-width: 1160px;
  width: 94%;
  margin: 40px auto;
}

.ly_mainIn {
  max-width: 800px;
  margin: 40px auto;
}

.ly_block ~ .ly_block {
  margin-top: 80px;
}

.bl_header {
  border-bottom: 1px solid #dadada;
}

.bl_headerIn {
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .bl_headerIn {
    width: 94%;
    margin: auto;
    padding: 8px 0;
  }
}

.bl_headerNav {
  display: flex;
  justify-content: center;
}
.bl_headerNav.is_none {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .bl_headerNav {
    display: none;
  }
}

.bl_headerNavList {
  line-height: 1.2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 2px;
}
.bl_headerNavList li {
  display: flex;
  align-items: center;
  background-color: var(--bg-gray);
  position: relative;
}
.bl_headerNavList li:hover .bl_headerNavDropdownList {
  display: block;
}
.bl_headerNavList li a {
  color: #888888;
  font-size: 90%;
  text-align: center;
  display: block;
  padding: 16px 6px 26px 6px;
  width: 100%;
}
.bl_headerNavList li a:hover {
  color: #474747;
}
.bl_headerNavList li a.green::after, .bl_headerNavList li a.orange::after, .bl_headerNavList li a.purple::after, .bl_headerNavList li a.yellow::after, .bl_headerNavList li a.blue::after, .bl_headerNavList li a.pink::after, .bl_headerNavList li a.lightgreen::after, .bl_headerNavList li a.orange2::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.bl_headerNavList li a.green::after {
  background-color: var(--bg-green);
}
.bl_headerNavList li a.orange::after {
  background-color: var(--bg-orange);
}
.bl_headerNavList li a.purple::after {
  background-color: var(--bg-purple);
}
.bl_headerNavList li a.yellow::after {
  background-color: var(--bg-yellow);
}
.bl_headerNavList li a.blue::after {
  background-color: var(--bg-blue);
}
.bl_headerNavList li a.pink::after {
  background-color: var(--bg-pink);
}
.bl_headerNavList li a.lightgreen::after {
  background-color: var(--bg-lightgreen);
}
.bl_headerNavList li a.orange2::after {
  background-color: var(--bg-orange2);
}
.bl_headerNavList li a.is_active {
  font-weight: bold;
  color: var(--txt-primary);
}
@media screen and (min-width: 1441px) {
  .bl_headerNavList .br {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .bl_headerNavList li a {
    padding: 12px 6px 22px 6px;
  }
  .bl_headerNavList span {
    display: none;
  }
}

.bl_headerNavDropdownList {
  display: none;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}
.bl_headerNavDropdownList li {
  transition: all 0.3s;
  position: relative;
  z-index: 1000;
}
.bl_headerNavDropdownList li a {
  padding: 16px 4px 16px 4px;
}
.bl_headerNavDropdownList li ~ li {
  border-top: 1px solid var(--border-solid);
}

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

.bl_headerNavList__sub {
  display: flex;
  gap: 24px;
  margin-bottom: 8px;
}
.bl_headerNavList__sub li {
  font-size: 80%;
}
.bl_headerNavList__sub li i {
  margin-right: 4px;
}
.bl_headerNavList__sub li:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .bl_headerNavList__sub {
    padding-top: 16px;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--border-solid);
  }
}

.bl_headerSearch {
  display: flex;
  align-items: center;
  gap: 0 4px;
  max-width: 300px;
  width: 100%;
}
.bl_headerSearch input {
  width: 100%;
  height: 28px;
  padding: 1px 5px 1px 8px;
  border: 1px solid var(--border-solid);
  box-sizing: border-box;
  color: #000;
  outline: none;
}
.bl_headerSearch button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  max-width: 80px;
  height: 28px;
  border: none;
  background-color: #005e3c;
  color: #fff;
  cursor: pointer;
}

.bl_headerNavSP {
  font-size: 1.8rem;
  padding: 80px 5%;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  background-color: #ececec;
  width: 480px;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.7s;
}
@media screen and (max-width: 500px) {
  .bl_headerNavSP {
    width: 100%;
  }
}

.bl_headerNavSP.active {
  transform: translateX(0%);
}

.bl_headerNavListSP {
  margin: 16px 0;
}
.bl_headerNavListSP i {
  margin-right: 6px;
}

.hamburgerBox {
  width: 50px;
  height: 50px;
  background-color: #6e6e6e;
  border-radius: 8px;
  position: fixed;
  right: 16px;
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hamburgerBox {
    right: 3%;
    width: calc(2.4vw + 32px);
    height: calc(2.4vw + 32px);
  }
}
@media screen and (min-width: 1025px) {
  .hamburgerBox {
    display: none;
  }
}

.hamburger {
  position: relative;
  width: 42%;
  height: 32%;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 10000;
  background-color: #fff;
  border-radius: 4px;
}

.hamburger,
.hamburger span {
  transition: all 0.7s;
  box-sizing: border-box;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  bottom: calc(50% - 1px);
  transform: rotate(45deg);
}

.bl_footer {
  padding-top: 40px;
  padding-bottom: 4px;
}

.copyright {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1.2rem;
  }
}

.bl_cover {
  text-align: center;
  margin: 40px 0;
}
.bl_cover p {
  font-family: "Noto Serif JP";
}

.bl_coverTtl__sub {
  font-size: 3.1rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .bl_coverTtl__sub {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .bl_coverTtl__sub {
    font-size: 2rem;
  }
}
@media screen and (min-width: 501px) {
  .bl_coverTtl__sub .br {
    display: none;
  }
}

.bl_coverTtl__main {
  font-size: 5rem;
  font-weight: 600;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .bl_coverTtl__main {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .bl_coverTtl__main {
    font-size: 3rem;
  }
}

.bl_coverInfo {
  margin-bottom: 24px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #fdeef4;
}
@media screen and (max-width: 500px) {
  .bl_coverInfo {
    flex-direction: column;
  }
}

.bl_coverAction {
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--border-solid-2);
}
@media screen and (max-width: 500px) {
  .bl_coverAction {
    padding: 8px;
  }
}

.bl_coverActionTtl {
  font-size: 3.1rem;
  font-family: "Noto Serif JP";
  line-height: 1;
  text-align: center;
  padding-bottom: 8px;
  grid-area: 1/1/2/3;
  border-bottom: 1px solid var(--border-solid-2);
}
.bl_coverActionTtl span {
  font-weight: bold;
  font-style: italic;
  color: #0075c1;
}

.bl_coverActionTtl__sub {
  font-weight: bold;
  margin-bottom: 4px;
}

.bl_coverActionBlock {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .bl_coverActionBlock {
    flex-direction: column;
  }
}

.bl_coverActionNews {
  width: calc(55% - 20px);
}
@media screen and (max-width: 768px) {
  .bl_coverActionNews {
    width: 100%;
  }
}

.bl_coverActionNewsList li {
  line-height: 1.5;
  margin-left: 24px;
  list-style: disc;
}
.bl_coverActionNewsList li a:hover {
  text-decoration: underline;
}
.bl_coverActionNewsList li ~ li {
  margin-top: 12px;
}

.bl_coverActionLink {
  width: calc(45% - 20px);
}
@media screen and (max-width: 768px) {
  .bl_coverActionLink {
    width: 100%;
  }
}

.bl_coverActionLinkIn {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bl_coverActionLinkIn img {
  max-width: 48%;
}
.bl_coverActionLinkIn:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .bl_coverActionLinkIn img {
    max-width: 38%;
  }
}

.bl_menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  .bl_menu {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
@media screen and (max-width: 500px) {
  .bl_menu {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}

.bl_menuBlock {
  text-align: center;
  aspect-ratio: 1/1;
  transition: 0.3s;
}
.bl_menuBlock a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.bl_menuBlock a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl_menuBlockTtl {
  font-family: "Noto Serif JP";
  font-size: 120%;
  font-weight: bold;
  line-height: 1.5;
  padding: 8px;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bl_menuBlockTtl.green {
  background-color: var(--bg-green);
}
.bl_menuBlockTtl.orange {
  background-color: var(--bg-orange);
}
.bl_menuBlockTtl.purple {
  background-color: var(--bg-purple);
}
.bl_menuBlockTtl.yellow {
  background-color: var(--bg-yellow);
}
.bl_menuBlockTtl.blue {
  background-color: var(--bg-blue);
}
.bl_menuBlockTtl.pink {
  background-color: var(--bg-pink);
}
.bl_menuBlockTtl.lightgreen {
  background-color: var(--bg-lightgreen);
}
.bl_menuBlockTtl.orange2 {
  background-color: var(--bg-orange2);
}
@media screen and (max-width: 425px) {
  .bl_menuBlockTtl {
    font-size: 100%;
  }
}

.bl_aboutBlock ~ .bl_aboutBlock {
  margin-top: 40px;
}

.bl_aboutBlockTtl {
  font-weight: bold;
  font-family: "Noto Serif JP";
}
.bl_aboutBlockTtl.red {
  color: #e60012;
}
.bl_aboutBlockTtl.green {
  color: #007c36;
}
.bl_aboutBlockTtl.blue {
  color: #005bac;
}

.bl_aboutImg {
  display: flex;
  gap: 16px;
}
.bl_aboutImg img {
  max-width: 200px;
  width: 20%;
}

.bl_seminarTtl {
  font-size: 120%;
  font-family: "Noto Serif JP";
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-top: 32px;
  background-color: #845ba3;
}
.bl_seminarTtl .pink,
.bl_seminarTtl .purple {
  font-family: "Noto Serif JP";
  padding: 2px 8px;
  margin: 0 4px;
  display: inline-block;
}
.bl_seminarTtl .pink {
  background-color: #e4007f;
}
.bl_seminarTtl .purple {
  background-color: #541b86;
}
@media screen and (min-width: 501px) {
  .bl_seminarTtl .br {
    display: none;
  }
}

.bl_seminarBlock {
  margin-top: 32px;
}
.bl_seminarBlock ~ .bl_seminarBlock {
  margin-top: 64px;
}

.bl_seminarList li {
  margin: 0 5px;
  height: 100%;
}
.bl_seminarList li a {
  line-height: 1.5;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.bl_seminarList .pink {
  background-color: #f3d9e8;
  transition: 0.3s;
}
.bl_seminarList .pink:hover {
  background-color: #dfb7ce;
  transition: 0.3s;
}
.bl_seminarList .purple {
  background-color: #ede8f3;
  transition: 0.3s;
}
.bl_seminarList .purple:hover {
  background-color: #d2c4e4;
  transition: 0.3s;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto !important;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .slider-controls {
    gap: 6px;
  }
}

.slick-dots {
  display: flex;
  gap: 8px;
}
.slick-dots li button {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 1024px) {
  .slick-dots {
    gap: 6px;
  }
  .slick-dots li button {
    font-size: 1.4rem;
    width: 32px;
    height: 32px;
  }
}

#pink .slick-dots li {
  background: #da81b2;
}
#pink .slick-dots li.slick-active {
  background: #944c74;
}

#purple .slick-dots li {
  background: #b79fcb;
}
#purple .slick-dots li.slick-active {
  background: #6e5583;
}

.slick-prev,
.slick-next {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 1024px) {
  .slick-prev,
.slick-next {
    width: 32px;
    height: 32px;
  }
}

#pink .slick-prev,
#pink .slick-next {
  background: #da81b2;
}

#purple .slick-prev,
#purple .slick-next {
  background: #b79fcb;
}

.bl_seminarPost {
  margin-top: 64px;
}
.bl_seminarPost a:hover {
  text-decoration: underline;
}

.bl_seminarPostTtl {
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 32px;
}

.bl_linkList a {
  margin-left: 16px;
  word-wrap: break-word;
}
.bl_linkList a:hover {
  text-decoration: underline;
}

.bl_activitiesInfo {
  margin: 24px auto;
  padding: 4px 16px;
  max-width: 700px;
  border: 1px solid;
}

.bl_activities {
  margin-top: 80px;
  display: flex;
  gap: 80px;
}
.bl_activities .hidden {
  display: none;
}

.bl_activitiesTabList {
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
}
.bl_activitiesTabList li {
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  padding: 12px 16px;
  width: 120px;
  background-color: #fcd68d;
  cursor: pointer;
}
.bl_activitiesTabList li.is-active {
  background-color: #f08200;
}
.bl_activitiesTabList li.old {
  background-color: #c9c9ca;
}
.bl_activitiesTabList li.old.is-active {
  background-color: #f08200;
}

.bl_activitiesContentsList li ~ li {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-solid);
}
.bl_activitiesContentsList li a {
  display: flex;
  gap: 40px;
}
.bl_activitiesContentsList li a img {
  width: 160px;
  border: 1px solid var(--border-solid);
}
.bl_activitiesContentsList li a:hover {
  text-decoration: underline;
}

.bl_activitiesTorikumi ~ .bl_activitiesTorikumi {
  margin-top: 40px;
}

.bl_activitiesTorikumiTtl {
  font-weight: bold;
  color: #f08200;
}

.bl_activitiesTorikumiImg {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}
.bl_activitiesTorikumiImg p {
  font-size: 80%;
  line-height: 1.2;
  text-align: center;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .bl_activitiesTorikumiImg {
    gap: 16px;
  }
}
@media screen and (max-width: 500px) {
  .bl_activitiesTorikumiImg {
    text-align: center;
    flex-direction: column;
  }
}

.bl_membershipCaution {
  font-weight: bold;
  border-bottom: 2px solid var(--color-danger);
}

.bl_membershipList {
  margin: 40px 0;
  list-style: square;
  list-style-position: inside;
}

.bl_membershipKifu {
  margin-top: 24px;
  padding: 8px 16px;
  border: 1px solid;
}

.bl_columnBlock {
  display: flex;
  gap: 80px;
}
.bl_columnBlock ~ .bl_columnBlock {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-solid);
}

.bl_columnBlockTtl {
  width: 160px;
}

.bl_columnBlockTtlTxt {
  font-size: 120%;
  font-weight: bold;
  font-family: "Noto Serif JP";
  color: #fff;
  line-height: 1.5;
  text-align: center;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bl_columnBlockTtlTxt.blue {
  background-color: #5dc2c8;
}
.bl_columnBlockTtlTxt.orange {
  background-color: #f39f64;
  min-height: 140px;
}

.bl_columnList {
  list-style-type: decimal;
}
.bl_columnList li a {
  color: var(--color-link);
}
.bl_columnList li ~ li {
  margin-top: 8px;
}

.bl_youtube {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 64px;
  grid-row-gap: 24px;
}
.bl_youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 1024px) {
  .bl_youtube {
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .bl_youtube {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
  .bl_youtube .bl_youtube_1 {
    grid-area: 2/1/3/2;
  }
  .bl_youtube .bl_youtube_2 {
    grid-area: 2/2/3/3;
  }
  .bl_youtube .bl_youtube_3 {
    grid-area: 3/1/4/2;
  }
  .bl_youtube .bl_youtube_4 {
    grid-area: 3/2/4/3;
  }
}
@media screen and (max-width: 500px) {
  .bl_youtube {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    grid-column-gap: 0px;
    grid-row-gap: 24px;
  }
  .bl_youtube .bl_youtube_1 {
    grid-area: 2/1/3/2;
  }
  .bl_youtube .bl_youtube_2 {
    grid-area: 3/1/4/2;
  }
  .bl_youtube .bl_youtube_3 {
    grid-area: 4/1/5/2;
  }
  .bl_youtube .bl_youtube_4 {
    grid-area: 5/1/6/2;
  }
}

.bl_youtubeBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 768px) {
  .bl_youtubeBtn {
    grid-area: 1/1/2/3;
  }
}

.bl_youtubeBtnLink {
  font-weight: bold;
  text-align: center;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-yellow);
  border-radius: 50%;
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
  box-shadow: 0 5px 0 #ceb76c;
}
.bl_youtubeBtnLink span {
  font-size: 130%;
  line-height: 1;
}
.bl_youtubeBtnLink .red {
  color: var(--color-danger);
}
.bl_youtubeBtnLink .br {
  display: none;
}
.bl_youtubeBtnLink:hover {
  transform: translate(0, 3px);
  box-shadow: 0 2px 0 #b99f46;
}
@media screen and (max-width: 1200px) {
  .bl_youtubeBtnLink {
    width: 330px;
  }
}
@media screen and (max-width: 1024px) {
  .bl_youtubeBtnLink {
    font-size: 90%;
    width: auto;
  }
  .bl_youtubeBtnLink span {
    font-size: 2.3vw;
  }
  .bl_youtubeBtnLink .br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .bl_youtubeBtnLink {
    max-width: 250px;
  }
  .bl_youtubeBtnLink span {
    font-size: 120%;
  }
}

.bl_sitemapList a:hover {
  text-decoration: underline;
}
.bl_sitemapList i {
  margin-right: 6px;
}

.el_ttlH2 {
  font-family: "Noto Serif JP";
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .el_ttlH2 {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 768px) {
  .el_ttlH2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 500px) {
  .el_ttlH2 {
    font-size: 2.2rem;
  }
}

.el_ttl__H3 {
  font-family: "Noto Serif JP";
  font-size: 120%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.el_ttl__sub {
  font-size: 120%;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .el_ttl__sub {
    font-size: 100%;
  }
}

.el_breadcrumbs {
  font-size: 80%;
  color: var(--color-link);
  max-width: 1160px;
  width: 94%;
  margin: 16px auto;
  display: flex;
}
.el_breadcrumbs li:not(:last-child) {
  margin-right: 8px;
  padding-right: 16px;
  position: relative;
}
.el_breadcrumbs li:not(:last-child)::after {
  content: ">";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .el_breadcrumbs {
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .el_breadcrumbs {
    font-size: 70%;
    flex-wrap: wrap;
  }
  .el_breadcrumbs li:not(:last-child) {
    margin-right: 6px;
    padding-right: 12px;
  }
}

/*
* margin
*/
.hp {
  /* margin top */
  /* margin right */
  /* margin bottom */
  /* margin left */
}
.hp_mt0p {
  margin-top: 0px !important;
}
.hp_mt5p {
  margin-top: 5px !important;
}
.hp_mt10p {
  margin-top: 10px !important;
}
.hp_mt15p {
  margin-top: 15px !important;
}
.hp_mt20p {
  margin-top: 20px !important;
}
.hp_mt25p {
  margin-top: 25px !important;
}
.hp_mt30p {
  margin-top: 30px !important;
}
.hp_mt35p {
  margin-top: 35px !important;
}
.hp_mt40p {
  margin-top: 40px !important;
}
.hp_mt45p {
  margin-top: 45px !important;
}
.hp_mt50p {
  margin-top: 50px !important;
}
.hp_mt55p {
  margin-top: 55px !important;
}
.hp_mt60p {
  margin-top: 60px !important;
}
.hp_mt65p {
  margin-top: 65px !important;
}
.hp_mt70p {
  margin-top: 70px !important;
}
.hp_mt100p {
  margin-top: 100px !important;
}
.hp_mr0p {
  margin-right: 0px !important;
}
.hp_mr5p {
  margin-right: 5px !important;
}
.hp_mr10p {
  margin-right: 10px !important;
}
.hp_mr15p {
  margin-right: 15px !important;
}
.hp_mr20p {
  margin-right: 20px !important;
}
.hp_mr25p {
  margin-right: 25px !important;
}
.hp_mr30p {
  margin-right: 30px !important;
}
.hp_mr35p {
  margin-right: 35px !important;
}
.hp_mr40p {
  margin-right: 40px !important;
}
.hp_mr45p {
  margin-right: 45px !important;
}
.hp_mr50p {
  margin-right: 50px !important;
}
.hp_mr55p {
  margin-right: 55px !important;
}
.hp_mr60p {
  margin-right: 60px !important;
}
.hp_mr65p {
  margin-right: 65px !important;
}
.hp_mr70p {
  margin-right: 70px !important;
}
.hp_mb0p {
  margin-bottom: 0px !important;
}
.hp_mb5p {
  margin-bottom: 5px !important;
}
.hp_mb10p {
  margin-bottom: 10px !important;
}
.hp_mb15p {
  margin-bottom: 15px !important;
}
.hp_mb20p {
  margin-bottom: 20px !important;
}
.hp_mb25p {
  margin-bottom: 25px !important;
}
.hp_mb30p {
  margin-bottom: 30px !important;
}
.hp_mb35p {
  margin-bottom: 35px !important;
}
.hp_mb40p {
  margin-bottom: 40px !important;
}
.hp_mb45p {
  margin-bottom: 45px !important;
}
.hp_mb50p {
  margin-bottom: 50px !important;
}
.hp_mb55p {
  margin-bottom: 55px !important;
}
.hp_mb60p {
  margin-bottom: 60px !important;
}
.hp_mb65p {
  margin-bottom: 65px !important;
}
.hp_mb70p {
  margin-bottom: 70px !important;
}
.hp_ml0p {
  margin-left: 0px !important;
}
.hp_ml5p {
  margin-left: 5px !important;
}
.hp_ml10p {
  margin-left: 10px !important;
}
.hp_ml15p {
  margin-left: 15px !important;
}
.hp_ml20p {
  margin-left: 20px !important;
}
.hp_ml25p {
  margin-left: 25px !important;
}
.hp_ml30p {
  margin-left: 30px !important;
}
.hp_ml35p {
  margin-left: 35px !important;
}
.hp_ml40p {
  margin-left: 40px !important;
}
.hp_ml45p {
  margin-left: 45px !important;
}
.hp_ml50p {
  margin-left: 50px !important;
}
.hp_ml55p {
  margin-left: 55px !important;
}
.hp_ml60p {
  margin-left: 60px !important;
}
.hp_ml65p {
  margin-left: 65px !important;
}
.hp_ml70p {
  margin-left: 70px !important;
}

/*
* padding
*/
.hp {
  /* padding top */
  /* padding right */
  /* padding bottom */
  /* padding left */
}
.hp_pt0p {
  padding-top: 0px !important;
}
.hp_pt5p {
  padding-top: 5px !important;
}
.hp_pt10p {
  padding-top: 10px !important;
}
.hp_pt15p {
  padding-top: 15px !important;
}
.hp_pt20p {
  padding-top: 20px !important;
}
.hp_pt25p {
  padding-top: 25px !important;
}
.hp_pt30p {
  padding-top: 30px !important;
}
.hp_pt35p {
  padding-top: 35px !important;
}
.hp_pt40p {
  padding-top: 40px !important;
}
.hp_pt45p {
  padding-top: 45px !important;
}
.hp_pt50p {
  padding-top: 50px !important;
}
.hp_pt55p {
  padding-top: 55px !important;
}
.hp_pt60p {
  padding-top: 60px !important;
}
.hp_pt65p {
  padding-top: 65px !important;
}
.hp_pt70p {
  padding-top: 70px !important;
}
.hp_pr0p {
  padding-right: 0px !important;
}
.hp_pr5p {
  padding-right: 5px !important;
}
.hp_pr10p {
  padding-right: 10px !important;
}
.hp_pr15p {
  padding-right: 15px !important;
}
.hp_pr20p {
  padding-right: 20px !important;
}
.hp_pr25p {
  padding-right: 25px !important;
}
.hp_pr30p {
  padding-right: 30px !important;
}
.hp_pr35p {
  padding-right: 35px !important;
}
.hp_pr40p {
  padding-right: 40px !important;
}
.hp_pr45p {
  padding-right: 45px !important;
}
.hp_pr50p {
  padding-right: 50px !important;
}
.hp_pr55p {
  padding-right: 55px !important;
}
.hp_pr60p {
  padding-right: 60px !important;
}
.hp_pr65p {
  padding-right: 65px !important;
}
.hp_pr70p {
  padding-right: 70px !important;
}
.hp_pb0p {
  padding-bottom: 0px !important;
}
.hp_pb5p {
  padding-bottom: 5px !important;
}
.hp_pb10p {
  padding-bottom: 10px !important;
}
.hp_pb15p {
  padding-bottom: 15px !important;
}
.hp_pb20p {
  padding-bottom: 20px !important;
}
.hp_pb25p {
  padding-bottom: 25px !important;
}
.hp_pb30p {
  padding-bottom: 30px !important;
}
.hp_pb35p {
  padding-bottom: 35px !important;
}
.hp_pb40p {
  padding-bottom: 40px !important;
}
.hp_pb45p {
  padding-bottom: 45px !important;
}
.hp_pb50p {
  padding-bottom: 50px !important;
}
.hp_pb55p {
  padding-bottom: 55px !important;
}
.hp_pb60p {
  padding-bottom: 60px !important;
}
.hp_pb65p {
  padding-bottom: 65px !important;
}
.hp_pb70p {
  padding-bottom: 70px !important;
}
.hp_pl0p {
  padding-left: 0px !important;
}
.hp_pl5p {
  padding-left: 5px !important;
}
.hp_pl10p {
  padding-left: 10px !important;
}
.hp_pl15p {
  padding-left: 15px !important;
}
.hp_pl20p {
  padding-left: 20px !important;
}
.hp_pl25p {
  padding-left: 25px !important;
}
.hp_pl30p {
  padding-left: 30px !important;
}
.hp_pl35p {
  padding-left: 35px !important;
}
.hp_pl40p {
  padding-left: 40px !important;
}
.hp_pl45p {
  padding-left: 45px !important;
}
.hp_pl50p {
  padding-left: 50px !important;
}
.hp_pl55p {
  padding-left: 55px !important;
}
.hp_pl60p {
  padding-left: 60px !important;
}
.hp_pl65p {
  padding-left: 65px !important;
}
.hp_pl70p {
  padding-left: 70px !important;
}

/*
* font
*/
.hp_fwSemiBold {
  font-weight: 500 !important;
}
.hp_fwBold {
  font-weight: bold !important;
}
.hp_fs80per {
  font-size: 80% !important;
}
.hp_fs120per {
  font-size: 120% !important;
}

/*
* color
*/
.hp_colorMain {
  color: var(--color-primary) !important;
}
.hp_colorDanger {
  color: var(--color-danger) !important;
}
.hp_colorGreen {
  color: var(--color-green) !important;
}
.hp_colorBrown {
  color: var(--color-brown) !important;
}

.hp_txtCenter {
  text-align: center !important;
}
.hp_txtLeft {
  text-align: left !important;
}
.hp_txtRight {
  text-align: right !important;
}
.hp_txtJust {
  text-align: justify !important;
}

/*
* Base
*/
/*
* Layout
*/
/*
* Block
*/
/*
* Element
*/
/*
* Unique
*/
/*
* Helper
*/
