/*==========  Common  ==========*/
.recase_base {
    color: #141414;
    font-size: 16px;
}

.recase_base img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    width: 100%;
    display: block;
}

@media (max-width: 767px) {
.recase_base img {
    width: 70%;
    margin: 0 auto;
    display: block;
}
body {
    font-family: ヒラギノ角ゴシック, "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica, "MS Pゴシック", "MS PGothic", sans-serif;
}

}
/*==========  Header  ==========*/

/* SP ナビ本体 */
.sp-nav {
  position: fixed;
  inset: 0;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 65px 24px 12px;
}
.sp-nav.open {
  transform: translateX(0);
}

/* オーバーレイ */
.sp-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.sp-nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.recase_base .header .header_l .logo img {
    display: block;
    width: 133px;
    margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  inset-inline: 0;
  background: #fff;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* ===== Inner Container ===== */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 8px 0;
}
@media (max-width: 1200px) {
.header__inner {
  padding: 2px 0;
}
}

.header__container {
  width: min(100% - 50px, 1350px);
  margin-inline: auto;
  display: flex;
  align-items: center;
}

/* ===== Logo ===== */
.logo img {
  height: 73px;
}

/* ===== Navigation ===== */
.pc-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.pc-nav__list li a {
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}

.pc-nav__list li a:hover {
  opacity: 0.7;
}

/* ===== Buttons & CTA ===== */
.header__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.header__cta {
  background: #ffd845; /* yellow button */
  color: #000;
  height: 50px;
  width:190px;
}

.header__cta:hover {
  background: #ffc800;
}

/* ===== Language Button (緑色) ===== */
.language-switch {
  background: #06c755;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  /*cursor: pointer;*/
  height: 50px;
  width:190px;
  border: none;
}

.language-switch:hover {
  /*background: #05a84d;*/
}

/* ===== Hamburger (hidden in PC) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin: 0px 10px 0px 4px;
    z-index: 1001;
}
.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #06c755;
  border-radius: 2px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #06c755;
}


.language-dropdown {
  position: relative;
}

.language-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #06c755;
  border-radius: 12px;
  margin-top: 6px;
  padding: 8px 0;
  list-style: none;
  min-width: 140px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 100;
}

.language-dropdown__menu li {
  padding: 10px 16px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}

.language-dropdown__menu li:hover {
  background: #05a84d;
}


@media (min-width: 1001px) {
  /* Header */
  .hamburger { display:none; }
}
@media (max-width: 1000px) {
  .hamburger { display:flex; }
  .pc-nav { display:none; }
  .header__buttons { margin-left:auto; display:flex; align-items:center; gap:16px; }
}

@media (max-width: 1220px) {
.note{
line-height:14px;
}
.header__container {
  width: 100% !important;
}
  .pc-nav {
    margin-left: 20px;
  }

  .header__buttons {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    gap: 12px;
  }

  .language-switch {
    gap: 6px;
  }

  .header__cta {
    flex: 1 1 auto;
    max-width: 140px;
    text-align: center;
  }

  .header__inner {
    flex-wrap: nowrap; /* wrapしないように */
    align-items: center;
    justify-content: space-between;
  }

  .header__buttons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0px;
    margin-top: 0;
    width: auto;
    margin-right: 5px;
        flex-wrap: nowrap !important;
    gap: 4px;
  }
  .header__cta,
  .language-switch {
        max-width: 120px;
        font-size: 15px;
        padding: 8px;
        margin: 0px 2px;
        height: 40px;
    }


  .logo {
    flex-shrink: 0;
    margin-left: 5px;
  }
  .logo-footer{
    margin-left: -15px;      
  }
}
@media (max-width: 1000px) {
  .header__cta,
  .language-switch {
        max-width: 105px;
        font-size: 12px;
        padding: 8px;
        margin: 0px 5px;
        height: 35px;
  }
}




/* ==========  Company  ========== */
.company_title{
    font-size:22px;
    }
.recase_base #block_company {
    padding: 90px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.recase_base .block_title {
    font-size: 38px;
    text-align: center;
    font-weight: 700;
}
.recase_base #block_company .company_img {
    margin-top: 55px;
    width: 100%;
    padding: 0px 20px;
}

.recase_base #block_company .text_area {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 20px;
}
.recase_base #block_company .text_area .txt {
    width: 44%;
    line-height: 1.875;
}

.recase_base #block_company .cbtn span {
    display: inline-block;
    padding-right: 25px;
    background: url(/img/common/new_tab.png) right center / 14px auto no-repeat;
}
@media (max-width: 767px) {
    .recase_base .block_title {
        font-size: 23px !important;
    }
    
    .recase_base #block_company .text_area {
        padding: 0px;
    }
    .recase_base #block_company .company_img {
        padding: 0px;        
    }
}
@media (max-width: 850px) {
    .recase_base #block_company {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .recase_base #block_company .company_img {
        margin-top: 35px;
    }
    .recase_base #block_company .text_area {
        display: block;
        margin-top: 25px;
    }
    .recase_base #block_company .text_area h3 {
        font-size: 16px;
        line-height: 1.75;
        padding-right: 0;
        
    }
    .recase_base #block_company .text_area .txt {
        width: 100%;
        font-size: 14px;
        line-height: 1.64;
        margin-top: 20px;
        text-align: justify;
    }
    .recase_base #block_company .cbtn {
        -webkit-transition: background-color .3s, color .3s;
        transition: background-color .3s, color .3s;
    }
    .recase_base #block_company .cbtn:hover span {
        background-image: url(/img/common/new_tab_on.png);
    }
}

