@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
html {
  color: #333333;
  background: #f0f0f0;
  scroll-behavior: auto;
}

body {
  background: #FFFFFF; !important;
  background-color: #FFFFFF; !important;
}


div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

li,
ul{
  list-style: none;
}



/* Heroエリア */
.hero-area {
  display: flex;
  margin: 0 auto;
  padding: 80px 20px;
  align-items: center;
  max-width: 1600px; 
}

/* 左側コンテンツ */
.hero-area-left {
  flex: 1.6; 
  z-index: 2;
  margin: 0 auto;
  padding-left: 9.5%;
}

/* サービスロゴ */
.logo-area {
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.logo-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  transform: skewX(-20deg);
  left: -100%;
  width: 100%;
  pointer-events: none;
}

.logo-area:hover::before {
  animation: shine 1.2s ease-out 0s 1 forwards;
}

@keyframes shine {
  to {
    left: 100%;
  }
}

.service_logo {
  max-width: 80%;
}

/* テキストエリア */
.main-catch {
  margin-bottom: 60px;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
}

.cooperation1 {
  color: #fccf00;
  margin-top: 70px;
  margin-left: 10px;
}

.cooperation2 {
  margin-top: 5px;
  margin-left: 10px;
}

.cooperation3 {
  margin-top: 20px;
  margin-left: 10px;
}

.sub-catch {
  font-size: 1.2rem;
}

.sub-catch li {
  position: relative;
  margin-bottom: 15px;
}

/* 右側コンテンツ */
.hero-area-right {
  flex: 1.7; 
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1; 
}

@media (max-width: 992px) {
  .hero-area-right::before {
    bottom: -150px;
    right: -150px;
    width: 700px;
    height: 700px;
    transform: rotate(5deg);
  }
}

/* メイン画像エリア（パソコン） */
.image-area {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.image-area img {
  transform: scale(1.2) !important; /* 画像を中心に据えたまま1.15倍（115%）に拡大 */
}

/* 斜めのライン（/） */
.appeal-label::before,
.appeal-label::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 70px;
  background-color: #333;
}

.appeal-label::before {
  top: 5px;
  left: -15px;
  transform: rotate(-32.5deg);
}

.appeal-label::after {
  top: 0px;
  left: 190px;
  transform: rotate(27.5deg);
}

/* 親要素 */
.cta-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
  max-width: 550px;
  margin-left: 10px;
  margin-right: auto;
}

/* ベースのボタン設定（色以外の共通部分） */
.cta-group {
  position: relative;
  display: flex;
  justify-content: center;
  justify-content: flex-start; /* 左寄せ */
  align-items: center;         /* 縦の中央揃え */
  padding: 15px 30px;          /* 余白を上下左右同じに統一 */
  width: 100%;
  box-sizing: border-box;
  padding: 15px 40px 15px 60px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 7px;
  z-index: 0;
  text-decoration: none;
  
  /* ▼ 両方のボタンに共通の枠線を設定 */
  border: 2px solid #fccf00; 
  /* ▼ ホバー時の文字色の変化をフワッとさせるために追加 */
  transition: color 0.3s; 
}

/* ホバー時の背景（スライドの共通設定） */
.cta-group:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  transition: .3s;
  left: 0;
  border-radius: 5px;
}

.cta-group:hover:after {
  width: 100%;
  z-index: -1;
}

.clock-icon {
  width: 28px;
  height: auto;
  margin-right: 18px; /* テキストとの余白 */
  margin-left: -28px; /* テキストとの余白 */
  flex-shrink: 0;     /* 画像が潰れるのを防ぎます */
}

/* -----------------------------------
   上のボタン（trial-button）の色設定
----------------------------------- */
.trial-button {
  background: #fccf00; /* 通常時の背景 */
  color: #333;         /* 通常時の文字色 */
}
.trial-button:hover {
  color: #333;      /* ホバー時の文字色 */
}
.trial-button:after {
  background: #fff;    /* ホバー時にスライドしてくる背景色 */
}

/* -----------------------------------
   下のボタン（contact-button）の色設定
----------------------------------- */
.contact-button {
  background: #fff;    /* 通常時の背景 */
  color: #333;      /* 通常時の文字色 */
  padding: 10px 30px 10px 30px; /* （既存のまま）余白の個別調整 */
}
.contact-button:hover {
  color: #333;         /* ホバー時の文字色 */
}
.contact-button:after {
  background: #fccf00; /* ホバー時にスライドしてくる背景色 */
}

.mail-icon {
  margin-left: 8px;
}

