@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --radius-md: 10px;

  /* text / base colors */
  --primary: #E85548;
  --primary-bg: #FCEAE6;
  --text-main: #333333;
  --text-strong: #000000;
  --white: #FFFFFF;
  
  /* customer cards */
  --customer-orange: #F49F00;
  --customer-blue: #236ED5;

  /* steps */
  --step-bg: #ECECEC;
  --arrow: #E04B3C;

  /* banner */
  --banner-orange: #F18F1D;
  --banner-sky: #00A1E5;
  --banner-pink: #EB6883;
  --banner-purple: #B488BB;
  --banner-navy: #404C8E;
  --banner-green: #29AC3D;
  --banner-blue: #006CB8;
  
  /* acc */
  interpolate-size: allow-keywords;
}


/* FONT */
.m-plus-r {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* BASE */
.pc {
	display: inline;
}
.sp {
	display: none;
}

/* CONTENT */
.concierge .fv_main {
  display: block;
  line-height: 0;
}
.concierge .sub_Lcontent_box {
  padding-top: 40px;
  padding-bottom: 40px;
}
.concierge .sub_Lcontent_box.under a.link {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.concierge .sub_Lcontent_box.under h2.under_title {
  margin-bottom: 15px;
  padding: 10px 20px;
  font-size: 16px;
}
.concierge .sub_Lcontent_box.under h3 {
  border: unset;
  padding: unset;
  color: unset;
  border-radius: unset;
  font-size: unset;
  background: unset;
}
.concierge .sub_Lcontent_box.under h3.sub_title {
  background: none;
  color: var(--text-strong);
  border: none;
  border-bottom: var(--primary) 1px solid;
  border-radius: 0;
  margin: 0 0 20px 0;
  padding: 0 0 5px 0;
  font-size: 18px;
  font-weight: 800;
}
.concierge .list__ul {
  margin-left: 1.3em;
}
.concierge .list__ul > li {
  list-style: disc;
}
.concierge .list__ol {
  counter-reset: item;
  padding: 0;
  list-style: none;
}
.concierge .list__ol > li {
  color: var(--text-main);
  position: relative;
  padding-left: 1.5em;
  line-height: 1.70em;
}
.concierge .list__ol > li::before {
  content: counter(item);
  counter-increment: item;
  color: var(--text-main);
  border: var(--text-main) 1px solid;
  width: 1.2em;
  height: 1.2em;
  display: grid;
  place-items: center;
  font-size: 11px;
  line-height: 1.1em;
  font-weight: 500;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.concierge .customer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.concierge .customer__card {
  min-height: 220px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: transform .12s ease, filter .12s ease;
}
.concierge .customer__card:hover {
  text-decoration: none !important;
}
.concierge .customer__card--personal {
  background: var(--customer-orange);
}
.concierge .customer__card--biz {
  background: var(--customer-blue);
}
.concierge .customer__inner {
  height: 100%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.concierge .customer__title {
  color: var(--white);
  margin: 0;
  padding-top: 10px;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.15;
  font-weight: 800;
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.concierge .customer__play {
  background: var(--white);
  width: clamp(20px, 2.2vw, 24px);
  height: clamp(20px, 2.2vw, 24px);
  font-size: 10px;
  line-height: clamp(20px, 2.2vw, 24px);
  border-radius: 50%;
}
.concierge .customer__card--personal .customer__play {
  color: var(--customer-orange);
}
.concierge .customer__card--biz .customer__play {
  color: var(--customer-blue);
  position: relative;
  top: clamp(12px, 1.2vw, 14px);
}
.concierge .customer__illust {
  max-width: 200px;
}

.concierge .steps__list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.concierge .steps__box {
  background: var(--step-bg);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.concierge .steps__item {
  position: relative;
}
.concierge .steps__list .steps__item.current .steps__box {
  color: var(--white);
}
.concierge .steps__list.personal .steps__item.current .steps__box {
  background: var(--customer-orange);
}
.concierge .steps__list.corporate .steps__item.current .steps__box {
  background: var(--customer-blue);
}
.concierge .steps__item:not(:last-child)::after {
  content: "";
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 12px solid var(--arrow);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: -18px;               /* gapの半分くらい */
  transform: translateY(-50%);
}
.concierge .steps__num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 800;
}
.concierge .steps__text {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}
.concierge .acc__list {
  display: grid;
  gap: 14px;
}
.concierge .acc__item {
  overflow: hidden;
}
.concierge .acc__item > summary {
  background: var(--primary-bg);
  border-radius: var(--radius-md);
  list-style: none;
}
.concierge .acc__item > summary::-webkit-details-marker {
  display: none;
}
.concierge .acc__q {
  color: var(--main-text);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.concierge .acc__qIcon {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--primary);
  width: 20px;
  height: 30px;
  font-size: 20px;
  font-weight: 800;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.concierge .acc__qText {
  line-height: 1.35;
  flex: 1 1 auto;
}
.concierge .acc__toggle {
  width: 15px;
  height: 15px;
  position: relative;
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.concierge .acc__item[open] .acc__toggle {
  transform: rotate(180deg);
}
.concierge .acc__toggle::before, .concierge .acc__toggle::after {
  content: "";
  background: var(--primary);
  width: 15px;
  height: 3px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.concierge .acc__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.concierge .acc__item[open] .acc__toggle::after {
  display: none;
}
.concierge .acc__a {
  background: var(--white);
  color: var(--main-text);
  /*padding: 15px 20px 15px 65px;*/
  line-height: 1.75;
}
.concierge .faq .acc__a {
  padding: 15px 20px 15px 50px;
}

@supports selector(details::details-content){

  .concierge .acc__item::details-content{
    height: 0;
    overflow: clip;
    opacity: 0;

    transition:
      height .6s cubic-bezier(.4,0,.2,1),
      padding .6s cubic-bezier(.4,0,.2,1),
      border-top .3s ease,
      opacity .25s ease,
      content-visibility .6s ease allow-discrete;

    content-visibility: hidden;
  }

  .concierge .acc__item[open]::details-content{
    height: auto;
    opacity: 1;

    /*padding: 15px 20px 15px 65px;*/
    content-visibility: visible;
  }
  /*
  .concierge .tabs .acc__item[open]::details-content{
    padding: 15px 10px 40px 10px;
  }
  .concierge .tabs.shop .acc__item[open]::details-content{
    padding-left: 0;
    padding-right: 0;
  }
  */
}

.concierge .fv_title {
  background: var(--white);
  color: var(--white);
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.concierge .fv_title .fv_title-wrap {
  padding: 40px 20px;
}
.concierge .fv_title h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.concierge .fv_title h1 * {
  font-size: clamp(14px, 2.0vw, 20px);
  line-height: 1.5em;
}
.concierge .fv_title h1 > * {
  display: block;
}
.concierge .fv_title .fv_title__text {
  font-size: clamp(22px, 3.6vw, 36px);
}
.concierge .fv_title .fv_title-wrap > p {
  margin-top: 5px;
}
.concierge .fv_title .customer__illust {
  margin-top: auto;
}
.concierge .fv_title.fv_title-personal {
  background: var(--customer-orange);
}
.concierge .fv_title.fv_title-corporate {
  background: var(--customer-blue);
}
.concierge .tabs .acc__list .acc__a {
  display: block;
}
.concierge .tabs .tabs__bar {
  border-bottom: var(--primary) 2px solid;
  margin-bottom: 20px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.concierge .tabs input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.concierge .tabs .tabs__bar {
  border-bottom: var(--primary) 2px solid;
  margin-bottom: 20px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.concierge .tabs .tabs__tab {
  border: var(--primary) 2px solid;
  border-bottom: none;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 14px 10px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  cursor: pointer;
  user-select: none;
}
.concierge #tab-proc:checked ~ .tabs__bar label[for="tab-proc"],
.concierge #tab-loan:checked ~ .tabs__bar label[for="tab-loan"],
.concierge #tab-buy:checked ~ .tabs__bar label[for="tab-buy"],
.concierge #tab-sell:checked ~ .tabs__bar label[for="tab-sell"] {
  background: var(--primary);
  color: var(--white);
}
.concierge .tabs .tabs__panel {
  display: none;
}
.concierge #tab-proc:checked ~ .tabs__panels .panel-proc,
.concierge #tab-loan:checked ~ .tabs__panels .panel-loan,
.concierge #tab-buy:checked ~ .tabs__panels .panel-buy,
.concierge #tab-sell:checked ~ .tabs__panels .panel-sell {
  display: block;
}
.concierge .tabs .acc__a {
  padding: 15px 20px 40px 20px;
}
.concierge .tabs.shop .acc__a {
  padding-left: 0;
  padding-right: 0;
}

.concierge .contactCta__box {
  border: var(--primary) 3px solid;
  border-radius: var(--radius-md);
  background: var(--white);
  text-decoration: none;
  display: block;
}
.concierge .contactCta__box.b__orange {
  border-color: var(--banner-orange);
}
.concierge .contactCta__box.b__sky {
  border-color: var(--banner-sky);
}
.concierge .contactCta__box.b__pink {
  border-color: var(--banner-pink);
}
.concierge .contactCta__box.b__purple {
  border-color: var(--banner-purple);
}
.concierge .contactCta__box.b__navy {
  border-color: var(--banner-navy);
}
.concierge .contactCta__box.b__green {
  border-color: var(--banner-green);
}
.concierge .contactCta__box.b__blue {
  border-color: var(--banner-blue);
}
.concierge .sub_Lcontent_box a.contactCta__box:hover {
  text-decoration: none !important;
}
.concierge .sub_Lcontent_box h3.contactCta__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--text-main);
  margin: 0 0 10px 0;
  font-size: clamp(18px, 3.0vw, 30px);
  line-height: 1.0em;
  font-weight: 800;
}
.concierge .sub_Lcontent_box .contactCta__lead {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-main);
  margin: 0 0 15px 0;
  font-size: clamp(13px, 1.4vw, 14px);
  line-height: 1.6em;
  font-weight: 700;
}
.concierge .sub_Lcontent_box .contactCta__lead .caution {
  color: var(--primary);
  margin-top: 5px;
  font-size: clamp(10px, 1.2vw, 12px);
}
.concierge .sub_Lcontent_box .contactCta__lead .brackets {
  margin-top: 5px;
  padding: 0 15px;
  font-size: 13px;
  display: inline-block;
  position: relative;
}
.concierge .sub_Lcontent_box .contactCta__lead .brackets::before,
.concierge .sub_Lcontent_box .contactCta__lead .brackets::after{
  font-size: 36px;
  line-height: 36px;
  font-weight: 100;
  display: block;
  position: absolute;
  top: 0;
}
.concierge .sub_Lcontent_box .contactCta__lead .brackets::before {
  content: "(";
  left: 0;
}
.concierge .sub_Lcontent_box .contactCta__lead .brackets::after {
  content: ")";
  right: 0;
}
.concierge .contactCta__btn {
  border: rgba(0,0,0,.75) 2px solid;
  background: var(--primary);
  color: var(--white) !important;
  min-width: 250px;
  padding: 5px 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: rgba(0,0,0,.75) 0 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.concierge .contactCta__box.b__orange .contactCta__btn {
  background: var(--banner-orange);
}
.concierge .contactCta__box.b__sky .contactCta__btn {
  background: var(--banner-sky);
}
.concierge .contactCta__box.b__pink .contactCta__btn {
  background: var(--banner-pink);
}
.concierge .contactCta__box.b__purple .contactCta__btn {
  background: var(--banner-purple);
}
.concierge .contactCta__box.b__navy .contactCta__btn {
  background: var(--banner-navy);
}
.concierge .contactCta__box.b__green .contactCta__btn {
  background: var(--banner-green);
}
.concierge .contactCta__box.b__blue .contactCta__btn {
  background: var(--banner-blue);
}
.concierge .contactCta__btn::after {
  content: "";
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid var(--white);
  border-right: 0;
}
.concierge .contactCta__illust {
  text-align: center;
  display: flex;
  justify-content: center;
}
.concierge .contactCta__illust img {
  width: auto;
  max-height: 160px;
  display: block;
}
.concierge .shopAction__btn {
  border: 2px solid var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
  max-width: 340px;
  width: 100%;
  height: 50px;
  padding: 5px 18px;
  line-height: 1.2em;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.concierge .shopAction__btn:hover {
  text-decoration: none !important;
}
.concierge .shopAction__btn::after {
  content: "";
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid var(--arrow);
  border-right: 0;
}
.concierge .shop__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.concierge .shop__list .shopAction__btn {
  border-width: 1px;
  padding: 5px 10px 5px 15px;
  justify-content: space-between;
  gap: 0;
}
.concierge .shop__list .shopAction__btn > span {
  width: calc(100% - 8px);
  text-align: center;
}
.concierge table {
  width: 100%;
}
.concierge .table__style1 {
}
.concierge .table__style1 thead th {
  border: #D7D7D7 1px solid;
  background: var(--primary);
  color: var(--white);
  padding: 10px;
  font-size: 18px;
  font-weight: 800;
}
.concierge .table__style1 td {
  border: #D7D7D7 1px solid;
  background: var(--white);
  padding: 20px;
  line-height: 1.7em;
}
.concierge .table__style1 .tel a {
  color: var(--text-main);
  white-space: nowrap;
}


/*SP
-------------------------------------------------------*/
@media screen and (max-width: 767px) {
  
	.pc {
		display: none;
	}
	.sp {
		display: inline;
	}
  .concierge .mb60 {
    margin-bottom: 40px;
  }
  
  /* CONTENT */
  .concierge .sub_Lcontent_box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .concierge .sub_Lcontent_box.under h3.sub_title {
    font-size: 15px;
  }
  .concierge .list__ol > li {
    font-size: 13px;
    line-height: 1.70em;
  }
  .concierge .customer {
    grid-template-columns: 1fr;
  }
  .concierge .customer__card {
    min-height: 200px;
  }
  .concierge .steps__list {
    grid-template-columns: 1fr;
  }
  .concierge .steps__box {
    padding: 12px 15px;
    min-height: inherit;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 15px;
  }
  .concierge .steps__item:not(:last-child)::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -16px;
    transform: translateX(-50%);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 12px solid var(--arrow);
    border-bottom: 0;
  }
  .concierge .steps__num {
    text-align: left;
    font-size: 12px;
  }
  .concierge .steps__text {
    width: auto;
    font-size: 15px;
    line-height: 1.2;
  }
  .concierge .faq {
    font-size: 13px;
  }
  .concierge .acc__q {
    padding: 10px 15px;
    gap: 10px;
  }
  .concierge .faq .acc__a {
    padding: 15px 0;
  }
  
  /*@supports selector(details::details-content) {

    .concierge .acc__item[open]::details-content{
      padding: 15px 0;
    }
    
  }*/
  
  .concierge .fv_title {
    padding: 0;
    flex-direction: column;
    text-align: center;
  }
  .concierge .fv_title .fv_title-wrap {
    padding: 30px 0 20px 0;
  }
  .concierge .tabs .tabs__tab {
    font-size: 14px;
    padding: 12px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .concierge .tabs .acc__a {
    padding: 15px 10px 30px 10px;
  }
  .concierge .tabs.shop .acc__a {
    padding-left: 0;
    padding-right: 0;
  }
  
  .concierge .contactCta__box {
    text-align: center;
    padding: 20px;
  }
  .concierge .sub_Lcontent_box h3.contactCta__title {
    margin-bottom: 10px;
    line-height: 1.3em;
  }
  .concierge .sub_Lcontent_box .contactCta__lead {
    margin-bottom: 5px;
    line-height: 1.7em;
    text-align: justify;
  }
  .concierge .sub_Lcontent_box .contactCta__lead .brackets::before,
  .concierge .sub_Lcontent_box .contactCta__lead .brackets::after{
    font-size: 58px;
    line-height: 58px;
  }
  .concierge .sub_Lcontent_box .contactCta__lead .brackets::before {
    left: -10px;
  }
  .concierge .sub_Lcontent_box .contactCta__lead .brackets::after {
    right: -10px;
  }
  .concierge .contactCta__illust img {
    width: auto;
    max-height: 100px;
  }
  .concierge .contactCta__btn {
  }
  .concierge .table__style1 thead th {
    font-size: 15px;
  }
  .concierge .table__style1 td {
    padding: 10px;
  }
  .concierge .table__style1 .tel {
    width: 130px;
  }
  
}


/*PC
-------------------------------------------------------*/
@media print, screen and (min-width: 768px) {

  .concierge .customer__card:hover {
    filter: brightness(1.1);
  }
  .concierge .customer__card:hover img {
    opacity: 1.0;
  }
  .concierge .fv_title {
    position: relative;
  }
  .concierge .fv_title .customer__illust {
    position: absolute;
    right: 20px;
    bottom: 0;
  }
  .concierge .contactCta__box {
    padding: 25px 130px 25px 30px;
    position: relative;
  }
  .concierge .contactCta__btn {
  }
  .concierge .contactCta__illust {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .concierge .contactCta__illust.center {
    bottom: calc(50% - 80px);
  }
  
  .concierge .contactCta__box, .concierge .shopAction__btn　{
    transition: opacity 0.3s ease;
  }
  .concierge .contactCta__box:hover, .concierge .shopAction__btn:hover {
    opacity: 0.7;
  }
  .concierge .contactCta__illust {
    margin-top: auto;
  }
  .concierge .shop__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .concierge .table__style1 .tel {
    width: 240px;
  }
	
}