@media (min-width: 768px) {
    .recase_base #block_company .cbtn:hover {
        background-color: #323c46;
        color: #fff;
    }
}
@media (min-width: 768px) {
    .recase_base #block_company .cbtn {
        -webkit-transition: background-color .3s, color .3s;
        transition: background-color .3s, color .3s;
    }
}
.recase_base #block_company .cbtn {
    width: 300px;
    line-height: 58px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    margin: 45px auto 0;
    background: #e6fadc;
}
/* ==========  Contact  ========== */

@media (max-width: 768px) {
.recase_base {
    font-size: 14px;
}
}

media (max-width: 1000px) {
    .recase_base .com_page_link {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}
@media (max-width: 1220px) {
    .recase_base .com_page_link {
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px);
    }
}
.recase_base .com_page_link {
    -webkit-transform: translateY(-90px);
    transform: translateY(-90px);
}
.recase_base #block_contact {
    padding: 90px 14px;
    max-width: 1150px;
    margin: 0 auto;
}

.recase_base .block_title {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
}
.recase_base #block_contact .txt {
    text-align: center;
    margin-top: 30px;
}
.recase_base #block_contact .contact_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 65px;
}
@media (max-width: 767px) {
    .recase_base #block_contact .contact_list {
        display: block;
        margin-top: 40px;
    }
    .recase_base #block_contact {
        padding-top: 50px;
        padding-bottom: 75px;
}
}


.recase_base ul, .recase_base li {
    list-style: none;
}
.recase_base ul, .recase_base ol {
    margin: 0;
    padding: 0;
}
.recase_base #block_contact .contact_list>li {
    width: 31%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .recase_base #block_contact .contact_list>li {
        width: 100%;
    }
    .recase_base #block_contact .contact_list>li:nth-child(n+2) {
        margin-top: 25px;
    }
}

.recase_base ul, .recase_base li {
    list-style: none;
}
.recase_base #block_contact .contact_list>li .title {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    background-color: #e6fadc;
    border-radius: 50%;
}
.recase_base p {
    margin: 0;
}

.recase_base #block_contact .contact_list>li .cont {
    width: calc(100% - 70px);
    padding-top: 7px;
}

@media (min-width: 768px) {
    .recase_base #block_contact .contact_list>li .cont .tel.sp {
        display: none;
    }
}
@media (max-width: 767px) {
    .recase_base #block_contact .contact_list>li .cont .tel.pc {
        display: none;
    }
}
.recase_base a:link, .recase_base a:visited, .recase_base a:hover, .recase_base a:active, .recase_base a:focus {
    text-decoration: none;
    color: inherit;
}
.recase_base a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.recase_base #block_contact .contact_list>li .cont .teltime,
.recase_base #block_contact .contact_list>li .cont .telholiday  {
display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
    width: 180px;
    margin: 10px auto 0;
}

.recase_base #block_contact .contact_list>li .cont .teltime dt {
    width: 40px;
    font-weight: normal;
}
.recase_base #block_contact .contact_list>li .cont .faxtime {
    font-size: 24px;
    text-align: center;
    margin-top: 10px;
}
@media (max-width: 767px) {
.recase_base #block_contact .contact_list>li .cont .telholiday {
    margin-left: -30px;
    }
.recase_base #block_contact .contact_list>li .cont .faxtime {
    font-size: 20px;
 }
}

@media (min-width: 768px) {
    .recase_base #block_contact .contact_list>li .cont .cbtn {
        -webkit-transition: background-color .3s, color .3s;
        transition: background-color .3s, color .3s;
    }
}
.recase_base #block_contact .contact_list>li .cont .cbtn {
    border: 1px solid #323c46;
    line-height: 43px;
    text-align: center;
    border-radius: 25px;
    background-color: #fff;
}
.recase_base #block_contact .contact_list>li .cont .notes {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    line-height: 1.75;
}
@media (max-width: 768px) {
.recase_base #block_contact .contact_list>li .cont .notes {
    font-size: 12px;
    }
}

@media (min-width: 768px) {
    .recase_base #block_contact .contact_list>li .cont .cbtn:hover {
        background-color: #323c46;
        color: #fff;
    }

    .recase_base #block_contact .contact_list>li .cont .cbtn {
        -webkit-transition: background-color .3s, color .3s;
        transition: background-color .3s, color .3s;
    }
}
.recase_base #block_contact .contact_list>li .cont .cbtn {
    border: 1px solid #323c46;
    line-height: 43px;
    text-align: center;
    border-radius: 25px;
    background-color: #fff;
}

.payment_summary {
  margin-top: 2rem;
  border-radius: 12px;
}

.summary_title {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
.summary_title {
  font-size: 1rem;
}
}

.summary_box {
  background-color: #cef5be;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.item_row, .total_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem;
}

.item_name {
  font-size: 1.1rem;
}
@media (max-width: 767px) {
    .item_name {
        font-size: .9rem;
    }
}


.item_controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty_btn {
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  background-color: white;
  color: #00b300;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#quantity {
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
}

