@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  background-color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #6FBA2C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 16px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header-logo {
  height: 32px;
}

/* ハンバーガーメニューボタン */
.hamburger-menu {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  z-index: 101;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFF;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background-color: rgba(255, 255, 255, 0.8);
}

/* メインコンテナ */
.hero {
  position: relative;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  background-image: url("/sugoi/yosan-simulation/images/sim_bg-sp.png");
  background-size: contain;
  background-position: 50% 97%;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .hero {
    background-image: url("/sugoi/yosan-simulation/images/sim_bg-pc.jpg");
  }
}

@media (min-width: 768px) {
  .hero {
    max-width: 1500px;
    margin: 0 auto;
  }
}

/* コンテンツエリア */
.hero-content {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 55px 10% 160px;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 70px 0 160px;
  }
}

/* コピーエリア */
.copy-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

@media (max-width: 767px) {
  .copy-area {
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .copy-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: center;
    align-self: center;
  }
}

/* アニメーション初期状態 */
.copy-line,
.sub-copy-img {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.copy-line.show,
.sub-copy-img.show {
  opacity: 1;
}

.cta-area {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  -o-transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.cta-area.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.copy-line {
  height: auto;
}

/* SP: 縦に3つ並べる */
.copy-line-1 {
  width: 100%;
  max-width: 309px;
}

.copy-line-2 {
  width: 100%;
  max-width: 258px;
}

.copy-line-3 {
  width: 100%;
  max-width: 388px;
}

/* SP: copy-line-rowは縦並び */
.copy-line-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

/* PC: 2と3を横並び */
@media (min-width: 768px) {
  .copy-line-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 8px;
  }
}

/* パターンごとのコピー調整 */
/* pattern-1 SP */
@media (max-width: 767px) {
  .hero.pattern-1 .copy-area {
    gap: 10px;
  }
  .hero.pattern-1 .copy-line-1 {
    width: 79%;
    max-width: 309px;
  }
  .hero.pattern-1 .copy-line-2 {
    width: 68%;
    max-width: 258px;
  }
  .hero.pattern-1 .copy-line-row {
    gap: 10px;
  }
}

/* pattern-2 SP */
@media (max-width: 767px) {
  .hero.pattern-2 .copy-line-1 {
    width: 96%;
    max-width: 309px;
  }
  .hero.pattern-2 .copy-line-3 {
    width: 63%;
    max-width: 388px;
    margin-top: 3px;
  }
}

/* pattern-2 PC */
@media (min-width: 768px) {
  .hero.pattern-2 .copy-line-3 {
    width: 100%;
    max-width: 181px;
  }
}

/* pattern-4 SP */
@media (max-width: 767px) {
  .hero.pattern-4 .copy-line-1 {
    width: 89%;
    max-width: 309px;
  }
  .hero.pattern-4 .copy-line-2 {
    width: 60%;
    max-width: 258px;
    margin-top: 3px;
  }
  .hero.pattern-4 .copy-line-3 {
    width: 83%;
    max-width: 388px;
    margin-top: 4px;
  }
}

/* pattern-4 PC */
@media (min-width: 768px) {
  .hero.pattern-4 .copy-line-1 {
    width: 100%;
    max-width: 309px;
    margin-bottom: 7px;
  }
}

/* pattern-3 SP */
@media (max-width: 767px) {
  .hero.pattern-3 .copy-line-2 {
    width: 84%;
    max-width: 258px;
    margin-top: 9px;
  }
  .hero.pattern-3 .copy-line-3 {
    width: 88%;
    max-width: 388px;
    margin-top: 8px;
  }
}

/* pattern-3 PC */
@media (min-width: 768px) {
  .hero.pattern-3 .copy-line-1 {
    width: 100%;
    max-width: 380px;
    margin-bottom: 7px;
  }
  .hero.pattern-3 .copy-line-2 {
    width: 100%;
    max-width: 318px;
  }
}

/* CTAエリア */
.cta-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 3px;
}

@media (min-width: 768px) {
  .cta-area {
    margin-top: 24px;
  }
}

.sub-copy-img {
  margin-top: 22px;
  margin-bottom: 19px;
  max-width: 402px;
  width: 100%;
}

.sub-copy-sp {
  display: none;
}

@media (max-width: 767px) {
  .sub-copy-pc {
    display: none;
  }
  .sub-copy-sp {
    display: block;
  }
  .sub-copy-img {
    width: 84%;
  }
}

.cta-agree {
  margin-bottom: 10px;
}

.cta-button {
  margin-bottom: 12px;
}

.cta-agree {
  font-size: 12px;
  color: #333;
}

.cta-agree a {
  color: #0A6AC0;
  text-decoration: underline;
}

.cta-button {
  background: #F37E00;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 25px 13px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .cta-button {
    padding: 16px 48px;
  }
}

.cta-button:hover {
  background: #e06f00;
}

.cta-button-label-small {
  font-size: 11px;
  font-weight: normal;
  opacity: 0.9;
  white-space: nowrap;
  color: #fff;
}

.cta-button-label {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 1px;
  color: #fff;
}

.cta-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.cta-links a {
  color: #0A6AC0;
  text-decoration: underline;
}

.cta-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  color: #333;
}

@media (min-width: 768px) {
  .cta-meta {
    font-size: 12px;
    margin-top: 8px;
  }
}

.cta-meta span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 12px;
  line-height: 1;
}

@media (min-width: 768px) {
  .cta-meta span {
    padding: 0 15px;
  }
}

.cta-meta span:not(:last-child) {
  border-right: 1px solid #333;
}

/*# sourceMappingURL=../../../_maps/sugoi/yosan-simulation/css/hero.css.map */
