@charset "UTF-8";
/*****************************************************************************
pageTitle
*****************************************************************************/
.rentalPageTitle {
  background-size: cover;
  width: 100%;
  background-image: url(../images/titleBg.jpg);
  padding: 50px 0;
  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;
}

.rentalPageTitle .imgbox {
  position: relative;
  width: 900px;
}

.rentalPageTitle .img img {
  width: 100%;
  height: auto;
}
/* 
.rentalPageTitle .img p {
  position: absolute;
  bottom: 74px;
  right: 0;
  background: #182987;
  color: #ffe100;
  padding: 0 .5em;
  line-height: 60px;
  font-size: 26px;
  font-weight: 700;
  width: 77%;
  text-align: center;
}

.rentalPageTitle-btnWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
} */


/*
メインビジュアル  202510追加
*/
.title_flexbox{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -30px;
}
.title_flexbox .img{
  width: 900px;
}
.title_flexbox .img:nth-of-type(1){
  width:46.16%;
}
.title_flexbox .img:nth-of-type(2){
  width:53.84%;
}
.title_flexbox .img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .rentalPageTitle {
    padding: 30px 15px;
  }
  .title_flexbox{
    margin-top: -24px;
  }
  /* .rentalPageTitle .img p {
    position: relative;
    bottom: auto;
    right: auto;
    padding: .5em;
    line-height: 1.3;
    font-size: 1.2rem;
    width: auto;
    text-align: center;
  }
  .rentalPageTitle-btnWrapper {
    margin-top: 16px;
  } */
}
@media screen and (max-width: 400px) {
  .title_flexbox{
    margin-top: -16px;
    -webkit-box-direction: normal;
    -ms-flex-direction: column; 
    flex-direction: column;
  }
  .title_flexbox .img:nth-of-type(1),
  .title_flexbox .img:nth-of-type(2){
    width:94%;
  }
  .title_flexbox .img:nth-of-type(1){
    margin-bottom: 4px;
  }
}

#section02 {
  background: #fff;
}

/*****************************************************************************
banner  20231102追加
*****************************************************************************/
.rentalBanner__wrapper{
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 30px;
}

.rentalBanner__inner{
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.rentalBanner__link{
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  display: block;
  transition: 0.3s;
}

.rentalBanner__img{
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px){
  .rentalBanner__inner{
    display: block;
  }

  .rentalBanner__link{
    width: 100%;
  }

  .rentalBanner__link:not(:last-child){
    margin-bottom: 30px;
  }
}


/*****************************************************************************
serviceNav
*****************************************************************************/
#serviceNav nav {
  background: #333;
  border-bottom: 8px solid #dc0002;
  height: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#serviceNav nav ul {
  width: 1000px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#serviceNav nav li {
  width: 50%;
}

#serviceNav nav li a {
  display: block;
  height: 59px;
  line-height: 59px;
  font-size: 1.2rem;
  color: #fff;
  padding: 0 10px;
  font-weight: 900;
  text-decoration: none;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  text-align: center;
}

#serviceNav nav li.on a {
  background: #dc0002;
}

#serviceNav nav li:not(.on) a:hover {
  color: #dc0002;
}

/*****************************************************************************
merit
*****************************************************************************/
#meritWrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

#merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #cd0012;
  padding: 1px 15px 15px;
}

#merit .meritBox {
  width: calc((100% - 45px)/4);
  background: #cccccc;
  margin-top: 15px;
  margin-left: 15px;
  border-radius: 12px;
  overflow: hidden;
}

#merit .meritBox:nth-child(4n+ 1) {
  margin-left: 0;
}

#merit .meritBox img {
  width: 100%;
}

@media screen and (max-width: 600px) {
  #merit {
    display: block;
    padding: 1px 20px 20px;
  }
  #merit .meritBox {
    width: auto;
    margin-top: 20px;
    margin-left: 0;
  }
}

/*****************************************************************************
tabBox
*****************************************************************************/
#tabBox {
  position: relative;
}

#tab {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#tab .note {
  text-align: center;
  margin: 0 0 8px;
}

#tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}

#tab li {
  width: calc((100% - 10px)/3);
  margin-left: 5px;
  position: relative;
  color: #777777;
}

#tab li:nth-child(1) {
  margin-left: 0;
}

