@charset "UTF-8";
/* 初期化 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
html:focus {
  outline: none;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  background: #ffffff url("../images/background_pc.webp");
  background-size: auto;
  background-position: top left;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

main {
  display: block;
  /*overflow: hidden;*/
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  font-weight: 500;
}

.t-red {
  color: #c8102e;
  padding-right: 6px;
}

/* ----------------------------------- */
/* コンテナ
/* ----------------------------------- */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: ease-in 0.1s;
  max-width: 970px !important;
}
@media screen and (min-width: 1211px) {
  .container {
    max-width: 940px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1210px) {
  .container {
    max-width: 940px;
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 375px !important;
  }
}

.sub_container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: ease-in 0.1s;
  background: #ffffff;
}
.sub_container.con_on_red {
  background: #c8102e;
}
.sub_container.conblue {
  background: #96bbd6;
}
.sub_container.conred {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 60%,
    #c8102e 40%,
    #c8102e 100%
  );
}
.sub_container.bgb_w {
  background: linear-gradient(
    180deg,
    #dceefa 0%,
    #dceefa 50%,
    #ffffff 50%,
    #ffffff 100%
  );
}

/* ----------------------------------- */
/* フォントサイズ・余白 */
/* ----------------------------------- */
.fs12 {
  font-size: 12px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs20 {
  font-size: 20px !important;
}

.fs22 {
  font-size: 22px !important;
}

.fs24 {
  font-size: 24px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.w10p {
  width: 10% !important;
}

.w20p {
  width: 20% !important;
}

.w30p {
  width: 30% !important;
}

.w40p {
  width: 40% !important;
}

.w50p {
  width: 50% !important;
}

.w60p {
  width: 60% !important;
}

.w70p {
  width: 70% !important;
}

.w80p {
  width: 80% !important;
}

.w90p {
  width: 90% !important;
}

.w100p {
  width: 100% !important;
}

/* ----------------------------------- */
/* リンク */
/* ----------------------------------- */
a {
  color: #000;
  text-decoration: none;
  transition: all ease 0.3s;
}
a:hover,
a:focus {
  text-decoration: none;
  transition: all ease 0.3s;
}
a:focus,
a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}
a img:hover {
  opacity: 0.8;
}

/* ------------------------------------------ /
/ 表示非表示 /
/ ------------------------------------------ */
.pc-on {
  display: none;
}

@media (min-width: 768px) {
  .pc-on {
    display: block;
  }
}
.sp-on {
  display: block;
}

@media (min-width: 768px) {
  .sp-on {
    display: none;
  }
}
/* ----------------------------------- */
/* clearfix
/* ----------------------------------- */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after {
  clear: both;
}

/* ---------------------------------------------*/
/* 共通 */
/* ---------------------------------------------*/
.box:nth-of-type(n + 2) {
  margin-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  margin: 0 0 20px;
}

/*スライド画像の横幅可変*/
img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------- */
/* カラム */
/* ----------------------------------- */
.column2Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.column2Wrap .columnBox {
  flex-basis: calc((100% - (30px * (2 - 1))) / 2);
  max-width: calc((100% - (30px * (2 - 1))) / 2);
}
.column2Wrap .columnBox p:last-of-type {
  margin-bottom: 0;
}
.column2Wrap .columnBox:nth-of-type(n + 3) {
  margin-top: 20px;
}
.column2Wrap.sp2_8 .columnBox:nth-of-type(odd) {
  flex-basis: 230px;
  max-width: 230px;
}
.column2Wrap.sp2_8 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 270px);
  max-width: calc(100% - 270px);
}
.column2Wrap.sp8_2 .columnBox:nth-of-type(odd) {
  flex-basis: calc(100% - 270px);
  max-width: calc(100% - 270px);
}
.column2Wrap.sp8_2 .columnBox:nth-of-type(even) {
  flex-basis: 230px;
  max-width: 230px;
}
.column2Wrap.sp3_7 .columnBox:nth-of-type(odd) {
  flex-basis: 300px;
  max-width: 300px;
}
.column2Wrap.sp3_7 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 320px);
  max-width: calc(100% - 320px);
}
.column2Wrap.sp7_3 .columnBox:nth-of-type(odd) {
  flex-basis: calc(100% - 320px);
  max-width: calc(100% - 320px);
}
.column2Wrap.sp7_3 .columnBox:nth-of-type(even) {
  flex-basis: 300px;
  max-width: 300px;
}
.column2Wrap.sp4_6 .columnBox:nth-of-type(odd) {
  flex-basis: 330px;
  max-width: 330px;
}
.column2Wrap.sp4_6 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 350px);
  max-width: calc(100% - 350px);
}
.column2Wrap.sp6_4 .columnBox:nth-of-type(odd) {
  flex-basis: calc(100% - 350px);
  max-width: calc(100% - 350px);
}
.column2Wrap.sp6_4 .columnBox:nth-of-type(even) {
  flex-basis: 330px;
  max-width: 330px;
}
.column2Wrap.sp140 .columnBox:nth-of-type(-n + 2) {
  margin-top: 0;
}
.column2Wrap.sp140 .columnBox:nth-of-type(odd) {
  flex-basis: 140px;
  max-width: 140px;
}
.column2Wrap.sp140 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 160px);
  max-width: calc(100% - 160px);
}
.column2Wrap.sp250 .columnBox:nth-of-type(odd) {
  flex-basis: 250px;
  max-width: 250px;
}
.column2Wrap.sp250 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 270px);
  max-width: calc(100% - 270px);
}
.column2Wrap .column2Wrap .columnBox {
  flex-basis: calc((100% - (30px * (2 - 1))) / 2);
  max-width: calc((100% - (30px * (2 - 1))) / 2);
}

.column3Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.column3Wrap:after {
  content: "";
  display: block;
  width: calc((100% - (30px * (3 - 1))) / 3);
}
.column3Wrap .columnBox {
  flex-basis: calc((100% - (25px * (3 - 1))) / 3);
  max-width: calc((100% - (25px * (3 - 1))) / 3);
}
.column3Wrap .columnBox img {
  width: 100%;
  max-width: 100%;
}
.column3Wrap .columnBox p:last-child {
  margin-bottom: 0;
}
.column3Wrap .columnBox:nth-of-type(-n + 3) {
  margin-top: 0;
}

.column4Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.column4Wrap .columnBox p:last-child {
  margin-bottom: 0;
}
.column4Wrap .columnBox img {
  max-width: 100%;
  width: 100%;
}

.columnBox {
  overflow: hidden;
}
.columnBox.roundBox .img_box {
  position: relative;
  width: 100%;
  padding-bottom: 61%;
  overflow: hidden;
}
.columnBox.roundBox .img_box img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.columnBox img {
  align-self: baseline;
  max-width: 100%;
}
.columnBox p:last-of-type {
  margin: 0;
}

.borderBox .columnBox {
  padding: 15px 20px;
  border: 1px solid #eee;
  overflow: visible;
}
.borderBox .columnBox + .borderNone {
  border: none;
}

@media screen and (min-width: 1025px) {
  .column2Wrap.lp3_7 .columnBox:first-of-type {
    flex-basis: calc((100% - (60px)) / 3);
    max-width: calc((100% - (60px)) / 3);
  }
  .column2Wrap.lp3_7 .columnBox:last-of-type {
    flex-basis: calc((((100% - 60px) / 3) * 2) + 30px);
    max-width: calc((((100% - 60px) / 3) * 2) + 30px);
  }
  .column2Wrap.lp7_3 .columnBox:first-of-type {
    flex-basis: calc((((100% - 60px) / 3) * 2) + 30px);
    max-width: calc((((100% - 60px) / 3) * 2) + 30px);
  }
  .column2Wrap.lp7_3 .columnBox:last-of-type {
    flex-basis: calc((100% - (60px)) / 3);
    max-width: calc((100% - (60px)) / 3);
  }

  .column3Wrap:after {
    content: "";
    display: block;
    width: calc((100% - (30px * (3 - 1))) / 3);
  }
  .column3Wrap .columnBox:nth-of-type(n + 4) {
    margin-top: 20px;
  }

  .column4Wrap:after {
    width: calc((100% - (30px * (4 - 1))) / 4);
    content: "";
    display: block;
  }
  .column4Wrap:before {
    width: calc((100% - (30px * (4 - 1))) / 4);
    content: "";
    display: block;
    order: 1;
  }
  .column4Wrap .columnBox {
    flex-basis: calc((100% - (30px * (4 - 1))) / 4);
    max-width: calc((100% - (30px * (4 - 1))) / 4);
  }
  .column4Wrap .columnBox:nth-of-type(n + 5) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .column3Wrap .columnBox {
    flex-basis: calc((100% - (30px * (2 - 1))) / 2);
    max-width: calc((100% - (30px * (2 - 1))) / 2);
  }
  .column3Wrap .columnBox:nth-of-type(n + 3) {
    margin-top: 20px;
  }

  .column4Wrap .columnBox {
    flex-basis: calc((100% - (30px * (2 - 1))) / 2);
    max-width: calc((100% - (30px * (2 - 1))) / 2);
  }
  .column4Wrap .columnBox:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .column2Wrap .columnBox {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap .columnBox:nth-of-type(n + 3) {
    margin-top: 0;
  }
  .column2Wrap .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column2Wrap.sp2_8 .columnBox:nth-of-type(odd),
  .column2Wrap.sp3_7 .columnBox:nth-of-type(odd),
  .column2Wrap.sp4_6 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp2_8 .columnBox:nth-of-type(even),
  .column2Wrap.sp3_7 .columnBox:nth-of-type(even),
  .column2Wrap.sp4_6 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp8_2 .columnBox:nth-of-type(odd),
  .column2Wrap.sp7_3 .columnBox:nth-of-type(odd),
  .column2Wrap.sp6_4 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp8_2 .columnBox:nth-of-type(even),
  .column2Wrap.sp7_3 .columnBox:nth-of-type(even),
  .column2Wrap.sp6_4 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp140 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp140 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp140 .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column2Wrap.sp250 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp250 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp250 .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }

  .column3Wrap .columnBox {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column3Wrap .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }

  .column4Wrap .columnBox {
    flex-basis: 100%;
  }
  .column4Wrap .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}
