@charset "UTF-8";
:root {
  --color-brightest: #fff;
  --color-contrast: rgba(34, 165, 224, 0.7);
  --color-contrast02: #c9e2ed;
  --color-contrast03: rgba(34, 165, 224, 0.6);
  --color-accent: #22a5e0;
  --color-accent02: #fff82f;
  --color-black: #3e4145;
  --color-black02: #666;
  --color-link: #00f;
  --color-gray: #f4f4f4;
  --color-gray02: #989898;
  --transition: all 0.5s ease;
  --transition-duration: 0.5s;
  --box-shadow: 3px 3px 5px #00000029;
  --font-en: roboto, sans-serif;
  --notosans-top-offset: 0.07em;
  --z-index-on: 2;
}

:root {
  --top-support-scale: calc(400 / 340);
  --top-support-scale-reverse: calc(340 / 400);
}

/* =======================================================
swiper リセット
======================================================= */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: relative;
  bottom: initial;
  left: initial;
  display: flex;
  transition: all 0.5s ease;
  transform: none;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet,
.swiper-pagination-custom .swiper-pagination-bullet,
.swiper-pagination-fraction .swiper-pagination-bullet {
  margin: 0;
  opacity: 1;
}

/* =======================================================
c-top
======================================================= */
.c-top-section-wrapper.--bg {
  background: var(--color-gray);
}
.c-top-ttl {
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: 700;
  line-height: calc(70/48);
  text-align: center;
}
.c-top-ttl-deco {
  display: block;
  font-size: 24px;
  line-height: calc(35/24);
}
.c-top-slide-pagination {
  display: none;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}
.c-top-slide-pagination .swiper-pagination-bullet {
  background: var(--color-brightest);
  border: 1px solid var(--color-accent);
}
.c-top-slide-pagination .swiper-pagination-bullet-active {
  background: var(--color-accent);
}
.c-top-slide-button-prev, .c-top-slide-button-next {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-top-ttl {
    margin-bottom: 32px;
    font-size: 80px;
    line-height: calc(58/40);
  }
  .c-top-ttl-deco {
    font-size: 36px;
    line-height: calc(26/18);
  }
  .c-top-slide-container {
    position: relative;
    overflow: visible;
  }
  .c-top-slide {
    width: 690px;
    min-height: 632px;
    padding: 0 62px 60px;
    opacity: 1;
  }
  .c-top-slide:not(:last-of-type) {
    margin-right: 30px;
  }
  .c-top-slide-pagination {
    display: flex;
    gap: 16px;
    margin-top: 32px;
  }
  .c-top-slide-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
  .c-top-slide-button-prev, .c-top-slide-button-next {
    top: 50%;
    translate: 0 calc((100% + 48px) / 2 * -1);
    display: block;
    width: 60px;
    height: 120px;
    margin-top: 0;
  }
  .c-top-slide-button-prev::after, .c-top-slide-button-next::after {
    display: none;
  }
  .c-top-slide-button-prev {
    left: -30px;
    background: url("../images/top/swiper-arrow-prev.svg") center center/cover no-repeat;
  }
  .c-top-slide-button-next {
    right: -30px;
    background: url("../images/top/swiper-arrow-next.svg") center center/cover no-repeat;
  }
}
/* =======================================================
mv
======================================================= */
.ly-mv {
  position: relative;
  display: grid;
  align-items: end;
}

.bl-mv-movie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  object-fit: cover;
  height: 100%;
  translate: -50% -50%;
}


/* =======================================================
beginner
======================================================= */
.ly-beginner {
  position: relative;
  overflow: hidden;
  padding: 144px 0 160px;
  background: #fff0e6;
}

.ly-beginner::before {
  position: absolute;
  top: -430px;
  left: 50%;
  width: 1180px;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 132, 0, 0.22) 0%,
    rgba(255, 132, 0, 0) 68%
  );
  translate: -50% 0;
}

.bl-beginner {
  position: relative;
  z-index: 1;
  width: 1000px;
}

