@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
body { 
  font-family: 'Noto Sans JP', sans-serif;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

/* メモ　ページ右側の幅は878px */
/* メモ　スマホの画面幅は514-320px */

.weight100 { font-weight:100 }
.weight300 { font-weight:300 }
.weight400 { font-weight:400 }
.weight500 { font-weight:500 }
.weight600 { font-weight:600 }
.weight700 { font-weight:700 }
.weight800 { font-weight:800 }
.weight900 { font-weight:900 }

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

p{font-size:1.8rem;}

a.a1:link{color:#3a7ed0;text-decoration: none;border-bottom: solid 1px #3a7ed0; transition: 0.2s;}
a.a1:visited{color:#3a7ed0;text-decoration: none;border-bottom: solid 1px #3a7ed0; transition: 0.2s;}
a.a1:hover{color:#3a7ed0;text-decoration: none;border-bottom: solid 1px #fff; transition: 0.2s;}

a.a2:link{color:#fff;text-decoration: none;border-bottom: solid 1px #003894; transition: 0.2s;}
a.a2:visited{color:#fff;text-decoration: none;border-bottom: solid 1px #003894; transition: 0.2s;}
a.a2:hover{color:#fff;text-decoration: none;border-bottom: solid 1px #fff; transition: 0.2s;}

li{list-style:none;}

body{background-color: #eee;}

.container{
  background-color: #fff;
}

.opacity06 {
  transition: 0.2s;
}
.opacity06:hover {
  filter: opacity(0.6); /* マウスオーバー時に半透明になる */
  transition: 0.2s;
}

.margin-t10 {margin-top:10px;}
.margin-t20 {margin-top:20px;}
.margin-t30 {margin-top:30px;}
.margin-t40 {margin-top:40px;}
.margin-t50 {margin-top:50px;}
.margin-t60 {margin-top:60px;}

.margin-b10 {margin-bottom:10px;}
.margin-b20 {margin-bottom:20px;}
.margin-b30 {margin-bottom:30px;}
.margin-b50 {margin-bottom:50px;}
.margin-b60 {margin-bottom:60px;}

.padding-b50 {padding-bottom:50px;}

.border-b { border-bottom: 1px solid #ccc;}

.text-r1{font-size:1.6rem;}
.text-s1{font-size:1.4rem;}



/* 擬似要素の矢印 */
.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 15px;
	vertical-align: middle;
	font-size: 1.3rem;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: -3px;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.shape1::before{
	left: 6px;
	width: 9px;
	height: 1px;
	background: #3a7ed0;
}
.shape1::after{
	left: 9px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #3a7ed0;
	border-right: 1px solid #3a7ed0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



/* ヘッダー */
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width:1200px;
  margin:0 auto;
}

header {
  z-index: 9999;
  position: fixed; /*** ← fixedで固定 ***/
  height: 92px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 1rem 3rem; /* カスタマイズしてください */
  width: 100%;
  border-bottom: solid 2px blue;
}

@media screen and (max-width: 575px) { /* スマホではヘッダーを固定しない */
  header {
  position: static;
  padding: 1.2rem 1rem 1rem 1.3rem;
  }
}

.item1 img {
  height: 67px;
}

.item2 img {
  height: 70px;
}

@media screen and (max-width: 575px) {
  .item2 {
    display: none;
  }
}



/* フッター */
footer {
  height: 300px;
  background-color: #003894;
  box-sizing: border-box;
  width: 100%;
}

.container-footer {
  max-width:1200px;
  margin:0 auto;
  padding: 30px 0 30px 0;
}

.container-footer p {
  color: #fff;
  font-size:1.8rem;
}

.sns {
  display: flex;
  column-gap: 20px;
  justify-content: center;
}

.footer-link {
  display: flex;
  column-gap: 20px;
  justify-content: center;
  gap: 40px;
}

@media screen and (max-width: 790px) {
  .footer-link { 
  display: block;
  text-align: center;
  }
}

@media screen and (max-width: 790px) {
  .footer-link li { 
  padding:10px;
  }
}

.container-footer ul li {
  font-size:1.5rem;
}

.container-logo_area {
  background-color: #eee;
  margin:0 auto;
}

.logo_area {
  max-width:1200px;
  margin:0 auto;
  text-align: right;
  padding:20px 0 25px 0;
}

@media screen and (max-width: 790px) {
  .logo_area { 
  text-align: center;
  }
}

@media screen and (max-width: 514px) {
  .logo_area { 
  padding-bottom:100px;
  }
}

.logo_area img {padding-bottom:10px;}

.logo_area p {
  font-size:1.3rem;
  color: #666;
}

@media screen and (max-width: 514px) {
  .logo_area p { 
  font-size:1.1rem;
  }
}





/* ナビゲーションメニュー装飾 */
nav a {
  text-decoration: none;
}

nav ul a:hover {
  color: #003894;
}

/* ナビゲーションメニュー親階層 */
.c-navi { /* nav */
  font-size:1.6rem;
  height: 77px;
  background-color: #eee;
  box-sizing: border-box;
  display: flex;
  justify-content: center; /* space-betweenにするとメニューとハンバーガーが右配置になる */
  padding: 10rem 3rem 5.5rem 3rem;
  width: 100%;
  z-index: 20; /* 中間 */
}

.c-navi p {
  font-size:1.6rem;
}

@media screen and (max-width: 975px) { /* ハンバーガーの位置だけ右にする指定 */
  .c-navi { /* nav */
    justify-content: flex-end;
  }
}

@media screen and (max-width: 575px) { /* ハンバーガーの位置だけ右にする指定 */
  .c-navi { /* nav */
    padding-top: 1.5rem;
  }
}

.c-navi__list { /* ul */
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-navi__list-item { /* li */
  list-style: none;
  text-decoration: none;
}

.c-navi__list-link { /* a */
  color: #000; /* カスタマイズしてください */
  display: block;
  margin:0 25px 0 25px; /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 0px 22px 0px; /* カスタマイズしてください */
  transition: 0.2s;
}

.c-navi__list-link:hover { /* a */
  color: #2474d6;
  transition: 0.2s;
}

/* ハンバーガーメニュー */
.c-hamburger-menu { /* nav */
  position: relative;
}

@media screen and (max-width: 975px) {
  .c-hamburger-menu__list { /* ul */
    background-color: #eeeeee; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0s; /* メニューが左外側に移動する速さ */
    top: 100%;
    width: 100%;
    border-bottom: 2px solid blue;
  }

  #hamburger:checked ~ .c-hamburger-menu__list { /* 左から表示されるリスト */
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0; /* カスタマイズしてください 0.4から0に変更した */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 975px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px; /* カスタマイズしてください */
    height: 45px; /* カスタマイズしてください */
    justify-content: center;
    width: 30px; /* カスタマイズしてください */
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000; /* カスタマイズしてください */
  display: block;
  height: 2px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 24px; /* ハンバーガーの横線の長さ */
  ;
}

@media screen and (max-width: 975px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(1px,0px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(1px, 1px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}

/* ナビゲーションメニュー子階層 */
nav .sub-menu {
  position: absolute;
  max-width: 240px;
  width: 100%;
  background: #fff;
  top: 155px;
  margin-left:10px; /* メニューの表示位置の調整 */
  opacity: 0;
  visibility: hidden;
  transition: 0.3s; /* 子メニューが表示されるまでの時間 */
  border-right: 1px solid #99dfff;
  border-left: 1px solid #99dfff;
  border-bottom: 1px solid #99dfff;
}

@media screen and (max-width: 975px) { /* 子メニューが表示される位置 */
  nav .sub-menu {
    top:60px;
    margin-left:-10px;
  }
}

@media screen and (max-width: 514px) { /* 子メニュースマホ対応 */
  nav .sub-menu {
    position: static; /* position: absoluteを解除 */
    width:200px;
  }
}

nav .sub-menu a {
  color: #000;
  padding: 10px 15px;
  display: block;
  font-size:1.4rem;
}

@media screen and (max-width: 514px) {
  nav .sub-menu a {
    font-size:12px;
    font-feature-settings: "palt";
    padding: 10px 0px 10px 10px;
  }
}

nav .sub-menu a:hover {
  color: #99dfff;
}

.border-t {
  border-top: 1px solid #eee;
}

nav .menu-item-has-children:hover ul { /* ホバーで子メニュー表示 */
  opacity: 1;
  visibility: visible;
}

nav li.menu-item-has-children li a:hover { /* ホバーで子メニュー表示 */
  background: #003894;
}



/*ナビゲーションメニュー子階層以降共通*/
.c-navi__list li li { /* 孫階層メニューを指す */
  height: 0;
  overflow: hidden;
}

.transition05 {
  transition: 0.5s;/*子階層のみ適用するためのクラス*/
}

.c-navi__list li:hover > ul > li {
  height: 40px;/*4remだった*/
  overflow: visible;
}

@media screen and (max-width: 514px) { 
.c-navi__list li:hover > ul > li {
    height:50px;
  }
}

@media screen and (max-width: 514px) { 
.c-navi__list li:hover > ul > li a {
    height:50px;
    padding-top:15px;
  }
}



/*ナビゲーションメニュー孫階層以降共通*/
.c-navi__list li ul li ul { /* 孫階層メニューを指す */
  left: 100%;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 514px) { 
.c-navi__list li ul li ul {
    position: relative;
    margin:-50px 0 0 0;
    max-width: 170px;
    width: 100%;
  }
}

.c-navi__list li ul li ul li a {/*孫階層*/
    background: #99dfff;/*#80d7ff*/
    color: #003894;
}

.c-navi__list li ul li ul li a:hover {
    background: #003894;
    color: #fff;
}

.step1 {top: 0rem;}
.step3 {top: 8.1rem;}
.step4 {top: 12rem;}
.step8 {top: 28rem;}
.step10 {top: 36.1rem;}
.step11 {top: 40.1rem;}

@media screen and (max-width: 514px) {
.step1 {
    top:0
  }
}

@media screen and (max-width: 514px) {
.step3 {
    top:0
  }
}

@media screen and (max-width: 514px) {
.step4 {
    top:0
  }
}

@media screen and (max-width: 514px) {
.step8 {
    top:0
  }
}

@media screen and (max-width: 514px) {
.step10 {
    top:0
  }
}

@media screen and (max-width: 514px) {
.step11 {
    top:0
  }
}


/*ナビゲーションメニュー子階層の三角マーク*/
.c-navi__list li ul li ul:before { /*マークは孫階層に設置している*/
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #b3b3b3;
  border-right: solid 2px #b3b3b3;
  transform: rotate(45deg);
  position: absolute;
  top: 1.7rem;
  left: -25px;
}

@media screen and (max-width: 514px) {
.c-navi__list li ul li ul:before {
    left:-16px;
    top: 25px;
  }
}


/* 画像スライダー */
.main-image {
  max-width: 1200px;
  margin:0px auto 0 auto;
  padding-bottom:28px;
}

#copy {
  max-width: 1200px;
  margin:0 auto;
  padding: 25px 10px 25px 10px;
  background-color:#003894;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 514px) {
#copy {
    display: none;
  }
}

#copy h1 {
  text-align: center;
  color: #fff;
  font-style: italic;
  font-size:2.4rem;
}

@media screen and (max-width: 790px) {
#copy h1 {
    font-size:2rem;
  }
}

.splide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* 左側サイドメニュー */
.container-gnav {
  max-width:280px;
  z-index: 1;
}

.gnav li {
    display: flex;
    height: 4.3rem;
    margin: 0 auto;
    list-style: none;
    position: relative;
}

.gnav li a {
    background: #003894;
    color: #fff;
    display: block;
    height: 4.3rem;
    line-height: 4.2rem;
    padding-left:15px;
    text-decoration: none;
    width: 100%;
    font-size:1.5rem;
    border-bottom: 1px solid #fff;
}

.gnav li li a {
    background: #80d7ff;
    color: #003894;
    border:none;
}

/*子階層以降共通*/
.gnav li li{
    height: 0;
    overflow: hidden;
}

.gnav li:hover > ul > li {
    height: 4.3rem;
    overflow: visible;
}

/*孫階層以降共通*/
.gnav li ul {
    left: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.gnav-top { /* おすすめ商品の装飾 */
  background-color: #fff;
  color: #003894;
  font-size:1.9rem;
}

.gnav li.gnav-top{height:4.1rem;}

.gnav a:hover {
  color: #003894;
  background: #80d7ff;
}

.gnav li li a:hover {
  color: #3a7ed0;
  background: #fff;
  border: 1px solid #003894;
  line-height:4rem;/* borderによる微妙なズレを調整 */
  padding-left:14px;
}

/*ナビゲーションメニュー子階層の三角マーク*/
.gnav li ul:before {/*マークは孫階層に設置している*/
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 1.7rem;
  left: -28px;
}

@media screen and (max-width: 790px) { /* サイドメニューを非表示にする */
  .gnav {
    display: none;
  }
}

@media screen and (max-width: 1070px) {
  .gnav li a {
    font-size:1.2rem;
    font-feature-settings: "palt";
  }
}



/* 左側サイドメニューと人気商品全体 */
.side-menu-and-contents {
  max-width: 1200px;
  margin:0px auto 0 auto;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap:29px;
}

@media screen and (max-width: 790px) { /* 人気商品を最大幅にする */
  .side-menu-and-contents { 
    grid-template-columns: 1fr;  
  }
}



/* 人気商品 */
.h2_toppage {
  color: #003894;
  font-size:1.9rem;
  padding:0px 10px 13px 0px;
}

@media screen and (max-width: 790px) {
  .h2_toppage { 
    padding-left:10px;  
  }
}

.box h3 {
  color: #003894;
  font-size:1.6rem;
  padding:0px 0px 10px 0px;
}

.contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  padding-top:2px;
}

.box {
  background: #def5ff;/* c7edff */
  padding:0;
  border-radius: 14px;
  text-align:center;
  transition: 0.5s;
}

.box a{
  text-decoration: none;
}

.box:hover {
  background: #bfecff;
  transition: 0.5s;
}

.box p {
  display: block;
  padding-bottom:10px;
  color:#003894;
  font-size:1.6rem;
}

.box p.lead{
  padding: 0 15px 15px 15px;
  font-size:1.4rem;
}

.box img {
  padding:15px 0 12px 0;
  margin:0 auto;
  transition: 0.2s;
}

.box img:hover {
  transform: scale(1.1);
  transition: 0.2s;
}

@media screen and (max-width: 1100px) {
  .contents { 
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  }
}

@media screen and (max-width: 514px) {
  .contents { 
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(6, 1fr);
  }
}

@media screen and (max-width: 790px) {
  .contents { 
  margin:0 10px 60px 10px;
  }
}



/* PickUP */
.pick-up {
  max-width: 878px;
  margin:0px auto 0 auto;
}

@media screen and (max-width: 790px) {
  .pick-up { 
  padding: 0 10px;
  }
}

.pick-up img {
  width: 100%;
  height: auto;
  max-width: 878px;
}



/* 新着情報一覧 */
@media screen and (max-width: 790px) {
  .news-section { 
  padding: 0 10px;
  }
}

.list li {
  background-color: #fafafa;
  border:solid 1px #e0e0e0;
  margin-bottom:10px;
  transition: 0.2s;
}

.list li:hover {
  background-color: #ffffff;
  transition: 0.2s;
}

.list a {
  text-decoration: none;
  color: #000;
  display: block;
  transition: 0.2s;
}

.list a:hover {
  color: #3a7ed0;
  transition: 0.2s;
}

.date{
  font-size:1.4rem;color:#666;
  padding:13px 13px 5px 13px;
}

.info-text{
  font-size:1.5rem;
  padding:0 13px 13px 13px;
}

/* 新着情報一覧を見る */
.sub-link {
  padding:0 0 0 0;
  text-align: right;  
}

.sub-link a {
  font-size: 1.3rem;
  color: #3a7ed0;
  text-decoration: none;
  border-bottom: solid 1px #3a7ed0;
  padding-bottom:3px;
  transition: 0.2s;
}

.sub-link a:hover {
  border-bottom: solid 1px #fff;
}



/* 登録番号 */
.toroku {
  background-color: #fafafa;
  border:solid 1px #e0e0e0;
  padding:13px; 
}

@media screen and (max-width: 790px) {
  .container-toroku { 
  padding: 0 10px;
  margin-bottom: 40px;
  }
}



/* 私たちについて */
.aboutus-section {
  border: solid 2px #4f92ff;
  padding: 20px 40px 20px 40px;
  margin-bottom:7px;
}

@media screen and (max-width: 790px) {
  .aboutus-section { 
  padding: 20px;
  }
}

.aboutus-section p {
  font-size: 1.5rem;
  color: #808080;
}

.container-aboutus {
  margin-bottom:100px;
}

@media screen and (max-width: 790px) {
  .container-aboutus { 
  padding: 0 10px;
  }
}



/* サイドメニューのバナー */
.sidemenu-banner {
  max-width: 280px;
  margin:30px auto 0 auto;
}

@media screen and (max-width: 790px) {
  .sidemenu-banner  { 
  display: none;
  }
}

.sidemenu-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius:5px;
}

.sidemenu-banner img { max-width: 293px;}

.sidemenu-banner p {
  font-size:1.2rem;
  color: #808080;
}

.data-guide {
  max-width: 293px;
  margin:30px auto 0 auto;
}















.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 65px;                   /* SVGに合わせたサイズ */
  height: 65px;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 50%;
  
  /* SVGを背景として設定 */
  background-image: url('../img/chevron-up.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72%;

  color: #666;
  font-size: 20px;
  font-weight: bold;
  padding: 0;                     /* ボタン内に余白は不要 */

  display: block;
  transform: translateY(50px);    /* 初期は下に隠す */
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
}

.back-to-top:hover {
  background-color: #c5e1ed;
  border: solid 1px #ccc;
  transform: translateY(0px);     /* ホバー時に動かす */
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);       /* 上に移動して表示 */
}




 /* サービスページ共通 */
@media screen and (max-width: 790px) {
  .main-text { 
    padding:0 10px 0 10px;  
  }
}

.container-h1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width:1200px;
  margin:0 auto;
}

@media screen and (max-width: 575px) {
  .none {
    display: none;
  }
}

.main-text p.appeal {
  font-size:1.8rem;
  color: #fff;
  background-color:#ff067d;
  padding:0 25px 0 25px;
}

.circle img {
  border-radius: 50%;  /* 円形にする */
}

.letter005 {
  letter-spacing: 0.05em;
}

.letter01 {
  letter-spacing: 0.1em;
}

.red {
  color:#ff0000;
}








 /* ちょっとだけリストバンド */
.main-text h2.semicircle1 {
  color: #fff;
  background-color: #0025d8;
  text-align:center;
  padding: 5px 0 5px 0;
  border-radius: 25px 0px 25px 0px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 575px) {
  .main-text h2.semicircle1 {
    font-size:1.7rem;
  }
}

.main-text h2.semicircle2 {
  color: #fff;
  background-color: #00b974;
  text-align:center;
  padding: 5px 0 5px 0;
  border-radius: 25px 0px 25px 0px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 575px) {
  .main-text h2.semicircle2 {
    font-size:1.7rem;
  }
}

.column1-3 {
  max-width: 880px;
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  align-items:center;
}

@media screen and (max-width: 575px) {
  .column1-3 {
    grid-template-columns: 1fr;
  }
}

.column1-3 p.wristband_p1 {
  font-size:2.2rem;
  line-height: 3.6rem;
}

.item1-3 img {
  height:190px;
  margin:0 auto;
  display: block;
}

.column3-1 {
  max-width: 880px;
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  align-items:center;
  gap:13px
}

@media screen and (max-width: 575px) {
  .column3-1 {
    grid-template-columns: 1fr;
  }
}

.column3-1 p.wristband_p1 {
  font-size:2.2rem;
  line-height: 3.6rem;
}

.item3-1 img {
  height:250px;
  margin:0 auto;
  display: block;
}

.column1-1-1 {
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items:center;
  gap: 10px;
}

@media screen and (max-width: 1100px) {
  .column1-1-1 { 
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  }
}

@media screen and (max-width: 514px) {
  .column1-1-1 { 
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(3, 1fr);
  }
}

.item1-1-1 {
  text-align: center;
}

.item1-1-1 img {
  margin:0 auto;
  display: block;
  border: solid 1px #000;
}

.main-text p.example { /* こんなシーンでも...の箇所 */
  text-align:center;
  font-size: 2.8rem;
}

.column400w {
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.column700w {
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.column1-1-1two {
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

@media screen and (max-width: 1100px) {
  .column1-1-1two { 
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  }
}

@media screen and (max-width: 514px) {
  .column1-1-1two { 
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(6, 1fr);
  }
}

.column1-1-1two p.wristband_p1 {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.limex_explain {
  border: solid 3px #66ccc5;
  padding: 20px;
}

div.limex_explain h4 {
  font-size:2.2rem;
  color: #4dbfb8;
}


.pop-up {
  position: fixed;
  bottom: 175px;
  right: 0px;
  width: 114px;                   /* SVGに合わせたサイズ */
  height: 380px;

  
  /* SVGを背景として設定 */
  background-image: url('../img/w7.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;

  color: #666;
  font-size: 20px;
  font-weight: bold;
  padding: 0;                     /* ボタン内に余白は不要 */

  display: block;
  transform: translateX(50px);    /* 初期は下に隠す */
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  transition: 0.2s;
}

.pop-up:hover {
  transform: translateX(0px);     /* ホバー時に動かす */
  transition: 0.2s;
  background-image: url('../img/w8.png');
}

.pop-up.show {
  opacity: 1;
  transform: translateX(0);       /* 上に移動して表示 */
}

.pop-up.hide {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 1100px) {
  .pop-up { 
  width: 85px;                   /* SVGに合わせたサイズ */
  height: 285px;
  }
}

@media screen and (max-width: 514px) {
  .pop-up { 
  width: 57px;                   /* SVGに合わせたサイズ */
  height: 190px;
  bottom: 110px;
  }
}







 /* マーカーの種類 */
.mark1 {
  background: linear-gradient(transparent 40%, #ffff66 80%);
}

.mark2 {
  background: linear-gradient(transparent 70%, #ffe149 0%);
  padding: 0 5px 0 5px;
}

.mark3 {
  background: linear-gradient(transparent 70%, #e8aecc 0%);
  padding: 0 5px 0 5px;
}

.mark4 {
  background: linear-gradient(transparent 70%, #ade0dd 0%);
  padding: 0 5px 0 5px;
}







.main-text h1 {
  font-size:2.5rem;
  color: #003894;
}

.main-text h2 {
  font-size:2.1rem;
  color: #003894;
}



.main-text h3 {
  font-size:2rem;
}

.main-text p {
  font-size:1.7rem;
  line-height:1.8;
}

.full-width {
  width: 100%;
}

.main-text p.heading {
  font-size:3.3rem;
  text-align:center;
}

.main-text p.subheading {
  font-size:1.7rem;
}

.indent {text-indent:-1.5em;padding-left:1.5em;}








.formWrap {
	max-width:800px;
	margin-left:auto;
  margin-right:auto;
  font-size:1.4rem;

}

.formTable {
  border-collapse: collapse;
  border-spacing: 0;
}

.formTable th {
	width:30%;
	text-align:left;
  padding:20px;
  border-bottom: 2px solid #ffffff;
  background-color: #ededed;
}

.formTable td {
	text-align:left;
  padding:20px;
  border-bottom: 2px solid #ffffff;
  background-color: #ededed;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}

.submit{text-align:center;padding-top:15px;padding-bottom:15px;}

.submit input {
  border:1px solid #000;
}

.completion{margin:0 auto;
	padding-top:50px;}
.completion p{text-align:center;}





.textbox-1 {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #969da3;
    border-radius: 5px;
    color: #333;
    font-size: 1em;
    line-height: 1.5;
    background-color: #fff;
}

.textbox-1::placeholder {
    color: #999;
}

.textbox-2 {
    width: 50%;
    padding: 8px 10px;
    border: 1px solid #969da3;
    border-radius: 5px;
    color: #333;
    font-size: 1em;
    line-height: 1.5;
    background-color: #fff;
}

.textbox-2::placeholder {
    color: #999;
}







/* ================================
   ▼ トリアージページ：画像 + キャプション + レイアウト最終版
================================= */
.triage-img-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.triage-img-wrap figure {
  width: calc(50% - 10px);
  text-align: center;
}

.triage-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.triage-img-wrap figcaption {
  font-size: 1.4rem;
  color: #555;
  margin-top: 8px;
  line-height: 1.6;
}

/* スマホでは1列表示 */
@media screen and (max-width: 768px) {
  .triage-img-wrap figure {
    width: 100%;
  }
}

/* ================================
   ▼ トリアージ価格表（落ち着いた読みやすい仕様）
================================= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 1.7rem; /* ← 文字大きめ */
}

.price-table th,
.price-table td {
  border: 1px solid #dcdcdc;
  padding: 14px 16px;
  text-align: left; /* ← 左揃え */
}

/* 行の交互色（白・非常に薄いグレー） */
.price-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.price-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}


/* ================================
================================= */
/* ▼ ご注文の流れ（フローステップ） */
/* ▼ ご注文の流れ（大きく・見やすい版） */
.flow-steps {
  margin-top: 60px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 70px;
  position: relative;
}

/* ▼ 左側の番号パネル */
.flow-step-number {
  background: #00a2dd;
  color: #fff;
  font-weight: 700;
  width: 160px; /* ← 120→160に拡大 */
  padding: 20px 12px; /* ← 少し厚みを出す */
  text-align: center;
  font-size: 1.8rem; /* ← 1.4rem→1.8rem */
  line-height: 1.4;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08); /* 影で立体感 */
}

/* ▼ 下向き矢印（大きめ & 間隔拡大） */
.flow-step::after {
  content: "▼";
  position: absolute;
  left: 80px; /* パネルサイズに合わせて再調整 */
  bottom: -38px;
  color: #00a2dd;
  font-size: 1.8rem; /* ← 1.4 → 1.8 */
}

.flow-step:last-child::after {
  display: none;
}

/* ▼ 右側テキスト */
.flow-step-text {
  flex: 1;
  font-size: 1.9rem; /* ← 全体を見やすく拡大 */
  line-height: 1.9;
  color: #333;
}

/* ▼ スマホ最適化 */
@media screen and (max-width: 768px) {
  .flow-step {
    flex-direction: column;
  }
  .flow-step-number {
    width: 100%;
    font-size: 1.6rem;
    padding: 16px 10px;
  }
  .flow-step::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ▼ ご注文の流れ：メリハリ強化 */
.flow-step-number {
  border-left: 6px solid #0073c8; /* ← 一本ラインができる */
  background: #e9f6ff;           /* ← 青を少し淡く、やさしい印象に */
  color: #004b84;
}

.flow-step::after {
  color: #004b84; /* 矢印も合わせて落ち着いた青に */
}

/* 右の文章の読みやすさ向上 */
.flow-step-text {
  line-height: 1.95;
  font-size: 1.8rem;
}

/* 重要文の見せ方 */
.flow-step-text .em {
  font-weight: 600;
  background: #fff7d9;
  padding: 2px 4px;
  border-radius: 3px;
}



/* ================================
================================= */
/* ▼ 会社概要 */
.section-title {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid #0C48D1; /* ブルー基調で統一感 */
  margin-top: 40px;
}

.tbl-history {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.tbl-history th,
.tbl-history td {
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  text-align: left; /* 左揃えを統一 */
}

/* 交互背景色 */
.tbl-history tr:nth-child(odd) {
  background: #ffffff;
}

.tbl-history tr:nth-child(even) {
  background: #fafafa;
}

/* 会社概要テーブル（沿革と同トーン） */
.tbl-basic {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px; /* ← 沿革と同じ文字サイズ */
}

.tbl-basic th,
.tbl-basic td {
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  text-align: left; /* 左揃えで読みやすく */
}

/* 行ごとに背景色を交互に */
.tbl-basic tr:nth-child(odd) {
  background: #ffffff;
}

.tbl-basic tr:nth-child(even) {
  background: #fafafa;
}

/* 見出しセル（th）は少し強調 */
.tbl-basic th {
  font-weight: 600;
  white-space: nowrap; /* 項目名を折り返さない */
}



/* ================================
================================= */
/* ▼ 新着情報一覧 */
.news-list {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
  width: 100%;
}

.news-item {
  display: flex;                  /* ← 横並びにする */
  align-items: center;            /* ← 縦位置を完全に揃える */
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid #ddd;
}

.date {
  width: 130px;                   /* ← 日付欄の幅を固定 */
  white-space: nowrap;
  color: #666;
  font-size: 15px;
  font-weight: 500;
}

.news-title {
  flex: 1;                        /* ← 余った幅をタイトル側へ */
  font-size: 16px;
  text-decoration: none;
  color: #333;
  line-height: 1.6;
}

.news-title:hover {
  opacity: 0.7;
}

.news-item * {
  line-height: 1.6;
  margin: 0;
  padding: 0;
}





/* ================================
================================= */
/* ▼ 電子ブック */
.ebook-check-list {
  margin: 32px 0;
}

.ebook-check-list p {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.8;
}

.ebook-check-list span {
  color: #00a3e8;
  font-weight: 900;
  margin-right: 6px;
}



/* ================================
================================= */
/* ▼ オンデマンド表面加工 */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-top: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.highlight-list {
  font-size: 2em;             /* 文字サイズ大きめ */
  font-weight: 700;           /* 太めで強調 */
  line-height: 1.6;           /* 読みやすく */

  padding: 20px 25px;         /* 内側余白 */
  border-radius: 12px;        /* 角丸で柔らかさ */
  margin-bottom: 30px;        /* 下にゆとり */
  list-style: none;           /* デフォルトの黒丸削除 */
}

.highlight-list li {
  background-color: #e6f0ff;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 12px;

  /* 右上から左下に白い斜線 */
  background-image: repeating-linear-gradient(
    135deg,          /* 右上→左下 */
    rgba(255, 255, 255, 0.3), /* 線の色（透過で背景に馴染む） */
    rgba(255, 255, 255, 0.3) 6px, /* 線の幅 */
    transparent 4px,  /* 線の間隔開始 */
    transparent 12px  /* 線の間隔終了 */
  );
}



/* ================================
================================= */
/* ▼ 特定商取引法 */
.returns {
  margin: 0;
  list-style: none; /* デフォルトの丸を消す */
}

.returns li {
  position: relative;
  margin-bottom: 0.5em;
  text-indent: 0; /* 必要なら0に */
  padding-left: 1em; /* 字下げ */
}

.returns li::before {
  content: "・";
  position: absolute;
  left: 0;
}


/* ================================
================================= */
/* お問い合わせページのチェックリストを電子ブックと同サイズに */
.contact-check-list li {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}



/* ================================
================================= */
/* 画像補正・レタッチ見本の表のレスポンシブ対応 */
/* 横スクロール対応 */
.table-responsive {
  overflow-x: auto;
}

/* 表全体 */
.price-table {
  width: 100%;
  border-collapse: collapse; /* 枠線なしでもレイアウト保持 */
  table-layout: fixed; /* 列幅を指定しやすくする */
  border: none; /* 表全体の枠線を消す */
}

/* th, td 基本スタイル */
.price-table th,
.price-table td {
  text-align: left;
  vertical-align: top;
  padding: 10px;
  border: none; /* 枠線を消す */
}

/* th（画像列）の幅を広げる */
.price-table th {
  width: 45%; /* 画像列を45%に設定 */
}

/* 表の画像を大きく見せる */
.price-table th img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* 中央揃え */
}

/* td内のp要素の余白調整 */
.price-table td p {
  margin: 0 0 10px 0;
  padding: 0.5em 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table th {
    margin-bottom: 10px;
    width: 100%; /* スマホは画像列も幅いっぱい */
  }

  .price-table th img {
    max-width: 100%;
  }
}






/* ================================
================================= */
/* データ入稿ガイドの重要情報を大きく表示 */
.data-guide-important {
  font-size: 1.8rem;   /* contact.html のチェックリストと同じ大きさ */
  line-height: 1.7;
}

/* リスト項目も大きくする */
.data-guide-list li {
  font-size: 1.8rem;
  line-height: 1.8;
  padding: 6px 4px;
}

/* データ入稿ガイド：マーカー付きリスト */
.data-guide-list li span {
  font-size: 1.8rem;                 /* contact.html とほぼ同等の大きさ */
  line-height: 1.9;
  padding: 0 4px;                    /* 自然に見える左右の余白 */
  font-weight: 500;
}

.data-guide-link-strong a {
  font-size: 1.8rem;       /* 大きく */
  font-weight: 700;        /* 太字 */
  display: inline-block;
  padding: 2px 4px;
}

/* テキストにマーカーを引くための汎用クラス */
.text-marker {
  background: linear-gradient(transparent 60%, #ccff90 60%);
  padding: 0 .2em;
  font-weight: 600;
  display: inline;
}

.text-marker2 {
  background: linear-gradient(transparent 60%, #abe9ff 60%);
  padding: 0 .2em;
  font-weight: 600;
  display: inline;
}

.text-marker3 {
  background: linear-gradient(transparent 60%, #ffabd5 60%);
  padding: 0 .2em;
  font-weight: 600;
  display: inline;
}


.guide-box-large {
  font-size: 1.8rem; /* ← 好みで調整可能（1.3remでもOK） */
  line-height: 1.8;
}

.guide-box-large strong {
  font-size: 1.8rem;
}

.guide-box-large a {
  font-size: 1.8rem;
}



/* ================================
================================= */
/* 複写伝票ページの表にだけ border を適用 */
/* 複写伝票ページの表にだけ border を適用 */
.page-copy-slip table {
  width: 100%;
  border-collapse: collapse;
}

.page-copy-slip table th,
.page-copy-slip table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

/* PC表示で太字セルの背景をグレーに */
.page-copy-slip table th {
  background-color: #e5e5e5;  /* グレー背景 */
  font-weight: bold;
}

/* スマホ用レスポンシブ（767px以下） */
@media screen and (max-width: 767px) {
  .price-table, 
  .price-table thead, 
  .price-table tbody, 
  .price-table th, 
  .price-table td, 
  .price-table tr {
    display: block;
  }

  .price-table thead tr {
    display: none; /* ヘッダー非表示 */
  }

  .price-table tr {
    margin-bottom: 1em;
    border: none !important; /* 行の枠を強制的に消す */
    padding: 8px 0;
  }

  .price-table td {
    border: none !important; /* セルの枠を強制的に消す */
    padding-left: 0;
    text-align: left;
    white-space: normal;
  }

  .price-table td::before {
    content: attr(data-label) ": ";
    display: inline; /* 1行で表示 */
    font-weight: bold;
    margin-right: 4px;
  }
}


/* ================================
================================= */
/* ▼ LIMEX名刺 */
/* ▼ 2カラム（画像 + テキスト）レイアウト */
/* 画像とテキストを左右で高さ揃えするレイアウト */
.grid2 {
  display: flex;
  gap: 32px;
  align-items: center; 
}

/* 左側（画像） */
.grid2 figure {
  flex: 0.8;
}

.grid2 img {
  width: 100%;
  height: auto;       /* ← 高さを自動にするのでトリミングされない */
  object-fit: contain; /* ← cover を使わないことでトリミングゼロ */
  max-height: 180px;   /* ← 画像の最大高さを制限（小さめにする） */
  border-radius: 4px;
}



/* 右側（テキスト） */
.grid2 > div {
  flex: 1.4;
}

/* h3 と p も中央揃え感を維持 */
.grid2 h3 {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .grid2 {
    flex-direction: column;
  }
  .grid2 img {
    height: auto;
    object-fit: contain;
  }
}

/* ▼ h3-blue（強調・視線誘導の強い水色見出し） */
.h3-blue {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0077b6; /* 濃い水色（視認性が高い） */
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.5;

  /* 左ラインを水色で強調 */
  border-left: 8px solid #0077b6;
  padding-left: 14px;

  /* 背景に淡い水色（強調しすぎない透明感） */
  background: rgba(173, 216, 230, 0.25);

  padding-top: 8px;
  padding-bottom: 8px;

  border-radius: 4px;
}

/* ▼ LIMEXページ専用の表（文字大・ボーダー付き） */
.limex-table {
  font-size: 16px; /* ← ここで文字を大きくする（必要なら17〜18可） */
  border-collapse: collapse; /* 枠線が綺麗に揃う */
  width: 100%;
}

/* 枠線（外枠 + 内側すべて） */
.limex-table th,
.limex-table td {
  border: 1px solid #ccc; /* 落ち着いた薄いグレー */
  padding: 12px 10px;     /* 読みやすい余白 */
}

/* ストライプ（交互背景） */
.limex-table tbody tr:nth-child(odd) {
  background-color: #f7f9fc; /* 薄い青グレー */
}

.limex-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* ヘッダー行を少し強調 */
.limex-table thead th {
  background-color: #e9eff5; /* ごく薄いブルーグレー */
  font-weight: 700;
}

/* ▼ 厚さ列の幅調整（1列目だけ広げる） */
.limex-table td:first-child,
.limex-table th:first-child {
  width: 180px;     /* ← ここで好きな幅に設定できます */
  white-space: nowrap; /* 折り返し防止 */
}

/* ▼ LIMEX冊子ページ専用の表（文字大・ボーダー付き） */
.limex-table2 {
  font-size: 16px; /* ← ここで文字を大きくする（必要なら17〜18可） */
  border-collapse: collapse; /* 枠線が綺麗に揃う */
  width: 100%;
}

/* 枠線（外枠 + 内側すべて） */
.limex-table2 th,
.limex-table2 td {
  border: 1px solid #ccc; /* 落ち着いた薄いグレー */
  padding: 12px 10px;     /* 読みやすい余白 */
}

/* ストライプ（交互背景） */
.limex-table2 tbody tr:nth-child(odd) {
  background-color: #f7f9fc; /* 薄い青グレー */
}

.limex-table2 tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* ヘッダー行を少し強調 */
.limex-table2 thead th {
  background-color: #e9eff5; /* ごく薄いブルーグレー */
  font-weight: 700;
}

/* ▼ 厚さ列の幅調整（1列目だけ広げる） */
.limex-table2 td:first-child,
.limex-table2 th:first-child {
  width: 120px;     /* ← ここで好きな幅に設定できます */
  white-space: nowrap; /* 折り返し防止 */
}

/* LIMEX冊子ページ：厚さ列の幅調整 */
.limex-table2 th:nth-child(2),
.limex-table2 td:nth-child(2) {
  width: 180px;   /* ← 好きな幅に調整 */
  white-space: nowrap;  /* 折り返し防止 */
}




/* ================================
================================= */
/* 冊子印刷ページ：製本方法リストの特別デザイン（大きめフォント版） */
.booklet-binding-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.booklet-binding-list li {
  font-size: 1.6rem;      /* ← ご希望の大きめサイズ */
  line-height: 1.8;       /* 文字に合わせてゆったり */
  margin-bottom: 12px;
  padding-left: 28px;     /* アイコン位置に合わせて調整 */
  position: relative;
}

/* 小さめ ■アイコン（大きな文字に埋もれないバランス） */
.booklet-binding-list li::before {
  content: "■";
  color: #555;
  font-size: 1rem;        /* 小さめに保ちながら視認性確保 */
  position: absolute;
  left: 0;
  top: 0.6em;            /* ← 行の中央に近づける黄金比の高さ */
}

/* ▼ 冊子印刷ページ用テーブル（LIMEX冊子と同等のデザイン） */
.booklet-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 1.4rem;       /* 読みやすい大きさに統一 */
  border: 1px solid #ccc;
}

/* セル共通 */
.booklet-table th,
.booklet-table td {
  padding: 14px 18px;
  border: 1px solid #ccc;
  vertical-align: top;
  line-height: 1.7;
}

/* 見出し行 */
.booklet-table th {
  background: #f1f1f1;
  font-weight: 600;
  white-space: nowrap;
}

/* 行の交互色 */
.booklet-table tbody tr:nth-child(odd) {
  background: #fafafa;
}

/* スマホの横スクロール（必要に応じて wrapper に入れる） */
.booklet-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

/* 2列目「厚さ」の列幅を広げる（重要） */
.booklet-table th:nth-child(2),
.booklet-table td:nth-child(2) {
  width: 200px;         /* 必要なら200〜240pxにしてもOK */
  white-space: nowrap;
}

/* ▼ 冊子印刷ページテーブル：1列目（用紙種別）を広げる */
.booklet-table th:nth-child(1),
.booklet-table td:nth-child(1) {
  width: 200px;       /* ← 好みで 200〜280px に調整可 */
  white-space: nowrap;
}



/* ----------------------------------------------------
   封筒・挨拶状ページの表（booklet準拠デザイン）
   ---------------------------------------------------- */

.futo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 1.4rem;  /* booklet と同じ大きさ */
}

.futo-table th,
.futo-table td {
  border: 1px solid #ccc;  /* グレーの枠線（bookletと同じ） */
  padding: 12px 14px;      /* 余白もしっかり */
  text-align: left;
  vertical-align: top;
}

.futo-table thead th {
  background: #f0f0f0;     /* 見出し背景（booklet準拠） */
  font-weight: 600;
}

.futo-table tbody tr:nth-child(odd) {
  background: #f7f7f7;     /* 交互背景の薄いグレー */
}



/* ================================
================================= */
/* 名刺ページ専用 table（futo-table のコピー） */
.meishi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
}

.meishi-table th,
.meishi-table td {
  border: 1px solid #ccc;
  padding: 14px 12px;
  vertical-align: top;
}

.meishi-table thead th {
  background: #f4f4f4;
  font-weight: 600;
}

.meishi-table tbody tr:nth-child(even) {
  background: #fafafa;
}