/* ---------------------------------------------*/
/* header */
/* ---------------------------------------------*/
#header {
  width: 100%;
  height: 50px;
  box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  z-index: 99;
  background: #ffffff;
}
#header .hd_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
}
#header .hd_inner .hd_logoArea a {
  display: flex;
  text-decoration: none;
}
#header .hd_inner .hd_logoArea a .hd_logo img {
  max-width: 42px;
}
#header .hd_inner .hd_logoArea a .hdtllbox {
  margin-left: 10px;
}
#header .hd_inner .hd_logoArea a .hdtllbox .hdtll {
  font-size: 18px;
  color: #c8102e;
}
#header .hd_inner .hd_logoArea a .hdtllbox .hdtll span {
  font-size: 16px;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  #header {
    height: 50px;
  }
  #header .hd_inner {
    padding: 0;
  }
  #header .hd_inner .hd_logoArea {
    padding-top: 12px;
  }
}
/* ---------------------------------------------------------------- */
/* ヘッダーメニュー */
/* ---------------------------------------------------------------- */
.hamburger-menu {
  width: 56px;
  height: 56px;
  position: fixed;
  border: none;
  background: #c8102e;
  appearance: none;
  padding: 0;
  cursor: pointer;
  display: none;
  border-radius: 0 0 0 16px;
  right: 0;
}
.hamburger-menu.fixed {
  top: 0;
}
.hamburger-menu::after {
  content: "MENU";
  position: absolute;
  bottom: 0;
  color: #ffffff;
  left: 9px;
  height: 20px;
  width: 40px;
  font-size: 9px;
}

.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}

.hamburger-menu__bar:first-child {
  top: 12px;
}

.hamburger-menu__bar:nth-child(2) {
  top: 20px;
}

.hamburger-menu__bar:last-child {
  top: 29px;
}

.hamburger-menu--open {
  background: #ffffff;
  color: #c8102e;
  z-index: 99999;
}
.hamburger-menu--open::after {
  content: "CLOSE";
  position: absolute;
  bottom: 0;
  color: #c8102e;
  left: 9px;
  height: 20px;
  width: 40px;
  font-size: 9px;
}

.hamburger-menu--open .hamburger-menu__bar {
  top: 35%;
  background: #c8102e;
}

.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}

.navigation {
  display: none;
  background: #ffffff;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-bottom: 50px;
}
.navigation.fixed {
  top: 0;
  position: fixed;
}
.navigation .fmbtnbox .fmcol {
  margin: 15px 0 0;
}
.navigation .fmbtnbox .fmcol .fmbtn_tel {
  background: url("../images/tenporenraku_1.webp") no-repeat;
  background-size: 320px;
  background-position: top left;
  text-align: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  border-radius: 27px;
  display: block;
  margin: 0 auto;
}
.navigation .fmbtnbox .fmcol .fmbtn_tel:hover {
  background: url("../images/tenporenraku_2.webp") no-repeat;
  background-size: 320px;
  background-position: top left;
}
.navigation .fmbtnbox .fmcol .fmbtn_line {
  font-size: 16px;
  background: url("../images/reservation.webp") no-repeat;
  background-size: 320px;
  background-position: top left;
  text-align: center;
  max-width: 320px;
  width: 100%;
  height: 60px;
  border-radius: 27px;
  display: block;
  margin: 0 auto;
}
.navigation .fmbtnbox .fmcol .fmbtn_line:hover {
  background: url("../images/reservation_hober.webp") no-repeat;
  background-size: 320px;
  background-position: top left;
}

.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 40px;
  padding-bottom: 30px;
}

.navigation__link {
  color: #c8102e;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 30px;
  transition: 0.5s;
  font-size: 16px;
  text-align: left;
}
.navigation__link.sub_con {
  font-size: 14px;
  padding-left: 60px;
  font-weight: 400;
  position: relative;
}
.navigation__link.sub_con::before {
  content: "ー";
  position: absolute;
  color: #c8102e;
  font-size: 14px;
  font-weight: 500;
  top: 8px;
  left: 40px;
}
.navigation__link.sub_chek {
  position: relative;
}
.navigation__link.sub_chek::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 43%;
  background: url("../images/check.svg") no-repeat;
  background-size: 15px;
  background-position: top right;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hamburger-menu {
    display: block;
    top: 50px;
    left: 50%;
    margin-left: 132px;
  }

  .navigation {
    top: 50px;
    width: 375px;
    left: 50%;
    margin-left: -188px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger-menu {
    display: block;
  }
}
/* ---------------------------------------------*/
/* fixedMenu */
/* ---------------------------------------------*/
.fixedMenu {
  position: fixed;
  top: 90px;
  display: block;
}
.fixedMenu h2 {
  font-size: 18px;
  color: #c8102e;
  margin: 0;
  padding-bottom: 5px;
}
.fixedMenu .fixedMenubox {
  width: 244px;
  height: 272px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  padding: 15px;
  background: #ffffff;
}
.fixedMenu .fixedMenubox ul {
  list-style: none;
}
.fixedMenu .fixedMenubox ul li {
  padding-bottom: 5px;
}
.fixedMenu .fixedMenubox ul li.s_li {
  position: relative;
  padding-left: 30px;
}
.fixedMenu .fixedMenubox ul li.s_li::before {
  position: absolute;
  content: "ー";
  width: 10px;
  height: 10px;
  font-size: 20px;
  color: #c8102e;
  display: block;
  top: -2px;
  left: 8px;
  font-weight: 300;
}
.fixedMenu .fixedMenubox ul li a {
  font-size: 16px;
  color: #222;
  font-weight: 500;
}
.fixedMenu .fixedMenubox ul li a:hover {
  opacity: 0.5;
}
.fixedMenu .fixedMenubox ul li a.s_us {
  font-size: 14px;
  font-weight: 400;
}
.fixedMenu .fixedMenubox ul li a.ck_us {
  padding-right: 30px;
  background: url("../images/check.svg") no-repeat;
  background-size: 15px;
  background-position: top 4px right;
}
.fixedMenu .fmbtnbox .fmcol {
  margin: 15px 0 0;
}
.fixedMenu .fmbtnbox .fmcol .fmbtn_tel {
  font-size: 18px;
  background: #c8102e url("../images/fx_tel.svg") no-repeat;
  background-size: 30px;
  background-position: top 17px left 20px;
  text-align: center;
  max-width: 244px;
  width: 100%;
  height: 53px;
  padding: 12px 40px 12px 55px;
  border-radius: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  border: #c8102e solid 1px;
  color: #fff;
}
.fixedMenu .fmbtnbox .fmcol .fmbtn_tel:hover {
  background: #ffffff url("../images/tenpodenwa_2.svg") no-repeat;
  background-size: 30px;
  background-position: top 17px left 20px;
  color: #c8102e;
}
.fixedMenu .fmbtnbox .fmcol .fmbtn_line {
  font-size: 16px;
  background: #c8102e url("../images/reservation_icon_hober.svg") no-repeat;
  background-size: 22px;
  background-position: top 12px left 22px;
  text-align: center;
  max-width: 244px;
  width: 100%;
  height: 53px;
  padding: 13px 18px 12px 45px;
  border-radius: 27px;
  display: block;
  color: #fff;
  font-weight: 500;
  border: #c8102e solid 1px;
}
.fixedMenu .fmbtnbox .fmcol .fmbtn_line:hover {
  background: #fff url("../images/reservation_icon.svg") no-repeat;
  background-size: 22px;
  background-position: top 12px left 22px;
  color: #c8102e;
  border: #c8102e solid 1px;
}

