@charset "UTF-8";
/* CSS Document */
p, dl, ul, li, a, dl, dt, dd {
  margin: 0; }

p {
  line-height: 2em; }
  @media screen and (max-width: 575px) {
    p {
      line-height: 1.85em; } }

body {
  letter-spacing: 0.03em;
  text-align: justify; }

#wrapper {
  overflow: hidden; }

a {
  transition: .2s ease-in-out; }

.link-box a {
  background: #289c4c;
  max-width: 200px;
  padding: 1rem 3rem;
  color: #fff;
  border: 1px solid #289c4c;
  border-radius: 5px; }
  .link-box a:hover {
    background: #fff;
    color: #289c4c; }

h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 64px;
  font-size: 6.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 3rem; }
  @media screen and (max-width: 575px) {
    h3 {
      font-size: 55px;
      font-size: 5.5rem;
      margin-bottom: 2rem; } }
  h3::first-letter {
    color: #289c4c; }
  h3 span {
    font-size: 16px;
    font-size: 1.6rem;
    display: block;
    letter-spacing: 0.04em; }

.anchor {
  margin-top: -70px;
  padding-top: 70px; }

header {
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: 0.3s;
  background: #fff; }

.box-header {
  background-color: inherit;
  height: 64px;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px 0 5rem; }
  @media screen and (max-width: 767px) {
    .box-header {
      padding: 0 2rem; } }
  .box-header .box-sitename {
    margin: 0;
    display: flex;
    align-items: center; }
    .box-header .box-sitename a {
      display: contents; }
    .box-header .box-sitename img {
      display: inline-block;
      width: 280px;
      margin-right: 2rem; }
      @media screen and (max-width: 575px) {
        .box-header .box-sitename img {
          width: 200px; } }
    .box-header .box-sitename span {
      font-size: 10px;
      font-size: 1.0rem;
      color: #333; }
      @media screen and (max-width: 767px) {
        .box-header .box-sitename span {
          display: none; } }
  .box-header .box-sitemenu {
    display: flex;
    gap: 3rem;
    margin: 0;
    /* メールアイコン画像を背景に */ }
    .box-header .box-sitemenu li {
      display: flex;
      align-items: center; }
      .box-header .box-sitemenu li a {
        color: #333;
        font-size: 14px;
        font-size: 1.4rem;
        transition: 0.3s; }
        .box-header .box-sitemenu li a:hover {
          color: #fabe00; }
    .box-header .box-sitemenu .contact-button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 64px;
      /* 正方形 */
      height: 64px;
      background-color: #fabe00;
      transition: 0.3s; }
    .box-header .box-sitemenu .contact-button::after {
      content: "";
      display: block;
      width: 40px;
      height: 23px;
      background-image: url("../img/mail-icon.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }
    @media screen and (max-width: 991px) {
      .box-header .box-sitemenu {
        display: none; } }

/* 全体調整CSS */
.hamburger-menubox * {
  font-size: 16px; }

.hamburger-menubox li {
  font-size: 14px; }

/* hamburgerここから */
/* inputを非表示 */
.input-hidden {
  display: none; }

/* label */
.hamburger-switch {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
  width: 4em;
  height: 4em;
  background: #289c4c; }

/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-1:checked ~ .hamburger-switch {
  position: fixed; }

/* ハンバーガーアイコン */
.hamburger-switch-line1,
.hamburger-switch-line1:before,
.hamburger-switch-line1:after {
  width: 35px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: .3s;
  content: ""; }

.hamburger-switch-line1 {
  transform: translate(-50%, -50%); }
  .hamburger-switch-line1::before {
    transform: translate(-50%, -1000%); }
  .hamburger-switch-line1::after {
    transform: translate(-50%, 1000%); }

/* ハンバーガーアイコン･アニメーション */
#hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1 {
  width: 0; }
  #hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1::before {
    transform: rotate(45deg) translate(-40%, 1400%); }
  #hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1::after {
    transform: rotate(-45deg) translate(-40%, -1400%); }

/* メニューエリア */
.hamburger-menuwrap {
  position: fixed;
  height: 100%;
  background: #fff;
  padding: 5em 7% 2em;
  z-index: 9998;
  transition: .3s;
  overflow-y: scroll;
  top: 0;
  left: 100%;
  width: 45%; }
  @media screen and (max-width: 991px) {
    .hamburger-menuwrap {
      width: 65%; } }
  @media screen and (max-width: 575px) {
    .hamburger-menuwrap {
      width: 55%; } }

/* メニューリスト */
.hamburger-menulist {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 575px) {
    .hamburger-menulist {
      flex-wrap: wrap; } }
  .hamburger-menulist li.menubox {
    width: 45%; }
    @media screen and (max-width: 575px) {
      .hamburger-menulist li.menubox {
        width: 100%; } }
    .hamburger-menulist li.menubox div {
      margin-bottom: 5rem; }
      @media screen and (max-width: 575px) {
        .hamburger-menulist li.menubox div {
          margin-bottom: 3rem; } }
      .hamburger-menulist li.menubox div a.main-link {
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: bold;
        display: flex;
        border-bottom: 0.5px solid #333;
        position: relative;
        color: #289c4c;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        align-items: center;
        justify-content: space-between;
        transition: 0.3s; }
        .hamburger-menulist li.menubox div a.main-link:hover {
          color: #fabe00; }
        .hamburger-menulist li.menubox div a.main-link:hover span {
          transition: 0.3s;
          background-color: #fabe00; }
          .hamburger-menulist li.menubox div a.main-link:hover span::after {
            background-color: #fabe00; }
          .hamburger-menulist li.menubox div a.main-link:hover span::before {
            background-color: #fabe00; }
        .hamburger-menulist li.menubox div a.main-link span {
          position: relative;
          display: inline-block;
          width: 11px;
          height: 1px;
          margin: 10px 0;
          border-radius: 9999px;
          background-color: #333;
          transition: 0.3s; }
          .hamburger-menulist li.menubox div a.main-link span::after {
            content: "";
            position: absolute;
            top: calc(50% - -1px);
            right: 0;
            width: 8px;
            height: 1px;
            border-radius: 9999px;
            background-color: #333;
            transform-origin: calc(100% - 2px) 50%;
            transform: rotate(-45deg);
            background-color: inherit;
            transition: inherit; }
          .hamburger-menulist li.menubox div a.main-link span::before {
            content: "";
            position: absolute;
            top: calc(50% - 2px);
            right: 0;
            width: 8px;
            height: 1px;
            border-radius: 9999px;
            background-color: #333;
            transform-origin: calc(100% - 2px) 50%;
            transform: rotate(45deg);
            background-color: inherit;
            transition: inherit; }
      .hamburger-menulist li.menubox div ul li {
        line-height: 1.5; }
        .hamburger-menulist li.menubox div ul li a {
          font-size: 12px;
          font-size: 1.2rem;
          text-decoration: none;
          color: #333;
          display: inline-block;
          transition: 0.3s;
          position: relative; }
          .hamburger-menulist li.menubox div ul li a:hover {
            color: #fabe00; }

/* メニューエリア･アニメーション */
/* 右から */
#hamburger-1:checked ~ .hamburger-menuwrap {
  left: 55%; }
  @media screen and (max-width: 991px) {
    #hamburger-1:checked ~ .hamburger-menuwrap {
      left: 35%; } }
  @media screen and (max-width: 575px) {
    #hamburger-1:checked ~ .hamburger-menuwrap {
      left: 45%; } }

/* コンテンツカバー */
#hamburger-1:checked ~ .hamburger-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3, 3, 3, 0.5);
  display: block; }

.inner {
  width: 83%;
  margin: 0 auto; }
  @media screen and (max-width: 991px) {
    .inner {
      width: 90%; } }
  @media screen and (max-width: 767px) {
    .inner {
      width: 100%; } }

#contact-box {
  background-color: #f0f0ee;
  padding: 4rem 2rem 6rem; }
  #contact-box h3 {
    text-align: center; }
  #contact-box .inner {
    background: #fff;
    border-radius: 10px;
    padding: 4rem 0; }
    #contact-box .inner .d-flex {
      align-items: center;
      justify-content: center; }
      @media screen and (max-width: 767px) {
        #contact-box .inner .d-flex {
          flex-wrap: wrap;
          gap: 3rem; } }
      #contact-box .inner .d-flex .tel-box, #contact-box .inner .d-flex .mail-box {
        width: 50%;
        text-align: center; }
        @media screen and (max-width: 1199px) {
          #contact-box .inner .d-flex .tel-box, #contact-box .inner .d-flex .mail-box {
            width: 45%; } }
        @media screen and (max-width: 991px) {
          #contact-box .inner .d-flex .tel-box, #contact-box .inner .d-flex .mail-box {
            width: 40%; } }
        @media screen and (max-width: 767px) {
          #contact-box .inner .d-flex .tel-box, #contact-box .inner .d-flex .mail-box {
            width: 100%; } }
        #contact-box .inner .d-flex .tel-box h5, #contact-box .inner .d-flex .mail-box h5 {
          font-size: 1.8rem;
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 0.5rem; }
        #contact-box .inner .d-flex .tel-box p, #contact-box .inner .d-flex .mail-box p {
          margin-bottom: 1.5rem; }
        #contact-box .inner .d-flex .tel-box a, #contact-box .inner .d-flex .mail-box a {
          cursor: pointer;
          display: inline-block;
          border-radius: 5px;
          padding: 1rem 5rem;
          line-height: 40px;
          display: inline-flex;
          align-items: center; }
          @media screen and (max-width: 1199px) {
            #contact-box .inner .d-flex .tel-box a, #contact-box .inner .d-flex .mail-box a {
              padding: 1rem 4rem; } }
          @media screen and (max-width: 991px) {
            #contact-box .inner .d-flex .tel-box a, #contact-box .inner .d-flex .mail-box a {
              padding: 1rem 2rem; } }
          #contact-box .inner .d-flex .tel-box a:hover, #contact-box .inner .d-flex .mail-box a:hover {
            background-color: #fff; }
          #contact-box .inner .d-flex .tel-box a i, #contact-box .inner .d-flex .mail-box a i {
            margin-right: 1rem;
            font-size: 2.6rem;
            font-size: 26px; }
      #contact-box .inner .d-flex .tel-box {
        border-right: 1px solid #dbdcdc; }
        @media screen and (max-width: 767px) {
          #contact-box .inner .d-flex .tel-box {
            border-right: none; } }
        #contact-box .inner .d-flex .tel-box a {
          background: #fabe00;
          border: 1px solid #fabe00;
          color: #333;
          font-family: "Barlow Condensed", sans-serif;
          font-weight: 500;
          font-style: normal;
          font-size: 33px;
          font-size: 3.3rem;
          letter-spacing: 0.08em; }
          #contact-box .inner .d-flex .tel-box a:hover {
            color: #fabe00; }
      #contact-box .inner .d-flex .mail-box a {
        background: #289c4c;
        border: 1px solid #289c4c;
        color: #fff; }
        #contact-box .inner .d-flex .mail-box a:hover {
          color: #289c4c; }

