@charset "UTF-8";

/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
    font-family: "ヒラギノ角ゴ ProN", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
    color: #000a0e;
  line-height: 1.6;
}
/*リンク文字の設定*/
a {
  text-decoration: none;
    
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
   position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 18%;
  float: left;
  margin: 1em 0 0.5em;
}


.header_btn {
  width: 28%;
  float: right;
  margin: 0.8em 0.5em;

}


/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/

h2 {
  font-size: 2em;
    line-height: 1.3;
    letter-spacing: .5px;
  font-weight: 600;
    margin: 0 0 1em;
    padding: 0;
    text-align: center;
}

.dual-underline-short {
display: block;
  position: relative;
  padding-bottom: 20px; /* 見出しと線の間隔 */
}

.dual-underline-short::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* ★ 中央寄せ */
  bottom: 0;
  width: 200px; /* ★ 下線の長さ（固定） */
  height: 3px; /* 下線の太さ */
  background: linear-gradient(to right, #3798e1 50%, #ff8f00 50%);
}




.tit_p {
font-size: 1.2em;
text-align: center;
font-weight: 600;
    letter-spacing: .5px;
  font-weight: 600;
    margin: 0 0 ;
    padding: 0;
}



h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
}

h3::before,
h3::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #ff8f00;
}

h3::before {
	margin-right: 20px;
}
h3::after {
	margin-left: 20px;
}




/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #fff;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  font-size: 1.8em; /*=18px*/
 
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

.article{
	width: 100%;
}

/*カラム全体の幅を変更する*/
.top_image_in,.section_inr {
  width: 950px;
  margin: 0 auto; 
  
}
.pc_img { display: block !important; }
.sp_img { display: none !important; }


