@charset "UTF-8";
/* color */
/* size */
/*****************************　　　
  Content
******************************/
* {
  margin: 0;
  padding: 0;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

input,
textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

*:focus {
  outline: none;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-size: 1.1rem;
  background-color: #fafafa;
  overflow-y: scroll;
  overflow-x: hidden;
  color: #404040;
  letter-spacing: 0;
  line-height: 1.6;
}

a {
  text-decoration: none !important;
  font-size: 13px;
  font-weight: bold;
}

p {
  font-size: 16px;
}
p.h4 {
  color: #2eba33;
  font-weight: bold;
  font-size: 1.4rem;
}

h1 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 24px;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #2eba33;
}

h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
}

h4 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
}

h5 {
  font-weight: bold;
}

.btn-href {
  cursor: pointer;
}

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

/*****************************　　　
  共通デザイン
******************************/
.subheader {
  position: relative;
  text-align: center;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .subheader {
    font-size: 2.2rem;
  }
  .subheader + p.fsr18 {
    font-size: 1.6rem !important;
  }
}

.delay1 {
  animation-delay: 100ms !important;
}

.delay2 {
  animation-delay: 200ms !important;
}

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
.elm {
  opacity: 0;
}

.fade-in-bottom {
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
.slideelms {
  opacity: 0;
}

.slide-in-right {
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
.lslideelms {
  opacity: 0;
}

.slide-in-left {
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media only screen and (min-width: 1200px) {
  .slide-bottom:hover {
    animation: slide-bottom 200ms ease-in both;
  }
}

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
@keyframes slide-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
/*****************************　　　
  MV
******************************/
.mv {
  width: 100vw;
  aspect-ratio: 2/1;
  background-image: linear-gradient(to right, rgb(255, 255, 253) 10%, rgba(255, 255, 253, 0) 60%), url("../img/TOP_main.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% 0%;
}
@media only screen and (max-width: 767px) {
  .mv {
    background-image: url("../img/TOP_main-sp.jpeg");
    aspect-ratio: 2/3;
  }
}

.h2-deco {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
  background-image: linear-gradient(to top, #ffc107 0%, rgb(249, 152, 14) 80%);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  margin-top: 5px;
  margin-bottom: 5px;
}

.mv-font {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 10px;
  padding-bottom: 10px;
}
.mv-font h2 {
  font-size: 3.5rem;
  transform: skewX(-10deg);
  color: #fff;
  margin-bottom: 0;
  padding-right: 0.5rem;
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.311));
}
@media only screen and (max-width: 576px) {
  .mv-font h2 {
    font-size: 2.5rem;
  }
}
.mv-font p {
  font-size: 1.3rem;
  font-weight: 100;
  letter-spacing: 0.3rem;
  transform: skewX(-10deg);
}
@media only screen and (max-width: 768px) {
  .mv-font p {
    font-size: 1rem;
  }
}

.btn01.mv-btn {
  font-size: 1.3rem;
  padding: 16.4px;
}

@media only screen and (max-width: 576px) {
  .lh2 {
    line-height: 2;
  }
}

/*****************************　　　
  mv & banner 共用スタイル
******************************/
.mv-ba-common {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 500px) {
  .mv-ba-common {
    align-content: end;
  }
}

/*****************************　　　
  リナックスカレッジとは
******************************/
.courner-border {
  position: relative;
}
.courner-border:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 33%;
  border-top: 2px solid #999;
}
.courner-border:after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  height: 33%;
  border-left: 2px solid #999;
}
.courner-border.border-right:before {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
.courner-border.border-right:after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .courner-border:after, .courner-border:before {
    display: none;
  }
}

/*****************************　　　
  こんな方をお待ちしています！
******************************/
.comment-list {
  margin: 2rem 0 1rem;
  padding: 0;
  left: 0;
  list-style: none;
  text-align: center;
}
.comment-list li {
  margin: 0 0.5rem 0.5rem;
  padding: 0 0.2rem;
  font-size: 16px;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 0.6rem;
  text-decoration-color: #efff67;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.comment-list li span {
  padding: none;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-thickness: 0.6rem;
  text-decoration-color: #efff67;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.gglmap {
  width: 100%;
  height: 320px;
}

/*****************************　　　
  問い合わせ画面用
******************************/
.ttl-area {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content-area {
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 730px;
  margin: auto;
}

.p-area {
  padding: 1.5rem;
}
.p-area a {
  font-size: 1em;
  font-weight: normal;
}

.tfs-psm {
  font-size: 14px;
}

.form-area {
  margin-bottom: 1rem;
}
.form-area label {
  font-size: 16px;
  font-weight: bold;
}
.form-area a {
  font-size: 16px;
}
.form-area p {
  font-size: 16px;
}
.form-area input {
  margin-bottom: 0.5rem;
}
.form-area input:focus {
  border-color: rgba(154, 210, 0, 0.3333333333);
  box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.3333333333);
  color: #404040;
}
.form-area input::-moz-placeholder {
  color: #dad9d9;
}
.form-area input::placeholder {
  color: #dad9d9;
}
.form-area select {
  margin-bottom: 0.5rem;
}
.form-area select:focus {
  border-color: rgba(154, 210, 0, 0.3333333333);
  box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.3333333333);
  color: #404040;
}
.form-area textarea {
  margin-bottom: 0.5rem;
}
.form-area textarea:focus {
  border-color: rgba(154, 210, 0, 0.3333333333);
  box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.3333333333);
  color: #404040;
}

