@charset "UTF-8";

/* ===== base.css ===== */
:root {
  --key-color: #FFD929;
  --white: #fff;
  --fs-base: 16px;
}


html { font-size: var(--fs-base); }
body {
  line-height: 1.6;
  font-family: "Hiragino Kaku Gothic ProN", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
  "Helvetica Neue", Arial, "Noto Sans JP", Meiryo, sans-serif;
}
a { color: var(--color-key); }


.pc-only{display: inline;}
.sp-only{display: none;}
@media (max-width: 640px) {
  .pc-only{display: none;}
  .sp-only{display: inline;}
}

/* ===== header ======================================== */

.site-header {
  background: var(--white);
  color: #222;

  & .site-headerTop {
    border-bottom: 1px solid #eee;

    & > div {
      max-width: 1100px;
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;

      @media (max-width: 414px) {
        padding: 16px 10px;
      }

      & .site-logo {
        & a {
          display: flex;
          align-items: center;
          gap: 14px;
          text-decoration: none;
          color: inherit;
        }

        & img {
          display: block;
          /* width: 100%; */
          width: 244px;
          height: auto;

          @media (max-width: 640px) {
            width: 195px;
          }
        }

        & span {
          font-size: 14px;
          font-weight: bold;
          letter-spacing: .04em;
          white-space: nowrap;
          position: relative;
          padding: 0 20px;

          @media (max-width: 640px) {
            padding: 0;
            line-height: 1.4;
          }

          &::before,
          &::after{
            content: "";
            display: block;
            width: 13px;
            height: 1px;
            background: #333;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);

            @media (max-width: 640px) {
              content: none;
            }
          }

          &::after{
            left: auto;
            right: 0;
          }
        }
      }

      & .site-cta {
        display: flex;
        align-items: center;
        gap: 12px;

        @media (max-width: 1024px) {
          display: none;
        }

        & a {
          text-decoration: none;
          color: inherit;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border-radius: 999px;
          line-height: 1;
          transition: opacity .2s ease;

          &:hover {
            opacity: .8;
          }
        }

        & > a:first-child {
          padding: 12px 16px;
          font-size: 33px;
          font-family: "Noto Sans JP", sans-serif;
          font-weight: 500;
          letter-spacing: 1px;

          &::before{
            content: "";
            background: url('../img/common/icon-tel.svg') no-repeat;
            background-size: contain;
            width: 27px;
            height: 27px;
            position: relative;
            top: 3px;
            
          }
        }

        & > a:last-child {
          padding: 12px 30px;
          font-weight: 700;
          font-size: 16px;
          background: var(--key-color);
          color: #333;
          border: 1px solid var(--key-color);
        }
      }

      & .spmenu-btn {
        display: none;
      }

      @media (max-width: 1024px) {

        & .spmenu-btn {
          position: relative;
          width: 32px;
          height: 24px;
          border: none;
          background: none;
          cursor: pointer;
          padding: 0;
          display: flex;
          flex-direction: column;
          justify-content: space-between;

          @media (max-width: 414px) {
            margin-right: 6px;
          }

          & span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #000;
            transition: transform 0.3s ease, opacity 0.3s ease;
          }


          &.is-open {
            & span:nth-child(1) {
              transform: translateY(11px) rotate(45deg);
            }
            & span:nth-child(2) {
              opacity: 0;
            }
            & span:nth-child(3) {
              transform: translateY(-11px) rotate(-45deg);
            }
          }
        }
      }


    }
  }

  & .gnav {
    margin: 0 auto;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    scrollbar-width: none;

    &.sp-header-menu{
      & .sp-contact{
        display: none;
      }
    }

    & .footer-only{display: none;}

    @media (max-width: 1024px) {
      &.sp-header-menu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
        max-height 0.5s ease,
        opacity 0.5s ease;

        & .sp-contact{
          display: inline;
        }
      }

      &.sp-header-menu.is-open {
        max-height: 100vh;
        opacity: 1;
      }
    }


    &::-webkit-scrollbar { display: none; }

    & ul {
      max-width: 1200px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      position: relative;
      margin: 0 auto;

      @media (max-width: 1024px) {
        display: block;
        padding: 0 24px;
      }

      & li{
        width: 100%;
        border-left: 1px solid #ccc;

        @media (max-width: 1024px) {
          border-left: none;
          border-bottom: 1px solid #ccc;
        }

        & a{
          padding: 10px 0;
          text-decoration: none;
          display: block;
          text-align: center;
          transition: background .2s ease;
          line-height: 1.4;

          @media (max-width: 1024px) {
            padding: 20px;
            text-align: left;
          }

          &:hover {
            background: var(--key-color);
            transition: background .2s ease;
          }

          &::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -6px;
            height: 2px;
            background: var(--key-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .2s ease;
          }

          &:hover::after {
            transform: scaleX(1);
          }
        }

        & span{
          display: block;
          font-size: 12px;

          @media (max-width: 1024px) {
            display: inline;
          }
        }
      }

      & li.last-menu{
        border-right: 1px solid #ccc;

        @media (max-width: 1024px) {
          border-right: none;
          border-bottom: none;
        }
      }

      
    }
  }



}

