@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
@media screen and (min-width: 680px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #faf7f0;
  color: #333333;
}

p {
  line-height: 1.8;
  font-weight: 600;
}

.red {
  color: #ea5504;
}

a {
  text-decoration: none;
  color: inherit;
}

a.alink {
  text-decoration: underline;
}

section {
  padding: 3rem 0;
}

.narrow {
  width: min(600px, 80vw);
  margin: auto;
}

.wide {
  line-height: 2;
  font-weight: 600;
}

.p-padding {
  padding: 2rem;
}
@media (max-width: 768px) {
  .p-padding {
    padding: 1rem;
  }
}

h1 {
  font-size: 1.5rem;
}

h2 {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}
h2 span {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  display: block;
  color: #138581;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  letter-spacing: 0.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
h4 span {
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
}

.hamburger-outer {
  position: fixed;
  top: 15px;
  right: 5px;
  z-index: 200;
  width: 60px; /* タップ領域 */
  height: 60px;
  background: #138581;
  border-radius: 100px;
  display: grid;
  place-items: center; /* 中央寄せ */
  cursor: pointer;
  overflow: hidden; /* 角の欠け対策 */
}
@media (max-width: 768px) {
  .hamburger-outer {
    width: 60px; /* タップ領域 */
    height: 60px;
  }
}

.hamburger {
  position: relative; /* ← これが重要（線の基準） */
  width: 25px;
  height: 22px;
}
@media (max-width: 768px) {
  .hamburger {
    width: 25px;
  }
}

.hamburger__line {
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 300ms ease;
  transform: rotate(0deg);
}

/* 線の位置（通常） */
.hamburger__line:nth-child(1) {
  top: 0px;
}

.hamburger__line:nth-child(2) {
  top: 9px;
}

.hamburger__line:nth-child(3) {
  top: 18px;
}

/* ×変形（2本） */
/* ×変形（3本） */
.hamburger.open .hamburger__line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger__line:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* メニュー本体 */
.menu {
  flex-direction: column;
  display: flex;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 300ms ease;
  width: min(400px, 70vw);
  background: rgba(19, 133, 129, 0.8470588235);
  text-align: center;
  color: white;
  padding: 40px 40px 20px 40px;
  gap: 30px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 150;
  border-radius: 0 0 0 30px;
}

.menu__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  color: inherit;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
  justify-content: center;
  letter-spacing: 0.1rem;
}

.menu__item:last-child {
  border-bottom: none;
}

/* 初期状態 */
#menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.3s;
  visibility: hidden; /* ← ここを使うなら… */
}

/* 開いた状態 */
#menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible; /* ← これを必ず入れる */
}

.hero {
  position: relative;
  height: 95vh;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  background-color: #f9f7ef;
}
.hero .hero-illustration {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 50%;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}
@media (max-width: 768px) {
  .hero .hero-illustration {
    width: 80%;
    top: 5%;
    right: 50%;
    transform: translateX(50%);
  }
}
.hero .hero-illustration img {
  width: 100%;
  height: auto;
}
.hero .hero-illustration img.js-yure-calendar, .hero .hero-illustration img.js-yure-document {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center center;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 46vw;
  padding-left: 5vw;
}
@media (max-width: 768px) {
  .hero-content {
    width: 100%;
    padding-left: 0;
    padding-top: 350px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 14px;
  }
}

.marker {
  background-color: yellow;
  padding: 0 2px;
}

#top-btns {
  display: flex;
  gap: 20px;
  padding: 20px;
}
#top-btns a {
  flex: 1;
}
@media (max-width: 768px) {
  #top-btns {
    display: none;
  }
}

.custom-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #138581;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  width: 100%;
  padding: 1rem;
}
.custom-button img {
  width: 120px;
  height: auto;
}
.custom-button:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}
.custom-button:active {
  box-shadow: none;
  transform: translateY(4px);
}

.tel-banner {
  position: absolute;
  top: 15px;
  right: 80px;
  background-color: #138581;
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 5px 10px;
  color: white;
  transition: all 0.3s ease;
  width: 40vw;
  box-sizing: border-box;
  z-index: 100;
}
@media (max-width: 768px) {
  .tel-banner {
    display: none;
  }
}

.tel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.tel-item:hover {
  opacity: 0.8;
}
.tel-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
.tel-item .city-name {
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .tel-item .city-name {
    font-size: 14px;
  }
}
.tel-item .tel-number {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 3.2vw, 17px);
  letter-spacing: 0.02rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.tel-item .tel-number img,
