body {
	        overflow-x: hidden;
}

/* new plan */

	small {
		font-size: 11px;
		color: #555;
	}
	.pricing-modal {
  display: flex;
  gap: 30px;
  max-width: 100%;
  margin: 30px;
  font-family: system-ui, sans-serif;
}

/* 左 */
.plan-selector {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-btn {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 12px;
  padding: 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.plan-btn strong {
	margin-bottom: 10px;
}
.plan-btn p {
	margin: 0px;
}

.plan-btn .radio {
  width: 18px;
  height: 18px;
  border: 2px solid #bbb;
  border-radius: 50%;
}

.plan-btn.is-active {
  border-color: #7b61ff;
}

.plan-btn.is-active .radio {
  border-color: #7b61ff;
  background: #7b61ff;
}

/* 右 */
.plan-compare {
  flex: 1;
}

.plan-panel {
  display: none;
      width: 1200px;
    margin: 0 auto;
}

.plan-panel.is-active {
  display: block;
}

.plan-panel h3 {
  margin-bottom: 12px;
}

.plan-panel ul {
  list-style: none;
  padding: 0;
}

.plan-panel li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* plan */

/* =========
  Base
========= */
.planTable{
  --accent: #1f2a44;
  --accent-weak: rgba(123,97,255,.08);
  --line: rgba(0,0,0,.08);
  --text: #1f1f1f;
  --muted: rgba(0,0,0,.62);
  --row: rgba(0,0,0,.04);
  color: var(--text);
  font-family: system-ui, -apple-system, "Noto Sans JP", sans-serif;
}

.planTable__wrap{
 
  border: 1px solid var(--line);
  background: #fff;
}

/* =========
  Table layout
========= */
.planTable__table{
  width: 100%;
  min-width: 760px; /* モバイルで横スクロール */
  border-collapse: separate;
  border-spacing: 0;
}

.planTable__th,
.planTable__feature,
.planTable__cell{
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: middle;
}

/* Header sticky */
.planTable__thead .planTable__th{
  position: sticky;
  top: 0;
  z-index: 5;
  
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.planTable__th--feature{
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  width: 40%;
}

/* Plan headers */
.planTable__th--plan{
  text-align: center;
  padding-left: 10px !important;
}

/* Left feature column */
.planTable__feature{
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: rgba(0,0,0,.75);
  background: #fff;
}

.planTable__th,
.planTable__feature {
	padding-left: 20px;
}
.planTable__feature span {
	display: block;
	font-size: 11px;
	color: #666;
	line-height: 200%;
}
.planTable__cell{
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  background: #fff;
}

.op {
	color: rgba(31, 42, 68, 0.4);
	font-size: 12px;
}

a {
	text-decoration: none;
}

/* =========
  Zebra rows (like Canva)
========= */
.planTable__tbody tr:nth-child(even) .planTable__feature,
.planTable__tbody tr:nth-child(even) .planTable__cell{
  background: var(--row);
}

/* =========
  Active column highlight
  - is-active が付いたセル/ヘッダだけ薄紫 + 縦ライン
========= */
.planTable__cell.is-active,
.planTable__th.is-active{
  background: linear-gradient(to bottom, rgba(123,97,255,.09), rgba(123,97,255,.03));
  position: relative;
}

/* 左右の縦ライン（選択カラムを囲う） */
.planTable__cell.is-active::before,
.planTable__th.is-active::before{
  content:"";
  position:absolute;
  top:-1px; bottom:-1px; left:-1px;
  width: 3px;
  background: rgba(123,97,255,.35);
}
.planTable__cell.is-active::after,
.planTable__th.is-active::after{
  content:"";
  position:absolute;
  top:-1px; bottom:-1px; right:-1px;
  width: 3px;
  background: rgba(123,97,255,.35);
}



/* =========
  Small UI parts
========= */
.is-check{
  display:inline-block;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}
.non-check {
	color: rgba(31, 42, 68, 0.2);
}
.is-num{
  font-size: 22px;
  font-weight: 900;
}
.is-num--accent{
  color: var(--accent);
}
.is-dash{
  color: rgba(123,97,255,.8);
  font-weight: 900;
}
.is-pill{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.72);
  font-weight: 800;
  font-size: 16px;
}
.is-pill--strong{
  background: rgba(123,97,255,.12);
  color: var(--accent);
}
.is-badge{
  display:inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  color: rgba(0,0,0,.7);
  font-size: 14px;
  font-weight: 700;
}

.planTable__info{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.18);
  color: rgba(0,0,0,.6);
  font-size: 14px;
  margin-left: 10px;
}

/* =========
  Responsive
========= */
@media (max-width: 820px){
  .planTable__th--feature{ font-size: 18px; }
  .planTable__feature{ font-size: 16px; }
}

.center {
	text-align: center;
}

/* others */

.txt-box {
    width: 900px;
    margin: 0 auto;
    padding: 30px 0 0 0;
}

/* tooltip */

a.has-tip {
	font-size: 14px;
	line-height: 180%;
	text-decoration: none;
	color: #333;
	font-weight: 300;
}

.has-tip-right {
	display: inline-block;
	float: right;
	}

.has-tip-center {
	display: inline-block;
	text-align: center;
	}
	
.has-tip{
  position: relative;
  display: inline-block;
}

/* 吹き出し本体 */
.has-tip .tooltip{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%);
  width: max-content;
  max-width: 360px;          /* ここで折り返し */
  padding: 18px 20px;
  border-radius: 10px;

  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.8;

  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .12s ease, visibility .12s ease;
  z-index: 9999;
}