.fixedqr {
  position: fixed;
  bottom: 35px;
  left: 48.5%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  width: 164px;
  height: 166px;
  margin-left: 250px;
  background: #ffffff;
  padding: 15px;
}
.fixedqr p {
  font-size: 14px;
  text-align: center;
  margin: 0;
}
.fixedqr img {
  margin: 0 auto;
  text-align: center;
  display: block;
}
.fixedtop {
  bottom: 220px;
}
.fixedtop p {
  margin-bottom: 10px;
}
.fixedtop .pagetop {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
  padding: 5px 10px;
}
.fixedMenu .fixed_sns_box {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.fixedMenu .fixed_sns_box .fixed_sns_col {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  /*margin: 0 25px 0 0;*/
}

.fixedMenu .fixed_sns_box .fixed_sns_col a {
  display: block;
  width: 100%;
  height: 100%;
}

.fixedMenu .fixed_sns_box .fixed_sns_col a img {
  border-radius: 50%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fixedMenu,
  .fixedqr {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .fixedMenu,
  .fixedqr {
    display: none;
  }
}
/*
#campaign_side {
  border: #fff solid 6px;
  width: 244px;
  height: 244px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background: url(../images/campaign/damd_exhibition.webp);
  background-size: cover;
}*/
.fixed-camp {
  bottom: 405px;
  padding: 3px !important;
  border-radius: 16px;
}
.fixed-camp img {
  border-radius: 10px;
}
.side_hover a:hover {
  opacity: 0.8;
}

#campaign .campaign_shadow {
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
}

.campaign_banner {
  position: fixed;
  z-index: 99998;
  bottom: 15px;
  left: 10px;
}
.campaign_banner.sp-on {
  bottom: 0px;
  right: 0px;
}
.banner-close {
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 0;
  position: absolute;
  top: -11px;
  right: 0px;
  z-index: 99999;
  border: none;
  color: #000 !important;
  background-color: #fff;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 1px 3px 7px 0px rgba(0, 0, 0, 0.4);
}
.campaign_banner.sp-on .banner-close {
  font-weight: bold;
  font-size: 15px;
  padding-bottom: 3px;
  top: 5px;
  right: 4px;
  box-shadow: none;
}
.campaign_banner a {
  position: relative;
  display: block;
  height: 140px;
  text-align: center;
}
.campaign_banner.sp-on a {
  height: 110px;
  text-align: left;
}
.campaign_back {
  position: absolute;
  top: -6px;
  left: 2px;
  width: 99%;
  height: 110%;
  background-color: #000;
  z-index: 1;
  opacity: 45%;
  border-radius: 5px;
}
.campaign_banner.sp-on .campaign_back {
  top: 0;
  left: -20%;
  height: 100%;
  border-radius: 0%;
  width: 200%;
}
.campaign_banner a img {
  position: relative;
  z-index: 2;
  width: 94%;
  height: 100%;
  object-fit: contain;
}
.campaign_banner.sp-on a img {
  width: 96.5%;
  height: 100%;
}

/* ---------------------------------------------*/
/* mainPage */
/* ---------------------------------------------*/
#mainPage {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 375px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  margin-top: 50px;
  background: #dceefa;
  /*--------------------*/
  /*--------------------*/
  /*--------------------*/
  /*--------------------*/
  /*--------------------*/
  /*--------------------*/
  /*--------------------*/
  /*pickup*/
  /*--------------------------*/
  /*./con7_inner*/
  /*con7_blue*/
  /*--------------------------*/
  /*con_8*/
  /*--------------------------*/
  /*con_8*/
}
#mainPage .mv_inner {
  padding-top: 15px;
  background: #ffffff;
}
#mainPage .mv_inner .m_tllh2 {
  color: #c8102e;
  font-size: 29px;
  margin: 0;
  position: relative;
  top: 20px;
  left: 0;
  padding-left: 20px;
  font-weight: 900;
}
#mainPage .mv_inner .mv_img {
  margin-left: auto;
  margin-right: 0;
  width: 100%;
  max-width: 760px;
  padding-right: 10px;
}
#mainPage .mv_innertxtbox {
  position: relative;
  background: #ffffff;
  border-radius: 0 16px 16px 0;
  max-width: 235px;
  padding: 15px 0 15px 15px;
  top: -50px;
}
#mainPage .mv_innertxtbox h2 {
  font-size: 14px;
  color: #c8102e;
  margin-bottom: 0;
  font-weight: 600;
}
#mainPage .mv_innertxtbox h2 span {
  font-size: 18px;
  font-weight: 700;
}
#mainPage .con_2 {
  margin-top: -25px;
}
#mainPage .con_2 h4 {
  font-size: 14px;
  color: #222222;
  text-align: center;
  margin-bottom: 10px;
}
#mainPage .con_2 img {
  width: 100%;
}
#mainPage .con_2 img:hover {
  opacity: 1;
}
#mainPage .con_3 {
  padding-top: 100px;
  text-align: center;
}
#mainPage .con_3 .con3tllh5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 500;
}
#mainPage .con_3 .con3tllh5::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  width: 30px;
  height: 35px;
  background: url("../images/taitle.svg") no-repeat;
  background-size: 26px;
  background-position: top 20px center;
  margin-left: -15px;
}
#mainPage .con_3 .con3tllh3 {
  font-size: 21px;
  color: #c8102e;
  font-weight: 600;
}
#mainPage .con_3 .con3_redbox {
  background: #c8102e;
  padding: 15px 35px;
  border-radius: 16px 16px 0 0;
}
#mainPage .con_3 .con3_redbox .rb_tllh3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 500;
}
#mainPage .con_3 .con3_redbox .rd_txt {
  font-size: 14px;
  position: relative;
  margin: 5px 0 0;
  color: #ffffff;
  padding-left: 60px;
}
#mainPage .con_3 .con3_redbox .rd_txt::before {
  content: "";
  width: 50px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
  background: url("../images/ck.png") no-repeat;
  background-size: 45px;
  background-position: left center;
}
@media print, screen and (max-width: 768px) {
  #mainPage .con_3 .con3_redbox .rd_txt::before {
    background: url("../images/tap_sp.png") no-repeat;
    background-size: 45px;
    background-position: left center;
  }
}
#mainPage .silder_blue {
  background: #96bbd6;
}
#mainPage .silder_blue .sb_inner {
  padding: 15px 0;
}
#mainPage .silder_blue .sb_inner .silder_blue_banner {
  padding: 0 15px;
  margin-bottom: 40px;
}
#mainPage .silder_blue .sb_inner .silder_blue_banner .car4_sec_top {
  display: flex;
  padding: 8px 8px 0;
  background: #fff;
}
#mainPage .silder_blue .sb_inner .silder_blue_banner .car4_sec_btm {
  display: flex;
  padding: 0 8px 8px;
  background: #fff;
  margin-bottom: 20px;
}
#mainPage
  .silder_blue
  .sb_inner
  .silder_blue_banner
  .car4_sec_top
  .car4_top-left {
  width: 50%;
  border-right: solid 0.5px #b0b0b0;
  border-bottom: solid 0.5px #b0b0b0;
}
#mainPage
  .silder_blue
  .sb_inner
  .silder_blue_banner
  .car4_sec_top
  .car4_top-right {
  width: 50%;
  border-left: solid 0.5px #b0b0b0;
  border-bottom: solid 0.5px #b0b0b0;
}
#mainPage
  .silder_blue
  .sb_inner
  .silder_blue_banner
  .car4_sec_btm
  .car4_btm-left {
  width: 50%;
  border-right: solid 0.5px #b0b0b0;
  border-top: solid 0.5px #b0b0b0;
}
#mainPage
  .silder_blue
  .sb_inner
  .silder_blue_banner
  .car4_sec_btm
  .car4_btm-right {
  width: 50%;
  border-left: solid 0.5px #b0b0b0;
  border-top: solid 0.5px #b0b0b0;
}

#mainPage .silder_blue .sb_inner .sb_tllh3 {
  font-size: 20px;
  max-width: 315px;
  color: #222;
  margin-left: 30px;
  font-weight: 500;
}
#mainPage .silder_blue .sb_inner .fmcol .fmbtn_line {
  background: url("../images/line_1.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
  max-width: 345px;
  width: 100%;
  height: 60px;
  border-radius: 27px;
  display: block;
  margin: 0 auto;
}
#mainPage .silder_blue .sb_inner .fmcol .fmbtn_line:hover {
  background: url("../images/line_2.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
}
#mainPage .silder_blue .sb_inner .fmcol .fmbtn_line.newcarbtn {
  background: url("../images/newcar_rink1.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
}
#mainPage .silder_blue .sb_inner .fmcol .fmbtn_line.newcarbtn:hover {
  background: url("../images/newcar_rink2.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
}
#mainPage .con_4 {
  padding-top: 85px;
  text-align: center;
  padding-bottom: 10px;
}
#mainPage .con_4 .con4tllh5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 500;
}
#mainPage .con_4 .con4tllh5::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  width: 30px;
  height: 35px;
  background: url("../images/taitle.svg") no-repeat;
  background-size: 26px;
  background-position: top 20px center;
  margin-left: -15px;
}
#mainPage .con_4 .con4tllh3 {
  font-size: 22px;
  color: #c8102e;
  font-weight: 600;
}
#mainPage .cs_point {
  background: #f0f0f0 url("../images/w_backgrand.png") no-repeat;
  background-position: top center;
  background-size: 375px;
}
#mainPage .pickup {
  background: #ffffff url("../images/g_backgrand.png") no-repeat;
  background-position: top center;
  background-size: 375px;
}
#mainPage .pickup #car-life_guide {
  padding-top: 50px;
}
#mainPage .pickup #car-life_guide h5,
#mainPage .pickup #campaign h5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 500;
}
#mainPage .pickup #car-life_guide h5::before,
#mainPage .pickup #campaign h5::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  width: 30px;
  height: 35px;
  background: url("../images/taitle.svg") no-repeat;
  background-size: 26px;
  background-position: top 20px center;
  margin-left: -15px;
}
#mainPage .pickup #car-life_guide .clg_box {
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16);
}
#mainPage .pickup #car-life_guide .clg_box .clg_title {
  background: #c8102e;
  padding: 15px 25px;
  border-radius: 16px 16px 0 0;
}
#mainPage .pickup #car-life_guide .clg_box .clg_title h3 {
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 500;
}
#mainPage .pickup #car-life_guide .clg_box .cgl_main {
  padding: 15px;
}
#mainPage .pickup #car-life_guide .clg_box .cgl_main .cgl-list {
  list-style: none;
}
#mainPage
  .pickup
  #car-life_guide
  .clg_box
  .cgl_main
  .cgl-list
  > li:nth-child(n + 3) {
  display: none;
}
#mainPage
  .pickup
  #car-life_guide
  .clg_box
  .cgl_main
  .cgl-list
  li:not(:first-child) {
  margin-top: 10px;
  border-top: dashed #b1b1b1 2px;
  padding-top: 10px;
}
#mainPage .pickup #car-life_guide .clg_box .cgl_main .cgl-list .cgl-day {
  background: #f0990c;
  color: #fff;
  padding: 1.8px 9px;
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 3px;
}
#mainPage .pickup #car-life_guide .clg_box .cgl_main .cgl-list li.cgl_archive {
  border: none;
  padding: 30px 0 25px;
  text-align: center;
}
#mainPage .pickup #car-life_guide .clg_box .cgl_main .cgl-list li a {
  padding-right: 25px;
  background: url(../images/news_icon.svg) no-repeat;
  background-size: 18px;
  background-position: top 4px right;
}
@media screen and (max-width: 767px) {
  #mainPage .pickup #car-life_guide .clg_box .cgl_main .cgl-list li a {
    background-position: top 2px right;
  }
}
#mainPage
  .pickup
  #car-life_guide
  .clg_box
  .cgl_main
  .cgl-list
  li.cgl_archive
  a {
  padding: 18px 25px;
  border-radius: 30px;
  background: #c8102e;
  color: #fff;
  text-align: center;
  font-weight: 500;
  border: #c8102e solid 1px;
  padding-top: 0.9em;
}
#mainPage .pickup #car-life_guide .cgl-btn {
  text-align: center;
  margin-top: 10px;
}
#mainPage .pickup #car-life_guide .cgl-btn .cgl-btn-txt {
  cursor: pointer;
  font-size: 15px;
  color: #c8102e;
  font-weight: bold;
}