/* 見出し
-------------------------- */
.bl-beginner-heading {
  position: relative;
  display: grid;
  justify-items: center;
  padding-top: 50px;
  margin-bottom: 56px;
}

.bl-beginner-heading::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 61px;
	content: "";
	background: linear-gradient(
		to bottom,
		rgba(255, 106, 0, 0),
		rgba(255, 106, 0, 0.6)
	);
	transform: translateX(-50%) scaleY(0);
	transform-origin: top;
	animation: heading-line 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes heading-line {

	0% {
		transform: translateX(-50%) scaleY(0);
		transform-origin: top;
	}

	30% {
		transform: translateX(-50%) scaleY(1);
		transform-origin: top;
	}

	70% {
		transform: translateX(-50%) scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: translateX(-50%) scaleY(0);
		transform-origin: bottom;
	}

}

.bl-beginner-heading-en {
	display: inline-block;
	font-family: "Alata", var(--font-en);
	font-size: 76px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;

	background-image: linear-gradient(
		110deg,
		#ff6a00 0%,
		#ff8400 55%,
		#333 115%
	);
	background-repeat: no-repeat;
	background-position: 100% center;
	background-size: 300% 100%;

	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;

	opacity: 0;
	transform: translateY(20px) skewX(-8deg);
	transform-origin: center;

	transition:
		opacity 0.6s ease-in,
		transform 0.6s ease-in,
		background-position 0.8s ease-in;
}

.bl-beginner-heading.is-animated .bl-beginner-heading-en {
	background-position: 75% center;
	opacity: 1;
	transform: translateY(0) skewX(-8deg);
}

.bl-beginner-heading-ja {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  min-height: 19px;
  margin-top: -16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-brightest);
  text-align: center;
  background: #000;
}

/* 導入見出し
-------------------------- */
.bl-beginner-intro {
  margin-bottom: 40px;
  text-align: center;
}

.bl-beginner-intro-sub {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #333;
}

.bl-beginner-intro-ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  color: #333;
  margin-top: 12px;
}

/* カード一覧
-------------------------- */
.bl-beginner-list {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: 30px;
  justify-content: center;
  margin-bottom: 72px;
}

.bl-beginner-item {
  position: relative;
  padding-top: 22px;
}

.bl-beginner-item-inner {
  min-height: 558px;
  padding: 20px;
  background: var(--color-brightest);
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.15);
}

.bl-beginner-item-label {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: grid;
  place-content: center;
  width: 226px;
  min-height: 45px;
  padding: 8px 20px;
  background: #ff6a00;
  translate: -50% 0;
}

.bl-beginner-item-label::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  content: "";
  background: #ff6a00;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% 0;
}

.bl-beginner-item-label-txt {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-brightest);
  text-align: center;
}

.bl-beginner-item-imgwrapper {
  position: relative;
  display: flex;
  width: 240px;
  height: 144px;
  margin: 20px auto 20px;
  overflow: hidden;
  background: #d9d9d9;
}

.bl-beginner-item-imgwrapper::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(0, 0, 0, 0.12);
}

.bl-beginner-item-imgwrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-beginner-item-body {
  text-align: center;
}

.bl-beginner-item-ttl {
  min-height: 48px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}

.bl-beginner-item-txt {
  min-height: 66px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  letter-spacing: normal;
}

.bl-beginner-point-list {
  display: grid;
  gap: 6px;
  min-height: 90px;
  padding: 14px 12px;
  text-align: left;
  background: #faf7f2;
}

.bl-beginner-point-item {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}

.bl-beginner-point-item {
  position: relative;
  min-height: 18px;
  padding-left: 26px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}

/* オレンジの円 */
.bl-beginner-point-item::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: #ff6a00;
  border-radius: 50%;
}

/* 白いチェック */
.bl-beginner-point-item::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
}

/* 前払金保証
-------------------------- */
.bl-beginner-guarantee {
  position: relative;
  display: grid;
  place-content: center;
  width: 515px;
  margin: 0 auto;
  text-align: center;
}