@media (max-width: 1340px) {
  /* 左側コンテンツ */
  .hero-area-left {
    padding-left: 3.0%;
  }
  .service_logo {
    min-width: 450px;
  } 
  .main-catch {
    margin-bottom: 50px;
    font-size: 2.5rem;
  }
  .sub-catch {
    font-size: 1rem;
  }
  
　/* 右側コンテンツ */
  .appeal-label {
    top: -10%; 
    left: 100%;
  }
  .appeal-label::after {
    left: 160px;
  }
  .appeal-text {
    font-size: 0.9rem;
  }
  .cooperation2 {
    font-size: 2.0rem;
    margin: 10px 0;
  }
  .cooperation2 span {
    font-size: 1.25rem;
  }
  .cta-group {
    font-size: 1rem;
  }
  .cta-badge {
    font-size: 0.9rem;
    width: 55px;
    height: 55px;
  }
  .image-area img {
    transform: scale(1.4) !important; /* 画像を中心に据えたまま1.15倍（115%）に拡大 */
  }
}

@media (max-width: 1065px) {
  /* 左側コンテンツ */
  .hero-area {
    flex-direction: column;
    padding: 20px;
  }    
  .hero-area-left,
  .hero-area-right {
    padding: 40px 0;
    text-align: center;
  }
  .main-catch {
    font-size: 3rem;
  }
  .sub-catch {
    font-size: 1.2rem;
  }
  
  /* 右側コンテンツ */
  .hero-area-right {
    width: 100%; /* 親要素が変に縮まないように100%で固定 */
  }

  .image-area {
    width: 100% !important; 
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important; /* 中身を強制的に中央に揃える */
  }

  .image-area img {
    width: 100% !important; /* スマホの画面幅いっぱいに合わせる */
    max-width: 703px !important; /* 画像が元のサイズ以上にボヤけないためのストッパー */
    height: auto !important;
    margin: 0 auto !important; /* 画像自身も中央寄せ */
    display: block !important;
  }

@media (max-width: 819px) {
  /* 左側コンテンツ */
  .hero-area-left {
    padding-left: 3.0%;
  }
  .main-catch {
    margin-bottom: 50px;
    font-size: 2.5rem;
  }
  .sub-catch {
    font-size: 1rem;
  }
  
 /* 右側コンテンツ */
  .appeal-label {
    top: -10%; 
    left: 25%;
  }
  .appeal-label::after {
    left: 160px;
  }
  .appeal-text {
    font-size: 0.9rem;
  }
  .cooperation2 {
    font-size: 2.0rem;
    margin: 5px 0;
  }
  .cooperation2 span {
    font-size: 1.25rem;
  }
  .cta-area {
    width: 75%;
    margin-top: 0px;
  }
  .cta-group {
    font-size: 1rem;
  }
  .cta-badge {
    font-size: 0.9rem;
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 635px) {
  /* 左側コンテンツ */
  .hero-area-left {
    padding-left: 0%;
  }
  .logo-area {
    margin-bottom: 40px;
  }
  .service_logo {
    min-width: 0px;
  }
  .main-catch {
    margin-bottom: 30px;
    font-size: 2.0rem;
    text-align: left;
    margin-bottom: 20px;
  }
  .sub-catch {
    font-size: 0.9rem;
  }
  
  /* 右側コンテンツ */
  .main-illustration {
    max-width: 100%;
  }
  .appeal-label::before,
  .appeal-label::after {
    height: 50px;
  }
  .appeal-label::after {
    left: 140px;
  }
  .appeal-text {
    font-size: 0.8rem;
  }
  .cooperation1,
  .cooperation1 ~ p {
    margin-left: 10px !important;
  }
  .cooperation2 {
    font-size: 1.75rem;
    margin: 5px 0;
  }
  .cooperation2 span {
    font-size: 1rem;
  }
  .cta-area {
    /*width: 100%; */
    width: auto;
    margin-left: 20px; 
    margin-right: 20px;
    margin-top: 35px;
  }
  .cta-group {
    font-size: 0.9rem;
  }
  .cta-badge {
    font-size: 0.8rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 475px) {
  .service_logo {
    max-width: 100%;
  }
  .main-catch {
    font-size: 1.75rem;
  }
  .appeal-label {
    top: -25%; 
    left: 22.5%;
  }
}
  .clock-icon {
  width: 22px;
  height: auto;
  margin-right: 5px; /* テキストとの余白 */
  margin-left: -26px; /* テキストとの余白 */
  flex-shrink: 0;     /* 画像が潰れるのを防ぎます */
}