.tel-item .tel-number svg {
  width: clamp(14px, 3vw, 16px);
  height: auto;
  margin-right: 4px;
}

.support-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .support-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.support-card {
  background-color: white;
  border-radius: 30px;
  padding: 40px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.support-card .support-image {
  margin-bottom: 30px;
  height: 180px;
  display: flex;
  align-items: center;
}
.support-card .support-image img {
  max-width: 100%;
  height: auto;
}
.support-card .support-number {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  color: #138581;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.support-card .support-number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #138581;
}
.support-card .support-title {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: bold;
}
.support-card .support-text {
  line-height: 1.8;
  text-align: left;
}

.custom-shape-divider-top-1770710846 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1770710846 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 54px;
}

.custom-shape-divider-top-1770710846 .shape-fill {
  fill: #faf7f0;
}

#nayami {
  background-color: #f0f0f0;
}

.problem-container {
  position: relative;
  height: 500px;
}
.problem-container .problem-main-visual {
  width: 300px;
  margin: 0 auto;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.problem-container .bubble {
  position: absolute;
  opacity: 0;
}
.problem-container .bubble img {
  width: 250px;
}
@media (max-width: 768px) {
  .problem-container .bubble img {
    width: 150px;
  }
}
.problem-container .bubble.b1 {
  top: 10%;
  left: 10%;
}
.problem-container .bubble.b2 {
  top: 15%;
  right: 10%;
}
@media (max-width: 768px) {
  .problem-container .bubble.b2 {
    right: 3%;
  }
}
.problem-container .bubble.b3 {
  top: 35%;
  left: 0%;
}
@media (max-width: 768px) {
  .problem-container .bubble.b3 {
    top: 65%;
  }
}
.problem-container .bubble.b4 {
  top: 45%;
  right: 0%;
}
@media (max-width: 768px) {
  .problem-container .bubble.b4 {
    top: 75%;
  }
}
.problem-container .bubble.b5 {
  top: 65%;
  left: 10%;
}
@media (max-width: 768px) {
  .problem-container .bubble.b5 {
    top: 80%;
    left: 20%;
  }
}

.arrow {
  position: absolute;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
}
.arrow img {
  width: 80px;
}

.animation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 5rem auto 6rem;
}
@media (max-width: 768px) {
  .animation-container {
    gap: 10px;
  }
}

img.star {
  width: 80px;
}
@media (max-width: 768px) {
  img.star {
    width: 40px;
  }
}

img.text-svg {
  display: block;
  height: auto;
  width: min(500px, 80vw);
}
@media (max-width: 768px) {
  img.text-svg {
    width: 60vw;
  }
}

/* 文字を隠すためのラッパー */
.title-wrapper {
  overflow: hidden;
}

/* 星の初期設定 */
.star {
  transform-origin: center; /* 中心から拡大縮小させるために必須 */
  visibility: hidden; /* 最初のチラつき防止 */
}

.teian-box {
  margin-bottom: 5rem;
}
.teian-box h3 {
  font-size: clamp(1.3rem, 0.818rem + 0.91vw, 1.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .teian-box h3 {
    text-align: center;
  }
}
.teian-box h3 span {
  color: #138581;
  margin-right: 0.7rem;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .teian-box h3 span {
    display: block;
  }
}
.teian-box img {
  border-radius: 20px;
}
@media (max-width: 768px) {
  .teian-box img {
    margin-bottom: 2rem;
  }
}

.star-back {
  background-image: url(img/kira-pale.svg), url(img/kira-pale.svg);
  background-size: 120px;
  background-position: top 0% right 5%, bottom 30% left 40%;
  background-repeat: no-repeat;
}

.flow-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 3rem auto;
  max-width: 900px;
}

.flow-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .flow-card {
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 60px;
    gap: 40px;
  }
}
.flow-card .flow-text {
  flex: 1;
  text-align: left;
}
.flow-card .flow-text .flow-header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}
.flow-card .flow-text .flow-header .flow-num {
  font-size: 3rem;
  font-weight: 600;
  color: #138581;
  line-height: 1;
}
.flow-card .flow-text .flow-header .flow-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .flow-card .flow-text .flow-header .flow-title {
    font-size: 1.2rem;
  }
}
.flow-card .flow-text .flow-desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 500;
}
.flow-card .flow-text .flow-btn-contact {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #138581;
  color: #333;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #fff;
}
.flow-card .flow-text .flow-btn-contact:hover {
  background-color: #138581;
  color: #fff;
}
.flow-card .flow-image {
  width: 100%;
  width: 200px;
}
@media (min-width: 768px) {
  .flow-card .flow-image {
    flex: 0 0 25%;
  }
}
.flow-card .flow-image img {
  width: 100%;
  height: auto;
  display: block;
}

