@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-weight: 500;
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 500;
  color: #393939;
  /*font-size: 1.5rem;*/
  margin: 0;
  letter-spacing: -0.05em;
  position: relative;
  overflow-x: hidden;
  line-height: 1.75;
}

.mincho {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

.bg_beige {
  background: #F8F5F1;
}

.bg_white {
  background: #fff;
}

.bg_pink {
  background: #FDEFEA;
}

a {
  display: inline-block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #232323;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

span {
  display: inline-block;
}

img {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
}

/*----------------------------------------------------------------------------------------
header.scss
----------------------------------------------------------------------------------------*/
/* =========================================================
   Base
========================================================= */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #fff;
}

.siteHeader a {
  color: #393939;
  cursor: pointer;
}

.header-inner {
  position: relative;
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}

.headerTop {
  background: #FDEFEA;
}
.headerTop-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0;
}
.headerTop-txt p {
  color: #D0340F;
  font-size: 1.6rem;
}
.headerTop-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.headerTop-link ul li {
  border-right: 1px solid rgba(180, 180, 180, 0.5);
}
.headerTop-link ul li a {
  padding: 0 1em;
  font-size: clamp(1.1rem, 1.569vw - 0.508rem, 1.5rem);
}
.headerTop-link ul li a:hover {
  opacity: 0.6;
}
.headerTop-link ul li img {
  margin-left: 10px;
}
.headerTop-link ul li:last-child {
  border: none;
}
.headerTop-link ul li:last-child a {
  padding-right: 0;
}

.headerCnts {
  padding: 10px 0;
}
.headerCnts-flex {
  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;
}
.headerCnts-logo {
  width: 30%;
}
.headerCnts-logo img {
  width: 100%;
  max-width: 385px;
}
.headerCnts-block {
  width: 70%;
}
.headerCnts-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerCnts-top-name {
  width: 30%;
}
.headerCnts-top-name p {
  text-align: right;
  color: #232323;
  font-size: 1.6rem;
}
.headerCnts-top div {
  min-width: 10%;
  margin: 0 15px;
}
.headerCnts-top div a {
  display: inline-block;
  color: #d0340f;
  font-size: 1.6rem;
}
.headerCnts-top div a:hover {
  opacity: 0.6;
}
.headerCnts-top div img {
  margin-right: 10px;
}
.headerCnts-top div:last-child {
  margin: 0;
}
.headerCnts #searchform {
  position: relative;
}
.headerCnts #searchform input {
  width: 240px;
  position: relative;
  border: 1px solid #d0340f;
  border-radius: 4px;
  font-size: 1.4rem;
  padding: 8px 35px 8px 5px;
}
.headerCnts #searchform button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  background: none;
  margin: auto;
  cursor: pointer;
}
.headerCnts #searchform button img {
  width: 30px;
  margin: 0;
  padding: 3px 8px;
  border-left: 1px solid #d0340f;
}
.headerCnts-link {
  margin: 5px auto;
}
.headerCnts-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.headerCnts-link ul li {
  padding: 0 0 0 35px;
}
.headerCnts-link ul a {
  position: relative;
  font-size: 1.4rem;
}
.headerCnts-link ul a:before {
  position: absolute;
  display: block;
  content: "▶";
  color: #E88778;
  font-size: 1.2rem;
  left: -15px;
  top: 0;
  bottom: 0;
  margin: 0;
}
.headerCnts-link ul a:hover {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .headerTop-txt {
    width: 100%;
    text-align: center;
  }
  .headerTop-link ul li {
    display: none;
  }
  .headerTop-link ul li:last-child {
    display: block;
  }
  .headerCnts {
    padding: 10px 0;
  }
  .headerCnts-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .headerCnts-logo {
    width: 40%;
  }
  .headerCnts-block {
    width: 100%;
    margin: 10px auto;
  }
}
@media screen and (max-width: 768px) {
  .headerCnts {
    padding: 10px 0 0;
  }
  .headerCnts-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .headerCnts-logo {
    width: 40%;
  }
  .headerCnts-block {
    width: 100%;
  }
  .headerCnts-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .headerCnts-top-name {
    width: 100%;
  }
  .headerCnts-top div {
    min-width: 17%;
    margin: 5px 10px;
  }
  .headerCnts-top div:last-child {
    width: 240px;
  }
}
@media screen and (max-width: 480px) {
  .headerTop-flex {
    padding: 4px 0;
  }
  .headerTop-txt p {
    font-size: 1.1rem;
  }
  .headerCnts {
    padding: 5px 0;
  }
  .headerCnts-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .headerCnts-logo {
    width: 65%;
  }
  .headerCnts-block {
    width: 90%;
    margin: 0 auto;
  }
  .headerCnts-top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .headerCnts-top-name {
    width: 100%;
  }
  .headerCnts-top-name p {
    font-size: 1.4rem;
  }
  .headerCnts-top div {
    min-width: 40%;
    margin: 5px auto;
  }
  .headerCnts-top div img {
    width: 22px;
    margin-right: 5px;
  }
  .headerCnts-top div:last-child {
    width: 100%;
  }
  .headerCnts #searchform {
    position: relative;
  }
  .headerCnts #searchform input {
    width: 100%;
  }
  .headerCnts-link {
    display: none;
  }
}
/* =========================================================
   PC / SP Switch
========================================================= */
.pcNav {
  display: block;
}

/*.spBtn,
.spDrawer,
.spOverlay {
	display: none;
}*/
@media (max-width: 1024px) {
  .pcBtn,
  .pcNav {
    display: none;
  }
  .spBtn,
  .spDrawer,
  .spOverlay {
    display: block;
  }
}
/* =========================================================
   PC: Top Nav + Dropdown (hover)
   - linkあり: <a class="pcTrigger" href="...">
   - linkなし: <button class="pcTrigger" type="button">
========================================================= */
.pcNavRoot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcNavRoot > li {
  position: relative;
}

/* Trigger (a or button) */
a.pcTrigger {
  display: inline-block;
  padding: 8px 6px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.784vw + 0.796rem, 1.8rem);
  /* button reset */
  background: none;
  border: 0;
  /*cursor: pointer;*/
}
a.pcTrigger:hover {
  background: #FDEFEA;
  background: #e88778;
  border-bottom: 3px solid #fff;
  color: #fff;
  padding: 8px 6px 5px;
}

.noLink {
  cursor: default;
}

/* Dropdown indicator */
/*.pcHasDrop > .pcTrigger::after {
	content: "▼";
	font-size: 10px;
	margin-left: 6px;
	color: #999;
}*/
/* Dropdown */
.pcDrop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 285px;
  background: #FDEFEA;
  /*border: 1px solid #eee;*/
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  z-index: 9999;
  background: #e88778;
}

/* open on hover/focus */
.pcHasDrop:hover > .pcDrop,
.pcHasDrop:focus-within > .pcDrop {
  display: block;
}

/* bridge area to avoid accidental close */
.pcHasDrop > .pcDrop::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* Dropdown list */
.pcDrop ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcDrop a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  font-size: clamp(1.6rem, 0.784vw + 0.796rem, 1.8rem);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.pcDrop a:hover {
  background: #fff;
  color: #393939;
}

/* Right edge overflow fix (optional)
   add class="alignRight" on li.pcHasDrop */
.pcHasDrop.alignRight > .pcDrop {
  left: auto;
  right: 0;
}

/* =========================================================
   SP: Hamburger + Drawer + Panels
========================================================= */
.spBtn {
  position: relative;
  line-height: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media screen and (max-width: 1024px) {
  .spBtn {
    position: fixed;
    top: 40px;
    right: 10px;
    z-index: 11000;
    padding: 10px 12px;
    font-size: 20px;
    line-height: 1;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    width: 110px;
  }
}
@media screen and (max-width: 480px) {
  .spBtn {
    top: 18px;
  }
}
/* hide button while drawer open (avoid overlap with close button) */
body.isMenuOpen .spBtn {
  opacity: 0;
  pointer-events: none;
}

/* Overlay (fade) */
.spOverlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(35, 24, 21, 0.25);
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.spOverlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer (slide with transform) */
.spDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 500px;
  max-width: 90%;
  height: 100%;
  z-index: 10100;
  background: #fff;
  overflow: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.spDrawer.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* Top bar */
.spTopbar {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
  font-weight: 700;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
}

.spTopbar-logo {
  width: 204px;
}

.spTopbar-btn {
  margin: 10px auto 12px;
}

.spTopbar-search {
  margin: 0 auto;
}
.spTopbar-search #searchform {
  position: relative;
}
.spTopbar-search #searchform input {
  width: 300px;
  position: relative;
  border: 1px solid #B4B4B4;
  border-radius: 4px;
  font-size: 1.4rem;
  padding: 10px 37px 10px 5px;
}
.spTopbar-search #searchform button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  background: none;
  margin: auto;
}
.spTopbar-search #searchform button img {
  width: 32px;
  margin: 0;
  padding: 3px 8px;
  border-left: 1px solid #B4B4B4;
}

.spClose {
  width: 80px;
  cursor: pointer;
}

/* Panel base (Top/Sub) */
.spPanel {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  height: calc(100% - 52px);
  overflow-y: auto;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  padding-bottom: 150px;
}

.spPanel.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* Group head: big title + "view all" */
.spHead {
  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;
  padding: 10px 15px;
  background: #EFEFEF;
  font-size: 1.5rem;
}

/*.spAll {
	font-size: 22px;
	font-weight: 400;
	text-decoration: none;
	color: #A0A0A0;
	padding: 0;
}*/
/* Lists */
.spList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spList a {
  display: block;
  padding: 8px 15px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  font-size: 1.6rem;
  font-weight: 400;
}

/* Has child arrow */
.hasChild {
  position: relative;
}

.hasChild::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 22px;
  color: #A0A0A0;
}

/* Footer "Go Top" */
.spFooter {
  position: relative;
  text-align: center;
  margin: 30px auto;
}

.spFooter a {
  text-align: center;
  background: #B4B4B4;
  border-radius: 8px;
  padding: 10px;
  font-size: 1.6rem;
  color: #fff;
  width: 90%;
}

/* Scroll lock */
body.isMenuOpen {
  overflow: hidden;
}