#tab li > span {
  display: block;
  text-align: center;
  padding: 5px 0 5px;
  background: #e5e5e6;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  font-size: 0.7rem;
}

#tab li > span:hover {
  background: white;
}

#tab li > span em {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333333;
}

#tab li > span .inch {
  display: block;
  position: relative;
  text-align: center;
  margin: 0 10px;
  padding: 6px 0 6px;
  border-bottom: 1px dashed #888;
}

#tab li > span .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.72rem;
  color: #dc0012;
  padding: 0 5px;
}

#tab li.sl > span {
  background: #dc0012;
  padding: 5px 0 10px;
}

#tab li.sl .inch {
  border-color: #fff;
}

#tab li.sl * {
  color: #ffffff !important;
}

#tab li.sl::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #dc0012 transparent transparent;
  position: absolute;
  z-index: 1;
  left: calc(50% - 8px);
  bottom: -15px;
}

#tabContents {
  background: white;
  border-top: 7px solid #dc0012;
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

#tabContents > .inner {
  width: 1000px;
  margin: 0 auto;
}

#tabContents .ft {
  text-align: right;
  margin: 8px -0.5em 0 0;
}



@media screen and (max-width: 600px) {
  #tabBox #tab {
    width: auto;
    margin: 0 5px;
  }
  #tab li > span em {
    display: block;
    text-align: center;
  }
  #tab li > span .type {
    height: 4em;
  }
  #tabContents > .inner {
    width: auto;
    margin: 0 10px;
  }
}

#tabContents .hd01,
#tabBox2 .hd01 {
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 10px;
  font-weight: 700;
}

#tabContents .hd01 span,
#tabBox2 .hd01 span {
  display: inline-block;
  border-bottom: 8px solid #fffd00;
}

#tabContents .hd02,
#tabBox2 .hd02 {
  text-align: center;
  font-size: 1.2rem;
  margin: 0 0 15px;
  font-weight: 700;
}

#tabContents .hd02 .em,
#tabBox2 .hd02 .em {
  color: #dc0002;
}

.sheetsFtNote li {
  padding-left: 20px;
  position: relative;
  margin-top: 4px;
}

.sheetsFtNote li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

/*****************************************************************************
tabBox2
*****************************************************************************/
#tabBox2 {
  background: #fff;
  padding: 0 0 60px;
}

#tabBox2 > .inner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  #tabBox2 .inner {
    width: auto;
  }
  #tabBox2 .inner.inner202410{
    margin:0 10px;
  }
  #tabBox2 .tableWrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #tabBox2 .tableWrapper table {
    width: 120vw;
  }
  #tabBox2 .tableWrapper table.inner202410 {
    width: 100%;
  }
}

#tabBox2 .ft {
  text-align: right;
  margin: 8px 0 0 0;
}

#tabBox2 .ft2 {
  text-align: right;
  margin: 8px 0 5px 0;
}

#tabBox2 .ft-left {
  text-align: left;
  margin-top: 5px;
  line-height: 20px;
}

#tabBox2 .ft-left.em202410{
  font-size: 1.1em;
  color: #dc0002;
  font-weight: 400;
}

/*****************************************************************************
tableType02
*****************************************************************************/
.tableType02 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  background: #eaf6fd;
  font-size: 0.875rem;
}

.tableType02 th, .tableType02 td {
  padding: 8px;
  line-height: 1.3;
}

.tableType02 tbody th, .tableType02 tbody td {
  border: 1px solid #222222;
  padding: 8px;
}

.tableType02 thead tr {
  border: 1px solid #222222;
}

.tableType02 thead th:not(:nth-child(1)) {
  border-left: 1px solid #ffffff;
}

.tableType02 thead th {
  background: #232D83;
  color: #ffffff;
  text-align: center;
  width: 25%;
  font-family: 'Roboto Condensed', 'NotoSansCJKjp-Medium', sans-serif;
  font-size: 1.2em;
}

.tableType02 tbody th {
  background: #54c3f1;
  width: 25%;
}

.tableType02.tableType02-2sizes tbody td {
  width: 37.5%;
}

.tableType02 tbody td {
  text-align: center;
}

.tableType02 tbody td.summerBg {
  color: #00a1e9;
  font-family: 'Noto Sans JP', sans-serif;
}