/* しっぽ（外枠つきの三角形：二重にして綺麗に） */
.has-tip .tooltip::before,
.has-tip .tooltip::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}

/* 外枠側（三角の縁） */
.has-tip .tooltip::before{
  border-width: 10px 10px 0 10px;
  border-color: rgba(0,0,0,.12) transparent transparent transparent;
}

/* 内側（白い三角） */
.has-tip .tooltip::after{
  margin-top: -1px; /* 縁と重ねて隙間消し */
  border-width: 10px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
}

/* 表示（hover + キーボードfocusでも） */
.has-tip:hover .tooltip,
.has-tip:focus-within .tooltip{
  opacity: 1;
  visibility: visible;
}

.white {
		background: #FFF;
		text-align: center;
		}
.blue {
	color: #fff;
	background: #243649;
	border: 0.5px #fff solid;
}

.gold {
	color: #fff;
	background: #848430;
	border: 0.5px #fff solid;
}

.center__txt {
	font-weight: 600;
	font-size: 16px;
	letter-spacing: .05;
}

.t__link {
	font-size: 12px;
	text-align: center;
	line-height: 200%;
}

    /* footer */

.foot-content {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-flow: space-around;
}

.footcon {
	width: 22%;
    margin: 1.5%;
}

.footcon h5 {
	color: #f2f2f2;
	font-size: 15px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	letter-spacing: .1rem;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
}

.footcon ul {
	margin-bottom: 30px;
}


.footcon li a {
	color: #DDD !important;
	font-size: 13px;
	line-height: 190%;
}

	 .fixheader {
		 width: 1100px;
	 }
	 /* plan */
	 
	 
	 	.plan-title-silber{
					background: #7F7F7F;
				}
				
				.gold-mini {
    color: #666;
    font-size: 12px;
}

/* new */



.fixheader {
	    width: 1200px;
    left: 50%;
    margin-left: -603px;
    }
    
    

.btn-plan {
    text-align: center;
    color: #fff;
    width: 187px;
    height: 55px;
    font-size: 1rem;
    font-weight: 600;
    display: table-cell;
    border-right: solid 1px #fff;
}
	
	table.table {
    width: 1200px;
    }
    td {
	    width: 200px;
    }	
    
    .table-sent {
    width: 1200px;
    }
    .table-sent li {
    width: 187px;
    }
    
    
