.grecaptcha-badge { visibility: hidden; }

html {
  font-size: 10px; /* 1rem = 10px に設定 */
  font-family: "Noto Sans JP", sans-serif;
  scroll-padding: 200px;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  margin: 0 !important;
}
picture {
  display: block;
  line-height: 0;
}

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

.page-width {
  max-width: var(--page-max-width);
  min-width: var(--page-min-width);
  margin: auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

input:-webkit-autofill {
  /* 色はinput要素の背景色（ここでは#fff）にそろえる */
  box-shadow: 0 0 0px 999px #fff inset;
}

input[type="text"]::placeholder {}

/* Microsoft Edge */
input[type="text"]::-ms-input-placeholder {}

/* Internet Explorer */
input[type="text"]:-ms-input-placeholder {}

textarea::placeholder {
  /* プレースホルダーの文字色を指定 */
}

input {
  border-radius: 5px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid #CCC;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}

textarea {
  border-radius: 5px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid #CCC;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom_wrap {
  width: 100%;
  overflow: hidden;
}

.zoom-in-section {
  opacity: 0.6;
  transform: scale(1.2); /* 初期状態を拡大 */
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}

.zoom-in-section.is-visible {
  opacity: 1;
  transform: scale(1); /* 通常のサイズに戻す */
}

.fade-in-list {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-list.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.padding-width {
  padding-left: 4%;
  padding-right: 4%;
}

.google_map_wrap {
  width: 100%;
  filter: grayscale(100%);
}
.google_map_wrap iframe {
  width: 100%;
}

.mb0 {
  margin-bottom: 0 !important;
}
p:last-of-type {
  margin-bottom: 0;
}

main {
  margin-top: 100px;
}
h2.sub_page_title {
  width: 100%;
  font-size: var(--font-x);
  font-weight: bold;
  text-align: left;
  padding-left: var(--section-margin2);
  padding-bottom: var(--section-margin2);
  margin-bottom: var(--section-margin4);
  border-bottom: 4px solid transparent;
  background: linear-gradient(to right, var(--primary-color) 0 30%, #ccc 30% 100%);
  -webkit-background-clip: text, border-box;
  background-clip: border-box;
  background-position: 0 100%;
  background-size: 100% 4px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 751px) {
  .moca_sp {
    display: none !important;
  }
  .moca_pc {
    display: initial;
  }
  .main_wrap {
    max-width: var(--page-max-width);
    min-width: var(--page-min-width);
    margin: auto;
    padding-left: 2%;
    padding-right: 2%;
  }
  h2.title {
    width: 100%;
    display: block;
    font-size: var(--font-xx);
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.4rem;
    text-align: center;
    position: relative;
    color: var(--primary-color);
    margin-bottom: 30px;
  }
  h3.sub {
    width: 100%;
    font-size: var(--font-l);
    font-weight: 700;
    letter-spacing: 0.4rem;
    color: var(--secondary-color);
    text-align: center;
    margin: 0 0 4rem;
  }
  a {
    font-size: var(--font-m);
    transition: opacity 0.5s;
  }
  a:hover {
    opacity: 0.6;
  }
  p {
    font-size: var(--font-m);
    line-height: 180%;
    margin-bottom: 1.2rem;
    letter-spacing: 0.1rem;
  }
  p:last-child {
    margin-bottom: 0;
  }
  .btn_wrap {
    width: 100%;
    text-align: center;
  }
  a.more_btn {
    display: inline-block;
    background: linear-gradient(90deg, #0056ff 0%, #00bfff 100%);
    color: #fff;
    font-size: var(--font-m);
    font-weight: 700;
    border-radius: 24px;
    padding: 0.8em 2.5em;
    margin-top: 1em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: opacity 0.3s, box-shadow 0.3s, transform 0.2s;
    border: none;
    width: auto;
    min-width: 160px;
    max-width: 200px;
  }
  img.carrot_btn {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 10px;
    top: -50px;
    z-index: -1;
  }
  .sub_header {
    width: 100%;
    margin: auto;
    min-width: var(--page-min-width);
    position: relative;
    overflow: hidden;
  }
  .sub_header .sub_title {
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4%;
    background-color: #FFF;
    padding: var(--section-margin3) var(--section-margin2);
  }
  .sub_header h1 {
    font-size: var(--font-xx);
    font-weight: 700;
    letter-spacing: 0.4rem;
    color: var(--primary-color);
  }
  img.head-thumb {
    height: auto;
  }
  img.sub_header_logo {
    width: 100%;
    max-width: 200px;
  }
}

@media screen and (max-width: 750px) {
  html {
    scroll-padding: 20px;
  }
  main {
    margin-top: 40px;
  }
  .moca_pc {
    display: none !important;
  }
  .moca_sp {
    display: block;
  }
  .main_wrap {
    width: 100%;
    margin: auto;
    padding-left: 4%;
    padding-right: 4%;
  }
  h2.title {
    width: 100%;
    display: block;
    font-size: var(--font-x);
    font-weight: 700;
    letter-spacing: 0.4rem;
    text-align: center;
    position: relative;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.5;
  }
  h3.sub {
    width: 100%;
    font-size: var(--font-l);
    font-weight: 700;
    letter-spacing: 0.4rem;
    color: var(--secondary-color);
    text-align: center;
    margin: 0 0 4rem;
  }
  a {
    font-size: var(--font-m);
    transition: opacity 0.5s;
  }
  a:hover {
    opacity: 0.6;
  }
  p {
    font-size: var(--font-m);
    line-height: 180%;
    margin-bottom: 1.2rem;
    letter-spacing: 0.1rem;
  }
  p:last-child {
    margin-bottom: 0;
  }
  .btn_wrap {
    width: 100%;
    text-align: center;
  }
  .btn_wrap {
    width: 100%;
    text-align: center;
  }
  a.more_btn {
    display: inline-block;
    background: linear-gradient(90deg, #0056ff 0%, #00bfff 100%);
    color: #fff;
    font-size: var(--font-m);
    font-weight: 700;
    border-radius: 24px;
    padding: 0.8em 2.5em;
    margin-top: 1em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: opacity 0.3s, box-shadow 0.3s, transform 0.2s;
    border: none;
    width: auto;
    min-width: 160px;
    max-width: 200px;
  }
  img.carrot_btn {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 10px;
    top: -30px;
    z-index: -1;
  }
  .more_btn:hover {
    color: #fff;
  }
  .more_btn:hover::before {
    left: 0;
  }
  .sub_header {
    width: 100%;
    margin: var(--section-margin) auto 0;
    min-width: var(--page-min-width);
    position: relative;
    overflow: hidden;
  }
  .sub_header .sub_title {
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4%;
    background-color: #FFF;
    padding: var(--section-margin3) var(--section-margin2);
  }
  .sub_header h1 {
    font-size: var(--font-l);
    font-weight: 700;
    letter-spacing: 0.4rem;
    color: var(--primary-color);
  }
  .sub_header img.head-thumb {
    width: 100%;
    height: auto;
  }
  .sub_header img.contact {
    width: 10%;
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 50%;
    transform: translate(-400%, 340%);
  }
}