.bl-beginner-guarantee::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 430px;
	height: 430px;
	content: "";
	pointer-events: none;

	background: radial-gradient(
		circle at center,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0.85) 32%,
		rgba(255, 255, 255, 0.55) 55%,
		rgba(255, 255, 255, 0.2) 72%,
		rgba(255, 255, 255, 0) 100%
	);

	filter: blur(28px);
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.45);
	transform-origin: center;
	transition:
		transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.45s ease;
	will-change: transform, opacity;
}

.bl-beginner-guarantee.is-animated::before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.bl-beginner-guarantee-inner {
  position: relative;
  z-index: 1;
  padding-top: 61px;
}

.bl-beginner-guarantee-inner::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 61px;
	content: "";
	background: linear-gradient(
		to bottom,
		rgba(255, 106, 0, 0),
		rgba(255, 106, 0, 0.6)
	);
	transform: translateX(-50%) scaleY(0);
	transform-origin: top;
	animation: guarantee-line 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes guarantee-line {

	0% {
		transform: translateX(-50%) scaleY(0);
		transform-origin: top;
	}

	30% {
		transform: translateX(-50%) scaleY(1);
		transform-origin: top;
	}

	70% {
		transform: translateX(-50%) scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: translateX(-50%) scaleY(0);
		transform-origin: bottom;
	}

}

.bl-beginner-guarantee-ttl {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

.bl-beginner-guarantee-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #333;
  text-align: center;
}



/* =======================================================
beginner SP
======================================================= */
@media screen and (max-width: 750px) {
  .ly-beginner {
    padding: 96px 0 112px;
  }

  .ly-beginner::before {
    top: -200px;
    width: 680px;
  }

  .bl-beginner {
    width: auto;
    padding-right: 25px;
    padding-left: 25px;
  }

  .bl-beginner-heading {
    padding-top: 37px;
    margin-bottom: 50px;
  }

  .bl-beginner-heading::before {
    height: 45px;
  }

  .bl-beginner-heading-en {
    font-size: 54px;
  }

  .bl-beginner-heading-ja {
    min-height: 19px;
    margin-top: -10px;
    font-size: 14px;
	text-wrap: nowrap;
  }

  .bl-beginner-intro {
    margin-bottom: 32px;
  }

  .bl-beginner-intro-sub {
    font-size: 18px;
  }

  .bl-beginner-intro-ttl {
    font-size: 26px;
    text-align: center;
    margin-top: 8px;
  }

  .bl-beginner-list {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-bottom: 56px;
  }

  .bl-beginner-item {
    width: 100%;
    max-width: 325px;
    padding-top: 22px;
    margin-right: auto;
    margin-left: auto;
  }

  .bl-beginner-item-inner {
    min-height: auto;
    padding: 25px;
    box-shadow: none;
  }

  .bl-beginner-item-label {
    width: 226px;
  }

  .bl-beginner-item-imgwrapper {
    width: 275px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 275 / 165;
    margin-top: 20px;
  }

  .bl-beginner-item-ttl {
    min-height: auto;
    margin-bottom: 12px;
  }

  .bl-beginner-item-txt {
    min-height: auto;
    margin-bottom: 16px;
  }

  .bl-beginner-point-list {
    min-height: auto;
    padding: 12px;
  }

  .bl-beginner-point-item {
    font-size: 12px;
  }

  .bl-beginner-guarantee {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .bl-beginner-guarantee-inner {
    padding-top: 53px;
  }

  .bl-beginner-guarantee-inner::before {
    height: 53px;
  }
	.bl-beginner-guarantee::before {
		position: absolute;
		top: 48%;
		left: 52%;
		width: 370px;
		height: 320px;
		content: "";
		pointer-events: none;

		background: radial-gradient(
			ellipse at 45% 48%,
			rgba(255, 255, 255, 0.9) 0%,
			rgba(255, 255, 255, 0.75) 42%,
			rgba(255, 255, 255, 0.38) 64%,
			rgba(255, 255, 255, 0) 100%
		);

		filter: blur(32px);
		opacity: 0;
		transform:
			translate(-50%, -50%)
			rotate(-6deg)
			scale(0.45);
	}

	.bl-beginner-guarantee.is-animated::before {
		opacity: 1;
		transform:
			translate(-50%, -50%)
			rotate(-6deg)
			scale(1);
	}

  .bl-beginner-guarantee-ttl {
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    font-size: 18px;
    line-height: 1.8;
  }

  .bl-beginner-guarantee-txt {
    font-size: 16px;
    line-height: 2;
  }
}

/* =========================================================
  PRICE
========================================================= */
.ly-price {
  position: relative;
  overflow: hidden;
  padding: 130px 0 140px;
  background:
    linear-gradient(
      135deg,
      #faf7f2 0%,
      #f8e0c0 48%,
      #faf7f2 100%
    );
}

.ly-price::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.15;
  background-image:
    radial-gradient(
      circle,
      rgba(180, 93, 1, 0.3) 0 0.6px,
      transparent 0.8px
    );
  background-size: 4px 4px;
}