.form-area-readonly label {
  font-weight: bold;
}
.form-area-readonly a {
  font-size: 16px;
}
.form-area-readonly p {
  font-size: 16px;
}
.form-area-readonly input {
  margin-bottom: 0.5rem;
}
.form-area-readonly input:focus {
  border-color: transparent !important;
  box-shadow: 0 0 0 0 transparent;
}
.form-area-readonly select {
  margin-bottom: 0.5rem;
}
.form-area-readonly select:focus {
  border-color: transparent !important;
  box-shadow: 0 0 0 0 transparent;
}
.form-area-readonly textarea {
  margin-bottom: 0.5rem;
}
.form-area-readonly textarea:focus {
  border-color: transparent !important;
  box-shadow: 0 0 0 0 transparent;
}

.formw {
  background-color: #ffffff !important;
}

.fbrdrw {
  border: 1px solid #ffffff;
}

.btn02 {
  background: #9ad200;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  color: #fafafa;
  padding: 20px;
  width: 400px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.btn02:hover {
  background: #9ad200;
  color: #fafafa;
  box-shadow: 0 0 10px #fafafa;
}
.btn02:focus {
  box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.3333333333);
}

.noshadow {
  box-shadow: none;
}
.noshadow:hover {
  border-color: #9ad200;
  background: #fafafa;
  color: #9ad200;
}

/* 土日祝の色(日曜はじまり) */
.flatpickr-weekday:nth-child(1) {
  color: rgba(255, 0, 0, 0.6);
}

.flatpickr-weekday:nth-child(7) {
  color: rgba(0, 0, 255, 0.6);
}

.btn04 {
  background: #fff;
  color: #9ad200;
  padding: 20px;
  width: 400px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  border-color: #9ad200;
}
.btn04:hover {
  background: #9ad200;
  color: #fafafa;
  box-shadow: 0 0 10px #fafafa;
}
.btn04:focus {
  box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.3333333333);
}

.bg-red {
  border-radius: initial;
  background-color: rgba(255, 0, 0, 0.6901960784);
  margin-left: 1em;
  vertical-align: middle;
}

@media only screen and (min-width: 576px) {
  .pe-md {
    padding-right: 0.25rem !important;
  }
}

.message {
  color: rgb(255, 0, 0);
}

select.form-select.disp-time {
  display: none;
}

input.form-control.sep-date {
  background-color: #fff;
}

/*****************************　　　
  card共通スタイル
******************************/
.card {
  border-color: transparent;
}
.card.box-shodow {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}

/*****************************　　　
  title用スタイル
******************************/
.title-space {
  margin-bottom: 2rem;
}

/*****************************　　　
  section用スタイル
******************************/
.sub-header-top {
  padding-top: 78px;
}

.sub-header {
  padding-top: 7rem;
}

.colored {
  background-color: rgba(154, 210, 0, 0.2);
}

