@charset "UTF-8";
:root {
  --color-brightest: #fff;
  --color-contrast: rgba(34, 165, 224, 0.7);
  --color-contrast02: #c9e2ed;
  --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;
  --box-shadow: 3px 3px 5px #00000029;
  --font-en: roboto, sans-serif;
}

div#video-choose {
  display: none;
}

/* =======================================================
基本設定
======================================================= */
@font-face {
  font-family: noto-sans-jp;
  font-weight: normal;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-sans-jp;
  font-weight: 500;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-sans-jp;
  font-weight: bold;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: roboto;
  font-weight: 600;
  src: url("../fonts/Roboto/Roboto-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: roboto;
  font-weight: bold;
  src: url("../fonts/Roboto/Roboto-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-serif-jp;
  font-weight: normal;
  src: url("../fonts/Noto-Serif-JP/NotoSerifJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-serif-jp;
  font-weight: bold;
  src: url("../fonts/Noto-Serif-JP/NotoSerifJP-Bold.woff") format("woff");
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  overflow-wrap: break-word;
  outline: none;
  box-shadow: none;
  line-break: strict;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:focus,
a:focus {
  outline: none;
}

body,
.ly-head,
.ly-main,
.ly-foot {
  min-width: 1024px;
}

body {
  font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black);
  letter-spacing: 0.05em;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
  display: block;
}

table {
  border-spacing: 0;
  border-collapse: separate;
}

ul,
ol {
  list-style: none;
}

p,
li,
dt,
dd,
th,
td {
  overflow-wrap: anywhere;
  -ms-line-break: strict;
  line-break: strict;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: optimize-contrast;
}

picture {
  line-height: 0;
}

input,
button,
select,
textarea {
  font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  color: #222;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

input[type=checkbox] {
  display: none;
}

input[type=radio] {
  display: none;
}

button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* PC SP */
.pc {
  display: initial;
}

.sp {
  display: none;
}

@media only screen and (device-width >= 1025px) {
  /* PCのみホバー効果 */
  a,
  .hp-hover {
    transition: var(--transition);
  }
  a:hover,
  .hp-hover:hover {
    opacity: 0.7;
  }
  label:hover {
    cursor: pointer;
  }
}
@media screen and (width <= 750px) {
  body,
  .ly-head,
  .ly-main,
  .ly-foot {
    width: 100%;
    min-width: 750px;
    max-width: 750px;
  }
  body {
    font-size: 28px;
  }
  input,
  button,
  select,
  textarea {
    font-size: 30px;
  }
  .sp {
    display: initial;
  }
  .pc {
    display: none;
  }
}
/* =============================
共通レイアウト
============================== */
.ly-main {
  position: relative;
  z-index: 2;
  margin-top: 134px;
}

/* 全体のWrapper */
.ly-allwrapper {
  overflow: clip;
}

/* inner */
.ly-head-inner,
.ly-foot-inner,
.ly-cont,
.ly-cont-inner {
  position: relative;
  width: 924px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* 2カラム */
.ly-cont--col {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
}

.ly-cont-main {
  width: 700px;
}

.ly-cont-side {
  width: 280px;
}

/* bl-media */
.bl-mediaList {
	display: grid;
	gap: 56px;
}
.bl-media {
	display: grid;
	grid-template: auto 1fr / 496px auto;
	grid-template-areas: "imgWrapper body";
	gap: 0 32px;
}
.bl-media:has(.el-media-ttl) {
	grid-template-areas: 
		"imgWrapper title"
		"imgWrapper body"
		"btm_txt btm_txt";
}
.bl-media:has(.bl-media-btmTxt) {
	grid-template: auto 1fr auto / 496px auto;
	grid-template-areas: 
		"imgWrapper title"
		"imgWrapper body"
		"btm_txt btm_txt";
}
.bl-media-imgWrapper {
	grid-area: imgWrapper;
}
.el-media-ttl {
	grid-area: title;
	font-size: 26px;
	margin-bottom: 16px;
}
.bl-media-body {
	grid-area: body;
	display: flex;
	flex-direction: column;
	gap: 1.3em;
}
.el-media-btmTxt {
	grid-area: btm_txt;
	margin-top: 1.3em;
}
/* bl_card */
.bl-cardUnit {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}
.bl-card {
	width: 320px;
	padding: 24px;
	position: relative;
}
.bl-card:has(.bl-card-link){
	padding: 0;
}
.bl-card-link{
	display: block;
	width: 100%;
	height: 100%;
	padding: 24px;
}
.el-card-ttl{
	font-size: 22px;
	text-align: center;
	margin-bottom: 16px;
}

@media screen and (width <= 750px) {
  .ly-main {
    margin-top: 120px;
  }
  /* inner */
  .ly-cont,
  .ly-cont-inner {
    width: 690px;
  }
  /* 2カラム */
  .ly-cont--col {
    gap: 80px;
  }
  .ly-cont-main,
  .ly-cont-side {
    width: 100%;
  }
  /* bl-media */
	.bl-media {
		grid-template: auto / auto;
		grid-template-areas: "imgWrapper" "body";
	}
	.bl-media.img-first{
		grid-template: auto / auto;
		grid-template-areas: "imgWrapper" "title" "body";
	}
	.bl-media:has(.el-media-ttl) {
		grid-template: auto / auto;
		grid-template-areas: "title" "imgWrapper" "body";
	}
	.bl-media:has(.el-media-btmTxt) {
		grid-template: auto / auto;
		grid-template-areas: "title" "imgWrapper" "body" "btm_txt";
	}
	.bl-media-imgWrapper {
		margin-bottom: 32px;
	}
	.el-media-ttl {
		font-size: 32px;
		margin-bottom: 24px;
	}
	/* bl-card */
	.bl-card {
		width: 100%;
	}
	.el-card-ttl{
		font-size: 32px;
	}
}
/* =============================
下層MV - パンくず
============================== */
.bl-lower-mv {
  width: auto;
  height: 300px;
  background: url("../images/common/mv-bg.png") center center/cover no-repeat;
  padding-top: 80px;
}
.bl-lower-mv-ttl {
  font-size: 70px;
  color: #FFFFFF;
  letter-spacing: 0px;
  text-align: center;
  position: relative;
}
.bl-lower-mv-ttl::after {
  position: absolute;
	content: "";
	font-size: 24px;
  color: #FFF82F;
  bottom: -32px;
	left: 50%;
	transform: translateX(-50%);
}
.bl-lower-mv-ttl > span {
  display: block;
  font-size: 50px;
  letter-spacing: 0px;
  line-height: 1.3em;
}

/* パンくず */
.bl-breadcrumbs-inner {
  display: flex;
  width: 1020px;
  padding: 4px 0 6px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}

.bl-breadcrumbs-inner > li {
  font-size: 10px;
}

.bl-breadcrumbs-inner > li:first-child {
  display: flex;
  align-items: center;
}

.bl-breadcrumbs-inner > li:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bl-breadcrumbs-inner > li:first-of-type ~ li::before {
  margin: 0 7px;
  color: #C9E2ED;
  content: ">";
}

.bl-breadcrumbs-inner .home {
  display: flex;
  align-items: center;
  font-size: 10px;
}

@media screen and (width <= 750px) {
  .bl-lower-mv {
    height: 299px;
    background: url("../images/common/mv-bg-sp.png") center center/cover no-repeat;
    padding-top: 72px;
    position: relative;
    z-index: -1;
  }
  .bl-lower-mv-ttl {
    font-size: 79px;
    line-height: 1.3em;
  }
  .bl-lower-mv-ttl::after {
	  font-size: 26px;
    bottom: -72px;
  }
  .bl-lower-mv-ttl > span {
    font-size: 50px;
}
  /* パンくず */
  .bl-breadcrumbs-inner {
    position: absolute;
    width: 690px;
    padding: 16px 0 0 32px;
    z-index: 1;
  }
  .bl-breadcrumbs-inner > li {
    font-size: 20px;
    color: #FFFFFF;
  }
  .bl-breadcrumbs-inner > li:first-of-type ~ li::before {
    margin: 0 10px;
  }
  .bl-breadcrumbs-inner .home {
    color: #FFF82F;
    font-size: 20px;
  }
}
/* =============================
共通パーツ
============================== */
/* 各sectionメイン見出し */
.el-sec-mainttl {
  position: relative;
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
}

.el-btn-wrapper {
  display: grid;
  gap: 8px;
  justify-content: center;
}
.el-btn-deco {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
}
.el-btn-deco::before, .el-btn-deco::after {
  width: 11px;
  height: 15px;
  content: "";
  background: url("../images/common/btn-deco.svg") center center/cover no-repeat;
}
.el-btn-deco::after {
  transform: scale(-1, 1);
}
.el-btn.--arrow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  width: fit-content;
  min-width: 400px;
  padding: 27px 24px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26/18);
  text-align: center;
  letter-spacing: 0;
  background: var(--color-brightest);
  border: 1px solid;
  border-radius: 10px;
}
.el-btn.--arrow::before, .el-btn.--arrow::after {
  content: "";
}
.el-btn.--arrow::after {
  width: 0;
  height: 0;
  border-color: transparent transparent transparent var(--color-black);
  border-style: solid;
  border-width: 8px 0 8px 8px;
  transition: border-color 0.5s ease;
}
@media (any-hover: hover) {
  .el-btn.--arrow:hover {
    color: var(--color-accent02);
    background: var(--color-accent);
    border-color: var(--color-black);
    opacity: 1;
  }
  .el-btn.--arrow:hover::after {
    border-color: transparent transparent transparent var(--color-accent02);
  }
}
@media (any-hover: hover) {
  .el-btn.--arrow.--bg-accent:hover {
    color: var(--color-accent);
    background-color: var(--color-accent02);
    border-color: var(--color-black);
  }
  .el-btn.--arrow.--bg-accent:hover::after {
    border-color: transparent transparent transparent var(--color-accent);
  }
}

/* bl_bulletList */
.bl-bulletlist > li {
  position: relative;
  padding-left: 1em;
}

.bl-bulletlist > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.bl-bulletlist.bl-bulletlist--square > li {
  padding-left: calc(1em + 8px);
}

.bl-bulletlist.bl-bulletlist--square > li::before {
  content: "■";
}

/* bl_numList */
.bl-numlist {
  counter-reset: num;
}

.bl-numlist > li {
  position: relative;
  padding-left: 1.2em;
}

.bl-numlist > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(num) ".";
  counter-increment: num;
}

.bl-numlist.bl-numlist--circle > li:first-of-type::before {
  content: "①";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(2)::before {
  content: "②";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(3)::before {
  content: "③";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(4)::before {
  content: "④";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(5)::before {
  content: "⑤";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(6)::before {
  content: "⑥";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(7)::before {
  content: "⑦";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(8)::before {
  content: "⑧";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(9)::before {
  content: "⑨";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(10)::before {
  content: "⑩";
}

.bl-numlist.bl-numlist--brackets {
  counter-reset: cnt;
}

.bl-numlist.bl-numlist--brackets > li {
  padding-left: 2em;
  counter-increment: cnt;
}

.bl-numlist.bl-numlist--brackets > li::before {
  content: "(" counter(cnt) ") ";
}

/* el_label */
.el-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  color: #fff;
  background: #000;
}

/* ※ */
.el-att {
  position: relative;
  display: flex;
  font-size: 12px;
  line-height: calc(17/12);
  color: var(--color-black02);
  letter-spacing: 0;
}
.el-att.--01, .el-att.--02, .el-att.--03 {
  gap: 0.25em;
}
.el-att.--01::before {
  content: "※1";
}
.el-att.--02::before {
  content: "※2";
}
.el-att.--03::before {
  content: "※3";
}

.el-att::before {
  flex: none;
  content: "※";
}

.el-att.center {
  justify-content: center;
}

span.el-att {
  display: block;
}

.el-link {
  color: #00f;
  text-decoration: underline;
}

.el-txt {
  text-align: center;
}

.c-paper-bg {
  background: url("../images/common/paper-bg.jpg") top left/contain repeat;
}

@media screen and (max-width: 750px) {
  .el-btn-wrapper {
    display: grid;
    gap: 16px;
    justify-content: center;
  }
  .el-btn-deco {
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-accent);
  }
  .el-btn-deco::before, .el-btn-deco::after {
    width: 22px;
    height: 30px;
    content: "";
    background: url("../images/common/btn-deco.svg") center center/cover no-repeat;
  }
  .el-btn-deco::after {
    transform: scale(-1, 1);
  }
  .el-btn.--arrow {
    gap: 15px;
    min-width: 560px;
    padding: 28px 40px 32px;
    font-size: 28px;
    line-height: calc(20/14);
    border-radius: 50px;
  }
  .el-btn.--arrow::after {
    border-width: 8px 0 8px 12px;
  }
  .el-att {
    font-size: 20px;
    line-height: calc(31/20);
  }
}
/* =============================
ヘルプタグ
============================== */
/* 明朝体 */
.--en {
  font-family: var(--font-en);
}

/* bold */
.hp-bold {
  font-weight: bold !important;
}

/* opacity1 */
.hp-opacity1 {
  opacity: 1 !important;
}

/* 電話リンク */
.hp-tel {
  pointer-events: none;
}

/* アクセントカラー */
.hp-color--accent {
  color: var(--color-accent);
}

.hp-color--accent02 {
  color: var(--color-accent02);
}

.hp-scroll-y {
  overflow-y: scroll;
  /* スクロールバー非表示（IE・Edge） */
  -ms-overflow-style: none;
  /* スクロールバー非表示（Firefox） */
  scrollbar-width: none;
}

/* スクロールバー非表示（Chrome・Safari） */
.hp-scroll-y::-webkit-scrollbar {
  display: none;
}

@media screen and (width <= 750px) {
  /* ユニット */
  .hp-unit {
    display: block;
  }
  /* 電話リンク */
  .hp-tel {
    pointer-events: auto;
  }
}
/* =============================
header
============================== */
.ly-head {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  width: 100%;
  background: var(--color-brightest);
  transform: translateX(-50%);
}

.bl-head-box {
  padding: 10px 0;
}
.bl-head-box .ly-cont-inner {
  display: flex;
  justify-content: space-between;
  width: 1024px;
}
.bl-head-logo-imgwrapper {
  display: flex;
  width: 186px;
}
.bl-head-separate {
  display: flex;
  gap: 32px;
  align-items: center;
}
.bl-head-def {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bl-head-dttl {
  padding: 2px 10px 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(44/32);
  color: var(--color-accent);
  letter-spacing: 0.05em;
  border: 1px solid;
}
.bl-head-ditem-tel {
  display: flex;
  margin-bottom: 4px;
}
.bl-head-time-def {
  display: flex;
  font-size: 12px;
  font-weight: 700;
  line-height: calc(17/12);
  color: var(--color-black02);
  letter-spacing: 0;
}
.bl-head-time-dttl {
  display: flex;
}
.bl-head-time-dttl::after {
  content: "：";
}
.bl-head-btn {
  padding: 18px 24px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26/18);
}
.bl-head-btn-wrapper {
  display: flex;
  gap: 8px;
}
.bl-head-btn.--archive-shop {
  color: var(--color-brightest);
  background: var(--color-accent);
}
.bl-head-btn.--counseling {
  color: var(--color-accent);
  background: var(--color-accent02);
}
.bl-head .bl-burger {
  display: none;
}
.bl-head-nav {
  display: block;
  padding: 9.5px 28px 12.5px;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26/18);
  color: var(--color-brightest);
  transition: var(--transition);
}
.bl-head-nav-outer {
  background: var(--color-accent);
  border-bottom: 2px solid var(--color-brightest);
}
.bl-head-nav-wrapper {
  max-width: 1024px;
  margin: 0 auto;
}
.bl-head-nav-list {
  display: grid;
  grid-template-columns: repeat(7, auto);
}
.bl-head-nav-item {
  position: relative;
}
.bl-head-nav-item::after {
  position: absolute;
  top: 9px;
  right: 0;
  width: 1px;
  height: 30px;
  content: "";
  background: var(--color-brightest);
}
.bl-head-nav-item:first-of-type .bl-head-nav {
  padding-left: 0;
}
.bl-head-nav-item:last-of-type::after {
  display: none;
}
.bl-head-nav-item:last-of-type .bl-head-nav {
  padding-right: 0;
}
.bl-head-nav-item.--recruit .bl-head-nav-child-list {
  width: max-content;
}
@media (any-hover: hover) {
  .bl-head-nav:hover {
    color: var(--color-accent02);
    opacity: 1;
  }
}
.bl-head-nav-child {
  display: block;
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brightest);
  letter-spacing: 0;
}
.bl-head-nav-child-list {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  display: none;
  width: 100%;
  background: var(--color-contrast);
}
.bl-head-nav-child-list.--js-active {
  display: block;
}
.bl-head-nav-child-item {
  text-align: center;
}
.bl-head-nav-child-item:not(:first-of-type) {
  border-top: 1px solid var(--color-brightest);
}

@media screen and (max-width: 750px) {
  .ly-head {
    background: var(--color-accent);
  }
  .bl-head-box {
    padding: 0;
  }
  .bl-head-box .ly-cont-inner {
    width: 100%;
    padding-right: 120px;
  }
  .bl-head-logo {
    padding: 30px 32px;
  }
  .bl-head-logo-imgwrapper {
    width: 212px;
  }
  .bl-head-logo-imgwrapper img {
    width: 212px;
  }
  .bl-head-separate {
    display: flex;
    gap: 64px;
    align-items: center;
  }
  .bl-head-def {
    display: none;
  }
  .bl-head-btn {
    display: grid;
    place-content: center;
    height: 100%;
    padding: 0 13px;
    font-size: 28px;
    line-height: calc(20/14);
    text-align: center;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
  }
  .bl-head-btn-wrapper {
    gap: 0;
    align-items: center;
    height: 100%;
  }
  .bl-head-btn.--archive-shop {
    background: transparent;
  }
  .bl-head-btn.--counseling {
    color: var(--color-brightest);
    background: transparent;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
  }
  .bl-head .bl-burger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    display: grid;
    grid-template-rows: 1fr auto;
    width: 120px;
    aspect-ratio: 1;
    padding: 28px 30px;
  }
  .bl-head .bl-burger.--js-active .bl-burger-bars::before,
  .bl-head .bl-burger.--js-active .bl-burger-bars::after {
    top: 50%;
    translate: -50% -50%;
  }
  .bl-head .bl-burger.--js-active .bl-burger-bars::before {
    rotate: 45deg;
  }
  .bl-head .bl-burger.--js-active .bl-burger-bars::after {
    rotate: -45deg;
  }
  .bl-head .bl-burger.--js-active .bl-burger-bar {
    display: none;
  }
  .bl-head .bl-burger-bars {
    position: relative;
    display: block;
    height: 32px;
    margin-bottom: 8px;
  }
  .bl-head .bl-burger-bar,
  .bl-head .bl-burger-bars::before,
  .bl-head .bl-burger-bars::after {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 4px;
    content: "";
    background: var(--color-accent02);
    transition: all 0.3s ease;
    translate: -50% -50%;
  }
  .bl-head .bl-burger-bars::before {
    top: 0;
  }
  .bl-head .bl-burger-bars::after {
    top: 100%;
  }
  .bl-head .bl-burger-bar {
    top: 50%;
    translate: -50% -50%;
  }
  .bl-head .bl-burger-txt {
    width: max-content;
    margin-inline: auto;
    font-size: 20px;
    font-weight: 700;
    line-height: calc(26/20);
    color: var(--color-accent02);
  }
  .bl-head-nav {
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 38px 0 34px;
    font-size: 28px;
    line-height: calc(20/14);
    text-align: left;
  }
  .bl-head-nav-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    padding: 128px 64px;
    overflow-y: scroll;
    border-bottom: none;
    transition: translate 0.5s ease;
    translate: 100%;
  }
  .bl-head-nav-outer.--js-active {
    translate: 0;
  }
  .bl-head-nav-wrapper {
    margin-bottom: 64px;
  }
  .bl-head-nav-list {
    grid-template-columns: auto;
  }
  .bl-head-nav-item {
    border-bottom: 2px solid var(--color-brightest);
  }
  .bl-head-nav-item::after {
    display: none;
  }
  .bl-head-nav-item:first-of-type .bl-head-nav {
    padding-top: 0;
  }
  .bl-head-nav-item.--home .bl-head-nav::before {
    content: "Home";
  }
  .bl-head-nav-item.--flow .bl-head-nav::before {
    content: "Flow";
  }
  .bl-head-nav-item.--price {
    padding-bottom: 34px;
  }
  .bl-head-nav-item.--price .bl-head-nav {
    padding-bottom: 0;
  }
  .bl-head-nav-item.--price .bl-head-nav::before {
    content: "Price";
  }
  .bl-head-nav-item.--campaign .bl-head-nav::before {
    content: "Campaign";
  }
  .bl-head-nav-item.--salons .bl-head-nav::before {
    content: "Salons";
  }
  .bl-head-nav-item.--voices .bl-head-nav::before {
    content: "Voices";
  }
  .bl-head-nav-item.--ba .bl-head-nav::before {
    content: "Before&After";
  }
  .bl-head-nav-item.--faq .bl-head-nav::before {
    content: "FAQ";
  }
  .bl-head-nav-item.--recruit {
    padding-bottom: 34px;
  }
  .bl-head-nav-item.--recruit .bl-head-nav {
    padding-bottom: 0;
  }
  .bl-head-nav-item.--recruit .bl-head-nav::before {
    content: "Recruit";
  }
  .bl-head-nav::before {
    font-family: var(--font-en);
    font-size: 24px;
    color: var(--color-accent02);
    letter-spacing: 0;
  }
  .bl-head-nav-child {
    display: flex;
    gap: 0.25em;
    padding: 0 0 0 30px;
    font-size: 28px;
    line-height: calc(20/14);
  }
  .bl-head-nav-child-list {
    position: static;
    top: initial;
    left: initial;
    display: block;
    margin-top: 16px;
    background: transparent;
  }
  .bl-head-nav-child-item {
    text-align: left;
  }
  .bl-head-nav-child-item:not(:first-of-type) {
    margin-top: 16px;
    border-top: none;
  }
  .bl-head-nav-child::before {
    content: "-";
  }
  .bl-head-nav-logo {
    display: block;
    width: fit-content;
    margin-inline: auto;
  }
}
/* =============================
　footer
============================= */
.video-choose-launcher {
  bottom: 114px !important;
}

.ly-foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--color-brightest);
  background: var(--color-accent);
}

.ly-foot-inner {
  padding-top: 48px;
}

.bl-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  justify-content: center;
}

.bl-foot-bnrList {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.bl-foot-bnr {
  width: 276px;
  border: 1px solid;
}

.bl-foot-bnr:first-of-type {
  border-color: var(--color-accent);
}

.bl-foot-bnr:nth-of-type(2) {
  border-color: var(--color-brightest);
}

.bl-footUnit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 910px;
  color: #fff;
}

/* ナビ */
.bl-foot-gloNav:nth-of-type(2) {
  position: relative;
}

.bl-foot-gloNav:nth-of-type(2)::before,
.bl-foot-gloNav:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--color-brightest);
}