.bl-price {
  position: relative;
  z-index: 1;
}

/* ボタン
-------------------------- */
.bl-price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 256px;
  height: 54px;
  margin: 64px auto 0;
}

@media screen and (max-width: 750px) {
  .ly-price {
    padding: 90px 0 100px;
  }

  /* ボタン */
  .bl-price-btn {
    width: 300px;
    height: 52px;
    margin-top: 48px;
  }
}

/* =========================================================
  ABOUT
========================================================= */

.ly-about {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 130px 0 150px;
  background: #FAF7F2;
}

.bl-about {
  position: relative;
  z-index: 1;
}


/* 比較表
----------------------------------------- */

.bl-about-compare {
  width: 800px;
  margin: 90px auto 0;
}

.bl-about-compare-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl-about-ribbon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  height: 36px;
  margin: 0;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #ff6a00;
  background: #fff;
}

.bl-about-ribbon::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  background: #fff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.bl-about-ribbon span {
  position: relative;
  z-index: 1;
}

.bl-about-compare-ttl {
  margin: 9px 0 0;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #333;
}

.bl-about-compare-img {
  display: block;
  width: 800px;
  margin-top: 28px;
}

.bl-about-compare-img img {
  display: block;
  width: 100%;
  height: auto;
}


/* 店舗
----------------------------------------- */

.bl-about-shop {
  width: 900px;
  margin: 140px auto 0;
}

.bl-about-shop-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl-about-shop-ttl {
  margin: 9px 0 0;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.35;
  color: #333;
}

.bl-about-shop-txt {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #333;
}


/* エリアボタン
----------------------------------------- */

.bl-about-area-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 760px;
  margin: 36px auto 0;
}

.bl-about-area-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 36px;
  padding: 0 22px;
  border: 1px solid #ff6a00;
  border-radius: 35px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #333;
  background: #fff;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.bl-about-area-btn:hover,
.bl-about-area-btn.is-active {
  color: #fff;
  background: #ff6a00;
}

.bl-about-area-btn:focus-visible {
  outline: 2px solid #333;
  outline-offset: 3px;
}


/* 店舗カード
----------------------------------------- */

.bl-about-shop-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bl-about-shop-card {
  overflow: hidden;
  background: #fff;
}

.bl-about-shop-card-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #fff;
  background: #ff6a00;
}

.bl-about-shop-card-body {
  padding: 14px;
}

.bl-about-shop-card-img {
  overflow: hidden;
  width: 100%;
  height: 120px;
  aspect-ratio: 1.8 / 1;
  background: #faf7f2;
}

.bl-about-shop-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-about-shop-card-info {
  margin-top: 12px;
}