/* ===== side-cta-btn ======================================== */
.side-cta_btn{
  display: block;
  position: absolute;
  z-index: 100;
  top: 180px;
  right: 0;
  writing-mode: vertical-rl;
  background: var(--key-color);
  padding: 20px 10px 50px;
  border-radius: 20px 0 0 20px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;

  @media (max-width: 1024px) {
    display: none;
  }

  &::after{
    position: absolute;
    bottom:10px;
    right: 10px;
    content: url('../img/common/icon-arrow_r.svg');
  }
}

/* ===== main ======================================== */

/* section-head  */

.section-wrapper{
  margin-bottom: 120px;

  @media (max-width: 640px) {
    margin-bottom: 60px;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 38px;
  position: relative;
  z-index: 100;

  @media (max-width: 640px) {
    margin-bottom: 20px;
  }

  & .en {
    font-size: 16px;
    font-weight: bold;
    color: var(--key-color);
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    font-family: "Noto Sans JP", sans-serif;

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      width: 23px;
      height: 2px;
      background: currentColor;
      opacity: .6;
    }

    &::before { left: -14px;}
    &::after  { right: -14px;}
  }

  & .title {
    font-size: 38px;
    line-height: 1.35;

    @media (max-width: 640px) {
      font-size: 32px;
    }

    & span{
      font-size: 1.3em;
      font-style: italic;
      font-family: "Oswald", sans-serif;
      margin: 0 5px 0 0;
    }
  }
}

/* .section-wrapper{} */


/* section-inner */
.inner {
  max-width: 1100px;
  margin: 0 auto;

  & .inner_intro_text{
    text-align: center;
  }
}


/* ===== footer ======================================== */

.site-footer {
  background: #f7f7f7;
  color: #222;
  padding: 0 24px 32px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--key-color);
  }

  & .footer-gnav {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    gap: 28px;
    border-bottom: 1px solid #e6e6e6;

    @media (max-width: 640px) {
      border-bottom: none;
    }

    & ul{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;

      @media (max-width: 640px) {
        width: 100%;
        display: block;
      }

      & li{

        @media (max-width: 640px) {
          border-bottom: 1px solid #ccc;
        }

        & a{
          display: block;
          font-size: 14px;
          color: #222;
          text-decoration: none;
          position: relative;
          padding: 16px 0;

          @media (max-width: 640px) {
            padding: 20px 0;
            font-size: 16px;
          }

          /* & span{display: block;} */

          &::after{
            content: url('../img/common/icon-menu-arrow_r.svg');
            position: absolute;
            top: calc(50% - 2px);
            right: -10px;
            transform: translateY(-50%);

            @media (max-width: 640px) {
              right: 0;
              content: url('../img/top/icon-contact-arrow_r.svg');
            }
          }

        }

        &:last-of-type a::after {
          content: "";
          margin: 0;

          @media (max-width: 640px) {
            content: url('../img/top/icon-contact-arrow_r.svg');
          }
        }

      }
    }
  }

  & .footer-identity {
    max-width: 1200px;
    margin: 32px auto 0;
    text-align: center;

    & .footer-logo {
      display: block;

      & a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: inherit;

        @media (max-width: 414px) {
          display: block;
        }

        & img {
          width: 200px;
          height: auto;
          display: block;

          @media (max-width: 414px) {
            margin: 0 auto;
            margin-bottom: 10px;
          }
        }

        & span {
          font-size: 14px;
          letter-spacing: .04em;
          white-space: nowrap;
          position: relative;
          padding: 0 20px;

          @media (max-width: 640px) {
            padding: 0;
            line-height: 1.4;
            display: block;
          }

          &::before,
          &::after{
            content: "";
            display: block;
            width: 13px;
            height: 1px;
            background: #333;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);

            @media (max-width: 640px) {
              content: none;
            }
          }

          &::after{
            left: auto;
            right: 0;
          }
        }
      }
    }

    & .footer-info {
      display: inline-flex;
      gap: 12px;
      font-size: 14px;
      color: #222;

      @media (max-width: 640px) {
        display: block;
      }

      & span{
        @media (max-width: 640px) {
          display: block;
          margin-bottom: 10px;
        }
      }
    }
  }

  & > small {
    display: block;
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 24px;

    & > span{
      font-size: 20px;
      position: relative;
      top: 4px;
    }
  }
}


