@charset "UTF-8";

/* =======================================
   Reset & Base
======================================= */
html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote,
dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

/* =======================================
   Grid (同じブレイクポイント構成)
======================================= */
.container,
.container-fluid,
.container-md,
.container-lg {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

/* md: 744px 以上 */
@media (min-width: 744px) {
  .container,
  .container-md {
    max-width: 704px;
  }
}

/* lg: 992px 以上 */
@media (min-width: 992px) {
  .container,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.offset-6 {
  margin-left: 50%;
}

/* =======================================
   Typography & Utility
======================================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #1F1F1F;
  letter-spacing: 0.05em;
  background-color: #f5f5f5;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb40 {
  margin-bottom: 40px;
}

/* =======================================
   Header（common.css と同テイスト）
======================================= */
.site-header {
  height: 65px;
  padding: 0;
  background-color: #0068B6;
  z-index: 100;
  color: #fff;
}

.site-header .container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 20px;
  height: 100%;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
}

.site-header .brand .logo {
  height: 45px;
  display: block;
}

.site-header .brand .brand-text {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-header .main-nav {
  /* ログイン前はナビ非表示でOK・中身も空 */
}

/* 992px 未満でヘッダー高さ調整 */
@media (max-width: 1200px) {
  .site-header {
    height: 85px;
  }
  .site-header .container {
    padding: 0 20px;
  }
  .site-header .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .site-header .brand .brand-text {
    font-size: 12px;
  }
}

/* 744px 未満：よりコンパクト */
@media (max-width: 991px) {
  .site-header {
    height: 65px;
  }
  .site-header .container {
    padding: 0 16px;
  }
  .site-header .brand {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  .site-header .brand .logo {
    height: 40px;
  }
  .site-header .brand .brand-text {
    font-size: 13px;
  }
}

/* =======================================
   Hero / メインビジュアル
======================================= */
.main__img-back {
  background: #BACFDD;  /* common.css のフッター色を踏襲 */
  padding: 40px 0 60px;
}

.bgimg {
  text-align: right;
}

.bgimg img {
  max-width: 260px;
  margin-left: auto;
}

/* =======================================
   共通セクション
======================================= */
section {
  padding: 0 0;
}

section:nth-of-type(2) {
  /* 「お問い合わせ」説明部分 */
  background-color: #ffffff;
}

section:nth-of-type(3) {
  /* 「ショッピング」＋ログイン部分 */
  background-color: #ffffff;
}


.mainimg{
  background-color: #f5f5f5;
}
/* タイトル */
.title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 0.5em;
}

.title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0068B6, #3c88c9);
}

/* 「お問い合わせ」のテキスト */
section .container p,
section .container div {
  font-size: 15px;
}

/* =======================================
   ログインボックス
======================================= */
.login-tbl {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 24px;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.login-tbl th,
.login-tbl td {
  padding: 14px 16px;
  font-size: 15px;
  border-bottom: 1px solid #e2e6ea;
}

.login-tbl tr:last-child th,
.login-tbl tr:last-child td {
  border-bottom: none;
}

.login-tbl th {
  width: 30%;
  min-width: 80px;
  background-color: #f5f8fb;
  font-weight: 600;
  text-align: left;
  color: #1F1F1F;
}

.login-tbl td {
  background-color: #fff;
}

/* フォーム要素 */
.login-tbl input[type="text"],
.login-tbl input[type="password"] {
  width: 100%;
  max-width: 260px;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ced4da;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-tbl input[type="text"]:focus,
.login-tbl input[type="password"]:focus {
  border-color: #0068B6;
  box-shadow: 0 0 0 2px rgba(0, 104, 182, 0.2);
}

/* パスワード表示チェック */
.login-tbl input[type="checkbox"] {
  margin-right: 0.4em;
}

.login-tbl label {
  font-size: 14px;
  cursor: pointer;
}

/* エラーメッセージ・ログインメッセージ */
#login-error-message,
#login-message {
  max-width: 520px;
  margin: 0 auto 16px;
}

#login-error-message > div {
  background: #ffe5e5;
  border-left: 4px solid #d9534f;
  padding: 10px 12px;
  font-size: 14px;
  color: #721c24;
}

#login-message > div {
  background: #e8f5ff;
  border-left: 4px solid #0068B6;
  padding: 10px 12px;
  font-size: 14px;
  color: #014b88;
}

/* ログインボタン */
.login-btn {
  text-align: center;
}