.bl-about-shop-card-access,
.bl-about-shop-card-address {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

.bl-about-shop-card-address {
  margin-top: 4px;
}

.bl-about-shop-panel[hidden] {
  display: none;
}

.bl-about-shop-panel.is-active {
  display: block;
}

.bl-about-shop-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.bl-about-shop-card-link:hover {
  opacity: 1;
}

.bl-about-shop-card-link:hover
.bl-about-shop-card-img img {
  transform: scale(1.04);
}

.bl-about-shop-card-img img {
  transition: transform 0.3s ease;
}

.bl-about-shop-card-noimg {
  display: block;
  width: 100%;
  height: 100%;
  background: #faf7f2;
}

.bl-about-shop-empty {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.bl-about-shop-card {
  overflow: hidden;
  height: 100%;
  background: #fff;
}

.bl-about-shop-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bl-about-shop-card-body {
  flex: 1;
  padding: 14px;
}

@media screen and (max-width: 750px) {

  .ly-about {
    padding: 90px 0 100px;
  }

  .bl-about-bg-circle {
    display: none;
  }


  /* 比較表
  ----------------------------------------- */

  .bl-about-compare {
    width: 325px;
    margin-top: 65px;
  }

  .bl-about-ribbon {
    min-width: 208px;
    height: 36px;
    padding: 0 20px;
    font-size: 16px;
  }

  .bl-about-compare-ttl {
    margin-top: 10px;
    font-size: 30px;
    line-height: 1.3;
  }

  .bl-about-compare-img {
    width: 325px;
    margin-top: 26px;
  }


  /* 店舗
  ----------------------------------------- */

  .bl-about-shop {
    width: 325px;
    margin-top: 100px;
  }

  .bl-about-shop-ttl {
    margin-top: 10px;
    font-size: 30px;
    line-height: 1.3;
  }

  .bl-about-shop-txt {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }
	
  .bl-about-shop-card-link {
    height: 100%;
  }

  .bl-about-shop-card-body {
    min-height: 223px;
    padding: 11px;
  }


  /* エリアボタン
  ----------------------------------------- */

  .bl-about-area-nav {
    gap: 10px 12px;
    width: 316px;
    margin-top: 30px;
  }

  .bl-about-area-btn {
    min-width: 106px;
    height: 30px;
    padding: 0 17px;
    font-size: 14px;
  }

  .bl-about-area-btn[data-area="hokkaido-tohoku"] {
    min-width: 162px;
  }

  .bl-about-area-btn[data-area="kansai-osaka"],
  .bl-about-area-btn[data-area="chugoku-shikoku"],
  .bl-about-area-btn[data-area="kyushu-okinawa"] {
    min-width: 148px;
  }


  /* 店舗カード
  ----------------------------------------- */

  .bl-about-shop-list {
    grid-template-columns: repeat(2, 155px);
    gap: 26px 15px;
    margin-top: 38px;
  }

  .bl-about-shop-card {
    width: 155px;
  }

  .bl-about-shop-card-ttl {
    min-height: 26px;
    padding: 3px 5px;
    font-size: 14px;
  }

  .bl-about-shop-card-body {
    min-height: 223px;
    padding: 11px;
  }

  .bl-about-shop-card-img {
    width: 133px;
    height: 74px;
  }

  .bl-about-shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bl-about-shop-card-info {
    margin-top: 10px;
  }

  .bl-about-shop-card-access,
  .bl-about-shop-card-address {
    font-size: 12px;
    line-height: 1.6;
  }

  .bl-about-shop-card-address {
    margin-top: 4px;
  }

}


/* =========================================================
  COUNSELING
========================================================= */

.ly-counseling {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 55px 0 70px;
  background:
    linear-gradient(
      120deg,
      #ff6a00 0%,
      #ff7b22 52%,
      #f8e0c0 140%
    );
}

/* 細かなノイズ */
.ly-counseling::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.13;
  background-image:
    radial-gradient(
      circle,
      rgba(115, 56, 0, 0.45) 0 0.55px,
      transparent 0.8px
    );
  background-size: 3px 3px;
}

/* 右側の淡い光 */
.ly-counseling::after {
  position: absolute;
  top: -250px;
  right: -350px;
  width: 900px;
  height: 1100px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.33) 0%,
      rgba(255, 255, 255, 0.14) 45%,
      rgba(255, 255, 255, 0) 72%
    );
}