#mainPage .pickup .con_6 {
  padding-top: 60px;
}
#mainPage .pickup .con_6 .con6tllh5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 500;
}
#mainPage .pickup .con_6 .con6tllh5::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  width: 30px;
  height: 35px;
  background: url("../images/taitle.svg") no-repeat;
  background-size: 26px;
  background-position: top 20px center;
  margin-left: -15px;
}
#mainPage .pickup .con_6 .con6_redbox {
  background: #c8102e;
  padding: 5px 15px 10px;
  border-radius: 16px 16px 0 0;
}
#mainPage .pickup .con_6 .con6_redbox .rb_tllh3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
  border-bottom: #ffffff solid 1px;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
}
#mainPage .pickup .con_6 .con6_redbox .rd_txt {
  font-size: 14px;
  position: relative;
  margin: 5px 0 0;
  color: #ffffff;
  padding-left: 30px;
  text-align: center;
}
#mainPage .pickup .con_6 .con6_redbox .rd_txt::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 65px;
  background: url("../images/kousin.svg") no-repeat;
  background-size: 13px;
  background-position: left center;
}
#mainPage .pickup .con6_bule {
  background: #96bbd6;
  padding: 35px 0;
  /*con6con*/
}
#mainPage .pickup .con6_bule .con6con {
  border-radius: 16px;
  margin-bottom: 30px;
  /*con6imgbox*/
}
#mainPage .pickup .con6_bule .con6con .con6imgbox {
  border-radius: 16px 16px 0 0;
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
  transition: all ease 0.3s;
  margin-bottom: 0px;
}
#mainPage .pickup .con6_bule .con6con .con6imgbox.sold::before {
  content: "";
  position: absolute;
  background: url("../images/kanbai_.png") no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