.login-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0068B6, #3c88c9);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 104, 182, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.login-btn a span {
  position: relative;
  z-index: 1;
}

.login-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.login-btn a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 104, 182, 0.4);
}

.login-btn a:hover::before {
  opacity: 1;
}

.login-btn a:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 104, 182, 0.25);
}

/* スマホでのログインテーブル調整 */
@media (max-width: 743px) {
  .login-tbl {
    max-width: 100%;
  }

  .login-tbl th,
  .login-tbl td {
    display: block;
    width: 100%;
  }

  .login-tbl th {
    border-bottom: none;
    border-right: none;
    border-left: none;
    border-top: 1px solid #e2e6ea;
  }

  .login-tbl tr:first-child th {
    border-top: none;
  }

  .login-tbl td {
    border-bottom: 1px solid #e2e6ea;
  }

  .login-tbl input[type="text"],
  .login-tbl input[type="password"] {
    max-width: 100%;
  }
}

/* =======================================
   法的情報 & フッター（common.css 準拠）
======================================= */
.legal-info {
  background-color: #fff;
  color: #333;
  padding-top: 80px;
  padding-bottom: 40px;
}

.legal-info img.logo {
  max-width: 120px;
  display: block;
  margin: 0 auto 4rem auto;
}

.company-info {
  text-align: center;
  margin-top: 30px;
}

.company-info .company-inline {
  --title-size: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.company-info h2 {
  font-size: var(--title-size);
  line-height: 1.1;
  margin: 0;
  font-weight: 300;
}

.company-info .company-logo {
  height: calc(var(--title-size) * 2);
  width: auto;
  display: block;
}

.company-info .company-address {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

a.icejapan {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
}

a.icejapan:hover {
  opacity: 0.8;
}

/* コピーライト */
.copyright {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin: 20px 0 20px;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
}

/* =======================================
   オーバーレイ（必要であれば）
======================================= */
.overlay {
  display: none;
}

/* =======================================
   微調整
======================================= */
section a {
  color: #0068B6;
}

section a:hover {
  opacity: 0.8;
}


/* ==========================
   TOPメインビジュアル
========================== */

.mainimg {
  background-color: #efefef;
  margin-bottom: 40px;
}

.mainimg .container {
  max-width: 1440px;
}

.mainimg .row {
  align-items: flex-end;
}

/* 右側：テキスト＆ロゴ */
.mainimg .mainimg-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-bottom: 40px;
}

.mainimg .mainimg-title {
  font-size: 24px;
  text-align: left;
  font-weight: 400;
  margin-top: 20px;
  line-height: 2;
}

@media (max-width: 991px) {
  .mainimg .mainimg-title {
    font-size: 20px;
  }
}

@media (max-width: 743px) {
  .mainimg .mainimg-title {
    font-size: 18px;
    padding: 0 5%;
  }
}

/* ロゴ */
.mainimg .mainimg-logo {
  display: block;
  margin-bottom: 40px;
}

/* 左側：背景画像 */
.mainimg .mainimg-bgimg {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  align-self: flex-end;
}

/* SP 時のロゴサイズ調整 */
@media (max-width: 743px) {
  .mainimg .mainimg-logo {
    display: block;
    margin-bottom: 10px;
    width: 90%;
    margin: 0 auto;
  }
}
.contact-btn {
  text-align: center;
}

/* お問い合わせボタン（ログインボタンと同デザイン） */
.contact-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 12px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0068B6, #3c88c9);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 104, 182, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;



}

.contact-btn a span {
  position: relative;
  z-index: 1;
}

.contact-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.contact-btn a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 104, 182, 0.4);
}

.contact-btn a:hover::before {
  opacity: 1;
}

.contact-btn a:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 104, 182, 0.25);
}

.page-body .container {
  max-width: 704px !important; /* Bootstrap md と同じ */
}


.page-body{
background-color: #fff;
}


/* ログイン説明（loginDesc）の装飾をリセット */
#login-message > div {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  font-size: 15px;
  color: #1F1F1F !important;
  line-height: 1.8;
}


/* 影を全てなくす */
.login-tbl,
.mainimg,
section,
.container,
.row,
.col-12,
.col-md-6 {
  box-shadow: none !important;
}

.login-tbl {
}


/* ログイン・お問い合わせボタンの影も消す場合 */
.login-btn a,
.contact-btn a {
  box-shadow: none !important;
}



.site-footer .legal-info a {
  color: #333;
  text-decoration: none;
}

a{
	text-decoration: none !important;
}