.sec-gradient {
  background-image: url(../img/mesh-gradient.png);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.space-bottom {
  padding-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .space-bottom {
    padding-bottom: 3rem;
  }
}

/*****************************　　　
  main view
******************************/
/*申込ボタン*/
.btn-inquire {
  color: #fafafa;
  border-color: #9ad200;
  background-color: #9ad200;
}
.btn-inquire:hover {
  color: #fafafa;
}
@media only screen and (min-width: 1200px) {
  .btn-inquire {
    position: absolute;
    top: -30%;
    padding: 40px 14px 20px 14px;
    border-radius: 16px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
  }
}
@media only screen and (max-width: 1199px) {
  .btn-inquire {
    position: relative;
  }
  .btn-inquire:hover {
    border-color: #9ad200;
    background: #fff;
    color: #9ad200;
  }
  .btn-inquire:focus {
    box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.3333333333);
  }
}

.brank-inq {
  width: 174px;
  height: 62px;
}
@media only screen and (max-width: 1199px) {
  .brank-inq {
    display: none;
  }
}

/*****************************　　　
  table用スタイル
******************************/
.table.tbl-cel-style {
  margin-bottom: 0;
}

/*****************************　　　
  banner
******************************/
/*--水平方向 垂直方向 影のぼかし 色--*/
.btn01 {
  background: #9ad200;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  color: #fafafa;
  padding: 20px;
  width: 300px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .btn01 {
    width: 250px;
  }
}
.btn01:hover {
  background: #9ad200;
  color: #fafafa;
  box-shadow: 0 0 10px #fafafa;
}
.btn01:focus {
  box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.3333333333);
}

.h5bnrfont {
  font-weight: bold;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .h5bnrfont {
    font-size: 2.5rem;
  }
}

.banner-layout {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  max-width: 800px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .banner-layout {
    padding: 1rem;
    max-width: 400px;
  }
}
@media screen and (max-width: 576px) {
  .banner-layout {
    padding: 2rem;
  }
}

/*表示画像の切り替え*/
.img-sp {
  display: none;
}