.total_row span:last-child {
  font-size: 1.2rem;
  font-weight: bold;
}

.recase_base #entry .terms_link a {
    color: #00b300;
    display: inline-block;
    border-bottom: 1px solid #00b300;
    padding-bottom: 3px;
}


/* カレンダー全体 */
.flatpickr-calendar {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  overflow: hidden;
}

/* ヘッダー内の年月表示（日本語形式） */
.flatpickr-current-month {
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.flatpickr-current-month input.cur-year {
  font-weight: bold;
  font-size: 1.1em;
}
.flatpickr-current-month .numInputWrapper {
  display: none; /* 年の上下矢印非表示 */
}
.flatpickr-current-month span.cur-month {
  margin-right: 4px;
}

/* 矢印ナビゲーションの見た目調整 */
.flatpickr-prev-month, .flatpickr-next-month {
  color: black;
  font-size: 18px;
}

/* 曜日表示 */
.flatpickr-weekday:nth-child(1) { color: red; }
.flatpickr-weekday:nth-child(7) { color: blue; }

/* 日付セルの色付け */
.flatpickr-day:nth-child(7n+1) { color: red; }
.flatpickr-day:nth-child(7n)   { color: blue; }

.flatpickr-day.selected {
  background-color: #007BFF;
  color: white;
  border-radius: 6px;
}
.flatpickr-day.today {
  border: 1px solid #999;
}
.flatpickr-day {
  border-radius: 8px;
  margin: 2px;
  padding: 6px 0;
}
.flatpickr-day:hover {
  background-color: #e6f0ff;
}

/* 前月・翌月の日は非表示 */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  visibility: hidden;
}

/* 入力欄スタイル */
#desired_date {
  padding: 8px;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* 矢印（SVG）を塗りつぶし黒に */
.flatpickr-prev-month svg, .flatpickr-next-month svg {
  fill: black !important;
}

/* カスタムヘッダー用 */
.flatpickr-current-month {
  font-weight: bold;
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4px;
  gap: 6px;
}
.flatpickr-current-month input.cur-year {
  font-size: 1.2em;
  font-weight: bold;
  width: auto;
}
.flatpickr-current-month .numInputWrapper {
  display: inline-flex;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  display: inline-flex;
}
span.cur-month {
  order: 2;
}
input.cur-year {
  order: 1;
}

/* 曜日・日付の見た目 */
.flatpickr-weekday:nth-child(1) { color: red; }
.flatpickr-weekday:nth-child(7) { color: blue; }

.flatpickr-day:nth-child(7n+1) { color: red; }
.flatpickr-day:nth-child(7n)   { color: blue; }

.flatpickr-day.selected {
  background-color: #007BFF;
  color: white;
  border-radius: 6px;
}
.flatpickr-day.today {
  border: 1px solid #999;
}
.flatpickr-day {
  border-radius: 8px;
  margin: 2px;
  padding: 6px 0;
}
.flatpickr-day:hover {
  background-color: #e6f0ff;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  visibility: hidden;
}

#desired_date {
  padding: 8px;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ヘッダー内の年月表示を中央＆順序変更 */
.flatpickr-month {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 8px;
}

.flatpickr-current-month {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
}

.flatpickr-monthDropdown-months,
.flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-current-month .numInputWrapper span.arrowDown {
  display: none !important;
}

/* 月と年の順序入れ替えをスタイルでも強化 */
.flatpickr-current-month .flatpickr-monthDropdown-months {
  order: 2;
}
.flatpickr-current-month input.cur-year {
  order: 1;
  font-weight: bold;
  font-size: 1.2em;
  border: none;
  background: transparent;
  text-align: right;
  width: auto;
}

/* 矢印アイコンを黒く塗りつぶす */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: black !important;
  height: 14px;
  width: 14px;
}

/* 曜日 */
.flatpickr-weekday:nth-child(1) { color: red; }
.flatpickr-weekday:nth-child(7) { color: blue; }

/* 土日の日付色 */
.flatpickr-day:nth-child(7n+1) { color: red; }
.flatpickr-day:nth-child(7n)   { color: blue; }

/* 選択中 */
.flatpickr-day.selected {
  background-color: #007BFF;
  color: white;
  border-radius: 6px;
}
.flatpickr-day.today {
  border: 1px solid #999;
}
.flatpickr-day {
  border-radius: 8px;
  margin: 2px;
  padding: 6px 0;
}
.flatpickr-day:hover {
  background-color: #e6f0ff;
}

/* 前月・翌月の日付を非表示 */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  visibility: hidden;
}

/* 入力欄 */
#desired_date {
  padding: 8px;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  border: 1px solid #ccc;
}


/* 土日色指定 */
.flatpickr-weekday:nth-child(1),
.flatpickr-day:nth-child(7n+1) {
  color: red;
}
.flatpickr-weekday:nth-child(7),
.flatpickr-day:nth-child(7n) {
  color: blue;
}

/* 平日色を見やすく */
.flatpickr-day {
  color: #222;
}

/* 今日の日付 */
.flatpickr-day.today {
  border: 1px solid #999;
  border-radius: 6px;
}

/* 選択日 */
.flatpickr-day.selected {
  background-color: #007BFF;
  color: white;
  border-radius: 6px;
}

/* ホバー */
.flatpickr-day:hover {
  background-color: #eef5ff;
}