footer {
  background-color: #fff; }
  footer .inner {
    padding: 4rem 0 3rem; }
  footer .d-flex {
    justify-content: space-between;
    gap: 2rem; }
    @media screen and (max-width: 991px) {
      footer .d-flex {
        flex-wrap: wrap; } }
    footer .d-flex .footer-about {
      margin-bottom: 8rem; }
      @media screen and (max-width: 991px) {
        footer .d-flex .footer-about {
          margin-bottom: 0; } }
      @media screen and (max-width: 575px) {
        footer .d-flex .footer-about {
          width: 100%; } }
      footer .d-flex .footer-about .logo-img {
        width: 380px; }
        @media screen and (max-width: 1199px) {
          footer .d-flex .footer-about .logo-img {
            width: 330px; } }
        @media screen and (max-width: 575px) {
          footer .d-flex .footer-about .logo-img {
            width: 300px; } }
      footer .d-flex .footer-about p {
        margin-top: 3rem;
        font-size: 1.4rem;
        font-size: 14px;
        color: #fff;
        line-height: 1.75; }
    footer .d-flex .footer-nav {
      display: flex;
      gap: 3rem; }
      @media screen and (max-width: 575px) {
        footer .d-flex .footer-nav {
          gap: 2rem; } }
      footer .d-flex .footer-nav div > a {
        display: block;
        color: #289c4c;
        border-bottom: 1px solid #333;
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem; }
      footer .d-flex .footer-nav div ul li a {
        color: #333;
        font-size: 14px;
        font-size: 1.4rem;
        transition: 0.3s; }
        @media screen and (max-width: 575px) {
          footer .d-flex .footer-nav div ul li a {
            font-size: 13px;
            font-size: 1.3rem; } }
        footer .d-flex .footer-nav div ul li a:hover {
          color: #fabe00; }
  footer .insta a:hover {
    opacity: 0.5; }
  footer .page-bottom {
    align-items: end; }
    footer .page-bottom .copyright {
      color: #333;
      font-size: 11px;
      font-size: 1.1rem; }
    footer .page-bottom #page-top {
      cursor: pointer;
      display: inline-block;
      width: 40px;
      height: 40px;
      transition: 0.3s;
      background-image: url("../img/top-button.svg");
      background-repeat: no-repeat;
      background-size: auto;
      transition: 0.2s ease-in-out; }
      footer .page-bottom #page-top:hover {
        opacity: 0.5; }