#mainPage .pickup .con6_bule .con6con .con6imgbox .cb_img {
  width: 100%;
  border-radius: 16px 16px 0 0;
  position: absolute;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;" !important;
  transition: all ease 0.3s;
  cursor: pointer;
}
#mainPage .pickup .con6_bule .con6con .con6imgbox .cb_img:hover {
  opacity: 0.8;
}
#mainPage .pickup .con6_bule .con6con .con6imgbox span {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 20px;
  background: #f0990c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  width: 124px;
  height: 27px;
  color: #fff;
  z-index: 2;
  cursor: pointer;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox {
  background: #ffffff;
  padding: 15px;
  border-radius: 0 0 16px 16px;
  height: 210px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox h4 {
  font-size: 20px;
  font-weight: bold;
  color: #111111;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .en_txtwrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-top: #c8102e solid 2px;
  padding: 10px 0;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .en_txtwrap .txtarea {
  max-width: 50px;
  flex-basis: 50px;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .en_txtwrap .txtarea span {
  font-size: 12px;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .en_txtwrap .entxtarea {
  max-width: calc(100% - 50px);
  flex-basis: calc(100% - 50px);
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .en_txtwrap
  .entxtarea
  .entxt {
  font-size: 40px;
  font-weight: bold;
  color: #c8102e;
  margin: 0;
  background: url("../images/kingaku.svg") no-repeat;
  background-size: 35px;
  background-position: top 18px right;
  text-align: end;
  padding-right: 50px;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .nensikiWrap {
  border-top: 1px dotted #9b9b9b;
  /*nensikibox*/
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .nensikiWrap .nensikibox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px 0;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .nensikiWrap
  .nensikibox
  .nensiki {
  max-width: 55%;
  flex-basis: 55%;
  display: flex;
  align-items: center;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .nensikiWrap
  .nensikibox
  .nensiki.nensiki2 {
  max-width: 45%;
  flex-basis: 45%;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .nensikiWrap
  .nensikibox
  .nensiki.nensiki3 {
  max-width: 100%;
  flex-basis: 100%;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .nensikiWrap
  .nensikibox
  .nensiki.nensiki4 {
  max-width: 0%;
  flex-basis: 0%;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .nensikiWrap
  .nensikibox
  .nensiki
  .nensikicol {
  padding-right: 10px;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .nensikiWrap
  .nensikibox
  .nensiki
  .nensikicol
  span {
  font-size: 12px;
  border: #c8102e solid 1px;
  border-radius: 5px;
  color: #c8102e;
  width: 58px;
  height: 21px;
  display: block;
  text-align: center;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .nensikiWrap
  .nensikibox
  .nensiki
  .nensikicol2
  p {
  font-size: 16px;
  color: #111111;
  margin: 0;
  font-weight: 500;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .nentxt {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .con6txtbtn {
  background: #f0990c;
  width: 90%;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 5px;
  padding: 20px 0;
  margin: 0 auto;
}
#mainPage .pickup .con6_bule .con6con .con6txtbox .con6btnwrap {
  display: flex;
  justify-content: center;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .con6btnwrap
  .con6btn
  .con6tel {
  width: 150px;
  height: 52px;
  display: block;
  background: url("../images/tyuukosya_denwa2.webp") no-repeat;
  background-size: 150px;
  background-position: top left;
  border-radius: 30px;
  margin-right: 20px;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .con6btnwrap
  .con6btn
  .con6tel:hover {
  background: url("../images/tyuukosya_denwa1.webp") no-repeat;
  background-size: 150px;
  background-position: top left;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .con6btnwrap
  .con6btn
  .con6sh {
  width: 155px;
  height: 52px;
  display: block;
  border-radius: 30px;
  background: #c8102e;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  border: #c8102e solid 1px;
  padding-top: 2px;
}
#mainPage
  .pickup
  .con6_bule
  .con6con
  .con6txtbox
  .con6btnwrap
  .con6btn
  .con6sh:hover {
  background: #fff;
  color: #c8102e;
}
#mainPage .pickup .con6_bule .con6Wrap .mcbtn {
  width: 100%;
  max-width: 345px;
  height: 58px;
  border-radius: 27px;
  margin: 0 auto;
  display: block;
  background: url("../images/tyukosya_1.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
}
#mainPage .pickup .con6_bule .con6Wrap .mcbtn:hover {
  background: url("../images/tyukosya_2.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
}
#mainPage .con_7 {
  padding-top: 100px;
  text-align: center;
  padding-bottom: 35px;
}
#mainPage .con_7 .con7tllh5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 500;
}
#mainPage .con_7 .con7tllh5::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  width: 30px;
  height: 35px;
  background: url("../images/taitle.svg") no-repeat;
  background-size: 26px;
  background-position: top 20px center;
  margin-left: -15px;
}
#mainPage .con_7 .con7tllh3 {
  font-size: 22px;
  color: #c8102e;
  font-weight: 600;
}
#mainPage .con_7 p {
  margin-bottom: 0 !important;
}
#mainPage .con7_inner {
  background: #f0f0f0 url("../images/w_backgrand.png") no-repeat;
  background-position: top center;
  background-size: 375px;
  margin-top: -8px;
}
#mainPage .con7_inner .con7img {
  width: 100%;
  padding: 50px 0;
}
#mainPage .con7_inner .con7_redbox {
  background: #c8102e;
  padding: 15px 35px 10px;
  border-radius: 16px 16px 0 0;
}
#mainPage .con7_inner .con7_redbox .rb_tllh3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
  padding: 0;
  font-weight: 500;
}
#mainPage .con7_blue {
  background: #96bbd6;
  padding: 40px 0 60px;
  /*w_con7*/
}
#mainPage .con7_blue .w_con7 {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  margin-bottom: 40px;
}
#mainPage .con7_blue .w_con7 h3 {
  font-size: 22px;
  color: #c8102e;
  font-weight: 600;
}
#mainPage .con7_blue .w_con7 .con7Area {
  padding: 25px 0;
  border-bottom: 1px dotted #9b9b9b;
}
#mainPage .con7_blue .w_con7 .con7Area:nth-child(4) {
  border-bottom: none;
}
#mainPage .con7_blue .w_con7 .con7Area h4 {
  font-size: 16px;
  font-weight: bold;
  color: #222222;
  margin-bottom: 0;
}
#mainPage .con7_blue .w_con7 .con7Area .con7_aimg {
  width: 100%;
}
#mainPage .con7_blue .w_con7 .con7Area .con7atxt {
  font-size: 32px;
  font-weight: bold;
  color: #111111;
  margin: 0;
  margin-top: -20px;
}
#mainPage .con7_blue .w_con7 .con7Area .con7atxt span {
  font-size: 12px;
}
#mainPage .con7_blue .w_con7 .con7Area .con7atxt2 {
  font-size: 12px;
  margin: 0;
}
#mainPage .con7_blue .w_con7 .wcon7h3 {
  margin-bottom: 23px;
  font-weight: 600;
}
#mainPage .con7_blue .w_con7 .wcon7txt {
  font-size: 14px;
}
#mainPage .con7_blue .w_con7 table {
  width: 100%;
}
#mainPage .con7_blue .w_con7 table tr {
  height: 35px;
  display: flex;
  margin-bottom: 0;
}
#mainPage .con7_blue .w_con7 table tr th {
  border-right: #9b9b9b solid 1px;
  border-bottom: #9b9b9b solid 1px;
  max-width: 215px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainPage .con7_blue .w_con7 table tr td {
  border-bottom: #9b9b9b solid 1px;
  max-width: 90px;
  padding: 0 5px;
  text-align: center;
}
#mainPage .con7_blue .w_con7 table tr td.redtd {
  color: #c8102e;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mainPage .con_8 {
  padding: 100px 0 80px;
  text-align: center;
  background: #c8102e;
}
#mainPage .con_8 .con8tllh5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 500;
}
#mainPage .con_8 .con8tllh5::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  width: 30px;
  height: 35px;
  background: url("../images/g_title.svg") no-repeat;
  background-size: 26px;
  background-position: top 20px center;
  margin-left: -15px;
}
#mainPage .con_8 .con8tllh3 {
  font-size: 22px;
  color: #c8102e;
  font-weight: 600;
}
#mainPage .con_8 .con8box {
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16);
  padding: 30px 0 10px;
  margin-bottom: 20px;
  background: #ffffff url("../images/01.jpg") no-repeat;
  background-size: 43px;
  background-position: top 15px left 25px;
}
#mainPage .con_8 .con8box.con802 {
  background: #ffffff url("../images/02.jpg") no-repeat;
  background-size: 43px;
  background-position: top 15px left 25px;
}
#mainPage .con_8 .con8box.con803 {
  background: #ffffff url("../images/03.jpg") no-repeat;
  background-size: 43px;
  background-position: top 15px left 25px;
}
#mainPage .con_8 .con8box2 {
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16);
  padding: 30px 15px 10px;
  margin-bottom: 20px;
  background: #ffffff;
}
#mainPage .con_8 .con8box2 h3 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  color: #c8102e;
  border-bottom: 1px dotted #c8102e;
}
#mainPage .con_8 .con8box2 p {
  font-weight: bold;
  text-align: left;
}
#mainPage .con_8 .con8box2 img {
  width: 100%;
}
#mainPage .con_8 .fmcol .fmbtn_line {
  background: url("../images/line_1.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
  max-width: 345px;
  width: 100%;
  height: 58px;
  border-radius: 27px;
  display: block;
  margin: 0 auto;
}
#mainPage .con_8 .fmcol .fmbtn_line:hover {
  background: url("../images/line_2.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
}
#mainPage .con_9 {
  padding: 100px 0 80px;
  text-align: center;
  background: #f0f0f0;
}
#mainPage .con_9 .bggray {
  background: #f0f0f0;
}
#mainPage .con_9 .con9tllh5 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 500;
}
#mainPage .con_9 .con9tllh5::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  width: 30px;
  height: 35px;
  background: url("../images/taitle.svg") no-repeat;
  background-size: 26px;
  background-position: top 20px center;
  margin-left: -15px;
}
#mainPage .con_9 .con9tllh3 {
  font-size: 22px;
  color: #c8102e;
  font-weight: 600;
}
#mainPage .con_9 .con9box {
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16);
  margin: 0 auto 40px;
  background: #ffffff;
}
#mainPage .con_9 .con9box.kobayashi {
  margin-top: 10px;
}
#mainPage .con_9 .con9box .con9imgbox {
  width: 100%;
  padding-bottom: 0%;
  position: relative;
  overflow: hidden;
  transition: all ease 0.3s;
  margin-bottom: 10px;
  border-radius: 16px 16px 0 0;
}
#mainPage .con_9 .con9box .con9imgbox a {
  width: 100%;
  height: 100%;
  display: block;
}
#mainPage .con_9 .con9box .con9imgbox a .con9img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
#mainPage .con_9 .con9box .con9imgbox .con9map {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 20px;
  background: #f0990c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  width: 124px;
  height: 27px;
  color: #fff;
  z-index: 3;
}
#mainPage .con_9 .con9box .con9txtbox {
  padding-left: 15px;
  padding-bottom: 20px;
}
#mainPage .con_9 .con9box .con9txtbox h3 {
  font-size: 20px;
  font-weight: bold;
  color: #c8102e;
  text-align: left;
  margin-bottom: 10px;
}
#mainPage .con_9 .con9box .con9txtbox .con9left2 {
  font-weight: bold;
  text-align: left;
}
#mainPage .con_9 .con9box .con9txtbox .con9left {
  text-align: left;
  margin-top: 10px;
}
#mainPage .con_9 .con9box .con9txtbox .con9ad-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#mainPage .con_9 .con9box .con9txtbox .con9ad-wrap .con9ad-list {
  max-width: 15px;
  flex-basis: 15px;
  padding-top: 2px;
}
#mainPage .con_9 .con9box .con9txtbox .con9ad-wrap .con9ad-list a {
  width: 100%;
  height: 100%;
  display: block;
}
#mainPage .con_9 .con9box .con9txtbox .con9ad-wrap .con9ad {
  max-width: calc(100% - 25px);
  flex-basis: calc(100% - 25px);
  font-size: 16px;
  text-align: left;
}
#mainPage .con_9 .con9box .con9txtbox .con9tel {
  background: url("../images/r_tel.svg") no-repeat;
  background-size: 16px;
  background-position: top 10px left;
  margin: 0;
  font-size: 16px;
  text-align: left;
  padding: 5px 0 5px 30px;
  color: #c8102e;
  display: block;
  text-decoration: underline;
}
#mainPage .con_9 .con9box .con9txtbox .con9time {
  background: url("../images/time.svg") no-repeat;
  background-size: 16px;
  background-position: top 10px left;
  margin: 0;
  font-size: 16px;
  text-align: left;
  padding: 5px 0 5px 30px;
}
#mainPage .con_9 .con9box .con9txtbox .con9name {
  position: relative;
}
#mainPage .con_9 .con9box .con9txtbox .con9name h4 {
  background: #c8102e;
  color: #ffffff;
  font-size: 20px;
  padding: 20px 0 5px 30px;
  margin-top: 30px;
  position: relative;
  font-weight: 400;
}
#mainPage .con_9 .con9box .con9txtbox .con9name h4.yosioka {
  padding-left: 10px;
}
#mainPage .con_9 .con9box .con9txtbox .con9name h4.yosioka::before {
  /*margin-left: -5px;*/
}
#mainPage .con_9 .con9box .con9txtbox .con9name h4::before {
  content: "店長";
  position: absolute;
  top: 3px;
  left: 46.5%;
  color: #ffffff;
  font-size: 12px;
  margin-left: -15px;
  font-weight: 400;
}
#mainPage .con_9 .con9box .con9txtbox .con9name .con9img2 {
  position: absolute;
  max-width: 127px;
  left: -2px;
  top: -18px;
  z-index: 3;
}
#mainPage .con_9 .con9box .con9txtbox .con9txt {
  text-align: left;
  padding: 10px 0;
  font-size: 14px;
}
#mainPage .con_9 .con9box .con9txtbox .con9link {
  font-size: 16px;
  color: #c8102e;
  text-align: right;
  padding-right: 45px;
  background: url("../images/maru_arrow.svg") no-repeat;
  background-size: 22px;
  background-position: bottom 2px right 15px;
  margin-left: auto;
  margin-right: 0;
  display: block;
  font-weight: 500;
}
#mainPage .con_9 .con9box .con9txtbox .con9link:hover {
  opacity: 0.7;
}
#mainPage .con_9 .con9box2 {
  border: #c8102e solid 3px;
  border-radius: 16px;
  padding: 15px;
  background: #ffffff;
}
#mainPage .con_9 .con9box2 h3 {
  font-size: 20px;
  color: #c8102e;
  border-bottom: 1px dotted #c8102e;
  padding-bottom: 10px;
}
#mainPage .con_9 .con9box2 p {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
#mainPage .con_9 .con9box2 .con9box2txxt {
  font-size: 14px;
  font-weight: 500;
}
#mainPage .con_9 .fmcol {
  margin: 40px 0;
}
#mainPage .con_9 .fmcol .fmbtn_line {
  background: url("../images/shop_rink1.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
  max-width: 345px;
  width: 100%;
  height: 58px;
  border-radius: 27px;
  display: block;
  margin: 0 auto;
}
#mainPage .con_9 .fmcol .fmbtn_line:hover {
  background: url("../images/shop_rink2.webp") no-repeat;
  background-size: 345px;
  background-position: top left;
}
#mainPage .pagetopArea {
  width: 100%;
  background: #ffffff;
  height: 50px;
  border: #c8102e solid 2px;
}
#mainPage .pagetopArea :hover {
  background: #c8102e;
}
#mainPage .pagetopArea .pagetop {
  color: #c8102e;
  font-size: 12px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  padding-top: 25px;
  position: relative;
}
#mainPage .pagetopArea .pagetop:hover {
  color: #fff;
}
#mainPage .pagetopArea .pagetop::before {
  content: "";
  width: 25px;
  height: 20px;
  background: url("../images/futer_toprink.webp") no-repeat;
  background-size: 20px;
  background-position: top 10px left;
  position: absolute;
  top: 3px;
  left: 50%;
  margin-left: -10px;
}
#mainPage .pagetopArea .pagetop:hover::before {
  background: url("../images/futer_toprink_hover.webp") no-repeat;
  background-size: 20px;
  background-position: top 10px left;
}
#mainPage #footer {
  padding: 30px 0 80px;
  text-align: center;
  background: #ffffff;
}
#mainPage #footer .f_img {
  margin: 0 auto;
  display: block;
}
#mainPage #footer h3 {
  font-size: 16px;
  font-weight: bold;
  padding-top: 15px;
}
#mainPage #footer p {
  font-size: 14px;
  font-weight: 400;
}
#mainPage #maintenancebox {
  background: #fff;
  margin-bottom: 40px;
  border-radius: 16px;
  position: relative;
  background: #fff;
  padding-bottom: 40px;
  cursor: pointer;
  transition: ease-in 0.3s;
}

#mainPage #maintenancebox .maintenance_trigger {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #c8102e;
  border-bottom: 0;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  transition: ease-in 0.3s;
}
#mainPage #maintenancebox img {
  border-radius: 16px;
}
#maintenancebox .open {
  display: block;
}
.maintenance_inner {
  display: none;
}
/*#mainPage*/
@media screen and (max-width: 767px) {
  #mainPage {
    max-width: 100% !important;
  }
  #mainPage .top_tll {
    display: none;
  }
  #mainPage .mv_inner .mv_img {
    max-width: 100%;
    padding-right: 10px;
  }
  #mainPage .con_3 .con3_redbox .rd_txt::before {
    left: 50%;
    margin-left: -130px;
  }
  #mainPage .pickup .con_6 .con6_redbox .rd_txt::before {
    left: 50%;
    margin-left: -75px;
  }
}
/*--------------------*/
.car-fvSwiper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 375px;
  margin-bottom: 40px !important;
}

.car-fvSwiper .swiper-wrapper {
  padding-bottom: 65px;
}

.car-fvSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  border-radius: 16px;
  background: #ffffff;
  height: 210px;
}