.plan-title-start,
.plan-title-eco,
.plan-title-stan {
    background: #24364c;
}

.plan-title-eg
{
background: #848430;
}

	 
	 .btn-plan {
		 text-align: center;
		 color: #fff;
		 width: 160px;
		 height: 55px;
		 font-size: 1rem;
    font-weight: 600;
    display: table-cell;
    border-right: solid 1px #fff;
	 }
	 
	 .plan-title-start {
		 background: rgba(0, 77, 162, 1); 
	 }

 .plan-title-eco {
		 background: rgba(0, 77, 162, 1);
	 }
	 
	  .plan-title-stan {
	 background:  navy;
	 }
	 
	 	  .plan-title-b {
	 background: #000080;
	 }

 	  .plan-title-eg {
	 background: #a98d18;
	 }
	 
	 .btn-pl-sent {
		 width: 100%;
		 height: auto;
		 text-align: center;
		 background-color: blue;
		 color: #fff;
		 display: inline-block;
		 padding: 30px;
	 }
	
	 a:-webkit-any-link{
		 text-decoration: none !important;
	 }
	 
	 
	 
	 button.btm-plan{
   padding: 15px 20px;
    background: #0048fb;
    margin: 0 auto;
    font-size: 20px;
    -webkit-border-radius: 5px;
    display: flex;
}
	 button.btm-plan:hover {
		 opacity: .6;
	 }
	 
	 .sp-plan-pdf{
		 display: none;
	 }
	 
	 .btn-blue{
		 background: #0070c9 !important;
	 }
	 .btn-blue a{
		 color: #fff;
	 }
	 
	 
	 .table-txt-box {
 width: 1100px;
    margin: 0 auto;
    line-height: 150%;
    font-size: 13px;
}

.table-txt-box h4 {
    color: #808000 ;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: normal;
}

.table-txt-box p {
	font-size: 13px;
	color: #666;
}