/* 前後月の日付は非表示 */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  visibility: hidden;
}

/* 三角ナビゲーションのSVGを黒で塗りつぶす */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: black !important;
  height: 14px;
  width: 14px;
}

/* 年月セレクタを消す */
.flatpickr-current-month {
  display: none !important;
}

/* 入力欄のスタイル */
#desired_date {
  font-size: 16px;
  max-width: 300px;
  border-radius: 6px;
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #fff;
}

/* カスタムヘッダーを中央揃え */
.custom-month-header {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  padding: 6px 0;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none; /* ナビゲーションを邪魔しない */
  z-index: 1;
}

/* 矢印ボタンの位置を上にずらして、ヘッダーとかぶらないように */
.flatpickr-prev-month,
.flatpickr-next-month {
  z-index: 2;
  top: 8px;
}
/* 過去日のスタイル（平日・土日共通でグレーに） */
.flatpickr-day.flatpickr-disabled {
  color: #ccc !important;
  cursor: not-allowed;
  background: none;
}

.flatpickr-weekdays {
    background: #f9f9f9;
}
/* 既存のアイコン(svg)を非表示 */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  display: none;
}

/* 黒い塗りつぶしの三角形をCSSで描く */
.flatpickr-prev-month::before,
.flatpickr-next-month::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  vertical-align: middle;
}

/* ← 左矢印（三角） */
.flatpickr-prev-month::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent black transparent transparent;
}

/* → 右矢印（三角） */
.flatpickr-next-month::before {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent black;
}

.recase_base #entry .com_submit_area {
    margin-top: 10px;
}
.recase_base .com_submit_area .btn {
    width: 100%;
    max-width: 290px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    padding: 20px 0;
    border: 1px solid #ffd22e;
    border-radius: 40px;
    background-color: #ffd22e;
    -webkit-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s;
    display: block;
    margin: 0 auto;
}
.recase_base .com_submit_area .btn:hover {
    background-color: #fbbf24;
    border: 1px solid #fbbf24;
    color: #000;
}
@media (max-width: 767px) {
    .recase_base .com_submit_area .btn {
        max-width: 300px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
.recase_base .entry {
    padding: 80px 20px 150px;
}
.recase_base .entry .sec_inner {
    max-width: 900px;
    margin: 0 auto;
}
.recase_base .entry .title_inner {
    max-width: 1000px;
    margin: 0 auto;
}
/*==========   Other  ==========*/
.other_footer { background:#141414; color:#fff; }

.recase_base #block_otherrental {
    background-color: #141414;
    padding: 45px 20px;
    color: #fff;
    position: relative;
}
@media (max-width: 767px) {
    .recase_base #block_otherrental {
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

.recase_base #block_otherrental .sec_inner {
    max-width: 1240px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.recase_base #block_otherrental .title {
    width: 255px;
    font-size: 14px;
}

.recase_base #block_otherrental .other_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 1px solid #fff;
    padding: 15px 0 15px 30px;
}

.recase_base ul, .recase_base li {
    list-style: none;
}
.recase_base ul, .recase_base ol {
    margin: 0;
    padding: 0;
}
.recase_base #block_otherrental .other_list>li a img {
    width: 120px;
}
.recase_base #block_otherrental .other_list>li {
    margin: 0 20px;
}



/* ==========   Footer  ========== */
@media (max-width: 1150px) {
    .recase_base .footer {
        display: block;
        padding-top: 22px;
        padding-bottom: 20px;
    }
}
.recase_base .footer {
    padding: 20px;
    max-width: 1260px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
@media (max-width: 1150px) {
    .recase_base .footer .footer_l {
        display: block;
    }
}
.recase_base .footer .footer_l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.recase_base .footer .footer_l .logo {
    width: 110px;
    display: block;
}
@media (max-width: 1150px) {
    .recase_base .footer .footer_l .f_nav {
        margin-left: 0;
        margin-top: 20px;
        font-size: 12px;
    }
}
.recase_base .footer .footer_l .f_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 40px;
    font-size: 14px;
}
.recase_base .footer .footer_l .f_nav li:nth-child(n+2) {
    margin-left: 40px;
}

@media (max-width: 1180px) {
    .recase_base #block_otherrental .other_list>li {
        margin: 5px 10px;
    }
        .recase_base #block_otherrental .other_list {
        max-width: 460px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .recase_base #block_otherrental .sec_inner {
        display: block;
        max-width: 365px;
    }
    .recase_base #block_otherrental .other_list {
        max-width: none;
        border-left: none;
        border-top: 1px solid #fff;
        padding: 0;
        padding-top: 17px;
        padding-bottom: 17px;
    }
    .recase_base #block_otherrental .title {
        width: 100%;
        padding: 30px 0;
        text-align: center;
        font-size: 17px;
    }
    .recase_base #block_otherrental .other_list>li {
        width: 44%;
        margin: 0;
        padding: 17px 1%;
    }
    .recase_base #block_otherrental .other_list>li a img {
        width: 100%;
        max-width: 156px;
        margin: 0 auto;
    }
}
@media (max-width: 1150px) {
    .recase_base .footer .footer_l {
        display: block;
    }
    .recase_base .footer {
        display: block;
        padding-top: 22px;
        padding-bottom: 20px;
    }
    .recase_base .footer .footer_l .f_nav {
        margin-left: 0;
        margin-top: 20px;
        font-size: 11px;
    }
    .recase_base .footer small {
        margin-top: 15px;
    }
}
@media (max-width: 510px) {
    .recase_base .footer .footer_l .f_nav {
        display: block;
        text-align: left;
    }
    .recase_base .footer .footer_l .f_nav li:nth-child(n+2) {
        margin-left: 0;
        margin-top: 10px;
    }
}