.tableType02 tbody td.winterBg {
  color: #f39700;
  font-family: 'Noto Sans JP', sans-serif;
}

.tableType02 tbody th {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.tableType02 .price {
  color: #dc0012;
  font-size: 1.2em;
  font-weight: bold;
}

.tableType02 .price em {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6em;
  font-weight: 700;
}

.tableType02 .price2 {
  font-weight: bold;
}

.tableType02 .price2 em {
  font-size: 1.2em;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.tableType02 img {
  height: auto;
  width: 96%;
  max-width: 180px;
}

.tableType02 .cars {
  background: #fff;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .tableType02 {
    font-size: 0.8rem;
  }
}

/*****************************************************************************
tableNote
*****************************************************************************/
.tableNote {
  margin: 10px 0 0;
}

.tableNote li {
  position: relative;
  padding-left: 16px;
  line-height: 1.4;
  margin-top: 10px;
  font-size: 0.875rem;
}

.tableNote li:nth-child(1) {
  margin-top: 0;
}

.tableNote li:before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  background: #a9a9aa;
  border-radius: 100%;
}

/*.tableNote li.important {
	font-size: 1.1rem;
}*/
.tableNote .em {
  color: #dc0002;
}

/*****************************************************************************
noteBoxesWrapper
*****************************************************************************/
#noteBoxesWrapper {
  padding: 25px 0;
  background: #efefef;
  border-bottom: 10px solid #ffffff;
}

#noteBoxesWrapper > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1000px;
  margin: 0 auto;
}

#noteBoxesWrapper .noteBoxesHd {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.2;
  width: 25%;
  text-align: center;
  font-size: 1rem;
}

#noteBoxesWrapper .noteBoxes {
  border-left: 1px solid #a9a9aa;
  padding-left: 25px;
}

#noteBoxesWrapper .noteBoxes li {
  position: relative;
  padding-left: 16px;
  line-height: 1.4;
  margin-top: 10px;
  font-size: 0.875rem;
}

#noteBoxesWrapper .noteBoxes li:nth-child(1) {
  margin-top: 0;
}

#noteBoxesWrapper .noteBoxes li:before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  background: #a9a9aa;
  border-radius: 100%;
}

#noteBoxesWrapper .noteBoxes li.important {
  font-size: 1.1rem;
}

@media screen and (max-width: 600px) {
  #noteBoxesWrapper > .inner {
    display: inherit;
    width: auto;
    margin: 0 20px;
  }
  #noteBoxesWrapper .noteBoxesHd {
    margin-bottom: 12px;
    width: auto;
  }
  #noteBoxesWrapper .noteBoxes {
    border-top: 1px solid #a9a9aa;
    border-left: none;
    padding-top: 12px;
    padding-left: 0;
  }
}

/*****************************************************************************
btnRadius
*****************************************************************************/
.btnRadius {
  background-color: #DC0002;
  border-radius: 30px;
  cursor: pointer;
  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;
  position: relative;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  height: 54px;
}

@media screen and (max-width: 600px) {
  .btnRadius {
    height: 45px;
  }
}

.btnRadius span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0 55px;
}

@media screen and (max-width: 600px) {
  .btnRadius span {
    font-size: 1rem;
  }
}

.btnRadius:hover {
  background-color: #df817e;
}

.btnRadius__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.btnRadius__webReserve {
  max-width: 315px;
}

.btnRadius__webReserve::after {
  content: '';
  background-image: url(../images/icon-touch.svg);
  background-size: cover;
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  right: 30px;
  width: 15px;
  height: 23px;
}




/*****************************************************************************
ご不満の声  202510追加
*****************************************************************************/
.voiceSection{
    margin: 80px auto 140px;
}
.voiceSection .sectionHd .l1{
  background-color: #A9A9AA;
  color: #fff;
  padding: 8px 24px; 
  display: inline-block;
  border-radius:18px;
  line-height: 1.2;
}
.voiceSection .sectionHd .l1 br{
  display:none;
}
.voiceSection .sectionHd .img{
  width: 56px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}