#ul-header {
  padding-top: 12rem; }
  @media screen and (max-width: 575px) {
    #ul-header {
      padding-top: 10rem; } }
  #ul-header .container {
    position: relative; }
  #ul-header h1 {
    position: relative;
    display: inline-block;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 77px;
    font-size: 7.7rem;
    color: #289c4c;
    background-color: #fff;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 2rem; }
    @media screen and (max-width: 575px) {
      #ul-header h1 {
        font-size: 55px;
        font-size: 5.5rem;
        letter-spacing: 0.07em;
        margin-bottom: 1rem; } }
    #ul-header h1 span {
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 600;
      margin-left: 1.5rem; }
      @media screen and (max-width: 575px) {
        #ul-header h1 span {
          font-size: 16px;
          font-size: 1.6rem;
          margin-left: 1rem; } }
    #ul-header h1::before {
      content: "";
      position: absolute;
      top: 50%;
      left: calc(-50vw + 50%);
      /* ← コンテナ中心基準で画面左端へ */
      right: 100%;
      /* ← h2の左端まで伸ばす */
      height: 1.5px;
      background-color: #289c4c;
      transform: translateY(-50%); }
      @media screen and (max-width: 575px) {
        #ul-header h1::before {
          content: none; } }
    #ul-header h1::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 100%;
      width: 2rem;
      height: 3px;
      background-color: #fff;
      transform: translateY(-50%); }
      @media screen and (max-width: 1199px) {
        #ul-header h1::after {
          width: 1rem; } }
      @media screen and (max-width: 575px) {
        #ul-header h1::after {
          content: none; } }
  #ul-header .ul-img {
    width: 96%;
    height: 300px;
    overflow: hidden;
    margin: 0 0 0 auto; }
    @media screen and (max-width: 991px) {
      #ul-header .ul-img {
        width: 95%;
        height: 260px; } }
    @media screen and (max-width: 767px) {
      #ul-header .ul-img {
        height: 220px; } }
    @media screen and (max-width: 575px) {
      #ul-header .ul-img {
        height: 180px; } }
    #ul-header .ul-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
      @media screen and (max-width: 991px) {
        #ul-header .ul-img img {
          object-position: 85% center; } }
