@charset "UTF-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* フォーム要素の見た目を統一 */
input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* 画像の余白・はみ出し防止 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* HR */
.hrwhite {
border: none;
border-top: 1px solid #ffffff;
width: 100%;
margin-top: 10px;
margin-bottom: 14px;
}

.hrblue {
border: none;
border-top: 1px solid #2f5fa8;
}

html {
scroll-behavior: smooth;
}

body {
  padding-top: 146px;
}

@media screen and (max-width: 768px) {
body {
  padding-top: 60px;
}
}	

#toumei,#akippa,#axa,#rentool,#kantool,#smarep {
  scroll-margin-top: 180px;
}

/* =========================
   ヘッダー
========================= */
header {
width: 100%;
height: 70px;
background: #004094;
padding: 0 20px;
display: flex;
align-items: center;
top: 0;
left: 0;
z-index: 1000;
}

#hd-box {
width: 100%;
padding: 0 120px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 20px;
position: relative;
z-index: 1100;
}

/* ロゴ */
#hd-logo a {
display: flex;
align-items: center;
gap: 8px;
margin: 0;
}

#hd-logo img {
height: 19px;
width: auto;
display: block;
}

#hd-logo span {
font-size: 20px;
color: #ffffff;
font-weight: bold;
}

/* ハンバーガーボタン */
.hamburger {
position: relative;
width: 32px;
height: 32px;
z-index: 1200;
background: none;
border: none;
padding: 0;
cursor: pointer;
}

/* 中身はクリックを奪わない */
.icon-open,
.icon-close {
pointer-events: none;
position: absolute;
top: 0;
left: 0;
width: 32px;
height: 32px;
}

/* 開くアイコン */
.icon-open {
display: block;
}

/* 閉じるアイコン */
.icon-close {
display: none;
font-size: 40px;
line-height: 22px;
text-align: center;
color: #fff;
}

/* 切り替え */
.hamburger.active .icon-open {
display: none;
}

.hamburger.active .icon-close {
display: block;
}

/* メニュー */
.menu {
position: fixed;
top: 60px;
left: 0;
width: 35vw;
height: calc(100vh - 70px);
background: rgba(0, 64, 148, 0.95);
z-index: 500;
display: none;
transform: translateX(-100%);
will-change: transform;
}

.menu ul {
list-style: none;
margin: 0;
padding-top: 40px;
padding-right: 40px;
text-align: right;
}

.menu li {
margin-bottom: 30px;
}

.menu a {
color: #fff;
text-decoration: none;
font-size: 24px;
font-weight: bold;
}

.menu a:hover {
color: #f7f7ff;
}

/* 右側ログイン */
.m-header-login-link {
display: inline-block;
font-size: 16px;
line-height: 150%;
color: #004094;
font-weight: bold;
background-color: #ffffff;
border-radius: 6px;
padding: 6px 20px;
text-decoration: none;	
}

.m-header-box-right {
margin-left: auto;
display: flex;
align-items: center;
}


.m-header-login-link-str {
display: inline-block;
background: url(https://jbr-partner.net/ptenwp/wp-content/themes/jbr/images/common/m-header-icon01.svg) no-repeat left center;
background-size: auto 1.2em;
padding: .1em 0 .1em 1.7em;
}

@media screen and (max-width: 768px) {

/* ヘッダー */
header {
height: 60px;
padding: 0 16px;
margin-bottom: 0;	
}

/* 内側ボックス */
#hd-box {
padding: 0;
gap: 12px;
}

/* ロゴサイズ調整 */	
#hd-logo a {
flex-direction: column;
align-items: flex-start;
gap: 2px;
}	
	
#hd-logo img {
height: 12px;
}
	
#hd-logo span {
font-size: 12px;
}
	
	
	
/* ハンバーガーを左固定 */
.hamburger {
width: 28px;
height: 28px;
top: -4px;
}

.icon-close {
margin-left: 0;		
	}	
	
/* メニューを全幅に */
.menu {
top: 60px;
width: 100vw;
height: calc(100vh - 60px);
}

.menu ul {
text-align: left;
margin-left: 30px;
}	
.menu li {
margin-bottom: 23px;
}	
	
/* メニュー文字サイズ調整 */
.menu a {
font-size: 15px;	
}


/* ログインを右に小さく */
.m-header-box-right {
margin-left: auto;
}

.m-header-login-link {
font-size: 12px;
padding: 4px 10px;
}

}


/* =========================
   ヘッダー：追従メニュー
========================= */
.header-wrap{
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
height: 133px;
}