.bl-counseling {
  position: relative;
  z-index: 1;
  width: 900px;
  margin: 0 auto;
}


/* 見出し
----------------------------------------- */

.bl-counseling-heading {
  padding-top: 52px;
  margin-bottom: 25px;
}

.bl-counseling-heading::before {
  height: 60px;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.5)
    );
}

.bl-counseling-heading .bl-beginner-heading-en {
  font-size: 76px;
  line-height: 1.25;
  background:
    linear-gradient(
      105deg,
      #fff 0%,
      #ffd6b8 48%,
      #fff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bl-counseling-heading .bl-beginner-heading-ja {
  width: auto;
  min-width: 156px;
  min-height: 19px;
  padding: 0 10px;
  margin-top: -5px;
  font-size: 15px;
  color: #fff;
  background: #000;
}


/* 導入
----------------------------------------- */

.bl-counseling-lead {
  text-align: center;
  padding-top: 16px;
}

.bl-counseling-lead-ttl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 450px;
  min-height: 32px;
  padding: 0 20px 2px;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #333;
  background: #fff;
}

.bl-counseling-lead-txt {
  margin: 13px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  text-align: center;
}


/* メインレイアウト
----------------------------------------- */

.bl-counseling-content {
  display: grid;
  grid-template-columns: 400px 360px;
  gap: 64px;
  align-items: center;
  justify-content: center;
  margin-top: 27px;
}


/* 写真
----------------------------------------- */

.bl-counseling-img {
  position: relative;
  overflow: hidden;
  width: 400px;
  height: 250px;
  margin: 0;
  background: #d9d9d9;
}

.bl-counseling-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-counseling-img-label {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 43px;
  min-height: 19px;
  padding: 1px 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  text-align: center;
  background: #fff;
}


/* 右側
----------------------------------------- */

.bl-counseling-detail {
  width: 360px;
}

.bl-counseling-detail-ttl {
  padding-bottom: 10px;
  margin: 0 0 21px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.8);
}

.bl-counseling-point-list {
  display: grid;
  grid-template-columns: repeat(2, 139px);
  gap: 25px;
  justify-content: center;
}

.bl-counseling-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 139px;
  height: 139px;
  color: #ff6a00;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      #fff 0%,
      #fff 55%,
      #ffe4d0 100%
    );
  border-radius: 50%;
}

.bl-counseling-point-ttl {
  position: relative;
  width: 84px;
  padding-bottom: 3px;
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.bl-counseling-point-ttl::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background:
    linear-gradient(
      to right,
      rgba(255, 106, 0, 0),
      rgba(255, 106, 0, 0.6),
      rgba(255, 106, 0, 0)
    );
}

.bl-counseling-point-txt {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.bl-counseling-time {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -4px 0 0;
  color: #ff6a00;
}

.bl-counseling-time-prefix,
.bl-counseling-time-unit {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.bl-counseling-time-prefix {
  align-self: flex-start;
  margin-top: 15px;
}

.bl-counseling-time-unit {
  align-self: flex-end;
  margin-bottom: 10px;
}

.bl-counseling-time-num {
  font-family: "Alata", var(--font-en);
  font-size: 51px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}


/* CTA
----------------------------------------- */

.bl-counseling-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 51px;
}

.bl-counseling-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 42px 0 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #333;
  border: 2px solid;
  border-color:
    #e2d4c2
    #ffeecf
    #b3a495
    #e2d4c2;
  border-radius: 50px;
  box-shadow: 2px 2px 0 #ff6a00;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.bl-counseling-btn::after {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .bl-counseling-btn:hover {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-2px);
  }
  .bl-counseling-btn:hover::after {
	 border-left-color: #fff;
     transform: translate(4px, -50%);
	}
}