.bl-foot-gloNav:nth-of-type(2)::before {
  left: -72px;
}

.bl-foot-gloNav:nth-of-type(2)::after {
  right: -72px;
}

.bl-foot-gloNav-inner > li {
  position: relative;
  letter-spacing: 0.68px;
}

.bl-foot-gloNav-inner {
  display: flex;
  flex-flow: column wrap;
  gap: 16px;
}

.bl-foot-gloNav-inner > li > a.el-arrow::after {
  content: " ▶︎";
}

.bl-footUnit .bl-ctaList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl-footUnit .bl-ctaItem > dt span {
  font-size: 14px;
}

.bl-footUnit .bl-ctaItem > dd > a {
  display: block;
  margin: 3px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}

.bl-footUnit .bl-ctaItem > dd span {
  display: block;
  font-size: 14px;
}

.bl-foot-btm {
  margin-bottom: 24px;
}

.bl-foot-logo {
  width: 224px;
  margin-bottom: 8px;
}

.bl-foot-btm {
  display: flex;
  gap: 64px;
  align-items: center;
}

.bl-foot-btm .bl-snsUnit {
  display: flex;
  gap: 16px;
}

.bl-foot-btm .bl-snsUnit > li > a {
  display: block;
  width: 40px;
}

.bl-accession {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0;
}