/*==========  Entry Form  ========== */

.container.entry{
    max-width: 900px;
    margin: 0 auto;
}

.recase_base form .com_form_style>li .title_area {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
    margin-top: 25px;
    align-items: center;
}
.recase_base form .com_form_style>li .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.recase_base form .com_form_style>li input, .caristo_base form .com_form_style>li textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #fff;
    font-size: 16px;
}
.recase_base form .com_form_style>li .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.recase_base input[type="text"], .recase_base input[type="email"], .recase_base input[type="tel"], .recase_base input[type="number"], .recase_base select, .recase_base textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
}
.recase_base form .com_form_style>li .item2>div:nth-child(n+2) {
    margin-left: 10px;
}
.recase_base form .com_form_style>li .item2>div {
    width: calc((100% - 11px) / 2);
}

.recase_base form .com_form_style > li select {
  padding: 15px 50px 15px 20px;
  border-radius: 5px;
  border: 1px solid #fff;
  font-size: 16px;
  background-color: #fff;
  background-position: right 20px center;
  background-size: 13px 13px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000;
}


.select-wrapper {
  position: relative;
  display: inline-block;
  width: 200px;
}

.select-wrapper select {
  width: 100%;
  padding: 10px 40px 10px 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: none;
  box-sizing: border-box;
}


.recase_base form .com_form_style>li select {
    padding: 15px 50px 15px 20px;
    border-radius: 5px;
    border: 1px solid #fff;
    font-size: 16px;
    background-color: #fff;
    background-image: url(/img/select-arrow.svg);
    background-position: right 20px center;
    background-size: 13px 13px;
    background-repeat: no-repeat;
}


/* 有効期限の select box サイズ調整 */
.exp_date .select-wrapper {
  width: 110px;
}

/* 三角アイコンの位置を調整 */
.exp_date .select-wrapper::after {
  right: 8px; /* お好みで 6〜10px 調整OK */
}
.recase_base form .com_form_style>li .max130 input {
    max-width: 130px;
}

.recase_base form .com_form_style>li .item2>div:nth-child(n+2) {
    margin-left: 10px;
}
.recase_base form .com_form_style>li .item2>div {
    width: calc((100% - 11px) / 2);
}

.recase_base form .com_form_style>li .m10 {
    margin-top: 10px;
}
.recase_base form .com_form_style>li .radio_style label {
    cursor: pointer;
    font-weight: normal;
    margin: 5px;
}
.recase_base form .com_form_style>li .credit_card {
    max-width: 300px;
    margin: 10px 0px;
}
.recase_base form .com_form_style>li .max260 input, .caristo_base form .com_form_style>li .max260 select {
    max-width: 260px;
}
.recase_base form .com_form_style>li .max100 input, .caristo_base form .com_form_style>li .max100 select {
    max-width: 100px;
}
.recase_base form .com_form_style>li .credit_info>li .exp_date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.recase_base form .com_form_style>li textarea {
    height: 100px;
    font-size: 16px;
}

.recase_base form .com_form_style>li input, .recase_base form .com_form_style>li textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #fff;
    font-size: 16px;
}
.recase_base form .com_form_style>li .radio_style input[type=radio] {
    display: none;
}
.recase_base form .com_form_style>li .radio_style span {
    display: inline-block;
    padding-left: 25px;
    position: relative;
}
.recase_base form .com_form_style>li .radio_style span:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #0abe6e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.recase_base form .com_form_style>li .radio_style input[type=radio]:checked+span:after {
    opacity: 1;
}
.recase_base form .com_form_style>li .radio_style span:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0abe6e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 3px;
    margin: auto;
    opacity: 0;
}

figure.d img{
        width:  100%;
        margin: auto;
}

@media (min-width: 768px) {
    figure.d img.sp {
        display: none;
    }
}
@media (max-width: 767px) {
    figure.d img.pc {
        display: none;
    }
}

/*-==========  Features  ==========-*/

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 0.5fr));
    gap: 15px;
}
@media (max-width: 1180px) {

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 0.5fr));
}
}
@media (max-width: 779px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 0.5fr));    
    }
}

.feature-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  -webkit-box-align: start;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.feature-icon {
  width: 70px;
}

.feature-card h3 {
  font-size: 23px;
  margin: 0 0 12px;
}

.highlight {
  border-bottom: 4px solid #FACC15; /* 黄色のライン */
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 767px) {
    .feature-card p {
        font-size: 14px;
    }
    .feature-card h3 {
        font-size: 20px;
        margin: 0 0 12px;
}

}

.feature-txt{
    width:74%;
}

.feature-img{
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
@media (max-width: 767px) {
    .feature-img{
        width: 20%;
    }
}

/*-==========  How to  ==========-*/
.recase_base img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    width: 100%;
    display: block;
}