.car-fvSwiper .swiper-slide .slide_link {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
}
.car-fvSwiper .swiper-slide .slide_link .slideimgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 155px;
  border-radius: 16px 16px 0 0;
}
.car-fvSwiper .swiper-slide .slide_link .slideimgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.car-fvSwiper .swiper-slide .slide_link .car-name {
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.car-fvSwiper .swiper-slide .slide_link .slidetxtbox {
  background: url("../images/maru_arrow.svg") no-repeat;
  background-size: 20px;
  background-position: top 2px right 8px;
}

.car-fvSwiper .swiper-slide .slide_link .slidetxtbox p {
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.car-fvSwiper .swiper-slide .slide_link .slidetxtbox p span {
  font-size: 14px;
  padding-left: 10px;
}

.car-fvSwiper .car-button-prev,
.car-fvSwiper .car-button-next {
  fill: #fff;
  stroke: none;
  stroke-width: 0;
  z-index: 10000;
  margin-top: -18px;
  background: none;
}
.car-fvSwiper .car-button-prev::after,
.car-fvSwiper .car-button-next::after {
  display: none;
}
.car-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 13px;
  height: 13px;
}
.car-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #c8102e;
}
.car-fvSwiper .car-button-next,
.car-fvSwiper .car-button-prev {
  background: #c8102e;
  display: flex;
  justify-content: center;
  align-items: center;
  top: auto;
  margin-top: 0;
  bottom: 10px;
  color: #fff;
  font-size: 10px;
  height: 30px;
  width: 30px;
  position: absolute;
  border: #c8102e solid 1px;
  border-radius: 50px;
}
.car-fvSwiper .car-button-prev {
  left: 35px;
}
.car-fvSwiper .car-button-prev:hover {
  background: #e6e6e6;
  color: #c8102e;
}
.car-fvSwiper .car-button-next {
  right: 35px;
}
.car-fvSwiper .car-button-next:hover {
  background: #e6e6e6;
  color: #c8102e;
}
/*------------------------------------------*/
#fixedBtnSpArea {
  width: 100%;
  opacity: 0;
  z-index: 10;
  position: fixed;
  bottom: -78px;
  transition: 0.6s;
  background-color: #ffffff;
}
#fixedBtnSpArea.fixedsp {
  opacity: 1;
  transition: 0.6s;
  bottom: -1px;
}
#fixedBtnSpArea #fixedBtnSp {
  display: none !important;
}
#fixedBtnSpArea #fixedBtnSp ul {
  margin: 0 0 0 0;
  height: 70px;
  width: 100%;
  overflow: hidden;
  display: flex;
}
#fixedBtnSpArea #fixedBtnSp ul li {
  list-style: none;
  flex-basis: 25%;
  width: 25%;
  padding-bottom: 10px;
  background: url("../images/flowthing_old.webp") no-repeat;
  background-position: top 15px center;
  background-size: 27px;
}
#fixedBtnSpArea #fixedBtnSp ul li.f_newcar {
  background: url("../images/flowthing_new.webp") no-repeat;
  background-position: top 15px center;
  background-size: 27px;
}
#fixedBtnSpArea #fixedBtnSp ul li.f_store {
  background: url("../images/flowthing_stor.webp") no-repeat;
  background-position: top 15px center;
  background-size: 27px;
}
#fixedBtnSpArea #fixedBtnSp ul li.f_contact {
  background: #c8102e;
  padding-bottom: 14px;
}
#fixedBtnSpArea #fixedBtnSp ul li.f_contact a {
  color: #fff;
}
#fixedBtnSpArea #fixedBtnSp ul li a {
  display: flex;
  width: 100%;
  height: 100%;
  color: #c8102e;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#fixedBtnSpArea #fixedBtnSp ul li a.fixedspLine {
  background: #06c755 url("../images/fx_line.svg") no-repeat;
  background-position: top 15px left 50%;
  background-size: 20px;
  padding-top: 20px;
}
#fixedBtnSpArea #fixedBtnSp ul li + li {
  border-left: 1px solid #c8102e;
}
@media screen and (max-width: 767px) {
  #fixedBtnSpArea #fixedBtnSp {
    display: block !important;
  }
}

/*------------------------------------------*/
.MV_hondatop {
  margin-right: 5%;
  margin-top: -1px;
}
.MV_hondatop .main_img {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.MV_hondatop .main_img .hondatop_box {
  width: 100%;
  height: 160px;
  border-radius: 0 0 16px 0;
}
.MV_hondatop .main_img .hondatop_box .slider-wrap {
  border-radius: 0 0 16px 0;
}
.MV_hondatop .main_img .hondatop_box .slider-wrap .slide-item {
  border-radius: 0 0 16px 0;
}
.MV_hondatop .main_img .hondatop_box .slider-wrap .slide-item img {
  border-radius: 0 0 16px 0;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.MV_hondatop .main_img .slick-animation {
  animation: fadezoom 10s 0s forwards;
}
.MV_hondatop .main_img .main_img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  z-index: 3;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.MV_hondatop .main_img .main_img .main_inner h2 {
  font-size: 63px;
  color: #ffffff;
  font-weight: Extrabold;
  display: inline-block;
  position: relative;
}
.MV_hondatop .main_img .main_img .main_inner h2::before {
  content: "";
  position: absolute;
  left: 43%;
  bottom: 40px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 340px;
  /*下線の幅*/
  height: 2px;
  /*下線の太さ*/
  transform: translateX(-50%);
  transform: translateX(-50%);
  transform: translateX(-50%);
  transform: translate(-50%);
  /*位置調整*/
  background-color: #ffffff;
  /*下線の色*/
}
.MV_hondatop .main_img .main_img .main_inner h2::after {
  content: "新築一戸建てだけではない、快適な住まいづくり";
  display: block;
  font-size: 21px;
  font-weight: Extrabold;
}

@media screen and (max-width: 767px) {
  .main_time {
    display: none !important;
  }

  .MV_hondatop {
    margin-top: 50px;
    border-radius: 0 0 16px 0;
  }
  .MV_hondatop .hondatop_box {
    border-radius: 0 0 16px 0;
    height: 175px !important;
  }
  .MV_hondatop .hondatop_box .slider-wrap {
    border-radius: 0 0 16px 0;
  }
  .MV_hondatop .hondatop_box .slider-wrap .slide-item {
    border-radius: 0 0 16px 0;
  }
  .MV_hondatop .hondatop_box .slider-wrap .slide-item img {
    border-radius: 0 0 16px 0;
  }
}
/*-------------------*/
.accordion-container .accordion-list .accordion-title {
  border-radius: 8px;
  background: #ffffff;
  padding: 15px;
  position: relative;
  border-radius: 16px;
  cursor: pointer;
}
.accordion-container .accordion-list .accordion-title::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #c8102e;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
.accordion-container .accordion-list .accordion-title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #c8102e;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.accordion-container .accordion-list .accordion-title {
  border-radius: 16px 16px 0 0;
}
.accordion-container .accordion-list .accordion-title h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
}
.accordion-container .accordion-list .accordion-title h3 span {
  font-size: 14px;
}
.accordion-container .accordion-list .accordion-title.open {
  margin-bottom: 0;
  border-radius: 16px;
}
.accordion-container .accordion-list .accordion-title.open::before {
  transform: rotate(180deg) !important;
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #c8102e;
  transition: all 0.3s ease-in-out;
}
.accordion-container .accordion-list .accordion-title.open::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #c8102e;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.accordion-container .accordion-text {
  background: #f0f0f0;
  border-radius: 0 0 16px 16px;
}
.accordion-container .accordion-text .con_5 {
  padding: 10px 10px 15px;
  text-align: center;
}
.accordion-container .accordion-text .con_5 .con5img {
  max-width: 139px;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-bottom: 25px;
}
.accordion-container .accordion-text .con_5 .con5img2 {
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-bottom: 10px;
  width: 100%;
}
.accordion-container .accordion-text .con_5 .con5img3 {
  max-width: 36px;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-bottom: 10px;
}
.accordion-container .accordion-text .con_5 .con5img4 {
  width: 100%;
}
.accordion-container .accordion-text .con_5 .con5tll {
  font-size: 18px;
  font-weight: bold;
  color: #c8102e;
  text-align: center;
  margin-bottom: 10px;
}
.accordion-container .accordion-text .con_5 .con5btnbox {
  padding: 25px 0;
}
.accordion-container .accordion-text .con_5 .con5btnbox .con5btn {
  width: 100%;
  max-width: 272px;
  height: 56px;
  background: url("../images/u-select_1.webp") no-repeat;
  background-size: 272px;
  margin: 0 auto;
  border-radius: 30px;
  display: block;
}
.accordion-container .accordion-text .con_5 .con5btnbox .con5btn:hover {
  background: url("../images/u-select_2.webp") no-repeat;
  background-size: 272px;
}

/*---------------------*/
/* form */
/*---------------------*/
#reservation_page {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 390px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  margin-top: 50px;
  background: #ffffff;
}
#reservation_page .pagetopArea {
  width: 100%;
  background: #ffffff;
  height: 50px;
  border: #c8102e solid 2px;
}
#reservation_page .pagetopArea .pagetop {
  color: #c8102e;
  font-size: 12px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  padding-top: 25px;
  position: relative;
}
#reservation_page .pagetopArea .pagetop::before {
  content: "";
  width: 25px;
  height: 20px;
  background: url("../images/futer_toprink.webp") no-repeat;
  background-size: 20px;
  background-position: top 10px left;
  position: absolute;
  top: 3px;
  left: 50%;
  margin-left: -10px;
}
#reservation_page #footer {
  padding: 30px 0 80px;
  text-align: center;
  background: #ffffff;
}
#reservation_page #footer .f_img {
  margin: 0 auto;
  display: block;
}
#reservation_page #footer h3 {
  font-size: 16px;
  font-weight: bold;
  padding-top: 15px;
}
#reservation_page #footer p {
  font-size: 14px;
  font-weight: 400;
}