.bl-accession::before {
  width: 80px;
  height: 64px;
  margin-right: 16px;
  content: "";
  background: url("../images/common/img-jcse.svg") top center/contain no-repeat;
}

/* モーダル */
#popup {
  display: none;
}

.popup-open {
  color: #2da6de;
  cursor: pointer;
}

.popup-overlay {
  display: none;
}

#popup:checked ~ .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4392156863);
}

.popup-window {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 690px;
  height: 615px;
  padding: 56px;
  background-color: #fff;
  border-radius: 6px;
  transform: translate(-50%, -50%);
}

.popup-text {
  margin: 0;
}

.popup-text:not(:last-of-type) {
  margin-bottom: 1em;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.popup-window .bl-ctaList {
  display: flex;
  flex-direction: column;
  gap: 44px;
  text-align: center;
}

.popup-window .bl-ctaItem > dt span {
  font-size: 24px;
  font-weight: normal;
}

.popup-window .bl-ctaItem > dd > a {
  display: block;
  margin: 3px 0;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.popup-window .bl-ctaItem > dd span {
  display: block;
  font-size: 24px;
  font-weight: normal;
}

/* コピーライト */
.bl-foot-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  text-align: center;
  background-color: var(--color-accent);
}

.bl-foot-copyright small {
  font-family: Verdana;
  font-size: 12px;
  color: #fff;
}

/* ページトップボタン */
.bl-pagetop {
  position: relative;
  width: 1024px;
  height: 0;
  margin: 0 auto;
  text-align: right;
}

.bl-pagetop span {
  z-index: 900;
  width: 66px;
  height: 66px;
}

.bl-pagetop img {
  opacity: 0;
}

.bl-pagetop .fade img {
  transition: all 0.5s ease-in-out;
}

.bl-pagetop .in img {
  cursor: pointer;
  opacity: 1;
}

@media screen and (width <= 1400px) {
  /* ページトップボタン */
  .bl-pagetop {
    width: 100%;
  }
  .bl-pagetop span {
    right: 30px;
  }
}
@media screen and (max-width: 750px) {
  .video-choose-launcher {
    bottom: 144px !important;
  }
  .bl-foot {
    gap: 0;
  }
  .ly-foot-inner {
    width: 100%;
    width: 690px;
    height: auto;
    padding: 48px 0 24px;
  }
  .bl-foot-bnrList {
    gap: 24px;
    margin-bottom: 48px;
  }
  .bl-foot-bnr {
    width: calc((100% - 48px) / 2);
  }
  #footer-bnr-tel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 16px 22px 19px 66px;
    font-weight: bold;
    background: #fff;
  }
  #footer-bnr-tel::before {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 30px;
    height: 48px;
    content: "";
    background: url("../images/common/icon-phone--blue.svg") top center/contain no-repeat;
    transform: translateY(-50%);
  }
  .bl-footUnit {
    gap: 0;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  .bl-foot-gloNav {
    width: 248px;
    padding: 0;
  }
  .bl-foot-gloNav:nth-of-type(2) {
    width: 356px;
    padding: 0;
  }
  .bl-foot-gloNav:nth-of-type(2)::before,
  .bl-foot-gloNav:nth-of-type(2)::after {
    content: none;
  }
  .bl-foot-gloNav-inner {
    gap: 24px 0;
    width: auto;
  }
  .bl-foot-gloNav-inner a {
    font-size: 26px;
  }
  .bl-foot-gloNav-inner > li > a::before {
    border-width: 9px 0 9px 16px;
  }
  .bl-footUnit .bl-ctaList {
    display: none;
  }
  .bl-foot-btm {
    flex-direction: column;
    gap: 56px;
    align-items: center;
    margin: 0;
  }
  .bl-foot-logo {
    order: 2;
    width: 338px;
    margin-bottom: 8px;
  }
  .bl-snsUnit {
    order: 3;
  }
  .bl-foot-btm .bl-snsUnit {
    gap: 32px;
  }
  .bl-foot-btm .bl-snsUnit > li > a {
    width: 56px;
  }
  .bl-accession {
    order: 1;
    font-size: 18px;
    letter-spacing: 0.04em;
  }
  .bl-accession::before {
    width: 90px;
    height: 72px;
    margin-right: 20px;
  }
  .bl-foot-copyright {
    display: grid;
    place-content: center;
    height: 53px;
  }
  .bl-foot-copyright small {
    font-size: 20px;
    line-height: 1;
  }
  .bl-pagetop {
    width: 750px;
  }
  .bl-pagetop span {
    right: 30px;
    bottom: 30px;
    width: 104px;
    height: 104px;
    border-radius: calc(infinity * 1px);
  }
}
/* =============================
新着
============================== */
.bl-vertposts {
  border-bottom: 1px solid #bfbfbf;
}