@media (max-width: 767px) {
.recase_base img {
    width: 70%;
    margin: 0 auto;
    display: block;
}
body {
    font-family: ヒラギノ角ゴシック, "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica, "MS Pゴシック", "MS PGothic", sans-serif;
}

}
.recase_base #block_howtouse .how_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 60px;
}

.recase_base #block_howtouse .how_list>li {
    width: 23.5%;
}
.recase_base #block_howtouse .how_list>li .step_img {
    position: relative;
}
.recase_base #block_howtouse .how_list>li .step_img.line:after {
    content: url(/img/arrow.svg);
    display: block;
    width: 71px;
    height: 10px;
    position: absolute;
    right: -95px;
    top: 75%;
    z-index: 1;
}
.recase_base #block_howtouse .how_list p {
    margin-top:2rem;
    text-align:center;
}

.recase_base #block_howtouse span.link {
    color:#0abe6e;
    font-weight:bold;
}
.recase_base #block_howtouse span.link:hover {
       filter: brightness(110%);
}
.recase_base #block_howtouse span.link:after {
    content: url(/img/link.svg);
    width: 14px;
    position: absolute;    
    margin: 1px 5px;
}    
    .how_list .sp-br{
         display:none;       
    }
    .how_list .pc-br{
        display: inline; 
    }

@media (max-width: 767px) {
    .recase_base #block_howtouse .how_list {
        display: block;
    }
    .recase_base #block_howtouse .how_list>li .step_img.line:after {
        content: url(/img/arrow-sp.svg);
        width: 40px;
        height: 20px;
        border-radius: 5px;
        right: auto;
        left: 40%;
        top: auto;
        bottom: -130px;
    }

    .recase_base #block_howtouse .how_list>li {
        width: 87%;
        margin: auto;
    }
    .recase_base #block_howtouse .how_list>li.bottom{
        margin-bottom: 80px;
    }
    .how_list .sp-br{
        display: inline; 
    }
    .how_list .pc-br{
        display:none;
    }
}

    /*-- ==========  Media logos  ========== --*/

.media p{
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin: 40px 0px 10px;
}

@media (min-width: 768px) {
    .media img.sp {
        display: none;
    }
}
@media (max-width: 767px) {
    .media img.pc {
        display: none;
    }
}

/*--Price--*/

.price-title {
  position: absolute;
  top: 0;
  left: 12%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px 24px;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  display: flex;
}

.price-title .icon {
  width: 48px; /* ← サイズを48pxに変更 */
  height: 48px;
  margin-right: 8px;
}

@media (max-width: 767px) {
.price-title .icon {
  width: 32px; 
  height: 32px;
  margin-right: 8px;
}
    .price-title {
     font-size: 24px;
    }
    .price-box {
        padding: 45px 5px 15px !important
    }
}
.price-subtext {
  font-size: 20px;
}

.price-main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  font-weight: bold;
  flex-wrap: wrap;
}

.price-main .label {
  font-size: 25px;
}

.price-main strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.price-main .yen {
  font-size: 70px;
  color: #111;
}

.price-main .tax {
  font-size: 28px;
  margin-left: 8px;
}

.note {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.cta-wrapper {
  position: relative;
  display: inline-block;
}

.ribbon {
  position: absolute;
  top: -20px;
  left: -80px;
  background-color: #10b981;
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 24px;
  border-radius: 6px;
  transform: rotate(-25deg);
  box-shadow: 0 6px 0 #0f766e;
  z-index: 2;
}

.cta-button:hover {
  background-color: #fbbf24;
}
.cta-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 1.2rem;
}

.easy-label {
    position: absolute;
    top: -52px;
    left: -32px;
    width: 150px;
    height: auto;
    z-index: 2;
}

.easy-label img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-button {
    background-color: #fcd34d;
    color: #111827;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 60px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 340px;
    transition: background-color 0.3s ease;
    height:70px;
}
@media (max-width: 1000px) {
.cta-button {
    width: 100%;
    padding: 18px 60px;
    font-size: 15px;
    height: 60px;
  }
  .easy-label {
    top: -36px;
    left: -26px;
    width: 110px;
    height: auto;
    z-index: 2;
    }
}



.price-box {
  max-width: 1150px;
  margin: 2rem auto 5rem;
  border: 8px solid #07be6e;
  border-radius: 40px;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

@media (max-width: 1150px) {
    .price-box {max-width: 88%;}
}

@media (max-width: 1000px) {
.area.note{
line-height:initial;
font-size:12px;
}
    .price-box {max-width: 90%;}
    .price-title{left: 3.6em;}
    .price-main {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: center;
  align-items: baseline;
  gap: 0px;
  margin: 20px 0px;
  text-align: center;
  flex-wrap: wrap;
}

.price-main .label {
  grid-column: span 4;
  font-weight: bold;
  font-size: 20px;
}

.price-main .yen {
  font-size: 50px;
  font-weight: 800;
  line-height: 4rem
}

.price-main .amount {
  font-size: 48px;
  font-weight: 900;
}

.price-main .tax {
  font-size: 21px;
  font-weight: 700;
  margin-left: 0px;
}
.price-subtext {
    font-size: 14px;
}
}

.price-content {
  border: 8px solid #10b981;
  border-radius: 40px;
  padding: 60px 20px 40px;
  background: #fff;
  position: relative;
}


/*-- ==========  Hero  ========== */

.service-section {
  background: #ebffe5;
  padding: 40px;
  font-family: 'Noto Sans JP', sans-serif;
}

.container_hero {
  display: flex;
  max-width: 992px;
  margin: 0 auto;
  gap: 40px;
}

.text-area {
  text-align: left;
  width: 50%;
}

.text-area h2 {
  font-size: 48px;
  color: #0abe6e;
  font-weight: 700;
  line-height: 1.2;
}

.text-area p {
  font-size: 21px;
  color: #000;
  line-height: 2;
  margin: 24px 0;
  font-weight: bold;
}

.text-area .highlight {
  font-weight: 700;
  position: relative;
}

.text-area .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #ffce21;
  z-index: -1;
}