@media only screen and (max-width: 767px) {  /* スマホ用のスタイル */
  
  .wrapper {
	  width: 100% !important;
  }
.pricing-modal {
	display: none;
}

.bottom-contact {
	height: auto !important;
 }
.bottom-contact h3 {
	margin: 0 40px;
}
 
  
 side {
	  display: inline !important;
	  padding: 0 15px;
  }
  
  .table-txt-box {
	  width: 100%;
	  border: none;
	  padding: 0 20px;
	  
  }
  
 h1 {
	  font-size: 1.2em;
	  margin-bottom: 0;
    font-weight: normal;
    padding:  0;
}
  
 .sub {
	  padding: 0 20px;
	  color:  #555;
	  font-size: .8rem;
  }
  
 .txt-box {
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px 20px;
    line-height: 180%;
    font-size: 15px;
}


dd {
    margin: 0 0 0 0 !important;
}
.side-plan {
margin-bottom: 40px;
}

.txt-box h2 {
	color: #444;
	font-size: 1.2rem;
}
  
  /* footer sp */

.foot-content {
	display: inherit;
}

.footcon {
	width: 100%;
	width: 44%;
    float: left;
}

.footcon h5 {
	font-size: 13px;
}

.footcon li a {
	font-size: 11px;
}

.footcon-sp {
	margin-left: 6%;
}

  /* new */
  
    .space {
			  width: 100%;
			  height: 20px;
		  }
		  
		  h1 {
			  font-weight: bold;
			  color: #444;
		  }
		  .op-bg{
			  width: auto;
			  padding: 10px 10px 20px;
			  background: #f2f2f2;
			  margin: 20px 10px;
		  }
 
 .btm-plan a{
	     display: block;
	     color: #fff;
 }
	 
	 .sp-plan-pdf{
		 display: inherit;
		 display: block;
	 }
	 
	 .print{
		 display: none;
	 }
	 
	 
	 /* sp plan */

.top-plan {
	padding-bottom: 60px;
	padding-top: 50px;
	margin-bottom: 60px;
	background-color: #f7f8fa;
	width: 100%;
	
}
.top-plan-head {
	text-align: center;
	    color: #444;
}

.top-plan-head h2 {
    font-size: 1.9rem;
    color: #444;
    line-height: 160%;
    margin-bottom: 30px;
}

.top-plan-head p {
	text-align: center;
	line-height: 180%;
	color: #555;
	font-size: 15px;
	margin-bottom: 40px;
}

.plans-container {
     display: flex;
    justify-content: flex-start;
     overflow-x: auto;
    white-space: nowrap; /* コンテンツを折り返さず横に並べる */
    padding: 20px;
      margin-bottom: 20px;
     gap: 10px;
}

.plan-box {
	width: 100%;
	display: inline-block;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px 20px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.plan-box h3 {
    font-size: 15px;
    color: #555;
    font-weight: bold;
    margin: 15px 0 20px;
    }

.plan-box h2 {
    font-size: 1.3rem;
    color: #FFF;
    margin: 0 0 20px;
    padding: 5px 0;
    font-weight: bold;
    border-radius: 5px;
}

.top-plan-head h1 {
	font-size: 1.6rem;
    color: #555;
    line-height: 180%;
    margin-bottom: 30px;
}


.bg-star-eco {
	 background: url(/images/coniro-side.png) repeat-x;
}
.bg-stan-bu {
	  background: url(/images/coniro-side.png) repeat-x;
}
.bg-ecz {
	background: url(/images/gold.png) repeat-x 0 0;
}

.price {
    font-size: 19px;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center; /* 子要素を縦方向に中央揃え */
}

.price b {
    font-size: 26px;
    color: #333;
   margin-left: 8px;
   margin-right: 5px;
}


a.button {
    background-color: #007bff;
    color: white;
    padding: 10px 0px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    text-decoration: none;
}

a.button:hover {
    background-color: #0056b3;
}

a.button-ver2 {
    background-color: #fff;
    color: #007bff;
    border: solid 2px #007bff;
    padding: 10px 0px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    text-decoration: none;
}

a.button-ver2:hover {
    background-color: #007bff;
    color: #fff;
}


a.button-free {
    background-color: #2c5235;
    color: #fff;
    border: solid 2px  #2c5235;
    padding: 8px 0px;
    width: 100%;
    border-radius: 5px;
    letter-spacing: 4px;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    text-decoration: none;
}

a.button-free:hover {
    background-color: #fff;
    color: #2c5235;
    border: solid 2px  #2c5235;
}


a.button-ver2 {
    background-color: #fff;
    color: #2c5235;
    border: solid 2px #2c5235;
    padding: 8px 0px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    text-decoration: none;
}

a.button-ver2:hover {
    background-color: #2c5235;
    color: #fff;
}



.plan-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-box ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.plan-box ul li dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 0 5px;
    margin: 0 0 5px;
    border-bottom: solid 1px #ddd;
}

.recommended {
    border: 2px solid #ff5555;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}


.recommended-tag {
    position: absolute;
    top: -15px;
    left: -2px;
    background-color: #ff5555;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}


.kakuyasu {
	    border: 2px solid #0096ff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.kakuyasu-tag {
    position: absolute;
    top: -15px;
    left: -2px;
    background-color: #0096ff;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}

.sp-plan-pdf {
    display: inline;
}
  
  }
  
@media print, screen and (min-width: 768px) { /*タブレットレイアウト*/}
 
 a {
 text-decoration: none !important:
 }
 .center {
	 text-align: center !important;
 }
.mini {
	font-size: 12px;
}

.plan1 {
	background: #ff8000;
}

.panlist {
width: 100%;
}
 
.wrapper {
 font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #9f9f9f;
  font-size: 15px;
  width: 1130px;
  margin: 0 auto;
  }

.package {
  box-sizing: border-box;
  width: 210px;
display: inline-block;
  padding: 10px;
  text-align: center;
  float: left;
  -webkit-transition: margin-top 0.5s linear;
  transition: margin-top 0.5s linear;
  position: relative;
  margin: 0 8px;
}



ul.package li {
	text-align: left;
line-height: 160%;
	color: #333;
	padding: 10px 10px 20px;
}

.package .sub {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	line-height: 140%;
	color: #b6b07c;
}

.plan-bg {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f8f1), color-stop(100%,#f4f2e2));
	margin: -10px;
	padding: 10px;
	font-family: 'Arial Black', Arial, Helvetica, sans-serif;
font-weight: bold;

}

.plan-bg:after {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 15px;
	margin-top: 5px;
	left: 0;
	background: url(/img/stripe.png) repeat-x 0 0;
}




.yen {
color: #444;
	font-size: 23px;
	padding: 6px 0;
	  display: inline-block;
}
hr {
  background-color: #dedede;
  border: none;
  height: 1px;
}


.package ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 15px -10px 0;
  
}

.package li {
  padding: 15px 10px;
  margin-bottom: 0px;
  border-bottom: solid 1px #999;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.8pt;
}
.package li:last-child {
	border-bottom: none;
	margin: 0;
}
.checkIcon {
  font-family: "FontAwesome";
  content: "\f00c";
}


.brilliant {
  border-color: #33c4b6;
}
/* Triangle */
.brilliant::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 64px 0 0;
  border-color: #3bc6b8 transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}
.brilliant::after {
  font-family: "FontAwesome";
  content: "\f00c";
  color: white;
  position: absolute;
  left: 9px;
  top: 6px;
  text-shadow: 0 0 2px #37c5b6;
  font-size: 1.4rem;
}

/* お申込み */
 /* お申込み背景デザイン */
.pricing-table thead .price a {
	display: block;
	position: absolute;
	top: 120px; /* お申込みボタンの上部余白調整 */
	right: -5px;
	height: 32px;
	padding: 0 68px;
	line-height: 32px;
	font-size: 15px;
letter-spacing:1.6pt;
color:#0070c9;
	text-decoration: none;
}


.plan-bg a {
	color: #fafafa;
	text-shadow: 1px 1px 2px rgba(0,0,0, .3);
	background: #32cd32;
	background: -moz-linear-gradient(top,  #32cd32 0%, #32cd32 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444B5B), color-stop(100%,#32cd32));
	background: -webkit-linear-gradient(top,  #32cd32 0%,#32cd32 100%);
	background: -o-linear-gradient(top,  #32cd32 0%,#32cd32 100%);
	background: -ms-linear-gradient(top,  #32cd32 0%,#32cd32 100%);
	background: linear-gradient(to bottom,  #32cd32 0%,#32cd32 100%);
}

.plan-bg a:before,
.plan-bg a:after {
	display: block;
	position: absolute;
	content: '';
}

.plan-bg a:before {
	width: 8px;
	height: 32px;
	margin-top: -5.5px;
	left: 2px;
	background: url(/img/badge.png) no-repeat;
}


.plan-bg a:after {
	width: 0;
height: 0;
bottom: -5px;
right: -5px;
border-bottom: 5px solid transparent;
top: 217px;
}



.plan-bg .orange a:before { background-position: 0 -32px; }
.plan-bg .orange a:after { border-left: 5px solid #444B5B; }



.plan-bg a {
	color: #fafafa;
	text-shadow: 1px 1px 2px rgba(0,0,0, .3);
	background: #32cd32;
	background: -moz-linear-gradient(top,  #32cd32 0%, #32cd32 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444B5B), color-stop(100%,#32cd32));
	background: -webkit-linear-gradient(top,  #32cd32 0%,#32cd32 100%);
	background: -o-linear-gradient(top,  #32cd32 0%,#32cd32 100%);
	background: -ms-linear-gradient(top,  #32cd32 0%,#32cd32 100%);
	background: linear-gradient(to bottom,  #32cd32 0%,#32cd32 100%);
	display: block;
	text-align: center;
	margin: 0 -15px 0 0px;
	padding: 5.5px;
}

.plan-bg a:before { background-position: 0 -32px; }
.plan-bg a:after { border-left: 5px solid #444B5B; }

/* btn */

a.btn {
	background-color: #ff8042;
	padding: 10px 0px;
	color: #fff;
	width: 95%;
	border-radius: 5px;
	display: block;
	text-align: center;
	margin: 0 auto;
	text-decoration: none;
}


.btn:hover {
	opacity: 0.6;
}

a.text_link {
	display:inline-block;
}


.plan-box {
        width: 70%;
        display: inline-block;
    }
    
.plan-box h3 {
        white-space: break-spaces;
    }

side {
	display: none;
}

table.table{
  width:1100px;
  background-color: #ffffff;
  border-collapse: collapse;
  color: #333333;
  margin:0 auto;
}


table.table th{
  border: 1px solid #dedede;
  background-color:#ffffff;
  padding:5px;
  vertical-align: middle !important;
}
table.table td{
  border: 1px solid #dedede;
  padding: 15px 0;
  vertical-align: middle !important;
}


table.table tr th:hover{
  background-color: #f6f6f6;    /* マウスオーバー時の行の背景色 */
}
table.table th:hover{
  background-color: #f6f6f6;    /* マウスオーバー時のセルの背景色 */
}


.table > tbody > tr > td{
    border-top: solid 1px #ddd !important;
}
table.table td{
	text-align: center;
	vertical-align: middle;
	
}

th,td{
	color: #333;
}

td{
	font-size: 14px;
	line-height: 20px;
}


th{
	font-size: 14px;
line-height:200%;
text-align: left;
font-weight: normal;
}

.fixheader{
	left: 50%;
margin-left: -550px;
 animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

th.kara{
	display:block;
	background: #fff;
	width: 100%;
}

.fixheader th,
.fixheader td{
	padding:47px 2px 0 3px !important;
}

h1{
	text-align:center;
	}

.p-none{
	padding: 4px 2px 0 2px !important;
}

.plan-side{
	width: 250px;
}

.bold-gold{
	color: #808000;
	font-size: 15px;
	font-weight: bold;
}
.gold-mini{
	color: #808000;
	font-size: 12px;
}

.txt-mini{
	font-size: 10.5px !important;
}

.txt-minii{
	font-size: 12px;
}

.yen{
	font-size: 18px;
font-weight: bold;
}

.gray-bg{
	background-color: #f6f6f6 !important;
}

.do{
	background: #fdf2f8 !important;
}

.dk{
	background-color:#f5fbfe !important;
}

tr:hover{
	background-color: #f6f6f6;
} 

.plan-txt {
padding: 10px 0 0;
line-height: 200%;
font-size: 13px;
}

/* bottom */

.bottom-contact {
	width: 100%;
	height: 300px;
	background-size:cover;
	background-image: url(/images/bottom-bg.jpg);
}

.bottom-cover {
background-color: rgba(0,0,0,0.4);
overflow: hidden;
}

.bottom-contact h3 {
	text-align: center;
	padding-top: 80px;
	font-size: 18px;
	color: #fff;
}

.bottom-contact p {
	text-align: center;
	padding-bottom: 80px;
}



.table-sent {
	width: 1100px;
	margin: 0 auto;
	padding-bottom: 30px;
	display: flex;
	justify-content: flex-end;
}

.table-sent li {
float: left;
width: 159px;
margin-right: 1px;
}


.table-sent li:first-child {
height: 40px;
margin: 0;
}

.table-sent li img {
	width: 100%;

}

