@charset "utf-8";

/* ==============================
共通
================================= */
:root {
  --primary-black: #333a3a;
  --primary-white: #fff;
  --primary-red: #ff0000;
  --primary-darkred: #c8161d;
  --primary-orange: #ff9d00;
  --primary-green: #005f41;
  --primary-lightgreen: #55c212;
  --primary-bluegreen: #00b1a2;
  --primary-yellow: #fff100;
  --primary-blue: #003d79;
  --primary-lightblue: #2c85d8;
  --primary-brown: #610d0e;
  --primary-lightbrown: #c46900;
  --primary-gray: #aaaaaa;
  --primary-lightgray: #d9d9d9;
  --primary-beage: #f1eee5;

  --gradation1: linear-gradient(135deg, #00c587, #005f41);
  --gradation2: linear-gradient(135deg, #ff0004, #c50000);

  --contentWidth: 89.3%;
  --contentPadding: 5.3%;

  --header-height: 60px; /* SP */
}
@media (min-width: 1024px) {
  :root {
    --header-height: 120px; /* PC */
  }
}
section {
  scroll-margin-top: var(--header-height);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Roboto", "Noto Sans JP", "Jost", Arial, sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;

  color: var(--primary-black);
  background-color: #fff;
  align-items: center;
  font-feature-settings: "palt";
  text-align: justify;
}

img {
  max-width: 100%;
  height: auto;
}

.spBr {
  display: block;
}

.pcBr {
  display: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.section__title {
  display: inline-block;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.tagline-wrapper {
  display: inline;
  background: linear-gradient(
    transparent 60%,
    /* 上部は透明 */ rgba(255, 192, 203, 0.6) 60%,
    /* 下部がピンクの半透明 */ rgba(255, 192, 203, 0.6) 100%
  );
}

.tagline {
  color: var(--primary-black);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 24px;
}

.text_white {
  color: var(--primary-white);
}
.text_yellow {
  color: var(--primary-yellow);
}
.text_darkred {
  color: var(--primary-darkred);
}
/*---------- common pc ----------*/
@media screen and (min-width: 769px) {
  html {
    /* scroll-padding-top: 80px; */
  }
  .spBr {
    display: none;
  }
  .pcBr {
    display: block;
  }
  .section__title {
    font-size: 4.8rem;
    font-weight: 700;
  }
  .tagline {
    font-size: 2rem;
  }
}
/* pc 769px */

/* ==============================
申込ボタン
================================= */
.btn-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}
.btn-readtxt {
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0 28px;
  margin-bottom: 10px;
}

/* 左の ／ */
.btn-readtxt::before {
  content: "＼";
  position: absolute;
  left: 0;
  top: 70%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: #999;
}

/* 右の ／ */
.btn-readtxt::after {
  content: "／";
  position: absolute;
  right: 0;
  top: 70%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: #999;
}

.ButtonAreaColumn1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.ButtonAreaColumn2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
/*---------- common pc ----------*/
@media screen and (min-width: 769px) {
  .ButtonAreaColumn2 {
    flex-direction: row;
    gap: 30px;
  }

  .btn-readtxt {
    font-size: 2rem;
  }

  /* 左の ／ */
  .btn-readtxt::before {
    content: "＼";
    position: absolute;
    left: -20px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: #999;
  }

  /* 右の ／ */
  .btn-readtxt::after {
    content: "／";
    position: absolute;
    right: -20px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: #999;
  }
}

/*ヘッダー内ボタンmini用*/
.ButtonAreaColumn-header {
  display: block;
  display: none;
}
/*---------- common pc ----------*/
@media screen and (min-width: 1024px) {
  .ButtonAreaColumn-header {
    display: block;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
}

/*ボタン大*/
.btn {
  position: relative;
  display: flex;
  align-items: center; /* ← 縦センター */
  justify-content: center; /* ← 横は中央寄せ */
  width: 330px;
  height: 70px;
  padding: 20px 30px 20px 0px; /* 右に矢印分の余白 */
  border-radius: 10px;
  background: linear-gradient(180deg, #00c587 0%, #005f41 100%);
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn span {
  font-size: 1.6rem;
  font-weight: 400;
}
.btn::after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* ← FA5はこれ必須 */
  font-size: 3rem;
  position: absolute;
  right: 25px; /* ボタン内右端 */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  pointer-events: none;
}

.btn:hover {
  filter: brightness(1.2);
  box-shadow: 3px 3px 0 0 #444444;
}

/*ボタン大オレンジ*/
.btn.btn-orange {
  background: var(--primary-orange);
}
.btn.btn-orange:hover {
  background: var(--primary-red);
}

/*---------- common pc ----------*/
@media screen and (min-width: 769px) {
  .btn {
    width: 500px;
    font-size: 2.4rem;
    height: 80px;
  }
  .btn span {
    margin-top: 7px;
    font-size: 2rem;
    font-weight: 400;
  }
  .btn.btn-orange {
    width: 300px;
  }
}
/* pc 769px */

/*ヘッダー内CTAボタン小*/
.btn-mini {
  position: relative;
  display: flex;
  align-items: center; /* ← 縦センター */
  justify-content: center; /* ← 横は中央寄せ */
  width: 200px;
  height: 50px;
  padding: 20px 20px 20px 0px; /* 右に矢印分の余白 */
  /* border-radius: 10px; */
  background: linear-gradient(180deg, #00c587 0%, #005f41 100%);
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-mini::after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* ← FA5はこれ必須 */
  font-size: 2rem;
  position: absolute;
  right: 10px; /* ボタン内右端 */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;

  pointer-events: none;
}

.btn-mini:hover {
  filter: brightness(1.2);
  box-shadow: 3px 3px 0 0 #444444;
}

/*ヘッダー内CTAボタン小オレンジ*/
.btn-mini.btn-orange {
  background: var(--primary-orange);
}
.btn-mini.btn-orange:hover {
  background: var(--primary-red);
}

/*---------- common pc ----------*/
@media screen and (min-width: 769px) {
  .btn-mini {
    width: 200px;
    font-size: 1.6rem;
    height: 45px;
  }
  .btn-mini.btn-orange {
    width: 140px;
  }
}
/* pc 769px */

/*ハンバーガーメニュー内CTAボタン小*/
.btn-sp-nav {
  position: relative;
  display: flex;
  align-items: center; /* ← 縦センター */
  justify-content: center; /* ← 横は中央寄せ */
  width: 100%;
  height: 50px;
  padding: 20px 20px 20px 0px; /* 右に矢印分の余白 */
  /* border-radius: 10px; */
  background: #00c587;
  color: #ffffff;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.btn-sp-nav span {
  font-size: 1.3rem;
}
.btn-sp-nav::after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* ← FA5はこれ必須 */
  font-size: 1.6rem;
  position: absolute;
  right: 10px; /* ボタン内右端 */
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  pointer-events: none;
}
.btn-sp-nav.btn-orange {
  background: var(--primary-orange);
  margin-top: 10px;
}

/* ==============================
page-topボタン
================================= */
#page-top {
  position: fixed;
  z-index: 1600;
}
#page-top {
  right: 20px;
  bottom: 70px;
  font-size: 2.5rem;
  line-height: 2;
}
#page-top a {
  text-decoration: none;
  color: var(--primary-white);
  text-align: center;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: var(--primary-darkred);
}
/*---------- common pc ----------*/
@media (min-width: 769px) {
  #page-top {
    right: 20px;
    bottom: 30px;
    font-size: 4rem;
    line-height: 2;
  }
  #page-top a {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
  }
}