.cta_hero {
  position: relative;
  display: inline-block;
  margin-top: 35px;
}

.btn_hero {
  background: #ffce21;
  border-radius: 9999px;
  padding: 20px 60px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  width: 340px;
  height: 70px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: 25px;
}

.easy-tag {
  position: absolute;
  top: -36px;
  left: -27px;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.visual-block {
  width: 48%;
  max-width: 480px;
  position: relative;
}

.visual img {
  width: 100%;
  height: auto;
  display: block;
}

.price-bubble {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #ffffff;
  border: 3px solid #0abe6e;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  justify-content: space-around;
  align-items: stretch;
  text-align: center;
  transform: rotate(-12deg);
  z-index: 2;
}

.price-bubble::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 70%;
  transform: translateX(-50%) rotate(-21deg);
  border-left: 14px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid #0abe6e;
}

.price-bubble::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 70%;
  transform: translateX(-50%) rotate(-21deg);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #ffffff;
  z-index: 1;
}

.price-label {
  font-weight: bold;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-label .note {
  font-size: 13px;
  margin-bottom: 3px;
}

.price-label strong {
  font-size: 40px;
  line-height: 1;
}

.price-label .yen {
  font-size: 26px;
  margin-right: 1px;
}

.price-label .small {
  font-size: 13px;
  margin-left: 4px;
}

/* ========== スマホ用 ========== */

@media (max-width: 767px) {

  .service-section {
    padding: 40px 0px;
    }
  
  .cta_hero {
    margin-top: 0px;
  }
  .sp-left{
      text-align:left;
  }
  .container_hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    width: 100%;
    background-image: url(/img/top-img.svg);
    background-size:45%;
    background-position: right 10px;
    background-repeat: no-repeat;
    margin: 0 auto;
  }

  .text-area,
  .visual-block {
    width: 90%;
    max-width: 90%;
    text-align: center;
  }

  .visual-block {
    max-width: 200px;
  }

  .price-label strong {
    font-size: 28px;
  }

  .price-label .yen {
    font-size: 20px;
  }

  .price-label .note,
  .price-label .small {
    font-size: 12px;
  }

  .text-area h2 {
    font-size: 30px;
    text-align: left;
  }

  .text-area p {
    font-size: 15px;
  }

  .btn_hero {
    font-size: 16px;
    padding: 16px 60px;
    width: auto;
    height: auto;
    margin: 20px auto 0;
  }

  .easy-tag {
    top: -26px;
    left: -21px;
    width: 88px;
  }
    .mobile-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
  .price-label {
      justify-content: space-between;
  }
}

/* ========== PC・タブレット（941px以上） ========== */

@media (min-width: 768px) {
  .container_hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .text-area {
    text-align: left;
  }

  .visual-block {
    margin: 0;
  }

  .price-bubble {
    width: 150px;
    height: 150px;
    top: -15px;
    left: -30px;
  }

  .price-label strong {
    font-size: 40px;
  }

  .price-label .yen {
    font-size: 26px;
  }

  .price-label .small,
  .price-label .note {
    font-size: 13px;
  }

  .btn_hero {
    font-size: 18px;
    padding: 20px 60px;
    width: 340px;
    height: 70px;
  }
  .btn_hero:hover {
  background-color: #fbbf24;
}

  .easy-tag {
    top: -36px;
    left: -27px;
    width: 120px;
  }
  /* デフォルトではスマホ用を非表示 */
    .mobile-only {
        display: none;
    }

    .pc-only {
        display: block;
    }
}
@media (min-width:768px) and (max-width:915px) {
.text-area h2 {
    font-size: 42px;
}
.text-area p {
    font-size: 19px;
}
}

@media (min-width:610px) and (max-width:768px) {
    .container_hero {
        background-size: 38%;  
        background-position: 90% 10px;  
        }
}