.bl-vertposts > a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 16px 16px 0;
  color: #222;
}

.bl-vertposts:not(:first-of-type) > a {
  padding-top: 16px;
}

.bl-vertposts-header {
  display: flex;
  flex: 0 1 280px;
  gap: 16px;
  align-items: center;
}

.bl-vertposts-date {
  font-size: 14px;
  letter-spacing: 0;
}

.el-catlabel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 144px;
  min-height: 28px;
  padding: 0 8px 2px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0;
  background: #ccc;
}

.el-catlabel.all {
  background: #5e5e5e;
}

.el-catlabel.news {
  background: #41b3b2;
}

.el-catlabel.media {
  background: #ac96cf;
}

.el-vertposts-ttl {
  display: box;
  flex: 1;
  overflow: hidden;
  font-size: 17px;
  font-weight: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media screen and (width <= 750px) {
  .bl-vertposts > a {
    gap: 16px;
    padding-bottom: 24px;
  }
  .bl-vertposts:not(:first-of-type) > a {
    padding-top: 24px;
  }
  .bl-vertposts-header {
    flex: 100%;
  }
  .bl-vertposts-date {
    font-size: 22px;
  }
  .el-catlabel {
    min-width: 128px;
    max-width: 480px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 22px;
  }
  .el-vertposts-ttl {
    font-size: 28px;
  }
}
/* =============================
ページナビ
============================== */
/* wp-pagenavi */
.wp-pagenavi {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}

.wp-pagenavi > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 32px;
  padding: 0 5px 3px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  border-radius: 5px;
}