/* ==============================
floating banner
================================ */

/* ---------- 共通 ---------- */
.floating-banner-red {
  background-color: #ff0000;
}
.floating-banner-orange {
  background-color: #ff9e01;
}
.floating-banner-green {
  background-color: #00c587;
}

.floating-banner-text {
  display: block;
  position: relative;
  color: #fff;
  font-family: Roboto;
  font-weight: 700;
  line-height: 1.2;
}

/* 無料バッジ */
.free-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 3px 5px;
}
.free-badge-text {
  color: #ff9e01;
  font-family: Roboto;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 120%;
  white-space: nowrap;
}

/*----------SP 768px以下----------*/
@media screen and (max-width: 768px) {
  .floating-banner_pc {
    display: none !important;
  }

  .floating-banner_sp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .floating-banner_sp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .floating-banner_sp .floating-banner {
    display: flex;
    flex: 1 0 0;
    height: 40px;
    padding: 8px 5px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .floating-banner_sp .floating-banner-text {
    font-size: 1.2rem;
    margin-left: 20px;
    text-align: center;
  }

  /* SPアイコン */
  .floating-banner_sp .floating-banner-red .floating-banner-text::before,
  .floating-banner_sp .floating-banner-green .floating-banner-text::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2.2rem;
    position: absolute;
    left: -30px;
    top: 2px;
    color: #fff;
  }

  .floating-banner_sp .floating-banner-red .floating-banner-text::before {
    content: "\f3cd";
  }
  .floating-banner_sp .floating-banner-green .floating-banner-text::before {
    content: "\f007";
  }
  .floating-banner_sp .floating-banner-orange .free-badge {
    margin-right: -15px;
  }
}

