@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Roboto:wght@700;900&display=swap");

/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "メイリオ", Meiryo,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { vertical-align: top; max-width: 100%; }
ul { list-style: none; }

.w1000 { max-width: 1000px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }

/* ===========================
   HEADER（旧サイト準拠）
=========================== */
.pcHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #dde3eb;
  padding: 14px 25px;
}

.pcHeader__logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pcHeader__logo__img {
  height: 44px;
  width: auto;
  display: block;
}

.pcHeader__right__list {
  display: flex;
  gap: 24px;
  align-items: center;
}

.pcHeader__right__list li a {
  font-size: 1.3rem;
  color: #333;
  position: relative;
}

.pcHeader__right__list li a:hover { color: #13448f; }

.pcHeader__mypage-btn {
  background: #13448f;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.3rem;
  transition: background .2s;
}

.pcHeader__mypage-btn:hover { background: #0c2d5e !important; }


/* ===========================
   HERO + アイコンメニュー
=========================== */
.top-main-wrapper {
  background: #f0f0f0;
}

.top-main-wrapper__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}

/* 左：画像エリア */
.hero-img-area {
  flex: 1 1 55%;
  position: relative;
  overflow: hidden;
}

.hero-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* 右：既存ユーザー導線 + アイコンメニュー */
.hero-right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid #dde3eb;
}

/* 既存ユーザー導線（最重要） */
.member-login-box {
  background: #0c2d5e;
  padding: 20px 24px;
  flex: 1;
}

.member-login-box__label {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .08em;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 8px;
}

.member-login-box__main-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #0c2d5e;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-weight: 700;
  transition: opacity .15s, transform .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.member-login-box__main-btn:hover { opacity: .9; transform: translateY(-1px); }

.member-login-box__main-btn__icon { font-size: 2.2rem; flex-shrink: 0; }

.member-login-box__main-btn__text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.member-login-box__main-btn__text strong { font-size: 1.5rem; }
.member-login-box__main-btn__text small { font-size: 1.1rem; color: #555; font-weight: 400; }

.member-login-box__main-btn__arrow {
  font-size: 2rem;
  color: #13448f;
  line-height: 1;
}

.member-login-box__sub-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.member-login-box__sub-links a {
  display: block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.2rem;
  padding: 7px 10px;
  border-radius: 4px;
  text-align: center;
  transition: background .15s;
}

.member-login-box__sub-links a:hover { background: rgba(255,255,255,.25); }


/* ===========================
   共通タイトル（旧サイト topTitle 準拠）
=========================== */
.topTitle {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  color: #333;
  letter-spacing: .05em;
}

.topTitle span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #333;
  display: block;
  margin-top: 6px;
  letter-spacing: .04em;
}

/* ===========================
   サービスセクション（旧サイト topWrap-service 準拠）
=========================== */
.topWrap-service {
  padding: 60px 0 70px;
  background: #eeeeee;
}

.topWrap-service__title { margin-bottom: 50px; }