.voiceSection .sectionHd .img img{
  width: 100%;
  height: auto;
}
.voiceSection .voiceInner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  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;
  -webkit-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.voiceSection .voiceInner .voiceBox{
    width: calc((100% - 32px) / 3);
    margin-right: 16px;
    margin-bottom: 16px;
    padding-top: clamp(8px, 16px, 20px);
    padding-bottom: clamp(16px, 24px, 40px);
    padding-left: clamp(16px, 24px, 40px);
    padding-right: clamp(16px, 24px, 40px);
    background-color: #fff;
    border-radius: 12px; 
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 2px solid #EFEFEF;
    box-shadow: 4px 4px 0 rgba(119, 119, 119, 0.4);
}
.voiceSection .voiceInner .voiceBox:nth-child(3n){
  margin-right: 0px;
}
.voiceSection .voiceInner .voiceBox:nth-child(4),
.voiceSection .voiceInner .voiceBox:nth-child(5),
.voiceSection .voiceInner .voiceBox:nth-child(6){
  margin-bottom: 0px;
}
.voiceSection .voiceInner .voiceBox .img{
  width: 80px;
  padding-bottom: 4px;
  margin-left: auto;
  margin-right: auto;
}
.voiceSection .voiceInner .voiceBox .img img{
  width: 100%;
  height: auto;
}
.voiceSection .voiceInner .voiceBox .hdType2{
  font-size: 1.28rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 16px;
  text-align: center;
}
.voiceSection .voiceInner .voiceBox .text{
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
.voiceSection .voiceInner .voiceBox .text .strong{
  color: #F35908;
}
@media screen and (max-width: 600px){
  .voiceSection{
    margin: 64px auto 40px;
  }
  .voiceSection .sectionHd{
    margin-left: 10px;
    margin-right: 10px;
  }
  .voiceSection .voiceInner{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .voiceSection .voiceInner .voiceBox{
      width: 100%;
      margin-right: 0px;
      margin-bottom: 16px;
  }
  .voiceSection .voiceInner .voiceBox:nth-child(4),
  .voiceSection .voiceInner .voiceBox:nth-child(5){
    margin-bottom: 16px;
  }
  .voiceSection .voiceInner .voiceBox:nth-child(6){
    margin-bottom: 0px;
  }

  .voiceSection .voiceInner .voiceBox .hdType2{
    font-size: 1.28rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 16px;
    text-align: center;
  }
  .voiceSection .voiceInner .voiceBox .text{
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
  }
  .voiceSection .sectionHd .l1 br{
    display:block;
  }
}




/*****************************************************************************
新レンタルサービスが登場しました newRentalSection 202510追加
*****************************************************************************/
.newRentalSection{
  background-color: #fff;
  position: relative;
  
}
.newRentalSection::before{
  position: absolute;
  z-index: -1;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  max-width: 800px;
  height: 300px;
  width: clamp(60%, 800px, 800px);
  border-radius: 50%;
  background-color: #fff;
}
.newRentalSection .sectionHd .l1{
  padding: 0px 48px; 
  display: inline-block;
  position: relative;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: #DC0802;
  color: #fff;
  box-sizing: border-box;
}
.newRentalSection .sectionHd .l1::before,
.newRentalSection .sectionHd .l1::after{
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.newRentalSection .sectionHd .l1::after {
  top: 0;
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.newRentalSection .sectionHd .l1::before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.newRentalSection .sectionHd .deco-slash {
  position: relative;
  display: inline-block;
  color: #f15a00;
  padding: 0 24px;
  line-height: 1.2;
}
.newRentalSection .sectionHd .deco-slash br{
  display: none;
}

.deco-slash::before {
  content: "";
  position: absolute;
  left: -54px;
  bottom: 0;
  width: 66px;
  height: 60px;
  background-image: url(../images/strong-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.deco-slash::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: 0;
  width: 66px;
  height: 60px;
  background-image: url(../images/strong-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.newRentalSection .sectionHd .img{
  width: 56px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}
.newRentalSection .sectionHd .img img{
  width: 100%;
  height: auto;
}
.newRentalSection .newRentalInner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  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;
  -webkit-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 64px;
}
.newRentalSection .newRentalInner .voiceBox{
    width: calc((100% - 32px) / 3);
    margin-right: 16px;
    margin-bottom: 16px;
    padding-top: clamp(8px, 16px, 20px);
    padding-bottom: clamp(16px, 24px, 40px);
    padding-left: clamp(16px, 24px, 40px);
    padding-right: clamp(16px, 24px, 40px);
    background-color: #fff;
    border-radius: 12px; 
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 2px solid #EFEFEF;
    box-shadow: 4px 4px 0 rgba(119, 119, 119, 0.4);
}
.newRentalSection .newRentalInner .voiceBox:nth-child(3n){
  margin-right: 0px;
}
.newRentalSection .newRentalInner .voiceBox:nth-child(4),
.newRentalSection .newRentalInner .voiceBox:nth-child(5),
.newRentalSection .newRentalInner .voiceBox:nth-child(6){
  margin-bottom: 0px;
}
.newRentalSection .newRentalInner .voiceBox .img{
  width: 80px;
  padding-bottom: 4px;
  margin-left: auto;
  margin-right: auto;
}
.newRentalSection .newRentalInner .voiceBox .img img{
  width: 100%;
  height: auto;
}
.newRentalSection .newRentalInner .voiceBox .hdType2{
  font-size: 1.28rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 16px;
  text-align: center;
}
.newRentalSection .newRentalInner .voiceBox .text{
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
.newRentalSection .newRentalInner .voiceBox .text .strong{
  color: #F35908; 
}
@media screen and (max-width: 600px){
    .newRentalSection{
      margin: 64px auto 0;
    }
    .newRentalSection .sectionHd{
      margin-left: 10px;
      margin-right: 10px;
    }
    .newRentalSection .newRentalInner{
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-left: 0;
      margin-right: 0;
      padding-left: 10px;
      padding-right: 10px;
    }
    .newRentalSection .newRentalInner .voiceBox{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 16px;
    }
    .newRentalSection .newRentalInner .voiceBox:nth-child(4),
    .newRentalSection .newRentalInner .voiceBox:nth-child(5){
      margin-bottom: 16px;
    }
    .newRentalSection .newRentalInner .voiceBox:nth-child(6){
      margin-bottom: 0px;
    }

    .newRentalSection .newRentalInner .voiceBox .hdType2{
      font-size: 1.28rem;
      font-weight: bold;
      line-height: 1.4;
      margin: 0 0 16px;
      text-align: center;
    }
    .newRentalSection .newRentalInner .voiceBox .text{
      font-size: 1rem;
      font-weight: 500;
      line-height: 2;
    }
    .newRentalSection::before{
      top: -60px;
      max-width: 300px;
      height: 150px;
    }
    .newRentalSection .sectionHd .l2{
      font-size:1.875rem;
    }
    .newRentalSection .sectionHd .deco-slash br{
      display: block;
    }

  .deco-slash::before {
    left: -30px;
    width: 46px;
    height: 60px;
  }
  .deco-slash::after {
    right: -30px;
    width: 46px;
    height: 60px;
  } 
  .newRentalSection .sectionHd .l1{
    height: 32px;
    line-height: 32px;
  }
  .newRentalSection .sectionHd .l1::after {
    border-width: 16px 16px 16px 0px;
  }
  .newRentalSection .sectionHd .l1::before {
    border-width: 16px 0px 16px 16px;
  } 
}



@media screen and (max-width: 400px) {
    .newRentalSection::before{
      top: -30px;
      max-width: 200px;
      height: 80px;
    }
    .newRentalSection .sectionHd .l2{
      font-size:1.25rem;
    }
}



/*****************************************************************************
新レンタルサービスが登場しました  newRentalItem 202510追加
*****************************************************************************/

.newRentalItem{
  background-color: #fff;
  padding-top: 114px;
  overflow-x: hidden;
}
.newRentalItem .img img{
  width: 100%;
  height: auto;
}
.newRentalItem .taiyaImg{
  position: absolute;
  top: -114px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.newRentalItem .itemInner{
  position: relative;
  padding-top: 204px;
}
.newRentalItem .itemInner::before{
  content: "";
  position: absolute;
  top: 90px; /* カーブの高さを調整 */
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 114px; /* カーブの大きさ */
  background-color: #f9efe3;
  border-radius: 50% / 100% 100% 0 0; /* 上が丸くなる形 */
}
.newRentalItem .itemInner .innerBox{
  background-color: #f9efe3;
  padding-top: 50px;
  padding-bottom: 48px;
}
.newRentalItem .itemInner .innerBox .content{
  max-width: 632px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.newRentalItem .strongTitleH3{
    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;
}
.newRentalItem .strongTitleH3 span{
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
}
.newRentalItem .strongTitleH3 .strongMarksCover{
  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;

}
.newRentalItem .strongTitleH3 span.strongMarks{
  position:relative;
  color: #DC0802;
}
.newRentalItem .strongTitleH3 span.strongMarks::before{
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #DC0802;
  border-radius: 50%;
}
.newRentalItem .strongTitleH3 .strongUnderCover span:nth-child(1){
 color: #DC0802;
}
.newRentalItem .strongTitleH3 .strongUnderCover span:nth-child(2){
 color: #444444;
}
.newRentalItem .itemInner .innerBox .content .img{
  width: 128px;
  margin: 24px auto;
}
.newRentalItem .itemInner .innerBox .content .text{
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.4;
}
@media screen and (max-width: 600px){
  .newRentalItem .strongTitleH3 span {
    font-size: 1.75rem;
  }
  .newRentalItem .taiyaImg{
    top: -114px;
    width: 240px;
  }
  .newRentalItem .strongTitleH3 span.strongMarks::before{
    top: -8px;
    width: 8px;
    height: 8px;
  }
  .newRentalItem .strongTitleH3{
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; 
  }
  .newRentalItem .itemInner .innerBox .content .text{
    font-size: 1rem;
  }
  .newRentalItem .itemInner .innerBox .content .text br{
    display: none;
  }
  .newRentalItem .itemInner .innerBox .content{
    max-width: 432px;
    text-align:left;
  }
  .newRentalItem .itemInner::before{
    top: 40px;
  }
  .newRentalItem .itemInner .innerBox{
    padding-top: 20px;
  }
  .newRentalItem .itemInner{
    padding-top: 154px;
  }
}




/*****************************************************************************
新レンタルサービスが登場しました  newRentalUse 202510追加
*****************************************************************************/
.newRentalUse{
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
  }
.newRentalUse .subTitle{
  text-align: center;
  padding-bottom: 24px;
  color: #DC0802;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.4;
}
.newRentalUse .subTitle br{
  display:none;
}
.newRentalUse .newRentalUseInner{
  max-width: 1032px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  margin: 0 auto;
}

/*.innerBox*/
.newRentalUse .newRentalUseInner .innerBox{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
   gap:40px;
}
.newRentalUse .newRentalUseInner .innerBox .img img{
  width: 100%;
  height: auto;
}
.newRentalUse .newRentalUseInner .innerBox .taiyaImg{
  width: 286px;
}
.newRentalUse .newRentalUseInner .innerBox .commentBox {
  flex:1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap:4px;
  width: 100%;
}
.newRentalUse .newRentalUseInner .innerBox .commentBox .textBox{
  position: relative;
  background-image: url(../images/comment-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 74.5%;
  height: 160px;
}
.newRentalUse .newRentalUseInner .innerBox .commentBox .textBox .text{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 700;
  width: 80%;
  line-height: 1.6;
  text-align: center;
}
.newRentalUse .newRentalUseInner .innerBox .commentBox .img{
  width: 167px;
}
/*.periodFlow*/
.periodFlow{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.periodFlow .flowBox{
  display: flex;
  flex-direction: column;
}
.periodFlow .flowBox .arrowBox{
  width: 100%;
  height: 60px;
  background: #87D5F6;
  position: relative;
}
.periodFlow .flowBox:nth-of-type(2) .arrowBox{
  background: #5581BD;
}
.periodFlow .flowBox:nth-of-type(3) .arrowBox{
  background: #232D83;
}
.periodFlow .flowBox .arrowBox::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #87D5F6;
}
.periodFlow .flowBox:nth-of-type(2) .arrowBox::after {
  border-left: 30px solid #5581BD;
}
.periodFlow .flowBox:nth-of-type(3) .arrowBox::after {
  border: none;
}
.periodFlow .flowBox .arrowBox .period{
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 48px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.periodFlow .flowBox .periodBox{
  padding: 32px 8px 0;
  width: 100%;
  margin: 0 auto;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-direction: normal;
  -ms-flex-direction: column; 
  flex-direction: column;
  gap: 0;
}
.periodFlow .flowBox .periodBox .periodTitle{
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 16px;
}
.periodFlow .flowBox .periodBox .textBox{
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  color:#444444;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  height :80px;
}

@media screen and (max-width: 600px){
  .newRentalUse .subTitle{
    font-size: 1.75rem;
  }
  .newRentalUse .subTitle br{
    display: block;
  }
  /*.innerBox*/
  .newRentalUse .newRentalUseInner{
    padding-left: 0;
    padding-right: 0;
  }
  .newRentalUse .newRentalUseInner .innerBox{
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap:0px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .newRentalUse .newRentalUseInner .innerBox .commentBox{
    flex-direction: column;
    align-items : flex-end;
  }
  .newRentalUse .newRentalUseInner .innerBox .commentBox .textBox{
     width: 100%;
     max-width:460px;
  }
  .newRentalUse .newRentalUseInner .innerBox .commentBox .textBox .text{
    width: 85%;
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .newRentalUse .newRentalUseInner .innerBox .commentBox .textBox .text br{
    display: none;
  }
  .newRentalUse .newRentalUseInner .innerBox .commentBox .img{
    width: 30%;
    margin-top: -20px;
  }
  .newRentalUse .newRentalUseInner .innerBox .commentBox {
    gap:4px;
  }
  .newRentalUse .newRentalUseInner .innerBox .taiyaImg {
    width: 180px;
    margin-top: -140px;
  }
  /*.periodFlow*/
  .periodFlow{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .periodFlow .flowBox .periodBox{
    padding: 12px;
    background-color: #fff;
  }
  .periodFlow .flowBox .arrowBox{
    height:40px;
  }
  .periodFlow .flowBox .arrowBox::after{
    border: none;
  }
  .periodFlow .flowBox:nth-of-type(2) .arrowBox::after{
    border-left: none;
  }
  .periodFlow .flowBox .arrowBox .period{
    left: 15px;
    font-size: 1.5rem;
  }
  .periodFlow .flowBox .periodBox .textBox{
    height: auto;
    background-color: transparent;
    padding:0;
  }
  .periodFlow .flowBox .periodBox .periodTitle{
    padding-bottom: 4px;
    font-size:1.25rem;
  }
}

@media screen and (max-width: 400px){
  .newRentalUse .newRentalUseInner .innerBox .commentBox .textBox .text{
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .newRentalUse .newRentalUseInner .innerBox .taiyaImg {
    width: 120px;
    margin-top: -95px;
  }
  .newRentalUse .newRentalUseInner .innerBox .commentBox .img{
    margin-top: -40px;
  }
}


/*****************************************************************************
メリット  #section01 202510追加
*****************************************************************************/
#section01{
  background-color:#fff;
  padding-bottom: 80px;
}

/*****************************************************************************
レンタル可能サイズ  #section07 202510追加
*****************************************************************************/
#section07{
  background-color:#fff;
  padding-bottom: 80px;
}
#section07 .newRentalSizeText .subttl_red_l{
    padding-bottom: 16px;
}
#section07 .newRentalSizeText .text{
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  padding: 4px 0;
}
table.newRentalSizeInner{
  width:100%;
  border-collapse: collapse;
  margin-top: 64px;
  table-layout: fixed;
}
table.newRentalSizeInner td,
table.newRentalSizeInner th {
	border: 1px solid #fff;
	border-collapse: collapse;
  padding: 8px;
	width: calc((100% - 5px) / 6);
  height: 40px;
  text-align: center;
  font-weight: 500 !important;
  font-size: 1rem;
  min-width: 100px;
  width: auto;
}
table.newRentalSizeInner th {
	background: #232D83;
  color: #fff;
}
table.newRentalSizeInner tr:nth-child(odd) {
	background: #232D83;
}
table.newRentalSizeInner tr:nth-child(even) {
	background: #EFEFEF;
}
.newRentalSize .notice{
  display: none;
}


@media screen and (max-width: 600px){
  .tableScroll {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
    table.newRentalSizeInner {
    min-width: 800px;
  }

  table.newRentalSizeInner th:first-child,
  table.newRentalSizeInner td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #232D83;
    color: #fff;
    white-space: nowrap;
  }
  .newRentalSize .notice{
    display: block;
    font-size: 0.875trm;
    color:#444;
    font-weight:500;
    margin-top: 12px;
  }
}