/* contact-------------------------------------------------- */
.contact {
  padding: 0px 16px;
  text-align: center;

  & .lead {
    display: table;
    width: auto;
    margin: 0 auto;
    font-size: 22px;
    font-weight: bold;
    color: #222;
    padding: 10px 20px;
    border-radius: 100px;
    background: #fff;
    position: relative;
    z-index: 10;

    @media (max-width: 640px) {
      font-size: 18px;
      padding: 10px;
      margin-bottom: 6px;
    }
  }

  & .contact-box {
    background: #fffcee;
    border-radius: 9999px;
    padding: 40px 40px 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    top: -20px;

    @media (max-width: 640px) {
      background: none;
      padding: 0;
      position: static
    }


    & .tel {

      @media (max-width: 640px) {
        width: 100%;
        background: #FFFCF0;
        border-radius: 20px;
        border: 1px solid var(--key-color);
        box-shadow: 0 10px 0 var(--key-color);
      }

      & a{
        text-decoration: none;
        position: relative;
        line-height: 1.2;
        display: table;
        margin: 0 auto;

        @media (max-width: 640px) {
          display: block;
          margin: 0 auto;
          padding: 0px 0px 20px;
        }

        &::before {
          content: "";
          display: block;
          background: url(../img/common/icon-tel.svg) no-repeat;
          background-size: contain;
          width: 40px;
          height: 40px;
          position: absolute;
          top: calc(50% - 7px);
          left: -36px;
          transform: translateY(-50%);

          @media (max-width: 640px) {
            top: calc(50% - 10px);
            left: calc(50% - 120px);
            transform: translate(-50%, -50%);
          }

          &:hover {
            opacity: 0.8;
          }
        }

        & .tel-number {
          font-size: 53px;
          letter-spacing: 2px;
          font-family: "Noto Sans JP", sans-serif;
          line-height: 1;

          @media (max-width: 640px) {
            padding-top: 10px;
            display: block;
          }

          & b{
            font-weight: 500;

            @media (max-width: 640px) {
              display: none;
            }
          }

          & i{
            font-style: normal;
            display: none;
            @media (max-width: 640px) {
              display: inline;
              font-size: 38px;
              font-weight: 600;
              white-space: nowrap;
              margin-left: 30px;
            }
          }

        }

        & .hours {
          display: block;
          font-size: 13px;
          color: #555;
          padding-top: 10px;
          font-weight: bold;

          & .recruit_staff{
            display: none;
          }
        }

      }

    }



    & .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--key-color);
      color: #222;
      font-weight: 700;
      border-radius: 9999px;
      padding: 14px 26px;
      text-decoration: none;
      font-size: 28px;
      transition: 0.3s ease all;
      position: relative;

      @media (max-width: 640px) {
        width: 100%;
        font-size: 37px;
        display: block;
        border-radius: 20px;
        padding: 14px 26px 20px;
      }

      & span{

        & i{
          font-style: normal;
        }
      }

      & b{
        display: none;

        @media (max-width: 640px) {
          display: block;
          background: #FFFCF0;
          padding: 4px;
          border-radius: 10px;
          font-size: 14px;
          font-weight: normal;
        }
      }

      &::before {
        content: "";
        display: inline-block;
        width: 40px;
        height: 30px;
        background: url(../img/common/icon-mail.svg) no-repeat center / contain;
      }

      &::after {
        content: "";
        display: inline-block;
        width: 22px;
        height: 8px;
        background: url(../img/top/icon-contact-arrow_r.svg) no-repeat center / contain;
        margin-left: 20px;

        @media (max-width: 640px) {
          content: none;
        }
      }

      &:hover {
        opacity: 0.9;
        transform: translateY(-2px);
      }
    }

  }


}

/* ── 中ページ共通 ─────────────────────────────── */

