:root {
  --transition-duration: 300ms;
  --global--spacing-horizontal: 25px;
  --global--spacing-vertical: 30px;

  --global--spacing-unit: 20px;

  --global--font-size-xs: 1rem;
  --responsive--spacing-horizontal: calc(2 * var(--global--spacing-horizontal) * 0.6);
  --responsive--aligndefault-width: calc(100vw - var(--responsive--spacing-horizontal));
  --responsive--alignright-margin: var(--global--spacing-horizontal);
  --responsive--alignleft-margin: var(--global--spacing-horizontal);

  --header-height: 73px;
}

html {
  font-family: kozuka-gothic-pr6n, sans-serif;
}

body {
  word-break: break-word;
  overflow-wrap: break-word;

  color: #314348;
}

@media (min-width: 1024px) {

.container {
    padding-right: 0;
    padding-left: 0
}
  }

@media (min-width: 1536px) {

.container {
    max-width: 1280px
}
  }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

.fadeInDown {
  animation: fadeInDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.fadeOutDown {
  animation: fadeOutDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.l-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 475px) {

  .l-container {
    max-width: 475px;
  }
}

@media (min-width: 640px) {

  .l-container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {

  .l-container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {

  .l-container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {

  .l-container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {

  .l-container {
    max-width: 1536px;
  }
}

@media (min-width: 1024px) {

.l-container {
    padding-right: 0;
    padding-left: 0
}
  }

@media (min-width: 1536px) {

.l-container {
    max-width: 1280px
}
  }

.withsidebar .l-container {
    display: flex;
    gap: 2rem;
    flex-direction: column;
  }

@media (min-width: 1024px) {

.withsidebar .l-container {
      flex-direction: row
      /* align-items: flex-end; */
  }

      .withsidebar .l-container .site-main {
        width: calc(100% - 1rem - 280px);
      }

      .withsidebar .l-container .widget-area {
        width: 280px;
        margin-top: 3rem;
      }
    }

.l-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {

  .l-grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {

  .l-grid:not(.l-grid--cols-3):not(.l-grid--cols-2) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .l-grid.l-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.l-stick-image-container {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 475px) {

  .l-stick-image-container {
    max-width: 475px;
  }
}

@media (min-width: 640px) {

  .l-stick-image-container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {

  .l-stick-image-container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {

  .l-stick-image-container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {

  .l-stick-image-container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {

  .l-stick-image-container {
    max-width: 1536px;
  }
}

.l-stick-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {

.l-stick-image-container {
    padding-right: 0;
    padding-left: 0
}
  }

@media (min-width: 1536px) {

.l-stick-image-container {
    max-width: 1280px
}
  }

@media (min-width: 1024px) {

  .l-stick-image-container {
    max-width: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

@media (min-width: 640px) {

.l-stick-image-container {
    max-width: 95vw
}
  }

@media (min-width: 1024px) {

  .l-stick-image-container:not(.is-invert) {
    padding-right: 0px;
    padding-left: 10.7%;
  }

  .l-stick-image-container.is-invert {
    padding-left: 0px;
    padding-right: 10.7%;
  }
}

.l-stick-image-container header {
  gap: 1rem;
}

@media (min-width: 768px) {

  .l-stick-image-container header {
    gap: 2rem;
  }
}

.l-stick-image-container header .l-stick-image-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

@media (min-width: 640px) {

.l-stick-image-container header .l-stick-image-icon {
    padding: 1.875rem;
  }
      }

@media (min-width: 1024px) {

  .l-stick-image-container header .l-stick-image-icon svg {
    height: 3.75rem;
    width: 3.75rem;
  }
}

@media (min-width: 640px) {

.l-stick-image-container header .l-stick-image-icon svg {
          width: 3.75rem;
          height: 3.75rem
      }
        }

@media (min-width: 475px) {

  .l-stick-image-container header h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {

  .l-stick-image-container header h2 {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {

  .l-stick-image-container header h2 {
    font-size: 3rem;
    line-height: 1;
    line-height: 4.375rem;
  }
}

.l-stick-image-container header h2{
      font-size: 22px;
    }

@media (min-width: 640px) {

.l-stick-image-container header h2{
        font-size: calc(100 / 375 * 23 * 1vw);
        line-height: 70px
    }
      }

@media (min-width: 768px) {

.l-stick-image-container header h2{
        font-size: 3rem
    }
      }

.l-stick-image-container .l-stick-image-text {
  margin-top: 2rem;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 2 !important;
}

@media (min-width: 640px) {

  .l-stick-image-container .l-stick-image-text {
    padding-bottom: 4rem;
  }
}

@media (min-width: 1280px) {

  .l-stick-image-container .l-stick-image-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 640px) {

.l-stick-image-container .l-stick-image-text {
      font-size: calc(100 / 375 * 12.5 * 1vw)
  }
    }

@media (min-width: 768px) {

.l-stick-image-container .l-stick-image-text {
      font-size: 1rem
  }
    }

.l-stick-image-col-content {
  position: relative;
}

.l-stick-image-col-image {
  position: relative;
  width: 95%;
  --tw-translate-x: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 768px) {

.l-stick-image-col-image {
    width: 80%;
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  }

@media (min-width: 1024px) {

  .is-invert .l-stick-image-col-image {
    order: -9999;
  }
}

.l-band-image {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {

  .l-band-image {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

.l-band-image-img {
      position: absolute;
      width: calc(50% - 48px);
      max-width: 912px
  }

.l-band-image-img-right {
        left: calc(50% - -48px)
    }
}

.l-band-image-text {

}

.l-band-image-col-content {

}

.l-band-image-col-image {

}

.breadcrumbs {
  list-style: none;
  display: flex;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
}

@media (min-width: 1024px) {

.breadcrumbs {
    font-size: 14px
}
  }

.breadcrumbs > span a,
    .breadcrumbs > span .current-item {
      color: #000;
      display: block;
      background: #e5e7eb;
      text-decoration: none;
      position: relative;
      height: 30px;
      line-height: 30px;
      padding: 0 10px 0 5px;
      text-align: center;
      margin-right: 23px;
    }

.breadcrumbs > span:first-child a {
        padding-left: 15px;
        border-radius: 2px 0 0 2px;
      }

.breadcrumbs > span:first-child a:before {
          border: none;
        }

.breadcrumbs > span:last-child a,
      .breadcrumbs > span:last-child .current-item {
        padding-right: 15px;
        border-radius: 0 2px 2px 0;
        margin-right: 0;
      }

.breadcrumbs > span:last-child a:after, .breadcrumbs > span:last-child .current-item:after {
          border: none;
        }

.breadcrumbs > span a:hover {
        opacity: 0.8;
      }

.breadcrumbs > span a:before,
      .breadcrumbs > span a:after,
      .breadcrumbs > span .current-item:before,
      .breadcrumbs > span .current-item:after {
        content: '';
        position: absolute;
        top: 0;
        border: 0 solid #e5e7eb;
        border-width: 15px 10px;
        width: 0;
        height: 0;
      }

.breadcrumbs > span a:before, .breadcrumbs > span .current-item:before {
        left: -20px;
        border-left-color: transparent;
      }

.breadcrumbs > span a:after, .breadcrumbs > span .current-item:after {
        left: 100%;
        border-color: transparent;
        border-left-color: #e5e7eb;
      }

.page-link {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 0.75rem;
  color: #4d6369;
}

@media screen and (max-width: 767.5px){

.page-link {
    display: flex;
    flex-wrap: wrap
}
  }

.page-link a {
    text-decoration: underline;
    text-underline-offset: 0.5ex;
    margin: 0 1rem 5px 0;
  }

@media (min-width: 768px) {

.page-link a {
      margin-right: 0
  }

.page-link a:not(:first-of-type){
        border-left: solid 1px #4d6369;
        padding-left: 10px;
        margin-left: 10px
    }
    }

.main-navigation {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;

  font-size: 16px;
}

@media (min-width: 1024px) {

.main-navigation {
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-grow: 1;
    font-size: 13px
}
  }

@media (min-width: 1280px) {

.main-navigation {
    font-size: 14px
}
  }

.main-navigation .menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }

@media (min-width: 1024px) {

.main-navigation .menu {
      gap: 0.4rem 0.75rem
  }
    }

@media (min-width: 1280px) {

.main-navigation .menu {
      gap: 0.4rem 1.5rem
  }
    }

@media screen and (max-width: 1023.5px){

.main-navigation .menu {
      flex-direction: column;
      list-style-type: disc
  }
        .main-navigation .menu li::marker {
          color: #5fced8;
        }
  
      .main-navigation .menu .menu-item + .menu-item {
        margin-top: 0.5rem;
      }
    }

.main-navigation .menu > li {
      position: relative;
    }

/* text-align: center; */

@media (min-width: 1280px) {

.main-navigation .menu > li {
        font-size: calc(15px + 3 * (100vw - 1280px)/256)
    }
      }

@media (min-width: 1536px) {

.main-navigation .menu > li {
        font-size: 18px
    }
      }

.main-navigation .menu > li > a {
        font-weight: bold;
      }

@media (min-width: 1024px) {
          .main-navigation .menu > li:hover .gnav-sub-wrapper {
            visibility: visible;
            opacity: 1;
            background-color: rgba(78,98,105, 0.9);
            color: white;
            /* transition: 0.3s; */
            pointer-events: auto;
          }
      }

@media screen and (max-width: 1023.5px){

.main-navigation {
    position: fixed;
    z-index: 1000;
    right: 0;
    top: 0;
    height: 100%;
    background-color: rgba(78,98,105, 0.95);
    padding: 2rem;
    padding-top: 7rem;
    max-width: 100%;
    flex-direction: column;
    overflow: auto;

    transform: translateX(110%)
}

    .main-navigation .menu-item + .menu-item {
      margin-top: 0.5rem;
    }
  }

.main-navigation a:not(.inline-flex):not([href*='channel']) {
    display: block;
  }

@media (min-width: 1024px) {
      .main-navigation a:hover {
        text-decoration-line: underline;
      }

.main-navigation [href*='channel'],
  .main-navigation [href*='youtube'] {
      position: relative;
      height: 0;
      width: 2.5rem;
      padding-top: 1.5rem;
      overflow: hidden;
      font-size: 0;
      display: block !important
  }
      .main-navigation [href*='channel']::after, .main-navigation [href*='youtube']::after {
        content: '';
        position: absolute;
        left: 0;
        height: 1.5rem;
        width: 1.5rem;
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'><path d='M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.007 2.007 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.007 2.007 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31.4 31.4 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.007 2.007 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A99.788 99.788 0 0 1 7.858 2h.193zM6.4 5.209v4.818l4.157-2.408L6.4 5.209z'/></svg>");
        background-size: contain;
        background-repeat: no-repeat;

      }

        @media (min-width: 1024px) {
      .main-navigation [href*='channel']::after, .main-navigation [href*='youtube']::after {
          left: 0.5rem;
          top: -2px

      }
        }
        @media (min-width: 1280px) {
      .main-navigation [href*='channel']::after, .main-navigation [href*='youtube']::after {
          top: 2px

      }
        }
    }

.main-navigation .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0.75rem;
  }

.main-navigation .navbar-nav .text-primary-lighten.menu-item-has-children {
      margin: 2rem 0 0;
    }

.main-navigation .navbar-nav .menu-item-privacy-policy {
      margin: 2rem 0 0;
    }

.main-navigation .navbar-nav > li {
      position: relative;
    }

.main-navigation .navbar-nav > li > .header-nav-child {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/* display: none; */

@media screen and (max-width: 1023.5px){

.gnav-sub-wrapper {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    height: 0
}
  
    .is-active .gnav-sub-wrapper {
      /* display: block; */
      visibility: visible;
      overflow: visible;
      opacity: 1;
      height: auto;
      pointer-events: auto;
    }

  }

@media (min-width: 1024px) {

.gnav-sub-wrapper {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* display: block; */
    z-index: 1;
    text-align: left;
    /* padding-bottom: 0.5rem; */

    position: absolute;
    top: 100%;
    left: 0;
    /* width: 100%; */
    min-width: -moz-max-content;
    min-width: max-content;
    /* transition: 0.3s ease; */
    color: #314348;
    font-size: 16px
}

    .gnav-sub-wrapper a {
      padding: 1rem;
      /* padding-left: 1rem; */
    }
      .gnav-sub-wrapper .gnav-sub li:not(:first-of-type) {
        border-top: 1px solid #e5e7eb;
      }
        .gnav-sub-wrapper .gnav-sub .page_item_has_children li {
          border-top: 1px solid #e5e7eb;
        }
  }

.gnav-sub-wrapper .c-sub-nav-toggle {
    width: 0;
    height: 0;
  }

@media screen and (max-width: 1023.5px){

.gnav-sub {
    list-style-type: square;
    padding-left: 1em
    /* font-size: 0.9em; */
}
  
    .gnav-sub > li {
      margin-top: 0.5rem;
    }
  
    .gnav-sub .gnav-sub {
      list-style-type: circle;
    }
  }

.mainnav-close {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  /* background-color: red; */
  visibility: hidden;
  pointer-events: none;

  transform: translateX(110%);
}

.is-mainnav-open .mainnav-close {
    transform: none;
    /* cursor: pointer; */
    pointer-events: auto;
    visibility: visible;
  }

.class-test-01 {
  display: none;
}

@media (min-width: 1024px) {

.class-test-01 {
    display: block
}

.sp-navigation {
    display: none
}
  }

.sp-navigation .menu {
    align-items: flex-start;


  }

.sp-navigation .menu .menu-item .sub-menu .menu-item{
          margin: 0 0 0 1rem;
          color: white;
        }

.sp-navigation .menu .menu-item .sub-menu .menu-item .sub-menu .menu-item {
              color: white;
              margin: 0 0 0 1rem;
            }

.site-header {
  height: var(--header-height);
  background: linear-gradient(rgba(95,206,216,1) 60%,rgba(95,206,216,0));
  
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {

.site-header {
    height: 80px
}
  }

@media (min-width: 1536px) {

.site-header {
    height: 130px
}
  }

.site-footer {
  position: relative;
  background-color: #4e6269;
  margin-top: 3rem;
}

@media (min-width: 768px) {

.site-footer {
    background-image: url('../img/common/bg_footer.webp');
    background-size:  cover;
    margin-top: 8rem
}
  }

.cookies-not-set .site-footer {
    padding-bottom: 4rem;
  }

.footer-body {
  display: flex;
  justify-content: center;
  --tw-text-opacity: 1;
  color: rgb(49 67 72 / var(--tw-text-opacity));
}

@media (min-width: 768px) {

  .footer-body {
    justify-content: normal;
    gap: 2rem;
    padding-top: 1rem;
  }
}

@media (min-width: 1024px) {

  .footer-body {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 4rem;
  }
}

@media (min-width: 1280px) {

  .footer-body {
    gap: 4rem;
  }
}

.footer-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  --tw-text-opacity: 1;
  color: rgb(49 67 72 / var(--tw-text-opacity));
}

@media (min-width: 768px) {

  .footer-foot {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {

  .footer-foot {
    justify-content: normal;
    padding-left: 6.5625rem;
  }
}

@media (min-width: 1280px) {

  .footer-foot {
    gap: 2.5rem;
  }
}

.footer-list {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-list:not(:first-child){
    border-left: solid 1px #a6bdc2;
  }

#footer-menu-05 > li:not(:first-child){
      border-left: solid 1px #a6bdc2;
      padding-left: 1rem;
    }

.c-footer-menu .menu {
  }

.c-footer-menu .menu-item + .menu-item {
      margin-top: 1rem;
    }

.c-footer-menu .sub-menu {
    margin-top: 1rem;
  }

.c-footer-menu .sub-menu > li {
      display: list-item;
      list-style-type: '-';
      -webkit-padding-start: 1ch;
              padding-inline-start: 1ch;
      -webkit-margin-start: 1ch;
              margin-inline-start: 1ch;
    }

.c-footer-menu #footer-menu-03 .sub-menu .sub-menu >li {
          -webkit-padding-start: 0;
                  padding-inline-start: 0;
          list-style-type: disc;
        }

.c-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.c-btn:not([class*='bg-']) {
    background-color: #4e6269;
  }

.c-btn:disabled {
    opacity: 0.5;
    background-color: #6b7280;
  }

@media (min-width: 768px) {
      .c-btn:not([disabled]):hover {
        text-decoration: underline;
        /* &::after {
        opacity: 1;
        visibility: visible;
        transform: none;
      } */
      }
  }

.c-btn {

  font-size: 14px;
}

@media (min-width: 1024px) {

.c-btn {
    font-size: 1.25rem;
    line-height: 1.75rem;
    line-height: 27px;
  }
  }

.c-btn {

  padding: 1rem 3.5rem 1rem 2rem;
  border-radius: 9999px;
  min-width: 200px;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.c-btn::after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
    /* @media screen(md) {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-25%);
      transition: 0.5s;
    } */
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffff00' class='bi bi-arrow-right-circle-fill' viewBox='0 0 16 16'><path d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/></svg>");
  }

.c-btn[target='_blank']::after {
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffff00" class="bi bi-box-arrow-up-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z" /><path fill-rule="evenodd" d="M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z" /></svg>');
    }

/* padding-left: 1.5rem; */

.c-btn:not(.c-btn--invert)::after {
      right: 1.5rem;
    }

.c-btn.c-btn--invert {
    padding-left: 2rem;
    padding-right: 1.5rem;
  }

.c-btn.c-btn--invert::after {
      left: 0.5rem;

      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffff00" class="bi bi-arrow-left-circle-fill" viewBox="0 0 16 16" aria-label="arrow-left" role="img"><path d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z" /></svg>');
    }

.c-btn--load::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffff00" class="bi bi-arrow-repeat" viewBox="0 0 16 16"><path d="M11.534 7h3.932a.25.25 0 0 1 .192.41l-1.966 2.36a.25.25 0 0 1-.384 0l-1.966-2.36a.25.25 0 0 1 .192-.41zm-11 2h3.932a.25.25 0 0 0 .192-.41L2.692 6.23a.25.25 0 0 0-.384 0L.342 8.59A.25.25 0 0 0 .534 9z" /><path fill-rule="evenodd" d="M8 3c-1.552 0-2.94.707-3.857 1.818a.5.5 0 1 1-.771-.636A6.002 6.002 0 0 1 13.917 7H12.9A5.002 5.002 0 0 0 8 3zM3.1 9a5.002 5.002 0 0 0 8.757 2.182.5.5 0 1 1 .771.636A6.002 6.002 0 0 1 2.083 9H3.1z" /></svg>');
  }

.c-btn-submit {
  font-size: 20px;
  font-weight: bold;
}

.c-card {
  position: relative;
  background-color: #fff;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

  display: flex;
  flex-direction: column;
}

.c-card-media {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.is-youtube .c-card-media {
    aspect-ratio: 16/9;
  }

.c-card-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.8s;
    will-change: transform;
  }

@media (min-width: 768px) {
        .c-card-media a:hover img {
          transform: scale(1.2);
        }
    }

.c-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  position: relative;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {

.c-card-body {
    padding: 1.5rem
}
  }

.c-card--store .c-card-body {
    padding-bottom: 4rem;
  }

.c-card-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

@media (min-width: 1024px) {

  .c-card-title {
    font-size: 1.125rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 768px) {
      .c-card-title a:hover {
        color: #5fced8;
      }
    }

.c-card-links {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  --card-links-size: 2rem;
}

@media (min-width: 768px) {

.c-card-links {
    --card-links-size: 3rem
}
  }

.c-card-links a {
    background-color: #5fced8;
    width: var(--card-links-size);
    height: var(--card-links-size);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color var(--transition-duration);
  }

@media (min-width: 768px) {
      .c-card-links a:hover {
        background-color: #5fced8;
      }
    }

.c-card-links a svg {
      fill: white;
      width: calc(var(--card-links-size) / 2.4);
      height: calc(var(--card-links-size) / 2.4);
    }

.c-card-point {
  background-color: #fff;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

@media (min-width: 768px) {

.c-card-point {
    padding: 3rem 2rem
}
  }

.c-card-point .img-no_padding {
    margin: -2rem -2rem 0;
  }

@media (min-width: 768px) {

.c-card-point .img-no_padding {
      margin: -3rem -2rem 0
  }
    }

.c-card-point.border-box {
      border: 1px solid #dbdbdb;
    }

.c-heading {
  position: relative;
  font-weight: 900;
  padding-top: 1.5rem;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {

.c-heading {
    padding-top: 3rem;
    padding-left: 2.75rem;
    margin-bottom: 2rem
}
  }

.c-heading::before,
  .c-heading::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
  }

.c-heading::before {
    max-width: 20rem;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: translateX(-0.5rem);
  }

.c-heading::after {
    width: 1px;
    height: 6.5rem;
  }

@media (min-width: 1024px) {

.c-heading::after {
      height: 10rem;
  }
    }

.c-heading::after {
    background-color: currentColor;
    transform: translateY(-0.5rem);
}

.c-heading-primary {
  display: block;
  font-family: interstate, sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}

.c-heading-primary::first-letter {
  --tw-text-opacity: 1;
  color: rgb(95 206 216 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {

.c-heading-primary {
    font-size: 5rem;
    /* line-height: 8.125rem; */
    line-height: 1
}
  }

.c-heading-primary-02 {
  display: block;
  font-family: interstate, sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}

@media (min-width: 1024px) {

.c-heading-primary-02 {
    font-size: 5rem;
    /* line-height: 8.125rem; */
    line-height: 1
}
  }

.c-heading-secondary {
  display: block;
  margin-top: 0.5rem;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-size: 1rem;
  line-height: 2.25rem;
}

@media (min-width: 768px) {

.c-heading-secondary {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  }

@media (min-width: 1024px) {

.c-heading-secondary {
    margin-top: 2rem
}
  }

.c-heading-white {
  display: block;
  font-family: interstate, sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.c-heading-white::first-letter {
  --tw-text-opacity: 1;
  color: rgb(78 98 105 / var(--tw-text-opacity));
}

@media (min-width: 1024px) {

.c-heading-white {
    font-size: 5rem;
    /* line-height: 8.125rem; */
    line-height: 1
}
  }

.c-heading-primary-lighten {
  display: block;
  font-family: interstate, sans-serif;
  font-size: 32px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(95 206 216 / var(--tw-text-opacity));
}

.main-navigation .navbar-nav .c-heading-primary-lighten.menu-item-has-children {
      margin: 2rem 0 0;
    }

@media (min-width: 1024px) {

.c-heading-primary-lighten {
    font-size: 3.75rem;
    line-height: 1;
  }
  }

.c-heading-w-dots {
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {

.c-heading-w-dots {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}
  }

.c-heading-w-dots::before,
  .c-heading-w-dots::after {
    content: '';
    position: absolute;
    top: 0;

    /* width: 1px; */
    width: 1rem;
    height: 3rem;
    /* border-left: 0.5em dotted theme(colors.yellow-custom); */
    background-image: radial-gradient(circle at center, #ffff00 24%, transparent 28%);
    background-size: 1rem 1rem;

    transform-origin: bottom;
  }

@media (min-width: 768px) {

.c-heading-w-dots::before,
  .c-heading-w-dots::after {
      /* border-left-width: 0.25em; */
  }
    }

.c-heading-w-dots::before {
    left: 0.5rem;
    rotate: -30deg;
  }

.c-heading-w-dots::after {
    right: 0.5rem;
    rotate: 30deg;
  }

.c-heading-4dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-heading-4dots-sub {
  --tw-bg-opacity: 1;
  background-color: rgb(95 206 216 / var(--tw-bg-opacity));
  font-family: mitimasu, sans-serif;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
    padding: 0.75rem;
}

@media (min-width: 768px) {

.c-heading-4dots-sub {
      font-size: 1.5rem
  }
    }

.c-heading-w-4dots {
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 20px;
}

.c-heading-w-4dots.c-marker {
    background: linear-gradient(transparent 55%, #ffff00 60%);
  }

@media (min-width: 768px) {

.c-heading-w-4dots {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 3rem
}
  }

/* content: ''; */

/* position: absolute; */

/* top: 0; */

/* width: 1rem; */

/* height: 2rem; */

/* border-left: 0.5em dotted theme(colors.yellow-custom); */

/* background-image: radial-gradient(circle at center, #5fced8 20%, transparent 20%); */

/* background-size: 1rem 0.5rem; */

/* transform-origin: bottom; */

@media (min-width: 768px) {

.c-heading-w-4dots::before,
  .c-heading-w-4dots::after {
      content: '';
      position: absolute;
      top: 0;
      width: 1rem;
      height: 4rem;
      /* border-left-width: 0.25em; */
      background-image: radial-gradient(circle at center, #5fced8 24%, transparent 28%);
      background-size: 1rem 1rem
  }
    }

.c-heading-w-4dots::before {
    left: -2rem;
    rotate: -30deg;
  }

.c-heading-w-4dots::after {
    right: -2rem;
    rotate: 30deg;
  }

@media (min-width: 768px) {

.c-heading-w-4dots span {
      font-size: 2.5rem
  }
    }

.c-heading-w-dots--sm::before,
  .c-heading-w-dots--sm::after {
    /* border-left-width: 4px; */
    height: 1.125em;
    width: 0.5em;
    background-size: 0.5em 0.4em;
  }

.c-heading-w-line {
  position: relative;
  display: flex;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  gap: 0.5rem;
  align-items: center;
  padding: 0 0 0.5rem 1.5rem;
  border-bottom: 2px solid #5fced8;
}

.c-heading-w-line::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background-color: #5fced8;
  }

/* &::after {
    content: '';
    display: block;
    flex-grow: 1;
    height: 2px;
    background-color: theme(colors.primary-lighten);
  } */

@media (min-width: 475px) {

.c-heading-w-line {
    font-size: 1.25rem;
    line-height: 1;
    padding: 0 0 1.5rem 1.5rem
}

    .c-heading-w-line::before {
      top: 0;
    }
  }

.c-heading-w-line.add-link {
      flex-wrap: wrap;
      padding: 0 0 1rem 1.5rem;
    }

@media (min-width: 475px) {

.c-heading-w-line.add-link {
        gap: 1rem;
        padding: 0 0 1.5rem 1.5rem
    }
      }

@media (min-width: 640px) {

.c-heading-w-line.add-link {
        justify-content: space-between;
        align-items: baseline !important
    }
        .c-heading-w-line.add-link::before {
          top: calc(50% - 13px);
        }
      }

.c-heading-w-line.add-link .module-btn {
        margin-left: -1.5rem;
      }

@media (min-width: 640px) {

.c-heading-w-line.add-link .module-btn {
          margin-left: 0rem
      }
        }

.c-heading-w-border-b {
  position: relative;
  font-weight: bold;
  padding-left: 1.5em;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #5fced8;
}

@media (min-width: 1024px) {

.c-heading-w-border-b {
    font-size: 20px
}
  }

.c-heading-w-border-b:not([class*='mb-']) {
    margin-bottom: 2rem;
  }

.c-heading-w-border-b::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 1em;
    height: 1em;
    border-radius: 9999px;
    background-color: #5fced8;
  }

.c-heading-02 {
  position: relative;
  width: 100%;
  z-index: 1;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #4e6269;
}

.c-heading-02::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0.5rem;
    /* width: calc(100% - max-content - 1rem); */
    width: 100%;
    height: 1px;
    background-color: currentColor;
  }

.c-heading-02 .c-heading-02__text {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-left: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
    background-color: #fff;
  }

.c-heading-02 .c-heading-02__text::after {
      content: '';
      position: absolute;
      height: 2rem;
      width: 1px;
      right: -1.5rem;
      bottom: -0.125rem;
      display: block;
      background-color: #4e6269;
    }

.c-heading-02 span:first-child {
      position: absolute;
      z-index: 2;
      left: 0;
      top: 0;
    }

.c-heading-02 span:first-child::before,
      .c-heading-02 span:first-child::after {
        position: absolute;
        content: '';
        display: block;
        background-color: #4e6269;
      }

.c-heading-02 span:first-child::before {
        height: 2rem;
        width: 1px;
        left: 0.5rem;
      }

.c-heading-02 span:first-child::after {
        width: 2rem;
        height: 1px;
        top: 0.5rem;
      }

.c-heading-icon {
  aspect-ratio: 1 / 1;
  flex: none;
  border-radius: 9999px;
  padding: 1rem;
}

@media (min-width: 1024px) {

  .c-heading-icon {
    padding: 30px;
  }
}

.c-heading-icon svg {
  height: 2rem;
  width: 2rem;
}

@media (min-width: 1024px) {

  .c-heading-icon svg {
    height: 60px;
    width: 60px;
  }
}

.c-heading-bg-square {
  display: flex;
  gap: 4px;
  font-weight: bold;
}

.c-heading-bg-square span {
    font-size: 24px;
    padding: 2px 10px 0 10px;
    line-height: 36px;
  }

@media (min-width: 768px) {

.c-heading-bg-square span {
      font-size: 2.25rem;
      line-height: 50px
  }
    }

.c-news-ticker {
  padding: 0;
  margin: 0;
  max-width: none;
  z-index: 1;
}

@media (min-width: 640px) {

.c-news-ticker {
    width: 100%;
    margin-right: auto;
    margin-left: auto
}
  }

@media (min-width: 768px) {

.c-news-ticker {
    max-width: 768px
}
  }

@media (min-width: 1024px) {

.c-news-ticker {
    max-width: 1024px
}
  }

@media (min-width: 1280px) {

.c-news-ticker {
    max-width: 1280px
}
  }

@media (min-width: 768px) {

.c-news-ticker-area {
    position: absolute;
    top: -48px
}
  }

@media (min-width: 1280px) {
  }

.c-news-ticker-area-left h2 {
    font-size: 1.5rem;
    padding: 1rem 1.5rem 9rem 1rem;
    line-height: 32px;
  }

@media (min-width: 475px) {

.c-news-ticker-area-left h2 {
      font-size: 1.75rem;
      padding: 2rem 2.5rem 9rem 1.5rem
  }
    }

@media (min-width: 640px) {

.c-news-ticker-area-left h2 {
      font-size: 1.5rem;
      padding: 2rem 2rem 9rem 2rem
  }
    }

@media (min-width: 768px) {

.c-news-ticker-area-left h2 {
      font-size: 1.5rem;
      padding: 2rem 4rem 2rem 2rem
  }
    }

@media (min-width: 1024px) {

.c-news-ticker-area-left h2 {
      padding: 2rem
  }
    }

.c-news-ticker-area-center {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 192px;
  transform: translate(0, 0) skew(-15deg, 0deg);
}

@media (min-width: 475px) {

.c-news-ticker-area-center {
    height: 208px
}
  }

@media (min-width: 640px) {
  }

@media (min-width: 768px) {

.c-news-ticker-area-center {
    height: 96px;
    transform: translate(0, 0) skew(-30deg, 0deg)
}
  }

.c-news-ticker-area-center-inner  {
  height: 100%;
  transform: skew(15deg, 0deg);
}

@media (min-width: 768px) {

.c-news-ticker-area-center-inner  {
    transform: skew(30deg, 0deg)
}
  }

.c-news-ticker-area-center-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
  overflow: hidden;
  text-wrap: wrap;
  width: calc(240px + 80 * (100vw - 375px)/99);
}

@media (min-width: 475px) {

.c-news-ticker-area-center-text {
    width: calc(280px + 160 * (100vw - 475px)/164)
}
  }

@media (min-width: 640px) {

.c-news-ticker-area-center-text {
    width: calc(440px + 130 * (100vw - 640px)/127)
}
  }

@media (min-width: 768px) {

.c-news-ticker-area-center-text {
    -webkit-line-clamp: 1;
    width: 380px
}
  }

@media (min-width: 1024px) {

.c-news-ticker-area-center-text {
    width: 100%
}
  }

.c-news-ticker-item {
  overflow: hidden;
}

.is-loaded .c-news-ticker-item {
    position: absolute;
    top: 0;
    left: 0.5rem;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
  }

@media (min-width: 475px) {

.is-loaded .c-news-ticker-item {
      left: 1.5rem
  }
    }

@media (min-width: 640px) {

.is-loaded .c-news-ticker-item {
      font-size: 1.5rem
  }
    }

@media (min-width: 768px) {

.is-loaded .c-news-ticker-item {
      font-size: 1rem;
      left: 4rem
  }
    }

.is-loaded .c-news-ticker-item a {
      flex-wrap: wrap;
    }

@media (min-width: 768px) {

.is-loaded .c-news-ticker-item a {
        flex-wrap: nowrap;
        gap: 0.5rem
    }
      }

.is-loaded .c-news-ticker-item a time {
        width: 100%;
      }

@media (min-width: 768px) {

.is-loaded .c-news-ticker-item a time {
          width: auto
      }
        }

.is-loaded .c-news-ticker-item.is-active {
      z-index: 1;
      /* opacity: 1; */
    }

.c-news-ticker-area-right {

}

.c-news-ticker-arrow-right {
  padding: 9rem 1rem 1rem 0rem;
}

@media (min-width: 475px) {

.c-news-ticker-arrow-right {
    padding: 9rem 1.5rem 2rem 0rem
}
  }

@media (min-width: 640px) {

.c-news-ticker-arrow-right {
    padding: 9rem 2rem 2rem 0rem
}
  }

@media (min-width: 768px) {

.c-news-ticker-arrow-right {
    padding: 2rem 2.5rem 2rem 1.25rem
}
  }

.c-options-lists {
  --item-size: 8rem;
  --gap: 2rem;
  --item-length: 2;
}

@media (min-width: 640px) {

.c-options-lists {
    --gap: 2rem;
    --item-length: 4
}
  }

@media (min-width: 1024px) {

.c-options-lists {
    --item-length: 6
}
  }

@media (min-width: 1280px) {

.c-options-lists {
    --gap: 2rem;
    --item-length: 8
}
  }

.c-options-lists {

  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);

  max-width: calc(var(--item-size) * var(--item-length) + var(--gap) * calc(var(--item-length) - 1));
  margin-left: auto;
  margin-right: auto;
}

.c-options-lists li {
    display: none;
    text-align: center;
    width: var(--item-size);

    opacity: 0.3;

    font-size: 13px;
    font-weight: bold;
  }

@media (min-width: 640px) {

.c-options-lists li {
      font-size: 14px
  }
    }

.c-options-lists li.is-checked {
      opacity: 1;
      display: block;
    }

.c-options-list-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  padding: 0.75rem;
  background-color: #e5e7eb;
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  width: var(--item-size);
  height: var(--item-size);

  margin-bottom: 0.5rem;
}

.is-checked .c-options-list-icon {
    background-color: #5fced8;
  }

.c-options-list-icon img {
    width: auto;
    height: auto;
  }

.c-categories {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
  gap: 0.5rem;
  font-weight: bold;
}

@media (min-width: 1024px) {

.c-categories {
    gap: 0.5rem 1rem
}
  }

.c-categories.c-categories--rounded > li,
    .c-categories.c-categories--rounded > button,
    .c-categories.c-categories--rounded > .cat-item-all,
    .c-categories.c-categories--rounded > .cat-item {
      border-radius: 9999px;
    }

.c-categories.c-categories--square > li,
    .c-categories.c-categories--square > button,
    .c-categories.c-categories--square > .cat-item-all,
    .c-categories.c-categories--square > .cat-item {
      border-radius: none;
    }

.c-categories a,
  .c-categories button {
    display: block;
    /* padding: 0.25rem 0.5rem; */
    padding: 1rem;
  }

@media (min-width: 768px) {
      .c-categories a:hover, .c-categories button:hover {
        text-decoration: underline;
      }
    }

.c-categories > li,
  .c-categories > button,
  .c-categories > .cat-item-all,
  .c-categories > .cat-item {
    position: relative;
    text-align: center;
    border-radius: 9999px;
    background-color: white;
    outline: 1px solid #5fced8;
    /* border-radius: 9999px; */
    color: #5fced8;
  }

.c-categories > li.is-active,
    .c-categories > li.current-cat,
    .c-categories > button.is-active,
    .c-categories > button.current-cat,
    .c-categories > .cat-item-all.is-active,
    .c-categories > .cat-item-all.current-cat,
    .c-categories > .cat-item.is-active,
    .c-categories > .cat-item.current-cat {
      background-color: #4e6269;
      color: white;
      font-weight: bold;
      outline-color: #4e6269;
    }

@media (min-width: 768px) {

.c-categories > li,
  .c-categories > button,
  .c-categories > .cat-item-all,
  .c-categories > .cat-item {
      width: 240px
      /* flex: 1 1 0%; */
  }
        .c-categories > li:hover .children, .c-categories > button:hover .children, .c-categories > .cat-item-all:hover .children, .c-categories > .cat-item:hover .children {
          visibility: visible;
          opacity: 1;
          background-color: #f3f4f6;
          transition: 0.3s;
        }
    }

.c-categories .children {
    visibility: hidden;
    opacity: 0;
    display: none;
  }

@media (min-width: 768px) {

.c-categories .children {
      display: block;
      z-index: 1;
      text-align: left;
      padding-bottom: 0.5rem;

      position: absolute;
      top: 100%;
      width: 100%;
      transition: 0.3s ease;
      color: #314348
  }

      .c-categories .children a {
        padding-left: 1rem;
      }
        .c-categories .children > li + li {
          border-top: 1px solid #e5e7eb;
        }
    }

.c-categories .cat-item-none {
    padding: 1rem;
    margin: 0 0 2rem;
  }

.c-anchor-image {
  position: relative;
  display: block;
  /* display: inline-block; */
  overflow: hidden;
}

.c-anchor-image img {
    transition: transform 0.8s ease-in-out;
  }

.c-anchor-image:hover img {
      transform: scale(1.2);
    }

.c-policy-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.woocommerce):not(
      [class*='max-w']
    ) {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

.c-policy-content > * + *:not(hr):not([class*='mt']) {
      margin-top: 1.5rem;
    }

@media (min-width: 1024px) {

.c-policy-content > * + *:not(hr):not([class*='mt']) {
        margin-top: 2rem
    }
      }

.c-policy-content > * + h2:not([class*='mt']) {
      margin-top: 3rem;
    }

.c-policy-content figure.wp-caption a:focus img {
    outline-offset: 2px;
  }

.c-policy-content ul,
  .c-policy-content ol {
    margin: 0;
    /* padding-left: calc(2 * var(--global--spacing-horizontal)); */
    line-height: 2;
  }

.c-policy-content > ul > li, .c-policy-content > ol > li {
  border-bottom-width: 1px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.c-policy-content > ul > li *::marker, .c-policy-content > ol > li *::marker {
  font-size: 1.25em;
  font-weight: 700;
  color: rgb(95 206 216 );
}

.c-policy-content > ul > li::marker, .c-policy-content > ol > li::marker {
  font-size: 1.25em;
  font-weight: 700;
  color: rgb(95 206 216 );
}

.c-policy-content > ul > li:last-child, .c-policy-content > ol > li:last-child {
  border-bottom-width: 0px;
}

@media (min-width: 1024px) {

  .c-policy-content > ul > li *::marker, .c-policy-content > ol > li *::marker {
    font-size: 1.5em;
  }

  .c-policy-content > ul > li::marker, .c-policy-content > ol > li::marker {
    font-size: 1.5em;
  }
}

.c-policy-content > ul > li:first-of-type, .c-policy-content > ol > li:first-of-type {
        padding-top: 0;
      }

.c-policy-content > ul > li > dl, .c-policy-content > ol > li > dl {
        width: calc(100% - 50px);
        display: inline-block;
        vertical-align: top;
      }

.c-policy-content > ul > li > dl > dt, .c-policy-content > ol > li > dl > dt {
          font-size: 1.25em;
        }

@media (min-width: 1024px) {

.c-policy-content > ul > li > dl > dt, .c-policy-content > ol > li > dl > dt {
            font-size: 1.5em
        }
          }

@media screen and (max-width: 767.5px){

.c-policy-content > ul .sp-2lines, .c-policy-content > ol .sp-2lines {
        line-height: 1.5;
        margin-top: 5px;
        margin-bottom: 5px
    }
      }

.c-policy-content h1,
  .c-policy-content h2,
  .c-policy-content h3,
  .c-policy-content h4,
  .c-policy-content h5,
  .c-policy-content h6 {
    position: relative;
    clear: both;
    font-weight: bold;
  }

.c-policy-content h2,
  .c-policy-content h1 {
    margin-bottom: 1rem;
    font-size: 24px;
  }

.c-policy-content h2 + *, .c-policy-content h1 + * {
      margin-top: 1rem;
    }

.c-policy-content h3:not([class*='c-title']) {
    font-size: 1.25em;
  }

.c-policy-content h4:not([class*='c-title']) {
    font-size: 1.125em;
  }

.c-policy-content .c-title {
    margin-bottom: 2.5rem;
  }

/* .c-title-02 {
    margin-bottom: 2rem;
  } */

.c-policy-content h3 + *, .c-policy-content h4 + *, .c-policy-content h5 + *, .c-policy-content h6 + * {
      margin-top: 1rem;
    }

.c-policy-content a {
    text-decoration-line: underline;
  }

.single-post .c-policy-content h1:not([class*='c-title']),
    .single-post .c-policy-content h2:not([class*='c-title']),
    .single-results .c-policy-content h1:not([class*='c-title']),
    .single-results .c-policy-content h2:not([class*='c-title']),
    .single-news .c-policy-content h1:not([class*='c-title']),
    .single-news .c-policy-content h2:not([class*='c-title']) {
      padding-bottom: 0.5rem;
    }

.single-post .c-policy-content h1:not([class*='c-title'])::before,
      .single-post .c-policy-content h1:not([class*='c-title'])::after,
      .single-post .c-policy-content h2:not([class*='c-title'])::before,
      .single-post .c-policy-content h2:not([class*='c-title'])::after,
      .single-results .c-policy-content h1:not([class*='c-title'])::before,
      .single-results .c-policy-content h1:not([class*='c-title'])::after,
      .single-results .c-policy-content h2:not([class*='c-title'])::before,
      .single-results .c-policy-content h2:not([class*='c-title'])::after,
      .single-news .c-policy-content h1:not([class*='c-title'])::before,
      .single-news .c-policy-content h1:not([class*='c-title'])::after,
      .single-news .c-policy-content h2:not([class*='c-title'])::before,
      .single-news .c-policy-content h2:not([class*='c-title'])::after {
        content: '';
        position: absolute;
        bottom: 0;
        background-color: #4e6269;
        height: 4px;
      }

.single-post .c-policy-content h1:not([class*='c-title'])::before, .single-post .c-policy-content h2:not([class*='c-title'])::before, .single-results .c-policy-content h1:not([class*='c-title'])::before, .single-results .c-policy-content h2:not([class*='c-title'])::before, .single-news .c-policy-content h1:not([class*='c-title'])::before, .single-news .c-policy-content h2:not([class*='c-title'])::before {
        left: 0;
        background-color: #4e6269;
        width: 3em;
      }

.single-post .c-policy-content h1:not([class*='c-title'])::after, .single-post .c-policy-content h2:not([class*='c-title'])::after, .single-results .c-policy-content h1:not([class*='c-title'])::after, .single-results .c-policy-content h2:not([class*='c-title'])::after, .single-news .c-policy-content h1:not([class*='c-title'])::after, .single-news .c-policy-content h2:not([class*='c-title'])::after {
        background-color: #e5e7eb;
        width: calc(100% - 3em);
        left: 3em;
      }

.single-post .c-policy-content h3:not([class*='c-title']), .single-results .c-policy-content h3:not([class*='c-title']), .single-news .c-policy-content h3:not([class*='c-title']) {
      padding: 0.5rem;
      padding-left: 1rem;
      border-left: 4px solid #4e6269;
      border-bottom: 4px solid #e5e7eb;
    }

.single-post .c-policy-content h4:not([class*='c-title']),
    .single-post .c-policy-content h5:not([class*='c-title']),
    .single-post .c-policy-content h6:not([class*='c-title']),
    .single-results .c-policy-content h4:not([class*='c-title']),
    .single-results .c-policy-content h5:not([class*='c-title']),
    .single-results .c-policy-content h6:not([class*='c-title']),
    .single-news .c-policy-content h4:not([class*='c-title']),
    .single-news .c-policy-content h5:not([class*='c-title']),
    .single-news .c-policy-content h6:not([class*='c-title']) {
      padding: 0.5rem;
      padding-top: 0;
      padding-left: 1.5em;
      /* border-left: 4px solid theme(colors.primary); */
    }

.single-post .c-policy-content h4:not([class*='c-title'])::before, .single-post .c-policy-content h5:not([class*='c-title'])::before, .single-post .c-policy-content h6:not([class*='c-title'])::before, .single-results .c-policy-content h4:not([class*='c-title'])::before, .single-results .c-policy-content h5:not([class*='c-title'])::before, .single-results .c-policy-content h6:not([class*='c-title'])::before, .single-news .c-policy-content h4:not([class*='c-title'])::before, .single-news .c-policy-content h5:not([class*='c-title'])::before, .single-news .c-policy-content h6:not([class*='c-title'])::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12px;

        background-color: #4e6269;
        width: 0.75em;
        height: 4px;
      }

.c-policy-content p {
    word-break: break-word;
    line-height: 2;
  }

.c-policy-content p + p:not([class*='mt']) {
      margin-top: 1.5rem;
    }

.c-policy-content ul {
    list-style-type: disc;
  }

.c-policy-content ul ul {
      list-style-type: circle;
    }

.c-policy-content ol {
    list-style-type: decimal;
    list-style-position: inside;
  }

.c-policy-content ol ul {
      list-style-type: circle;
    }

.c-policy-content dt {
    font-weight: bold;
  }

.c-policy-content dd {
    margin: 0;
    /* padding-left: calc(2 * var(--global--spacing-horizontal)); */
  }

.c-policy-content table:not(.c-table),
  .c-policy-content .wp-block-table {
    width: 100%;
    min-width: 240px;
    border-collapse: collapse;
  }

.c-policy-content table:not(.c-table) thead,
  .c-policy-content table:not(.c-table) tfoot,
  .c-policy-content .wp-block-table thead,
  .c-policy-content .wp-block-table tfoot {
    text-align: center;
  }

.c-policy-content table:not(.c-table) td,
  .c-policy-content table:not(.c-table) th,
  .c-policy-content .wp-block-table td,
  .c-policy-content .wp-block-table th {
    padding: calc(0.5 * var(--global--spacing-unit));
    border: 1px solid #f3f4f6;
  }

.c-policy-content table:not(.c-table) figcaption,
  .c-policy-content .wp-block-table figcaption {
    /* color: var(--global--color-primary); */
    font-size: var(--global--font-size-xs);
  }

.c-policy-content a {
    cursor: pointer;
    text-underline-offset: 3px;
    -webkit-text-decoration-skip-ink: all;
            text-decoration-skip-ink: all;
  }

.c-policy-content a:hover {
    text-decoration-style: dotted;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }

.c-policy-content .aligncenter {
    clear: both;
    display: block;
    float: none;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

.c-policy-content .alignleft {
    float: left;
    margin-right: var(--global--spacing-horizontal);
    margin-bottom: var(--global--spacing-vertical);
    text-align: left;
    margin-top: 0;
  }

.c-policy-content .btn a {
    text-decoration: none;
  }

@media only screen and (min-width: 482px) {
    .c-policy-content > .wp-block-image > .alignleft,
    .c-policy-content > .wp-block-image > .alignright {
      max-width: 50%;
    }
  }

@media only screen and (max-width: 481px) {
    .c-policy-content > .wp-block-image > .alignleft,
    .c-policy-content > .wp-block-image > .alignright {
      margin-left: 0;
      margin-right: 0;
    }
  }

.c-policy-content > .alignleft {
    max-width: var(--responsive--aligndefault-width);
  }

@media only screen and (min-width: 482px) {
    .c-policy-content .alignleft {
      /*rtl:ignore*/
      float: left;

      /*rtl:ignore*/
      margin-right: var(--global--spacing-horizontal);
      margin-bottom: var(--global--spacing-vertical);
    }

    .c-policy-content .entry-content > .alignleft {
      max-width: calc(50% - var(--responsive--alignleft-margin));
    }
  }

/**
 * .aligncenter
 */

.c-policy-content .aligncenter {
    clear: both;
    display: block;
    float: none;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

/**
 * .alignright
 */

.c-policy-content .alignright {
    margin-top: 0;
    margin-bottom: var(--global--spacing-vertical);
  }

.c-policy-content > .alignright {
    max-width: var(--responsive--aligndefault-width);
  }

@media only screen and (min-width: 482px) {
    .c-policy-content .alignright {
      /*rtl:ignore*/
      float: right;

      /*rtl:ignore*/
      margin-left: var(--global--spacing-horizontal);
    }

    .c-policy-content > .alignright {
      max-width: calc(50% - var(--responsive--alignright-margin));
    }
  }

.c-policy-content [class*='inner-container'] > .alignleft + *,
  .c-policy-content [class*='inner-container'] > .alignright + * {
    margin-top: 0;
  }

.c-policy-content pre {
    overflow: auto;
  }

/**
 * .alignwide
 */

.c-policy-content .alignwide {
    clear: both;
  }

/**
 * .alignfull
 */

.c-policy-content .alignfull {
    clear: both;
  }

/* Safariでのみ有効。iOSのSafariにも効く。 */

_:lang(x)+_:-webkit-full-screen-document .c-policy-content > ol > li > dl, body .c-policy-content > ol > li > dl {
          margin-top: -5px;
        }

.c-faq {
  position: relative;

  border: 1px solid #a6bdc2;
}

.c-faq.is-active {
    border-color: #a6bdc2;
  }

@media screen and (max-width: 767.5px){

.c-faq {
    font-size: 14px
}
  }

.c-faq-header {
  position: relative;
  width: 100%;
  padding: 1.375rem 2.5rem 1.375rem 5rem;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;
  background-color: #fff;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767.5px){

.c-faq-header {
    /* display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 1.375rem 3.5rem 1.375rem 1rem;
    gap: 1rem; */
}
  }

@media (min-width: 768px) {

.c-faq-header {
    font-size: 1rem
}
  }

.is-active .c-faq-header {
    /* border-bottom: 1px solid theme(colors.primary-lighten); */
    /* background-color: theme(colors.primary); */
    /* color: white; */
    border-bottom: 1px solid #a6bdc2;
  }

.c-faq-header {

  overflow: hidden;
}

.c-faq-header::before {
    content: '';
    z-index: 0;
    position: absolute;
    left: 1rem;
    top: calc(50% - 20px);
    pointer-events: none;
    background-image: url(../img/common/icon_q.webp);
    width: 40px;
    height: 40px;
    background-size: cover;
  }

.c-faq-body {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: var(--transition-duration);
  padding: 0rem 2.5rem 0rem 5rem;
  background-color: #fff;
  line-height: 1.8;
}

.is-active .c-faq-body {
    height: auto;
    padding: 1.375rem 2.5rem 1.375rem 5rem;
  }

.c-faq-body ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }

.c-faq-body::before {
    content: '';
    z-index: 0;
    position: absolute;
    left: 1rem;
    top: 1rem;
    pointer-events: none;
    background-image: url(../img/common/icon_a.webp);
    width: 40px;
    height: 40px;
    background-size: cover;
  }

.c-faq-body a {
    text-decoration: underline;
  }

.c-faq-icon {
  position: absolute;
  right: 1rem;

  transition: var(--transition-duration);
}

.is-active .c-faq-icon .vertical_line {
      transform: rotate(-90deg);
    }

.c-note {
  position: relative;
  display: inline-block;
  text-indent: -1.125em;
  padding-left: 1em;
}

/* font-size: 0.8em; */

.c-note::before {
    content: '\203B';
    display: inline-block;
    width: 1.125em;
    text-indent: 0;
  }

.c-form {
  overflow: hidden;
  font-size: 16px;
}

.c-form > label + label,
    .c-form > label + fieldset,
    .c-form > fieldset + label,
    .c-form > fieldset + fieldset {
      margin-top: 2rem;
    }

.c-form dl,
  .c-form tr {
    display: block;
  }

.c-form dl + dl,
    .c-form dl + tr,
    .c-form tr + dl,
    .c-form tr + tr {
      margin-top: 3rem;
    }

@media (min-width: 1280px) {

.c-form dl,
  .c-form tr {
      display: flex
  }
    }

.c-form dt,
  .c-form legend,
  .c-form th {
    text-align: left;
    display: block;
    font-weight: bold;
  }

@media screen and (max-width: 1279.5px){

.c-form dt,
  .c-form legend,
  .c-form th {
      margin-bottom: 0.5rem
  }
    }

@media (min-width: 1280px) {

.c-form dt,
  .c-form legend,
  .c-form th {
      width: 20rem
  }
    }

.c-form dd,
  .c-form td {
    display: block;
    padding-left: 1px;
  }

/* outline width */

@media (min-width: 1280px) {

.c-form dd,
  .c-form td {
      width: calc(100% - 20rem)
      /* flex: none; */
  }
    }

.c-form dd > dl, .c-form td > dl {
      margin-top: 1rem;
      padding: 1rem;
      padding-top: 0;
      padding-right: 0;
      border-left: 2px solid #e5e7eb;
    }

.c-form dd > dl + dl, .c-form td > dl + dl {
        margin-top: 0;
      }

.entry-content .c-form dd, .entry-content .c-form td {
      padding-left: 1px;
    }

.c-form a {
    text-decoration: underline;
  }

.c-form dt:not(.is-required)::before, .c-form .is-required::before {
      line-height: 1;
      font-size: 0.8em;
      padding: 0.375rem;
      border-radius: 0.125rem;
      vertical-align: middle;
      display: inline-block;
      font-size: 14px;
      margin-right: 0.5rem;
    }

.c-form dt:not(.is-required)::before {
      content: '\4EFB\610F';
      /* color: theme(colors.red.500); */
      color: white;
      background-color: #a6bdc2;
    }

.c-form .is-required::before {
      content: '\5FC5\9808';
      /* color: theme(colors.red.500); */
      color: white;
      /* background-color: theme(colors.red.500); */
      background-color: #5fced8;
    }

.c-form [type='text'],
  .c-form [type='tel'],
  .c-form [type='email'],
  .c-form [type='number'] {
    width: 100%;
    padding: 1rem;
    /* background-color: theme(colors.gray.200); */
    background-color: #eaf4f6;
    border: solid 1px #a6bdc2;
  }

.c-form [type='text'][maxlength='8'], .c-form [type='tel'][maxlength='8'], .c-form [type='email'][maxlength='8'], .c-form [type='number'][maxlength='8'] {
      max-width: 12em;
    }

.c-form [type='text']:focus, .c-form [type='tel']:focus, .c-form [type='email']:focus, .c-form [type='number']:focus {
      outline-offset: -1px;
      background-color: #f3f4f6;
    }

.c-form [type='tel'] {
    max-width: 20em;
  }

.c-form select,
  .c-form [type='date'] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: #fff;
    /* text-align: center; */
  }

.c-form textarea {
    width: 100%;
    padding: 1rem;
    /* background-color: theme(colors.gray.200); */
    background-color: #eaf4f6;
    border: solid 1px #a6bdc2;
  }

.c-form textarea:focus {
      outline-offset: -1px;
      background-color: #f3f4f6;
    }

.c-form .inquiry-type-checkbox {

  }

.c-form .inquiry-type-select {
    width: 100%;
  }

.c-form .submit-btn-arrow{
    position: relative;
  }

.c-form .submit-btn-arrow::after {
      position: absolute;
      content: '';
      display: inline-block;
      top: -99px;
      left: 40px;
      width: 1.5rem;
      height: 1.5rem;
      background-size: contain;
      background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffff00' class='bi bi-arrow-right-circle-fill' viewBox='0 0 16 16'><path d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/></svg>");
    }

.has-free-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.125rem;
}

[data-class='wpcf7cf_group'] {
  margin-top: 1rem;
}

.c-widget-lists > li {
    border-left: 4px solid #5fced8;
    border-bottom: 1px solid #e5e7eb;
  }

.c-widget-lists > li > a {
      position: relative;
      /* display: block; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
      padding-right: 0.5rem;
    }

.c-widget-lists > li > a::after {
        content: '';
        display: inline-block;
        width: 1rem;
        height: 1rem;
        background-size: contain;
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234e6269' viewBox='0 0 16 16'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>");
      }

.c-arrow-wrapper {
  position: absolute;
  right: -4rem;
  bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;

  --arrow-animation-duration: 1.5s;
  --arrow-circle-width: 3rem;
  --arrow-color: white;
  --arrow-height: 82px;
}

.c-arrow-wrapper.c-arrow-to-top {
    top: 0;
    bottom: auto;
  }

.c-arrow-circle {
  width: var(--arrow-circle-width);
  height: var(--arrow-circle-width);
  transform: scale(0);
  opacity: 1;
  border: 1px solid var(--arrow-color);
  border-radius: 100%;
  animation: grow var(--arrow-animation-duration) linear infinite;
  position: absolute;
  animation-delay: 0.6s;
}

.c-arrow-to-top .c-arrow-circle {
    top: calc(-1 * (var(--arrow-height) - var(--arrow-circle-width) / 2 + 4px));
  }

.c-arrow-circle-2 {
  animation-delay: 0.8s;
}

.c-arrow {
  position: relative;
  top: -40px;
  width: 10px;
  height: 82px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.c-arrow-line {
  width: 1px;
  height: 80px;
  background-color: var(--arrow-color);
  animation: height var(--arrow-animation-duration) ease-in infinite;
}

.c-arrow-to-top .c-arrow-line {
    /* animation: none; */
    animation: height-invert var(--arrow-animation-duration) ease-in infinite;
    /* animation-direction: reverse; */
  }

.c-arrow-tip-wrapper {
  position: relative;
  top: 77px;
  left: -1px;
  animation: arrow-tip var(--arrow-animation-duration) ease-in infinite;
}

.c-arrow-to-top .c-arrow-tip-wrapper {
    /* animation: none; */
    /* animation-direction: reverse; */
    /* bottom: 77px; */
    /* top: auto; */
    top: 0;
    animation: arrow-tip-invert var(--arrow-animation-duration) ease-in infinite;
  }

.c-arrow-tip {
  width: 1px;
  height: 6px;
  background-color: var(--arrow-color);
  transform: rotate(45deg);
  position: absolute;
  left: 2px;
}

.c-arrow-tip.c-arrow-tip--left {
    transform: rotate(-45deg);
    left: -2px;
  }

.c-arrow-to-top .c-arrow-tip.c-arrow-tip--left {
      top: -0.0875rem;
      left: -0.125rem;
      transform: rotate(45deg);
    }

.c-arrow-text {
  position: absolute;
  left: -1.5rem;
  top: -0.5rem;
  transform: rotate(90deg);
  text-transform: uppercase;
  font-family: interstate, sans-serif;

  display: block;
  font-size: 10px;
  width: 8em;
  height: 1rem;

  color: var(--arrow-color);
}

@media (min-width: 768px) {

.c-arrow-text {
    left: -2rem;
    font-size: 14px
}
  }

.c-arrow-to-top .c-arrow-text {
    /* top: 1rem; */
    top: auto;
    bottom: 2rem;
  }

@media (min-width: 768px) {

.c-arrow-to-top .c-arrow-text {
      left: -2.25rem
  }
    }

@keyframes grow {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes height {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(110%);
  }
  100% {
    transform: translateY(110%);
  }
}

@keyframes height-invert {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(-110%);
  }
}

@keyframes arrow-tip {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(-1px);
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes arrow-tip-invert {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(1px);
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.c-table {
  table-layout: fixed;
  font-size: 14px;
}

.c-table th,
  .c-table td {
    padding: 0.5rem;
    border-width: 1px;
  }

.c-table th {
    background-color: #f3f4f6;
  }

.c-clip-diagonal {
  /* clip-path: polygon(25% 0%, 100% 0, 100% 42%, 75% 100%, 0 100%, 0 40%); */
  -webkit-clip-path: polygon(19% 0, 100% 0, 100% 54%, 82% 100%, 0 100%, 0 33%);
          clip-path: polygon(19% 0, 100% 0, 100% 54%, 82% 100%, 0 100%, 0 33%);
}

.c-text-dots {
  background-image: radial-gradient(circle at center, #ffff00 18%, transparent 22%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.4em;
}

.c-feature-item {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 20rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(95 206 216 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 475px) {

  .c-feature-item {
    gap: 0.5rem;
  }
}

@media (min-width: 640px) {

  .c-feature-item {
    justify-content: space-around;
  }
}

.c-feature-item:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgb(78 98 105 / var(--tw-bg-opacity));
}

.c-feature-item:nth-child(3) {
  order: 9999;
}

@media (min-width: 1024px) {

  .c-feature-item:nth-child(3) {
    order: 0;
  }
}

.c-feature-item-icon {
  display: flex;
  aspect-ratio: 1 / 1;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

@media (min-width: 640px) {

  .c-feature-item-icon {
    width: 6rem;
  }
}

@media (min-width: 1024px) {

  .c-feature-item-icon {
    width: 5rem;
  }
}

@media (min-width: 1280px) {

  .c-feature-item-icon {
    width: 6rem;
  }
}

.c-feature-item-icon img {
  width: 1.75rem;
}

@media (min-width: 640px) {

  .c-feature-item-icon img {
    width: 3.5rem;
  }
}

@media (min-width: 1024px) {

  .c-feature-item-icon img {
    width: 2.5rem;
  }
}

@media (min-width: 1280px) {

  .c-feature-item-icon img {
    width: 3.5rem;
  }
}

.c-feature-item-heading {
  font-family: mitimasu, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

@media (min-width: 640px) {

  .c-feature-item-heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 1024px) {

  .c-feature-item-heading {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1280px) {

  .c-feature-item-heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.c-feature-item-body {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(49 67 72 / var(--tw-text-opacity));
}

@media (min-width: 640px) {

  .c-feature-item-body {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {

  .c-feature-item-body {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1280px) {

  .c-feature-item-body {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.c-marker {
  background: linear-gradient(transparent 60%, #ffff00 60%);
}

.c-steps-bg {
  background-image: url('../img/common/bg_steps.webp');
  background-size:  cover;
}

.c-steps {
  --line-width: 1rem;
}

@media (min-width: 1024px) {

.c-steps {
    display: flex;
    width: 100%;
  }
  }

.c-step:nth-child(odd) .c-step-item {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(49 67 72 / var(--tw-text-opacity));
}

.c-step:nth-child(odd) .c-step-item-heading {
      color: #5fced8;
    }

.c-step:nth-child(even) .c-step-item {
  --tw-bg-opacity: 1;
  background-color: rgb(95 206 216 / var(--tw-bg-opacity));
}

@media (min-width: 1024px) {

.c-step {
    position: relative;
    display: flex;
    width: 25%;
    flex-direction: column;
    justify-content: flex-end;
  }
      .c-step:first-child .c-step-item {
    z-index: 40;
    height: calc(100% - 9rem);
  }
      .c-step:nth-child(2) .c-step-item {
    z-index: 30;
    height: calc(100% - 6rem);
  }
      .c-step:nth-child(3) .c-step-item {
    z-index: 20;
    height: calc(100% - 3rem);
  }
      .c-step:last-child .c-step-item {
    height: 100%;
  }
        .c-step:not(:first-child) .c-step-item::after {
          content: '';
          width: var(--line-width);
          height: 100%;
          position: absolute;
          left: calc(-1 * var(--line-width));
          top: calc(-1 * var(--line-width) / 2);
          background-color: #ffff00;
        }
        .c-step:not(:last-child) .c-step-item::before {
          content: '';
          width: 100%;
          height: var(--line-width);
          position: absolute;
          left: 0;
          top: calc(-1 * var(--line-width) / 2);
          background-color: #ffff00;
        }
  }

.c-step-icon-wrapper {
  display: none;
}

@media (min-width: 1024px) {

.c-step-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

.c-step-icon-text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    line-height: 2.25rem;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
  }

.c-step-icon-text-arrow {
    border-width: 8px;
    border-color: transparent;
    --tw-border-opacity: 1;
    border-left-color: rgb(255 255 0 / var(--tw-border-opacity));
    border-left-width: 12px;
  }
  }

.c-step-item {
  position: relative;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-step-item__arrow {
  display: none;
}

@media (min-width: 1024px) {

.c-step-item__arrow {
    display: block;
    width: calc(100% - 2rem);
    height: var(--line-width);
    position: absolute;
    left: 0;
    top: calc(-1 * var(--line-width) / 2);
    background-color: #ffff00
}

    .c-step-item__arrow::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 0;
      border-width: 1rem;
      border-left-width: 1.5rem;
      margin-top: -0.5rem;
      border-color: transparent;
      border-left-color: #ffff00;
    }
  }

.c-step-item-heading {
  font-family: interstate, sans-serif;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}

.c-step-item-image {
  margin-top: 3rem;
  margin-bottom: 3rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 9999px;
}

.c-step-item-image img {
    width: 100%;
  }

.c-step-item-body {
  line-height: 2;
}

:root {
  --bg-position-top: 200px;
}

@media (min-width: 1024px) {

:root {
    --bg-position-top: 478px
}
  }

.c-bg-position-top-low {
  --bg-position-top: 100px;
}

@media (min-width: 1024px) {

.c-bg-position-top-low {
    --bg-position-top: 150px
}
  }

.c-bg-pattern {
  position: relative;
  z-index: 0;
  background-color: #fff;
}

.c-bg-pattern::before {
    content: '';
    position: absolute;
    left: 0;
    top: var(--bg-position-top);
    width: 100%;
    height: 40%;
    z-index: -1;
    background-image: url('../img/common/bg_camouflage_01.webp');
    background-size: 400px;
  }

.c-bg-pattern-02 {
  position: relative;
  z-index: 0;
  background-color: #fff;
}

.c-bg-pattern-02::before {
    content: '';
    position: absolute;
    left: 0;
    top: var(--bg-position-top);
    width: 100%;
    z-index: -1;
    background-image: url('../img/common/bg_camouflage_01.webp');
    background-size: 400px;
      height: 60%;
  }

@media (min-width: 768px) {

.c-bg-primary {
    background: linear-gradient(
      180deg,
      white 0%,
      white var(--bg-position-top),
      #4e6269 var(--bg-position-top),
      #4e6269 80%,
      white 80%,
      white 100%
    )
}
  }

.c-bg-primary-02 {
    position: relative;
    inset-inline: 50%;
    width: 100vw;
    margin-inline: -50vw;
    padding-inline: calc((100vw - 100%) / 2);
    background-color: #4e6269;
  }

.c-bg-primary-03 {
    position: relative;
    z-index: 0;
    background-color: #fff;
  }

.c-bg-primary-03::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      width: 100%;
      height: 55%;
      z-index: -1;
      --tw-bg-opacity: 1;
      background-color: rgb(78 98 105 / var(--tw-bg-opacity));
    }

.c-bg-primary-04 {
    background: linear-gradient(180deg, #4e6269 0%, #4e6269 90%, #fff 90%, #fff 100%);
  }

@media (min-width: 768px) {

.c-bg-primary-04 {
      background: linear-gradient(180deg, #4e6269 0%, #4e6269 90%, #4e6269 90%, #4e6269 100%)
  }
    }

.c-bg-primary-lighten {
  background: linear-gradient(
    180deg,
    white 21%,
    white var(--bg-position-top),
    #5fced8 var(--bg-position-top),
    #5fced8 83%,
    white 80%,
    white 100%
  );

}

@media (min-width: 768px) {

.c-bg-primary-lighten {
    background: linear-gradient(
      180deg,
      white 41%,
      white var(--bg-position-top),
      #5fced8 var(--bg-position-top),
      #5fced8 78%,
      white 78%,
      white 100%
    )

}
  }

.c-bg-primary-lighten-02 {
    position: relative;
    z-index: 0;
    background-color: #fff;
  }

.c-bg-primary-lighten-02::before {
      content: '';
      position: absolute;
      left: 0;
      top: var(--bg-position-top);
      width: 100%;
      height: 40%;
      z-index: -1;
      --tw-bg-opacity: 1;
      background-color: rgb(95 206 216 / var(--tw-bg-opacity));
      background-size: 400px;
    }

@media (min-width: 768px) {

.c-bg-primary-lighten-trapezoid {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160%;
    z-index: 0;
    background: #5fced8;
    transform: translate(calc(-325px + -55 * (100vw - 768px)/255), 0) skew(-30deg, 0deg);
    transform-origin: top left;
    opacity: 0.9
}
  }

@media (min-width: 1024px) {

.c-bg-primary-lighten-trapezoid {
    transform: translate(calc(-450px + -100 * (100vw - 1024px)/255), 0) skew(-30deg, 0deg)
}
  }

@media (min-width: 1280px) {

.c-bg-primary-lighten-trapezoid {
    transform: translate(calc(-600px + -100 * (100vw - 1280px)/256), 0) skew(-30deg, 0deg)
}
  }

@media (min-width: 1536px) {

.c-bg-primary-lighten-trapezoid {
    transform: translate(calc(-826px + -86 * (100vw - 1536px)/384), 0) skew(-30deg, 0deg)
}
  }

@media (width > 1920px) {

.c-bg-primary-lighten-trapezoid {
    transform: translate(-47.5%, 0) skew(-30deg, 0deg)
}
  }

.c-bg-primary-lighten-trapezoid-02 {
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* background: theme(colors.primary-lighten); */
  transform-origin: top left;
  opacity: 0.9;
  z-index: -1;
  width: calc(253px + 93 * (100vw - 375px)/99);
  transform: translate(calc(49px + 6 * (100vw - 375px)/99), 0px) skew(-15deg, 0deg);
  background-clip: border-box;
  
}

/* xs: '475px', */

/* sm: '640px', */

/* md: '768px', */

/* lg: '1024px', */

/* xl: '1280px', */

@media (min-width: 475px) {

.c-bg-primary-lighten-trapezoid-02 {
    width: calc(321px + 154 * (100vw - 475px)/164);
    transform: translate(calc(71px + 10 * (100vw - 475px)/164), 0px) skew(-15deg, 0deg)
  
}
  }

@media (min-width: 640px) {

.c-bg-primary-lighten-trapezoid-02 {
    width: calc(476px + 123 * (100vw - 640px)/127);
    transform: translate(calc(72px + 5 * (100vw - 640px)/127), 0px) skew(-15deg, 0deg)
  
}
  }

@media (min-width: 768px) {

.c-bg-primary-lighten-trapezoid-02 {
    width: 556px;
    transform: translate(calc(120px + 128 * (100vw - 768px)/255), 0px) skew(-30deg, 0deg)
  
}
  }

@media (min-width: 1024px) {

.c-bg-primary-lighten-trapezoid-02 {
    width: 824px;
    transform: translate(calc(108px + 128 * (100vw - 1024px)/255), 0px) skew(-30deg, 0deg)
  
}
  }

@media (min-width: 1280px) {

.c-bg-primary-lighten-trapezoid-02 {
    width: 1000px;
    transform: translate(calc(161px + 129 * (100vw - 1280px)/256), 0px) skew(-30deg, 0deg)
  
}
  }

.c-bg-primary-lighten-trapezoid-02 ::before {
    position: absolute;
    content: '';
    background-color: #5fced8;
    opacity: 0.9;
    width: 100%;
    height: 100%;
  }

.c-bg-primary-lighten-trapezoid-03 {
  position: revert;
  background: url(../img/home/bg_choose_02.webp;);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100vw;
  height: 100%;
  transform: translate(20%, 0) skew(15deg, 0deg);

}

@media (min-width: 475px) {

.c-bg-primary-lighten-trapezoid-03 {
    transform: translate(10%, 0) skew(15deg, 0deg)

}
  }

@media (min-width: 640px) {

.c-bg-primary-lighten-trapezoid-03 {
    transform: translate(20%, 0) skew(15deg, 0deg)

}
  }

@media (min-width: 768px) {

.c-bg-primary-lighten-trapezoid-03 {
    transform: translate(calc(305px - 10 * (100vw - 768px)/255), 0) skew(30deg, 0deg)

}
  }

@media (min-width: 1024px) {

.c-bg-primary-lighten-trapezoid-03 {
    transform: translate(calc(432px - 127 * (100vw - 1024px)/255), 0) skew(30deg, 0deg)

}
  }

@media (min-width: 1280px) {

.c-bg-primary-lighten-trapezoid-03 {
    transform: translate(72px, 0) skew(30deg, 0deg)

}
  }

@media (min-width: 1536px) {

.c-bg-primary-lighten-trapezoid-03 {
    transform: translate(-14%, 0) skew(30deg, 0deg)

}
  }

.c-bg-primary-lighten-trapezoid-04 {
    position: absolute;
    background-image: url(../img/home/bg_choose_01_sp.webp;);
    background-position: right bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (min-width: 768px) {

.c-bg-primary-lighten-trapezoid-04 {
      background-image: url(../img/home/bg_choose_01.webp;)
}
    }

.c-bg-parallelogram-y-15 {
  /* position: relative;
  &::before {

    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: theme(colors.primary-lighten);
    transform: skew(0deg, -15deg);
    z-index: -1;
  } */

}

/* .c-banner {
  font-size: calc(100vw * 16 / 375);

  @media screen(md) {
    font-size: calc(768px * 16 / 375);
  }
} */

.c-banner-sm {
  font-size: clamp(0.65rem, 3.5vw, 1.5rem);
}

.c-banner-lg {
  /* font-size: clamp(1rem, 4vw, 2.25rem); */
}

.c-banner-reservation {
  font-size: 1.125rem;
  line-height: 1.75rem;
  width: 100%;
  bottom: calc(7% + 4 * (100vw - 375px)/99);
}

@media (min-width: 475px) {

.c-banner-reservation {
    font-size: 1.25rem;
    line-height: 1.75rem;
    bottom: 9%;
  }
  }

@media (min-width: 640px) {

.c-banner-reservation {
    font-size: 1.5rem;
    line-height: 2rem;
    bottom: 10%;
  }
  }

@media (min-width: 768px) {

.c-banner-reservation {
    font-size: calc(20px + 2 * (100vw - 768px)/255);
    bottom: 4%
}
  }

@media (min-width: 1024px) {

.c-banner-reservation {
    font-size: 1.5rem;
    line-height: 2rem;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  }

@media (min-width: 1280px) {

.c-banner-reservation {
    bottom: 2.5rem
}
  }

.c-banner-reservation-text-head {
  display: block;
  font-family: mitimasu, sans-serif;
  line-height: 1;
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {

.c-banner-reservation-text-head {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}
  }

.c-banner-reservation-text-head::before,.c-banner-reservation-text-head::after {

    /* width: 1px; */
    /* border-left: 0.5em dotted theme(colors.yellow-custom); */
    content: '';
    position: absolute;
    top: 0;

    /* width: 1px; */
    width: 1rem;
    height: 3rem;
    /* border-left: 0.5em dotted theme(colors.yellow-custom); */
    background-image: radial-gradient(circle at center, #ffff00 24%, transparent 28%);
    background-size: 1rem 1rem;

    transform-origin: bottom;
  }

@media (min-width: 768px) {

.c-banner-reservation-text-head::before,.c-banner-reservation-text-head::after {
      /* border-left-width: 0.25em; */
      /* border-left-width: 0.25em; */
  }
    }

.c-banner-reservation-text-head::before {
    left: 0.5rem;
    rotate: -30deg;
  }

.c-banner-reservation-text-head::after {
    right: 0.5rem;
    rotate: 30deg;
  }

.c-banner-reservation-text-head::before,.c-banner-reservation-text-head::after {
    /* border-left-width: 4px; */
    /* border-left-width: 4px; */
    height: 1.125em;
    width: 0.5em;
    background-size: 0.5em 0.4em;
  }

@media (min-width: 475px) {
  }

@media (min-width: 640px) {
  }

@media (min-width: 768px) {
  }

.c-banner-reservation-text-foot {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: -moz-fit-content;
  max-width: fit-content;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
}

.c-banner-reservation-text-foot span span {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 475px) {

.c-banner-reservation-text-foot span span {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
      }

@media (min-width: 640px) {
      }

@media (min-width: 768px) {

.c-banner-reservation-text-foot span span {
        font-size: calc(28px + 4 * (100vw - 768px)/255)
    }
      }

@media (min-width: 1024px) {

.c-banner-reservation-text-foot span span {
        font-size: 40px
    }
      }

.c-banner-recruit {
  bottom: 24%;
  left: 5%;
}

@media (min-width: 475px) {

.c-banner-recruit {
    bottom: 4rem
}
  }

@media (min-width: 640px) {

.c-banner-recruit {
    bottom: 5.25rem
}
  }

@media (min-width: 768px) {

.c-banner-recruit {
    bottom: 41px
}
  }

@media (min-width: 1024px) {

.c-banner-recruit {
    bottom: 4.125rem;
    left: 1.6875rem
}
  }

@media (min-width: 1280px) {

.c-banner-recruit {
    bottom: 5.5rem
}
  }

.c-banner-recruit-balloon {
  position: absolute;
  top: 5px;
  left: 30%;
  background-color: #fff;
  width: 9rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;

  font-size: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 50%;
  filter: drop-shadow(2px 3px 0 #4e6269);
}

@media (min-width: 475px) {

.c-banner-recruit-balloon {
    top: 1rem;
    left: 38%;
    width: 10rem;
    height: 6rem
}
  }

@media (min-width: 640px) {

.c-banner-recruit-balloon {
    left: 24%;
    width: 240px;
    height: 120px;
    font-size: 20px
}
  }

@media (min-width: 768px) {

.c-banner-recruit-balloon {
    top: 0.5rem;
    left: 18%;
    width: 12rem;
    height: 6rem
}
  }

@media (min-width: 1024px) {

.c-banner-recruit-balloon {
    left: 38.5%
}
  }

@media (min-width: 1280px) {

.c-banner-recruit-balloon {
    width: 14.25rem;
    height: 7.8125rem;
    left: 30%;
    filter: drop-shadow(4px 6px 0 #4e6269)
}
  }

@media (min-width: 1536px) {

.c-banner-recruit-balloon {
    left: 38%
}
  }

.c-banner-recruit-balloon::after {
    content: '';

    position: absolute;
    right: -20px;
    bottom: -2px;
    border-width: 2vw;
    border-color: transparent;
    border-top-color: white;
    border-top-width: 6vw;
    rotate: -50deg;
    translate: -4vw;
  }

@media (min-width: 640px) {

.c-banner-recruit-balloon::after {
      translate: -2%;
      border-width: 10px;
      border-top-width: 40px
  }
    }

@media (min-width: 768px) {

.c-banner-recruit-balloon::after {
      right: -10px;
      bottom: -10px
  }
    }

@media (min-width: 1280px) {

.c-banner-recruit-balloon::after {
      translate: -25px
  }
    }

.c-banner-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;

}

@media (min-width: 768px) {

.c-banner-2 {
    gap: 3rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto

}
  }

.c-banner-2 .c-banner-link {
    position: relative;
    width: 100%;
  }

@media (min-width: 768px) {

.c-banner-2 .c-banner-link {
      width: calc(50% - 1.5rem)
  }
    }

.c-banner-2 .c-banner-link .c-banner-inner {
      position: absolute;
      text-align: center;
      top: calc(50% - 25px);
      left: calc(200px + 80 * (100vw - 375px)/99);
      width: 128px;
    }

@media (min-width: 475px) {

.c-banner-2 .c-banner-link .c-banner-inner {
        left: 63%
    }
      }

@media (min-width: 640px) {

.c-banner-2 .c-banner-link .c-banner-inner {
        top: calc(50% - 33px);
        left: 60%;
        width: 224px
    }
      }

@media (min-width: 768px) {

.c-banner-2 .c-banner-link .c-banner-inner {
        top: calc(50% - 25px);
        left: 45%
    }
      }

@media (min-width: 1024px) {

.c-banner-2 .c-banner-link .c-banner-inner {
        left: 54%
    }
      }

@media (min-width: 1280px) {

.c-banner-2 .c-banner-link .c-banner-inner {
        top: calc(50% - 33px);
        left: 59%
    }
      }

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title {
        color: white;
        font-size: 1rem;
      }

@media (min-width: 640px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title {
          font-size: 28px
      }
        }

@media (min-width: 768px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title {
          font-size: 18px
      }
        }

@media (min-width: 1024px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title {
          font-size: 24px
      }
        }

@media (min-width: 1280px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title {
          font-size: 28px
      }
        }

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title-02 {
        color: white;
        font-size: 14px;
      }

@media (min-width: 640px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title-02 {
          font-size: 20px
      }
        }

@media (min-width: 768px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title-02 {
          font-size: 16px
      }
        }

@media (min-width: 1024px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title-02 {
          font-size: 18px
      }
        }

@media (min-width: 1280px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-title-02 {
          font-size: 20px
      }
        }

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-sub {
        color: #5fced8;
        font-size: 14px;
        font-family: interstate;
      }

@media (min-width: 640px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-sub {
          font-size: 1rem
      }
        }

@media (min-width: 768px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-sub {
          font-size: 14px
      }
        }

@media (min-width: 1024px) {

.c-banner-2 .c-banner-link .c-banner-inner .c-banner-inner-sub {
          font-size: 1rem
      }
        }

.c-banner-2 .c-banner-link .c-banner-inner_two-lines {
      top: calc(50% - 35px);
    }

@media (min-width: 475px) {

.c-banner-2 .c-banner-link .c-banner-inner_two-lines {
        top: calc(50% - 38px)
    }
      }

@media (min-width: 640px) {

.c-banner-2 .c-banner-link .c-banner-inner_two-lines {
        top: calc(50% - 55px)
    }
      }

@media (min-width: 768px) {

.c-banner-2 .c-banner-link .c-banner-inner_two-lines {
        top: calc(50% - 38px)
    }
      }

@media (min-width: 1024px) {

.c-banner-2 .c-banner-link .c-banner-inner_two-lines {
        top: calc(50% - 45px)
    }
      }

@media (min-width: 1280px) {

.c-banner-2 .c-banner-link .c-banner-inner_two-lines {
        top: calc(50% - 50px)
    }
      }

.c-banner-2 .c-banner-link .c-banner-arrow {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
    }

.c-banner-2 .c-banner-link.c-banner-sentence {
  display: flex;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(208 247 251 / var(--tw-bg-opacity));
  padding: 1.5rem;
  text-align: center;
  line-height: 2;
}

@media (min-width: 768px) {

.c-banner-2 .c-banner-link.c-banner-sentence {
    width: 100%;
  }
      }

@media (min-width: 1280px) {

.c-banner-2 .c-banner-link.c-banner-sentence {
        width: calc(50% - 1.5rem)
    }
      }

.c-banner-2 .c-banner-link.c-banner-sentence p span {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(95 206 216 / var(--tw-text-opacity));
}

.main-navigation .navbar-nav .c-banner-2 .c-banner-link.c-banner-sentence p span.menu-item-has-children {
      margin: 2rem 0 0;
    }

.c-page-header {
  position: relative;
  z-index: 10;
  width: 100%;
  --page-header-pad: 14%;
}

/* @media screen(md) {
    --page-header-pad: 3rem;
  }
  @media screen(lg) {
    --page-header-pad: 5rem;
  } */

/* &::before,
  &::after {
    content: '';
    background-color: #fff;
    position: absolute;
    width: 40%;
    height: var(--page-header-pad);
    z-index: -1;

    @media screen and (max-width: 767.5px){
      width: var(--page-header-pad);
    }
  } */

.c-page-header::before {
    left: 0;
    top: 0;
    width: 66%;
    height: 100%;
    background-size: contain;
  }

.c-page-header::after {
    bottom: 0;
    right: 0;
  }

@media screen and (max-width: 767.5px){

.c-page-header::after {
      width: var(--page-header-pad);
      height: 100%
  }
    }

@media (min-width: 768px) {

  .c-page-header-image-container {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
    width: 100%;
    max-width: 1920px;
    height: calc(100% - var(--page-header-pad));
  }
}

@media screen and (max-width: 767.5px){

.c-page-header-image-container {
    padding-left: var(--page-header-pad)
}
  }

@media (width > 1920px) {

.c-page-header-image-container {
    right: calc((100% - 1920px) / 2)
}
  }

.c-page-header-image-container-inner {
  height: calc(200px + 55 * (100vw - 360px)/114);
}

@media (min-width: 475px) {

.c-page-header-image-container-inner {
    height: calc(255px + 88 * (100vw - 475px)/164)
}
  }

@media (min-width: 640px) {

.c-page-header-image-container-inner {
    height: calc(343px + 69 * (100vw - 640px)/127)
}
  }

@media (min-width: 768px) {

.c-page-header-image-container-inner {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%
}
  }

.c-page-header-image-container-inner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

.c-page-header-hdg-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 475px) {

  .c-page-header-hdg-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 640px) {

  .c-page-header-hdg-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 768px) {

  .c-page-header-hdg-container {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {

  .c-page-header-hdg-container {
    padding-top: 13rem;
    padding-bottom: 9rem;
  }
}

.c-page-header-hdg {
}

.c-page-header-hdg-primary {
  display: block;
  font-family: interstate, sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 1024px) {

  .c-page-header-hdg-primary {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1536px) {

  .c-page-header-hdg-primary {
    font-size: 6rem;
    line-height: 1;
  }
}

.c-page-header-hdg-secondary {
  display: inline-block;
  background-color: #4e6269;
  color: white;
  margin-top: 0.5rem;
  padding: 0.25rem 1rem;
  font-weight: bold;
}

@media (min-width: 1536px) {

.c-page-header-hdg-secondary {
    font-size: 1.5rem
}
  }

.c-sub-nav-toggle {
  position: absolute;
  right: 0;
  /* top: 0.125rem; */
  top: 0;
  width: 1.125rem;
  height: 1.125rem;

  cursor: pointer;

  transition: var(--transition-duration);
}

.is-active .c-sub-nav-toggle {
    transform:rotate(45deg);
  }

@media (min-width: 1024px) {

.c-sub-nav-toggle {
    display: none
}
  }

.c-sub-nav-toggle__line {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  border-radius: 9999px;
  display: block;
  background-color: #fff;
}

.c-sub-nav-toggle__line::before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    border-radius: 9999px;
    display: block;
    background-color: #fff;

    /* rotate: 90deg; */
    transform:rotate(90deg);
  }

.c-link[target='_blank']::after {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 1rem;
      height: 1rem;
      background-size: contain;
      margin-left: 0.5rem;
      margin-right: 0.5rem;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23314348" class="bi bi-box-arrow-up-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z" /><path fill-rule="evenodd" d="M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z" /></svg>');
    }

.c-link.c-link--red[target='_blank']::after {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ef4444" class="bi bi-box-arrow-up-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z" /><path fill-rule="evenodd" d="M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z" /></svg>');
      }

.c-dl {
  --dl-width: 180px;
  --padding: 1rem;

  display: flex;
  flex-direction: column;
  width: 100%;

  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

.c-dl:not(:last-of-type) {
    border-bottom: 1px solid #e5e7eb;
  }

.c-dl dt {
    font-weight: bold;
  }

@media (min-width: 1024px) {

.c-dl {
    flex-direction: row;
    --padding: 1.5rem
}

    .c-dl dt {
      width: var(--dl-width);
    }

    .c-dl dd {
      width: calc(100% - var(--dl-width));
    }
  }

.c-choose-heading {
  padding-top: 2rem;
}

@media (min-width: 1024px) {

  .c-choose-heading {
    padding-top: 9.5rem;
  }
}

@media (min-width: 640px) {

.c-choose-heading {
    padding-top: 4rem
}
  }

@media (min-width: 768px) {

.c-choose-heading {
    padding-top: 6rem
}
  }

@media (min-width: 1280px) {

.c-choose-heading {
    padding-top: 8rem
}
  }

.c-choose-heading h2 {
  text-align: center;
  font-family: mitimasu, sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  line-height: 1.5;
}

@media (min-width: 768px) {

  .c-choose-heading h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 1536px) {

  .c-choose-heading h2 {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 640px) {

.c-choose-heading h2 {
      font-size: calc(100 / 375 * 14 * 1vw);
      line-height: 2
  }
    }

@media (min-width: 768px) {

.c-choose-heading h2 {
      font-size: 2.125rem
  }
    }

.c-choose-heading img {
    position: absolute;
    top: 7.5rem;
    left: 0;
    z-index: -1;
    padding: 0 10% 0 0;
  }

@media (min-width: 640px) {

.c-choose-heading img {
      top: 8%
  }
    }

@media (min-width: 768px) {

.c-choose-heading img {
      top: 10%;
      padding: 0 0 0 0
  }
    }

@media (min-width: 1024px) {
    }

@media (min-width: 1280px) {

.c-choose-heading img {
      top: 19%
  }
    }

.c-choose-heading-reason {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 768px) {

  .c-choose-heading-reason {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1536px) {

  .c-choose-heading-reason {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 640px) {

.c-choose-heading-reason {
    font-size: calc(100 / 375 * 22 * 1vw)
}
  }

@media (min-width: 768px) {

.c-choose-heading-reason {
    font-size: 3.375rem
}
  }

.c-choose-heading-reason span {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 768px) {

  .c-choose-heading-reason span {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1536px) {

  .c-choose-heading-reason span {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 640px) {

.c-choose-heading-reason span {
      font-size: calc(100 / 375 * 28 * 1vw)
  }
    }

@media (min-width: 768px) {

.c-choose-heading-reason span {
      font-size: 4rem
  }
    }

.c-choose {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
  row-gap: 2rem;
}

@media (min-width: 640px) {

  .c-choose {
    justify-content: center;
    row-gap: 5rem;
  }
}

.c-choose-item {
  position: relative;
  width: 100%;
  max-width: 35rem;
  --tw-bg-opacity: 1;
  background-color: rgb(78 98 105 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 640px) {

  .c-choose-item {
    justify-content: space-around;
  }
}

.c-choose-item:nth-child(even) {
  text-align: left;
}

.c-choose-item:nth-child(even)::before {
      content: '';
      position: absolute;
      background: #5fced8;
      top: 0.625rem;
      left: 0.625rem;
      width: 100%;
      height: 1px;
      z-index: 1;
    }

.c-choose-item:nth-child(even)::after {
      content: '';
      position: absolute;
      background: #5fced8;
      top: 0.625rem;
      left: 0.625rem;
      width: 1px;
      height: 100%;
      z-index: 1;
    }

.c-choose-item:nth-child(even) .c-choose-item-img {
      right: -1rem;
    }

@media (min-width: 475px) {

      }

@media (min-width: 640px) {

.c-choose-item:nth-child(even) .c-choose-item-img {
        right: -3.125rem
    }
      }

.c-choose-item:nth-child(even) .c-choose-item-img img {
        width: 100px;
        height: 200px;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: 0 100%;
           object-position: 0 100%;
      }

@media (min-width: 475px) {

.c-choose-item:nth-child(even) .c-choose-item-img img {
          width: auto;
          height: 240px
      }
        }

@media (min-width: 640px) {

.c-choose-item:nth-child(even) .c-choose-item-img img {
          width: auto;
          height: auto
      }
        }

.c-choose-item:nth-child(even) .c-choose-item-text {
  margin-left: 2.25rem;
}

.c-choose-item:nth-child(even) .c-choose-item-text::before {
        content: '';
        position: absolute;
        background: #5fced8;
        bottom: -0.625rem;
        right: -0.625rem;
        width: 100%;
        height: 1px;
        z-index: 1;
      }

.c-choose-item:nth-child(even) .c-choose-item-text::after {
        content: '';
        position: absolute;
        background: #5fced8;
        bottom: -0.625rem;
        right: -0.625rem;
        width: 1px;
        height: 100%;
        z-index: 1;
      }

.c-choose-item:nth-child(odd) {
  text-align: right;
}

.c-choose-item:nth-child(odd)::before {
      content: '';
      position: absolute;
      background: white;
      top: 0.625rem;
      left: 0.625rem;
      width: 100%;
      height: 1px;
      z-index: 1;
    }

.c-choose-item:nth-child(odd)::after {
      content: '';
      position: absolute;
      background: white;
      top: 0.625rem;
      left: 0.625rem;
      width: 1px;
      height: 100%;
      z-index: 1;
    }

.c-choose-item:nth-child(odd) .c-choose-item-img {
      left: -3.125rem;
    }

@media (min-width: 475px) {

.c-choose-item:nth-child(odd) .c-choose-item-img {
        left: -1rem
    }
      }

@media (min-width: 640px) {

.c-choose-item:nth-child(odd) .c-choose-item-img {
        left: -3.125rem
    }
      }

.c-choose-item:nth-child(odd) .c-choose-item-text {
      margin-right: 1rem;
    }

@media (min-width: 768px) {

.c-choose-item:nth-child(odd) .c-choose-item-text {
    margin-right: 2.25rem;
  }
      }

.c-choose-item:nth-child(odd) .c-choose-item-text::before {
        content: '';
        position: absolute;
        background: white;
        bottom: -0.625rem;
        right: -0.625rem;
        width: 100%;
        height: 1px;
        z-index: 1;
      }

.c-choose-item:nth-child(odd) .c-choose-item-text::after {
        content: '';
        position: absolute;
        background: white;
        bottom: -0.625rem;
        right: -0.625rem;
        width: 1px;
        height: 100%;
        z-index: 1;
      }

.c-choose-item:nth-child(4) .c-choose-item-img img {
        width: 140px;
      }

@media (min-width: 475px) {

.c-choose-item:nth-child(4) .c-choose-item-img img {
          width: auto
      }
        }

.c-choose-item-img {
  position: absolute;
  bottom: 0;
  z-index: 2;
}

@media (min-width: 475px) {

  }

.c-choose-item-img img {
    width: auto;
    height: 200px;
  }

@media (min-width: 475px) {

.c-choose-item-img img {
      height: 240px;
      width: auto
  }
    }

@media (min-width: 640px) {

.c-choose-item-img img {
      height: auto
  }
    }

.c-choose-item-text {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {

.c-choose-item-text {
    margin-top: 3.5rem;
    margin-bottom: 3rem;
  }
  }

.c-choose-item-caption {
  font-family: interstate, sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.c-choose-item-no {
  font-size: 3.75rem;
  line-height: 1;
  line-height: 2.25rem;
}

.c-choose-item-heading {
  margin-top: 1rem;
  font-family: mitimasu, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

@media (min-width: 640px) {

  .c-choose-item-heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 1024px) {

  .c-choose-item-heading {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1280px) {

  .c-choose-item-heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 640px) {

.c-choose-item-heading {
    margin-top: 1.5rem;
  }
  }

.c-choose-item-body {
  margin-top: 1rem;
  width: 100%;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 640px) {

  .c-choose-item-body {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {

  .c-choose-item-body {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1280px) {

  .c-choose-item-body {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.c-choose-item-body {
  line-height: 1.6875rem;
}

@media (min-width: 640px) {

.c-choose-item-body {
    margin-top: 2rem;
  }
  }

.c-choose-lead {
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {

  .c-choose-lead {
    padding-top: 6rem;
    padding-bottom: 11.25rem;
  }
}

@media (min-width: 640px) {

.c-choose-lead {
    padding-top: 3rem;
    padding-bottom: 4rem
}
  }

@media (min-width: 1024px) {

.c-choose-lead {
    padding-top: 6rem;
    padding-bottom: 10rem
}
  }

.c-choose-lead-text {
  
}

.c-choose-lead-text-01 {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 640px) {

  .c-choose-lead-text-01 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-size: calc(100 / 375 * 15.5 * 1vw);
  }
}

@media (min-width: 1024px) {

.c-choose-lead-text-01 {
    font-size: 3rem
}
  }

@media (min-width: 640px) {

.c-choose-lead-text-02 {
    font-size: calc(100 / 375 * 19.5 * 1vw)
}
  }

@media (min-width: 1024px) {

.c-choose-lead-text-02 {
    font-size: 4rem
}
  }

.c-triangle-right  {
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 48px solid #4e6269;
  border-bottom: 96px solid transparent;
}

.c-triangle-left  {
  border-top: 96px solid transparent;
  border-right: 48px solid #4e6269;
  border-left: 0px solid transparent;
  border-bottom: 0px solid transparent;
}

.c-corona-measures {
  border-width: 1px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {

  .c-corona-measures {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1280px) {

  .c-corona-measures {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {

.c-corona-measures {
    padding: 4rem 2rem
}
  }

@media (min-width: 1280px) {

.c-corona-measures {
    padding: 4rem
}
  }

.c-stepped {

}

@media screen and (max-width: 1023.5px){

.c-stepped-bg {
		position: relative
}
		.c-stepped-bg::before {
			content: '';
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			z-index: -1;
		}
	}

@media (min-width: 1024px) {

.c-stepped-bg {
        max-width: 1920px;
        height: 1635px;
        max-height: 1635px;
        background-size:  cover;
        margin: auto
}
    }

.c-stepped-unit {
	display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 5rem 0;
}

@media (min-width: 1024px) {

.c-stepped-unit {
        flex-wrap: nowrap;
        padding: 0rem
}
    }

.c-stepped-item {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    display: flex;
    background-color: white;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    max-width: 623px;
}

@media (min-width: 475px) {

.c-stepped-item {
        padding: 4rem 3rem

}
    }

@media (min-width: 1024px) {

.c-stepped-item {
        flex-wrap: wrap;
        flex-direction: inherit;
        width: calc(33% - 1rem);
        padding: 3rem 2rem

}
    }

@media (min-width: 1280px) {

.c-stepped-item {
        padding: 4rem 2.5rem

}
    }

@media (min-width: 1536px) {

.c-stepped-item {
        width: 33%;
        max-width: 405px

}
    }

.c-stepped-item-no {
	color: #5fced8;
    font-size: 3rem;
    font-weight: bold;
    line-height: 36px;
    font-family: 'interstate';
    text-align: center;
    width: 100%;
}

@media (min-width: 1024px) {

.c-stepped-item-no {
        font-size: 2rem
}
    }

@media (min-width: 1280px) {

.c-stepped-item-no {
        font-size: 3rem
}
    }

.c-stepped-item-title {
	font-size: 1.25rem;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 1024px) {

.c-stepped-item-title {
        font-size: 18px;
        margin-top: 0
}
    }

@media (min-width: 1280px) {

.c-stepped-item-title {
        font-size: 1.25rem;
        margin-top: 2rem
}
    }

.c-stepped-item-img {
	position: relative;
    margin-top: 3rem;
}

@media (min-width: 1024px) {

.c-stepped-item-img {
        margin-top: 0
}
    }

@media (min-width: 1280px) {

.c-stepped-item-img {
        margin-top: 2.5rem
}
    }

.c-stepped-item-text {
    line-height: 2;
    margin-top: 3rem;
}

@media (min-width: 1024px) {

.c-stepped-item-text {
        margin-top: 2rem
}
    }

@media (min-width: 1280px) {

.c-stepped-item-text {
        margin-top: 2.5rem
}
    }

.c-stepped-item-btn {
    font-size: 18px;
    font-weight: bold;
    margin-top: 3rem;
    align-self: center;
}

@media (min-width: 1024px) {

.c-stepped-item-btn {
        align-self: flex-end;
        margin-top: 1rem
}
    }

@media (min-width: 1280px) {

.c-stepped-item-btn {
        margin-top: 2.5rem
}
    }

.c-stepped-item-btn a {
        font-size: 18px;
        padding: 0.5rem 3.5rem 0.5rem 2rem;
    }

@media screen and (max-width: 1023.5px){

.about-stepped-bg-01 {
        margin: -5rem 0 0 0
}
        .about-stepped-bg-01::before {
            background-color: #5fced8;
            transform: skew(0deg, -15deg);
        }
    }

@media (min-width: 1024px) {

.about-stepped-bg-01 {
        background-image: url('../img/about/bg_about_01.webp');
		padding-top: 415px
}
    }

@media (min-width: 1280px) {

.about-stepped-bg-01 {
        padding-top: 375px
}
    }

@media (min-width: 1536px) {

.about-stepped-bg-01 {
        padding-top: 305px
}
    }

@media (min-width: 1024px) {

.about-stepped-bg-01 .c-stepped-unit .c-stepped-item:nth-child(1){
				margin: 160px 0 0
        }

.about-stepped-bg-01 .c-stepped-unit .c-stepped-item:nth-child(2){
				margin: 80px 0 0
        }
			}

@media screen and (max-width: 1023.5px){
        .about-stepped-bg-02::before {
            background-color: #4e6269;
            transform: skew(0deg, 15deg);
        }
    }

@media (min-width: 1024px) {

.about-stepped-bg-02 {
        background-image: url('../img/about/bg_about_02.webp');
		padding-top: 245px
}
    }

@media (min-width: 1280px) {

.about-stepped-bg-02 {
        padding-top: 225px
}
    }

@media (min-width: 1536px) {

.about-stepped-bg-02 {
        padding-top: 305px
}
    }

@media (min-width: 1024px) {

.about-stepped-bg-02 .c-stepped-unit .c-stepped-item:nth-child(2){
				margin: 80px 0 0
        }

.about-stepped-bg-02 .c-stepped-unit .c-stepped-item:nth-child(3){
				margin: 160px 0 0
        }
			}

/* ビフォーアフターへリンクするボタンを非表示にしている */

.about-stepped-bg-02 .c-stepped-item:nth-child(2) .c-stepped-item-text {
            margin-bottom: 83px;
        }

.about-stepped-bg-02 .c-stepped-item:nth-child(2) .c-stepped-item-btn {
            display: none;
        }

@media screen and (max-width: 1023.5px){

.flow-stepped-bg {
        margin: 0
}
        .flow-stepped-bg::before {
            background-color: #5fced8;
            transform: skew(0deg, -15deg);
            z-index: 0;
        }
    }

@media (min-width: 1024px) {

.flow-stepped-bg {
        background-image: url('../img/about/bg_flow_01.webp');
        height: calc(1400px + 40 * (100vw - 1024px)/255);
		padding-top: 325px;
		margin-top: -350px
}
    }

@media (min-width: 1280px) {

.flow-stepped-bg {
        height: calc(1470px + 22 * (100vw - 1280px)/256);
        padding-top: 330px;
		margin-top: -330px
}
    }

@media (min-width: 1536px) {

.flow-stepped-bg {
        padding-top: 280px;
		margin-top: -300px
}
    }

@media (min-width: 1024px) {

.flow-stepped-bg .c-stepped-unit .c-stepped-item:nth-child(1){
				margin: 160px 0 0
        }

.flow-stepped-bg .c-stepped-unit .c-stepped-item:nth-child(2){
				margin: 80px 0 0
        }
			}

.flow-stepped-bg .c-stepped-item:nth-child(1){
		padding: 4rem 0 0;
	}

.flow-stepped-bg .c-stepped-item:nth-child(1)>div {
			padding-left: 2rem;
			padding-right: 2rem;
		}

.flow-stepped-bg .c-stepped-item:nth-child(1) .c-stepped-item-time {
            right: -10px;
        }

@media (min-width: 1024px) {

.flow-stepped-bg .c-stepped-item:nth-child(1) .c-stepped-item-time {
                right: 14px
        }
            }

@media (min-width: 1280px) {

.flow-stepped-bg .c-stepped-item:nth-child(1) .c-stepped-item-time {
                right: -10px
        }
            }

.flow-stepped-bg .c-stepped-item:nth-child(1) .c-stepped-item-circle {
            right: -10px;
        }

@media (min-width: 1024px) {

.flow-stepped-bg .c-stepped-item:nth-child(1) .c-stepped-item-circle {
                right: 14px
        }
            }

@media (min-width: 1280px) {

.flow-stepped-bg .c-stepped-item:nth-child(1) .c-stepped-item-circle {
                right: -10px
        }
            }

.c-stepped-item-time {
	position: absolute;
	top: 40px;
	right: -50px;
	color: white;
	background-image: url('../img/about/icon_flow_step.webp');
	border-radius: 9999px;
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	font-family: mitimasu, sans-serif;
	padding: 2rem 0rem;
	text-align: center;
	z-index: 1;
}

@media (min-width: 1024px) {

.c-stepped-item-time {
        right: -26px
}
    }

@media (min-width: 1280px) {

.c-stepped-item-time {
        right: -50px
}
    }

.c-stepped-item-circle {
	position: absolute;
	bottom: 0;
	right: -50px;
	color: white;
	background-color: #5fced8;
	border-radius: 9999px;
	width: 128px;
	height: 128px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-family: mitimasu, sans-serif;
	padding: 40px 20px;
	text-align: center;
}

@media (min-width: 1024px) {

.c-stepped-item-circle {
        right: -26px
}
    }

@media (min-width: 1280px) {

.c-stepped-item-circle {
        right: -50px
}
    }

.c-stepped-item-btn-02 {
	padding: 2rem 2.5rem;
	margin: 3rem 0 0;
    background-color: #4e6269;
    width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
	align-self: flex-end;
}

@media screen and (max-width: 1023.5px){

.company-stepped-bg {
        padding: 4rem 0;
        margin: 0

}
        .company-stepped-bg::before {
            background-color: #5fced8;
            transform: skew(0deg, -15deg);
        }
    }

@media (min-width: 1024px) {

.company-stepped-bg {
        background-image: url('../img/company/bg_company_01.webp');
        height: 1780px;
		padding-top: 470px;
		margin-top: -350px;
        max-height: 1780px

}
    }

@media (min-width: 1280px) {

.company-stepped-bg {
		margin-top: -330px

}
    }

@media (min-width: 1536px) {

.company-stepped-bg {
        padding-top: 400px;
		margin-top: -250px

}
    }

.company-stepped-bg .c-stepped-unit {
        padding: 2rem 0;
    }

@media (min-width: 1024px) {

.company-stepped-bg .c-stepped-unit .c-stepped-item:nth-child(1){
				margin: 160px 0 0
        }

.company-stepped-bg .c-stepped-unit .c-stepped-item:nth-child(2){
				margin: 80px 0 0
        }

.company-stepped-bg .c-stepped-unit {
            padding: 0rem
    }
			}

.company-stepped-bg .c-stepped-item {
        width: 405px;
    }

.company-stepped-bg .c-stepped-item .c-stepped-item-img {
            margin: 3rem 0 0;
        }

.company-stepped-bg .c-stepped-item .c-stepped-item-text {
            margin: 3rem 0 0;
            text-align: center;
        }

.philosophy-policy-bg-02 {
    position: relative;
    padding: 4rem 0 0 0;
}

.philosophy-policy-bg-02::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        background-color: #5fced8;
        transform: skew(0deg, -15deg);
    }

@media screen and (max-width: 474.5px){

.philosophy-policy-bg-02 {
        margin-top: -2rem
}
    }

@media screen and (max-width: 1023.5px){
    }

@media (min-width: 1024px) {

.philosophy-policy-bg-02 {
        padding: 2rem 0 5rem 0
}
    }

@media (min-width: 1280px) {

.philosophy-policy-bg-02 {
        margin-bottom: 8rem
}
    }

@media (min-width: 1536px) {

.philosophy-policy-bg-02 {
        margin-bottom: 10rem
}
    }

@media screen and (max-width: 1023.5px){

.philosophy-policy-bg-02 .c-stepped-item {
            width: 100%
    }
        }

@media screen and (max-width: 767.5px){

.philosophy-policy-bg-02 .c-stepped-unit {
            padding: 3rem 0 5rem
    }
        }

@media (min-width: 1024px) {

.philosophy-policy-bg-02 .c-stepped-unit .c-stepped-item:nth-child(1){
				margin: 160px 0 0
        }

.philosophy-policy-bg-02 .c-stepped-unit .c-stepped-item:nth-child(2){
				margin: 80px 0 0
        }
			}

@media screen and (max-width: 1023.5px){

.recruit-point-bg {
        margin: 0
}
        .recruit-point-bg::before {
            background-image: url('../img/common/bg_camouflage_01.webp');
            transform: skew(0deg, -15deg);
        }
    }

@media (min-width: 1024px) {

.recruit-point-bg {
        background-image: url('../img/recruit/bg_recruit_01.webp');
        padding-top: 300px;
        margin-top: -300px;
        max-height: 1369px
}
    }

@media (min-width: 1280px) {
    }

@media (min-width: 1536px) {
    }

@media screen and (max-width: 1023.5px){

.recruit-point-bg .c-stepped-item {
            max-width: 512px

    }
        }

.recruit-point-bg .c-stepped-item-title {
        line-height: 30px;
    }

.recruit-point-bg .c-stepped-item-text {
        line-height: 30px;
    }

@media (min-width: 1024px) {

.recruit-point-bg .c-stepped-unit .c-stepped-item:nth-child(1){
				margin: 160px 0 0
        }

.recruit-point-bg .c-stepped-unit .c-stepped-item:nth-child(2){
				margin: 80px 0 0
        }
			}

.c-border-bottom {
  border-bottom: solid 1px #a6bdc2;
}

.c-contact-entry-unit {
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.9;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    height: 580px;
}

@media (min-width: 768px) {

.c-contact-entry-unit {
        flex-direction: inherit;
        justify-content: center;
        height: auto
}
    }

.c-contact-entry-item-01 {
    text-align: center;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {

.c-contact-entry-item-01 {
        display: block;
        width: 50%;
        text-align: right
}
    }

.c-contact-entry-item-01 a {
        order: 2;
    }

.c-contact-entry-item-01 div {
        order: 1;
    }

.c-contact-entry-item-02 {
    position: relative;
    height: 0;
    width: 100%;
}

@media (min-width: 768px) {

.c-contact-entry-item-02 {
        width: 50%
}
    }

.c-contact-entry-balloon {
    position: absolute;
    background-color: #4e6269;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 50%;
    filter: drop-shadow(3px 4px 0 #ffff00);
    z-index: 1;
    font-size: 20px;
    width: 200px;
    height: 120px;
    top: 30px;
    left: calc(140px + 50 * (100vw - 375px)/99);
}

@media (min-width: 475px) {
    }

@media (min-width: 640px) {

.c-contact-entry-balloon {
        font-size: 24px;
        width: 240px;
        height: 130px
}
        
    }

@media (min-width: 768px) {

.c-contact-entry-balloon {
        top: -100px;
        left: 35%
}
    }

@media (min-width: 1024px) {

.c-contact-entry-balloon {
        left: 52%
}
    }

@media (min-width: 1280px) {

.c-contact-entry-balloon {
        left: 50%
}
    }

@media (min-width: 1536px) {
    }

.c-contact-entry-balloon::after {
        content: '';
        position: absolute;
        right: 40px;
        bottom: -25px;
        border-width: 2vw;
        border-top-width: 8vw;
        border-color: transparent;
        border-top-color: #4e6269;
        rotate: 20deg;
        translate: -4vw;

    }

@media (min-width: 475px) {

.c-contact-entry-balloon::after {
            border-width: 10px;
            border-top-width: 40px;
            translate: 0

    }
        }

@media (min-width: 640px) {

.c-contact-entry-balloon::after {
            right: 190px

    }
        }

@media (min-width: 768px) {

.c-contact-entry-balloon::after {
            right: 70px;
            rotate: 20deg;
            bottom: -35px

    }
        }

@media (min-width: 1024px) {

.c-contact-entry-balloon::after {
            right: 200px;
            rotate: 50deg;
            bottom: -15px

    }
        }

.c-contact-entry-img {
    position: absolute;
    top: 10rem;
    left: calc(50% - 141px);
    z-index: 0;
}

@media (min-width: 768px) {

.c-contact-entry-img {
        top: 2rem
}
    }

@media (min-width: 1024px) {

.c-contact-entry-img {
        top: -5rem;
        left: 3.5rem
}
    }

@media (min-width: 1280px) {
    }

@media (min-width: 1536px) {
    }

.c-free-trial-wrap {
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.9;
        position: relative;
}

@media (min-width: 768px) {
        }

.c-free-trial-item {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 3rem 3rem 13rem 3rem;
    }

@media (min-width: 768px) {

.c-free-trial-item {
            padding: 3rem;
            display: inline-block;
            margin: 0 0 0 36%
    }
        }

.c-free-trial-title {
        text-align: center;
    }

@media (min-width: 768px) {

.c-free-trial-title {
            text-align: left
    }
        }

.c-free-trial-img {
        position: absolute;
        bottom: -4rem;
        left: calc(50% - 100px);
        width: 200px;
    }

@media (min-width: 768px) {

.c-free-trial-img {
            left: calc(25% - 155px);
            width: auto
    }
        }

@media (min-width: 1024px) {
        }

@media (min-width: 1280px) {
        }

@media (min-width: 1536px) {
        }

.c-step-row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));

  padding: 4rem 2rem;
}

@media (min-width: 768px) {

.c-step-row {
    padding: 4rem
}
  }

@media (min-width: 1024px) {

.c-step-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 2rem;
  }

@media (min-width: 768px) {

    .c-step-row {
      padding: 4rem;
    }
  }

.c-step-row {
    flex-direction: inherit
}
  }

.c-step-row:not(:first-of-type){
    margin: 2rem 0 0 0;
  }

@media (min-width: 768px) {

.c-step-row:not(:first-of-type){
        margin: 3rem 0 0 0
  }
      }

.c-step-row-heading {
  text-align: center;
}

@media (min-width: 1024px) {

  .c-step-row-heading {
    text-align: left;
  }
}

.c-step-row-icon {
  width: 176px;
  height: 176px;
}

@media (min-width: 1024px) {

.c-step-row-text {
    padding: 23px 0 23px 4rem;
    border-left: solid 1px #a6bdc2;
    max-width: 685px
}
  }

@media screen and (max-width: 639.5px){

.c-pc-only-sm {
        display: none
}
    }

@media (min-width: 475px) {

.c-sp-only-xs {
        display: none
}
    }

@media (min-width: 640px) {

.c-sp-only-sm {
        display: none
}
    }

@media screen and (max-width: 767.5px){

.c-pc-only-md {
        display: none
}
    }

@media (min-width: 768px) {

.c-sp-only-md {
        display: none
}
    }

@media screen and (max-width: 1023.5px){

.c-pc-only-lg {
        display: none
}
    }

@media (min-width: 1024px) {

.c-sp-only-lg {
        display: none
}
    }

.c-bg-title {
  font-family: interstate;
  font-style: italic;
  font-weight: bold;
  color: rgba(255,255,255, 0.3);
  -webkit-text-stroke: 0.5px #5fced8;
  text-stroke: 0.5px #5fced8;
}

@media (min-width: 475px) {

.c-bg-title {
    -webkit-text-stroke: 1px #5fced8;
    text-stroke: 1px #5fced8
}
  }

.front-choose-bg {
  position: relative;
  z-index: -1;
  font-size: 40px;
  margin: -24px 0 16px -7px;
}

@media (min-width: 475px) {

.front-choose-bg {
    font-size: 50px
}
  }

@media (min-width: 640px) {

.front-choose-bg {
    font-size: 70px;
    margin: -40px 0 24px -12px
}
  }

@media (min-width: 768px) {

.front-choose-bg {
    font-size: 90px
}
  }

@media (min-width: 1024px) {

.front-choose-bg {
    font-size: 110px;
    margin: -60px 0 20px -20px
}
  }

@media (min-width: 1280px) {

.front-choose-bg {
    font-size: 150px;
    margin: -80px 0 20px -30px
}
  }

@media (min-width: 1536px) {

.front-choose-bg {
    font-size: 180px;
    margin: -90px 0 20px -30px
}
  }

.franchise-bg .c-bg-title {
    text-align: right;
    font-size: 55px;
  }

@media (min-width: 475px) {

.franchise-bg .c-bg-title {
      font-size: 60px
  }
    }

@media (min-width: 640px) {

.franchise-bg .c-bg-title {
      font-size: 80px
  }
    }

@media (min-width: 768px) {

.franchise-bg .c-bg-title {
      font-size: 100px
  }
    }

@media (min-width: 1024px) {

.franchise-bg .c-bg-title {
      font-size: 110px;
      margin: -60px 0 0 0
  }
    }

@media (min-width: 1280px) {

.franchise-bg .c-bg-title {
      font-size: 150px;
      margin: -185px 0 0 0
  }
    }

@media (min-width: 1536px) {

.franchise-bg .c-bg-title {
      font-size: 170px;
      margin: -190px 0 0 0
  }
    }

.bg-interview-01 .c-bg-title {
    text-align: right;
    font-size: 55px;
  }

@media (min-width: 475px) {

.bg-interview-01 .c-bg-title {
      font-size: 60px
  }
    }

@media (min-width: 640px) {

.bg-interview-01 .c-bg-title {
      font-size: 80px
  }
    }

@media (min-width: 768px) {

.bg-interview-01 .c-bg-title {
      font-size: 100px
  }
    }

@media (min-width: 1024px) {

.bg-interview-01 .c-bg-title {
      font-size: 110px;
      margin: -170px 0 0 0
  }
    }

@media (min-width: 1280px) {

.bg-interview-01 .c-bg-title {
      font-size: 150px;
      margin: -185px 0 0 0
  }
    }

@media (min-width: 1536px) {

.bg-interview-01 .c-bg-title {
      font-size: 170px;
      margin: -190px 0 0 0
  }
    }

@media (width > 1920px) {

.bg-interview-01 .c-bg-title {
      font-size: 200px;
      margin: -205px 0 0 0
  }
    }

.nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  /* justify-content: center; */
  overflow: hidden;

  max-width: 768px;
  margin-left: auto;
  margin-right: auto;

  font-size: 1rem;

  /* text-align: center; */
}

.nav-previous,
.nav-next {
  width: calc(50% - 0.25rem);
}

/* @media screen(sm) {
    width: calc(50% - 0.5rem);
  } */

.nav-previous a, .nav-next a {
    display: block;
    /* padding: 1rem 0.5rem; */
    padding: 1rem;
    background-color: #4e6269;
    color: white;
    border: 1px solid #e5e7eb;
    /* border-radius: 0.25rem; */
    border-radius: 9999px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

.nav-previous a:hover, .nav-next a:hover {
      text-decoration: underline;
    }

.nav-previous a::after, .nav-next a::after {
      content: '';
      position: absolute;
      top: 50%;
      translate: 0 -50%;
      /* width: 0.825rem; */
      /* height: 0.825rem; */
      width: 1.5rem;
      height: 1.5rem;
    }

.nav-previous {
  position: relative;
  margin-right: auto;
  text-align: center;
}

.nav-previous a {
    padding-left: 3rem;
    position: relative;
  }

.nav-previous a::after {
      left: 0.5rem;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffff00" viewBox="0 0 16 16" aria-label="arrow-left" role="img"><path d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z" /></svg>');
      background-size: contain;
      background-repeat: no-repeat;
    }

.nav-next {
  position: relative;
  margin-left: auto;
  text-align: center;
}

.nav-next a {
    padding-right: 3rem;
  }

.nav-next a::after {
      right: 0.5rem;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffff00" viewBox="0 0 16 16" aria-label="arrow-right" role="img"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z" /></svg>');
      background-size: contain;
      background-repeat: no-repeat;
    }

.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  line-height: 1;
}

.wp-pagenavi a,
  .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 0.125rem;
    padding: 0.5rem 1rem;
    margin: 2px;
  }

.wp-pagenavi a.current, .wp-pagenavi span.current {
      background-color: #4e6269;
      color: white;
    }

.wp-pagenavi a:hover {
      background-color: #4e6269;
      color: white;
    }

.widget-area {
  margin-bottom: 3rem;
}

.widget-title {
  font-weight: bold;
  background-color: #4e6269;
  color: white;
  padding: 0.5rem;
}

.widget + .widget {
    margin-top: 1.5rem;
  }

.widget ul {
    font-size: 0.9rem;
  }

.widget ul > li {
      border-bottom: 1px solid #e5e7eb;
    }

.widget ul > li + li {
        margin-top: 0.25rem;
      }

.widget ul > li a {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
        padding-left: 0.5rem;
        display: inline-flex;
      }

.widget ul > li a:hover {
          text-decoration: underline;
        }

.widget_recent_entries ul > li a {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

.cat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cat-links > a:hover {
      /* opacity: 0.9; */
      color: #5fced8;
    }

.cat-links > a::before {
      display: inline-block;
      width: 14px;
      height: 14px;
      vertical-align: -0.125em;
      margin-right: 0.25rem;
      content: '';
      background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='currentColor' xmlns='http://www.w3.org/2000/svg'><path d='M1 3.5A1.5 1.5 0 0 1 2.5 2h2.764c.958 0 1.76.56 2.311 1.184C7.985 3.648 8.48 4 9 4h4.5A1.5 1.5 0 0 1 15 5.5v7a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 12.5v-9zM2.5 3a.5.5 0 0 0-.5.5V6h12v-.5a.5.5 0 0 0-.5-.5H9c-.964 0-1.71-.629-2.174-1.154C6.374 3.334 5.82 3 5.264 3H2.5zM14 7H2v5.5a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5V7z' /></svg>");
      background-repeat: no-repeat;
      background-size: contain;
    }

.tags-links {
  position: relative;
}

.tags-links > a:hover {
      /* opacity: 0.9; */
      color: #5fced8;
    }

.tags-links > a::before {
      content: '';
      display: inline-block;
      width: 14px;
      height: 14px;
      /* vertical-align: -0.125em; */
      vertical-align: middle;
      margin-right: 0.125rem;
      background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='currentColor' xmlns='http://www.w3.org/2000/svg'><path d='M6 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm-1 0a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0z' /><path d='M2 1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 1 6.586V2a1 1 0 0 1 1-1zm0 5.586 7 7L13.586 9l-7-7H2v4.586z' /></svg>");
      background-repeat: no-repeat;
      background-size: contain;
    }

.entry-content {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.woocommerce):not(
      [class*='max-w']
    ) {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

.entry-content > * + *:not(hr):not([class*='mt']) {
      margin-top: 1.5rem;
    }

@media (min-width: 1024px) {

.entry-content > * + *:not(hr):not([class*='mt']) {
        margin-top: 2rem
    }
      }

.entry-content > * + h2:not([class*='mt']) {
      margin-top: 3rem;
    }

.entry-content figure.wp-caption a:focus img {
    outline-offset: 2px;
  }

.entry-content ul,
  .entry-content ol {
    margin: 0;
    /* padding-left: calc(2 * var(--global--spacing-horizontal)); */
    padding-left: 1.5rem;
  }

.entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6 {
    position: relative;
    clear: both;
    font-weight: bold;
  }

.entry-content h2,
  .entry-content h1 {
    margin-bottom: 1rem;
    font-size: 24px;
  }

.entry-content h2 + *, .entry-content h1 + * {
      margin-top: 1rem;
    }

.entry-content h3:not([class*='c-title']) {
    font-size: 1.25em;
  }

.entry-content h4:not([class*='c-title']) {
    font-size: 1.125em;
  }

.entry-content .c-title {
    margin-bottom: 2.5rem;
  }

/* .c-title-02 {
    margin-bottom: 2rem;
  } */

.entry-content h3 + *, .entry-content h4 + *, .entry-content h5 + *, .entry-content h6 + * {
      margin-top: 1rem;
    }

.entry-content a {
    text-decoration-line: underline;
  }

.single-post .entry-content h1:not([class*='c-title']),
    .single-post .entry-content h2:not([class*='c-title']),
    .single-results .entry-content h1:not([class*='c-title']),
    .single-results .entry-content h2:not([class*='c-title']),
    .single-news .entry-content h1:not([class*='c-title']),
    .single-news .entry-content h2:not([class*='c-title']) {
      /* padding-bottom: 0.5rem; */
      padding: 0.5rem;
      padding-left: 1rem;
      background-color: #5fced8;
      color: white;

      /* &::before,
      &::after {
        content: '';
        position: absolute;
        bottom: 0;
        background-color: theme(colors.primary);
        height: 4px;
      }
      &::before {
        left: 0;
        background-color: theme(colors.primary);
        width: 3em;
      }
      &::after {
        background-color: theme(colors.gray.200);
        width: calc(100% - 3em);
        left: 3em;
      } */
    }

.single-post .entry-content h3:not([class*='c-title']), .single-results .entry-content h3:not([class*='c-title']), .single-news .entry-content h3:not([class*='c-title']) {
      position: relative;
      padding: 0.5rem;
      padding-left: 1.25rem;
      /* border-left: 4px solid theme(colors.primary); */
      border-bottom: 4px solid #5fced8;
    }

.single-post .entry-content h3:not([class*='c-title'])::before, .single-results .entry-content h3:not([class*='c-title'])::before, .single-news .entry-content h3:not([class*='c-title'])::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.95em;
        width: 0.625rem;
        height: 0.625rem;
        border-radius: 9999px;
        background-color: #5fced8;
      }

.single-post .entry-content h4:not([class*='c-title']),
    .single-post .entry-content h5:not([class*='c-title']),
    .single-post .entry-content h6:not([class*='c-title']),
    .single-results .entry-content h4:not([class*='c-title']),
    .single-results .entry-content h5:not([class*='c-title']),
    .single-results .entry-content h6:not([class*='c-title']),
    .single-news .entry-content h4:not([class*='c-title']),
    .single-news .entry-content h5:not([class*='c-title']),
    .single-news .entry-content h6:not([class*='c-title']) {
      padding: 0.5rem;
      padding-top: 0;
      padding-left: 1.5em;
      /* border-left: 4px solid theme(colors.primary); */
    }

.single-post .entry-content h4:not([class*='c-title'])::before, .single-post .entry-content h5:not([class*='c-title'])::before, .single-post .entry-content h6:not([class*='c-title'])::before, .single-results .entry-content h4:not([class*='c-title'])::before, .single-results .entry-content h5:not([class*='c-title'])::before, .single-results .entry-content h6:not([class*='c-title'])::before, .single-news .entry-content h4:not([class*='c-title'])::before, .single-news .entry-content h5:not([class*='c-title'])::before, .single-news .entry-content h6:not([class*='c-title'])::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12px;

        background-color: #5fced8;
        width: 0.75em;
        height: 4px;
      }

.entry-content p {
    word-break: break-word;
    line-height: 2;
  }

.entry-content p + p:not([class*='mt']) {
      margin-top: 1.5rem;
    }

.entry-content ul {
    list-style-type: disc;
  }

.entry-content ul ul {
      list-style-type: circle;
    }

.entry-content ol {
    list-style-type: decimal;
  }

.entry-content ol ul {
      list-style-type: circle;
    }

.entry-content dt {
    font-weight: bold;
  }

.entry-content dt:not(:first-child) {
      margin-top: 1rem;
    }

.entry-content dd {
    margin: 0;
    /* padding-left: calc(2 * var(--global--spacing-horizontal)); */
  }

.entry-content table:not(.c-table),
  .entry-content .wp-block-table {
    width: 100%;
    min-width: 240px;
    border-collapse: collapse;
  }

.entry-content table:not(.c-table) thead,
  .entry-content table:not(.c-table) tfoot,
  .entry-content .wp-block-table thead,
  .entry-content .wp-block-table tfoot {
    text-align: center;
  }

.entry-content table:not(.c-table) td,
  .entry-content table:not(.c-table) th,
  .entry-content .wp-block-table td,
  .entry-content .wp-block-table th {
    padding: calc(0.5 * var(--global--spacing-unit));
    border: 1px solid #f3f4f6;
  }

.entry-content table:not(.c-table) figcaption,
  .entry-content .wp-block-table figcaption {
    /* color: var(--global--color-primary); */
    font-size: var(--global--font-size-xs);
  }

.entry-content a {
    cursor: pointer;
    text-underline-offset: 3px;
    -webkit-text-decoration-skip-ink: all;
            text-decoration-skip-ink: all;
  }

.entry-content a:hover {
    text-decoration-style: dotted;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }

.entry-content .aligncenter {
    clear: both;
    display: block;
    float: none;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

.entry-content .alignleft {
    float: left;
    margin-right: var(--global--spacing-horizontal);
    margin-bottom: var(--global--spacing-vertical);
    text-align: left;
    margin-top: 0;
  }

.entry-content .btn a {
    text-decoration: none;
  }

@media only screen and (min-width: 482px) {
    .entry-content > .wp-block-image > .alignleft,
    .entry-content > .wp-block-image > .alignright {
      max-width: 50%;
    }
  }

@media only screen and (max-width: 481px) {
    .entry-content > .wp-block-image > .alignleft,
    .entry-content > .wp-block-image > .alignright {
      margin-left: 0;
      margin-right: 0;
    }
  }

.entry-content > .alignleft {
    max-width: var(--responsive--aligndefault-width);
  }

@media only screen and (min-width: 482px) {
    .entry-content .alignleft {
      /*rtl:ignore*/
      float: left;

      /*rtl:ignore*/
      margin-right: var(--global--spacing-horizontal);
      margin-bottom: var(--global--spacing-vertical);
    }

    .entry-content .entry-content > .alignleft {
      max-width: calc(50% - var(--responsive--alignleft-margin));
    }
  }

/**
 * .aligncenter
 */

.entry-content .aligncenter {
    clear: both;
    display: block;
    float: none;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

/**
 * .alignright
 */

.entry-content .alignright {
    margin-top: 0;
    margin-bottom: var(--global--spacing-vertical);
  }

.entry-content > .alignright {
    max-width: var(--responsive--aligndefault-width);
  }

@media only screen and (min-width: 482px) {
    .entry-content .alignright {
      /*rtl:ignore*/
      float: right;

      /*rtl:ignore*/
      margin-left: var(--global--spacing-horizontal);
    }

    .entry-content > .alignright {
      max-width: calc(50% - var(--responsive--alignright-margin));
    }
  }

.entry-content [class*='inner-container'] > .alignleft + *,
  .entry-content [class*='inner-container'] > .alignright + * {
    margin-top: 0;
  }

.entry-content pre {
    overflow: auto;
  }

/**
 * .alignwide
 */

.entry-content .alignwide {
    clear: both;
  }

/**
 * .alignfull
 */

.entry-content .alignfull {
    clear: both;
  }

.entry-content blockquote {
    position: relative;
    padding: 1rem;
    background-color: #f3f4f6;
  }

.entry-content blockquote::before {
      position: absolute;
      content: '\201C';
      font-size: 4em;
      left: -0.5rem;
      top: -1.8rem;
      color: #5fced8;
    }

.entry-header {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {

.entry-header {
    padding-left: 3rem;
    padding-bottom: 2rem
}
  }

.entry-header h1 {
    font-size: clamp(1.5rem, 1.5rem + ((1vw - 0.48rem) * 1.742), 2rem);
    font-weight: bold;
  }

.entry-header::before,
  .entry-header::after {
    content: '';
    position: absolute;
    left: 0;
  }

.entry-header::before {
    bottom: 0;
    /* max-width: 16rem; */
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: translateX(-0.5rem);
  }

.entry-header::after {
    width: 1px;
    height: 100%;
    top: 0;
  }

@media (min-width: 1024px) {

.entry-header::after {
      height: 100%;
  }
    }

.entry-header::after {
    background-color: currentColor;
    transform: translateY(0.5rem);
}

.entry-content + .entry-footer {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

.entry-footer {

  font-size: 0.9em;
}

.post-navigation {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.wsp-container {
  position: relative;
}

.wsp-container a {
    text-decoration: underline;
  }

@media (min-width: 768px) {
      .wsp-container a:hover {
        color: #5fced8;
      }
    }

.wsp-container li::marker {
      color: #5fced8;
    }

.wsp-pages-list,
.wsp-lists-list {
  -webkit-margin-start: 1.5rem;
          margin-inline-start: 1.5rem;
  list-style-type: disc;
}

.wsp-pages-list li, .wsp-lists-list li {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

.wsp-pages-list > li, .wsp-lists-list > li {
    position: relative;
  }

.wsp-pages-list > li > .children, .wsp-lists-list > li > .children {
      list-style-type: circle;
    }

.wsp-pages-list > li > .children > li > .children, .wsp-lists-list > li > .children > li > .children {
        list-style-type: square;
        font-size: 0.9em;
      }

.wsp-pages-list .children, .wsp-lists-list .children {
    -webkit-margin-start: 1rem;
            margin-inline-start: 1rem;
  }

.wsp-pages-list .children > li, .wsp-lists-list .children > li {
      position: relative;
    }

.page_item {
  position: relative;
}

.children {
  position: relative;
}

.wsp-lists-list {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.entry-meta {
  font-size: 14px;
}

.entry-meta .post-categories {
    display: flex;
    gap: 0.5rem;
  }

.entry-meta .post-categories a {
      display: inline-block;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      background-color: #5fced8;
      color: white;
      font-weight: bold;
      /* border: 1px solid theme(colors.primary-lighten); */
      /* border-radius: 0.25rem; */
    }

.entry-meta-author a {
    display: inline-block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-color: #4e6269;
    /* border-radius: 0.25rem; */
    color: white;
  }

#ez-toc-container {
  /* margin-top: 1.5rem; */
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;

  max-width: 768px;
  margin-left: auto;
  margin-right: auto;

  border: 2px solid #4e6269;
}

.ez-toc-title-container {
  background-color: #4e6269;
  color: white;

  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
}

.ez-toc-list {
  background-color: #fff;
  padding: 1rem;
}

@media (min-width: 768px) {

.ez-toc-list {
    padding: 2rem;
    padding-left: 3rem !important;
    padding-bottom: 1.5rem
}
  }

.ez-toc-list > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

.ez-toc-list ul {
    padding-left: 0;
  }

.ez-toc-list ul > :not([hidden]) ~ :not([hidden]) {
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

.ez-toc-list ul {

    counter-reset: hl_count;
    list-style: none !important;
}

/* &:not(:last-child) {
      border-bottom: 1px solid theme(colors.gray.200);
    } */

.ez-toc-list ul li::before {
        color: #9ca3af;
      }

.ez-toc-list li {
    list-style: none !important;
    counter-increment: hl_count;

    /* &::marker {
      color: theme(colors.primary-lighten);
    } */
  }

/* border-bottom: 1px solid theme(colors.gray.200); */

/* &:not(:last-child) {
      border-bottom: 1px solid theme(colors.gray.200);
    } */

.ez-toc-list li::before {
      content: counters(hl_count, '-') '.';
      color: #5fced8;
      margin-right: 0.5rem;

      font-weight: bold;
    }

.ez-toc-list li > :not([hidden]) ~ :not([hidden]) {
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

.site-main {
  padding-top: 1.5rem;
}

.home .site-main {
    padding-top: 0;
  }

.l-container .site-main {
    /* padding-top: calc(3.5rem - var(--wp--preset--spacing--50)); */
  }

.post-thumbnail {
  /* align-items: center; */
}

.post-thumbnail:not(:first-child) {
    margin-top: 1.5rem;
  }

.post-thumbnail {

  margin-bottom: 1.5rem;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.search-form input {
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: #fff;
  }

.search-form [type='submit'] {
    cursor: pointer;
    background-color: #5fced8;
    color: white;
  }

.pagination {
  position: relative;
}

.pagination .nav-links {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0.5rem;

    font-size: 13px;
  }

.page-numbers {
  border: 1px solid #f3f4f6;
  padding: 0.375rem;
  min-width: 1.75rem;
  min-height: 1.75rem;
  line-height: 1;
  text-align: center;
}

@media (min-width: 768px) {

.page-numbers {
    padding: 0.5rem;
    min-width: 2rem;
    min-height: 2rem
}
      .page-numbers:not(span):hover {
        text-decoration: underline;
      }
  }

.page-numbers.current {
    position: relative;

    background-color: #f3f4f6;
  }

.page-numbers.dots {
    position: relative;
  }

.page-numbers.prev,
  .page-numbers.next {
    max-width: -moz-max-content;
    max-width: max-content;
    position: relative;
  }

.page-numbers.prev {
    position: relative;
  }

.page-numbers.next {
    position: relative;
  }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
    opacity: 0.7; }

.hamburger.is-active:hover {
    opacity: 0.7; }

.hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }

.hamburger-inner::before {
    top: -10px; }

.hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */

.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }

.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */

.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }

.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */

.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }

.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */

.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }

.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY
   */

.hamburger--3dxy .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }

.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */

.hamburger--3dxy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }

.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */

.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */

.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */

.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */

.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Turn
   */

.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }

.hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Turn Right
   */

.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }

.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }

.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }

.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }

.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */

.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }

.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }

.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }

.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }

.hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }

.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }

.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */

.hamburger--emphatic {
  overflow: hidden; }

.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }

.hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }

.hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }

.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }

.hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

.hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */

.hamburger--emphatic-r {
  overflow: hidden; }

.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }

.hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }

.hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }

.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }

.hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

.hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */

.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */

.hamburger--slider .hamburger-inner {
  top: 2px; }

.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }

.hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }

.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */

.hamburger--slider-r .hamburger-inner {
  top: 2px; }

.hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }

.hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }

.hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }

.hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }

.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }

.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */

.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }

.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }

.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */

.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }

.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }

.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */

.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }

.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }

.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */

.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }

.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }

.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */

.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }

.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }

.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }

.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }

.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */

.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }

.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }

.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }

.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }

.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

:root {
  /* --hamburger-top: 28px; */
  --hamburger-top: 8px;
}

@media (min-width: 768px) {

:root {
    /* --hamburger-top: 32px; */
    --hamburger-top: 16px
}
  }

/* .admin-bar .hamburger {
  top: calc(var(--hamburger-top) + 28px);

  @media screen(md) {
    top: calc(var(--hamburger-top) + 60px);
  }
} */

.hamburger {
  z-index: 10000;
  top: var(--hamburger-top);
  right: 8px;
  outline: none;
  padding: 0;
}

@media (min-width: 768px) {

.hamburger {
    right: 16px
}
  }

.hamburger {

  background-color: #fff;
  border-radius: 9999px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0, 0.1));
  display: flex;
  padding: 1rem;
}

@media (min-width: 1024px) {

.hamburger {
    display: none
}
  }

.hamburger.is-active ~ .main-navigation {
        transform: none;
        visibility: visible;
        opacity: 1;
        border-bottom-left-radius: 0;
      }

.hamburger.is-active:hover {
      opacity: 1;
    }

/* background-color: #fff; */

.hamburger.is-active .hamburger-inner::before,
      .hamburger.is-active .hamburger-inner::after {
        /* background-color: #fff; */
        background-color: #5fced8;
      }

.hamburger:hover {
    opacity: 1;
  }

@media (min-width: 1024px) {

.hamburger:hover {
      opacity: 0.7
  }
    }

.hamburger-box,
.hamburger-inner {
  pointer-events: none;
}

.hamburger-box {
  width: 24px;
}

.hamburger-inner {
  width: 100%;
  /* box-shadow: 0 0 0 1px white; */
  background-color: #5fced8;
}

/* background-color: #fff; */

/* filter: drop-shadow(1px 1px 1px rgba(#000, 0.5)); */

.hamburger-inner::before,
  .hamburger-inner::after {
    width: 100%;

    background-color: inherit;
  }

.hamburger-inner::before {
    top: -9px;
  }

.hamburger-inner::after {
    bottom: -9px;
  }

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  height: 3px;
}

/* .is-active {
  & .hamburger-inner {
    box-shadow: none;
  }
} */

.swiper {
  --swiper-theme-color: #5fced8;
  --swiper-navigation-size: 60px;
}

.swiper.swiper-front {
    --slideItemMaxWidth: 72rem;
    --slideGap: 10px;
  }

.swiper.swiper-front .swiper-slide:not(.swiper-slide-active) {
      pointer-events: none;
      /* opacity: 0.7; */
      filter: brightness(0.7);
      transition: filter var(--transition-duration);
    }

@media (min-width: 1280px) {

.swiper.swiper-front .swiper-button-next {
        right: calc((100% - var(--slideItemMaxWidth)) / 2 - ((var(--slideGap) + var(--swiper-navigation-size)) / 2))
    }
      }

.swiper.swiper-front .swiper-button-prev::after {
        margin-left: -5px;
      }

@media (min-width: 1280px) {

.swiper.swiper-front .swiper-button-prev {
        left: calc((100% - var(--slideItemMaxWidth)) / 2 - ((var(--slideGap) + var(--swiper-navigation-size)) / 2))
    }
      }

.swiper-front .swiper-button-next,
  #front-steps .swiper-button-next,
  .swiper-front .swiper-button-prev,
  #front-steps .swiper-button-prev {
    width: var(--swiper-navigation-size);
    border-radius: 9999px;
    background-color: #fff;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

.swiper-front .swiper-button-next::after, #front-steps .swiper-button-next::after, .swiper-front .swiper-button-prev::after, #front-steps .swiper-button-prev::after {
      font-size: 18px;
    }

.swiper-front .swiper-button-next, .swiper-front .swiper-button-prev {
    display: none;
  }

@media (min-width: 768px) {

.swiper-front .swiper-button-next, .swiper-front .swiper-button-prev {
      display: flex
  }
    }

#front-steps .swiper-button-next, #front-steps .swiper-button-prev {
    display: flex;
  }

@media (min-width: 1024px) {

#front-steps .swiper-button-next, #front-steps .swiper-button-prev {
      display: none
  }
    }

.swiper-slide-thumb-active {
  border-color: #5fced8;
}

@media (min-width: 1024px) {
    .swiper#front-steps {
      margin-left: unset;
      margin-right: unset;
      position: relative;
      overflow: unset;
      list-style: none;
      padding: 0;
      z-index: 1;
    }
  }

/* position: relative; */

/* z-index: 1; */

/* transition-property: transform;
    box-sizing: content-box; */

@media (min-width: 1024px) {

#front-steps .swiper-wrapper {
      /* width: unset; */
      height: unset
      /* display: unset; */
  }
    }

/* position: relative;
    transition-property: transform; */

@media (min-width: 1024px) {

#front-steps .swiper-slide {
      flex-shrink: unset;
      /* width: unset; */
      height: unset
  }
    }

.swiper-pagination-bullet {
  filter: drop-shadow(0px 1px 1px rgba(0,0,0, 0.25));
}

.grecaptcha-badge {
  visibility: hidden;
  pointer-events: none;
}

.cookie-notice-container {
  border-top-width: 1px;
}

* {
	/* outline: 1px solid magenta; */
}

.front-main {
  position: relative;
}

.front-main-image {
  position: absolute;
  bottom: 0;
  max-width: 657px;
  width: 34%;
  left: 49.5%;
}

@media (min-width: 1536px) {

.front-main-image {
    left: 49%;
    width: 40%
}
  }

.front-main-image-layer {
  width: 100%;
  height: 100%;
}

@media (min-width: 1536px) {
    .front-main-image-layer::before,
    .front-main-image-layer::after {
      content: '';
      width: 10px;
      height: 100%;
      position: absolute;
      top: 0;
    }
    .front-main-image-layer::before {
      background: linear-gradient(to left, transparent, #4e6269);
      /* background: linear-gradient(to left, transparent, theme(colors.primary-lighten)); */
      left: 0;
    }
    .front-main-image-layer::after {
      background: linear-gradient(to right, transparent, #4e6269);
      /* background: linear-gradient(to right, transparent, theme(colors.primary-lighten)); */
      right: 0;
    }
  }

.front-main-headings {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

@media (min-width: 768px) {

.front-main-headings {
    left: 0;
    top: 0
}
  }

@media (min-width: 1024px) {
    
  }

@media screen and (max-width: 767.5px){

.front-main-headings-unit {
    position: relative;
    background-color: #5fced8;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 65%, 0 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 65%, 0 100%);
    padding-top: 4.5rem;
    padding-bottom: 7.5rem;
    opacity: 0.95
}
  }

@media (min-width: 768px) {

  }

.front-main-heading {
  margin: 0 1rem;

}

@media (min-width: 475px) {

.front-main-heading {
    margin-left: 1.5rem

}
  }

@media (min-width: 640px) {

.front-main-heading {
    padding-top: 2rem;
    margin-left: 3.75rem

}
  }

@media (min-width: 768px) {

.front-main-heading {
    position: absolute;
    top: 10%;
    left: 2rem;
    width: 100%;
    max-width: 960px;
    padding-top: 0;
    margin-left: 0;
    z-index: 20

}
  }

@media (min-width: 1024px) {

.front-main-heading {
    left: 5rem

}
  }

@media (min-width: 1280px) {

  }

@media (min-width: 1536px) {

.front-main-heading {
    top: 15%

}
  }

.front-main-heading-text {
  padding: 0.25rem 0;
  font-size: 1.5rem;

  /* @apply lg:text-3xl xl:text-4xl; */
}

@media (min-width: 475px) {

.front-main-heading-text {
    font-size: 2rem
}
  }

@media (min-width: 768px) {

.front-main-heading-text {
    font-size: calc(26px + 9 * (100vw - 768px)/255)
}
  }

@media (min-width: 1024px) {

.front-main-heading-text {
    font-size: calc(30px + 6 * (100vw - 1024px)/255)
}
  }

@media (min-width: 1280px) {

.front-main-heading-text {
    font-size: 2.25rem
}
  }

.front-main-heading-text-border {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 1.125rem;
  border: 1px solid white;
}

@media (min-width: 475px) {

.front-main-heading-text-border {
    font-size: 1.5rem
}
  }

@media (min-width: 768px) {

.front-main-heading-text-border {
    font-size: calc(13px + 6 * (100vw - 768px)/255);
    padding: 0.5rem 1rem
}
  }

@media (min-width: 1024px) {

.front-main-heading-text-border {
    font-size: calc(17px + 6 * (100vw - 1024px)/255)
}
  }

@media (min-width: 1280px) {

.front-main-heading-text-border {
    font-size: calc(20px + 8 * (100vw - 1280px)/256)
}
  }

@media (min-width: 1536px) {

.front-main-heading-text-border {
    font-size: calc(28px + 4 * (100vw - 1536px)/384)
}
  }

@media (width > 1920px) {

.front-main-heading-text-border {
    font-size: 2rem
}
  }

.front-main-heading-svg {
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  margin: 0.5rem 0 0.5rem 0;
}

@media (min-width: 475px) {

.front-main-heading-svg {
    font-size: 2.5rem;
    margin: 0
}
  }

@media (min-width: 640px) {

.front-main-heading-svg {
    margin: 1rem 0 1rem 0
}
  }

@media (min-width: 768px) {

.front-main-heading-svg {
    font-size: calc(25px + 15 * (100vw - 768px)/255)
}
  }

@media (min-width: 1024px) {

.front-main-heading-svg {
    width: 100%;
    padding: 0 0 0.5rem;
    margin: 1rem 0 1rem 0;
    font-size: calc(32px + 8 * (100vw - 1024px)/255)
}
  }

@media (min-width: 1280px) {

.front-main-heading-svg {
    font-size: 2.5rem
}
  }

.front-main-heading-svg span {
    fill: #ffff00;
    font-size: 3rem;
  }

@media (min-width: 475px) {

.front-main-heading-svg span {
      font-size: 4rem
  }
    }

@media (min-width: 768px) {

.front-main-heading-svg span {
      font-size: calc(50px + 14 * (100vw - 768px)/255)
  }
    }

@media (min-width: 1024px) {

.front-main-heading-svg span {
      font-size: calc(60px + 20 * (100vw - 1024px)/255)
  }
    }

@media (min-width: 1280px) {

.front-main-heading-svg span {
      font-size: 5rem
  }
    }

.front-main-balloon {
  position: absolute;
  background-color: #fff;
  width: 60vw;
  height: 35vw;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: calc(100 / 375 * 20 * 1vw);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 50%;
  filter: drop-shadow(2px 3px 0 #4e6269);
  left: -10%;
  top: 45%;
  z-index: 2;
}

@media screen and (min-width: 375px){

.front-main-balloon {
    top: 45%
}
  }

@media (min-width: 475px) {

.front-main-balloon {
    width: 50vw;
    height: 30vw;
    left: -3%
}
  }

@media (min-width: 640px) {

.front-main-balloon {
    left: 1%;
    font-size: calc(100 / 375 * 20 * 1vw)
}
  }

@media (min-width: 768px) {

.front-main-balloon {
    font-size: calc(20px + 4 * (100vw - 768px)/255);
    width: calc(23% + 4 * (100vw - 768px)/255);
    height: calc(25% + 4 * (100vw - 768px)/255);
    top: 13%;
    left: 46%
}
  }

@media (min-width: 1024px) {

.front-main-balloon {
    font-size: calc(24px + 12 * (100vw - 1024px)/255);
    width: calc(23% + 4 * (100vw - 1024px)/255);
    height: calc(25% + 4 * (100vw - 1024px)/255);
    left: 47%
}
  }

@media (min-width: 1280px) {

.front-main-balloon {
    width: calc(310px + 50 * (100vw - 1280px)/256);
    height: calc(180px + 20 * (100vw - 1280px)/256);
    font-size: 36px;
    left: calc(45% + 4 * (100vw - 1280px)/256);
    filter: drop-shadow(4px 6px 0 #4e6269)
}
  }

@media (min-width: 1536px) {

.front-main-balloon {
    width: 360px;
    height: 200px;
    top: calc(84px + 52 * (100vw - 1536px)/384);
    left: calc(675px + 265 * (100vw - 1536px)/384)
}
  }

@media (width > 1920px) {

.front-main-balloon {
    top: 136px;
    left: 940px
}
  }

.front-main-balloon::after {
    content: '';

    position: absolute;
    right: 0;
    bottom: 0;
    border-width: 2vw;
    border-color: transparent;
    border-top-color: white;
    border-top-width: 6vw;
    rotate: -50deg;
    translate: -4vw;
  }

@media (min-width: 640px) {

.front-main-balloon::after {
      translate: -2%;
      border-width: 20px;
      border-top-width: 60px
  }
    }

@media (min-width: 768px) {

.front-main-balloon::after {
      translate: -2%;
      border-width: 5px;
      border-top-width: 40px
  }
    }

@media (min-width: 1024px) {

.front-main-balloon::after {
      translate: -2%;
      border-width: 8px;
      border-top-width: 40px
  }
    }

@media (min-width: 1280px) {

.front-main-balloon::after {
      translate: -25px;
      border-width: 10px;
      border-top-width: 40px
  }
    }

.front-main-gyminfo-bg::before {
    top: 511px;
    height: 1386px;
  }

@media (min-width: 475px) {

.front-main-gyminfo-bg::before {
      top: 533px;
      height: 1495px
  }
    }

@media (min-width: 640px) {

.front-main-gyminfo-bg::before {
      top: 616px;
      height: 1722px
  }
    }

@media (min-width: 768px) {

.front-main-gyminfo-bg::before {
      top: 636px;
      height: 1938px
  }
    }

@media (min-width: 1024px) {

.front-main-gyminfo-bg::before {
      top: 765px;
      height: 544px
  }
    }

@media (min-width: 1280px) {

.front-main-gyminfo-bg::before {
      top: 830px;
      height: 607px
  }
    }

.front-main-faq-bg::before {
    top: 100px;
    height: calc(100% - 300px);
  }

@media screen and (min-width: 393.5px){

.front-main-faq-bg::before {
      top: 72px;
      height: calc(100% - 245px)
  }
    }

@media (min-width: 768px) {

.front-main-faq-bg::before {
      top: 74px;
      height: calc(100% - 250px)
  }
    }

@media (min-width: 1024px) {

.front-main-faq-bg::before {
      height: calc(100% - 255px)
  }

.about-persistenceRate {
        position: absolute;
        left: calc(50% - 372px);
        top: 228px
}
    }

.about-persistenceRate-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
}

@media screen and (max-width: 767.5px){

.about-persistenceRate-item {
        height: 400px
}

.about-persistenceRate-item::before {
            position: absolute;
            content: '';
            display: inline-block;
            background-image: url("../img/about/img_about_01.webp");
            background-size: cover;
            z-index: -1;
            left: -6rem;
            top: 0rem;
            width: 203px;
            height: 100%
    }
    }

@media screen and (min-width: 640px) and (max-width: 767.5px){

.about-persistenceRate-item::before {
            left: 2rem
    }
        }

.about-persistenceRate-img {
    display: none;
}

@media (min-width: 768px) {

.about-persistenceRate-img {
        display: block;
        z-index: -1
}
    }

.about-persistenceRate-img img {
    }

.about-people {
    position: relative;
    height: 280px;

}

@media (min-width: 640px) {

.about-people {
        height: 260px

}
    }

@media (min-width: 1024px) {

.about-people {
        height: 0

}
    }

.about-people-balloon {
    position: absolute;
    background-color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 50%;
    filter: drop-shadow(3px 4px 0 #4e6269);
    z-index: 1;
    font-size: 20px;
    width: 200px;
    height: 120px;
    top: -40px;
    left: calc(0px + 50 * (100vw - 375px)/99);
}

@media (min-width: 475px) {

.about-people-balloon {
        width: 210px;
        height: 120px;
        left: 45px
}
    }

@media (min-width: 640px) {

.about-people-balloon {
        font-size: 24px;
        width: 230px;
        left: 100px
}
    }

@media (min-width: 768px) {

.about-people-balloon {
        width: 240px;
        height: 130px;
        left: 160px
}
    }

@media (min-width: 1024px) {

.about-people-balloon {
        top: -190px;
        left: 400px
}
    }

@media (min-width: 1280px) {

.about-people-balloon {
        font-size: 32px;
        width: 320px;
        height: 170px;
        top: -220px;
        left: 46%
}

    }

@media (min-width: 1536px) {

.about-people-balloon {
        font-size: 36px;
        width: 360px;
        height: 200px;
        top: -310px;
        left: 40%
}
    }

.about-people-balloon::after {
        content: '';
        position: absolute;
        right: 10px;
        bottom: -15px;
        border-width: 2vw;
        border-top-width: 8vw;
        border-color: transparent;
        border-top-color: white;
        rotate: -50deg;
        translate: -4vw;
    }

@media (min-width: 475px) {

.about-people-balloon::after {
            right: 25px;
            bottom: -25px;
            border-width: 10px;
            border-top-width: 40px;
            translate: 0
    }
        }

@media (min-width: 768px) {

.about-people-balloon::after {
            right: 20px;
            bottom: -15px
    }
        }

@media (min-width: 1024px) {
        }

@media (min-width: 1280px) {

.about-people-balloon::after {
            right: 40px
    }
        }

.about-people-img {
    position: absolute;
    top: 30px;
    right: 0%;
    width: 270px;
    z-index: -1;
}

@media (min-width: 640px) {

.about-people-img {
        right: 60px
}
    }

@media (min-width: 768px) {

.about-people-img {
        right: 140px
}
    }

@media (min-width: 1024px) {

.about-people-img {
        width: 320px;
        top: -120px
}
    }

@media (min-width: 1280px) {

.about-people-img {
        width: 380px;
        top: -140px
}
    }

@media (min-width: 1536px) {

.about-people-img {
        width: 500px;
        top: -200px;
        right: 100px
}
    }

.about-persistenceRate-right{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 450px;
    z-index: 1;
}

@media screen and (max-width: 767.5px){

.about-persistenceRate-right{
        position: absolute;
        width: 280px;
        top: 4rem;
        right: calc(0px + 32 * (100vw - 375px)/99)
}
    }

@media (min-width: 768px) {

.about-persistenceRate-right{
        margin: 4rem 0 0 0
}
    }

.about-persistenceRate-right-top{
    display: inline;
    font-size: 20px;
}

@media (min-width: 1280px) {

.about-persistenceRate-right-top{
        font-size: 40px
}
    }

.about-persistenceRate-right-middle{
    display: flex;
    align-items: flex-end;
    margin: 2rem 0 1rem 0;
}

@media (min-width: 1280px) {

.about-persistenceRate-right-middle{
        margin: 55px 0 2rem 0
}
    }

.about-persistenceRate-right-middle-text {
    font-size: 1rem;
    text-align: end;
}

@media (min-width: 1280px) {

.about-persistenceRate-right-middle-text {
        font-size: 1.5rem
}
    }

.about-persistenceRate-right-middle-number {
    font-size: 20px;
    line-height: 32px;
    font-style: oblique;
    font-weight: bold;
}

@media (min-width: 1280px) {

.about-persistenceRate-right-middle-number {
        font-size: 40px;
        line-height: 36px
}
    }

.about-persistenceRate-right-middle-number .integer{
        font-size: 64px;
        letter-spacing: -5px;
    }

@media (min-width: 1280px) {

.about-persistenceRate-right-middle-number .integer{
            font-size: 112px;
            letter-spacing: -10px
    }
        }

.about-persistenceRate-right-middle-number .decimal {
        font-size: 38px;
        margin: 0 0 0 -10px;
    }

@media (min-width: 1280px) {

.about-persistenceRate-right-middle-number .decimal {
            font-size: 80px;
            margin: 0 0 0 -25px
    }
        }

.about-persistenceRate-right-bottom{

    display: inline;
    padding: 8px 10px;
    text-align: center;
    width: 280px;
}

@media (min-width: 1280px) {

.about-persistenceRate-right-bottom{
        padding: 10px 1rem 10px 1rem
}
    }

.about-obsession {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 1536px) {

.about-obsession {
        padding-top: 0;
        margin-top: -5rem
}
    }

.about-obsession-head{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 475px) {

.about-obsession-head{
        gap: 2rem
}
    }

@media (min-width: 640px) {
    }

@media (min-width: 768px) {

.about-obsession-head{
        justify-content: flex-start
}
    }

@media (min-width: 1024px) {
    }

@media (min-width: 1280px) {
    }

.about-obsession-head h2 {
        font-size: 24px;
        line-height: 30px;
    }

@media (min-width: 640px) {

.about-obsession-head h2 {
            font-size: 30px;
            line-height: 60px
    }
        }

@media (min-width: 1024px) {

.about-obsession-head h2 {
            font-size: 3rem;
            line-height: 70px
    }
        }

@media (min-width: 1280px) {
        }

.about-obsession-head-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    padding: 15px;
    background-color: #5fced8;
}

@media (min-width: 640px) {

.about-obsession-head-icon {
        padding: 0
}

.about-obsession-head-icon svg {
            width: 4rem;
            height: 4rem
    }
    }

.about-obsession-body {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--gap);

    max-width: calc(var(--item-size) * var(--item-length) + var(--gap) * calc(var(--item-length) - 1));
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;

    --item-size: 8rem;
    --gap: 2rem;
    --item-length: 2;

}

@media (min-width: 640px) {

.about-obsession-body {
        --gap: 2rem;
        --item-length: 4

}
    }

@media (min-width: 1024px) {

.about-obsession-body {
        --item-length: 6

}
    }

@media (min-width: 1280px) {

.about-obsession-body {
        --gap: 2rem;
        --item-length: 8

}
    }

.about-obsession-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: var(--item-size);

    font-size: 13px;
    font-weight: bold;
}

@media (min-width: 640px) {

.about-obsession-item {
        font-size: 14px
}
    }

.about-obsession-icon img {
        width: auto;
        height: auto;
    }

.about-faq-bg::before {
        top: 110px;
        height: calc(100% - 220px);
    }

@media screen and (min-width: 441.5px){

.about-faq-bg::before {
            top: 78px;
            height: calc(100% - 188px)
    }
        }

@media (min-width: 640px) {

.about-faq-bg::before {
            top: 78px;
            height: calc(100% - 155px)
    }
        }

.flow-faq-bg::before {
        top: 126px;
        height: calc(100% - 225px);
    }

@media screen and (min-width: 362.5px){

.flow-faq-bg::before {
            top: 99px;
            height: calc(100% - 198px)
    }
        }

@media screen and (min-width: 452.5px){

.flow-faq-bg::before {
            height: calc(100% - 171px)
    }
        }

@media (min-width: 640px) {

.flow-faq-bg::before {
            top: 72px;
            height: calc(100% - 144px)
    }
        }

@media (min-width: 768px) {

.flow-faq-bg::before {
            top: 74px;
            height: calc(100% - 148px)
    }
        }

.price-plan-item {
  display: flex;
  justify-content: center;
  gap: 3rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

@media (min-width: 768px) {

  .price-plan-item {
    padding: 4rem;
  }
}

.price-plan-item {
    
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
}

@media (min-width: 1024px) {

.price-plan-item {
        align-items: inherit;
        flex-direction: inherit;
        flex-wrap: wrap;
        padding: 4rem
}
    }

@media (min-width: 1280px) {

.price-plan-item {
        justify-content: flex-start
}
    }

.price-plan-item:not(:first-of-type) {
  margin-top: 3rem;
}

@media (min-width: 1024px) {

.price-plan-item-head {
        display: flex;
        align-items: center;
        gap: 3rem;
        height: 100%
}
    }

@media (min-width: 1024px) and (max-width: 1279.5px) {

.price-plan-item-head {
        width: 100%;
        justify-content: space-evenly;
        gap: 0rem
}
    }

@media (min-width: 1024px) {

.price-plan-item-foot {
        display: flex;
        gap: 3rem
}
    }

@media (min-width: 1024px) and (max-width: 1279.5px) {

.price-plan-item-foot {
        width: 100%;
        justify-content: space-evenly;
        gap: 0rem
}
    }

.price-plan-item-text {
    line-height: 30px;
}

@media screen and (max-width: 767.5px){

.price-plan-item-text {
        padding-bottom: 3rem;
        border-bottom: solid 1px  #a6bdc2;
        max-width: 309px
}
    }

@media (min-width: 768px) {

.price-plan-item-text {
        width: 309px
}
    }

@media screen and (max-width: 767.5px){

.price-plan-item-contents {
        width: 100%;
        max-width: 309px
}
    }

@media (min-width: 1024px) and (max-width: 1279.5px) {

.price-plan-item-contents {
        width: 300px
}
    }

.record-img img {
        max-width: 50%;
    }

@media (min-width: 768px) {

.record-img img {
            max-width: 100%
    }
        }

.record-status {
  border-bottom: solid 1px #a6bdc2;
}

.record-status:not(:first-of-type) .overview-history-icon-circle::after {
            position: absolute;
            content: "";
            top: -11.5rem;
            right: -1.5rem;
            width: 2px;
            height: 12rem;
            background-color: #5fced8;
        }

@media (min-width: 1024px) {

.record-status:not(:first-of-type) .overview-history-icon-circle::after {
                top: -4.5rem;
                right: -3rem;
                height: 5rem
        }
            }

.record-status {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    padding: 26px 0 26px 0;
    line-height: 1;
}

@media (min-width: 640px) {

.record-status {
        flex-wrap: nowrap;
        gap: 0
}
    }

.record-status .record-status-emphasis div:first-of-type {
            color: #ffff00;
        }

.greeting-bg {
    position: relative;
}

.greeting-bg::before {
        position: absolute;
        content: "";
    }

@media screen and (max-width: 1023.5px){

.greeting-bg::before {
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #5fced8;
            transform: skew(0deg, -15deg)
    }
        }

@media (min-width: 1024px) {

.greeting-bg::before {
            background-image: url(../img/company/bg_greeting_01.webp);
            max-width: 1920px;
            width: 100%;
            height: 100%;
            top: calc(-500px + 150 * (100vw - 1024px)/255);
            background-size: cover
    }
        }

@media (min-width: 1280px) {

.greeting-bg::before {
            top: calc(-350px + 175 * (100vw - 1280px)/256)
    }
        }

@media (min-width: 1536px) {

.greeting-bg::before {
            top: calc(-175px + 50 * (100vw - 1536px)/384)
    }
        }

@media (width > 1919.5px) {

.greeting-bg::before {
            top: -125px;
            left: calc(50% - 960px)
    }
        }

@media screen and (max-width: 1023.5px){

.greeting-bg .l-stick-image-container {
            flex-direction: column-reverse;
            gap: 5rem
    }
        }

@media (min-width: 1536px) {

.greeting-bg .l-stick-image-container:not(.is-invert){
            padding-left: calc(7% + 140 * (100vw - 1536px)/384)
    }
        }

@media (width > 1919.5px) {

.greeting-bg .l-stick-image-container:not(.is-invert){
            padding-left: 15%
    }
        }

@media (min-width: 475px) {
        }

@media (min-width: 640px) {
        }

@media (min-width: 768px) {
        }

@media (min-width: 1024px) {

.greeting-bg .greeting-stick-image-01 {
            width:  calc(400px + 100 * (100vw - 1024px)/255)

    }
        }

@media (min-width: 1280px) {

.greeting-bg .greeting-stick-image-01 {
            width: calc(500px + 100 * (100vw - 1280px)/256)

    }
        }

@media (min-width: 1536px) {

.greeting-bg .greeting-stick-image-01 {
            width: calc(500px + 200 * (100vw - 1536px)/384)

    }
        }

@media (width > 1919.5px) {

.greeting-bg .greeting-stick-image-01 {
            width: 800px

    }
        }

@media (min-width: 475px) {
        }

@media (min-width: 640px) {
        }

@media (min-width: 768px) {
        }

@media (min-width: 1024px) {

.greeting-bg .greeting-stick-image-02 {
            width:  calc(320px + 80 * (100vw - 1024px)/255)
    }
        }

@media (min-width: 1280px) {

.greeting-bg .greeting-stick-image-02 {
            width: calc(400px + 80 * (100vw - 1280px)/256)
    };
        }

@media (min-width: 1536px) {

.greeting-bg .greeting-stick-image-02 {
            width: calc(400px + 160 * (100vw - 1536px)/384)
    }
        }

@media (width > 1920px) {

.greeting-bg .greeting-stick-image-02 {
            width: 640px
    }
        }

.philosophy-people-img-01 {
    position: absolute;
    top: 100%;
    left: calc(50% - 170px);
    width: 340px;
}

@media (min-width: 768px) {

.philosophy-people-img-01 {
        top: 300px;
        left: calc(50% - 385px);
        width: auto
}
    }

@media (min-width: 1024px) {

.philosophy-people-img-01 {
        top: 160px;
        left: calc(50% - 585px);
        width: auto
}
    }

.overview-history-icon-circle {
    position: relative;
}

.overview-history-icon-circle::before {
        position: absolute;
        content: "";
        top: calc(50% - 8px);
        right: -2rem;
        width: 1rem;
        height: 1rem;
        background-color: #5fced8;
        border-radius: 50%;
    }

@media (min-width: 1024px) {

.overview-history-icon-circle::before {
            right: -3.5rem
    }
        }

.c-border-bottom:not(:first-of-type) .overview-history-icon-circle::after {
            position: absolute;
            content: "";
            top: -11.5rem;
            right: -1.5rem;
            width: 2px;
            height: 12rem;
            background-color: #5fced8;
        }

@media (min-width: 1024px) {

.c-border-bottom:not(:first-of-type) .overview-history-icon-circle::after {
                top: -4.5rem;
                right: -3rem;
                height: 5rem
        }
            }

.franchise-bg {
    background-image: url(../img/company/bg_franchise_01_sp.webp);
    background-size: cover;
    margin: auto;
    padding: 5rem 0 0 0;
    margin: -132px 0 0 0;
}

@media (min-width: 768px) {

.franchise-bg {
        max-width: 1920px;
        background-image: url(../img/company/bg_franchise_01.webp)
}
    }

@media (min-width: 1024px) {

.franchise-bg {
        padding: 8rem 0 0 0
}
    }

.franchise-point-3 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--gap);

    max-width: calc(var(--item-size) * var(--item-length) + var(--gap) * calc(var(--item-length) - 1));
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;

    --item-size: 8rem;
    --gap: 2rem;
    --item-length: 2;
}

@media (min-width: 640px) {

.franchise-point-3 {
        --gap: 2rem;
        --item-length: 4
}
    }

@media (min-width: 1024px) {

.franchise-point-3 {
        --item-length: 6
}
    }

@media (min-width: 1280px) {

.franchise-point-3 {
        --gap: 2rem;
        --item-length: 8
}
    }

.franchise-point-3-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: var(--item-size);

    font-size: 13px;
    font-weight: bold;
}

@media (min-width: 640px) {

.franchise-point-3-item {
        font-size: 14px
}
    }

.franchise-point-3-icon img {
        width: auto;
        height: auto;
    }

.franchise-balance-arrow {
    position: relative;
}

.franchise-balance-arrow::before {
        position: absolute;
        content: url("../img/company/icon_franchise_arrow.webp");
        top: -4rem;
        right: 4rem;
    }

@media (min-width: 768px) {

.franchise-balance-arrow::before {
            right: 8rem
    }
        }

.franchise-balance-table {
    width: 100%;
    text-align: center;
}

.franchise-balance-table th {
        background-color: #eaeff0;
        width: 14%;
        padding: 1.5rem 0;
        border-bottom: solid 1px  #a6bdc2;
    }

.franchise-balance-table th:not(:first-of-type){
            border-left: solid 1px  #a6bdc2;
        }

.franchise-balance-table td {
        padding: 1.5rem 0;
    }

.franchise-balance-table td:not(:first-of-type){
            border-left: solid 1px  #a6bdc2;
        }

.franchise-balance-table-sp {
    width: 100%;
    text-align: center;
}

.franchise-balance-table-sp th {
        background-color: #eaeff0;
        width: 16%;
        padding: 1.5rem 0;
        border-bottom: solid 1px  #a6bdc2;
    }

.franchise-balance-table-sp th:not(:first-of-type){
            border-left: solid 1px  #a6bdc2;
        }

.franchise-balance-table-sp td {
        padding: 1.5rem 0;
    }

.franchise-balance-table-sp td:not(:first-of-type){
            border-left: solid 1px  #a6bdc2;
        }

.recruit-people-img-01 {
    position: absolute;
    top: 120%;
    left: 0;
}

@media (min-width: 768px) {

.recruit-people-img-01 {
        top: 190px;
        left: calc(50% - 380px)
}
    }

@media (min-width: 1024px) {

.recruit-people-img-01 {
        top: 100px;
        left: calc(50% - 562px)
}
    }

@media (min-width: 1280px) {

.recruit-people-img-01 {
        left: calc(50% - 612px)
}
    }

.recruit-interview-bg {
    position: relative;
}

.recruit-interview-bg::before {
        position: absolute;
        content: "";
        background-color: #5fced8;
        width: 100%;
        top: 150px;
        height: calc(340px + 60 * (100vw - 375px)/99);
    }

@media (min-width: 475px) {

.recruit-interview-bg::before {
            top: 150px;
            height: calc(400px + 90 * (100vw - 475px)/164)
    }
        }

@media (min-width: 640px) {

.recruit-interview-bg::before {
            height: calc(490px + 10 * (100vw - 640px)/127)
    }
        }

@media (min-width: 768px) {

.recruit-interview-bg::before {
            height: 500px
    }
        }

@media (min-width: 1024px) {

.recruit-interview-bg::before {
            top: 300px;
            height: 450px
    }
        }

.recruit-slider-title {
    width: 320px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 1.5rem;
    font-size: 20px;
    font-weight: bold;
}

.recruit-slider-sub {
    padding: 0 0 3rem;
}

.requirements-store {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (min-width: 640px) {

.requirements-store {
        flex-wrap: nowrap
}
    }

.requirements-store-area {
    width: 80px;
}

.requirements-store-area span {
        padding: 0.625rem 1rem;
    }

@media (min-width: 640px) {

.requirements-store-area {
        width: 108px
}
    }

.requirements-store-name {
    width: 214px;
    padding: 2rem 0 2rem 1rem;
}

.requirements-store-address {
    position: relative;
    padding: 0 0 1rem 1.5rem;
}

@media (min-width: 640px) {

.requirements-store-address {
        padding: 0 0 0 3.5rem
}
    }

.requirements-store-address::before {
        position: absolute;
        content: url(../img/recruit/icon_requirements_map.webp);
        top: 2px;
        left: 0rem;
    }

@media (min-width: 640px) {

.requirements-store-address::before {
            top: calc(50% - 12px);
            left: 2rem
    }
        }

.requirements-store-address a {
        text-decoration:underline;
    }

.bg-interview-01 {
    background-image: url(../img/recruit/bg_interview_01.webp);
    /* background-size: cover; */
    background-repeat: no-repeat;
    padding: 8rem 0 0 0;
    margin: -132px 0 0 0;
}

@media (min-width: 1024px) {

.bg-interview-01 {
        margin: -75px 0 0 0
}
    }

@media (min-width: 768px) {

.interview-front {
        display: flex;
        justify-content: space-between
}
    }

@media screen and (max-width: 767.5px){

.interview-front-trainer {
        max-width: 250px;
        margin: auto
}
    }

@media (min-width: 768px) {

.interview-front-trainer {
        max-width: 468px
}
    }

.interview-schedule-item {
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 4rem 2rem;
}

@media (min-width: 475px) {

.interview-schedule-item {
        padding: 4rem 3rem
}
    }

@media (min-width: 1024px) {

.interview-schedule-item {
        padding: 4rem
}
    }

.interview-schedule-head {
  border-bottom: solid 1px #a6bdc2;
}

.interview-schedule-head:not(:first-of-type) .overview-history-icon-circle::after {
            position: absolute;
            content: "";
            top: -11.5rem;
            right: -1.5rem;
            width: 2px;
            height: 12rem;
            background-color: #5fced8;
        }

@media (min-width: 1024px) {

.interview-schedule-head:not(:first-of-type) .overview-history-icon-circle::after {
                top: -4.5rem;
                right: -3rem;
                height: 5rem
        }
            }

.interview-schedule-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 1.5rem;
    gap: 2rem;
}

@media (min-width: 640px) {

.interview-schedule-head {
        padding-bottom: 2rem;
        flex-wrap: nowrap;
        gap: 0rem
}
    }

@media (min-width: 1024px) {

.interview-schedule-head {
        justify-content: flex-start
}
    }

.interview-schedule-time {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

@media (min-width: 640px) {

.interview-schedule-time {
        flex-wrap: nowrap;
        width: auto
}
    }

.interview-schedule-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
}

@media (min-width: 640px) {

.interview-schedule-body {
        padding-top: 2rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 2rem
}
    }

.entry-inquiry-type {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.entry-checkbox-group-select {
    margin: 1.5rem 0 0;
}

.storelist-detail-header-hdg {
    text-transform: none;
    font-size: 2rem;
}

@media (min-width: 768px) {

.storelist-detail-header-hdg {
        font-size: 3.5rem
}
    }

.storelist-text_size-heading {
            font-size: calc(20px + 20 * (100vw - 360px)/407);
        }

@media (min-width: 768px) {

.storelist-text_size-heading {
                font-size: 40px
        }
            }

.storelist-text_size-sub {
            font-size: calc(16px + 8 * (100vw - 360px)/407);
        }

@media (min-width: 768px) {

.storelist-text_size-sub {
                font-size: 24px
        }
            }

.bg-continuation {
    background-image: url(../img/storelist/bg_continuation_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% center;
}

@media (min-width: 768px) {

.bg-continuation {
        background-image: url(../img/storelist/bg_continuation.png);
        background-position: center
}
    }

.continuation-wrap {
        display: flex;
        justify-content: center;
        padding: 100px 0;
    }

@media (min-width: 768px) {

.continuation-wrap {
            justify-content: flex-start;
            padding: 120px 0 200px 0
    }
        }

.continuation-row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.continuation-title {
        font-size: 1.5rem;
    }

@media (min-width: 768px) {

.continuation-title {
            font-size: 2.5rem
    }
        }

.continuation-column {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 0px 10px;
        margin: 2rem 0 1rem 0;
    }

@media (min-width: 768px) {

.continuation-column {
            margin: 3.5rem 0 2rem 0
    }
        }

.continuation-text {
        font-size: 1rem;
        text-align: end;
    }

@media (min-width: 768px) {

.continuation-text {
            font-size: 1.5rem
    }
        }

.continuation-num {
        font-style: oblique;
        line-height: 32px;
    }

@media (min-width: 768px) {

.continuation-num {
            font-size: 2.5rem;
            line-height: 50px
    }
        }

.continuation-num .integer {
            font-size: 4rem;
            letter-spacing: -5px;
        }

@media (min-width: 768px) {

.continuation-num .integer {
                font-size: 7rem;
                letter-spacing: -10px
        }
            }

.continuation-num .decimal {
            font-size: 38px;
            margin: 0 0 0 -10px;
        }

@media (min-width: 768px) {

.continuation-num .decimal {
                font-size: 5rem;
                margin: 0 0 0 -25px
        }
            }

.continuation-note {
        padding: 0.75rem 1rem;
    }