/*---------- common pc ----------*/
@media screen and (min-width: 769px) {
  .floating-banner_sp {
    display: none !important;
  }

  .floating-banner_pc {
    position: fixed;
    right: 0;
    bottom: 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .floating-banner_pc.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .floating-banner_pc .floating-banner {
    width: 120px;
    height: 120px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .floating-banner_pc .floating-banner-text {
    padding-top: 40px;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
  }

  /* PCアイコン */
  .floating-banner_pc .floating-banner-text::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 3rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
  }

  .floating-banner_pc .floating-banner-red .floating-banner-text::before {
    content: "\f1ad";
  }
  .floating-banner_pc .floating-banner-green .floating-banner-text::before {
    content: "\f3cd";
  }

  /* 無料＋資料請求の詰め */
  .floating-banner_pc .floating-banner-orange .free-badge {
    margin-bottom: -35px;
  }

  .floating-banner_pc .floating-banner-orange .free-badge-text {
    font-size: 3rem;
    font-weight: 700;
  }
}

/* ==============================
header
================================= */
.site-header {
  display: flex;
  position: fixed;
  background-color: var(--primary-white);
  display: flex;
  width: 100%;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  height: 60px;
  width: 100%;
  padding: 0 15px;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 70px;
    padding: 0 40px;
  }
}

/* ===== PCナビゲーション ===== */
.pc-nav {
  display: flex;
  width: 100%;
  height: 50px;
  padding: 20px 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000;
}

.pc-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.pc-nav li {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.pc-nav li:hover {
  color: var(--primary-yellow);
}

/* ===== モバイルハンバーガー ===== */
.hamburger {
  position: absolute;
  right: 20px;
  top: 15px; /* header高さ60pxなので上下余白調整 */
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
  display: none; /* PCでは非表示 */
}
.hamburger-label {
  font-size: 0.9rem;
  text-align: center;
  color: var(--primary-black);
  margin-top: 25px;
  letter-spacing: 0.8px;
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 2px;
  right: 0;
  background-color: var(--primary-black);
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 10px;
}

.hamburger__line--3 {
  top: 20px;
}

/* ハンバーガーが開いたとき */
.open .hamburger-label {
  display: none;
}
.open .hamburger__line {
  background-color: var(--primary-white);
}
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 15px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 15px;
}

/* ===== スライドナビ（スマホ用） ===== */
.sp-nav {
  position: fixed;
  right: -100%;
  padding: 100px 20px;
  top: 0;
  width: 70%;
  height: 100vh;
  background-color: rgba(200, 22, 29, 0.8); /* 白を80%の不透明度で */
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
}

.sp-nav ul {
  list-style: none;
  margin: 0px 0px 30px;
  border-top: 0.5px solid #ffffff;
}

.sp-nav li {
  padding: 1.3rem 1rem;
  border-bottom: 0.5px solid #ffffff;
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-white);
  text-align: left;
}
.sp-nav li::before {
  content: "• ";
  color: var(--primary-yellow);
}