.table-design01 {
  width: 100%;
  margin-bottom: 60px;

  @media (max-width: 640px) {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 1px #ccc;
  }

  & th,
  & td {
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: center;

    @media (max-width: 640px) {
      display: block;
      border-bottom:none;
      text-align: center;
    }
  }

  & th {
    width: 200px;
    font-weight: 700;
    text-align: left;
    font-size: 16px;
    border-right: 30px solid #fff;

    @media (max-width: 640px) {
      width: 100%;
      background: #F5F5F5;
      border-right: none;
      text-align: center;
    }
  }

  & td {
    font-size: 16px;
    line-height: 1.8;

    & .googlemap_btn {
      display: inline-block;
      background: #ffe166;
      color: #000;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      border-radius: 30px;
      padding: 8px 20px;
      margin-left: 10px;
      transition: background 0.3s ease;

      &:hover {
        background: #ffcf00;
      }

      @media (max-width: 640px) {
        display: block;
        margin-top: 10px;
      }
    }
  }

  & tr:last-of-type{

    & th,
    & td {
      border-bottom: none;
    }
  }
}


.table-design02 {
  width: 100%;
  margin-bottom: 60px;
  box-shadow: 0 0 0 1px #e5e5e5;
  border-radius: 10px;
  overflow: hidden;

  & thead{
    & th{
      padding: 18px 0;
      background: #FFFBE6;
      border-bottom: 1px solid #e5e5e5;

      @media (max-width: 640px) {
        border-bottom: none;
      }
    }
  }

  & tbody{

    & th,
    & td {
      padding: 16px 0;
      border-bottom: 1px solid #e5e5e5;
      vertical-align: center;

      @media (max-width: 640px) {
        display: block;
        border-bottom:none;
      }
    }

    & th {
      width: 200px;
      font-weight: 700;
      text-align: center;
      font-size: 16px;
      border-right: 1px solid #e5e5e5;

      @media (max-width: 640px) {
        width: calc(100% - 40px);
        background: #F5F5F5;
        margin: 20px;
        border-radius: 10px;
      }

      & .small_caution{
        display: block;
        font-size: 14px;
        font-weight: normal;
      }
    }

    & td {
      font-size: 16px;
      line-height: 1.8;
      padding: 24px;

      @media (max-width: 640px) {
        padding: 0 18px;
      }
    }

    & tr:last-of-type{

      & th,
      & td {
        border-bottom: none;
      }

      & td {
        @media (max-width: 640px) {
          padding: 0 18px 18px;
        }
      }
    }
  }
}


.table-design03 {
  width: 100%;
  margin-bottom: 60px;
  box-shadow: 0 0 0 1px #e5e5e5;
  border-radius: 10px;
  overflow: hidden;

  & tbody{

    & th,
    & td {
      padding: 18px 30px;
      border-bottom: 1px solid #e5e5e5;
      vertical-align: center;

      @media (max-width: 640px) {
        display: block;
        border-bottom:none;
        text-align: center;
      }
    }

    & th {
      width: 200px;
      font-weight: 700;
      text-align: center;
      font-size: 16px;
      border-right: 1px solid #e5e5e5;
      background: #F4F4F4;

      @media (max-width: 640px) {
        width: 100%;
        background: #F5F5F5;
        text-align: center;
      }
    }

    & td {
      font-size: 16px;
      line-height: 1.8;
      position: relative;

      @media (max-width: 640px) {
        padding: 0px 18px;
        text-align: left;

        &:first-of-type{
          padding: 18px 18px 0;
        }

        &:last-of-type{
          padding: 0 18px 18px;
        }
      }

      & ul{
        @media (max-width: 640px) {
          /* list-style-type: disc; */
          margin-left: 1em;
        }
      }

      &::after{
        content: "";
        display: block;
        width: 1px;
        height: 70%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background: #e5e5e5;

        @media (max-width: 640px) {
          content: none;
        }
      }

      &:last-of-type::after{
        content: none;
      }
    }

    & tr:last-of-type{

      & th,
      & td {
        border-bottom: none;
      }
    }
  }
}


/* linkbtn */
.common_linkbtn {
  display: table;
  width: 424px;
  align-items: center;
  gap: 10px;
  background: var(--key-color);
  color: #222;
  font-weight: 700;
  border-radius: 9999px;
  padding: 18px;
  text-decoration: none;
  font-size: 28px;
  transition: 0.3s ease all;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 0 10px #FFFCEB;
  text-align: center;

  @media (max-width: 640px) {
    width: 100%;
    padding: 20px;
    font-size: 24px;
    display: block;
  }

  &::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(../img/common/common_link_arrow.svg) no-repeat center / contain;
    margin-left: 20px;
    top: 50%;
    right:14px;
    transform: translateY(-50%);
  }

  &:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }
}