/* ===== index-menu ===== */

.index-menu{
position: sticky;
top: 76px;
left: 0;
z-index: 100;
padding: 1.1em 3.3em 1.1em 5.7em;
background: #ffffff;
width: 100%;
height: 76px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);	
}

.index-menu-box{
display: flex;
flex-direction: row;
align-items: center;
}

.index-menu-box-left{
flex-shrink: 0;
}

.index-menu-box-right{
flex-grow: 1;
}

.index-menu-logo-link-img{
max-width: 19vw;
}

.index-menu-list{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

.index-menu-list-item{
position: relative;
display: flex;
align-items: center;
justify-content: center;
padding: 0 20px;
}

.index-menu-list-item:not(:last-child)::after{
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 50px;
background: #ccc;
}

.index-menu-list-item-link{
display: inline-block;
font-size: clamp(4.8px, 1.11111vw, 16px);
line-height: 129%;
color: #333;
font-weight: 700;
text-align: center;
padding: 0 1.5em;
}

.index-menu-list-item-link:hover{
color: #004094;
}

/* ===== SP ===== */

@media screen and (max-width: 768px){

.index-menu{
padding: min(4.10256vw, 24px);
height: auto;
}

.index-menu-box{
display: block;
}

.index-menu-box-left{
width: 100%;
}

.index-menu-box-right{
width: 100%;
}

.index-menu-logo{
text-align: center;
margin-bottom: min(3.07692vw, 18px);
}

.index-menu-logo-link-img{
max-width: 50vw;
}

.index-menu-list{
justify-content: center;
flex-wrap: wrap;
margin: 0 min(-2.05128vw, -12px);
}

.index-menu-list-item{
width: 50%;
padding: 0 min(2.05128vw, 12px);
}

.index-menu-list-item:not(:last-child)::after{
display: none;
}

.index-menu-list-item-link{
display: flex;
align-items: center;
justify-content: center;
flex-grow: 1;
font-size: min(3.33333vw, 19.5px);
padding: .7em;
height: 100%;
border-bottom: 1px solid #B2B0B0;
}

}



/* =========================
   全体
========================= */
#benefit-body {	
width: 100%;
height: 100%;	
margin: 30px auto 0 auto;
	
font-size: 18px;
line-height: 1.8;
line-break: strict;
word-break: break-word;
overflow-x: hidden;	
}

.benefit-inner {
background: linear-gradient(to right, #004094, #2e66b3);
width: 100%;
padding: 40px 20px;
margin: 0 auto;
}

h1 {
color: #004194;
font-size: 24px;
}

h2 {
font-size: 20px;
line-height: 1.5;
}

.ov-text {
margin: 20px auto;
font-size: 18px;	
}

h1,h2, 
.ov-text {
text-align: center;		
}

.overview {
margin-bottom: 40px;	
}

/* PC：非表示 */
.pcnone {
  display: none;
}

/* スマホ：表示 */
@media screen and (max-width: 768px) {
#benefit-body {	
margin-top: 10px;
}	
	
  .pcnone {
    display: inline;
  }
	
.overview {
margin-top: 0;	
margin-bottom: 20px;	
}	
}


.bold-text {
font-weight: bold;	
}

/* 一覧の内容 */
/* 一覧の内容 */
.benefit-list-inner {
  background: #f7f7ff;
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
}

#benefitall {
  padding: 10px;
  margin: 0 auto 10px auto;
}


.list-row {
  display: grid;
grid-template-columns: repeat(2, 445px);
  gap: 20px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.list-row li {
  list-style: none;
}

.list-container {
  background: #ffffff;
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #ffffff;

  width: 445px;         
  margin: 0 auto;    
  box-sizing: border-box;
}


.list-container:hover {
  border: 1px solid #a4c4f5;
}

.list-com-logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.list-com-logo img {
  height: 30px;
  width: auto;
  margin-right: 14px;
}

.list-com-name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  flex: 1;
  position: relative;
}

.list-com-name::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #0c4a9c;
  border-bottom: 2px solid #0c4a9c;
  position: absolute;
  right: 8px;
  top: 35%;
  transform: translateY(-50%) rotate(45deg);
}

.service-list-li {
  font-size: 19px;
  color: #0c4a9c;
  font-weight: bold;
  position: relative;
  top: -4px;
}

.list-tabs-box {
  display: flex;
  gap: 8px;
}