.wp-pagenavi a {
  background: #656974;
}

.wp-pagenavi .current {
  background: var(--color-accent02);
}

.wp-pagenavi .extend {
  font-size: 16px;
  color: #545454;
}

@media screen and (width <= 750px) {
  /* wp-pagenavi */
  .wp-pagenavi {
    gap: 24px;
  }
  .wp-pagenavi > * {
    min-width: 45px;
    height: 48px;
    font-size: 28px;
  }
  .wp-pagenavi .extend {
    display: none;
  }
}
/* =======================================================
column
======================================================= */
.c-column-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.c-column-imgwrapper {
  margin-bottom: 8px;
}
.c-column-imgwrapper > img {
  height: 220px;
  object-fit: cover;
}
.c-column .c-cat {
  margin-bottom: 16px;
}
.c-column-date {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: calc(20/14);
}
.c-column-ttl {
  font-size: 17px;
  line-height: calc(26/17);
}

@media screen and (max-width: 750px) {
  .c-column-wrapper {
    grid-template-columns: auto;
    gap: 48px;
  }
  .c-column-link {
    display: grid;
    grid-template: "imgwrapper imgwrapper" "date cat" "ttl ttl";
    grid-template-columns: auto 1fr;
    gap: 24px;
  }
  .c-column-imgwrapper {
    grid-area: imgwrapper;
    margin-bottom: 8px;
  }
  .c-column-imgwrapper > img {
    height: 380px;
  }
  .c-column .bl-cat {
    grid-area: cat;
    margin-bottom: 0;
  }
  .c-column-date {
    grid-area: date;
    margin-bottom: 0;
    font-size: 22px;
  }
  .c-column-ttl {
    grid-area: ttl;
    font-size: 28px;
  }
}
/* =======================================================
cta
======================================================= */
.bl-cta {
  padding: 40px 0;
  background-color: #F4F4F4;
  border-top: 4px solid #22A5E0;
}
.bl-cta .el-sec-mainttl {
  font-size: 34px;
  letter-spacing: 0px;
  margin-bottom: 16px;
}
.bl-cta-imgWrapper {
  width: 78px;
  margin: 0 auto 24px;
}
.bl-cta-btn {
	display: block;
	width: 400px;
	margin: 32px auto 0;
	background-color: #FFF82F;
	border: 1px solid #3E4145;
  border-radius: 10px;
	font-size: 18px;
	text-align: center;
	padding: 25px 0 26px;
	position: relative;
}
.bl-cta-btn::after {
	position: absolute;
	content: "";
  width:0;
  height:0;
  border-style:solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #3E4145;
	top: 50%;
	transform: translateY(-50%);
	right: 24px;
}