@media screen and (max-width: 750px) {
  .ly-counseling {
    min-height: auto;
    padding: 68px 0 70px;
  }

  .ly-counseling::after {
    top: 100px;
    right: -380px;
    width: 750px;
    height: 1000px;
  }

  .bl-counseling {
    width: 325px;
  }


  /* 見出し */

  .bl-counseling-heading {
    padding-top: 37px;
    margin-bottom: 31px;
  }

  .bl-counseling-heading::before {
    height: 45px;
  }

  .bl-counseling-heading .bl-beginner-heading-en {
    font-size: 54px;
    line-height: 1.5;
	text-wrap: nowrap;
  }

  .bl-counseling-heading .bl-beginner-heading-ja {
    min-width: 158px;
    margin-top: -10px;
    font-size: 14px;
  }


  /* 導入 */

  .bl-counseling-lead-ttl {
    display: flex;
    flex-direction: column;
    width: fit-content;
    min-width: 0;
    min-height: 0;
    padding: 0;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.35;
    background: transparent;
  }

  .bl-counseling-lead-ttl::before {
    display: block;
    padding: 0 13px 2px;
    content: "まずはあなたの悩みを";
    background: #fff;
    width: fit-content;
    font-size: 22px;
  }

  .bl-counseling-lead-ttl {
    font-size: 0;
  }

  .bl-counseling-lead-ttl::after {
    display: block;
    width: fit-content;
    padding: 0 13px 2px;
    margin: 3px auto 0;
    font-size: 22px;
    content: "聞かせてください";
    background: #fff;
  }

  .bl-counseling-lead-txt {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }


  /* 縦積み */

  .bl-counseling-content {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
    margin-top: 22px;
  }


  /* 写真 */

  .bl-counseling-img {
    width: 325px;
    height: 203px;
  }

  .bl-counseling-img-label {
    min-width: 35px;
    min-height: 16px;
    font-size: 10px;
  }


  /* 詳細 */

  .bl-counseling-detail {
    width: 325px;
  }

  .bl-counseling-detail-ttl {
    padding-bottom: 9px;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .bl-counseling-point-list {
    grid-template-columns: repeat(2, 139px);
    gap: 25px;
  }


  /* CTA */

  .bl-counseling-btn-wrap {
    margin-top: 48px;
  }

  .bl-counseling-btn {
    width: 320px;
    height: 65px;
    padding: 0 60px 0 45px;
    font-size: 14px;
    line-height: 1.2;
  }

  .bl-counseling-btn::after {
    right: 24px;
  }

}

/* =======================================================
NEWS
======================================================= */
.ly-news {
  position: relative;
  overflow: hidden;
  padding: 150px 0 145px;
  background: #fff;
}

/* 背景のオレンジぼかし */
.ly-news::before {
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 132, 0, 0.5) 0%,
    rgba(255, 132, 0, 0.25) 38%,
    rgba(255, 132, 0, 0.08) 64%,
    rgba(255, 132, 0, 0) 100%
  );
  filter: blur(10px);
  transform: translate(-50%, -50%);
}

.bl-news {
  position: relative;
  z-index: 1;
}

/* 記事一覧
-------------------------- */
.bl-news-article-wrapper {
  width: 100%;
}

.bl-news-article {
  border-bottom: 1px solid #ccc;
}

.bl-news-article:first-child {
  border-top: 1px solid #ccc;
}