.reservation_top {
  padding: 41px 0 21px;
  background: #dceefa;
}
.reservation_top span {
  font-size: 14px;
  font-weight: bold;
  color: #c8102e;
}
.reservation_top h2 {
  font-size: 24px;
  font-weight: bold;
  color: #c8102e;
}

.form_banner {
  padding: 40px 15px 0px;
}

.form_banner02 {
  padding: 20px 15px 0px;
}

form {
  margin-bottom: 60px;
}

ul.formFlow {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  margin: 45px 0 45px;
  padding: 0;
  display: flex;
}
ul.formFlow li {
  display: inline-flex;
  justify-content: center;
  width: 28%;
  background: #ffffff;
  color: #c61633;
  list-style: none;
  padding: 6px;
  margin: 0 !important;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  align-items: center;
  position: relative;
  border-radius: 8px;
  display: block;
  text-align: center;
  border: #c61633 solid 2px;
}
ul.formFlow li:before {
  display: block;
  position: absolute;
  content: "";
  top: 45%;
  z-index: 3;
  width: 32px;
  height: 2px;
  border: 2px solid #c61633;
  right: -32px;
}
ul.formFlow li.visited {
  background: #999;
  color: #fff;
}
ul.formFlow li.active {
  background: #c61633;
  color: #ffffff;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  display: block;
  text-align: center;
  padding-top: 6px;
}
ul.formFlow li.second {
  border: #c61633 solid 2px;
  border-radius: 8px;
  height: 40px;
  display: block;
  padding-top: 6px;
}
ul.formFlow li.second:before {
  display: block;
  position: absolute;
  content: "";
  top: 45%;
  z-index: 3;
  width: 32px;
  height: 2px;
  border: 2px solid #c61633;
  right: -32px;
}
ul.formFlow li.second.active {
  padding-top: 6px;
}
ul.formFlow li.third {
  border: #c61633 solid 2px;
  border-radius: 8px;
  height: 40px;
  display: block;
  padding-top: 6px;
}
ul.formFlow li.third:before {
  display: none;
}
ul.formFlow li.third.active {
  background: #c61633 !important;
  color: #ffffff;
  padding-top: 6px;
}

table.confirm .triangle::after {
  display: none;
}
table tbody tr {
  display: block;
  margin-bottom: 32px;
}
table tbody tr th,
table tbody tr td {
  width: 100%;
  display: block;
  text-align: left;
}
table tbody tr th {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
table tbody tr td {
  font-weight: 400;
}

label {
  font-size: 16px;
  margin-right: 10px;
}

input[type="text"] {
  width: 345px;
  height: 40px;
  border-radius: 4px;
  border: #cbcbcb solid 1px;
  padding: 9px 10px;
  font-size: 16px;
  color: #222222;
}
input[type="text"] placeholder {
  color: #cbcbcb;
}

input[type="date"] {
  width: 345px;
  height: 40px;
  border-radius: 4px;
  border: #cbcbcb solid 1px;
  padding: 9px 10px;
  font-size: 16px;
  color: #222222;
  background: #fff;
}

input[type="date"]::placeholder {
  color: #cbcbcb;
}

input[type="date"]::-webkit-input-placeholder {
  color: #cbcbcb;
}

input[type="date"]::-moz-placeholder {
  color: #cbcbcb;
}

input[type="date"]:-ms-input-placeholder {
  color: #cbcbcb;
}

input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-bottom: 13px;
  vertical-align: -3px;
  font-size: 18px;
  margin-right: 5px;
}

input[type="radio"]:checked {
  accent-color: #c61633;
}

textarea {
  width: 345px;
  height: 140px;
  border-radius: 4px;
  border: #cbcbcb solid 1px;
  padding: 9px 10px;
  font-size: 16px;
  color: #222222;
}

input[type="submit"] {
  background: #c8102e;
  border-radius: 27px;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  max-width: 345px;
  height: 53px;
  padding: 12px 90px 10px;
  margin: 0 auto 20px;
  border: #c8102e solid 1px;
  display: block;
  width: 345px;
}

select {
  width: 345px;
  height: 40px;
  border: #cbcbcb solid 1px;
  background: #ffffff;
  border-radius: 4px;
  appearance: none;
  position: relative;
  padding: 9px 10px;
  font-size: 16px;
  color: #222222;
}
select placeholder {
  color: #cbcbcb;
}

.triangle {
  position: relative;
}
.triangle::after {
  content: "▼";
  position: absolute;
  width: 12px;
  height: 10px;
  font-size: 12px;
  color: #222222;
  top: 12px;
  right: 15px;
  display: block;
}

.att {
  background: #c61633;
  color: #ffffff;
  font-size: 14px;
  width: 52px;
  height: 20px;
  border-radius: 4px;
  font-weight: 400;
  padding: 0px 12px;
  margin-left: 13px;
}

.att2 {
  background: #cbcbcb;
  color: #ffffff;
  font-size: 14px;
  width: 52px;
  height: 20px;
  border-radius: 4px;
  font-weight: 400;
  padding: 0px 12px;
  margin-left: 13px;
}

.top_btn {
  max-width: 345px;
  height: 53px;
  border: #c8102e solid 2px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 0 auto 65px;
  padding: 8px 95px 10px;
  border-radius: 27px;
  color: #c8102e;
}

.textCenter {
  text-align: center;
}

.fw400 {
  font-weight: 400;
  font-size: 14px;
}

.pp_box {
  border: #959595 solid 1px;
  padding: 21px 23px;
}

.pph2 {
  font-size: 16px;
  font-weight: 400;
  border-bottom: #c8102e solid 1px;
  padding-bottom: 13px;
  line-height: 1.7;
}

.pph3 {
  font-size: 14px;
  color: #c8102e;
  font-weight: 400;
}

.b_link {
  color: #196fdd;
  font-size: 16px;
  text-decoration: underline;
  margin-bottom: 18px;
}

.b_link2 {
  color: #196fdd;
  font-size: 14px;
  text-decoration: underline;
  margin-bottom: 18px;
}

.privacy_policy {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.privacy_policy .privacycol {
  margin-bottom: 18px;
}
.privacy_policy .privacycol2 {
  margin-bottom: 50px;
}
.privacy_policy .privacycol2 input[type="checkbox"] {
  transform: scale(1.4);
  border: #959595 solid 1px;
  margin-right: 10px;
}

input[type="checkbox"]:checked {
  accent-color: #c8102e;
}

.mt45 {
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  #reservation_page {
    max-width: 100%;
  }

  ul.formFlow li {
    width: 27%;
    font-size: 12px !important;
    padding-top: 7px !important;
  }
  ul.formFlow li:before {
    width: 37px;
    right: -37px;
  }
  ul.formFlow li.active {
    font-size: 12px;
  }
  ul.formFlow li.second:before {
    width: 37px;
    right: -37px;
  }
  ul.formFlow li.second.active {
    font-size: 12px;
  }
  ul.formFlow li.third.active {
    font-size: 12px;
  }
}
.mcbtn2 {
  width: 100%;
  max-width: 345px;
  height: 64px;
  border-radius: 27px;
  margin: 0 auto;
  display: block;
  background: #c8102e url("../images/reservation_icon_hober.svg") no-repeat;
  background-size: 22px;
  background-position: top 19px left 50px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  padding: 13px 25px 13px 70px;
  border-radius: 32px;
  border: #c8102e solid 2px;
  text-align: center;
}
.mcbtn2:hover {
  background: #fff url("../images/reservation_icon.svg") no-repeat;
  background-size: 22px;
  background-position: top 19px left 50px;
  color: #c8102e;
}

.mcbtn3 {
  width: 100%;
  max-width: 345px;
  height: 53px;
  border-radius: 27px;
  margin: 0 auto;
  display: block;
  background: #06c755 url("../images/fx_line.svg") no-repeat;
  background-size: 25px;
  background-position: top 13px left 65px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 9px 60px 9px 100px;
  border-radius: 32px;
  border: #06c755 solid 2px;
}
.mcbtn3:hover {
  background: #fff url("../images/line_2.svg") no-repeat;
  background-size: 25px;
  background-position: top 13px left 65px;
  color: #06c755;
}

#kobayashi01,
#ootsukahigashi01,
#sadowawa01 {
  height: 1px;
  display: block;
  padding-top: 5px;
  margin-top: -5px;
}