.list-tadall,
.list-tadpten {
  white-space: nowrap;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.com-pict {
margin: 20px 0 ;	
}

.com-pict img{
margin: 10px 0 0 0;
padding: 0;
width: 420px;
height: auto;
}

/* クーポンコード */
.cp-code-box {
background: #ffffff;
width: 100%;
padding: 10px 0;
display:flex;
justify-content:center;
align-items:center;
margin: 20px 0 0 0;
}

.cp-code {
color: #004094;
font-weight: 700;
font-size: 18px;
display:flex;
align-items:center;
gap:8px;
cursor:pointer;
}

.cp-code img{
width: 14px;
height: auto;
display:block;
}

/* スマホ */
@media screen and (max-width: 768px) {
h2 {
font-size: 16px;
margin: 10px 0 0 0;
}
	
.cp-code {
color: #B9292B;
font-weight: 700;
font-size: 16px;
}

.ov-text {
font-size: 14px;	
padding: 0 30px;
text-align: left;
}	
	
#benefitall {
width: 100%;
}
	
.benefit-inner {
padding-top: 20px;
padding-bottom: 10px;
}	

.benefit-list-inner {
padding-top: 20px;
padding-bottom: 20px;
}	
	
.list-row {
grid-template-columns: 1fr;
gap: 20px;
}

.list-container {
width: 100%;
margin: 0;
}

.list-tabs-box {
flex-direction: row;
gap: 8px;
}

.list-com-logo img {
margin-right: 10px;
}

.list-com-name {
font-size: 14px;
line-height: 1.5;
}

.list-com-name::after {
display: none;
}

.service-list-li {
line-height: 1.5;
}

.list-tadall,
.list-tadpten {
text-align: center;
}

/* 最後の com-row だけ調整 */
.com-row:last-of-type {
padding-bottom: 0;
margin-bottom: 50px;	
}
}





/* 紹介の内容 */

.com-box1 {
width: 330px;
color: #ffffff;	
}

.com-box2 {
background: #ffffff;
width: 550px;
padding: 20px 20px 25px 20px;
border-radius: 6px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);	
}

.com-row {
display: flex;
gap: 30px;
justify-content: center;
margin: 0 0 80px 0;
}

/* com-box1の内容 */
.com-name {
font-size: 16px;
font-weight: bold;		
margin-bottom: 10px;
}

.com-logo {
width: 100%;
height: 70px;	
background: #ffffff;
padding: 5px;
margin-bottom: 20px;
}

.com-logo img {
height: 100%;
width: auto;
margin: 0 auto;
}

.com-site {
font-size: 13px;	
height: 40px;	
width: 100%;
padding: 5px 0 5px 10px;
margin-bottom: 20px;
border: 1px solid #ffffff;
border-radius: 999px;
font-weight: 600;	
display: flex;
align-items: center;     /* 垂直中央 */
justify-content: center; /* 水平中央 */	
background: #0c4a9c;	
box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);	
}

.com-site span {
display: flex;
align-items: center;     /* 文字と画像の垂直中央 */
gap: 6px;
}

.com-site span img {
height: 10px;	
width: auto;
}

.com-site:hover {
background: #ffffff;
color: #004194;	
}

.com-site img {
  content: url("img/openinnew.webp");
}

.com-site:hover img {
  content: url("img/open_in_new-blue.webp");
}


.com-service-text {
font-size: 13px;
font-weight: bold;
}

.p-top {
font-size: 18px;	
color: #003e8d;
font-weight: bold;	
}

.service-text p:first-of-type {
margin: 14px 0;
}

.service-list {
list-style: none;
padding-left: 0;
}

.service-list li {
position: relative;
padding-left: 1.4em;
margin-bottom: 8px;
font-size: 15px;	
}

.service-list li::before {
content: "▶︎";
position: absolute;
left: 0;
top: 0.3em;	
font-size: 0.7em; /* 小さくする */
}




/* com-box2の内容 */
.tabs-box {
display: flex;
gap: 10px;
margin-bottom: 15px;
}

.tadall,
.tadpten {
white-space: nowrap;
font-size: 12px;
padding: 4px 10px;
border-radius: 4px;	
font-weight: bold;	
}

.tadall,
.list-tadall{
background: #fcea72;
color: #333;
}

.tadpten,
.list-tadpten{
background: #3667b1;
color: #ffffff;
}

@media screen and (max-width: 768px) {
.tadall,
.tadpten {
font-size: 10px;
}	
}

.service-ex {
font-size: 16px;	
color: #003e8d;
background: #f7f7ff;
padding: 5px 0;
text-align: center;
font-weight: bold;
margin-bottom: 10px;
border-radius: 2px;	
}