.bl-news-article-link {
  position: relative;
  display: grid;
  grid-template-columns: 167px minmax(0, 1fr) 12px;
  column-gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 19px 6px;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.bl-news-article-meta {
  display: grid;
  grid-template-columns: 74px 93px;
  gap: 0;
  align-items: center;
}

.bl-news-article-time {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #707070;
  letter-spacing: 0;
}

.bl-news-article-cat {
  display: grid;
  place-content: center;
  width: 93px;
  min-height: 22px;
  padding: 1px 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  text-align: center;
  white-space: nowrap;
  background: #faf7f2;
}

.bl-news-article-ttl {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* 記事右側の三角矢印 */
.bl-news-article-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ff6a00;
}

/* 一覧ボタン
-------------------------- */
.bl-news-archive-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 256px;
  min-height: 54px;
  padding: 10px 42px 11px 30px;
  margin: 70px auto 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #333;
  text-decoration: none;
  background:
    linear-gradient(
      130deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 132, 0, 0.18) 100%
    ),
    #fff;
  border: 2px solid #ff6a00;
  border-radius: 40px;
  box-shadow: 2px 2px 0 #ff6a00;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.bl-news-archive-link::after {
  position: absolute;
  top: 50%;
  right: 27px;
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #333;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .bl-news-article-link:hover {
    opacity: 0.65;
  }

  .bl-news-archive-link:hover {
    box-shadow: 0 0 0 #ff6a00;
    transform: translate(2px, 2px);
  }
}
@media screen and (max-width: 750px) {
  /* セクション
  -------------------------- */
  .ly-news {
    position: relative;
    padding: 70px 0 64px;
    overflow: hidden;
    background: #fff;
  }

  .ly-news::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1023px;
    height: 1023px;
    content: "";
    pointer-events: none;

    background: radial-gradient(
      circle at center,
      rgba(255, 132, 0, 0.5) 0%,
      rgba(255, 132, 0, 0) 100%
    );

    transform: translate(-50%, -50%);
  }

  .bl-news {
    display: block;
    width: 100%;
  }

  /* 見出し
  -------------------------- */
  .bl-news-heading {
    width: 159px;
    padding-top: 0;
    margin: 0 auto 52px;
  }

  /* BEGINNER共通の上側縦線を無効化 */
  .bl-news-heading::before {
    display: none;
  }

  /* NEWS見出し下の縦線 */
  .bl-news-heading::after {
    display: block;
    width: 2px;
    height: 45px;
    margin-top: 13px;
    content: "";
    background: linear-gradient(
      to bottom,
      rgba(255, 106, 0, 0.6) 0%,
      rgba(255, 106, 0, 0) 100%
    );
  }

  .bl-news-heading .bl-beginner-heading-en {
    width: auto;
    font-size: 54px;
    line-height: 1.5;
  }

  .bl-news-heading .bl-beginner-heading-ja {
    width: 80px;
    min-height: 19px;
    padding: 0 10px;
    margin-top: -10px;
    font-size: 14px;
    line-height: 1.35;
  }

  /* 記事一覧
  -------------------------- */
  .bl-news-content {
    width: 327px;
    margin: 0 auto;
  }

  .bl-news-article-wrapper {
    display: grid;
    gap: 18px;
    width: 327px;
  }

  .bl-news-article {
    width: 327px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ccc;
  }

  /* 最後の余分な下余白を除去 */
  .bl-news-article:last-child {
    padding-bottom: 0;
  }

  .bl-news-article-link {
    position: relative;
    display: block;
    width: 325px;
    min-height: 60px;
    color: #333;
  }

  /* カテゴリーと日付 */
  .bl-news-article-meta {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    width: 300px;
    margin-bottom: 10px;
  }

  .bl-news-article-time {
    margin-left: 13px;
    font-size: 14px;
    line-height: 1.6;
    color: #707070;
  }

  .bl-news-article-cat {
    display: grid;
    place-content: center;
    width: 93px;
    height: 22px;
    min-height: 22px;
    padding: 0 8px 2px;
    font-size: 14px;
    line-height: 1.4;
    background: #faf7f2;
  }

  /* タイトル */
  .bl-news-article-ttl {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  /* 右端矢印 */
  .bl-news-article-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ff6a00;
    transform: translateY(-50%);
  }

  /* 一覧ボタン
  -------------------------- */
  .bl-news-archive-link {
    width: 256px;
    min-height: 54px;
    margin-top: 52px;
  }
}