/* セクション区切りタイトル */
.topWrap-service__bordertitle {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.topWrap-service__bordertitle span {
  background: #13448f;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 8px 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.topWrap-service__bordertitle::after {
  content: '';
  display: block;
  flex: 1;
  height: 2px;
  background: #13448f;
  margin-left: 0;
}

/* ZOOTカード 3列（旧サイト準拠） */
.topWrap-service__zoot {
  display: flex;
  gap: 2%;
  margin-bottom: 60px;
}

.topWrap-service__zoot li {
  width: 32%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  transition: transform .2s, box-shadow .2s;
}

.topWrap-service__zoot li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* カラー別 */
.topWrap-service__zoot li.purple .topWrap-service__zoot__textarea { background: #f0e6f3; border-top: 4px solid #ac85bc; }
.topWrap-service__zoot li.purple .topWrap-service__zoot__textarea__title__en { color: #7f5092; }
.topWrap-service__zoot li.purple .topWrap-service__zoot__textarea__btn span { background: #ac85bc; }
.topWrap-service__zoot li.purple .topWrap-service__zoot__textarea__btn span:hover { background: #7f5092; }

.topWrap-service__zoot li.green .topWrap-service__zoot__textarea { background: #e5efcf; border-top: 4px solid #8bbf14; }
.topWrap-service__zoot li.green .topWrap-service__zoot__textarea__title__en { color: #5a8a00; }
.topWrap-service__zoot li.green .topWrap-service__zoot__textarea__btn span { background: #8bbf14; }
.topWrap-service__zoot li.green .topWrap-service__zoot__textarea__btn span:hover { background: #5a8a00; }

.topWrap-service__zoot li.silver .topWrap-service__zoot__textarea { background: #e6e7e8; border-top: 4px solid #8b9498; }
.topWrap-service__zoot li.silver .topWrap-service__zoot__textarea__title__en { color: #555; }
.topWrap-service__zoot li.silver .topWrap-service__zoot__textarea__btn span { background: #8b9498; }
.topWrap-service__zoot li.silver .topWrap-service__zoot__textarea__btn span:hover { background: #555; }

.topWrap-service__zoot li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.topWrap-service__zoot__image {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.topWrap-service__zoot__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.topWrap-service__zoot li:hover .topWrap-service__zoot__image img { transform: scale(1.04); }

.topWrap-service__zoot__textarea {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px 18px;
  flex: 1;
}

.topWrap-service__zoot__textarea__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.topWrap-service__zoot__textarea__title__en {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .04em;
  margin-top: 4px;
}

.topWrap-service__zoot__textarea__category {
  font-size: 1.2rem;
  color: #666;
}

.topWrap-service__zoot__textarea__free {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #c00;
}

.topWrap-service__three__textarea__campaign {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #13448f;
  text-decoration: underline;
}

.topWrap-service__zoot__textarea__lead {
  font-size: 1.3rem;
  color: #444;
  line-height: 1.6;
}

.topWrap-service__three__textarea__text {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
}

.topWrap-service__zoot__textarea__btn {
  margin-top: 8px;
}

.topWrap-service__zoot__textarea__btn span {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 3px;
  transition: background .2s;
}

/* 3列カード（VPN・ドメイン系） */
.topWrap-service__three {
  display: flex;
  gap: 2%;
  margin-bottom: 50px;
}

.topWrap-service__three.last { margin-bottom: 40px; }

.topWrap-service__three li {
  width: 32%;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  transition: transform .2s, box-shadow .2s;
}

.topWrap-service__three li:not(:first-child):hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}

.topWrap-service__three .sim-no-hover {
  transition: none !important;
}

.topWrap-service__three .sim-no-hover:hover {
  transform: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.10) !important;
}

.topWrap-service__three li > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}


.topWrap-service__three__image {
  display: block;
  height: 130px;
  overflow: hidden;
}

.topWrap-service__three__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.topWrap-service__three li:not(:first-child):hover .topWrap-service__three__image img { transform: scale(1.04); }

.topWrap-service__three__textarea {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  flex: 1;
}

.topWrap-service__three__textarea__lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #13448f;
  line-height: 1.4;
}

.topWrap-service__three__textarea__btn {
  margin-top: auto;
}

.topWrap-service__three__textarea__btn a {
  display: inline-block;
}

.topWrap-service__three__textarea__btn span {
  display: inline-block;
  background: #13448f;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 3px;
  transition: background .2s;
}

.topWrap-service__three__textarea__btn span:hover { background: #0c2d5e; }

/* サービス一覧ボタン */
.topWrap-service__btn {
  display: table;
  margin: 0 auto;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 50px;
  border-radius: 3px;
  transition: background .2s, color .2s;
}

.topWrap-service__btn:hover { background: #13448f; color: #fff; border-color: #13448f; }


/* ===========================
   お知らせ（旧サイト newList 準拠）
=========================== */
.topWrap-information {
  padding: 50px 0 60px;
  background: #fff;
}

.topWrap-information__title { margin-bottom: 40px; }


/* btnWrap / whiteBtn */
.btnWrap { text-align: center; }

.btnList {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.whiteBtn {
  display: inline-block;
  border: 2px solid #888;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 3px;
  transition: background .2s, color .2s, border-color .2s;
}

.whiteBtn.gray:hover { background: #13448f; color: #fff; border-color: #13448f; }

/* ===========================
   フッター
=========================== */
.lp-footer {
  background: #0c2d5e;
  color: rgba(255,255,255,.85);
  padding: 48px 0 28px;
}

.lp-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.lp-footer__contact { text-align: center; }

.lp-footer__contact-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.lp-footer__contact-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.lp-footer__contact-btn {
  display: inline-block;
  background: #13448f;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  transition: background .2s;
}

.lp-footer__contact-btn:hover { background: #1565c0; }

.lp-footer__contact-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.4);
}

.lp-footer__contact-btn--outline:hover { background: rgba(255,255,255,.1); }

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  font-size: 1.2rem;
}

.lp-footer__links a { opacity: .7; transition: opacity .2s; }
.lp-footer__links a:hover { opacity: 1; text-decoration: underline; }

.lp-footer__copy {
  font-size: 1.1rem;
  opacity: .5;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {
  .top-main-wrapper__inner { flex-direction: column; }
  .hero-right { flex: none; border-left: none; border-top: 1px solid #dde3eb; }
  .topWrap-service__zoot { flex-wrap: wrap; }
  .topWrap-service__zoot li { width: 48%; margin-bottom: 16px; }
  .topWrap-service__three { flex-wrap: wrap; }
  .topWrap-service__three li { width: 48%; margin-bottom: 16px; }
}

@media (max-width: 599px) {
  .pcHeader { flex-direction: column; gap: 10px; align-items: flex-start; padding: 12px 16px; }
  .pcHeader__right__list { gap: 12px; flex-wrap: wrap; }
  .topTitle { font-size: 2.4rem; }
  .topWrap-service__zoot li { width: 100%; }
  .topWrap-service__three li { width: 100%; }
  .hero-img-area { min-height: 260px; }
  .lp-footer__contact-btns { flex-direction: column; align-items: center; }
}