@media screen and (max-width: 767px) {
  .nensikicol2 p {
    font-size: 14px !important;
  }
}
/*---------------------*/
/* popup */
/*---------------------*/
.con6popup,
.con6popup02,
.con6popup03,
.con6popup04,
.con6popup05 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
}
.con6popup .closebtn,
.con6popup02 .closebtn,
.con6popup03 .closebtn,
.con6popup04 .closebtn,
.con6popup05 .closebtn {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.con6popup__inner {
  overflow-y: scroll !important;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
.con6popup__inner::-webkit-scrollbar {
  display: none;
}

.con6popupWrap {
  width: 375px;
  height: auto;
  padding: 5px 10px 5px 10px;
  background: rgba(255, 255, 255, 0.94);
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.con6popupWrap h4 {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 10px;
}
/*.con6popupWrap .con6popupinner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.con6popupWrap .con6popupinner .con6popupimgbox {
  max-width: 157px;
  flex-basis: 157px;
  padding-bottom: 45%;
  position: relative;
  overflow: hidden;
}
.con6popupWrap .con6popupinner .con6popupimgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.con6popupWrap .con6popupinner .con6popuptxtbox {
  max-width: calc(100% - 165px);
  flex-basis: calc(100% - 165px);
}
.con6popupWrap .con6popupinner .con6popuptxtbox h2 {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 700;
}
.con6popupWrap .con6popupinner .con6popuptxtbox h2 span {
  font-size: 12px;
  font-weight: 500;
}*/
.con6popupWrap .con6popupinner .con6popuptxtbox .con6popuptxtboxwrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.con6popupWrap
  .con6popupinner
  .con6popuptxtbox
  .con6popuptxtboxwrap
  .con6popuptxtcol {
  max-width: 50%;
  flex-basis: 50%;
  padding-right: 15px;
  border-right: #b3b3b3 solid 1px;
}
.con6popupWrap
  .con6popupinner
  .con6popuptxtbox
  .con6popuptxtboxwrap
  .con6popuptxtcol:nth-child(2) {
  padding-right: 0;
  padding-left: 4px;
  border-right: none;
}
.con6popupWrap
  .con6popupinner
  .con6popuptxtbox
  .con6popuptxtboxwrap
  .con6popuptxtcol
  h3 {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin: 0 0 5px;
}
.con6popupWrap
  .con6popupinner
  .con6popuptxtbox
  .con6popuptxtboxwrap
  .con6popuptxtcol
  .popuptxt {
  font-size: 30px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #c8102e;
  margin: 0;
  text-align: right;
}
.con6popupWrap
  .con6popupinner
  .con6popuptxtbox
  .con6popuptxtboxwrap
  .con6popuptxtcol
  .popuptxt
  span {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}
.con6popupWrap
  .con6popupinner
  .con6popuptxtbox
  .con6popuptxtboxwrap
  .con6popuptxtcol
  .popuptxt.popuptxt02 {
  color: #000000;
}
.con6popupWrap .con6popupinner .con6popuptxtbox .popuptxt03 {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: #b3b3b3 solid 1px;
}
.con6popupWrap .con6popupinner .con6popuptxtbox .popuptxt03 span {
  font-size: 18px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.con6popupWrap .con6btnwrap {
  display: flex;
  justify-content: center;
}
.con6popupWrap .con6btn {
  width: 150px;
  height: 52px;
  display: block;
  background: url("../images/tyuukosya_denwa2.webp") no-repeat;
  background-size: 150px;
  background-position: top left;
  border-radius: 30px;
  margin-right: 20px;
}
.con6popupWrap .con6btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.con6popupWrap .con6btn a:hover {
  background: url("../images/tyuukosya_denwa1.webp") no-repeat;
  background-size: 150px;
  background-position: top left;
}
.con6popupWrap .con6btn02 {
  width: 155px;
  height: 52px;
  display: block;
  border-radius: 30px;
  background: #c8102e;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  border: #c8102e solid 1px;
  padding-top: 2px;
}
.con6popupWrap .con6btn02 a.mcbtn {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.con6popupWrap .con6btn02:hover {
  background: #fff;
}
.con6popupWrap .con6btn02 a.mcbtn:hover {
  color: #c8102e;
}
.popuptxt04 {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 20px;
}

.popuptxt05 {
  font-size: 10px;
  font-weight: 500;
}
.popuptxt05 span {
  color: #c8102e;
}

.con6popuptable table {
  width: 100%;
  border-collapse: collapse;
}
.con6popuptable table tr {
  display: flex;
  align-items: center;
  border-bottom: #b3b3b3 solid 1px;
  margin-bottom: 0;
  padding: 10px 0;
  position: relative;
}
.con6popuptable table tr::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 2px;
  background: #fff;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.con6popuptable table tr th {
  font-size: 10px;
  margin-bottom: 0;
  min-width: 75px;
  width: auto;
}
.con6popuptable table tr td {
  font-size: 10px;
  color: #c8102e;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .con6popup .closebtn {
    right: 15px;
  }
}
/*---------------------*/
/* popup連動スライダー */
/*---------------------*/
.popupSwiperWrap {
  position: relative;
  overflow: hidden;
}
.popupSwiperWrap .popupSwiper {
  position: inherit;
  overflow: visible;
  padding: 0 5px;
}
.popupSwiperWrap .popupSwiper02 {
  position: inherit;
  overflow: visible;
  padding: 0 5px;
}
.popupSwiperWrap .popupSwiper03 {
  position: inherit;
  overflow: visible;
  padding: 0 5px;
}
.popupSwiperWrap .popupSwiper04 {
  position: inherit;
  overflow: visible;
  padding: 0 5px;
}
.popupSwiperWrap .popupSwiper05 {
  position: inherit;
  overflow: visible;
  padding: 0 5px;
}
.popupSwiper .swiper-wrapper .swiper-slide .swiper-slide-box {
  overflow: hidden;
}
.popupSwiper .swiper-wrapper .swiper-slide .swiper-slide-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popupSwiper .popup-button-prev {
  width: 24px;
  height: 24px;
  background: url("../images/prev.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  left: 0;
}
.popupSwiper .popup-button-prev::after {
  display: none;
}
.popupSwiper .popup-button-next {
  width: 24px;
  height: 24px;
  background: url("../images/next.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  right: 0;
}
.popupSwiper .popup-button-next::after {
  display: none;
}
.popupSwiper02 .popup-button-prev02 {
  width: 24px;
  height: 24px;
  background: url("../images/prev.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  left: 0;
}
.popupSwiper02 .popup-button-prev02::after {
  display: none;
}
.popupSwiper02 .popup-button-next02 {
  width: 24px;
  height: 24px;
  background: url("../images/next.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  right: 0;
}
.popupSwiper02 .popup-button-next02::after {
  display: none;
}
.popupSwiper03 .popup-button-prev03 {
  width: 24px;
  height: 24px;
  background: url("../images/prev.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  left: 0;
}
.popupSwiper03 .popup-button-prev03::after {
  display: none;
}
.popupSwiper03 .popup-button-next03 {
  width: 24px;
  height: 24px;
  background: url("../images/next.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  right: 0;
}
.popupSwiper03 .popup-button-next03::after {
  display: none;
}
.popupSwiper04 .popup-button-prev04 {
  width: 24px;
  height: 24px;
  background: url("../images/prev.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  left: 0;
}
.popupSwiper04 .popup-button-prev04::after {
  display: none;
}
.popupSwiper04 .popup-button-next04 {
  width: 24px;
  height: 24px;
  background: url("../images/next.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  right: 0;
}
.popupSwiper04 .popup-button-next04::after {
  display: none;
}
.popupSwiper05 .popup-button-prev05 {
  width: 24px;
  height: 24px;
  background: url("../images/prev.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  left: 0;
}
.popupSwiper05 .popup-button-prev05::after {
  display: none;
}
.popupSwiper05 .popup-button-next05 {
  width: 24px;
  height: 24px;
  background: url("../images/next.svg") no-repeat;
  background-position: center;
  background-size: 24px;
  display: block;
  right: 0;
}
.popupSwiper05 .popup-button-next05::after {
  display: none;
}
.popupthumbnail {
  padding: 0 5px !important;
  margin: 0 auto 10px !important;
}
.popupthumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 90%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.popupthumbnail02
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 90%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.popupthumbnail03
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 90%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.popupthumbnail04
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 90%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.popupthumbnail05
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 90%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/*---------------------*/
/* pickupSwiper */
/*---------------------*/
.pickupSwiperWrap {
  margin-bottom: 30px;
}
.pickup-Swiper {
  padding-bottom: 50px !important;
}
.pickup-Swiper .swiper-wrapper .swiper-slide .slidebox {
  position: relative;
}
.pickup-Swiper .swiper-wrapper .swiper-slide .slidebox .con6imgbox {
  border-radius: 16px 16px 0 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 60%;
  cursor: pointer;
}
.pickup-Swiper .swiper-wrapper .swiper-slide .slidebox .con6imgbox img {
  position: absolute;
  border-radius: 16px 16px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pickup-Swiper .swiper-wrapper .swiper-slide .slidebox .con6txtbox {
  padding: 15px 15px 50px 15px;
  border-radius: 0 0 16px 16px;
  background: #fff;
}
.pickup-Swiper .swiper-wrapper .swiper-slide .slidebox .con6txtbox h4 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: #c8102e solid 2px;
  margin: 0 0 10px;
}
.pickup-Swiper .swiper-wrapper .swiper-slide .slidebox .con6txtbox .box1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box1
  .boxleft1 {
  max-width: 49%;
  flex-basis: 49%;
}
.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box1
  .boxright1 {
  max-width: 49%;
  flex-basis: 49%;
}
.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box1
  .boxleft1
  p {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}
.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box1
  .boxright1
  p {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}
.pickup-Swiper .swiper-wrapper .swiper-slide .slidebox .con6txtbox .box2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box2
  .boxleft2 {
  max-width: 49%;
  flex-basis: 49%;
}
.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box2
  .boxright2 {
  max-width: 49%;
  flex-basis: 49%;
}
.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box2
  .boxleft2
  span {
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box2
  .boxleft2
  p {
  font-size: 38px;
  font-weight: 700;
  color: #c8102e;
  margin: 0;
  position: relative;
}

.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box2
  .boxleft2
  p
  img {
  margin-left: 5px;
}

.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box2
  .boxright2
  p {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.pickup-Swiper
  .swiper-wrapper
  .swiper-slide
  .slidebox
  .con6txtbox
  .box2
  .boxright2
  p
  img {
  margin-left: 5px;
}
.pickup-Swiper .swiper-wrapper .swiper-slide .slidebox .con6txtbox .con6txtbtn {
  position: absolute;
  width: 100%;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  border-radius: 0 0 16px 16px;
  background: #f1990d;
  left: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  cursor: pointer;
}
.pickup-Swiper .pickup-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: #fff;
  opacity: 1;
}
.pickup-Swiper
  .pickup-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f1990d;
}
.pickup-Swiper .pickup-button-prev {
  width: 30px;
  height: 30px;
  display: block;
  background: url("../images/pickup_prev.svg") no-repeat;
  background-position: center;
  background-size: 30px;
  bottom: 10px;
  top: auto;
  margin-top: 0;
  z-index: 20;
  left: 20px;
}
.pickup-Swiper .pickup-button-prev::after {
  display: none;
}
.pickup-Swiper .pickup-button-next {
  width: 30px;
  height: 30px;
  display: block;
  background: url("../images/pickup_next.svg") no-repeat;
  background-position: center;
  background-size: 30px;
  bottom: 10px;
  top: auto;
  margin-top: 0;
  z-index: 20;
  right: 20px;
}
.pickup-Swiper .pickup-button-next::after {
  display: none;
}

/*キャンペーンセクション*/
.campain-text {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #c8102e;
}