@media screen and (max-width: 576px) {
  .img-pc {
    display: none;
  }
  .img-sp {
    display: block;
  }
}
/*****************************　　　
  Table
******************************/
/*比較表のスタイル*/
.comp-tbl-style table thead tr:first-child th {
  color: #fafafa;
  background: #9ad200;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

/*セル毎の余白 フォントサイズ*/
.tbl-cel-style > :not(caption) > * * {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  .tbl-cel-style > :not(caption) > * * {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.tbl-cel-style > :not(caption) > * th {
  font-weight: 100;
  background-color: #f7f7f7;
}

/*テーブル外のコンテンツ*/
.course-cond-li-styl li {
  font-size: 0.9rem !important;
}

.course-cond-styl {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 2.5rem 1rem 1rem;
}
@media screen and (max-width: 768px) {
  .course-cond-styl {
    border: none;
    padding: 0;
  }
}
.course-cond-styl h5 {
  position: absolute;
  top: -0.5em;
  left: 1rem;
  line-height: 1;
  display: inline-block;
  background: #fafafa;
  padding: 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .course-cond-styl h5 {
    position: relative;
    top: auto;
    left: auto;
  }
}
.course-cond-styl ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: disc;
}
.course-cond-styl ul li {
  font-size: 16px;
}

/*****************************　　　
  Accordion
******************************/
.accrdn-style:not(.collapsed) {
  background-color: rgba(154, 210, 0, 0.2);
  color: #404040;
}
.accrdn-style:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accrdn-style:focus {
  box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.2);
}

/*****************************　　　
  Footer
******************************/
.flt-bg {
  background-color: rgba(31, 31, 31, 0.3333333333);
}

.btn03 {
  background: #9ad200;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  color: #fafafa;
  padding: 20px;
  border-radius: 6px;
  font-weight: 600;
}

.footer-style {
  background-color: #1f1f1f;
  text-align: center;
  padding-top: 16px;
}
.footer-style p {
  color: #fafafa;
  font-size: 14px;
}

.logo-knowledgebeans {
  position: relative;
  display: block;
  background: #fafafa;
  padding: 5px 0;
}

.fadeout {
  transition: opacity 0.5s;
}

.sfarea {
  padding-bottom: calc(15px + env(safe-area-inset-bottom));
}

.fb-z {
  Z-index: 1029;
}

/*****************************　　　
  その他
******************************/
/*横2つ並んだgridのスタイル*/
@media only screen and (min-width: 992px) {
  .row-reverse {
    flex-direction: row-reverse;
  }
}

.two-col-style h3 {
  font-size: 1.8rem;
}
.two-col-style p {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .two-col-style h3 {
    font-size: 1.6rem;
  }
}

.col-contents {
  padding-left: 55px;
  padding-right: 55px;
  padding-top: 50px;
}
@media only screen and (max-width: 992px) {
  .col-contents {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .col-contents {
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
  }
}

/*横3つ並んだカードのスタイル*/
.card-style {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .card-style {
    margin-bottom: 3rem;
  }
}

/*googleMap用スペース*/
.gglmap {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 992px) {
  .gglmap {
    margin-top: 1rem;
  }
}

/*こんな方…のリスト用*/
@media only screen and (max-width: 992px) {
  .list-ce-sp {
    text-align: center;
  }
}
.list-ce-sp ul {
  padding-right: 2rem;
}
.list-ce-sp ul li {
  font-size: 16px;
}

@media only screen and (max-width: 992px) {
  .address-style {
    margin-top: 1rem;
  }
  .address-style p {
    margin-bottom: 0;
  }
}

/*3つの応用コース用 文字色*/
.cwh {
  color: #fafafa;
}

.msgconts {
  background-color: #fafafa !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .msgconts {
    padding: 10px;
  }
}

/*****************************　　　
  header
******************************/
.nvbr-style {
  right: auto;
  width: 100vw;
}

.nvbr-toggler-style {
  border-color: #cccccc;
  box-shadow: 0 0 0 0 transparent !important;
}
.nvbr-toggler-style[aria-expanded=true] {
  border-color: transparent;
}

.nav-nowrap {
  white-space: nowrap;
}

.logoimg {
  max-height: 30px;
  width: auto;
}

.nvbr-pd {
  color: #404040 !important;
}
@media only screen and (max-width: 1199px) {
  .nvbr-pd {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem !important;
    display: flex;
    justify-content: space-between;
    padding-right: 1rem !important;
  }
}

@media only screen and (max-width: 1199px) {
  .pb-sm {
    padding-bottom: 1rem;
  }
}

@media only screen and (max-width: 1199px) {
  .nvbr-clps-pd {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-bottom: 1rem !important;
    margin-top: 0.5rem;
    /*メニューの全画面表示*/
    height: 100vh;
  }
}
.nvbr-clps-pd:show {
  transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
  .nvbr-fix {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

.ftszero {
  font-size: 0rem;
}

@media only screen and (min-width: 1200px) {
  .rogo-py {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.menu-border {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  height: 100%;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (min-width: 1200px) {
  .menu-border {
    border-bottom: none;
  }
}

/*トグルメニューの矢印*/
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}
@media only screen and (min-width: 1200px) {
  .arrow {
    border: none;
  }
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  .arrow::before,
  .arrow::after {
    border: none;
  }
}

.leftarrow::after {
  left: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  .leftarrow::after {
    border: none;
  }
}

/*ハンバーガーメニューの再描画*/
.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.navbar-toggler-icon,
.navbar-toggler-icon .hmbg-border {
  display: inline-block;
  box-sizing: border-box;
}
.navbar-toggler-icon .hmbg-border {
  position: absolute;
  width: 100%;
  left: 0px;
  height: 2px;
  background-color: rgb(165, 165, 165);
  border-radius: 1px;
  transition: 200ms all ease;
}
.navbar-toggler-icon .hmbg-border:nth-of-type(1) {
  top: 6px;
}
.navbar-toggler-icon .hmbg-border:nth-of-type(2) {
  top: 14px;
}
.navbar-toggler-icon .hmbg-border:nth-of-type(3) {
  top: 22px;
}

.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon .hmbg-border:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon .hmbg-border:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon .hmbg-border:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

/*****************************　　　
  Log
******************************/
.log-bar > div {
  padding-bottom: 24px;
}
.log-bar > div:first-child {
  position: relative;
  width: 24px;
}
.log-bar > div:first-child:before {
  position: absolute;
  top: 0;
  left: 5px;
  width: 0;
  height: 100%;
  display: inline-block;
  content: "";
  border-left: 2px dotted #ccc;
}
.log-bar > div:first-child .check-bullet {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgb(221, 218, 217);
}
.log-bar > div:first-child .check-bullet.checked {
  background: #2eba33;
  box-shadow: none;
}
.log-bar:last-child > div:first-child:before {
  border-left: none;
}
.log-bar .date {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: -2px;
}
.log-bar .time {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #999999;
}

/*****************************　　　
  List
******************************/
ul {
  list-style: none;
}
ul > li {
  margin: 0 0 4px 0;
  position: relative;
}

ol > li {
  margin: 0 0 4px 2rem;
  position: relative;
}

.disc-list {
  padding-left: 0;
}
.disc-list > li {
  list-style: none;
  font-size: 1rem;
  padding-left: 1.5em;
}
.disc-list > li:before {
  content: "・";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  width: 1.2em;
}
.disc-list > li.list-cont-alert:before {
  content: "※";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  width: 1.2em;
}

.asterisk-list {
  padding-left: 0;
  font-size: 1rem;
}
.asterisk-list > li {
  list-style: none;
  padding-left: 1.5em;
}
.asterisk-list > li:before {
  content: "※";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  width: 1.2em;
}

.numbering-list {
  margin: 0;
  padding-left: 0;
  counter-reset: number;
}
.numbering-list > li {
  list-style: none;
  font-size: 1rem;
  padding-left: 2em;
  position: relative;
}
.numbering-list > li:before {
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  width: 1.5em;
}

.free-list {
  padding-left: 0;
}
.free-list > li {
  list-style: none;
  font-size: 1rem;
  padding-left: 1.5em;
}
.free-list > li > span {
  left: 0;
  position: absolute;
  top: 0;
  display: inline-block;
  font-size: 1rem;
  width: 1em;
}
.free-list.txt15 > li {
  padding-left: 1.8em;
}
.free-list.txt15 > li > span {
  width: 1.5em;
}
.free-list.txt2 > li {
  padding-left: 2.3em;
}
.free-list.txt2 > li > span {
  width: 2em;
}

.arrow-list {
  padding-left: 0;
}
.arrow-list > li {
  list-style: none;
  font-size: 1rem;
  padding-left: 1.5em;
}
.arrow-list > li:before {
  color: #2eba33;
  content: "▶︎";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  font-size: 0.9rem;
  width: 1em;
}

.block-list {
  margin: 0;
  padding: 0;
}
.block-list > li {
  margin: 0;
  padding: 16px 16px 16px 16px;
  list-style: none;
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
}
.block-list > li:first-child {
  border-top: 1px solid #cccccc;
}
.block-list > li span.fig {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.block-list > li span.fig:before {
  content: "";
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  background: #999;
}
.block-list > li.btn-disabled {
  background: rgb(150, 150, 150);
}
.block-list > li.btn-disabled .alert-txt {
  top: calc(50% - 7px);
  left: 16px;
  width: calc(100% - 32px);
  position: absolute;
  display: block;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}
.block-list .list-inner-head {
  margin-top: 16px;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: bold;
}
.block-list.no-link li {
  padding: 16px;
}
.block-list.no-link li:after {
  display: none;
}
.block-list > div.column {
  margin: 0;
  padding: 16px;
  list-style: none;
  display: block;
  font-size: 1.1rem;
  border-bottom: 1px solid #cccccc;
}
.block-list > div.column:first-child {
  border-top: 1px solid #cccccc;
}

.icon-list {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.icon-list li {
  margin: 0;
  width: 49.9%;
  padding: 16px 24px 16px 16px;
  list-style: none;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
}
.icon-list li span.fig {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.icon-list li span.fig:before {
  content: "";
  width: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  background: #999;
}
.icon-list.icon-list-full li {
  width: 100%;
  display: block;
}
.icon-list.icon-bgimg li {
  width: 100%;
  display: block;
  padding-left: 66px;
  line-height: 36px;
}
.icon-list.icon-bgimg li span.bgimg {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  margin-right: 8px;
  background: #fff;
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.icon-list-horizon {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.icon-list-horizon li {
  margin: 0;
  padding: 8px 16px 8px 8px;
  list-style: none;
  display: inline-block;
}

.item-list {
  display: block;
}
.item-list > dt {
  display: block;
  font-size: 1.1rem;
  margin: 16px 16px 4px 16px;
}
.item-list > dd {
  display: block;
  font-size: 1rem;
  padding: 16px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.dubug-list {
  padding: 0 6px;
  font-size: 0;
  line-height: 0;
  margin-bottom: 0;
}
.dubug-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-all;
  margin-bottom: 1rem;
}
.dubug-list li:last-child {
  padding-bottom: 75px;
}

/*****************************　　　
  Utilities
******************************/
/* link-arrow */
.link-arrow {
  display: inline-block;
  position: relative;
  border-bottom: 2px solid #2eba33;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 16px 4px 0;
}
.link-arrow:after {
  position: absolute;
  top: calc(50% - 0.25em + 1px);
  right: 0;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #9ad200;
  border-right: 2px solid #9ad200;
  transform: rotate(45deg);
}

/* display-table */
.disptable {
  display: table;
  width: 100%;
}
.disptable > div {
  display: table-cell;
  vertical-align: top;
}
.disptable.vam > div {
  vertical-align: middle;
}
.disptable.vam.disptable-row > div > div {
  vertical-align: middle;
}
.disptable.cell-c > div {
  text-align: center;
}
.disptable.disptable-row > div {
  display: table-row;
}
.disptable.disptable-row > div > div {
  position: relative;
  vertical-align: top;
  display: table-cell;
}
.disptable.disptable-row > div > div.cell-link-arrow {
  padding-right: 24px;
}
.disptable.disptable-row > div > div.cell-link-arrow:after {
  position: absolute;
  top: 23px;
  right: 10px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #2eba33;
  border-right: 2px solid #2eba33;
  transform: rotate(45deg);
}
.disptable.disptable-row.cell-c > div > div {
  text-align: center;
}
.disptable img {
  width: 100%;
  height: auto;
}
.disptable.disptable-border {
  border-top: 1px solid #cccccc;
}
.disptable.disptable-border > div {
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.disptable.disptable-border > div:last-child {
  border-right: none;
}
.disptable.disptable-border.disptable-row > div > div {
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.disptable.disptable-border.disptable-row > div > div:last-child {
  border-right: none;
}
.disptable.disptable-border-bottom {
  border-top: 1px solid #cccccc;
}
.disptable.disptable-border-bottom > div {
  border-bottom: 1px solid #cccccc;
}
.disptable.disptable-border-bottom.disptable-row > div > div {
  border-bottom: 1px solid #cccccc;
}
.disptable.cell-pss > div {
  padding: 8px;
}
.disptable.cell-pss.disptable-row > div {
  padding: 0;
}
.disptable.cell-pss.disptable-row > div > div {
  padding: 8px;
}
.disptable.cell-psh > div {
  padding: 10.6666666667px;
}
.disptable.cell-psh.disptable-row > div {
  padding: 0;
}
.disptable.cell-psh.disptable-row > div > div {
  padding: 10.6666666667px;
}
.disptable.cell-ps > div {
  padding: 16px;
}
.disptable.cell-ps.disptable-row > div {
  padding: 0;
}
.disptable.cell-ps.disptable-row > div > div {
  padding: 16px;
}

.pcbr {
  display: inline-block;
}

.spbr {
  display: none;
}

.pcem {
  display: block;
}

.spem {
  display: none;
}

@media only screen and (max-width: 768px) {
  .pcbr {
    display: none !important;
  }
  .spbr {
    display: inline-block;
  }
  .pcem {
    display: none;
  }
  .spem {
    display: block;
  }
}
.dsib {
  display: inline-block;
}

/* border */
.bdt1 {
  border-top: 1px solid #cccccc;
}

.bdb1 {
  border-bottom: 1px solid #cccccc;
}

.bd-no {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.bdtn {
  border-top: none;
}

.bdbn {
  border-bottom: none;
}

/* border-radius */
.bdr0 {
  border-radius: 0 !important;
}

/* width */
.w32px {
  width: 32px !important;
}

.w50px {
  width: 50px !important;
}

.w140px {
  width: 140px !important;
}

.w160px {
  width: 160px !important;
}

.w240px {
  width: 240px !important;
}

.w25per {
  width: 25% !important;
}

.w33per {
  width: 33% !important;
}

.w40per {
  width: 40% !important;
}

.w50per {
  width: 50% !important;
}

.w60per {
  width: 60% !important;
}

.w67per {
  width: 67% !important;
}

.w75per {
  width: 75% !important;
}

.w80per {
  width: 80% !important;
}

.w100per {
  width: 100% !important;
}

.wat {
  width: auto !important;
}

.w1em {
  width: 1em !important;
}

.w2em {
  width: 2em !important;
}

.w3em {
  width: 3em !important;
}

.w4em {
  width: 4em !important;
}

.w5em {
  width: 5em !important;
}

.w6em {
  width: 6em !important;
}

.w7em {
  width: 7em !important;
}

.w8em {
  width: 8em !important;
}

/* height */
.h5em {
  height: 5em !important;
}

.h8em {
  height: 8em !important;
}

.h100per {
  height: 100%;
}

/* color */
.txt-white {
  color: #fff !important;
}

.txt-normal {
  color: #404040 !important;
}

/* bgcolor */
.bg-white {
  background-color: #fff !important;
}

/* white-space */
.nowrap {
  white-space: nowrap;
}

/* min-width */
.minw180 {
  min-width: 180px !important;
}

/* text-align */
.tal {
  text-align: left !important;
}

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

.tac {
  text-align: center !important;
}

/* vertical-align */
.vat {
  vertical-align: top !important;
}

.vam {
  vertical-align: middle !important;
}

.vab {
  vertical-align: bottom !important;
}

/* text-decoration */
.tdn {
  text-decoration: none !important;
}

.tdu {
  text-decoration: underline !important;
}

/* font-weight */
.fwn {
  font-weight: normal !important;
}

.fwb {
  font-weight: bold !important;
}

/* line-height */
.lhss {
  line-height: 0.9rem !important;
}

.lhs {
  line-height: 1rem !important;
}

.lhm {
  line-height: 1.1rem !important;
}

.lhl {
  line-height: 1.4rem !important;
}

.lhx {
  line-height: 1.6rem !important;
}

/* font-size */
.fsss {
  font-size: 0.9rem !important;
}

.fss {
  font-size: 1rem !important;
}

.fsm {
  font-size: 1.1rem !important;
}

.fsl {
  font-size: 1.4rem !important;
}

.fsx {
  font-size: 1.6rem !important;
}

.fsr8 {
  font-size: 0.8rem !important;
}

.fsr9 {
  font-size: 0.9rem !important;
}

.fsr10 {
  font-size: 1rem !important;
}

.fsr11 {
  font-size: 1.1rem !important;
}

.fsr12 {
  font-size: 1.2rem !important;
}

.fsr13 {
  font-size: 1.3rem !important;
}

.fsr14 {
  font-size: 1.4rem !important;
}

.fsr15 {
  font-size: 1.5rem !important;
}

.fsr16 {
  font-size: 1.6rem !important;
}

.fsr17 {
  font-size: 1.7rem !important;
}

.fsr18 {
  font-size: 1.8rem !important;
}

.fsr19 {
  font-size: 1.9rem !important;
}

.fsr20 {
  font-size: 2rem !important;
}

.fsr21 {
  font-size: 2.1rem !important;
}

.fsr22 {
  font-size: 2.2rem !important;
}

.fsr23 {
  font-size: 2.3rem !important;
}

.fsr24 {
  font-size: 2.4rem !important;
}

.fsr25 {
  font-size: 2.5rem !important;
}

.fsr26 {
  font-size: 2.6rem !important;
}

.fsr27 {
  font-size: 2.7rem !important;
}

.fsr28 {
  font-size: 2.8rem !important;
}

.fsr29 {
  font-size: 2.9rem !important;
}

.fsr30 {
  font-size: 3rem !important;
}

@media only screen and (max-width: 768px) {
  .sp_fsr14 {
    font-size: 1.4rem !important;
  }
  .sp_fsr15 {
    font-size: 1.5rem !important;
  }
  .sp_fsr16 {
    font-size: 1.6rem !important;
  }
  .sp_fsr17 {
    font-size: 1.7rem !important;
  }
  .sp_fsr18 {
    font-size: 1.8rem !important;
  }
}
/* space class
------------------------------------------------------------ */
.mtss {
  margin-top: 8px !important;
}

.mrss {
  margin-right: 8px !important;
}

.mbss {
  margin-bottom: 8px !important;
}

.mlss {
  margin-left: 8px !important;
}

.mts {
  margin-top: 16px !important;
}

.mrs {
  margin-right: 16px !important;
}

.mbs {
  margin-bottom: 16px !important;
}

.mls {
  margin-left: 16px !important;
}

.mtm {
  margin-top: 24px !important;
}

.mrm {
  margin-right: 24px !important;
}

.mbm {
  margin-bottom: 24px !important;
}

.mlm {
  margin-left: 24px !important;
}

.mtl {
  margin-top: 32px !important;
}

.mrl {
  margin-right: 32px !important;
}

.mbl {
  margin-bottom: 32px !important;
}

.mll {
  margin-left: 32px !important;
}

.mtl15 {
  margin-top: 48px !important;
}

.mrl15 {
  margin-right: 48px !important;
}

.mbl15 {
  margin-bottom: 48px !important;
}

.mll15 {
  margin-left: 48px !important;
}

.pass {
  padding: 8px !important;
}

.prsss {
  padding-right: 4px !important;
}

.plsss {
  padding-left: 4px !important;
}

.ptss {
  padding-top: 8px !important;
}

.prss {
  padding-right: 8px !important;
}

.pbss {
  padding-bottom: 8px !important;
}

.plss {
  padding-left: 8px !important;
}

.pts {
  padding-top: 16px !important;
}

.prs {
  padding-right: 16px !important;
}

.pbs {
  padding-bottom: 16px !important;
}

.pls {
  padding-left: 16px !important;
}

.pas {
  padding: 16px !important;
}

.pxs {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.ptm {
  padding-top: 24px !important;
}

.prm {
  padding-right: 24px !important;
}

.pbm {
  padding-bottom: 24px !important;
}

.plm {
  padding-left: 24px !important;
}

.ptl {
  padding-top: 32px !important;
}

.prl {
  padding-right: 32px !important;
}

.pbl {
  padding-bottom: 32px !important;
}

.pll {
  padding-left: 32px !important;
}

.ptl15 {
  padding-top: 48px !important;
}

.prl15 {
  padding-right: 48px !important;
}

.pbl15 {
  padding-bottom: 48px !important;
}

.pll15 {
  padding-left: 48px !important;
}

.pbl2 {
  padding-bottom: 64px !important;
}

.pbl3 {
  padding-bottom: 96px !important;
}

.pbl4 {
  padding-bottom: 128px !important;
}

.mtss-m {
  margin-top: -8px !important;
}

.mts-m {
  margin-top: -16px !important;
}

.mg0 {
  margin: 0 !important;
}

.mga {
  margin: auto !important;
}

.mra {
  margin-right: auto !important;
}

.mla {
  margin-left: auto !important;
}

.pd0 {
  padding: 0 !important;
}

.pd2 {
  padding: 2px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt2 {
  padding-top: 2px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb2 {
  padding-bottom: 1px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

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

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

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

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pt12 {
  padding-top: 12px !important;
}

.pb12 {
  padding-bottom: 12px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

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

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

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

.pr20 {
  padding-right: 20px !important;
}

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

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

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

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

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

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

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

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

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

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

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

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

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

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

.pr50 {
  padding-right: 50px !important;
}

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

.pl50 {
  padding-left: 50px !important;
}

.pa0 {
  padding: 0 !important;
}

.pas {
  padding: 16px !important;
}

.pass {
  padding: 8px !important;
}

/* min-wigth */
.miw-e2 {
  min-width: 2em !important;
}

/* max-height */
.mxh-240p {
  max-height: 240px !important;
}

.mxh-320p {
  max-height: 320px !important;
}

.unit-txt {
  font-size: 1rem;
  font-weight: normal;
  white-space: nowrap;
}
.unit-txt em {
  font-size: 1.4rem;
  font-weight: bold;
  font-style: normal;
  display: inline-block;
  padding-right: 2px;
}/*# sourceMappingURL=style.css.map */