.sp-nav li a {
  color: inherit;
  text-decoration: none;
}

.open .sp-nav {
  right: 0;
}

/* ===== 黒背景（モバイルメニュー用） ===== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 100;
  cursor: pointer;
}

.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

/* ===== メディアクエリ ===== */
@media (max-width: 1023px) {
  .pc-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hamburger,
  .sp-nav,
  .black-bg {
    display: none !important;
  }
}

/*ーーーーーーーーーー
資料請求お問合せ
ーーーーーーーーーーー*/
.contact-wrapper {
  display: flex;
  padding: 112px 20px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background-size: 500px auto;
  background: linear-gradient(
      0deg,
      rgba(0, 51, 74, 0.6) 0%,
      rgba(0, 51, 74, 0.6) 100%
    ),
    url("../images/cta-bg.jpg") lightgray 50% / cover no-repeat;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}
.contact-wrapper header .section__title {
  width: 100%;
  text-align: left;
  color: var(--primary-white);
}
.contact-wrapper .text {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-white);
}
.contact-list {
  color: var(--primary-white);
}
.contact-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}

.contact-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}


.text-notice {
  font-size: 1.2rem;
  margin-top: 10px;
  width: 270px;
  color: #000;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff,
    -1px -1px 0 #fff;
}

@media screen and (min-width: 768px) {
  .contact-container {
    align-items: flex-start;
    max-width: 1160px;
    padding: 0 64px;
  }
  .contact-wrapper .text {
    font-size: 2rem;
  }
  .contact-list li {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1251px) {
  .contact-wrapper {
    padding: 112px 160px;
    align-items: flex-start;
  }
  .contact-container {
    align-items: flex-start;
    gap: 80px;
  }


}
/* ==============================
footer 
================================= */
.footer {
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 48px var(--contentPadding) 80px;
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 335px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-content-top {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footer-logo {
  width: 262px;
  height: 25px;
  display: block;
}
.footer-sitemap-social-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.sitemap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.sitemap-column {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
}
.sitemap-column li {
  margin-bottom: 10px;
  white-space: nowrap;
}
.sitemap-column a:hover {
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  display: block;
  width: 40px;
  height: 40px;
}
.social-links img {
  width: 100%;
  height: 100%;
}
.footer-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;
}
.footer-link-item {
  align-items: center;
  position: relative;
  padding-left: 1.8rem;
}
.footer-link-item::before {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}
.footer-link-item:hover {
  color: var(--primary-yellow);
}
.copyright {
  margin: 0;
}

/* タブレット表示（768px以上）でのカラム横並び */
@media (min-width: 768px) {
  .footer-container {
    max-width: 1120px;
  }
  .footer-content-top {
    display: inline-flex;
    flex-wrap: wrap;
    width: auto;
    margin: 0;
    padding: 0;
    text-align: left;
    align-items: flex-start;
  }
  .sitemap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .sitemap-column {
    display: inline-block;
    width: auto;
    text-align: left;
  }
}
/* PC表示（1024px以上）でのカラム横並び */
@media (min-width: 1024px) {
  .footer-sitemap-social-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==============================
アニメーション用
================================= */

/* テキストが一文字ずつ出てくるテキストアニメーション */
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
.anime-up.displayed span {
  animation: showText 1s backwards;
  display: inline-block;
}
.anime-up.displayed > span {
  overflow: hidden;
}
.anime-up.displayed > span > span {
  animation: showTextFromBottom 0.5s backwards;
}

/* フェードイン */
.fadeIn {
  transform: translate(0, 50px);
  opacity: 0;
  transition: 0.8s;
}
.fadeIn.animated {
  transform: translate(0, 0);
  opacity: 1;
}

/* === PC版向けフェード（左右） === */
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
  transform: translateX(-50px);
}
.fade-in-right {
  transform: translateX(50px);
}

.fade-in-active.fade-in-left,
.fade-in-active.fade-in-right {
  opacity: 1;
  transform: translateX(0);
}

/* === SP版：下からズームイン === */
.fade-in-up-zoom {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-active.fade-in-up-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