@media screen and (max-width: 750px) {
  .bl-cta {
    padding: 64px 0;
  }
  .bl-cta .el-sec-mainttl {
    margin-bottom: 32px;
  }
  .bl-cta-imgWrapper {
    width: 104px;
  }
  .bl-cta-btn {
	  width: 500px;
	  margin: 40px auto 0;
	  font-size: 28px;
	  padding: 28px 0;
    border-radius: 25px;
    border: 2px solid #3E4145;
  }
  .bl-cta-btn::after {
    border-width: 10px 0 10px 10px;
	  right: 32px;
  }
}
/* =======================================================
section
======================================================= */
.c-section {
  padding: 64px 0;
}
.c-section-ttl {
  display: grid;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: calc(46/32);
  text-align: center;
  letter-spacing: 0.06em;
}
.c-section-ttl::after {
  width: 400px;
  height: 22px;
  content: "";
  background: url("../images/common/section-ttl-deco.svg") center center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .c-section .c-section-ttl {
    font-size: 42px;
  }
}

/* =======================================================
sp-fixed
======================================================= */
.bl-sp-fixed {
  display: none;
}

@media screen and (max-width: 750px) {
  .bl-sp-fixed {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 9000;
    display: block;
  }
  .bl-sp-fixed-btn {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 16px 28px;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-brightest);
    background: var(--color-accent);
  }
  .bl-sp-fixed-btn::before {
    width: 40px;
    height: 32px;
    content: "";
    background: url("../images/common/icon-mail.svg") center center/cover no-repeat;
    transform: translateY(2px);
  }
}
/* =======================================================
c-products
======================================================= */
.c-products-article {
  position: relative;
}
.c-products-article-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.c-products-article .c-article-cat {
  position: absolute;
  top: 0;
  left: 0;
}
.c-products-article .c-article-imgwrapper {
  display: grid;
  place-content: center;
  height: 320px;
  margin-bottom: 16px;
  background: var(--color-contrast);
  border: 2px solid var(--color-black);
}
.c-products-article .c-article-imgwrapper > img {
  height: 252px;
  object-fit: cover;
  box-shadow: var(--box-shadow);
}
.c-products-article .c-article-ttl {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.c-products-article .c-article-def {
  display: flex;
}
.c-products-article .c-article-dttl {
  display: flex;
}
.c-products-article .c-article-dttl::after {
  content: "：";
}

@media screen and (max-width: 750px) {
  .c-products-article-wrapper {
    grid-template-columns: auto;
    gap: 40px;
    margin-bottom: 64px;
  }
  .c-products-article .c-article-imgwrapper {
    height: 480px;
    margin-bottom: 24px;
  }
  .c-products-article .c-article-imgwrapper > img {
    height: 378px;
  }
  .c-products-article .c-article-ttl {
    margin-bottom: 12px;
    font-size: 30px;
  }
}
/* =======================================================
c-cat
======================================================= */
.c-cat {
  padding: 0 8px 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent02);
  text-align: center;
  background: var(--color-accent);
}
.c-cat-def {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 16px 32px;
  margin: 64px 0 56px;
  border: 2px solid var(--color-black);
}
.c-cat-dttl {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26/18);
}
.c-cat-ditem {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (max-width: 750px) {
  .c-cat {
    min-width: auto;
    padding: 0 16px 4px;
    font-size: 24px;
  }
  .c-cat-def {
    grid-template-columns: auto;
    gap: 24px;
    padding: 24px 40px 32px;
  }
  .c-cat-dttl {
    font-size: 30px;
  }
  .c-cat-ditem {
    gap: 24px;
  }
}
/* =======================================================
c-column-archive
======================================================= */
.c-column-archive-article-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}
.c-column-archive-article .c-article-imgwrapper {
  margin-bottom: 8px;
}
.c-column-archive-article .c-article-imgwrapper > img {
  height: 220px;
  object-fit: cover;
}
.c-column-archive-article .c-article-cat {
  justify-self: start;
  margin-bottom: 16px;
  border-radius: 8px;
}
.c-column-archive-article .c-article-date {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: calc(20/14);
}
.c-column-archive-article .c-article-ttl {
  font-size: 1em;
  font-weight: 400;
}