.support-box {
  max-width: 900px;
  margin: 0 auto;
  color: white;
  padding: 2rem 4rem;
  background-color: #138581;
  border-radius: 30px;
}
.support-box h2 span {
  color: rgba(255, 255, 255, 0.795) !important;
}
@media (max-width: 768px) {
  .support-box {
    padding: 1.5rem;
  }
}

#qa {
  background-image: url(img/ic-back-paper.svg), url(img/ic-back-paper.svg);
  background-size: 265px;
  background-repeat: no-repeat;
  background-position: right top, left bottom;
}

#qa .container {
  max-width: 900px;
  margin: 0 auto;
}

/* 各Q&Aの塊 */
.qa-item {
  border-top: 1px solid #dcd6c8;
  padding: 30px 0;
}

/* 最後の項目の下に線を入れる場合 */
.qa-item:last-child {
  border-bottom: 1px solid #dcd6c8;
}

.q-row,
.a-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.a-row {
  margin-bottom: 0;
}

/* アイコン共通 */
.icon-q,
.icon-a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

/* Qの色（ティール系） */
.icon-q {
  background-color: #40a5a5;
}

/* Aの色（オレンジ系） */
.icon-a {
  background-color: #e85a16;
}

/* テキスト部分 */
.text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  padding-top: 8px; /* アイコンとの高さ微調整 */
}

.q-row .text {
  font-weight: bold;
}

/* スマホ表示の調整 */
@media (max-width: 768px) {
  .icon-q,
  .icon-a {
    min-width: 36px;
    height: 36px;
    font-size: 18px;
    margin-right: 12px;
  }
  .text {
    font-size: 15px;
  }
}
#awasete {
  background-color: #fff;
  border-radius: 60px;
  text-align: center;
  padding: 2rem;
}

#awasete-il {
  margin-top: -8rem;
}

.container-900 {
  max-width: 900px;
  margin: 0 auto;
}

.item-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .item-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.item {
  color: white;
  background-color: #138581;
  border-radius: 40px;
  padding: 1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  font-size: 1.1rem; /* テキストのサイズを調整 */
}

.about-box {
  background-color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 4rem;
  border-radius: 30px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid #dee2e6;
  text-align: left;
  vertical-align: top;
}

/* スマホ用設定 */
@media (max-width: 767px) {
  .info-table tr {
    display: block;
    padding: 1rem 0;
  }
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 0.25rem 0;
  }
}
.officebox {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.officebox h3 {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  color: #1a1a1a;
  background-color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

#footer {
  padding: 3.5rem 0 0;
  position: relative;
}
#footer .container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    align-items: center;
  }
}

#totop {
  position: absolute;
  right: 3%;
  bottom: 3%;
  display: flex;
}

.copyright {
  margin: 2rem;
  font-size: 13px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #a8a8a8;
}

/* カードの基本スタイル */
.office-card {
  flex: 1;
  background: #fff;
  border-radius: 30px;
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .office-card {
    width: 100%;
  }
}
.office-card img {
  width: 20px;
  margin-right: 5px;
}

.office-card h2 {
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
}

.office-name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 25px;
  color: #333;
}

/* ボタン共通設定 */
.btn {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 25px;
  padding: 12px 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 18px;
  transition: opacity 0.3s;
}

.btn-mail {
  font-size: 15px;
}

.btn:hover {
  opacity: 0.8;
  color: white;
}

/* 各オフィスのカラー設定 */
/* 東京 */
.tokyo h2 {
  color: #208682;
}

.tokyo .btn {
  background-color: #15827d;
}

/* 横浜 */
.yokohama h2 {
  color: #fcc055;
}

.yokohama .btn {
  background-color: #fdb933;
}

/* 名古屋 */
.nagoya h2 {
  color: #b8a673;
}

.nagoya .btn {
  background-color: #b8a36d;
}

/* 三重 */
.mie h2 {
  color: #738396;
}

.mie .btn {
  background-color: #404c5a;
}/*# sourceMappingURL=jac.css.map */