/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: url("../images/top_image_back.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}
.top_image_in img {
  width: 100%;
}


/*--------------------------------------------------
CTA
-----------------------------------------------------*/

.section_cta {
  background-image: url("../images/bg_cta.jpg");
  background-size: cover;
  background-position: bottom center;
  padding: 2em 0 ;
}

.section_cta p{
  font-size: 1.1em;
  text-align: center;

}

a.btn-flat {
 position: relative;        /* ←追加！ */
  display: block;     /* ←推奨 */
  overflow: hidden;
  padding: 1.5rem 6rem;
  width: 50%;
  text-align: center;
  margin: 2em auto 0;

  color: #fff;
  border-radius: 0;
  background: #000;
}

a.btn-flat span {
  position: relative;
  z-index: 1;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: calc(-130% + 50px);

  width: 180%;
  height: 500%;

  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: rotate(45deg) translateX(0) translateY(0);
  transform: rotate(45deg) translateX(0) translateY(0);

  background: #3798e1;
}

a.btn-flat:after {
  position: absolute;
  top: -400%;
  right: calc(-130% + 50px);

  width: 180%;
  height: 500%;

  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: rotate(45deg) translateX(0) translateY(0);
  transform: rotate(45deg) translateX(0) translateY(0);

  background: #ff8f00;
}

a.btn-flat:hover:before {
  -webkit-transform: rotate(45deg) translateX(0) translateY(-50%);
  transform: rotate(45deg) translateX(0) translateY(-50%);
}

a.btn-flat:hover:after {
  -webkit-transform: rotate(45deg) translateX(0) translateY(50%);
  transform: rotate(45deg) translateX(0) translateY(50%);
}


/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/

.section_01 {
  background-color: #fff;
    padding: 3em 0em ;
}
.section_02 {
  background-image: url("../images/bg_sec02.jpg");
  background-size: cover;
  padding: 3em 0 ;
}

.section_03 {
  background-image: url("../images/bg_sec03.jpg");
  background-size: cover;
  padding: 3em 0;
}


.section_04 {
  background-color: #fff7e2;
  padding: 3em 0 ;
}

.section_05 {
  background-image: url("../images/bg_sec04.jpg");
  background-size: cover;
  padding: 3em 0;
}



/*--------------------------------------------------
case
-----------------------------------------------------*/

.ctn_nayami {
  display: flex;
  justify-content: center;
  padding: 1em 0 0;
  flex-wrap: wrap;
}
.box_nayami {
  width: 23%;
  margin: 10px 5px
}


/*--------------------------------------------------
play
-----------------------------------------------------*/


.txt_play {
  float: left;
  width: 50%;
  color: #fff;
}
.tit_play {
  width: 90%;
  margin: 1em 0;

}

.img_play {
  float: right;
  width: 48%;
  padding-top: 2em;
}



/*--------------------------------------------------
reason
-----------------------------------------------------*/

.big-orange {
  font-size: 50px;
  color: #ff8f00;
}


.midashi_logo {
  width: 45%;
  margin: 0 auto 1em;
}
.ctn_reason {
  display: flex;
  justify-content: space-between;
}

.item_reason {
  width: 32%;
}

.box_set {
  border: 3px solid #ff8f00;
  background-color: #fff;
  padding: 1em 2em;
  margin-top: 2em;
}

.set_hontai {
    margin-top: 3em;
  float: left;
  width: 45%;
}
.set_parts {
  margin-top: 1em;
  float: right;
  width: 52%;
  background-color: #fff3e3;
  padding: 1em;
  border-radius: 15px;
}


/*--------------------------------------------------
flow
-----------------------------------------------------*/
.tit_flow {
  width: 55%;
  margin: 0 auto 1em;
}

.flow {
  width: 90%;
  margin: 2em auto 0;
}

/*--------------------------------------------------
price
-----------------------------------------------------*/

.tit_price {
  width: 40%;
  margin: 0 auto 1em;

}

.table-wrap{
  width: 70%;
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  overflow:hidden;
}

/* table 自体にも白背景を適用 */
table.rtable{
  width:100%;
  border-collapse:collapse;
}

/* ヘッダー帯（オレンジへ変更済み） */
thead{
  background:#ff7e00;
  color:#fff;

}

thead th{
  padding:14px 12px;
  text-align:center;
  font-weight:700;
}

tbody tr{
  border-bottom:1px solid #e9e9ee;
  background: #fff;

}
tbody td{
  padding:12px 12px;
  text-align:center;
}

/* レンタル期間を太字に */
tbody td.rental-period{
  font-weight:700;
}

/* 金額セルだけ薄黄色背景 */
 td.highlight {
  background: #fff9d9;
}
tbody tr:last-child{border-bottom:none}

/* 金額・1日あたり（フォント少し小さく） */
.yen{
  white-space:nowrap;
  font-weight:700;
}

.per-day{
  font-weight:600;
  color:#ff7e00;
}

/* ヘッダー・ボディ共通：右側に縦線 */
table.rtable th,
table.rtable td {
  border-right: 1px solid #e9e9ee;
}

/* 最後の列だけ線を消す */
table.rtable th:last-child,
table.rtable td:last-child {
  border-right: none;
}



/* 注意書き */
.note{
  font-size:12px;
  color:#6b7280;
  margin:10px 0 0 0;
  text-align:right;
  padding-right:6px
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.price-table th {
  padding: 12px 10px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}


/* レンタル期間（左）は太字＋背景そのまま */
.price-table th.period {
  background: #ff7e00;
}

.price-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* レンタル期間太字 */
.price-table td.period {
  font-weight: bold;
}

/* 金額セルだけ薄黄色背景 */
.price-table td.highlight {
  background: #fff9d9;
}

/* ============================
   スマホ幅（768px以下）
   カード型レイアウトにする
============================ */
@media (max-width: 768px) {

  /* table を block 表示で分解 */
  table.rtable,
  table.rtable thead,
  table.rtable tbody,
  table.rtable th,
  table.rtable td,
  table.rtable tr {
    display: block;
    width: 100%;
  }

    table.rtable {
      width: 95%;
      margin: 0.5em auto;
    }

  /* thead を非表示（カード内で th を擬似的に見せるため） */
  thead {
    display: none!important;
  }

  /* 行ごとにカード化 */
  tbody tr {
    border: 1px solid #e9e9ee;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
  }

  /* th の代わりに data-label を左側に出す */
  tbody td {
    position: relative;
    padding-left: 110px; /* ラベル分の余白 */
    text-align: left;    /* 左寄せ */
    border-right: none;  /* 縦線はスマホ非表示 */
    border-bottom: 1px solid #eee;
  }

  tbody td:last-child {
    border-bottom: none;
  }

  /* 左側に表示するラベル（PC の th を代用） */
  tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: #ff7e00;   /* ★ PC と同じオレンジ */
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-left: 10px;
    box-sizing: border-box;
  }

  /* 金額の薄黄色背景は維持 */
  td.highlight {
    background: #fff9d9;
  }

     tbody th {
    text-align: center;
    width: 45%;
    padding: 10px;
  }


}


.img_osusume {
  width: 90%;
  margin: 1em auto 0;
}


/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/

.accordion {
  max-width: 90%;
  text-align: left;
  margin: 0 auto;
}

/*------------------------------

ここからアコーディオンのCSS

------------------------------*/
/* チェックボックスは非表示 */
.accordion-hidden {
  display: none;
}

/* Question部分 */
.accordion-open {
  display: block;
  padding: 1em 3em 1em 3em;
  background: #ff8f00;
  cursor: pointer;
  border-radius: 100vh;
  margin: 8px 0;
  position: relative;
  font-weight: bold;
  text-align: left;
  font-size: 20px;
  color: #fff;
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.accordion-hidden:checked + .accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.accordion-close {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.accordion-hidden:checked + .accordion-open + .accordion-close {
  height: auto;
  opacity: 1;
  padding: 10px 1em;
  background: #d3e8f8;

}


.section_pp {
  padding: 4em 0;
}

  




/*--------------------------------------------------
フェードイン
-----------------------------------------------------*/

.fadein {
  opacity : 0;
  transform: translateY(10px);
  transition: all 1s;
}
.fadeup {
  opacity : 0;
  transform: translateY(-10px);
  transition: all 2s;
}

.fadein02 {
  opacity : 0;
  transform: translateY(20px);
  transition: all 3s;
}
.fadein03 {
  opacity : 0;
  transform: translateY(25px);
  transition: all 4s;
}


/*左からフェードイン*/
.fadeinleft {
  opacity : 0;
  transform: translateX(-40px);
  transition: all 1.5s;
}
/*右からフェードイン*/
.fadeinright {
  opacity : 0;
  transform: translateX(40px);
  transition: all 1.5s;
}

.zoomin {
opacity: 0;
}

.zoomin.isActive {
animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
0% {
    transform: scale(0.8);
    opacity: 0;
}

100% {
    opacity: 1;
    transform: scale(1);
}
}

.popup {
opacity: 0;
}

.popup.isActive {
animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes popup {
0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
}

100% {
    transform: translateY(0) scale(1.0);
}

80%,
100% {
    opacity: 1;
}
}

.slidein.isActive {
animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
0% {
    transform: translateX(180px);
    opacity: 0;
}

100% {
    transform: translateX(0);
}

40%,
100% {
    opacity: 1;
}
}

      /*--------------------------------------------------
下部固定ヘッダー（PC）
-----------------------------------------------------*/

#pc_btn {
  display: block!important;
  width: 100%;
  background:#fff;
  border-top: 4px solid #254088;
  text-align: center;
  padding: 1em 5px;
  transition: .3s;
}
    
.ctn_pc_btn {
  display: flex;
  justify-content: center;
  width: 1000px;
  margin: 0 auto;
}
.item_pc_btn {
  width: 25%;
  padding: 0 10px;
}

.pc_btn_last_tel {
  background-color: #f7751e;
  border-radius: 8px;
  display: flex;
  align-items: center;     /* 垂直方向の中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
  height: 50px;
}
.pc_btn_last_tel a{
  color: #fff;
  font-weight: bold;
  font-size: 25px;
}

.fixed {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 100000;
    
}

      /*--------------------------------------------------
下部固定ヘッダー（スマホ）
-----------------------------------------------------*/

#sp_btn {
  display: none!important;
}



/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background: #ccc;
  padding: 2em 0  ;
  text-align: center;
  font-size: 1.4em;
    color: #000a0e;
}
.footer a {
    color: #000a0e;
}