@media screen and (max-width: 750px) {
  .c-column-archive-article-wrapper {
    grid-template-columns: auto;
    gap: 48px;
  }
  .c-column-archive-article .c-article-imgwrapper {
    margin-bottom: 32px;
  }
  .c-column-archive-article .c-article-imgwrapper > img {
    height: 380px;
  }
  .c-column-archive-article .c-article-head {
    display: flex;
    flex-direction: row-reverse;
    gap: 24px;
    align-items: center;
    justify-content: start;
    margin-bottom: 24px;
  }
  .c-column-archive-article .c-article-cat {
    margin-bottom: 0;
  }
  .c-column-archive-article .c-article-date {
    margin-bottom: 0;
    font-size: 22px;
    line-height: calc(32/22);
    letter-spacing: 0.06em;
  }
  .c-column-archive-article .c-article-ttl {
    letter-spacing: 0.06em;
  }
}
/* =======================================================
c-dot
======================================================= */
.c-dot-list {
  display: flex;
  flex-wrap: wrap;
}
.c-dot-item {
  display: flex;
}
.c-dot-item:not(:last-of-type)::after {
  content: "・";
}

/* bl-bulletList */
.bl-bulletList > li {
  position: relative;
  padding-left: 1em;
}

.bl-bulletList > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "・";
}

/* =======================================================
soft-display
======================================================= */
.--is-soft-display {
  opacity: 0;
}

.--is-soft-display-in {
  animation: softDisplay 0.5s ease forwards;
}

@keyframes softDisplay {
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .--is-soft-display.--pc {
    opacity: 1;
  }
}
/* =======================================================
slidein
======================================================= */
.--is-slidein {
  transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
}
.--is-slidein.--left {
  translate: calc(-50vw - 50%);
}
.--is-slidein.--right {
  translate: calc(50vw + 50%);
}
.--is-slidein.--show {
  translate: 0;
}

/* =======================================================
fade
======================================================= */
.--is-fade {
  opacity: 0;
  transform: translateY(30px);
}

.--is-fade-in {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}