.carsHeader .headerTop {
  background: #efefef;
}
.carsHeader .headerTop-txt p {
  color: #232323;
}
.carsHeader .headerCnts-top div a {
  color: #232323;
}
.carsHeader .headerCnts #searchform input {
  border: 1px solid #232323;
}
.carsHeader .headerCnts #searchform button img {
  border-left: 1px solid #232323;
}
.carsHeader .headerCnts-link ul li a:before {
  color: #a0a0a0;
}
.carsHeader .pcNav a.pcTrigger:hover {
  background: #efefef;
  color: #393939;
}
.carsHeader .pcDrop {
  width: 100%;
  max-width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 178px;
  background: #efefef;
  padding: 30px 10px;
}
.carsHeader .pcDrop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 30px;
}
.carsHeader .pcDrop ul li {
  width: auto;
  padding: 0;
}
.carsHeader .pcDrop ul li a {
  background: #fff;
  padding: 10px;
  height: 100%;
  width: 100%;
  text-align: center;
  color: #232323;
}
.carsHeader .pcDrop ul li a img {
  max-height: 30px;
  max-width: 100px;
  margin-right: 10px;
}
.carsHeader .pcDrop ul.buy {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.carsHeader .pcDrop ul.buy li {
  width: 19%;
}

/*----------------------------------------------------------------------------------------
sitemap.scss
----------------------------------------------------------------------------------------*/
.l-sitemap {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 0;
  width: 100%;
  z-index: 99999;
  overflow: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.l-sitemap.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sitemapBody {
  position: relative;
  height: 100%;
  overflow-x: scroll;
}
.sitemapBody .sitemapClose {
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}
.sitemapBody .sitemapGroup {
  padding: 20px 3%;
}
.sitemapBody .sitemapGroup:first-child {
  border-bottom: 1px solid rgba(160, 160, 160, 0.5);
}
.sitemapBody .sitemapGroup-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sitemapBody .sitemapGroup-box {
  width: 25%;
  margin: 10px 0 20px;
  padding: 0 10px;
}
.sitemapBody .sitemapGroup-box p {
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 3px 0;
  width: 100%;
}
.sitemapBody .sitemapGroup-box a {
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 3px 0;
  width: 100%;
}
.sitemapBody .sitemapGroup-box a:hover {
  background: #FDEFEA;
}
.sitemapBody .sitemapGroup-box ul li {
  margin-left: 1em;
}

@media (max-width: 1024px) {
  .sitemap {
    display: none;
  }
}
/*----------------------------------------------------------------------------------------
sidemenu.scss
----------------------------------------------------------------------------------------*/
#sidemenu {
  /*background: #fff;*/
}

.l-sidemenu {
  position: relative;
  width: 240px;
  width: 260px;
  background: #fff;
  padding: 30px 0;
}
.l-sidemenu-inner {
  position: relative;
  width: 240px;
  width: 240px;
  margin: 0 auto;
}
.l-sidemenu-title {
  font-size: 2rem;
  text-align: center;
  margin: 0 auto;
}
.l-sidemenu-nav {
  /*margin-top: 50px;*/
}
.l-sidemenu-nav__list {
  /*border-top: 1px solid rgba(160, 160, 160, 0.5);*/
  padding: 12px 0;
  padding: 0;
}
.l-sidemenu-nav__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(160, 160, 160, 0.5);
}
.l-sidemenu-nav__list li a {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: -1.2px;
  font-weight: 500;
  padding: 12px 10px 12px 8px;
  padding: 8px 10px 8px 8px;
  width: calc(100% - 24px);
}
.l-sidemenu-nav__list li a span {
  color: #797979;
  font-size: 1.3rem;
}
.l-sidemenu-nav__list li a::after {
  position: absolute;
  display: block;
  content: "＞";
  color: rgba(160, 160, 160, 0.5);
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-sidemenu-nav__list li a:hover {
  opacity: 0.6;
}
.l-sidemenu-nav__btn {
  margin: 20px auto;
}
.l-sidemenu-nav__btn li {
  margin: 20px auto;
}
.l-sidemenu-nav__kanyu {
  border: 1px solid rgba(232, 135, 120, 0.5);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  margin: 30px auto 10px;
}
.l-sidemenu-nav__kanyu .title {
  background: #D0340F;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: -1.2px;
  text-align: center;
  padding: 12px 0;
  margin: 0;
}
.l-sidemenu-nav__kanyu .title a {
  color: #fff;
}
.l-sidemenu-nav__kanyu ul {
  margin: 10px;
}
.l-sidemenu-nav__kanyu ul:last-child {
  border-top: 1px solid rgba(232, 135, 120, 0.5);
}
.l-sidemenu-nav__kanyu ul li a {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: -1.2px;
  font-weight: 400;
  padding: 10px;
  width: 100%;
}
.l-sidemenu-nav__kanyu ul li a::after {
  position: absolute;
  display: block;
  content: "＞";
  color: rgba(232, 135, 120, 0.5);
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-sidemenu-nav__kanyu ul li a:hover {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .l-sidemenu {
    display: none;
  }
}
/*----------------------------------------------------------------------------------------
footer.scss
----------------------------------------------------------------------------------------*/
.l-footer {
  background: #FDEFEA;
  padding: 90px 0 0;
}
.l-footer-inner {
  width: 96%;
  max-width: 1115px;
  /*margin: 0 0 0 auto;*/
  margin: 0 auto;
}
.l-footer__logo {
  width: 100%;
  max-width: 480px;
  margin-bottom: 40px;
}
.l-footer__logo img {
  width: 100%;
  max-width: 480px;
}
.l-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l-footer__detail {
  width: 55%;
  margin-right: 2%;
  margin-bottom: 50px;
}
.l-footer__detail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__detail ul li {
  margin-bottom: 8px;
}
.l-footer__detail ul li:first-child {
  margin-right: 30px;
}
.l-footer__detail ul li a {
  font-size: 1.5rem;
}
.l-footer__detail ul li a:hover {
  opacity: 0.6;
}
.l-footer__name {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.l-footer__address {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.l-footer__tel {
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.l-footer__tel span {
  background: #fff;
  color: #D0340F;
  font-weight: 500;
  border-radius: 20px;
  padding: 0px 10px;
  font-size: 1.8rem;
}
.l-footer__tel a {
  font-size: 4rem;
  font-weight: 700;
  color: #D13F1D;
}
.l-footer__tel.tel02 span {
  font-size: 1.4rem;
  color: #232323;
}
.l-footer__tel.tel02 a {
  font-size: 2.4rem;
  color: #232323;
}
.l-footer__nav {
  width: 30%;
  margin-bottom: 50px;
}
.l-footer__nav ul li {
  position: relative;
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.l-footer__nav ul li:first-child {
  padding-bottom: 8px;
}
.l-footer__nav ul li:first-child::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3em;
  border-bottom: 1px solid rgba(160, 160, 160, 0.5);
}
.l-footer__nav ul li a:hover {
  opacity: 0.6;
}
.l-footer__stickers {
  width: 80px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.l-footer__stickers input {
  width: 80px;
}
.l-footer__privacy {
  background: #d13f1d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 0;
  padding: 5px;
  color: #fff;
}
.l-footer__privacy a {
  /*width: 160px;*/
  font-weight: 400;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 20px;
}
.l-footer__privacy a:hover {
  opacity: 0.6;
}
.l-footer__copyright {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 20px;
}

.p-footer-btn {
  display: none;
}

.totop {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 15%;
  right: 1%;
  z-index: 999;
}
.totop a {
  width: 100%;
  height: 100%;
  text-align: center;
  background: #d0340f;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  line-height: 1.2;
  padding: 5px;
}

.l-footer-cars {
  background: #dbdbdb;
}
.l-footer-cars .l-footer__privacy {
  background: #232323;
}

.totop.cars a {
  background: #232323;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 45px 0 0;
  }
  .l-footer-inner {
    width: 90%;
    margin: 0 auto;
  }
  .l-footer__logo {
    margin-bottom: 40px;
  }
  .l-footer__name {
    font-size: 2rem;
  }
  .l-footer__address {
    font-size: 1.5rem;
  }
  .l-footer__nav {
    width: 70%;
    margin-bottom: 0;
  }
  .l-footer__nav ul {
    margin-bottom: 30px;
  }
  .l-footer__nav ul li {
    font-size: 1.6rem;
  }
  .l-footer__stickers {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__privacy {
    padding-bottom: 90px;
  }
  .l-footer__detail {
    width: 100%;
    margin-bottom: 40px;
  }
  .l-footer__detail ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-footer-btn {
    display: block;
    position: fixed;
    margin: 0 !important;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
  }
  .p-footer-btn .p-common-btn__box {
    position: relative;
    background: -webkit-gradient(linear, right top, left top, from(#e88778), to(#d0340f));
    background: linear-gradient(-90deg, #e88778, #d0340f);
    width: 33.3334%;
    margin: 0;
    height: 60px;
  }
  .p-footer-btn .p-common-btn__box a {
    background: none;
    border-radius: 0;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border: none;
    color: #fff;
  }
  .p-footer-btn .p-common-btn__box a img {
    width: 20px;
  }
  .l-footer-cars .p-footer-btn .p-common-btn__box {
    background: -webkit-gradient(linear, left top, right top, from(#b19a9a), to(#817070));
    background: linear-gradient(to right, #b19a9a, #817070);
  }
}
/*----------------------------------------------------------------------------------------
container.scss
----------------------------------------------------------------------------------------*/
.l-inner {
  position: relative;
  width: 96%;
  max-width: 1920px;
  margin: 0 auto;
}

.l-inner02 {
  position: relative;
  width: 90%;
  max-width: 1280px;
  /*max-width: 1600px;*/
  margin: 0 auto;
}

.l-inner03 {
  position: relative;
  width: 100%;
  max-width: 950px;
  /*max-width: 1320px;*/
  margin: 0 auto;
}

.l-inner04 {
  position: relative;
  width: 96%;
  max-width: 1100px;
  /*max-width: 1320px;*/
  margin: 0 auto;
}

.l-inner05 {
  position: relative;
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
}

.l-inner06 {
  position: relative;
  width: 96%;
  max-width: 880px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .l-inner02 {
    width: 96%;
  }
  .l-inner03 {
    width: 96%;
  }
}
/*----------------------------------------------------------------------------------------
component.scss
----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------
common.scss
----------------------------------------------------------------------------------------*/
.p-common__breadcrumbs {
  color: #797979;
  font-size: 1.4rem;
  /*font-weight: 400;*/
  position: relative;
  z-index: 2;
  padding: 10px;
}
.p-common__breadcrumbs a {
  color: #797979;
  font-size: 1.4rem;
  /*font-weight: 400;*/
}
.p-common__breadcrumbs.bg_gray {
  background: #797979;
  color: #fff;
  padding: 5px 10px;
}
.p-common__breadcrumbs.bg_gray a {
  color: #fff;
}

.p-common__mainBlock {
  margin-top: 180px;
}

@media screen and (max-width: 1024px) {
  /*.p-common__mainBlock {
  	margin-top: 150px;
  }*/
}
@media screen and (max-width: 768px) {
  .p-common__mainBlock {
    margin-top: 170px;
  }
}
@media screen and (max-width: 480px) {
  .p-common__mainBlock {
    margin-top: 160px;
  }
}
.p-common__mainCnts-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-common__mainCnts-cnts {
  width: calc(100% - 280px);
  max-width: 950px;
  /*max-width: 1320px;*/
  margin: 0 0 0 auto;
}
.p-common__mainCnts-cnts.mt50 {
  margin-top: 50px;
}
.p-common__mainCnts-default {
  font-size: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .p-common__mainCnts-cnts {
    width: 100%;
    margin: 0 auto;
  }
}
.p-common__listBlock-title {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
.p-common__listBlock-title h2 {
  width: 70%;
}
.p-common__listBlock-title h2 img {
  margin-right: 3em;
}
.p-common__listBlock-title h2 span {
  font-size: 1.6rem;
}

@media screen and (max-width: 480px) {
  .p-common__listBlock-title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-common__listBlock-title h2 {
    width: 100%;
    line-height: 1;
  }
  .p-common__listBlock-title h2 img {
    margin-right: 3em;
    height: 30px;
  }
  .p-common__listBlock-title h2 span {
    font-size: 1.2rem;
  }
}
.p-common-tolist a {
  color: #797979;
  border: 1px solid rgba(160, 160, 160, 0.5);
  padding: 1px 12px;
  border-radius: 12px;
  font-size: 1.4rem;
}

@media screen and (max-width: 480px) {
  .p-common-tolist {
    text-align: center;
    margin: 0 auto 50px;
  }
  .p-common-tolist a {
    font-size: 1.2rem;
  }
}
.p-common-relation-block {
  margin: 150px auto;
}
.p-common-relation-block.mtb50 {
  margin: 50px auto;
}
.p-common-relation-block h4 {
  color: #282828;
  font-size: 1.8rem;
  /*font-weight: 400;*/
  margin-bottom: 10px;
}
.p-common-relation-block__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 40px;
}
.p-common-relation-block__box {
  width: 31%;
  max-width: 290px;
}
.p-common-relation-block__box a {
  text-align: center;
  width: 100%;
  background: #A0A0A0;
  color: #fff;
  font-size: 1.5rem;
  padding: 15px 6px;
}

@media screen and (max-width: 768px) {
  .p-common-relation-block__flex {
    gap: 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-common-relation-block {
    margin: 30px auto;
  }
  .p-common-relation-block__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  .p-common-relation-block__box {
    width: 100%;
    max-width: 260px;
    margin: 5px auto;
  }
  .p-common-relation-block__box a {
    font-size: 1.5rem;
    padding: 10px 5px;
  }
  .p-common-relation-block__box a img {
    width: 20px;
  }
}
.p-common-btn {
  margin: 60px auto;
}
.p-common-btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-common-btn__box {
  width: 33%;
  max-width: 290px;
  margin: 0 20px;
}
.p-common-btn__box a {
  text-align: center;
  width: 100%;
  color: #D0340F;
  border: 1px solid #D0340F;
  border-radius: 20px;
  font-size: 1.8rem;
  padding: 6px;
}

@media screen and (max-width: 480px) {
  .p-common-btn {
    margin: 30px auto;
  }
  .p-common-btn__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-common-btn__box {
    width: 100%;
    max-width: 260px;
    margin: 5px auto;
  }
  .p-common-btn__box a {
    font-size: 1.5rem;
    padding: 5px;
  }
  .p-common-btn__box a img {
    width: 20px;
  }
}
/* Copyボタン：通常 */
.copybtn {
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

/* コピー成功時（JSが .copied を付ける） */
.copybtn.copied {
  opacity: 0.85;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  background: #2E7D32;
  /* 成功色 */
  color: #fff;
}

.search-page {
  margin-top: 50px;
}
.search-page input[type=text] {
  font-size: 1.8rem;
  padding: 15px;
  width: 100%;
  max-width: 600px;
}
.search-page .buttons_wrapper {
  margin: 50px auto;
}
.search-page input[type=submit] {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#e88778), to(#d0340f));
  background: linear-gradient(to bottom, #e88778, #d0340f);
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 12px 5px;
  width: 290px;
  height: 60px;
  margin-right: 20px;
  font-size: 1.8rem;
}
.search-page button {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#dcdcdc), to(#b4b4b4));
  background: linear-gradient(to bottom, #dcdcdc, #b4b4b4);
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 12px 5px;
  width: 290px;
  height: 60px;
  font-size: 1.8rem;
}

.p-search-block {
  margin: 50px auto;
}
.p-search-block .p-search-link a {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fbefe9));
  background: linear-gradient(to bottom, #ffffff, #fbefe9);
  border: 1px solid #d0340f;
  color: #d0340f;
}

.result {
  font-size: 1.6rem;
}

/*----------------------------------------------------------------------------------------
top.scss
----------------------------------------------------------------------------------------*/
.p-top-btn {
  margin: 10px auto;
}
.p-top-btn .p-common-btn__box a {
  text-align: center;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#e88778), to(#d0340f));
  background: linear-gradient(180deg, #e88778, #d0340f);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1.8rem;
  padding: 6px;
}

.p-top-news {
  position: relative;
  margin: 25px auto;
  padding: 70px 40px 60px;
}
.p-top-news__title {
  position: absolute;
  top: -25px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 55%;
  max-width: 550px;
}
.p-top-news__title h2 {
  width: 100%;
  max-width: 248px;
}
.p-top-news__title h2 img {
  width: 60%;
}
.p-top-news__title h2 p {
  font-size: 2rem;
  color: #E88778;
  margin-left: 40px;
}
.p-top-news__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-news__list {
  width: 55%;
  max-width: 470px;
}
.p-top-news__list ul li {
  margin: 20px auto;
}
.p-top-news__list ul li .time span.cat-name {
  background: #B4B4B4;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  width: 10em;
  padding: 3px;
  margin-right: 5px;
}
.p-top-news__list ul li .time span.post-time {
  font-size: 1.4rem;
  color: #797979;
}
.p-top-news__list ul li .news-title a {
  font-size: 1.4rem;
  padding: 5px;
}
.p-top-news__prbnr {
  width: 42%;
  max-width: 360px;
}
.p-top-news__prbnr img {
  width: 100%;
  max-width: 360px;
}

.p-top-btnarea {
  margin: 50px auto 80px;
}
.p-top-btnarea a {
  margin: 10px auto;
}
.p-top-btnarea a img {
  width: 100%;
}

.p-top-service {
  position: relative;
  margin: 50px auto;
  padding: 70px 40px 40px;
}
.p-top-service__title {
  position: absolute;
  top: -25px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 55%;
  max-width: 550px;
}
.p-top-service__title h2 {
  width: 100%;
  max-width: 338px;
}
.p-top-service__title h2 img {
  width: 60%;
}
.p-top-service__title h2 p {
  font-size: 2rem;
  color: #E88778;
  margin-left: 40px;
}
.p-top-service__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px auto;
  gap: 15px;
}
.p-top-service__list ul li {
  max-width: 25%;
}
.p-top-service__list ul li:first-child {
  max-width: 19%;
}
.p-top-service__list ul li:first-child img {
  width: 100%;
}
.p-top-service__list ul li a {
  position: relative;
  text-align: center;
  border: 1px solid rgba(247, 210, 204, 0.5);
  padding: 5px;
  /*margin-top: 20px;*/
}
.p-top-service__list ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border: 7px solid #F3BEB4;
  border-top-color: #fff;
  /* 背景色 */
  border-left-color: #fff;
  /* 背景色 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-top-service__list ul li a img {
  width: 100%;
  max-width: 190px;
}
.p-top-service__list ul li a p {
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 1.569vw - 0.208rem, 1.8rem);
}
.p-top-service__list ul li a .on_img {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, 1.569vw - 0.408rem, 1.6rem);
  position: absolute;
  top: -20px;
  left: -10px;
  padding: 5% 5%;
  line-height: 2;
  border-radius: 50%;
}
.p-top-service__list ul li a .on_img.bg_red {
  background: #e88778;
  color: #fff;
}
.p-top-service__list ul li a .on_img.bg_yellow {
  background: #FFEBD1;
  color: #E78C12;
}

.p-top-generalbnr {
  text-align: center;
  margin: 50px auto 80px;
}
.p-top-generalbnr ul.slick03 li {
  padding: 0 10px;
}
.p-top-generalbnr ul.slick03 li img {
  width: 100%;
}

.p-top-present img {
  width: 100%;
}

.p-top__listBlock {
  margin: 80px auto;
  margin-bottom: 1px solid rgba(112, 112, 112, 0.5);
}
.p-top__listBlock-title {
  width: 100%;
}
.p-top__listBlock-title h2 {
  font-size: 1.6rem;
  color: #A0A0A0;
}
.p-top__listBlock-title h2 img {
  max-width: 100%;
  margin-right: 1em;
}
.p-top__listBlock-title h2 span {
  font-size: 2rem;
}
.p-top__listBlock ul.slick04,
.p-top__listBlock ul.slick05,
.p-top__listBlock ul.slick06 {
  margin: 40px auto;
}
.p-top__listBlock ul.slick04 li,
.p-top__listBlock ul.slick05 li,
.p-top__listBlock ul.slick06 li {
  padding: 0 10px;
  text-align: center;
}
.p-top__listBlock ul.slick04 li a,
.p-top__listBlock ul.slick05 li a,
.p-top__listBlock ul.slick06 li a {
  width: 100%;
}
.p-top__listBlock ul.slick04 li .thumb-img,
.p-top__listBlock ul.slick05 li .thumb-img,
.p-top__listBlock ul.slick06 li .thumb-img {
  width: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
}
.p-top__listBlock ul.slick04 li img,
.p-top__listBlock ul.slick05 li img,
.p-top__listBlock ul.slick06 li img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  margin: 0 auto;
}
.p-top__listBlock ul.slick04 li p,
.p-top__listBlock ul.slick05 li p,
.p-top__listBlock ul.slick06 li p {
  text-align: left;
  font-size: 1.8rem;
  margin: 5px 0;
}
.p-top__listBlock ul.slick07 {
  margin: 40px auto;
}
.p-top__listBlock ul.slick07 li {
  padding: 0 15px;
  text-align: center;
}
.p-top__listBlock ul.slick07 li img {
  width: 100%;
  margin: 0 auto;
}
.p-top__listBlock ul.slick07 li p {
  font-size: 1.6rem;
  margin: 5px 0;
}
.p-top__listBlock ul.slick08 {
  margin: 40px auto;
}
.p-top__listBlock ul.slick08 li {
  padding: 0 15px;
  text-align: center;
}
.p-top__listBlock ul.slick08 li img {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #dedede;
}
.p-top__listBlock ul.slick08 li p {
  font-size: 1.4rem;
  margin: 5px 0;
}

@media screen and (max-width: 480px) {
  .p-top-btn {
    display: none;
  }
  .p-top-news {
    margin: 30px auto;
    padding: 70px 20px 30px;
  }
  .p-top-news__title {
    width: 100%;
    top: -25px;
  }
  .p-top-news__title h2 {
    max-width: 150px;
  }
  .p-top-news__title h2 p {
    font-size: 1.8rem;
  }
  .p-top-news .p-common-tolist {
    margin: 0 10px 0 auto;
  }
  .p-top-news__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-top-news__list {
    width: 100%;
  }
  .p-top-news__prbnr {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
  }
  .p-top-btnarea {
    margin: 30px auto 50px;
  }
  .p-top-service {
    margin: 30px auto;
    padding: 70px 20px 30px;
  }
  .p-top-service__title {
    width: 100%;
    top: -25px;
  }
  .p-top-service__title h2 {
    max-width: 202px;
  }
  .p-top-service__title h2 p {
    font-size: 1.8rem;
  }
  .p-top-service__list ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-top-service__list ul li {
    width: 304px;
    max-width: 304px;
  }
  .p-top-service__list ul li:first-child {
    max-width: 270px;
  }
  .p-top-service__list ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-top-service__list ul li a img {
    max-width: 135px;
  }
  .p-top-service__list ul li a p {
    width: 54%;
    text-align: center;
    padding: 20px 20px 20px 25px;
  }
  .p-top-service__list ul li a .on_img {
    padding: 4%;
  }
  .p-top-generalbnr {
    margin: 40px auto 50px;
  }
  .p-top__listBlock {
    margin: 50px auto;
  }
  .p-top__listBlock-title h2 span {
    font-size: 1.2rem;
  }
  .p-top__listBlock ul.slick04,
  .p-top__listBlock ul.slick05,
  .p-top__listBlock ul.slick06 {
    margin: 40px auto 30px;
  }
  .p-top__listBlock ul.slick04 li p,
  .p-top__listBlock ul.slick05 li p,
  .p-top__listBlock ul.slick06 li p {
    font-size: 1.6rem;
  }
  .p-top__listBlock ul.slick07,
  .p-top__listBlock ul.slick08 {
    margin: 40px auto 30px;
  }
  .p-top__listBlock ul.slick07 li p,
  .p-top__listBlock ul.slick08 li p {
    font-size: 1.4rem;
  }
}
/*----------------------------------------------------------------------------------------
secondtop.scss
----------------------------------------------------------------------------------------*/
.p-secondTop-maintitle {
  position: relative;
  height: 280px;
}
.p-secondTop-maintitle .p-secondTop-mv {
  text-align: right;
}
.p-secondTop-maintitle .maintitle {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 600px;
  padding: 10px 0;
}
.p-secondTop-maintitle h1 {
  font-size: 5.2rem;
  font-size: clamp(3.6rem, 3.125vw + 1.2rem, 5.2rem);
  font-size: clamp(3.6rem, 2.344vw + 1.8rem, 4.8rem);
  font-size: clamp(2.4rem, 2.344vw + 0.6rem, 3.6rem);
  font-weight: 500;
  margin-bottom: 5%;
}
.p-secondTop-maintitle p {
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.391vw + 1.1rem, 1.6rem);
  /*font-weight: 400;*/
  line-height: 2;
}

.p-secondTop__Block ul.slick06 {
  margin: 40px auto;
}
.p-secondTop__Block ul.slick06 li {
  padding: 0 10px;
  text-align: center;
}
.p-secondTop__Block ul.slick06 li img {
  width: 100%;
  margin: 0 auto;
}
.p-secondTop__Block ul.slick06 li p {
  text-align: left;
  font-size: 1.8rem;
  margin: 5px 0;
}
.p-secondTop__Block-title h2 img {
  margin-right: 2em;
}
.p-secondTop__Block-title h2 span {
  font-size: 1.4rem;
  color: #797979;
}
.p-secondTop__Block-title02 h2 {
  position: relative;
  width: 100%;
}
.p-secondTop__Block-title02 h2 img {
  width: 85px;
}
.p-secondTop__Block-title02 h2 span {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: calc(100% - 100px);
  border-bottom: 1px solid #D0340F;
}
.p-secondTop__Block-title03 h2 {
  position: relative;
  width: 100%;
}
.p-secondTop__Block-title03 h2 img {
  width: 163px;
}
.p-secondTop__Block-title03 h2 span {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: calc(100% - 180px);
  border-bottom: 1px solid #D0340F;
}

.p-secondTop-news__list {
  margin: 30px auto 80px;
}
.p-secondTop-news__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.p-secondTop-news__list ul li .cat-name {
  font-size: 1.4rem;
  background: #B4B4B4;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  width: 10em;
  padding: 3px 5px;
  margin-right: 10px;
}
.p-secondTop-news__list ul li .post-time {
  font-size: 1.4rem;
  color: #797979;
  margin-right: 20px;
}
.p-secondTop-news__list ul .news-title {
  font-size: 1.5rem;
  /*font-weight: 400;*/
}

.p-secondTop-campaign__list {
  margin: 30px auto 80px;
}
.p-secondTop-campaign__list ul li {
  border-left: 6px solid #F3BEB4;
  padding-left: 5px;
  margin-bottom: 20px;
}
.p-secondTop-campaign__list ul li a .campaign-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-secondTop-campaign__list ul li a .bdr {
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  width: 80px;
  margin: 8px 0;
}
.p-secondTop-campaign__list ul li a .campain_time {
  font-size: 1.5rem;
  /*font-weight: 400;*/
}

.p-secondTop-seminar__list {
  margin: 30px auto 80px;
}
.p-secondTop-seminar__list ul li {
  border-left: 6px solid #F3BEB4;
  padding-left: 5px;
  margin-bottom: 20px;
}
.p-secondTop-seminar__list ul li a .seminar-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-secondTop-seminar__list ul li a .bdr {
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  width: 80px;
  margin: 8px 0;
}
.p-secondTop-seminar__list ul li a .seminar_time {
  font-size: 1.5rem;
  /*font-weight: 400;*/
}

.p-secondTop-serviceList {
  margin: 50px auto;
}
.p-secondTop-serviceList h3 {
  font-size: 3.2rem;
  font-size: clamp(2.4rem, 1.563vw + 1.2rem, 3.2rem);
  font-size: clamp(1.8rem, 0.977vw + 1.05rem, 2.3rem);
  /*font-weight: 400;*/
  margin-left: 10px;
}
.p-secondTop-serviceList__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.p-secondTop-serviceList__flex .w99 {
  width: 99.99%;
}
.p-secondTop-serviceList__flex .w66 {
  width: 66.66%;
}
.p-secondTop-serviceList__flex .w33 {
  width: 33.33%;
}
.p-secondTop-serviceList__flex .bdr_l {
  border-left: 1px solid #707070;
}
.p-secondTop-serviceList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto 30px;
}
.p-secondTop-serviceList ul li {
  width: 300px;
  height: 70px;
  margin: 10px;
}
.p-secondTop-serviceList ul li a {
  position: relative;
  /*background: #F8F5F1;*/
  text-align: center;
  /*border: 1px solid #707070;*/
  width: 100%;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  padding: 10px 15px 10px 5px;
  /*background: #FDEFEA;*/
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#faede5), to(#e7ccb9));
  background: linear-gradient(to bottom, #faede5, #e7ccb9);
  /*background-image: url(../images/common/btn_bg.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /*border: 1px solid #be9985;*/
  -webkit-box-shadow: 2px 3px 5px #be9985;
          box-shadow: 2px 3px 5px #be9985;
  border-radius: 8px;
  /*&::after {
  	content: "▶";
  	position: absolute;
  	/*bottom: 1px;
  	right: 1px;
  	width: 14px;
  	height: 14px;
  	border: 7px solid #fff;
  	border-top-color: transparent;
  	/* 背景色 */
  /*border-left-color: transparent;
  /* 背景色 */
  /*box-sizing: border-box;*/
  /*	top: 30%;
  	right: 5px;
  	color: #894040;
  	font-size: 1.4rem;
  }*/
}
.p-secondTop-serviceList ul li a div {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1.2;
}

.p-secondTop-advertiseList {
  margin: 50px auto;
}
.p-secondTop-advertiseList h3 {
  font-size: 3.2rem;
  font-size: clamp(2.4rem, 1.563vw + 1.2rem, 3.2rem);
  font-size: clamp(1.8rem, 0.977vw + 1.05rem, 2.3rem);
  /*font-weight: 400;*/
}
.p-secondTop-advertiseList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 50px;
  margin: 20px auto 50px;
}
.p-secondTop-advertiseList ul li {
  width: 140px;
  text-align: center;
  margin-bottom: 30px;
}
.p-secondTop-advertiseList ul li img {
  border: 1px solid #dedede;
  margin: 10px auto;
}
.p-secondTop-advertiseList ul li p {
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.p-secondTop-advertiseList ul li a {
  background: #beb098;
  color: #fff;
  font-size: 1.4rem;
  width: 100%;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .p-secondTop-mv__bg img {
    position: relative;
    right: -10%;
  }
  .p-secondTop-serviceList__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-secondTop-serviceList__flex .w99 {
    width: 100%;
  }
  .p-secondTop-serviceList__flex .w66 {
    width: 100%;
  }
  .p-secondTop-serviceList__flex .w33 {
    width: 100%;
  }
  .p-secondTop-serviceList__flex .bdr_l {
    border-left: none;
  }
  .p-secondTop-serviceList ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .p-secondTop-news__list {
    margin: 20px auto 40px;
  }
  .p-secondTop-news__list ul li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-secondTop-news__list ul .news-title {
    width: 100%;
  }
  .p-secondTop-campaign__list {
    margin: 20px auto 40px;
  }
  .p-secondTop-seminar__list {
    margin: 20px auto 40px;
  }
  .p-secondTop-serviceList {
    margin: 30px auto;
  }
  .p-secondTop-serviceList h3 {
    font-size: 2rem;
  }
  .p-secondTop-serviceList ul li {
    max-width: 100%;
    width: 100%;
    margin: 10px auto;
  }
}
/*----------------------------------------------------------------------------------------
singlepage.scss
----------------------------------------------------------------------------------------*/
.p-singlepage-maintitle {
  position: relative;
  height: 280px;
}
.p-singlepage-maintitle div {
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
.p-singlepage-maintitle h1 {
  font-size: 2.4rem;
  font-size: clamp(1.8rem, 1.172vw + 0.9rem, 2.4rem);
  font-weight: 500;
  color: #787878;
  margin-bottom: 4%;
}
.p-singlepage-maintitle h2 {
  position: relative;
  font-size: 4rem;
  font-size: clamp(2.4rem, 3.125vw + 0rem, 4rem);
  font-weight: 500;
  margin-bottom: 20px;
}
.p-singlepage-maintitle h2 img {
  position: absolute;
  right: 0;
}
.p-singlepage-maintitle p {
  font-size: 1.5rem;
  /*font-weight: 400;*/
}

.p-singlepage__Block h3 {
  position: relative;
  background: #FBEFE9;
  color: #d0340f;
  font-size: 2rem;
  font-weight: 500;
  padding: 10px;
}
.p-singlepage__Block h4 {
  position: relative;
  background: #EFEFEF;
  color: #505050;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 6px 10px;
}
.p-singlepage__Block a.red {
  color: #d0340f;
  border: 1px solid #d0340f;
  border-radius: 15px;
  font-size: 1.5rem;
  padding: 3px 20px;
  margin: 30px 0;
}
.p-singlepage__Block a.blue {
  color: #0070ce;
  font-size: 1.5rem;
}
.p-singlepage__Block a.line {
  text-decoration: underline;
}
.p-singlepage__Block a.bdr_blue {
  color: #0070ce;
  text-decoration: underline;
  font-size: 1.5rem;
}
.p-singlepage__Block a.bdr_bk {
  color: #787878;
  border: 1px solid #787878;
  border-radius: 15px;
  padding: 0 10px;
  font-size: 1.5rem;
}
.p-singlepage__Block a.dl_btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#9f9f9f));
  background: linear-gradient(to bottom, #dbdbdb, #9f9f9f);
  border-radius: 30px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  width: 160px;
  padding: 5px;
}
.p-singlepage__Block p {
  font-size: 1.6rem;
  /*font-weight: 400;*/
}
.p-singlepage__Block p.txt {
  font-size: 1.8rem;
  margin: 10px auto;
}
.p-singlepage__Block p.mb10 {
  margin-bottom: 10px;
}
.p-singlepage__Block p.bold {
  font-weight: 700;
}
.p-singlepage__Block p.al_c {
  text-align: center;
}
.p-singlepage__Block p.al_r {
  text-align: right;
}
.p-singlepage__Block p.bdr {
  border-top: 1px solid rgba(179, 179, 179, 0.5);
  border-bottom: 1px solid rgba(179, 179, 179, 0.5);
  padding: 6px 0;
  margin-bottom: 20px;
  font-weight: 500;
}
.p-singlepage__Block p.bdr_radius {
  border: 1px solid rgba(179, 179, 179, 0.5);
  border-radius: 20px;
  padding: 6px 10px;
  margin-bottom: 20px;
  font-weight: 500;
  margin: 20px auto;
}
.p-singlepage__Block p.daikin img {
  width: 100%;
}
.p-singlepage__Block p.red {
  color: #d0340f;
}
.p-singlepage__Block p.black {
  color: #232323;
}
.p-singlepage__Block p.big {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.p-singlepage__Block div.al_c {
  text-align: center;
}
.p-singlepage__Block div.dell {
  padding: 20px;
}
.p-singlepage__Block video {
  width: 100%;
}
.p-singlepage__Block img {
  width: 100%;
}
.p-singlepage__Block span.pink {
  color: #de8274;
}
.p-singlepage__Block span.gray {
  color: #787878;
}

.p-singlepage__txtarea {
  margin: 30px auto;
}
.p-singlepage__txtarea.mb80 {
  margin-bottom: 80px;
}
.p-singlepage__txtarea.p20 {
  padding: 20px;
}

.p-singlepage__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-singlepage__flex-img {
  width: 40%;
  max-width: 370px;
}
.p-singlepage__flex-img img {
  width: 100%;
}
.p-singlepage__flex-list {
  width: 60%;
  padding-left: 2%;
}
.p-singlepage__flex-list .person {
  padding: 20px;
  margin-bottom: 10px;
}
.p-singlepage__flex-list .person p {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-singlepage__flex-list .person p span {
  color: #DE8274;
}
.p-singlepage__flex-list .person ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-singlepage__flex-list .person ul li {
  width: 23%;
  background: #DBDBDB;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.391vw + 1.1rem, 1.6rem);
  padding: 3px;
}
.p-singlepage__flex-list .person ul li.on {
  background: -webkit-gradient(linear, left top, left bottom, from(#EDBBB1), to(#DE8274));
  background: linear-gradient(to bottom, #EDBBB1, #DE8274);
}
.p-singlepage__flex-list .range {
  padding: 20px;
}
.p-singlepage__flex-list .range p {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-singlepage__flex-list .range p span {
  color: #E7914D;
}
.p-singlepage__flex-list .range ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-singlepage__flex-list .range ul li {
  width: 23%;
  background: #DBDBDB;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.391vw + 1.1rem, 1.6rem);
  padding: 3px;
}
.p-singlepage__flex-list .range ul li.on {
  background: -webkit-gradient(linear, left top, left bottom, from(#F3BB95), to(#E7914D));
  background: linear-gradient(to bottom, #F3BB95, #E7914D);
}

.p-singlepage__topTxt {
  margin: 30px auto 50px;
}
.p-singlepage__topTxt p {
  font-size: 1.6rem;
  /*font-weight: 400;*/
  line-height: 1.75;
}
.p-singlepage__topTxt p.area_service {
  margin: 10px auto;
}
.p-singlepage__topTxt p.area_service span {
  background: #e9dfd6;
  color: #b59274;
  padding: 0 10px;
}
.p-singlepage__topTxt p.area_service span.red {
  background: none;
  color: #d0340f;
}

.p-singlepage__btn {
  margin: 50px auto 80px;
}
.p-singlepage__btn.mtb30 {
  margin: 30px auto;
}
.p-singlepage__btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 40px;
}
.p-singlepage__btn__box {
  width: 31%;
  max-width: 290px;
  height: 60px;
}
.p-singlepage__btn__box a {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#e88778), to(#d0340f));
  background: linear-gradient(to bottom, #e88778, #d0340f);
  border-radius: 8px;
  color: #fff;
  padding: 12px 5px;
}
.p-singlepage__btn__box a p {
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-singlepage__btn__box a.blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#5d71d1), to(#34367f));
  background: linear-gradient(to bottom, #5d71d1, #34367f);
  color: #fff;
}
.p-singlepage__btn__box.finance {
  width: auto;
  max-width: 390px;
}
.p-singlepage__btn__box.w290 {
  width: 290px;
}
.p-singlepage__btn__box.w290 p {
  margin: 0;
}

.p-singlepage-tokuten {
  margin: 30px auto;
}
.p-singlepage-tokuten__wari {
  text-align: right;
}
.p-singlepage-tokuten__wari a {
  color: #797979;
  border: 1px solid rgba(160, 160, 160, 0.5);
  padding: 1px 12px;
  border-radius: 12px;
  font-size: 1.4rem;
}
.p-singlepage-tokuten__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-singlepage-tokuten__flex-icon {
  width: 70px;
}
.p-singlepage-tokuten__flex-txt {
  width: calc(100% - 70px);
}
.p-singlepage-tokuten p {
  font-size: 1.5rem;
  /*font-weight: 400;*/
  line-height: 1.6666666667;
  margin-bottom: 15px;
}
.p-singlepage-tokuten p.big {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
.p-singlepage-tokuten .red {
  color: #d0340f;
}
.p-singlepage-tokuten .pink {
  color: #DE8274;
}

.p-singlepage-guide {
  margin: 30px auto 50px;
}
.p-singlepage-guide img {
  width: 100%;
  margin-bottom: 10px;
}

.p-singlepage-caution {
  border: 1px solid rgba(179, 179, 179, 0.5);
  padding: 20px;
  margin: 30px auto 80px;
}
.p-singlepage-caution.mtb30 {
  margin: 30px auto;
}
.p-singlepage-caution p {
  font-size: 1.4rem;
  /*font-weight: 400;*/
  margin-bottom: 10px;
}
.p-singlepage-caution ul li {
  position: relative;
  font-size: 1.4rem;
  /*font-weight: 400;*/
  line-height: 1.7142857143;
  padding-left: 1.5em;
  margin-left: 0.5em;
}
.p-singlepage-caution ul li::before {
  display: block;
  content: "●";
  color: #787878;
  position: absolute;
  left: 0;
}

.p-singlepage-bdrBox {
  border: 1px solid #d0340f;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px auto;
}
.p-singlepage-bdrBox__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-singlepage-bdrBox__title {
  position: relative;
  width: 26%;
  background: #d0340f;
}
.p-singlepage-bdrBox__title p {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.p-singlepage-bdrBox__txt {
  width: 74%;
  padding: 20px;
}
.p-singlepage-bdrBox__txt p {
  font-size: 1.4rem;
}
.p-singlepage-bdrBox__txt-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}
.p-singlepage-bdrBox__txt-flex p {
  margin-bottom: 0;
  font-weight: 500;
}
.p-singlepage-bdrBox__txt-flex input {
  background: #FBEFE9;
  border: 1px solid #d0340f;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 10px;
  width: auto;
  max-width: 240px;
  text-align: center;
  margin: 0 10px;
}
.p-singlepage-bdrBox__txt-flex button {
  border: none;
  background: #DE8274;
  border-radius: 14px;
  color: #fff;
  padding: 5px 12px;
  font-size: 1.5rem;
  /*font-weight: 400;*/
}

.p-singlepage-bdrBox02 {
  border: 1px dotted #d0340f;
  border-radius: 8px;
  margin: 30px auto;
}
.p-singlepage-bdrBox02__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-singlepage-bdrBox02__title {
  width: 26%;
  padding: 20px;
  text-align: center;
}
.p-singlepage-bdrBox02__title span.red {
  color: #d0340f;
}
.p-singlepage-bdrBox02__txt {
  width: 74%;
  padding: 20px 20px 20px 0;
}
.p-singlepage-bdrBox02__txt ul {
  border-left: 1px solid #d0340f;
  padding-left: 20px;
}
.p-singlepage-bdrBox02__txt ul li {
  position: relative;
  font-size: 1.6rem;
  /*font-weight: 400;*/
  padding-left: 1.2em;
}
.p-singlepage-bdrBox02__txt ul li::before {
  display: block;
  content: "●";
  color: #DE8274;
  position: absolute;
  left: 0;
}

.p-singlepage-bdrBox03 {
  border: 4px double #707070;
  margin: 30px auto;
  padding: 16px;
}
.p-singlepage-bdrBox03 p {
  font-size: 1.4rem;
  /*font-weight: 400;*/
  line-height: 1.7142857143;
  margin-bottom: 30px;
}
.p-singlepage-bdrBox03 p:nth-child(odd) {
  margin-bottom: 10px;
}

.p-singlepage__bg_orange {
  margin: 30px auto;
}
.p-singlepage__bg_orange p {
  background: #FCE9CE;
  border-radius: 20px;
  font-size: 1.5rem;
  /*font-weight: 400;*/
  text-align: center;
  padding: 5px;
}
.p-singlepage__bg_orange p span.orenge {
  font-size: 1.8rem;
  font-weight: 500;
  color: #DD8700;
}

.p-singlepage-point {
  margin: 30px auto 80px;
}
.p-singlepage-point ul li {
  position: relative;
  font-size: 2rem;
  padding-left: 1.2em;
  margin-bottom: 20px;
}
.p-singlepage-point ul li::before {
  display: block;
  content: "●";
  color: #DE8274;
  position: absolute;
  left: 0;
}
.p-singlepage-point ul li span.red {
  color: #d0340f;
}
.p-singlepage-point ul li small {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
  /*font-weight: 400;*/
  line-height: 1.6666666667;
}

.p-singlepage-service {
  padding: 20px 0;
  margin: 30px auto 50px;
}
.p-singlepage-service p {
  font-size: 1.5rem;
  /*font-weight: 400;*/
  margin-bottom: 10px;
}
.p-singlepage-service ul li {
  position: relative;
  font-size: 1.5rem;
  /*font-weight: 400;*/
  line-height: 1.6666666667;
  padding-left: 1.5em;
  margin-left: 0.5em;
}
.p-singlepage-service ul li::before {
  display: block;
  content: "●";
  color: #787878;
  position: absolute;
  left: 0;
}

.p-singlepage__qanda {
  margin: 30px auto;
}
.p-singlepage__qanda dl {
  font-size: 1.6rem;
}
.p-singlepage__qanda dl dt {
  position: relative;
  padding: 5px 0 10px 40px;
}
.p-singlepage__qanda dl dt span {
  position: absolute;
  top: 5px;
  left: 0;
}
.p-singlepage__qanda dl dd {
  position: relative;
  padding: 5px 0 20px 40px;
}
.p-singlepage__qanda dl dd span {
  position: absolute;
  top: 5px;
  left: 0;
}
.p-singlepage__qanda dl dd span.red {
  color: #d0340f;
  position: relative;
  top: 0;
  left: 0;
}
.p-singlepage__qanda dl dd a.bdrbox {
  padding: 10px 15px;
  border: 1px solid #3782d4;
  color: #3782d4;
  margin: 10px 0;
}

.p-singlepage__step ul li {
  position: relative;
  padding-left: 46px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.p-singlepage__step ul li span {
  position: absolute;
  top: 4px;
  left: 0;
  background: #3782d4;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 5px;
}

.p-singlepage__check {
  margin: 30px auto 80px;
}
.p-singlepage__check ul li {
  position: relative;
  padding-left: 80px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.p-singlepage__check ul li span {
  position: absolute;
  top: 4px;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#e88778), to(#f3beb4));
  background: linear-gradient(to bottom, #e88778, #f3beb4);
  border-radius: 4px;
  color: #fff;
  font-size: 1.6rem;
  padding: 2px 5px;
}
.p-singlepage__check ul li span.cl_blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#5fb2e3), to(#b6dbf1));
  background: linear-gradient(to bottom, #5fb2e3, #b6dbf1);
}
.p-singlepage__check ul li span.cl_brown {
  background: -webkit-gradient(linear, left top, left bottom, from(#b59274), to(#d4c0af));
  background: linear-gradient(to bottom, #b59274, #d4c0af);
}

.p-singlepage__flex-col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 40px;
  margin: 50px auto 80px;
}
.p-singlepage__flex-col3-box {
  width: 31%;
  max-width: 292px;
  text-align: center;
}
.p-singlepage__flex-col3-box img {
  width: 100%;
}
.p-singlepage__flex-col3-box a.red {
  margin: 10px auto;
}

.p-singlepage__flex-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 40px;
  margin: 50px auto 80px;
}
.p-singlepage__flex-col2.mtb30 {
  margin: 30px auto;
}
.p-singlepage__flex-col2.m00 {
  margin: 0;
}
.p-singlepage__flex-col2-box {
  width: auto;
  max-width: 330px;
}
.p-singlepage__flex-col2-box img {
  width: 100%;
}
.p-singlepage__flex-col2-box02 {
  width: 66%;
}
.p-singlepage__flex-col2-box02 p {
  margin: 10px 0;
}
.p-singlepage__flex-col2-box02 a.red {
  margin: 10px auto;
}
.p-singlepage__flex-col2-box02 a.cl_red {
  color: #d0340f;
}
.p-singlepage__flex-col2-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-singlepage__flex-col2-box03:first-child {
  padding-right: 20px;
  border-right: 1px solid #d0340f;
}
.p-singlepage__flex-col2-box03.w110 {
  min-width: 110px;
}
.p-singlepage__flex-col2-box03:nth-child(2) {
  padding-left: 20px;
}
.p-singlepage__flex-col2-box03 p {
  color: #d0340f;
  font-size: 1.5rem;
}
.p-singlepage__flex-col2-box03 ul li {
  position: relative;
  font-size: 1.5rem;
  padding-left: 1.2em;
}
.p-singlepage__flex-col2-box03 ul li::before {
  display: block;
  content: "●";
  color: #DE8274;
  position: absolute;
  left: 0;
}
.p-singlepage__flex-col2-03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-singlepage__flex-col2-box04 {
  width: 50%;
  max-width: 432px;
  margin: 20px auto;
}
.p-singlepage__flex-col2-box04 p {
  margin-top: 10px;
}
.p-singlepage__flex-col2-box05:first-child {
  padding-right: 20px;
  border-right: 1px solid #707070;
}
.p-singlepage__flex-col2-box05:nth-child(2) {
  padding-left: 20px;
}
.p-singlepage__flex-col2-box05 p {
  font-size: 1.5rem;
}
.p-singlepage__flex-col2-box06 {
  width: 50%;
  max-width: 462px;
  margin: 20px auto;
}

.p-singlepage__map {
  margin: 30px auto 80px;
}
.p-singlepage__map p {
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 0.391vw + 1.3rem, 1.8rem);
  margin-bottom: 10px;
}
.p-singlepage__map ul li {
  position: relative;
  font-size: 1.5rem;
  padding-left: 1.2em;
}
.p-singlepage__map ul li::before {
  display: block;
  content: "●";
  color: #787878;
  position: absolute;
  left: 0;
}
.p-singlepage__map iframe {
  width: 100%;
  max-width: 510px;
  height: auto;
  aspect-ratio: 51/45;
  margin: 20px auto 30px;
}

@media screen and (max-width: 768px) {
  .p-singlepage-maintitle {
    height: 200px;
  }
  .p-singlepage__flex-list .person {
    padding: 15px;
  }
  .p-singlepage__flex-list .range {
    padding: 15px;
  }
}
@media screen and (max-width: 480px) {
  .p-singlepage-maintitle {
    height: 150px;
  }
  .p-singlepage-maintitle h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .p-singlepage-maintitle h2 {
    /*font-size: 3.2rem;*/
  }
  .p-singlepage-maintitle h2 img {
    height: 40px;
  }
  .p-singlepage__Block h3 {
    font-size: 1.8rem;
  }
  .p-singlepage__Block h4 {
    font-size: 1.4rem;
  }
  .p-singlepage__Block a.red {
    font-size: 1.3rem;
  }
  .p-singlepage__Block p.big {
    font-size: 1.8rem;
  }
  .p-singlepage__txtarea {
    margin: 20px auto;
  }
  .p-singlepage__txtarea.mb80 {
    margin-bottom: 50px;
  }
  .p-singlepage__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-singlepage__flex-img {
    width: 80%;
    margin: 10px auto;
  }
  .p-singlepage__flex-list {
    width: 100%;
    padding: 0;
    margin: 10px auto;
  }
  .p-singlepage__flex-list .person ul li,
  .p-singlepage__flex-list .range ul li {
    width: 48%;
  }
  .p-singlepage__topTxt p {
    font-size: 1.5rem;
  }
  .p-singlepage__btn {
    margin: 30px auto 50px;
  }
  .p-singlepage__btn__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-singlepage__btn__box {
    width: 100%;
    max-width: 260px;
    height: 50px;
    margin: 5px auto;
  }
  .p-singlepage__btn__box a {
    padding: 6px 5px;
  }
  .p-singlepage__btn__box a p {
    font-size: 1.6rem;
  }
  .p-singlepage-guide {
    margin: 10px auto 30px;
    padding: 20px 0;
    overflow-y: scroll;
  }
  .p-singlepage-guide img {
    width: 700px;
  }
  .p-singlepage-caution {
    margin: 10px auto 50px;
    padding: 10px;
  }
  .p-singlepage-bdrBox {
    margin: 20px auto;
  }
  .p-singlepage-bdrBox__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-singlepage-bdrBox__title {
    width: 100%;
    height: 50px;
  }
  .p-singlepage-bdrBox__txt {
    width: 100%;
    padding: 10px;
  }
  .p-singlepage-bdrBox__txt-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-singlepage-bdrBox__txt-flex p {
    width: 100%;
    text-align: left;
  }
  .p-singlepage-bdrBox__txt-flex input {
    margin: 10px;
  }
  .p-singlepage-bdrBox02 {
    margin: 20px auto;
  }
  .p-singlepage-bdrBox02__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-singlepage-bdrBox02__title {
    width: 100%;
    height: 50px;
  }
  .p-singlepage-bdrBox02__txt {
    width: 100%;
    padding: 10px;
  }
  .p-singlepage-bdrBox02__txt ul {
    border-left: none;
    padding-left: 0;
  }
  .p-singlepage-bdrBox02__txt ul li {
    font-size: 1.4rem;
    padding-left: 1.2em;
  }
  .p-singlepage__bg_orange {
    margin: 20px auto;
  }
  .p-singlepage__bg_orange p {
    font-size: 1.4rem;
  }
  .p-singlepage__bg_orange p span.orenge {
    font-size: 1.6rem;
  }
  .p-singlepage-point {
    margin: 20px auto;
  }
  .p-singlepage-point ul li {
    position: relative;
    font-size: 1.6rem;
  }
  .p-singlepage-service {
    margin: 20px auto 30px;
  }
  .p-singlepage__qanda {
    margin: 20px auto;
  }
  .p-singlepage__qanda dl {
    font-size: 1.4rem;
  }
  .p-singlepage__check {
    margin: 20px auto;
  }
  .p-singlepage__check ul li {
    padding-left: 70px;
    font-size: 1.6rem;
  }
  .p-singlepage__check ul li span {
    font-size: 1.4rem;
  }
  .p-singlepage__flex-col3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px auto 50px;
  }
  .p-singlepage__flex-col3-box {
    width: 100%;
    max-width: 260px;
    margin: 5px auto;
  }
  .p-singlepage__flex-col2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px auto 50px;
  }
  .p-singlepage__flex-col2-box, .p-singlepage__flex-col2-box02 {
    width: 100%;
  }
  .p-singlepage__flex-col2-02 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-singlepage__flex-col2-box03 {
    width: 100%;
  }
  .p-singlepage__flex-col2-box03:first-child {
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid #d0340f;
  }
  .p-singlepage__flex-col2-box03:nth-child(2) {
    padding: 10px;
  }
  .p-singlepage__flex-col2-box04 {
    width: 100%;
  }
  .p-singlepage__flex-col2-box06 {
    width: 100%;
    margin: 10px auto;
  }
  .p-singlepage__map {
    margin: 20px auto;
  }
  .p-singlepage-imgarea {
    margin: 10px auto 30px;
    padding: 20px 0;
    overflow-y: scroll;
  }
  .p-singlepage-imgarea img {
    width: 600px;
  }
}
/*----------------------------------------------------------------------------------------
fukuri.scss
----------------------------------------------------------------------------------------*/
.p-fukuri-block h5 {
  background: #fbefe9;
  border: 1px solid #de8274;
  border-radius: 25px;
  color: #d56654;
  font-size: 2.4rem;
  font-size: clamp(1.8rem, 1.172vw + 0.9rem, 2.4rem);
  text-align: center;
  padding: 6px;
  margin-bottom: 20px;
}
.p-fukuri-block p {
  font-size: 1.6rem;
}
.p-fukuri-block p.big {
  font-size: 2rem;
}
.p-fukuri-block a.blue {
  color: #0070ce;
}

.p-fukuri-red {
  padding: 5px 10px;
  border: 1px solid #c32700;
  color: #c32700;
  display: inline-block;
}

.p-fukuri-flex-col2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px auto;
}
.p-fukuri-flex-col2 img.img_on {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}
.p-fukuri-flex-col2 .p-fukuri-flex-box {
  border: 1px solid #de8274;
  border-radius: 6px;
  width: 48.5%;
  max-width: 460px;
  overflow: hidden;
}
.p-fukuri-flex-col2 .p-fukuri-flex-box__title {
  background: #de8274;
  color: #fff;
  font-size: 1.8rem;
  padding: 15px;
  text-align: center;
}
.p-fukuri-flex-col2 .p-fukuri-flex-box__txt {
  padding: 15px;
}
.p-fukuri-flex-col2 .p-fukuri-flex-box__txt p {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-fukuri-flex-col2 .p-fukuri-flex-box__txt table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid #707070;
  margin: 10px auto;
  font-size: 1.5rem;
}
.p-fukuri-flex-col2 .p-fukuri-flex-box__txt table th {
  width: 20%;
}
.p-fukuri-flex-col2 .p-fukuri-flex-box__txt table th p {
  padding: 10px;
  border-right: 1px solid #707070;
}
.p-fukuri-flex-col2 .p-fukuri-flex-box__txt table td {
  padding: 10px 15px;
}

.p-fukuri-flex-box02 {
  border: 1px solid #707070;
  border-radius: 6px;
  width: 48.5%;
  max-width: 460px;
  padding: 15px;
  text-align: center;
}
.p-fukuri-flex-box02__title {
  font-size: 1.8rem;
  border-bottom: 1px solid #707070;
  padding: 0 15px 15px;
}
.p-fukuri-flex-box02__txt {
  padding: 15px 15px 0;
}

.p-fukuri-record {
  margin: 50px auto;
}
.p-fukuri-record table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: 10px auto;
  font-size: 1.5rem;
  text-align: center;
}
.p-fukuri-record table th {
  border: 1px solid #b59274;
  background: #b59274;
  color: #fff;
  width: 26.66%;
  padding: 8px;
}
.p-fukuri-record table th:first-child {
  width: 20%;
  background: #c6aa92;
}
.p-fukuri-record table th:nth-child(3) {
  background: #c6aa92;
}
.p-fukuri-record table td {
  border: 1px solid #b59274;
  background: #f7f5f1;
  width: 26.66%;
  padding: 5px;
}
.p-fukuri-record table td:first-child {
  width: 20%;
  background: none;
}
.p-fukuri-record table td:nth-child(3) {
  background: none;
}

.p-fukuri-service table {
  table-layout: fixed;
  width: 100%;
  margin: 10px auto;
}
.p-fukuri-service table th {
  width: 21%;
  background: #f7f5f1;
  color: #844d16;
  font-size: 1.6rem;
  padding: 10px;
}
.p-fukuri-service table td {
  padding: 0 20px;
}
.p-fukuri-service table td ul li {
  position: relative;
  font-size: 1.5rem;
  padding-left: 1.2em;
}
.p-fukuri-service table td ul li::before {
  display: block;
  content: "●";
  color: #DE8274;
  position: absolute;
  left: 0;
}

.p-fukuri-imgarea img {
  width: 100%;
  margin-bottom: 10px;
}

.p-fukuri-bdr_box {
  position: relative;
  border: 1px solid #b1b1b1;
  border-radius: 20px;
  padding: 20px 40px;
  width: 100%;
  text-align: left;
  margin: 50px auto 70px;
  color: #d13f1d;
}
.p-fukuri-bdr_box.box02 {
  color: #06549e;
}
.p-fukuri-bdr_box.box03 {
  color: #019e75;
}
.p-fukuri-bdr_box .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-fukuri-bdr_box .flex-txt {
  text-align: left;
  width: calc(100% - 210px);
}
.p-fukuri-bdr_box h4 {
  background: none;
  border-bottom: 1px solid #b1b1b1;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0 0 10px;
  color: inherit;
}
.p-fukuri-bdr_box p {
  color: #282828;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.p-fukuri-bdr_box img {
  width: 210px;
  margin: 0 auto;
}
.p-fukuri-bdr_box .link_box {
  position: absolute;
  bottom: -20px;
  left: 40px;
  right: 0;
}
.p-fukuri-bdr_box .link_box a {
  display: inline-block;
  position: relative;
  width: 390px;
  font-size: 1.6rem;
  padding: 7px 10px;
  border: 1px solid #d13f1d;
  border-radius: 40px;
  background: #fff;
  margin: 0;
  text-align: left;
}
.p-fukuri-bdr_box .link_box a span {
  color: #d13f1d;
}
.p-fukuri-bdr_box .link_box a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 1px solid #d13f1d;
  border-right: 1px solid #d13f1d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.p-fukuri-bdr_box.box02 .link_box a {
  border: 1px solid #06549e;
}
.p-fukuri-bdr_box.box02 .link_box a span {
  color: #06549e;
}
.p-fukuri-bdr_box.box02 .link_box a::after {
  border-top: 1px solid #06549e;
  border-right: 1px solid #06549e;
}
.p-fukuri-bdr_box.box03 .link_box a {
  border: 1px solid #019e75;
}
.p-fukuri-bdr_box.box03 .link_box a span {
  color: #019e75;
}
.p-fukuri-bdr_box.box03 .link_box a::after {
  border-top: 1px solid #019e75;
  border-right: 1px solid #019e75;
}
.p-fukuri-bdr_box .link_box a p {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.p-fukuri-bdr_box .link_box a:hover {
  opacity: 1;
}
.p-fukuri-bdr_box .link_box a:hover p {
  opacity: 0.8;
}

#faq {
  padding-top: 180px;
  margin-top: -180px;
}

@media screen and (max-width: 768px) {
  .p-fukuri-bdr_box {
    padding: 20px 20px 40px;
    margin: 30px auto 50px;
  }
}
@media screen and (max-width: 480px) {
  .p-fukuri-flex-col2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-fukuri-flex-col2 img.img_on {
    position: relative;
    top: auto;
    margin: 10px auto;
  }
  .p-fukuri-flex-box {
    width: 100%;
  }
  .p-fukuri-flex-box02 {
    width: 100%;
    margin-bottom: 10px;
  }
  .p-fukuri-flex-box02__txt {
    padding: 15px 0 0;
  }
  .p-fukuri-imgarea {
    padding: 20px 0;
    overflow-y: scroll;
  }
  .p-fukuri-imgarea img {
    width: 700px;
  }
  .p-fukuri-bdr_box {
    border-radius: 20px;
    padding: 20px 20px 40px;
    margin: 30px auto 50px;
    text-align: center;
  }
  .p-fukuri-bdr_box .flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-fukuri-bdr_box .flex-txt {
    width: 100%;
  }
  .p-fukuri-bdr_box h4 {
    font-size: 1.8rem;
  }
  .p-fukuri-bdr_box .link_box {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .p-fukuri-bdr_box .link_box a {
    width: 330px;
  }
  .p-fukuri-bdr_box .link_box a p {
    font-size: 1.5rem;
  }
}
/*----------------------------------------------------------------------------------------
privacypolicy.scss
----------------------------------------------------------------------------------------*/
ol.privacypolicy,
ol.handling {
  margin-top: 20px;
  font-weight: 400;
}
ol.privacypolicy li,
ol.handling li {
  margin-bottom: 20px;
  margin-left: 20px;
  font-size: 1.4rem;
  list-style: decimal;
}
ol.privacypolicy ol,
ol.handling ol {
  margin-top: 10px;
}
ol.privacypolicy ol li,
ol.handling ol li {
  margin-bottom: 10px;
}

ol.handling h4 {
  background: none;
  color: #393939;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0;
}

.seitei {
  text-align: right;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 400;
}

.seitei__dl > .dl-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.4rem;
  font-weight: 400;
}

.seitei__dl > .dl-li > dt {
  width: 12.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}

.seitei__dl > .dl-li > dd {
  width: 5.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}

/*個人情報の取り扱いについて-制定*/
.handling-seitei {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.4rem;
  font-weight: 400;
}
.handling-seitei ul {
  list-style: none;
  padding: 0;
}
.handling-seitei ul li {
  margin-bottom: 5px;
}

table.customer {
  table-layout: fixed;
  width: 100%;
  font-size: 1.4rem;
}
table.customer th {
  width: 30%;
  font-weight: 500;
  text-align: left;
  padding-bottom: 15px;
  padding-right: 10px;
}
table.customer td {
  width: 70%;
  padding-bottom: 15px;
}

@media (min-width: 1024px) {
  .handling-seitei dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .handling-seitei dl dt {
    margin-right: 1em;
  }
}
@media (max-width: 768px) {
  table.customer th br {
    display: none;
  }
}
/*----------------------------------------------------------------------------------------
news.scss
----------------------------------------------------------------------------------------*/
.p-news-maintitle {
  position: relative;
  height: 100px;
}
.p-news-maintitle div {
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 100%;
  padding: 10px 0;
}
.p-news-maintitle h1 {
  font-size: 5.2rem;
  font-size: clamp(3.6rem, 3.125vw + 1.2rem, 5.2rem);
  font-size: clamp(3.6rem, 2.344vw + 1.8rem, 4.8rem);
  font-size: clamp(2.4rem, 2.344vw + 0.6rem, 3.6rem);
  font-weight: 500;
  margin-bottom: 5%;
}

.p-news-fy-tabs {
  position: relative;
  z-index: 3;
  margin-bottom: 50px;
}
.p-news-fy-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-news-fy-tabs__item {
  font-size: 1.8rem;
  margin-right: 4em;
}
.p-news-txt {
  font-size: 1.8rem;
}

/* 個別ページ */
.p-news-singlepage {
  margin: 30px auto;
}
.p-news-singlepage ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.p-news-singlepage ul li .cat-name {
  font-size: 1.4rem;
  background: #B4B4B4;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  width: 10em;
  padding: 3px 5px;
  margin-right: 10px;
}
.p-news-singlepage ul li .post-time {
  font-size: 1.4rem;
  color: #797979;
  margin-right: 20px;
}
.p-news-singlepage ul .news-title {
  font-size: 1.5rem;
  font-weight: 500;
}

.p-news-singlepage-cnts {
  font-size: 1.6rem;
}

/*----------------------------------------------------------------------------------------
campaign.scss
----------------------------------------------------------------------------------------*/
.p-campaign-maintitle {
  position: relative;
  /*height: 100px;*/
}
.p-campaign-maintitle div {
  position: relative;
  /*top: 50%;
  left: 0;
  transform: translatey(-50%);
  width: 100%;
  padding: 10px 0;*/
}
.p-campaign-maintitle h1 {
  font-size: 5.2rem;
  font-size: clamp(3.6rem, 3.125vw + 1.2rem, 5.2rem);
  font-size: clamp(3.6rem, 2.344vw + 1.8rem, 4.8rem);
  font-size: clamp(2.4rem, 2.344vw + 0.6rem, 3.6rem);
  font-size: clamp(2.4rem, 1.172vw + 1.5rem, 3rem);
  font-weight: 500;
  margin-bottom: 5%;
}

.p-campaign-singlepage h2.campain_time {
  margin-bottom: 30px;
  font-weight: 500;
}

.p-campaign__listBlock {
  margin: 30px auto;
}
.p-campaign__listBlock-title {
  width: 100%;
}
.p-campaign__listBlock-title h2 {
  font-size: 1.6rem;
  color: #A0A0A0;
}
.p-campaign__listBlock-title h2 img {
  max-width: 100%;
  margin-right: 1em;
}
.p-campaign__listBlock-title h2 span {
  font-size: 2rem;
}
.p-campaign__listBlock ul {
  margin: 40px auto;
}
.p-campaign__listBlock ul.camlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-campaign__listBlock ul li {
  width: 33%;
  max-width: 317px;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 30px;
}
.p-campaign__listBlock ul li a {
  width: 100%;
}
.p-campaign__listBlock ul li .camlist-img {
  width: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
}
.p-campaign__listBlock ul li .camlist-img img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  margin: 0 auto;
}
.p-campaign__listBlock ul li p.title {
  text-align: left;
  font-size: 1.8rem;
  margin: 5px 0 10px;
}
.p-campaign__listBlock ul li p.campain_time {
  text-align: left;
  font-size: 1.4rem;
}
.p-campaign__listBlock ul.slick04 li {
  max-width: 100%;
}

@media screen and (max-width: 480px) {
  .p-campaign__listBlock ul.camlist {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-campaign__listBlock ul.camlist li {
    width: 100%;
  }
}
/* 個別ページ */
/*----------------------------------------------------------------------------------------
seminar.scss
----------------------------------------------------------------------------------------*/
.p-seminar-maintitle {
  position: relative;
  /*height: 100px;*/
}
.p-seminar-maintitle div {
  position: relative;
  /*top: 50%;
  left: 0;
  transform: translatey(-50%);
  width: 100%;
  padding: 10px 0;*/
}
.p-seminar-maintitle h1 {
  font-size: 5.2rem;
  font-size: clamp(3.6rem, 3.125vw + 1.2rem, 5.2rem);
  font-size: clamp(3.6rem, 2.344vw + 1.8rem, 4.8rem);
  font-size: clamp(2.4rem, 2.344vw + 0.6rem, 3.6rem);
  font-size: clamp(2.4rem, 1.172vw + 1.5rem, 3rem);
  font-weight: 500;
  margin-bottom: 5%;
}

.p-seminar-singlepage h2.seminar_time {
  margin-bottom: 30px;
  font-weight: 500;
}

.p-seminar-tabs {
  position: relative;
  z-index: 3;
  margin-bottom: 50px;
}
.p-seminar-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-seminar-tabs__item {
  font-size: 1.8rem;
  margin-right: 4em;
}
.p-seminar-endlist {
  position: absolute;
  right: 0;
  top: 0;
}

.p-seminar__listBlock {
  margin: 30px auto;
}
.p-seminar__listBlock-title {
  width: 100%;
}
.p-seminar__listBlock-title h2 {
  font-size: 1.6rem;
  color: #A0A0A0;
}
.p-seminar__listBlock-title h2 img {
  max-width: 100%;
  margin-right: 1em;
}
.p-seminar__listBlock-title h2 span {
  font-size: 2rem;
}
.p-seminar__listBlock ul {
  margin: 40px auto;
}
.p-seminar__listBlock ul li {
  padding: 0 10px;
  text-align: center;
  margin-bottom: 30px;
}
.p-seminar__listBlock ul li a {
  width: 100%;
}
.p-seminar__listBlock ul li .slicklist-img {
  width: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
}
.p-seminar__listBlock ul li .slicklist-img img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  margin: 0 auto;
}
.p-seminar__listBlock ul li p.title {
  text-align: left;
  font-size: 1.8rem;
  margin: 5px 0 10px;
}
.p-seminar__listBlock ul li p.campain_time {
  text-align: left;
  font-size: 1.4rem;
}
.p-seminar__listBlock .seminarlist li {
  margin: 20px auto 50px;
}
.p-seminar__listBlock .seminarlist li h3 {
  text-align: left;
  background: #FBEFE9;
  color: #d0340f;
  font-size: 2rem;
  font-weight: 500;
  padding: 10px;
}
.p-seminar__listBlock .seminarlist li h3 span {
  background: #fff;
  border-radius: 20px;
  padding: 3px 15px;
  text-align: center;
  margin-right: 10px;
}
.p-seminar__listBlock .seminarlist li a {
  width: 100%;
  margin: 20px auto;
}
.p-seminar__listBlock .seminarlist-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-seminar__listBlock .seminarlist-flex .seminar-txt {
  width: 67%;
  text-align: left;
}
.p-seminar__listBlock .seminarlist-flex .seminar-img {
  width: 33%;
  max-width: 300px;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
}
.p-seminar__listBlock .seminarlist-flex .seminar-img img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  margin: 0 auto;
}
.p-seminar__listBlock .seminarlist-flex .seminar-title {
  font-size: 2rem;
  font-weight: 600;
  padding: 0 20px 30px 0;
  border-bottom: 1px solid #707070;
  margin-bottom: 30px;
}
.p-seminar__listBlock .seminarlist-flex .seminar_time {
  font-size: 1.6rem;
}
.p-seminar__listBlock .seminarlist-flex .seminar-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
.p-seminar__listBlock .seminarlist-flex .seminar-types span {
  text-align: center;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  width: 110px;
  padding: 5px;
  margin-right: 10px;
}
.p-seminar__listBlock .seminarlist-flex .seminar-types span.is-visitor {
  background: #de8274;
}
.p-seminar__listBlock .seminarlist-flex .seminar-types span.is-online {
  background: #5fb2e3;
}
.p-seminar__listBlock .seminarlist-flex .seminar-types span.is-before {
  background: #c6aa92;
}
.p-seminar__listBlock .seminarlist-flex .seminar-types span.is-open {
  background: #c32700;
}
.p-seminar__listBlock .seminarlist-flex .seminar-types span.is-closed {
  color: #505050;
  background: #dcdcdc;
}

@media screen and (max-width: 480px) {
  .p-seminar-tabs {
    position: relative;
    z-index: 3;
    margin-bottom: 0;
  }
  .p-seminar-tabs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto !important;
  }
  .p-seminar-tabs__item {
    font-size: 1.4rem;
    margin-right: 10px;
    margin-bottom: 0 !important;
  }
  .p-seminar-endlist {
    margin-bottom: 0;
  }
  .p-seminar__listBlock {
    margin: 30px auto;
  }
  .p-seminar__listBlock .seminarlist li h3 {
    font-size: 1.8rem;
  }
  .p-seminar__listBlock .seminarlist-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-seminar__listBlock .seminarlist-flex .seminar-txt {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-seminar__listBlock .seminarlist-flex .seminar-img {
    width: 100%;
  }
  .p-seminar__listBlock .seminarlist-flex .seminar-title {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .p-seminar__listBlock .seminarlist-flex .seminar_time {
    font-size: 1.6rem;
  }
  .p-seminar__listBlock .seminarlist-flex .seminar-types {
    margin-top: 10px;
  }
}
/* 個別ページ */
/*----------------------------------------------------------------------------------------
others.scss
----------------------------------------------------------------------------------------*/
.p-others-maintitle {
  position: relative;
  height: 100px;
  margin-top: 50px;
}
.p-others-maintitle div {
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 100%;
  padding: 10px 0;
}
.p-others-maintitle h1 {
  font-size: 5.2rem;
  font-size: clamp(3.6rem, 3.125vw + 1.2rem, 5.2rem);
  font-size: clamp(3.6rem, 2.344vw + 1.8rem, 4.8rem);
  font-size: clamp(2.4rem, 2.344vw + 0.6rem, 3.6rem);
  font-weight: 500;
  margin-bottom: 5%;
}

.p-others__Block {
  margin: 50px auto 80px;
}
.p-others__Block h3.line {
  background: #de8274;
  color: #fff;
}
.p-others__Block h3.line-step {
  text-align: center;
  max-width: 280px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.p-others__Block img.line_img {
  width: 100%;
  max-width: 480px;
  padding: 10px;
}
.p-others__Block img.line_img02 {
  width: 100%;
  max-width: 200px;
}
.p-others__Block img.line_img03 {
  width: 100%;
  max-width: 280px;
  border: 1px solid #707070;
}

.p-others__bg-box {
  border-radius: 15px;
  padding: 60px 55px;
}

.p-others__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-others__flex-txt {
  max-width: 540px;
  width: 68%;
}
.p-others__flex-txt p.gaiyou {
  font-size: 1.6rem;
  margin: 10px 0;
}
.p-others__flex-txt p.gaiyou span {
  color: #707070;
}
.p-others__flex-txt table.title {
  table-layout: fixed;
  width: 100%;
  border-bottom: 1px solid #707070;
}
.p-others__flex-txt table.title th {
  width: 160px;
  font-size: 1.5rem;
  padding: 5px 0 10px;
}
.p-others__flex-txt table.title th p {
  color: #c32700;
  padding: 3px;
}
.p-others__flex-txt table.title th p.end {
  background: #707070;
  color: #fff;
}
.p-others__flex-txt table.title td {
  font-size: 1.6rem;
  padding: 10px 10px 20px;
}
.p-others__flex-txt table.detail {
  table-layout: fixed;
  width: 100%;
  font-size: 1.5rem;
}
.p-others__flex-txt table.detail th {
  width: 160px;
  font-size: 1.6rem;
  vertical-align: top;
  padding: 5px 0;
}
.p-others__flex-txt table.detail th p {
  background: #fff;
  color: #844d16;
  padding: 8px;
}
.p-others__flex-txt table.detail td {
  font-size: 1.5rem;
  /*font-weight: 400;*/
  padding: 10px;
}
.p-others__flex-txt table.detail td ul li {
  position: relative;
  font-size: 1.5rem;
  /*font-weight: 400;*/
  padding-left: 1.2em;
}
.p-others__flex-txt table.detail td ul li::before {
  display: block;
  content: "※";
  position: absolute;
  left: 0;
}
.p-others__flex-img {
  max-width: 250px;
  width: 30%;
  text-align: center;
}
.p-others__flex-img a {
  margin-bottom: 10px;
}
.p-others__flex-img a img {
  width: 100%;
}

.p-others__Block .p-singlepage-bdrBox02 {
  border-radius: 4px;
}
.p-others__Block .p-singlepage-bdrBox02__txt {
  width: 100%;
  padding: 5px 10px;
}
.p-others__Block .p-others__blue {
  text-decoration: underline;
  color: #0070ce;
}
.p-others__Block dl {
  font-size: 1.5rem;
  margin: 20px 0;
}
.p-others__Block dl dt.toggle-block {
  position: relative;
  padding-left: 1.5rem;
}
.p-others__Block dl dt.toggle-block::before {
  display: block;
  content: "▶";
  position: absolute;
  color: #707070;
  left: 0;
  top: 3px;
  font-size: 1.2rem;
}
.p-others__Block dl dt.toggle-block p {
  position: relative;
}
.p-others__Block dl dt.toggle-block p span {
  position: absolute;
}
.p-others__Block dl dt.toggle-block p span::after {
  position: absolute;
  display: block;
  content: "－";
  color: #707070;
}
.p-others__Block dl dt.toggle-block.close p span::after {
  content: "＋";
}
.p-others__Block dl dd.block {
  margin: 20px 0;
}
.p-others__Block dl dd.block ul li {
  font-weight: 500;
  margin-bottom: 10px;
}
.p-others__Block dl dd.block ul li p {
  /*font-weight: 400;*/
  margin-left: 3em;
}

.p-others__btn {
  margin: 50px auto 80px;
}
.p-others__btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 40px;
  margin-bottom: 20px;
}
.p-others__btn__box {
  width: 31%;
  max-width: 290px;
  height: 60px;
}
.p-others__btn__box a.p-others__link {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fbefe9));
  background: linear-gradient(to bottom, #ffffff, #fbefe9);
  border: 1px solid #d0340f;
  border-radius: 8px;
  color: #d0340f;
  padding: 12px 5px;
}
.p-others__btn__box a.p-others__link.my_red {
  background: -webkit-gradient(linear, left top, left bottom, from(#e88778), to(#d0340f));
  background: linear-gradient(to bottom, #e88778, #d0340f);
  color: #fff;
}
.p-others__btn__box a.p-others__link p {
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 500;
}
.p-others__btn__box02 {
  width: 65%;
}
.p-others__btn__box02 p {
  font-size: 1.6rem;
  /*font-weight: 400;*/
}

.p-others-bdrBox {
  border: 1px solid #707070;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px auto;
  padding: 30px;
}
.p-others-bdrBox h5 {
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #707070;
  margin-bottom: 10px;
}
.p-others-bdrBox ul li {
  position: relative;
  font-size: 1.5rem;
  /*font-weight: 400;*/
  padding-left: 1.2em;
}
.p-others-bdrBox ul li::before {
  display: block;
  content: "▶";
  position: absolute;
  color: #707070;
  left: 0;
  top: 3px;
  font-size: 1.2rem;
}
.p-others-bdrBox ul.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px auto;
}
.p-others-bdrBox ul.flex li {
  width: auto;
  min-width: 22%;
  padding: 0;
}
.p-others-bdrBox ul.flex li::before {
  display: none;
}

.p-matsuya-bdr_box {
  position: relative;
  border: 1px solid #de8274;
  background: #fbefe9;
  border-radius: 6px;
  width: 100%;
  text-align: left;
  margin: 50px auto 80px;
}
.p-matsuya-bdr_box-title {
  background: #de8274;
  color: #fff;
  padding: 10px 20px;
}
.p-matsuya-bdr_box-title p {
  font-size: 1.8rem;
}
.p-matsuya-bdr_box-txt {
  padding: 20px;
}
.p-matsuya-bdr_box-txt p {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.p-matsuya-bdrBox02 {
  border: 1px dotted #d0340f;
  margin: 20px auto;
  text-align: center;
}
.p-matsuya-bdrBox02 p {
  font-size: 1.8rem;
  color: #d0340f;
  line-height: 2;
}

.p-others__tablearea table {
  table-layout: fixed;
  width: 100%;
  font-size: 1.5rem;
  border-collapse: collapse;
  text-align: left;
  font-weight: 500;
}
.p-others__tablearea table th {
  width: 30%;
  border: 1px solid rgba(179, 179, 179, 0.5);
  padding: 5px;
}
.p-others__tablearea table th:last-child {
  width: 40%;
}
.p-others__tablearea table td {
  border: 1px solid rgba(179, 179, 179, 0.5);
  padding: 5px;
}
.p-others__tablearea table td.gray {
  background: #efefef;
  font-weight: 600;
}
.p-others__tablearea table td a {
  position: relative;
  width: 100%;
}
.p-others__tablearea table td a::after {
  position: absolute;
  display: block;
  content: "▶";
  color: #b3b3b3;
  font-size: 1.2rem;
  bottom: 3px;
  right: 0;
}
.p-others__tablearea table .red {
  width: 10%;
  background: #fbefe9;
  color: #d56654;
  text-align: center;
}
.p-others__tablearea table .blue {
  width: 10%;
  background: #e1f5ff;
  color: #0e99d8;
  text-align: center;
}
.p-others__tablearea table .green {
  width: 10%;
  background: #e2f4f5;
  color: #00b1c0;
  text-align: center;
}

.p-others__contact .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  max-width: 600px;
  margin: 0 auto 80px;
}
.p-others__contact .tab {
  width: 30%;
  padding: 10px;
  font-size: 1.6rem;
  background: #EEEEEE;
  text-align: center;
  border-radius: 4px;
}
.p-others__contact .tab.active {
  background: #AAAAAA;
  color: #fff;
}
.p-others__contact .panel {
  display: none;
}
.p-others__contact .panel.active {
  display: block;
}

@media screen and (max-width: 768px) {
  .p-others__bg-box {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-others__Block {
    margin: 30px auto 50px;
  }
  .p-others__bg-box {
    padding: 20px;
  }
  .p-others__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-others__flex-txt {
    width: 100%;
  }
  .p-others__flex-txt table.title th {
    width: 110px;
  }
  .p-others__flex-txt table.detail th {
    width: 110px;
    padding: 5px;
  }
  .p-others__flex-img {
    width: 100%;
    margin: 20px auto;
  }
  .p-others__btn {
    margin: 30px auto 50px;
  }
  .p-others__btn__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-others__btn__box {
    width: 100%;
    max-width: 260px;
    height: 50px;
    margin: 5px auto;
  }
  .p-others__btn__box a {
    padding: 6px 5px;
  }
  .p-others__btn__box a p {
    font-size: 1.6rem;
  }
  .p-others__btn__box02 {
    width: 100%;
    max-width: 260px;
  }
  .p-others__btn__box02 p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-others__contact .tabs {
    width: 100%;
  }
  .p-others__contact .tab {
    width: 48%;
    padding: 10px 0;
    font-size: 1.5rem;
  }
}
/*----------------------------------------------------------------------------------------
support.scss
----------------------------------------------------------------------------------------*/
.p-rouho-maintitle {
  position: relative;
  height: 280px;
}
.p-rouho-maintitle div {
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
}
.p-rouho-maintitle h1 {
  font-size: 2.4rem;
  font-size: clamp(1.8rem, 1.172vw + 0.9rem, 2.4rem);
  font-weight: 500;
  color: #787878;
  margin-bottom: 4%;
}
.p-rouho-maintitle h2 {
  position: relative;
  font-size: 4rem;
  font-size: clamp(2.4rem, 3.125vw + 0rem, 4rem);
  font-size: clamp(2.4rem, 2.344vw + 0.6rem, 3.6rem);
  font-weight: 500;
  margin-bottom: 20px;
}
.p-rouho-maintitle h2 small {
  font-size: clamp(1.6rem, 0.781vw + 1rem, 2rem);
}
.p-rouho-maintitle h2 img {
  position: absolute;
  right: 0;
}
.p-rouho-maintitle p {
  font-size: 1.5rem;
  /*font-weight: 400;*/
}

.p-rouho-toplink {
  position: absolute !important;
  left: auto !important;
  right: 0;
  width: 270px !important;
}
.p-rouho-toplink p.red {
  color: #d13f1d;
  font-size: 1.6rem;
}
.p-rouho-toplink a {
  margin: 5px auto;
}

.p-rouho__block h5 {
  background: #fbefe9;
  width: auto;
  display: inline-block;
  padding: 8px 10px;
  font-size: 16px;
  color: #d13f1d;
  margin-bottom: 20px;
}
.p-rouho__block .bg_beige {
  padding: 30px;
}
.p-rouho__block p.bdr_red {
  border: 1px solid #d03f1d;
  color: #d13f1d;
  margin: 10px 0;
  display: inline-block;
  padding: 3px 20px;
}
.p-rouho__block p.bdr.red {
  border-top: 1px solid #d03f1d;
  border-bottom: 1px solid #d03f1d;
}

.p-rouho__dl-btn {
  width: 31%;
  max-width: 290px;
  height: 60px;
  margin: 30px 0 20px;
}
.p-rouho__dl-btn a {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fbefe9));
  background: linear-gradient(to bottom, #ffffff, #fbefe9);
  border: 1px solid #d0340f;
  border-radius: 8px;
  color: #d0340f;
  padding: 12px 5px;
}
.p-rouho__dl-btn a p {
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-rouho-list {
  margin: 20px auto;
}
.p-rouho-list ul li {
  position: relative;
  font-size: 1.4rem;
  /*font-weight: 400;*/
  line-height: 1.7142857143;
  padding-left: 1.5em;
  margin-left: 0.5em;
}
.p-rouho-list ul li::before {
  display: block;
  content: "●";
  color: #787878;
  position: absolute;
  left: 0;
}

.p-rouho-bdr_box {
  position: relative;
  border: 1px solid #de8274;
  background: #fbefe9;
  border-radius: 6px;
  width: 100%;
  text-align: left;
  margin: 50px auto 80px;
}
.p-rouho-bdr_box-title {
  background: #de8274;
  color: #fff;
  padding: 10px 20px;
}
.p-rouho-bdr_box-title p {
  font-size: 1.8rem;
}
.p-rouho-bdr_box-link {
  padding: 20px;
}

.p-rouho-bdrBox02 {
  border: 1px dotted #d0340f;
  margin: 20px auto;
  text-align: center;
}

.p-rouho-flex-col2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px auto;
  gap: 0 2%;
}
.p-rouho-flex-col2-box {
  margin-right: 20px;
}
.p-rouho-flex-col2-box02 {
  position: relative;
  border: 1px solid #707070;
  border-radius: 20px;
  padding: 20px 40px;
  width: 49%;
  text-align: left;
  margin: 10px 0 50px;
}
.p-rouho-flex-col2-box02.w100 {
  width: 100%;
}
.p-rouho-flex-col2-box02 h4 {
  background: none;
  border-bottom: 1px solid #707070;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.p-rouho-flex-col2-box02 p {
  font-size: 1.5rem;
  /*font-weight: 400;*/
  margin-bottom: 20px;
}
.p-rouho-flex-col2-box02 .link_box {
  /*position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;*/
  margin: 0 auto 10px;
  text-align: center;
}
.p-rouho-flex-col2-box02 .link_box a {
  position: relative;
  width: auto;
  padding: 7px 40px;
  margin: 5px auto;
  text-align: left;
  color: #d0340f;
  border: 1px solid #d0340f;
  border-radius: 40px;
  font-size: 1.5rem;
}
.p-rouho-flex-col2-box02 .link_box a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #d03f1d;
  border-right: 1px solid #d03f1d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.p-rouho-flex-col2-box02 .link_box a.word {
  color: #1755aa;
  border: 1px solid #1755aa;
}
.p-rouho-flex-col2-box02 .link_box a.word::after {
  border-top: 1px solid #1755aa;
  border-right: 1px solid #1755aa;
}
.p-rouho-flex-col2-txt {
  width: calc(100% - 340px);
  line-height: 2;
}
.p-rouho-flex-col2-img {
  width: auto;
  max-width: 330px;
}
.p-rouho-flex-col2-img img {
  width: 100%;
}

.p-rouho__flex-col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 50px auto 80px;
}
.p-rouho__flex-col3-box {
  width: 33%;
  max-width: 292px;
  text-align: center;
  border: 1px solid #d13f1d;
  color: #de8274;
}
.p-rouho__flex-col3-box a.a-link {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px 10px 25px;
  font-size: 1.6rem;
  color: #d13f1d;
}
.p-rouho__flex-col3-box a.a-link::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-right: 1px solid #d13f1d;
  border-bottom: 1px solid #d13f1d;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-mmpg-table table {
  table-layout: fixed;
  width: 100%;
  margin: 10px auto 30px;
}
.p-mmpg-table table th {
  width: 17%;
  background: #f7f5f1;
  font-size: 1.6rem;
  padding: 10px;
  border-bottom: 10px solid #fff;
}
.p-mmpg-table table th span {
  color: #844d16;
}
.p-mmpg-table table td {
  padding: 0 20px;
  border-bottom: 10px solid #fff;
}
.p-mmpg-table table td ul li {
  position: relative;
  font-size: 1.5rem;
  /*font-weight: 400;*/
  padding-left: 1.2em;
  margin-bottom: 10px;
}
.p-mmpg-table table td ul li span {
  font-weight: 500;
}
.p-mmpg-table table td ul li::before {
  display: block;
  content: "●";
  color: #DE8274;
  position: absolute;
  left: 0;
}

.p-succession_list li {
  position: relative;
  font-size: 1.6rem !important;
  padding-left: 1.2em !important;
  margin-bottom: 20px !important;
}
.p-succession_list li::before {
  display: block;
  content: "●";
  color: #DE8274;
  position: absolute;
  left: 0;
}

.p-succession-flex-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-succession-flex-col2-box {
  position: relative;
  width: 48%;
  max-width: 460px;
  margin: 50px 0;
  background: #fbefe9;
  border-radius: 15px;
  padding: 50px 25px 20px;
}
.p-succession-flex-col2-box .title {
  position: absolute;
  top: -38px;
  width: 90%;
  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;
}
.p-succession-flex-col2-box .title .area {
  position: relative;
  background-image: url(../images/support/img_succession05.png);
  background-position: right;
  width: 276px;
  height: 40px;
  margin-top: 20px;
}
.p-succession-flex-col2-box .title .area p {
  color: #d03f1d;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
}
.p-succession-flex-col2-box .type {
  background: #de8274;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  padding: 3px;
  margin-bottom: 10px;
}
.p-succession-flex-col2-box .txt {
  padding: 15px;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-succession-flex-col2-box.box02 {
  background: #e1f5ff;
}
.p-succession-flex-col2-box.box02 .title .area {
  background-image: url(../images/support/img_succession07.png);
}
.p-succession-flex-col2-box.box02 .title .area p {
  color: #0070ce;
}
.p-succession-flex-col2-box.box02 .type {
  background: #5fb2e3;
}

.p-consul-flex-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-consul-flex-col2-box {
  position: relative;
  background: #f8f5f1;
  text-align: center;
  border-radius: 15px;
  width: 48%;
  max-width: 460px;
  padding: 20px;
  margin: 20px 0;
}
.p-consul-flex-col2-box .icon {
  position: absolute;
  top: 5px;
  right: 5px;
}
.p-consul-flex-col2-box p {
  text-align: left;
  font-size: 1.5rem;
  padding: 5px;
}
.p-consul-flex-col2-box .name {
  font-size: 2rem;
  border-bottom: 1px solid #b4b4b4;
}
.p-consul-flex-col2-box a.red {
  color: #d0340f;
  border: 1px solid #d0340f;
  border-radius: 15px;
  font-size: 1.5rem;
  padding: 3px 20px;
  margin: 30px auto 0;
}

@media screen and (max-width: 768px) {
  .p-rouho-maintitle {
    height: 200px;
  }
  .p-rouho-bdr_box {
    margin: 30px auto 50px;
  }
}
@media screen and (max-width: 480px) {
  .p-rouho-maintitle {
    height: 280px;
  }
  .p-rouho-maintitle div {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
  .p-rouho-toplink {
    position: relative !important;
    left: auto !important;
    right: 0;
    width: 270px !important;
    margin-top: 20px;
  }
  .p-rouho-toplink p.red {
    font-size: 1.4rem;
  }
  .p-rouho-toplink a {
    width: 220px;
  }
  .p-rouho-toplink a img {
    width: 100%;
  }
  .p-rouho__block .bg_beige {
    padding: 15px;
  }
  .p-rouho-bdr_box {
    margin: 0 auto 50px;
  }
  .p-rouho-bdr_box-title p {
    font-size: 1.6rem;
  }
  .p-rouho-bdr_box-link {
    padding: 10px;
  }
  .p-rouho-flex-col2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-rouho-flex-col2-box {
    margin-bottom: 10px;
  }
  .p-rouho-flex-col2-box a {
    width: 220px;
    margin-bottom: 5px;
  }
  .p-rouho-flex-col2-box a img {
    width: 100%;
  }
  .p-rouho-flex-col2-box02 {
    width: 100%;
    padding: 20px 20px 40px;
  }
  .p-rouho__flex-col3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 20px auto;
  }
  .p-rouho__flex-col3-box {
    width: 100%;
    max-width: 292px;
    margin: 10px auto;
  }
  .p-rouho__flex-col3-box a.a-link {
    font-size: 1.4rem;
    padding: 10px 10px 15px;
  }
  .p-mmpg-table table th {
    display: block;
    width: 100%;
  }
  .p-mmpg-table table th br {
    display: none;
  }
  .p-mmpg-table table td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .p-succession-flex-col2-box {
    width: 100%;
    margin: 30px 0;
  }
  .p-succession-flex-col2-box .title {
    width: 100%;
    left: -5px;
  }
  .p-succession-flex-col2-box .title .area {
    width: 250px;
  }
  .p-succession-flex-col2-box .title .area p {
    font-size: 1.4rem;
  }
  .p-support-imgarea {
    margin: 10px auto 30px;
    padding: 20px 0;
    overflow-y: scroll;
  }
  .p-support-imgarea img {
    width: 500px;
  }
  .p-consul-flex-col2-box {
    width: 100%;
  }
}
/*----------------------------------------------------------------------------------------
about.scss
----------------------------------------------------------------------------------------*/
.p-association__btn {
  margin: 50px auto 80px;
}
.p-association__btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 40px;
}
.p-association__btn__box {
  width: 31%;
  max-width: 290px;
  height: 50px;
}
.p-association__btn__box a {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#edbbb1), to(#de8274));
  background: linear-gradient(to bottom, #edbbb1, #de8274);
  border-radius: 8px;
  color: #fff;
  padding: 7px 15px 7px 5px;
}
.p-association__btn__box a p {
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-association__btn__box a:after {
  display: block;
  content: "";
  color: #fff;
  position: absolute;
  top: 40%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-about-table table {
  table-layout: fixed;
  width: 100%;
  margin: 10px auto 30px;
}
.p-about-table table th {
  width: 20%;
  background: #f7f5f1;
  font-size: 1.6rem;
  padding: 10px;
  border-bottom: 10px solid #fff;
}
.p-about-table table th span {
  color: #844d16;
}
.p-about-table table td {
  padding: 0 20px;
  border-bottom: 10px solid #fff;
  font-size: 1.5rem;
}

.p-kumiai-table table {
  table-layout: fixed;
  width: 100%;
  margin: 10px auto 30px;
}
.p-kumiai-table table th {
  width: 20%;
  background: #b3b3b3;
  font-size: 1.6rem;
  padding: 10px 20px;
  color: #fff;
  vertical-align: top;
}
.p-kumiai-table table td {
  padding: 10px 20px;
  font-size: 1.5rem;
  border: 1px solid #b3b3b3;
}
.p-kumiai-table table td dl dt {
  width: 20%;
  float: left;
  clear: left;
}
.p-kumiai-table table td dl dd {
  margin-left: 22%;
}

.p-kumiai-kiyaku {
  font-size: 1.4rem;
  margin-left: 1.2rem;
}
.p-kumiai-kiyaku li {
  list-style-type: decimal;
  padding-left: 0;
}
.p-kumiai-kiyaku li ul {
  margin-left: 2.4rem;
}
.p-kumiai-kiyaku li ul li {
  list-style: cjk-ideographic;
}

.p-kanyu-block h4.cl_red {
  background: #de8274;
  color: #fff;
}
.p-kanyu-block h4.cl_blue {
  background: #5fb2e3;
  color: #fff;
}

.p-furikae-bdrBox {
  border: 1px dotted #d0340f;
  margin: 20px auto;
  text-align: center;
}
.p-furikae-bdrBox p {
  font-size: 1.6rem;
  color: #d0340f;
  line-height: 2;
}

.p-furikae-table table {
  table-layout: fixed;
  width: 100%;
  max-width: 700px;
  margin: 10px 0;
  vertical-align: middle;
  font-size: 1.8rem;
  line-height: 2;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.p-furikae-table table th {
  vertical-align: middle;
  width: 38.5%;
  color: #fff;
  background: #de8274;
  padding: 0;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.p-furikae-table table th:first-child {
  width: 23%;
}
.p-furikae-table table td {
  vertical-align: middle;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  background: #f5f1ed;
}
.p-furikae-table table td:first-child {
  background: #b59274;
  color: #fff;
}

.p-koukoku-bdrBox {
  border: 1px dotted #d0340f;
  margin: 20px auto;
  padding: 20px;
}
.p-koukoku-bdrBox p {
  font-size: 1.6rem;
  color: #d0340f;
}

.p-tokuten-record {
  margin: 50px auto;
}
.p-tokuten-record table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: 10px auto;
  font-size: 1.5rem;
  text-align: center;
}
.p-tokuten-record table th {
  border: 1px solid #b59274;
  background: #b59274;
  color: #fff;
  width: 26.66%;
  padding: 8px;
}
.p-tokuten-record table th:first-child {
  width: 20%;
  background: #c6aa92;
}
.p-tokuten-record table th:nth-child(3) {
  background: #c6aa92;
}
.p-tokuten-record table td {
  border: 1px solid #b59274;
  background: #f7f5f1;
  width: 26.66%;
  padding: 5px;
}
.p-tokuten-record table td:first-child {
  width: 20%;
  background: none;
}
.p-tokuten-record table td:nth-child(3) {
  background: none;
}

.p-tokuten-bdr_box {
  position: relative;
  border: 1px solid #b1b1b1;
  border-radius: 15px;
  padding: 30px 60px 30px;
  width: 100%;
  text-align: center;
  margin: 50px auto 80px;
}
.p-tokuten-bdr_box.m00 {
  margin: 0;
  padding: 30px;
}
.p-tokuten-bdr_box h6 {
  font-size: 2.4rem;
  font-size: clamp(1.8rem, 1.172vw + 0.9rem, 2.4rem);
  font-weight: 500;
  margin-bottom: 20px;
}
.p-tokuten-bdr_box p.brown {
  color: #844d16;
}
.p-tokuten-bdr_box .p-singlepage__flex-col2 {
  gap: 10px 30px;
}
.p-tokuten-bdr_box .p-singlepage__flex-col2.m00 {
  margin: 0;
}
.p-tokuten-bdr_box .p-singlepage__flex-col2 span.red {
  color: #d0340f;
}
.p-tokuten-bdr_box .bg_beige-box {
  background: #f5f1ed;
  padding: 20px;
  margin: 10px auto;
}
.p-tokuten-bdr_box .bg_beige-box.box02 {
  padding: 5px;
  margin-bottom: 0;
}
.p-tokuten-bdr_box .bg_beige-box p {
  color: #844d16;
  font-size: 2rem;
  text-align: center;
  padding-bottom: 5px;
}
.p-tokuten-bdr_box .bg_beige-box p.bdr_b {
  border-bottom: 1px solid #b59274;
}
.p-tokuten-bdr_box .bg_beige-box p.txt {
  color: #393939;
  font-size: 1.6rem;
}
.p-tokuten-bdr_box .p-singlepage__flex-col3 {
  gap: 0;
}
.p-tokuten-bdr_box .p-singlepage__flex-col3.m00 {
  margin: 0;
}
.p-tokuten-bdr_box .p-singlepage__flex-col3-box {
  width: 33.33%;
  max-width: 270px;
  margin: 10px auto;
  text-align: center;
}
.p-tokuten-bdr_box .p-singlepage__flex-col3-box.bdr_r {
  border-right: 1px solid #b59274;
}
.p-tokuten-bdr_box .p-singlepage__flex-col3-box.mt30 {
  margin-top: 30px;
}
.p-tokuten-bdr_box .link_box {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.p-tokuten-bdr_box .link_box.link02 {
  position: relative;
  bottom: 0;
  margin: 10px auto;
}
.p-tokuten-bdr_box .link_box a {
  display: inline-block;
  position: relative;
  width: 98%;
  max-width: 260px;
  font-size: 1.6rem;
  padding: 7px 20px;
  border: 1px solid #d13f1d;
  border-radius: 20px;
  background: #fff;
  margin: 0 auto;
}
.p-tokuten-bdr_box .link_box a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 1px solid #d13f1d;
  border-right: 1px solid #d13f1d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.p-tokuten-bdr_box .link_box a p {
  margin-bottom: 0;
  font-size: 1.6rem;
  color: #d13f1d;
  /*text-align: left;*/
}

.p-kanyu__point {
  margin: 30px auto;
}
.p-kanyu__point-title {
  margin-bottom: 20px;
}
.p-kanyu__point-txt {
  margin-left: 80px;
}
.p-kanyu__point .p-singlepage__flex-col2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2;
}

.p-kanyu-bdr_box {
  position: relative;
  border: 1px solid #b1b1b1;
  border-radius: 20px;
  padding: 20px 40px;
  width: 100%;
  text-align: left;
  margin: 50px auto 70px;
}
.p-kanyu-bdr_box.m00 {
  margin: 0;
  padding: 30px;
}
.p-kanyu-bdr_box .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-kanyu-bdr_box .flex-txt {
  text-align: left;
  width: calc(100% - 240px);
}
.p-kanyu-bdr_box h4 {
  background: none;
  border-bottom: 1px solid #b1b1b1;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0 0 10px;
  color: inherit;
}
.p-kanyu-bdr_box h5 {
  border-bottom: 1px solid #b1b1b1;
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.p-kanyu-bdr_box p {
  color: #282828;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.p-kanyu-bdr_box img {
  width: 240px;
  margin: 0 auto;
}
.p-kanyu-bdr_box .link_box {
  position: absolute;
  bottom: -20px;
  left: 40px;
  right: 0;
}
.p-kanyu-bdr_box .link_box a {
  display: inline-block;
  position: relative;
  max-width: 290px;
  height: 40px;
  font-size: 1.6rem;
  padding: 4px 20px;
  border: 1px solid #b1b1b1;
  border-radius: 40px;
  background: #fff;
  margin: 0;
  text-align: left;
}
.p-kanyu-bdr_box .link_box a p {
  min-width: 260px;
  margin-bottom: 0;
}
.p-kanyu-bdr_box .link_box a span {
  color: #d13f1d;
}
.p-kanyu-bdr_box .link_box a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 1px solid #b1b1b1;
  border-right: 1px solid #b1b1b1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.p-kanyu_Block .p-singlepage__flex-col2 {
  gap: 0;
  margin: 20px auto;
}
.p-kanyu_Block .p-singlepage__flex-col2-box06 {
  margin: 10px;
  text-align: center;
}

.p-kanyu_on_img {
  position: absolute;
  right: 20px;
  bottom: 15px;
  width: 20% !important;
}

.p-welfare-bdr_box {
  position: relative;
  border: 1px solid #b1b1b1;
  border-radius: 20px;
  padding: 20px 40px;
  width: 100%;
  text-align: left;
  margin: 50px auto 70px;
}
.p-welfare-bdr_box h4 {
  background: none;
  border-bottom: 1px solid #b1b1b1;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0 0 10px;
}
.p-welfare-bdr_box p {
  color: #282828;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.p-welfare-bdr_box .link_box {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.p-welfare-bdr_box .link_box a {
  display: inline-block;
  position: relative;
  max-width: 290px;
  height: 40px;
  font-size: 1.6rem;
  padding: 4px 20px;
  border: 1px solid #b1b1b1;
  border-radius: 40px;
  background: #fff;
  margin: 0;
  text-align: left;
}
.p-welfare-bdr_box .link_box a p {
  min-width: 260px;
  margin-bottom: 0;
}
.p-welfare-bdr_box .link_box a span {
  color: #d13f1d;
}
.p-welfare-bdr_box .link_box a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 1px solid #b1b1b1;
  border-right: 1px solid #b1b1b1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

@media screen and (max-width: 768px) {
  .p-tokuten-bdr_box {
    padding: 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-association__btn {
    margin: 30px auto 50px;
  }
  .p-association__btn__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-association__btn__box {
    width: 100%;
    max-width: 260px;
    height: 50px;
    margin: 5px auto;
  }
  .p-about-table table th,
  .p-about-table table td {
    display: block;
    width: 100%;
  }
  .p-kumiai-table table th {
    display: block;
    width: 100%;
  }
  .p-kumiai-table table td {
    display: block;
    width: 100%;
  }
  .p-kumiai-table table td dl dt {
    width: 34%;
  }
  .p-kumiai-table table td dl dd {
    margin-left: 35%;
  }
  .p-furikae-table table {
    font-size: 1.4rem;
    line-height: normal;
  }
  .p-tokuten-bdr_box {
    padding: 30px;
    margin: 30px auto;
  }
  .p-tokuten-bdr_box.m00 {
    padding: 20px;
  }
  .p-tokuten-bdr_box .bg_beige-box {
    background: #f5f1ed;
    padding: 20px;
    margin: 10px auto;
  }
  .p-tokuten-bdr_box .bg_beige-box p {
    font-size: 1.6rem;
  }
  .p-tokuten-bdr_box .p-singlepage__flex-col3-box {
    width: 100%;
  }
  .p-tokuten-bdr_box .p-singlepage__flex-col3-box.bdr_r {
    border-right: none;
    border-bottom: 1px solid #b59274;
  }
  .p-tokuten-bdr_box .p-singlepage__flex-col3-box.mt30 {
    margin: 0 auto;
    padding: 20px 0;
  }
  .p-kanyu__point-txt {
    margin-left: 0;
  }
  .p-kanyu-bdr_box {
    border-radius: 20px;
    padding: 20px 20px 40px;
    margin: 30px auto 50px;
    text-align: center;
  }
  .p-kanyu-bdr_box .flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-kanyu-bdr_box .flex-txt {
    width: 100%;
  }
  .p-kanyu-bdr_box h4 {
    font-size: 1.8rem;
  }
  .p-kanyu-bdr_box .link_box {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .p-kanyu-bdr_box .link_box a p {
    font-size: 1.5rem;
  }
  .p-kanyu_on_img {
    bottom: 5px;
  }
}
/*----------------------------------------------------------------------------------------
succession.scss
----------------------------------------------------------------------------------------*/
.succession-filters {
  background: #f7f5f1;
  padding: 30px;
  margin: 30px auto 50px;
}
.succession-filters input {
  font-size: 1.8rem;
  margin-right: 10px;
}
.succession-filters .js-filter-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.succession-filters .js-filter-open .choice__open {
  width: 30%;
  text-align: center;
  margin: 0 auto;
}
.succession-filters .js-filter-open .choice__open label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.succession-filters .js-filter-open .choice__open label .largerfont {
  font-size: 1.8rem;
}
.succession-filters .js-filter-open .choice__open label .largerfont.cl_red {
  color: #d56654;
}
.succession-filters .js-filter-open .choice__open label .largerfont.cl_blue {
  color: #0e99d8;
}
.succession-filters dl {
  font-size: 1.8rem;
  margin: 10px auto;
}
.succession-filters dl dt {
  margin-right: 20px;
  float: left;
  clear: left;
  width: 20%;
}
.succession-filters dl dd {
  width: 80%;
  margin-rleft: 20%;
}
.succession-filters dl dd div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.succession-filters dl dd div label {
  width: 25%;
}

.section__main__posts .p-succession__list,
.section__main__posts.shown .p-succession__list {
  border: 1px solid #5fb2e3;
  margin: 30px auto;
}
.section__main__posts .p-succession__list-flex,
.section__main__posts.shown .p-succession__list-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section__main__posts .p-succession__list-title,
.section__main__posts.shown .p-succession__list-title {
  background: #5fb2e3;
  color: #fff;
  padding: 0 20px;
  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;
}
.section__main__posts .p-succession__list-title .type,
.section__main__posts.shown .p-succession__list-title .type {
  font-size: 1.8rem;
}
.section__main__posts .p-succession__list-title .type span,
.section__main__posts.shown .p-succession__list-title .type span {
  background: #e1f5ff;
  color: #0e99d8;
  padding: 0 5px;
  border-radius: 13px;
  margin: 10px;
}
.section__main__posts .p-succession__list-title .date,
.section__main__posts.shown .p-succession__list-title .date {
  font-size: 1.5rem;
}
.section__main__posts .p-succession__list-detail,
.section__main__posts.shown .p-succession__list-detail {
  padding: 20px;
  font-size: 1.6rem;
}
.section__main__posts .p-succession__list-detail-flex,
.section__main__posts.shown .p-succession__list-detail-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section__main__posts .p-succession__list-detail-flex .title,
.section__main__posts.shown .p-succession__list-detail-flex .title {
  width: 15%;
  padding: 5px;
  background: #efefef;
  margin: 5px 0;
  text-align: center;
}
.section__main__posts .p-succession__list-detail-flex .detail,
.section__main__posts.shown .p-succession__list-detail-flex .detail {
  width: 35%;
  padding: 5px 10px;
  margin: 5px 0;
}
.section__main__posts .p-succession__list-detail-flex .detail.w85,
.section__main__posts.shown .p-succession__list-detail-flex .detail.w85 {
  width: 85%;
}

.section__main__posts[data-open=閉院] .p-succession__list,
.section__main__posts.shown[data-open=閉院] .p-succession__list {
  border: 1px solid #de8274;
}
.section__main__posts[data-open=閉院] .p-succession__list-title,
.section__main__posts.shown[data-open=閉院] .p-succession__list-title {
  background: #de8274;
}
.section__main__posts[data-open=閉院] .p-succession__list-title .type span,
.section__main__posts.shown[data-open=閉院] .p-succession__list-title .type span {
  background: #fbefe9;
  color: #d56654;
}

.section__main__posts.hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .succession-filters input {
    font-size: 1.8rem;
  }
  .succession-filters .js-filter-open .choice__open {
    width: 45%;
  }
  .succession-filters dl {
    font-size: 1.8rem;
    margin: 10px auto;
  }
  .succession-filters dl dt {
    width: 25%;
  }
  .succession-filters dl dd {
    width: 75%;
    margin-left: 25%;
  }
  .succession-filters dl dd div {
    width: 100%;
  }
  .succession-filters dl dd div label {
    width: 25%;
  }
}
@media screen and (max-width: 480px) {
  .succession-filters {
    padding: 20px;
  }
  .succession-filters input {
    font-size: 1.6rem;
  }
  .succession-filters .js-filter-open {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .succession-filters .js-filter-open .choice__open {
    width: 100%;
  }
  .succession-filters dl {
    font-size: 1.6rem;
  }
  .succession-filters dl dt {
    width: 100%;
  }
  .succession-filters dl dd {
    width: 100%;
    margin-left: 0;
  }
  .succession-filters dl dd div {
    width: 100%;
  }
  .succession-filters dl dd div label {
    width: 33.33%;
  }
  .section__main__posts .p-succession__list-flex,
  .section__main__posts.shown .p-succession__list-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section__main__posts .p-succession__list-title,
  .section__main__posts.shown .p-succession__list-title {
    padding: 0 10px;
  }
  .section__main__posts .p-succession__list-title .type,
  .section__main__posts.shown .p-succession__list-title .type {
    font-size: 1.6rem;
    width: 100%;
  }
  .section__main__posts .p-succession__list-title .date,
  .section__main__posts.shown .p-succession__list-title .date {
    width: 100%;
    text-align: right;
  }
  .section__main__posts .p-succession__list-detail-flex,
  .section__main__posts.shown .p-succession__list-detail-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section__main__posts .p-succession__list-detail-flex .title,
  .section__main__posts.shown .p-succession__list-detail-flex .title {
    width: 30%;
  }
  .section__main__posts .p-succession__list-detail-flex .detail,
  .section__main__posts.shown .p-succession__list-detail-flex .detail {
    width: 70%;
  }
  .section__main__posts .p-succession__list-detail-flex .detail.w85,
  .section__main__posts.shown .p-succession__list-detail-flex .detail.w85 {
    width: 100%;
  }
}
/*----------------------------------------------------------------------------------------
cars.scss
----------------------------------------------------------------------------------------*/
.p-cars-bg_black {
  background: #282828;
  padding: 1px 0;
}

.p-cars-single__title {
  background-image: url(../images/cars/bg_01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.p-cars-single__title h1 {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: clamp(2.4rem, 2.344vw + 0.6rem, 3.6rem);
  padding: 0.8%;
}
.p-cars-single__title.title02 {
  background: none;
}
.p-cars-single__title.title02 h1 {
  color: #232323;
}
.p-cars-single__title.title03 {
  background: none;
}
.p-cars-single__title.title03 h1 {
  color: #232323;
  padding: 3% 0;
}

.p-cars-single-mv {
  background: #282828;
  padding: 1px 0;
}
.p-cars-single-mv .slick-car,
.p-cars-single-mv .slick-car02 {
  margin-bottom: 0;
}
.p-cars-single-mv .slick-car img,
.p-cars-single-mv .slick-car02 img {
  width: 100%;
  max-width: 100%;
}
.p-cars-single-mv .slick-car .slick-arrow,
.p-cars-single-mv .slick-car02 .slick-arrow {
  width: 20px;
  height: 60px;
  position: absolute;
  top: 40%;
  z-index: 99;
}
.p-cars-single-mv .slick-car .slick-arrow.prev-arrow,
.p-cars-single-mv .slick-car02 .slick-arrow.prev-arrow {
  left: 24%;
}
.p-cars-single-mv .slick-car .slick-arrow.next-arrow,
.p-cars-single-mv .slick-car02 .slick-arrow.next-arrow {
  right: 24%;
}
.p-cars-single-mv .slick-car .slick-dots,
.p-cars-single-mv .slick-car02 .slick-dots {
  bottom: 15px;
}
.p-cars-single-mv .slick-car .slick-dots li,
.p-cars-single-mv .slick-car02 .slick-dots li {
  width: 2.5%;
  height: 2px;
}
.p-cars-single-mv .slick-car .slick-dots li button,
.p-cars-single-mv .slick-car02 .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #fff;
}
.p-cars-single-mv .slick-car .slick-dots li button::before,
.p-cars-single-mv .slick-car02 .slick-dots li button::before {
  display: none;
}
.p-cars-single-mv .slick-car .slick-dots li.slick-active button,
.p-cars-single-mv .slick-car02 .slick-dots li.slick-active button {
  background: #78786e;
}

.p-cars-single-mv02 {
  text-align: center;
}
.p-cars-single-mv02 ul {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.p-cars-single-mv02 img {
  max-width: 100%;
}

.p-cars-single-btn.btn02 {
  margin: 30px auto 80px;
}
.p-cars-single-btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 35px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
  color: #fff;
}
.p-cars-single-btn__flex-box {
  width: auto;
  max-width: 280px;
}
.p-cars-single-btn__flex-box.w100 {
  width: 100%;
}
.p-cars-single-btn__flex-box p.al_c {
  text-align: center;
}
.p-cars-single-btn__flex-box p.mt15 {
  margin-top: 15px;
}
.p-cars-single-btn__flex-box a {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#b19a9a), to(#817070));
  background: linear-gradient(to bottom, #b19a9a, #817070);
  color: #fff;
  width: 280px;
  height: 50px;
  text-align: center;
}
.p-cars-single-btn__flex-box a p {
  line-height: 1;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-cars-single-btn__flex-box a p::after {
  display: block;
  content: "▶";
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  right: 10px;
  top: 2px;
}

.p-cars-single-btn03__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 35px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
  color: #fff;
}
.p-cars-single-btn03__flex-box {
  width: auto;
  max-width: 280px;
}
.p-cars-single-btn03__flex-box.w100 {
  width: 100%;
}
.p-cars-single-btn03__flex-box p {
  color: #232323;
}
.p-cars-single-btn03__flex-box p.al_c {
  text-align: center;
}
.p-cars-single-btn03__flex-box p.mt15 {
  margin-top: 15px;
}
.p-cars-single-btn03__flex-box a {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#b19a9a), to(#817070));
  background: linear-gradient(to bottom, #b19a9a, #817070);
  color: #fff;
  width: 280px;
  height: 50px;
  text-align: center;
}
.p-cars-single-btn03__flex-box a p {
  line-height: 1;
  position: relative;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-cars-single-btn03__flex-box a p::after {
  display: block;
  content: "▶";
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  right: 10px;
  top: 2px;
}

.p-cars-single__detail {
  margin: 30px auto 50px;
}
.p-cars-single__detail-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-cars-single__detail-list {
  width: 68%;
  max-width: 640px;
}
.p-cars-single__detail-list table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  font-size: 1.5rem;
  color: #fff;
  margin: 20px auto;
}
.p-cars-single__detail-list table th {
  border: 1px solid #fff;
  padding: 20px 0;
  width: 26%;
}
.p-cars-single__detail-list table td {
  border: 1px solid #fff;
  padding: 20px;
  width: 74%;
}
.p-cars-single__detail-list table td ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-cars-single__detail-list table td ul li {
  width: 24%;
  color: #5f5f5f;
  text-align: center;
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.391vw + 1.1rem, 1.6rem);
  border: 1px solid #fff;
  padding: 3px 0;
}
.p-cars-single__detail-list table td ul li.on {
  background: #d7d5d5;
  color: #323232;
}
.p-cars-single__detail-link {
  width: 30%;
  max-width: 280px;
}

.p-cars-single__detail02 {
  margin: 30px auto 50px;
}
.p-cars-single__detail02 p {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}
.p-cars-single__detail02-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-cars-single__detail02 table {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.5rem;
  color: #fff;
  margin: 20px auto;
}
.p-cars-single__detail02 table.table01 {
  width: 39%;
}
.p-cars-single__detail02 table.table02 {
  width: 58%;
}
.p-cars-single__detail02 table th {
  border: 1px solid #fff;
  padding: 20px 0;
  width: 26%;
}
.p-cars-single__detail02 table td {
  border: 1px solid #fff;
  padding: 20px;
  width: 74%;
}
.p-cars-single__detail02 table td ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-cars-single__detail02 table td ul li {
  width: 24%;
  color: #5f5f5f;
  text-align: center;
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 0.391vw + 1.1rem, 1.6rem);
  border: 1px solid #fff;
  padding: 3px 0;
}
.p-cars-single__detail02 table td ul li.on {
  background: #d7d5d5;
  color: #323232;
}
.p-cars-single__detail02 table td a {
  position: relative;
  padding: 5px;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  margin-left: 30px;
  vertical-align: middle;
}
.p-cars-single__detail02 table td a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 8px;
  height: 8px;
  border: 4px solid #fff;
  border-top-color: transparent;
  /* 背景色 */
  border-left-color: transparent;
  /* 背景色 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-cars-single-list {
  margin: 80px auto;
}
.p-cars-single-list .p-common-tolist a {
  border-radius: 0;
}
.p-cars-single-list .p-secondTop-news__list ul li .cat-name {
  background: #787878;
  border-radius: 15px;
}
.p-cars-single-list .p-secondTop-campaign__list ul li,
.p-cars-single-list .p-secondTop-seminar__list ul li {
  border-left: none;
}

.p-cars-benefit {
  margin: 0 auto 80px;
}
.p-cars-benefit h3 {
  background: #1e1e1e;
  text-align: center;
  padding: 40px 0;
}
.p-cars-benefit__toptxt {
  margin: 40px auto;
}
.p-cars-benefit__toptxt p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #fff;
}
.p-cars-benefit__toptxt p.al_c {
  text-align: center;
}
.p-cars-benefit__block {
  background: #fff;
  margin: 10px auto;
}
.p-cars-benefit__block.mb80 {
  margin-bottom: 80px;
}
.p-cars-benefit__block .toggle-block {
  position: relative;
  border-left: 6px solid #dcdcdc;
  border-bottom: 1px solid #282828;
  padding: 5px 10px;
  font-size: 1.5rem;
}
.p-cars-benefit__block .toggle-block span {
  background: #3c3c3c;
  color: #fff;
  font-size: 1.6rem;
  padding: 0 20px;
  border-radius: 20px;
  margin-right: 15px;
}
.p-cars-benefit__block .toggle-block span.arrow {
  background: none;
  color: #dcdcdc;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 10px;
  top: 35%;
}
.p-cars-benefit__block .toggle-block.close span.arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-cars-benefit__block .block {
  padding: 40px;
}
.p-cars-benefit__block .block h4 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.p-cars-benefit__block .block h5 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.p-cars-benefit__block .block h6 {
  background: #e0d2d2;
  color: #5b1818;
  font-size: 1.6rem;
  padding: 5px 10px;
}
.p-cars-benefit__block .block h6.gray {
  background: #dcdcdc;
  color: #232323;
}
.p-cars-benefit__block .block .bordeaux {
  color: #5b1818;
}
.p-cars-benefit .bdr {
  border-bottom: 1px solid #282828;
  margin: 30px auto;
}
.p-cars-benefit-btn {
  margin: 50px auto;
}
.p-cars-benefit-btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-cars-benefit-btn-box {
  width: auto;
  max-width: 280px;
  margin: 10px 20px;
}
.p-cars-benefit-btn-box a {
  position: relative;
  border: 1px solid #282828;
  width: 280px;
  height: 50px;
  text-align: center;
}
.p-cars-benefit-btn-box a p {
  line-height: 1;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-cars-txtarea {
  margin: 10px auto;
}
.p-cars-txtarea p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.p-cars-txtarea p.big_bdr {
  font-size: 2rem;
  padding-bottom: 5px;
  color: #5b1818;
  border-bottom: 1px solid #5b1818;
  margin-bottom: 10px;
}

.p-cars-step {
  margin: 30px auto;
}
.p-cars-step__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-cars-step__box {
  position: relative;
  padding: 20px 15px;
  margin: 0 10px;
}
.p-cars-step__box p {
  font-size: 1.5rem;
}
.p-cars-step__box p.step {
  background: #678c82;
  color: #fff;
  border-radius: 15px;
  padding: 0 15px;
  width: auto;
  position: absolute;
  top: -15px;
  left: -10px;
}
.p-cars-step__box.step01 {
  border: 1px solid #678c82;
}
.p-cars-step__box.step02 {
  border: 1px solid #1d5f50;
}
.p-cars-step__box.step02 p.step {
  background: #1d5f50;
}
.p-cars-step__box.step03 {
  border: 1px solid #004433;
}
.p-cars-step__box.step03 p.step {
  background: #004433;
}

.p-cars-tokuten {
  margin-bottom: 20px;
}
.p-cars-tokuten__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #501e1e;
  margin-bottom: 10px;
}
.p-cars-tokuten__flex-box {
  position: relative;
  width: 34%;
  background: #501e1e;
  border-right: 1px solid #fff;
  padding: 20px 10px;
  text-align: center;
}
.p-cars-tokuten__flex-box.w12 {
  width: 12%;
}
.p-cars-tokuten__flex-box.w22 {
  width: 22%;
}
.p-cars-tokuten__flex-box p {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 1.6rem;
}
.p-cars-tokuten__flex-txt {
  padding: 10px 20px;
  width: 66%;
}
.p-cars-tokuten__flex-txt p {
  color: #9b2828;
  font-size: 1.6rem;
}
.p-cars-tokuten__flex-txt .bdr {
  border-bottm: 1px solid #501e1e;
  width: 106%;
  position: relative;
  left: -3%;
  margin: 10px auto;
}

.p-cars-lexus {
  width: 90%;
  max-width: 570px;
  margin: 10px auto;
}
.p-cars-lexus__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-cars-lexus__flex-txt {
  width: 82%;
}
.p-cars-lexus__flex-txt p {
  font-size: 1.5rem;
}
.p-cars-lexus__flex-txt p.big {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.p-cars-bdr-red {
  margin-bottom: 20px;
}
.p-cars-bdr-red__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #9b2828;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.p-cars-bdr-red__flex-title {
  width: 30%;
  padding: 10px 0;
  text-align: center;
}
.p-cars-bdr-red__flex-title p {
  color: #9b2828;
  font-size: 1.6rem;
}
.p-cars-bdr-red__flex-txt {
  padding: 10px 0;
  width: 70%;
}
.p-cars-bdr-red__flex-txt p {
  font-size: 1.6rem;
  border-left: 3px solid #9b2828;
  padding: 0 20px;
}

.p-cars-table01 {
  table-layout: fixed;
  width: 100%;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.p-cars-table01 th {
  vertical-align: text-bottom;
  width: 12%;
}
.p-cars-table01 th p {
  background: #dcdcdc;
  color: #646464;
  padding: 30px;
}
.p-cars-table01 td {
  width: 88%;
  padding: 0 20px;
  line-height: 1.8;
}
.p-cars-table01 td .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-cars-table01 td .flex-box {
  width: 49%;
  border-bottom: 1px solid #dcdcdc;
  padding: 5px;
}
.p-cars-table01 td .flex-box.w100 {
  width: 100%;
}

.p-cars-table02 {
  table-layout: fixed;
  width: 100%;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.p-cars-table02 th {
  vertical-align: top;
  width: 12%;
}
.p-cars-table02 th p {
  background: #dcdcdc;
  color: #646464;
  padding: 30px;
}
.p-cars-table02 td {
  width: 88%;
  padding: 0 20px;
  line-height: 1.8;
}
.p-cars-table02 td ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-cars-table02 td ul li {
  width: 23%;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  padding-left: 1.5em;
  margin-left: 0.5em;
}
.p-cars-table02 td ul li::before {
  display: block;
  content: "●";
  position: absolute;
  left: 0;
}

.p-cars-bg_gray {
  background: #f5f5f5;
  padding: 30px;
  margin: 10px auto;
}
.p-cars-bg_gray__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-cars-bg_gray__flex-txt {
  width: auto;
  margin-right: 3%;
}
.p-cars-bg_gray__flex-txt .message {
  color: #787878;
  margin-bottom: 30px;
}
.p-cars-bg_gray__flex-txt p {
  line-height: 1.6666666667;
  font-size: 1.5rem;
}
.p-cars-bg_gray__flex-txt p.title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.p-cars-bg_gray__flex-img {
  width: auto;
}

.p-cars-map {
  margin: 80px auto 80px;
  text-align: center;
}
.p-cars-map p {
  font-size: 1.6rem;
}
.p-cars-map-area {
  margin: 80px auto;
}
.p-cars-map iframe {
  width: 100%;
  aspect-ratio: 17/11;
}

.p-cars-about {
  background: #f5f5f5;
  padding: 50px 0;
}
.p-cars-about.p00 {
  padding: 0;
}
.p-cars-about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-cars-about__flex-txt {
  position: relative;
  width: 50%;
}
.p-cars-about__flex-txt-box {
  max-width: 800px;
  position: relative;
  /*top: 50%;
  transform: translatey(-50%);*/
  padding: 0 20px;
  margin: auto 3% auto auto;
}
.p-cars-about__flex-txt-box.w600 {
  max-width: 600px;
}
.p-cars-about__flex-txt-box p {
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-cars-about__flex-txt-box p.bold {
  font-weight: 900;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10px;
}
.p-cars-about__flex-txt-box p.mincho {
  color: #251e1c;
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1.5;
}
.p-cars-about__flex-img {
  width: 50%;
}
.p-cars-about__flex-img img {
  width: 100%;
  max-width: 100%;
}

.p-cars-faq {
  margin: 80px auto 80px;
  text-align: center;
}
.p-cars-faq p {
  font-size: 1.6rem;
}
.p-cars-faq dl {
  max-width: 600px;
  margin: 50px auto;
  text-align: left;
  font-size: 1.5rem;
}
.p-cars-faq dl span {
  width: 20px;
  padding-right: 10px;
  border-right: 1px solid #282828;
  margin-right: 10px;
  position: absolute;
  left: 0;
}
.p-cars-faq dl dt {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.p-cars-faq dl dd {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}

.p-cars-caution {
  margin: 80px auto 80px;
}
.p-cars-caution__block {
  width: 96%;
  max-width: 860px;
  margin: 0 auto;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}
.p-cars-caution__block p {
  font-size: 1.4rem;
}
.p-cars-caution__block ul {
  width: 90%;
  max-width: 780px;
  margin: 0 auto;
}
.p-cars-caution__block ul li {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  padding-left: 1.5em;
  margin-left: 0.5em;
}
.p-cars-caution__block ul li::before {
  display: block;
  content: "※";
  position: absolute;
  left: 0;
}
.p-cars-caution.caution02 {
  margin: 20px auto 50px;
}
.p-cars-caution.caution02 .block02 {
  width: 100%;
  max-width: 100%;
  border-right: none;
  padding-left: 10px;
}
.p-cars-caution.caution02 ul {
  width: 100%;
  max-width: 100%;
}

.p-cars-btn {
  margin: 60px auto;
}
.p-cars-btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-cars-btn__box {
  width: 33%;
  max-width: 290px;
  margin: 0 20px;
}
.p-cars-btn__box a {
  text-align: center;
  width: 100%;
  color: #fff;
  background: #646464;
  border-radius: 20px;
  font-size: 1.6rem;
  padding: 6px;
}

.p-cars-imgarea img {
  width: 100%;
  max-width: 100%;
}

.p-cars-dealer {
  margin: 30px auto;
}
.p-cars-dealer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-cars-dealer__box {
  width: 25%;
  padding: 20px;
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 30px;
}
.p-cars-dealer__box a.dl {
  position: relative;
  padding: 10px;
  border: 1px solid #5b1818;
  color: #5b1818;
  line-height: 1.5;
  text-align: center;
  margin-left: 30px;
  vertical-align: middle;
  width: 100%;
  margin: 0 auto;
}
.p-cars-dealer__box a.dl::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 8px;
  height: 8px;
  border: 4px solid #5b1818;
  border-top-color: transparent;
  /* 背景色 */
  border-left-color: transparent;
  /* 背景色 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-cars-dealer-bk {
  position: relative;
  padding: 10px;
  border: 1px solid #232323;
  color: #232323;
  line-height: 1.5;
  text-align: center;
  margin-left: 30px;
  vertical-align: middle;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.5rem;
}
.p-cars-dealer-bk::after {
  content: "▶";
  position: absolute;
  right: 5px;
  top: 10px;
}

.p-p-cars__tablearea .p-cars-tokuten01,
.p-p-cars__tablearea .p-cars-tokuten02 {
  margin: 30px auto 50px;
}
.p-p-cars__tablearea .p-cars-tokuten01 th,
.p-p-cars__tablearea .p-cars-tokuten02 th {
  width: 30%;
  border: 1px solid rgba(179, 179, 179, 0.5);
  padding: 5px;
}
.p-p-cars__tablearea .p-cars-tokuten01 th:last-child,
.p-p-cars__tablearea .p-cars-tokuten02 th:last-child {
  width: 40%;
}
.p-p-cars__tablearea .p-cars-tokuten01 th.w50,
.p-p-cars__tablearea .p-cars-tokuten02 th.w50 {
  width: 50%;
}
.p-p-cars__tablearea .p-cars-tokuten01 td,
.p-p-cars__tablearea .p-cars-tokuten02 td {
  border: 1px solid rgba(179, 179, 179, 0.5);
  padding: 5px;
}
.p-p-cars__tablearea .p-cars-tokuten01 td.gray,
.p-p-cars__tablearea .p-cars-tokuten02 td.gray {
  background: #efefef;
  font-weight: 600;
}
.p-p-cars__tablearea .p-cars-tokuten01 td a,
.p-p-cars__tablearea .p-cars-tokuten02 td a {
  position: relative;
  width: 100%;
}
.p-p-cars__tablearea .p-cars-tokuten01 td a::after,
.p-p-cars__tablearea .p-cars-tokuten02 td a::after {
  position: absolute;
  display: block;
  content: "▶";
  color: #b3b3b3;
  font-size: 1.2rem;
  bottom: 3px;
  right: 0;
}
.p-p-cars__tablearea .p-cars-tokuten01 .bordeaux,
.p-p-cars__tablearea .p-cars-tokuten02 .bordeaux {
  width: 10%;
  background: #ede6e6;
  color: #5b1818;
  text-align: center;
}
.p-p-cars__tablearea .p-cars-tokuten01 .green,
.p-p-cars__tablearea .p-cars-tokuten02 .green {
  width: 10%;
  background: #dfe6e4;
  color: #004433;
  text-align: center;
}
.p-p-cars__tablearea .p-cars-tokuten01 .khaki,
.p-p-cars__tablearea .p-cars-tokuten02 .khaki {
  width: 10%;
  background: #ebebe6;
  color: #5d5d23;
  text-align: center;
}

.p-cars-automate-bnr {
  text-align: center;
  margin: 80px auto;
}

.p-cars-automate {
  margin: 30px auto 80px;
}
.p-cars-automate-title {
  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;
}
.p-cars-automate-title .bdr {
  width: 28%;
  border-bottom: 1px solid #232323;
}
.p-cars-automate-title .volume {
  text-align: center;
  line-height: 1.1;
}
.p-cars-automate-title .volume p {
  font-size: 2rem;
}
.p-cars-automate-title .volume p.big {
  font-size: 4rem;
}
.p-cars-automate-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px auto;
}
.p-cars-automate-flex__img {
  width: 30%;
  max-width: 260px;
}
.p-cars-automate-flex__img a {
  margin-bottom: 10px;
}
.p-cars-automate-flex__txt {
  margin-left: 50px;
  width: 65%;
}
.p-cars-automate-flex__txt ul li {
  line-height: 2;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.p-cars-automate-flex__txt ul li span {
  color: #a0a0a0;
  font-size: 1.5rem;
}
.p-cars-automate-flex__txt .backnumber {
  margin: 30px auto;
}
.p-cars-automate-flex__txt .backnumber ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.p-cars-automate-flex__txt .backnumber ul li {
  max-width: 130px;
  text-align: center;
}
.p-cars-automate-flex__txt .backnumber ul li p {
  font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .p-cars-single-mv .slick-car .slick-arrow.prev-arrow {
    left: 5%;
  }
  .p-cars-single-mv .slick-car .slick-arrow.next-arrow {
    right: 5%;
  }
  .p-cars-single-btn.btn02 {
    margin: 30px auto 80px;
  }
  .p-cars-single-btn__flex-box {
    margin: 0 auto;
  }
  .p-cars-single-btn__flex-box:first-child {
    width: 100%;
    max-width: 100%;
  }
  .p-cars-single-btn__flex-box span {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (max-width: 768px) {
  .p-cars-single-btn {
    max-width: 280px;
    margin: 0 auto;
  }
  .p-cars-single-btn.btn02 {
    margin: 30px auto 50px;
  }
  .p-cars-single-btn__flex-box {
    margin: 10px auto;
  }
  .p-cars-single__detail {
    margin: 30px auto 50px;
  }
  .p-cars-single__detail-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-single__detail-list {
    width: 100%;
    margin: 0 auto;
  }
  .p-cars-single__detail-link {
    width: 100%;
    margin: 0 auto;
  }
  .p-cars-single__detail02 table th {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: none;
  }
  .p-cars-single__detail02 table td {
    display: block;
    width: 100%;
    padding: 20px 10px;
  }
  .p-cars-table01 td .flex-box {
    width: 100%;
  }
  .p-cars-table02 td ul li {
    width: 45%;
  }
  .p-cars-bg_gray__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-bg_gray__flex-img {
    text-align: center;
    margin: 10px auto;
  }
  .p-cars-bg_gray__flex-img img {
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .p-cars-about.p00 {
    padding: 50px 0;
  }
  .p-cars-about__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-about__flex-txt {
    width: 100%;
  }
  .p-cars-about__flex-txt-box {
    max-width: 100%;
    margin: 0 auto;
  }
  .p-cars-about__flex-img {
    width: 100%;
    text-align: center;
    margin: 10px auto;
  }
  .p-cars-about__flex-img img {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (max-width: 480px) {
  .p-cars-single__detail-list table th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .p-cars-single__detail-list table td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px 10px;
    border-top: none;
  }
  .p-cars-single__detail-list table td ul {
    gap: 10px;
  }
  .p-cars-single__detail-list table td ul li {
    width: 48%;
  }
  .p-cars-single__detail02-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-single__detail02 table.table01 {
    width: 100%;
  }
  .p-cars-single__detail02 table.table02 {
    width: 1008%;
  }
  .p-cars-single__detail02 table th {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: none;
  }
  .p-cars-single__detail02 table td {
    display: block;
    width: 100%;
    padding: 20px 10px;
  }
  .p-cars-single__detail02 table td ul {
    gap: 0;
  }
  .p-cars-single__detail02 table td ul li {
    margin: 5px auto;
  }
  .p-cars-benefit h3 {
    padding: 20px 0;
  }
  .p-cars-benefit__toptxt {
    margin: 20px auto;
  }
  .p-cars-benefit__block .toggle-block span.arrow {
    top: auto;
    bottom: 5px;
  }
  .p-cars-benefit .block {
    padding: 20px;
  }
  .p-cars-benefit .block h4 {
    font-size: 1.8rem;
  }
  .p-cars-benefit .block h5 {
    font-size: 1.6rem;
  }
  .p-cars-benefit .bdr {
    margin: 20px auto;
  }
  .p-cars-benefit-btn {
    margin: 30px auto;
  }
  .p-cars-txtarea p.big_bdr {
    font-size: 1.8rem;
  }
  .p-cars-step__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-step__box {
    width: 100%;
    margin: 0 10px 30px;
  }
  .p-cars-tokuten__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-tokuten__flex-box {
    width: 100%;
  }
  .p-cars-tokuten__flex-box.w12 {
    width: 30%;
  }
  .p-cars-tokuten__flex-box.w22 {
    width: 70%;
  }
  .p-cars-tokuten__flex-txt {
    width: 100%;
  }
  .p-cars-tokuten__flex-txt .bdr {
    width: 112%;
    left: -6%;
  }
  .p-cars-bdr-red__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-bdr-red__flex-title {
    width: 100%;
  }
  .p-cars-bdr-red__flex-txt {
    width: 100%;
    padding: 0;
  }
  .p-cars-bdr-red__flex-txt p {
    border-left: none;
    border-top: 3px solid #9b2828;
    padding: 10px;
  }
  .p-cars-table01 th,
  .p-cars-table02 th {
    display: block;
    width: 100%;
  }
  .p-cars-table01 th p,
  .p-cars-table02 th p {
    padding: 10px;
  }
  .p-cars-table01 td,
  .p-cars-table02 td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .p-cars-bg_gray {
    padding: 20px;
  }
  .p-cars-btn__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-btn__box {
    width: 100%;
    margin: 5px auto;
  }
  .p-cars-single-btn03__flex {
    gap: 0;
  }
  .p-cars-single-btn03__flex-box {
    width: 100%;
    margin: 5px auto;
  }
  .p-cars-imgarea {
    margin: 10px auto 10px;
    padding: 20px 0;
    overflow-y: scroll;
  }
  .p-cars-imgarea img {
    width: 600px;
    max-width: 600px;
  }
  .p-cars-dealer {
    margin: 30px auto;
  }
  .p-cars-dealer__box {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 20px;
  }
  .p-cars-automate-bnr {
    margin: 30px auto;
  }
  .p-cars-automate {
    margin: 30px auto 80px;
  }
  .p-cars-automate-title {
    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;
  }
  .p-cars-automate-title .bdr {
    width: 15%;
  }
  .p-cars-automate-title .volume p {
    font-size: 1.6rem;
  }
  .p-cars-automate-title .volume p.big {
    font-size: 2.8rem;
  }
  .p-cars-automate-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-cars-automate-flex__img {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
  .p-cars-automate-flex__txt {
    margin: 20px auto;
    width: 90%;
  }
  .p-cars-automate-flex__txt .backnumber {
    margin: 30px auto;
  }
  .p-cars-automate-flex__txt .backnumber ul {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-cars-automate-flex__txt .backnumber ul li {
    width: 30%;
  }
  .p-cars-automate-flex__txt .backnumber ul li p {
    font-size: 1.4rem;
  }
}
/*----------------------------------------------------------------------------------------
carstop.scss
----------------------------------------------------------------------------------------*/
.p-carstop-sidemenu {
  position: relative;
  width: 320px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p-carstop-sidemenu .bg_gray {
  background: #f4f4f4;
  padding: 20px;
}
.p-carstop-sidemenu-inner {
  position: relative;
}

.p-carstop__mainCnts-cnts {
  width: calc(100% - 320px);
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.p-carstop__mainCnts-cnts .l-inner05 {
  width: 100%;
}

.p-carstop__prbnr {
  width: 100%;
  max-width: 280px;
}
.p-carstop__prbnr img {
  width: 100%;
  max-width: 280px;
}

.p-carstop-news {
  position: relative;
  margin: 50px auto;
}
.p-carstop-news-title {
  width: 100%;
}
.p-carstop-news-title h2 {
  width: 100%;
  text-align: center;
}
.p-carstop-news-title h2 img {
  max-width: 100%;
  margin: 0 auto;
}
.p-carstop-news__list ul li {
  margin: 20px auto;
}
.p-carstop-news__list ul li .time span.cat-name {
  background: #797979;
  border-radius: 20px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  width: 10em;
  padding: 0 3px;
  margin-right: 5px;
}
.p-carstop-news__list ul li .time span.post-time {
  font-size: 1.4rem;
  color: #797979;
}
.p-carstop-news__list ul li .thumb-img {
  width: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
}
.p-carstop-news__list ul li img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  margin: 0 auto;
}
.p-carstop-news__list ul li a {
  font-size: 1.4rem;
  padding: 5px;
}

.p-carstop__listBlock {
  margin: 80px auto;
}
.p-carstop__listBlock-title {
  width: 100%;
}
.p-carstop__listBlock-title h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.p-carstop__listBlock-title h2 img {
  max-width: 100%;
  margin: 0 auto;
}
.p-carstop__listBlock ul.slick04,
.p-carstop__listBlock ul.slick05,
.p-carstop__listBlock ul.slick06 {
  margin: 40px auto;
}
.p-carstop__listBlock ul.slick04 li,
.p-carstop__listBlock ul.slick05 li,
.p-carstop__listBlock ul.slick06 li {
  padding: 0 10px;
  text-align: center;
}
.p-carstop__listBlock ul.slick04 li a,
.p-carstop__listBlock ul.slick05 li a,
.p-carstop__listBlock ul.slick06 li a {
  width: 100%;
}
.p-carstop__listBlock ul.slick04 li .thumb-img,
.p-carstop__listBlock ul.slick05 li .thumb-img,
.p-carstop__listBlock ul.slick06 li .thumb-img {
  width: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
}
.p-carstop__listBlock ul.slick04 li img,
.p-carstop__listBlock ul.slick05 li img,
.p-carstop__listBlock ul.slick06 li img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  margin: 0 auto;
}
.p-carstop__listBlock ul.slick04 li p,
.p-carstop__listBlock ul.slick05 li p,
.p-carstop__listBlock ul.slick06 li p {
  text-align: left;
  font-size: 1.8rem;
  margin: 5px 0;
}

.p-carstop-bnr {
  text-align: center;
  margin: 80px auto;
}
.p-carstop-bnr a img {
  width: 100%;
}

.p-carstop-tolist {
  margin: 0 auto;
  text-align: center;
}

.p-carstop-tolist a {
  color: #797979;
  border: 1px solid #232323;
  padding: 14px;
  font-size: 1.5rem;
  text-align: center;
  width: 280px;
}

.p-carstop-recommend {
  background: #fff;
  padding: 20px;
}
.p-carstop-recommend-title {
  width: 100%;
  margin: 30px auto;
}
.p-carstop-recommend-title h2 {
  width: 100%;
  text-align: center;
}
.p-carstop-recommend-title h2 img {
  max-width: 100%;
  margin: 0 auto;
}
.p-carstop-recommend__list ul li {
  margin-bottom: 40px;
}

.p-carstop-automate {
  margin: 100px auto;
  text-align: center;
}
.p-carstop-automate img {
  margin-bottom: 10px;
}
.p-carstop-automate p {
  font-size: 1.6rem;
  line-height: 1;
}
.p-carstop-automate p.big {
  font-size: 3.2rem;
}
.p-carstop-automate ul {
  border-top: 1px solid #c8c8c8;
  padding-top: 10px;
  margin-top: 10px;
}
.p-carstop-automate ul li {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  padding-left: 1.2em;
  text-align: left;
}
.p-carstop-automate ul li::before {
  display: block;
  content: "※";
  position: absolute;
  left: 0;
}

.p-carstop-buy {
  margin: 0 auto;
}
.p-carstop-buy-title {
  background-image: url(../images/cars-top/bg_01.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 43px 0;
}
.p-carstop-buy-title h2 {
  width: 100%;
  text-align: center;
}
.p-carstop-buy-title h2 img {
  max-width: 100%;
  margin: 0 auto;
}
.p-carstop-buy__list {
  width: 92%;
  margin: 50px auto;
}
.p-carstop-buy__list h3 {
  color: #fff;
  font-size: 2.4rem;
}
.p-carstop-buy__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px auto 30px;
  gap: 20px;
}
.p-carstop-buy__list ul li {
  position: relative;
  width: 205px;
  height: 50px;
  background: #fff;
}
.p-carstop-buy__list ul li a {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  padding-right: 10px;
}
.p-carstop-buy__list ul li a div {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-carstop-buy__list ul li a div img {
  max-width: 40px;
  margin-right: 10px;
}
.p-carstop-buy__list ul li a::after {
  display: block;
  content: "▶";
  color: #232323;
  font-size: 1.2rem;
  position: absolute;
  right: 5px;
  top: 12px;
}

.p-carstop-btnarea {
  background: #2e2e2e;
  padding: 30px 25px;
}
.p-carstop-btnarea-btn {
  background: none;
}

.p-carstop-bg_02 {
  height: 180px;
  overflow-y: hidden;
}
.p-carstop-bg_02 img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-carstop-bg_gray {
  background: #f4f4f4;
  padding: 80px 0;
}

.p-carstop-cnts {
  background: #fff;
  padding: 50px;
}
.p-carstop-cnts-title h2 {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 50px;
}
.p-carstop-cnts-title h2 img {
  max-width: 100%;
  margin: 0 auto;
}
.p-carstop-cnts__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  margin: 20px auto;
  border-bottom: 1px solid #cdcdcd;
}
.p-carstop-cnts__flex h3 {
  width: 150px;
  text-align: center;
}
.p-carstop-cnts__flex h3 img {
  max-width: 100%;
  margin: 0 auto;
}
.p-carstop-cnts__flex p {
  font-size: 1.6rem;
}
.p-carstop-cnts__flex ul {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-carstop-cnts__flex ul li {
  width: 260px;
  margin: 10px auto;
}
.p-carstop-cnts__flex ul li a {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}

.p-carstop-btn {
  margin: 0 auto;
  padding: 10px 0;
  background: #232323;
}
.p-carstop-btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-carstop-btn__box {
  width: 33%;
  max-width: 290px;
  margin: 0 20px;
}
.p-carstop-btn__box a {
  text-align: center;
  width: 100%;
  color: #fff;
  border: 1px solid #646464;
  background: -webkit-gradient(linear, left top, left bottom, from(#b19a9a), to(#817070));
  background: linear-gradient(to bottom, #b19a9a, #817070);
  border-radius: 20px;
  font-size: 1.6rem;
  padding: 6px;
}

@media screen and (max-width: 1024px) {
  .p-common__mainCnts-flex.p-carstop {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-carstop-sidemenu {
    width: 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 50px auto;
  }
  .p-carstop-sidemenu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-carstop__mainCnts-cnts {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-carstop__prbnr {
    width: 35%;
    max-width: 280px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-carstop-news {
    width: 65%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 20px auto;
  }
  .p-carstop__listBlock {
    margin: 30px auto 50px;
  }
  .p-carstop-bnr {
    margin: 0 auto 40px;
  }
  .p-carstop-recommend {
    display: none;
  }
  .p-carstop-buy-title {
    padding: 20px 0;
  }
  .p-carstop-buy__list {
    width: 96%;
    margin: 30px auto;
  }
  .p-carstop-btnarea {
    padding: 40px 20px;
  }
  .p-carstop-btnarea-btn .p-cars-single-btn__flex {
    gap: 10px;
  }
  .p-carstop-btnarea-btn .p-cars-single-btn__flex-box {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-carstop-btnarea {
    padding: 20px;
  }
  .p-carstop-btnarea-btn {
    max-width: 280px;
    margin: 0 auto;
  }
  .p-carstop-btnarea-btn .p-cars-single-btn__flex {
    gap: 10px;
  }
  .p-carstop-btnarea-btn .p-cars-single-btn__flex-box {
    margin: 10px auto;
  }
}
@media screen and (max-width: 480px) {
  .p-carstop__prbnr {
    width: 100%;
    margin: 0 auto;
  }
  .p-carstop-news {
    width: 100%;
  }
  .p-carstop-buy__list {
    max-width: 250px;
  }
  .p-carstop-buy__list ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-carstop-buy__list ul li {
    margin: 0 auto;
  }
  .p-carstop-bg_gray {
    padding: 30px 10px;
  }
  .p-carstop-cnts {
    padding: 40px 20px 20px;
  }
  .p-carstop-cnts-title h2 {
    margin-bottom: 30px;
  }
  .p-carstop-cnts__flex {
    padding: 20px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-carstop-cnts__flex h3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-carstop-cnts__flex ul {
    width: 100%;
  }
  .p-carstop-btn {
    position: fixed;
    margin: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    padding: 0;
    display: none;
  }
  .p-carstop-btn__box {
    position: relative;
    background: -webkit-gradient(linear, right top, left top, from(#4f4f4f), to(#2e2e2e));
    background: linear-gradient(-90deg, #4f4f4f, #2e2e2e);
    width: 33.3334%;
    margin: 0;
    height: 60px;
  }
  .p-carstop-btn__box a {
    background: none;
    border-radius: 0;
    font-size: 1.3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .p-carstop-btn__box a img {
    width: 20px;
  }
}
/*----------------------------------------------------------------------------------------
mypage.scss
----------------------------------------------------------------------------------------*/
.p-mypage-block .p-mypage-bdr {
  border: 1px solid #9f9f9f;
  color: #505050;
  padding: 3px 10px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.p-mypage-block div.toggle-block {
  position: relative;
}
.p-mypage-block div.toggle-block span {
  line-height: 1;
  position: absolute;
  right: 10px;
  color: #fff;
  background: #dcdcdc;
  border-radius: 50%;
  padding: 3px;
}
.p-mypage-block div.toggle-block.close span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-mypage-block .p-singlepage-bdrBox02 {
  padding: 20px;
}
.p-mypage-block .p-mypage-link.w480 {
  width: 480px;
  max-width: 480px;
}
.p-mypage-block .p-mypage-link a {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fbefe9));
  background: linear-gradient(to bottom, #ffffff, #fbefe9);
  border: 1px solid #d0340f;
  color: #d0340f;
}

.p-mypage-col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px auto 50px;
}
.p-mypage-col3-box {
  width: 45%;
}
.p-mypage-col3-box.w100 {
  width: 100%;
  text-align: center;
}
.p-mypage-col3-box__title {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-mypage-col3-box__title .step {
  background: -webkit-gradient(linear, left top, left bottom, from(#de8274), to(#edbbb1));
  background: linear-gradient(to bottom, #de8274, #edbbb1);
  color: #fff;
  font-size: 1.6rem;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  width: 90px;
}
.p-mypage-col3-box__title p {
  font-size: 1.6rem;
  margin-left: 10px;
  text-align: left;
}
.p-mypage-col3 .p-mypage-col3-arrow {
  width: 90px;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media screen and (max-width: 480px) {
  .p-mypage-col3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-mypage-col3-box {
    width: 100%;
    text-align: center;
  }
  .p-mypage-col3 .p-mypage-col3-arrow {
    width: 100%;
    text-align: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .p-mypage-col3 .p-mypage-col3-arrow img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
/*----------------------------------------------------------------------------------------
public.scss
----------------------------------------------------------------------------------------*/
.p-public-column__list {
  margin: 30px auto 80px;
}
.p-public-column__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}
.p-public-column__list ul li .cat-name {
  font-size: 1.4rem;
  background: #B4B4B4;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  width: 110px;
  padding: 3px 5px;
  margin-right: 20px;
}
.p-public-column__list ul li a {
  width: calc(100% - 130px);
}
.p-public-column__list ul li a p {
  font-size: 1.6rem;
}
.p-public-column__list ul li a .post-time {
  font-size: 1.4rem;
  color: #797979;
  margin-right: 20px;
}

.p-public-column__listBlock ul {
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-public-column__listBlock ul li {
  width: 33%;
  max-width: 290px;
  text-align: center;
  margin-bottom: 30px;
}
.p-public-column__listBlock ul li a {
  width: 100%;
}
.p-public-column__listBlock ul li .thumb-img {
  width: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
}
.p-public-column__listBlock ul li .thumb-img img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  margin: 0 auto;
}
.p-public-column__listBlock ul li .column-title {
  text-align: left;
  font-size: 1.8rem;
  margin: 5px 0 10px;
}
.p-public-column__listBlock ul li .column_time {
  text-align: left;
  font-size: 1.4rem;
}

.p-public-mate-new {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.p-public-mate-new span {
  background: #5fb2e3;
  color: #fff;
  font-size: 1.5rem;
  padding: 0 10px;
  border-radius: 15px;
  margin: 5px;
}
.p-public-mate h5 {
  background: #f7e4df;
  color: #c32700;
  font-size: 1.8rem;
  padding: 3px 10px;
}
.p-public-mate table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 20px auto;
}
.p-public-mate table th {
  border-right: 1px solid #b3b3b3;
  padding: 0 10px 10px 0;
  text-align: left;
  vertical-align: top;
  width: 27%;
}
.p-public-mate table td {
  padding: 0 10px 10px;
}

.p-public__block h4 {
  /*color: #fff;*/
}
.p-public__block p.bdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-public__block p.bdr span {
  font-size: 1.4rem;
}
.p-public__block .p-singlepage__flex-col2-box.img {
  text-align: center;
}
.p-public__block small.cl_blue {
  display: block;
  color: #5fb2e3;
  text-align: center;
  font-size: 1.4rem;
}
.p-public__block-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px auto 80px;
}
.p-public__block-box {
  width: 49%;
}
.p-public__block-box.bdr {
  border: 1px solid #b3b3b3;
}
.p-public__block-box-img {
  text-align: center;
  display: inline-block;
  width: 49%;
  margin: 10px auto;
}
.p-public__block-box-img p {
  font-size: 1.6rem;
}
.p-public__block__scroll {
  overflow-y: scroll;
  padding: 20px;
  height: 300px;
}
.p-public__block__scroll ul li {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.p-public__block .p-singlepage__btn__box a {
  border: 1px solid #b4b4b4;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dcdcdc));
  background: linear-gradient(to bottom, #ffffff, #dcdcdc);
  color: #787878;
}

@media screen and (max-width: 480px) {
  .p-public-column__list {
    margin: 30px auto 80px;
  }
  .p-public-column__list ul li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-public-column__list ul li a {
    width: 100%;
  }
  .p-public-column__listBlock ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-public-column__listBlock ul li {
    width: 100%;
    margin: 10px auto 30px;
  }
  .p-public-column__listBlock ul li .column-title {
    font-size: 1.6rem;
  }
  .p-public__block p.bdr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-public__block p.bdr span {
    width: 100%;
    text-align: right;
  }
  .p-public__block-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px auto 50px;
  }
  .p-public__block-box {
    width: 100%;
  }
  .p-public__block-box-img {
    display: block;
    width: 100%;
    margin: 10px auto;
  }
  .p-public__block__scroll {
    height: 200px;
  }
}
/*----------------------------------------------------------------------------------------
none.scss
----------------------------------------------------------------------------------------*/
@media (min-width: 769px) {
  .u-tab-appea {
    display: none;
  }
}
@media (max-width: 768px) {
  .u-tab-none {
    display: none;
  }
}
@media (min-width: 481px) {
  .u-sp-appea {
    display: none;
  }
}
@media (max-width: 480px) {
  .u-sp-none {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */