@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500&display=swap);
@charset "UTF-8";
/**
* Base - サイトのベースになるcss
*/
/*
* Color
*/
:root {
  --txt-primary: #333333;
  --txt-black: #1A1A1A;
  --txt-gray: #919191;
  --txt-orange: #ff940d;
  --txt-link: #1a0dab;
  --bg-cream: #fff5d5;
  --bg-cream2: #FAECBB;
  --bg-orange: #FFD447;
  --bg-blue: #79DEE1;
  --color-danger: #db0000;
}

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

body {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "BIZ UDPGothic", Meiryo, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  line-height: 1.6;
  color: #333333;
  color: var(--txt-primary);
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

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

a {
  color: #1a0dab;
  color: var(--txt-link);
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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: 1.8rem;
}

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

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

.attention {
  color: #F00;
}

.ly_sect {
  max-width: 1800px;
  width: 94%;
  margin: auto;
}

.ly_sectLow {
  max-width: 980px;
  width: 90%;
  margin: auto;
  padding: 8rem 0;
}
@media screen and (max-width: 1024px) {
  .ly_sectLow {
    padding-top: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .ly_sectLow {
    padding-top: 4rem;
  }
}

.ly_sectLowInner {
  max-width: 920px;
  margin: auto;
}

.bl_header {
  background-color: #fff;
  padding: 1.4rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .bl_header {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .bl_header {
    padding: 1.2rem 1.6rem;
  }
}
@media screen and (max-width: 425px) {
  .bl_header {
    padding: 1.2rem 8px;
  }
}

.bl_headerLogo {
  max-width: 360px;
  width: 34%;
  min-width: 240px;
}
.bl_headerLogo img {
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .bl_headerLogo {
    width: 50%;
  }
}

.bl_headerNavList {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  gap: 3.2rem;
}
.bl_headerNavList li {
  display: inline-block;
}
.bl_headerNavList a {
  color: #333333;
  color: var(--txt-primary);
}
.bl_headerNavList a:hover {
  color: #ff940d;
  color: var(--txt-orange);
}
@media screen and (max-width: 1440px) {
  .bl_headerNavList {
    gap: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .bl_headerNavList {
    display: none;
  }
}

.bl_headerNavSP {
  font-size: 2rem;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  background-color: #fff5d5;
  background-color: var(--bg-cream);
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 1025px) {
  .bl_headerNavSP {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .bl_headerNavSP {
    font-size: 1.8rem;
  }
}
.bl_headerNavSP a {
  color: #333333;
  color: var(--txt-primary);
}
.bl_headerNavSP .banner {
  margin-top: 6vh;
}

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

.bl_headerNavListSP {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.bl_headerNavListSP i {
  width: 40px;
  text-align: center;
}

.hamburger {
  margin-left: auto;
  position: relative;
  width: 38px;
  height: 28px;
  cursor: pointer;
  text-align: center;
  z-index: 11000;
}
@media screen and (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 33px;
    height: 26px;
  }
}
@media screen and (max-width: 425px) {
  .hamburger {
    width: 28px;
    height: 21px;
  }
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
  background-color: var(--txt-primary);
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    height: 2px;
  }
}
@media screen and (max-width: 425px) {
  .hamburger span {
    height: 1px;
  }
}

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

.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 13px;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-of-type(2) {
    top: 12px;
  }
}
@media screen and (max-width: 425px) {
  .hamburger span:nth-of-type(2) {
    top: 10px;
  }
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .hamburger.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
  }
}
@media screen and (max-width: 425px) {
  .hamburger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .hamburger.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }
}
@media screen and (max-width: 425px) {
  .hamburger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}

.bl_cover {
  height: 520px;
}

.bl_news {
  max-width: 1024px;
  width: 94%;
  margin: auto;
  padding: 8rem 0;
  background-color: #fff;
  display: flex;
  gap: 120px;
  margin-top: 4rem;
}
@media screen and (max-width: 1024px) {
  .bl_news {
    gap: 10%;
  }
}
@media screen and (max-width: 768px) {
  .bl_news {
    padding: 4rem 0;
    flex-direction: column;
    gap: 0;
  }
}

.bl_newsSide {
  min-width: 135px;
}
@media screen and (max-width: 1024px) {
  .bl_newsSide {
    min-width: 126px;
  }
}
@media screen and (max-width: 768px) {
  .bl_newsSide {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
  }
}

.bl_newsList li {
  display: flex;
}
@media screen and (max-width: 768px) {
  .bl_newsList li {
    flex-direction: column;
  }
}
.bl_newsList li ~ li {
  margin-top: 4rem;
}

.bl_newsDate {
  font-size: 1.6rem;
  font-weight: bold;
  color: #919191;
  color: var(--txt-gray);
  width: 162px;
  overflow: auto;
  flex-shrink: 0;
}

.bl_newsTxt {
  display: block;
  flex-basis: 100%;
  text-decoration: underline;
}
.bl_newsTxt:hover {
  text-decoration: none;
}

.bl_newsNew {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Montserrat", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "BIZ UDPGothic", Meiryo, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  color: #db0000;
  color: var(--color-danger);
  margin: 0 1.6rem;
}

.bl_info {
  padding: 8rem 0 0;
}

.bl_infoArea {
  max-width: 1440px;
  width: 92%;
  margin: 0 auto 8rem;
}
@media screen and (max-width: 1440px) {
  .bl_infoArea {
    max-width: 1160px;
  }
}
@media screen and (max-width: 768px) {
  .bl_infoArea {
    max-width: 600px;
    width: 100%;
  }
}

.bl_infoList {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.bl_infoList li {
  width: calc((100% - 64px) / 3);
}
.bl_infoList li time {
  font-size: 1.4rem;
}
@media screen and (max-width: 1440px) {
  .bl_infoList li {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  .bl_infoList {
    gap: 24px;
  }
  .bl_infoList li {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .bl_infoList li {
    max-width: 100%;
    width: 100%;
  }
  .bl_infoList li time {
    font-size: 1.3rem;
  }
}

.bl_infoInner {
  background-color: #fff;
  height: 140px;
}
@media screen and (max-width: 1024px) {
  .bl_infoInner {
    height: 128px;
  }
}

.bl_infoLink {
  display: flex;
  text-overflow: ellipsis;
  position: relative;
}
.bl_infoLink:hover {
  opacity: 0.7;
}
.bl_infoLink i {
  font-size: 0.9em;
  color: #333333;
  color: var(--txt-primary);
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
}

.bl_infoThumb {
  max-width: 100px;
  width: 28%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .bl_infoThumb {
    max-width: 88px;
    height: 128px;
  }
}
@media screen and (max-width: 768px) {
  .bl_infoThumb {
    width: 24%;
  }
}

.bl_infoTxt {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1.6rem 1.8rem 2rem 1.8rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1024px) {
  .bl_infoTxt {
    font-size: 1.4rem;
  }
}

.bl_infoNew {
  font-size: 1.4rem;
  font-weight: 500;
  color: #db0000;
  color: var(--color-danger);
  margin-left: 0.8rem;
}
@media screen and (max-width: 768px) {
  .bl_infoNew {
    font-size: 1.3rem;
  }
}

.bl_infoSeminarFlex {
  display: flex;
  gap: 8%;
}
@media screen and (max-width: 768px) {
  .bl_infoSeminarFlex {
    flex-direction: column-reverse;
  }
}

.bl_infoSeminarTxt {
  width: calc(100% - 8% - 160px);
}
.bl_infoSeminarTxt dt {
  margin-top: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .bl_infoSeminarTxt {
    width: calc(100% - 8% - 140px);
  }
}
@media screen and (max-width: 768px) {
  .bl_infoSeminarTxt {
    width: 100%;
  }
}

.bl_infoSeminarThumb {
  width: 160px;
}
@media screen and (max-width: 1024px) {
  .bl_infoSeminarThumb {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .bl_infoSeminarThumb {
    width: 160px;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .bl_infoSeminarThumb {
    margin: 0 auto 4rem;
  }
}

/*2023.07.21書き加え*/
.pre {
  font-weight: bold;
  font-size: 2rem;
  margin-top: 2rem;
}

.line {
  border-top: 1px solid #ff940d;
  border-top: 1px solid var(--txt-orange);
  border-bottom: 1px solid #ff940d;
  border-bottom: 1px solid var(--txt-orange);
  margin: 5rem 0;
}

.margin {
  margin-top: 2rem;
}

/*2023.09.11追記*/
.end {
  color: red;
}

/*2023.10.02追記*/
.qr_img img {
  width: 20%;
}

.mt {
  margin-top: 30px;
}

.mt7 {
  margin-top: 70px;
}

/*2023.10.17追記*/
.bl_infoSeminarTxt .file img {
  width: 16px;
  margin-bottom: 5px;
  margin-right: 5px;
}
.bl_infoSeminarTxt a {
  text-decoration: underline;
}
.bl_infoSeminarTxt a:hover {
  text-decoration: none;
}

.bl_contact {
  max-width: 980px;
  width: 90%;
  margin: 6.4rem auto 0;
  padding: 3.2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .bl_contact {
    max-width: 600px;
    flex-direction: column;
    gap: 0;
  }
}

.bl_contactInner {
  max-width: 719px;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .bl_contactInner {
    width: 100%;
  }
}

.bl_contactUni {
  font-size: 2.2rem;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .bl_contactUni {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .bl_contactUni {
    font-size: 1.8rem;
  }
}

.bl_contactUniEn {
  line-height: 1.2;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .bl_contactUniEn {
    font-size: 1.5rem;
  }
}

.bl_contactAddress {
  line-height: 1.5;
}

.bl_contactMail::after {
  content: "@";
}

footer {
  font-size: 1.4rem;
  line-height: 1;
  text-align: right;
  padding: 1.6rem 0;
  background-color: #FAECBB;
  background-color: var(--bg-cream2);
}
@media screen and (max-width: 1024px) {
  footer {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  footer {
    font-size: 1.1rem;
    padding: 1.2rem 0 1.6rem;
  }
}

.bl_footer {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .bl_footer {
    text-align: center;
    flex-direction: column;
  }
}

.bl_footerPolicy {
  display: flex;
  gap: 2.4rem;
}
.bl_footerPolicy i {
  margin-right: 0.4rem;
}
@media screen and (max-width: 768px) {
  .bl_footerPolicy {
    text-align: left;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
}

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

.bl_peopleNameJp {
  font-size: 2.2rem;
  font-weight: bold;
}

.bl_peopleLink {
  font-size: 1.4rem;
}
.bl_peopleLink i {
  font-size: 1.2rem;
  margin-right: 0.4rem;
}
.bl_peopleLink:hover {
  opacity: 0.7;
}

.bl_peopleContentsInner {
  width: 70%;
  margin-left: auto;
  padding-right: 6%;
}
@media screen and (max-width: 768px) {
  .bl_peopleContentsInner {
    width: 100%;
    margin-top: 2.4rem;
  }
}

.bl_peopleTtl {
  font-size: 1.6rem;
  font-weight: bold;
}

.sheep::after {
  content: "";
  background-image: url(../images/people/sheep.jpg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  display: inline-block;
  width: 30px;
  height: 26px;
}

.bl_peopleStaffList {
  margin-top: 48px;
}
.bl_peopleStaffList ul {
  list-style: disc;
  margin-left: 3.4rem;
}
.bl_peopleStaffList li {
  margin: 5px 0;
}
.bl_peopleStaffList li::marker {
  font-size: 12px;
}

/* アコーディオン */
details {
  display: block;
  margin-top: 4.8rem;
}

summary {
  cursor: pointer;
  display: block;
  padding: 1.6rem;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
}
summary::before {
  content: "+";
  font-size: 2.2rem;
  font-weight: bold;
  position: absolute;
  top: 38%;
  bottom: 0;
  right: 22px;
}

details[open] summary:before {
  content: "－";
}

.summary_no_ac {
  cursor: default;
  display: block;
  padding: 1.6rem;
  position: relative;
}
.summary_no_ac::-webkit-details-marker {
  display: none;
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
}
.summary_no_ac::before {
  content: "";
}

details[open] .summary_no_ac:before {
  content: "";
}

.accordionInner {
  padding: 0 1.6rem 1.6rem;
}

.bl_siteItem ~ .bl_siteItem {
  margin-top: 4rem;
}
.bl_siteItem a {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.bl_siteItem a:hover {
  opacity: 0.7;
}
.bl_siteItem img {
  width: 23%;
  border: solid 1px #919191;
  border: solid 1px var(--txt-gray);
}
@media screen and (max-width: 768px) {
  .bl_siteItem img {
    width: 260px;
  }
  .bl_siteItem a {
    flex-direction: column;
  }
}
@media screen and (max-width: 425px) {
  .bl_siteItem img {
    width: 100%;
    height: 98px;
    -o-object-fit: none;
       object-fit: none;
  }
}

.bl_about a {
  text-decoration: underline;
}
.bl_about a:hover {
  text-decoration: none;
}

.bl_aboutName {
  font-size: 1.6rem;
  text-align: right;
  margin-top: 5.6rem;
}

.bl_projectsList {
  font-weight: bold;
}
.bl_projectsList li {
  margin-top: 4.8rem;
  position: relative;
  padding: 0 0 0 20px;
}
.bl_projectsList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: #333333;
  background-color: var(--txt-primary);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.bl_projectsTxt {
  font-weight: normal;
}

.bl_disclosuresCard {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4.8rem;
  padding: 2.4rem;
}
@media screen and (max-width: 500px) {
  .bl_disclosuresCard {
    flex-direction: column-reverse;
  }
}

.bl_disclosuresCardPdf {
  max-width: 56px;
  width: 10%;
  min-width: 48px;
  margin-top: 0.8rem;
  margin-left: 2.4rem;
  flex-shrink: 0;
}
.bl_disclosuresCardPdf:hover {
  opacity: 0.7;
}
@media screen and (max-width: 500px) {
  .bl_disclosuresCardPdf {
    margin-top: 1.6rem;
    margin-left: auto;
  }
}

.bl_letterList li {
  padding-left: 16px;
  position: relative;
}
.bl_letterList li::before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 0;
  width: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid #444444;
  border-radius: 8px;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.bl_letterList li ~ li {
  margin-top: 8px;
}

.bl_letterCard {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4.8rem;
  padding: 2.4rem;
}
@media screen and (max-width: 500px) {
  .bl_letterCard {
    flex-direction: column;
  }
}

.bl_letterCardTtl {
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.bl_letterCardPdf {
  max-width: 56px;
  width: 10%;
  min-width: 48px;
  margin-top: 0.8rem;
  margin-left: 2.4rem;
  flex-shrink: 0;
}
.bl_letterCardPdf:hover {
  opacity: 0.7;
}
@media screen and (max-width: 500px) {
  .bl_letterCardPdf {
    margin-top: 1.6rem;
    margin-left: auto;
  }
}

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

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

.el_txtDomain::before {
  content: "@";
}

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

.el_hoverUnderline:hover {
  text-decoration: underline;
}

.el_hoverUnderlineNone {
  text-decoration: underline;
}
.el_hoverUnderlineNone:hover {
  text-decoration: none;
}

.el_ttl {
  font-size: 3.4rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .el_ttl {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 768px) {
  .el_ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 500px) {
  .el_ttl {
    font-size: 2.4rem;
  }
}

.el_ttlTop {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 1024px) {
  .el_ttlTop {
    margin-bottom: 3.2rem;
  }
}

.el_ttlLow {
  position: relative;
  display: inline-block;
  margin: 2.4rem 0 4rem;
  padding: 0 4.8rem;
}
.el_ttlLow::before, .el_ttlLow::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 4.8rem;
  height: 2px;
  background-color: #79DEE1;
  background-color: var(--bg-blue);
  transform: rotate(-60deg);
}
.el_ttlLow::before {
  left: 0;
}
.el_ttlLow::after {
  right: 0;
}
.el_ttlLow i {
  font-size: 0.8em;
  color: #79DEE1;
  color: var(--bg-blue);
  margin-right: 0.6rem;
}
@media screen and (max-width: 1024px) {
  .el_ttlLow {
    padding: 0 4.4rem;
  }
  .el_ttlLow::before, .el_ttlLow::after {
    width: 4.4rem;
  }
}
@media screen and (max-width: 768px) {
  .el_ttlLow {
    padding: 0 4rem;
  }
  .el_ttlLow::before, .el_ttlLow::after {
    width: 4.1rem;
  }
}

.el_ttlH3 {
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.el_ttlH3 ~ .el_ttlH3 {
  margin-top: 4.8rem;
}

.el_ttlDeco {
  border-left: 3px solid #444444;
  border-bottom: 1px dotted #444444;
  margin-top: 3.2rem;
  margin-bottom: 1.8rem;
  padding: 0 0 0 1rem;
}

.el_ttlDeco__orange {
  border-left: 3px solid #ff940d;
  border-left: 3px solid var(--txt-orange);
  border-bottom: 1px dotted #ff940d;
  border-bottom: 1px dotted var(--txt-orange);
  margin-top: 3.2rem;
  margin-bottom: 1.8rem;
  padding: 0 0 0 1rem;
}

.el_ttl_news {
  width: 136px;
}
@media screen and (max-width: 768px) {
  .el_ttl_news {
    width: 100%;
  }
}

.el_btn {
  padding: 0.8rem 2.4rem;
  border-radius: 30px;
  transition: 0.3s;
}
.el_btn i {
  margin-left: 0.8rem;
}
.el_btn:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .el_btn {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  .el_btn {
    font-size: 1.3rem;
    padding: 0.4rem 1.6rem;
  }
}

.el_btnOrange {
  color: #333333;
  color: var(--txt-primary);
  background-color: #FFD447;
  background-color: var(--bg-orange);
}

.el_bgWhite {
  background-color: #fff;
}

.el_bgTop {
  background: linear-gradient(180deg, #79DEE1, #FFD447 95vh, #fff5d5 120vh);
  background: linear-gradient(180deg, var(--bg-blue), var(--bg-orange) 95vh, var(--bg-cream) 120vh);
}

.el_bgLow {
  background: linear-gradient(180deg, #79DEE1, #FFD447 95vh);
  background: linear-gradient(180deg, var(--bg-blue), var(--bg-orange) 95vh);
  padding-bottom: 3%;
}

.el_border {
  border: solid 1px;
}
.el_border:nth-child(4n+2) {
  border-color: #ff47ac;
}
.el_border:nth-child(4n+3) {
  border-color: #ffd447;
}
.el_border:nth-child(4n+4) {
  border-color: #55e076;
}
.el_border:nth-child(4n+1) {
  border-color: #79DEE1;
  border-color: var(--bg-blue);
}

.el_listOrange li {
  position: relative;
  margin-top: 3.2rem;
  padding: 0 0 0 2.2rem;
}
.el_listOrange li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 8px;
  height: 8px;
  background-color: #ff940d;
  background-color: var(--txt-orange);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.el_listNum li {
  list-style-type: decimal;
  list-style-position: outside;
  margin-top: 3.2rem;
  margin-left: 2rem;
}

/*
* font
*/
.hp_fwNormal {
  font-weight: normal !important;
}
.hp_fwBold {
  font-weight: bold !important;
}
.hp_fs80per {
  font-size: 0.8em !important;
}
.hp_fs90per {
  font-size: 0.9em !important;
}
.hp_fs120per {
  font-size: 1.2em !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;
}

/*
* 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;
}

.un_soon {
  max-width: 550px;
  width: 90%;
  margin: 4rem auto;
}

.un_soonTtl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .un_soonTtl {
    font-size: 2rem;
  }
}

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