@media  (min-width:861px) and (max-width:1200px) {
  .price-bubble {
        width: 150px;
        height: 150px;
        top: -2rem;
        left: -3rem;
  }
}
@media (min-width: 768px) and (max-width:860px) {
    .price-bubble {
        width: 135px;
        height: 135px;
        top: -2rem;
        left: -3rem;
    }
      .price-label strong {
    font-size: 30px;
  }

  .price-label .yen {
    font-size: 20px;
  }

  .price-label .small,
  .price-label .note {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
    .price-bubble {
    display:none;
    }
}

/*--TO TOP--*/
.recase_base #block_otherrental .totop {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    right: 70px;
    top: -30px;
    cursor: pointer;
    background: url(/img/totop.svg) center center / 10px auto no-repeat;
    background-color: #06c755;
}
@media (max-width: 767px) {
    .recase_base #block_otherrental .totop {
        right: 15px;
        width: 45px;
        height: 45px;
        top: -23px;
    }
}
/*--Anchor--*/
#how-anchor,
#feature-anchor,
#approach-anchor,
#faq-anchor,
#contact-anchor,
#price-anchor,
#entry-anchor,
#company-anchor,
#totop
 {
    -webkit-transform: translateY(-88px);
    transform: translateY(-88px);
}
@media (max-width: 1000px) {
#how-anchor,
#feature-anchor,
#approach-anchor,
#faq-anchor,
#contact-anchor,
#price-anchor,
#entry-anchor,
#company-anchor,
#totop {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}
@media (max-width: 1220px) {
#how-anchor,
#feature-anchor,
#approach-anchor,
#faq-anchor,
#contact-anchor,
#price-anchor,
#entry-anchor,
#company-anchor,
#totop {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}


.recase_base form .com_form_style>li input.error, .caristo_base form .com_form_style>li textarea.error {
    border-color: #ff4646;
}

input.error,
textarea.error,
select.error {
  border: 1px solid red !important;
}
.error_msg {
    color: #ff4646;
    font-size: 0.9em;
    margin-top: 5px;
    }



/* ========== 他ページレイアウト ========== */
.ec-layoutRole__contents {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.ec-layoutRole__main {
    color: #323c46;
    font-size: 16px;
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.75;
}

.page_inner .txt1 {
    margin-top: 60px;
}


.ec-layoutRole__main .page_inner .terms {
    counter-reset: number 0;
    margin-top: 60px;
}

.ec-layoutRole__main .page_inner ul, 
.ec-layoutRole__main .page_inner li {
    list-style: none;
}

.ec-layoutRole__main .page_inner .block_title {
    font-size: 38px;
    text-align: center;
    font-weight: 700;
}


@media (max-width: 767px) {
    .ec-layoutRole__main .page_inner .block_title {
        font-size: 30px;
    }
}
.ec-layoutRole__main .page_inner .terms h3:before {
    /*
    counter-increment: number 1;
    content: counter(number) ".";
    */
    padding-right: 5px;
}

.ec-layoutRole__main .page_inner .terms>li:nth-of-type(n+2) {
    margin-top: 50px;
}

.ec-layoutRole__main .page_inner .terms .terms_l2>li {
    margin-top: 30px;
}

.ec-layoutRole__main .page_inner .terms h3 {
    font-size: 24px;
}

.ec-layoutRole__main .page_inner .terms h4 {
    font-size: 18px;
}
.ec-layoutRole__main .page_inner .end {
    margin-top: 50px;
    text-align: right;
}

.ec-layoutRole__main .page_inner .terms .num_list {
    counter-reset: number2 0;
}

.ec-layoutRole__main .page_inner .terms .num_list>li {
    padding-left: 16px;
    text-indent: -16px;
}

.ec-layoutRole__main .page_inner .terms .num_list>li:before {
    counter-increment: number2 1;
    content: counter(number2) ".";
    padding-right: 5px;
}

.ec-layoutRole__main .page_inner .terms .dot_list>li {
    padding-left: 16px;
    text-indent: -16px;
}

.ec-layoutRole__main .page_inner .terms .dot_list>li:before {
    content: "・";
    padding-right: 5px;
}

/*---------------------------
特定商取引法に基づく表記
---------------------------*/
.ec-layoutRole__main .page_inner .law_list {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
}

.ec-layoutRole__main .page_inner .law_list dt {
    width: 30%;
    padding: 25px 0;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    line-height: 1.75;
    font-weight: bold;
}

.ec-layoutRole__main .page_inner .law_list dd {
    width: 70%;
    padding: 25px 0 25px 20px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    line-height: 1.75;
}

.ec-layoutRole__main .page_inner .law_list a {
    text-decoration: underline;
    display: inline-block;
}

@media (max-width: 767px) {
    .ec-layoutRole__main .page_inner .law_list {
        display: block;
    }

    .ec-layoutRole__main .page_inner .law_list dt {
        width: 100%;
        border-bottom: none;
    }

    .ec-layoutRole__main .page_inner .law_list dd {
        width: 100%;
        padding-left: 0;
        padding-top: 0;
    }
}


/*---------------------------
申込完了
---------------------------*/
.ec-layoutRole__main .page_inner .txt_area {
    margin-top: 50px;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.75;
}

.ec-layoutRole__main .page_inner .txt_area p:nth-child(n+2) {
    margin-top: 1em;
}


.com_submit_area {
  margin-top: 85px;
  text-align: center;
}

.com_submit_area .btn {
  width: 100%;
  max-width: 290px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 20px 0;
  border: 1px solid #ccc;
  border-radius: 40px;
  background-color: #262E36;
  transition: background-color .3s, color .3s;
  display: block;
  margin: 0 auto;
}

.com_submit_area .btn:hover {
  background-color: #fff;
  color: #262E36;
}

.com_submit_area .btn.white {
  background-color: #fff;
  color: #ccc;
}

/* .white クラスが付与された要素のホバー時のスタイル */
.com_submit_area .btn.white:hover {
  background-color: #ccc;
  color: #fff;
}



@media (max-width: 767px) {
  .com_submit_area {
    margin-top: 55px;
  }

  .com_submit_area .btn {
    max-width: 300px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