.service-text {
margin-bottom: 15px;
padding: 0 10px;	
}

.small-text {
font-size: 12px;
margin-top: 8px;
}

/* トピック箇所 */
.service-topic {
padding: 14px;
background: #f7f7ff;
border-radius: 2px;	
}

.topic-text {
color: #003e8d;	
text-align: center;
font-weight: bold;
font-size: 16px;	
}

.coupon-info {
  display: flex;
  align-items: center; /* 垂直中央 */
  color: #c23c25;
  margin: 5px 0;
  font-weight: bold;
}

.coupon-point {
  margin-right: 8px;
  font-size: 0.7em;
  line-height: 1;       /* ズレ防止 */
}


.service-table {
border-collapse: collapse;
font-size: 14px;
}

.service-table td {
border: 1px solid #ccc;
padding: 6px 10px;
}

.td-top {
text-align: center;
font-weight: bold;	
}

/* ボタン全体 */
.btn-round {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 54px;
margin-top: 20px;	
padding: 0 8px 0 32px;
background: #3567b1;
color: #ffffff;
text-decoration: none;
border-radius: 999px;
box-sizing: border-box;
	
box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);	
}

/* テキスト */ 
.btn-text {
  flex: 1;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* 右側の丸 */
.btn-circle {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 矢印画像 */
.btn-circle img {
  width: 14px;
  height: auto;
  display: block;
}


/* ホバー用レイヤー */
.btn-round {
  position: relative;
  overflow: hidden;
  background: #3567b1; /* 通常時は単色 */
}

/* ホバー用グラデーション（初期は右側） */
.btn-round::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #3567b1,
    #5b8fe0,
    #3567b1
  );
  background-size: 200% 100%;
  background-position: 100% 0; /* 初期位置：右 */
  opacity: 0;
  transition:
    opacity 0.2s ease,
    background-position 0.6s ease;
  z-index: 0;
}

/* 中身を前面に */
.btn-round > * {
  position: relative;
  z-index: 1;
}

/* ホバー時：左へ流す */
.btn-round.is-hover::before {
  opacity: 1;
  background-position: 0 0;
}


/* スマホ */
@media screen and (max-width: 768px) {
  .com-row {
    flex-direction: column;
	margin: 20px 0 80px 0;
  }

.coupon-info{
font-size: 16px;		
}	
	
.com-box1,	
.com-box2 {
width:  95%;
margin: 0 auto;
}		

.btn-text {
font-size: 16px;		
	}	
	
}

/* =========================
  フッター
========================= */
#footer-benefit {
background: #eff0f4;
width: 100%;
padding: 40px 0;
margin: 0 auto;	
text-align: center;
}

#footer-benefit p {
margin-top: 20px;
font-size: 14px;
}

.info-btn{
margin-top: 30px;
margin-left: auto;
margin-right: auto;	
padding: 10px 20px;
border: 1px solid #333;
font-size: 14px;
width: 250px;
}

.info-btn:hover{
background: #ffffff;
}

.m-footer {
display: flex;
flex-direction: row;
justify-content: center;
background: #F2F3F7;
padding: 2em 0;
}

.m-footer-logo {
text-align: center;
margin-bottom: 1em;
}


.m-footer-menu {
display: flex;
flex-direction: row;
justify-content: end;
}

.m-footer-menu-item {
display: flex;
flex-direction: row;
align-items: center;
font-size: 14px;
margin: 0 auto;
}

.m-footer-menu-item:first-child::before {
display: none;
}
.m-footer-menu-item::before {
content: "";
display: inline-block;
width: 1px;
height: 1em;
background: #333333;
margin: 0 1em;
}

.m-footer-in {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 60px;
}

.footer-copyright-text{
color: #333333;
text-align: center;
margin-top: 20px;
}

.footer-copyright-text span{
font-size: 10px;
}

/* スマホ */
@media screen and (max-width: 768px) {
#footer-benefit {
padding-left: 20px;	
padding-right: 20px;
}	
	
#footer-benefit p{
text-align: left;
}	
	
.m-footer-copyright {
font-size: 5px;

}	
}




/* TOPへ戻るボタン */
.pten-back-to-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pten-back-to-top.is-show {
  opacity: 1;
  visibility: visible;
}

.pten-back-to-top img {
  width: 20px;
  transform: rotate(-90deg);
}




/* ハンバーガーメニュー切り替え|非表示 */
@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

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