@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');


/* CSS Document */ 
:root {
  --weight-1: 100;
  --weight-2: 200;
  --weight-3: 300;
  --weight-4: 400;
  --weight-5: 500;
  --weight-6: 600;
  --weight-7: 700;
  --weight-8: 800;
  --weight-9: 900;
	
  /* 行間 */
  --lh-body: 1.7;
  --lh-tight: 1.3;
	
	
/* =========================
   Font scale（役割ベース）
   ※ 通常はこちらを使用
========================= */

  /* 本文 */
  --fs-body: 1rem;              /* 基準本文 */
  --fs-body-sm: 0.875rem;       /* 注釈・補足 */
  --fs-body-lg: 1.125rem;       /* リード文 */

  /* 見出し */
  --fs-h1: clamp(2.2rem, 5vw, 3.2rem);
  --fs-h2: clamp(1.8rem, 4vw, 2.6rem);
  --fs-h3: clamp(1.5rem, 3vw, 2.1rem);
  --fs-h4: 1.375rem;
  --fs-h5: 1.25rem;
  --fs-h6: 1.125rem;

  /* 英字・装飾 */
  --fs-en-lg: clamp(3rem, 8vw, 6rem);
  --fs-en-md: clamp(2rem, 6vw, 4rem);

	
/*ホームステージングで使用するfont-family */
/* Font Families */
  --font-base: "Noto Sans JP", sans-serif; /* 全体用 */
  --font-serif: "Noto Serif JP", serif;    /* 明朝 */
  --font-eng: "Jost", sans-serif;          /* 英字用 */

	
	
/* =========================
   Font scale（数値ベース）
   ※ UI / 微調整用
========================= */
  /* base */
  --fs-10: 0.625rem;   /* 10px */
  --fs-11: 0.6875rem;  /* 11px */
  --fs-12: 0.75rem;    /* 12px */
  --fs-13: 0.8125rem;  /* 13px */
  --fs-14: 0.875rem;   /* 14px */
  --fs-15: 0.9375rem;  /* 15px */
  --fs-16: 1rem;       /* 16px (base) */

  /* medium */
  --fs-17: 1.0625rem;   /* 17px */
  --fs-18: 1.125rem;   /* 18px */
  --fs-19: 1.1875rem;   /* 19px */
  --fs-20: 1.25rem;    /* 20px */
  --fs-22: 1.375rem;   /* 22px */
  --fs-24: 1.5rem;     /* 24px */
  --fs-26: 1.65rem;    /* 26px */

  /* large */
  --fs-28: 1.75rem;    /* 28px */
  --fs-30: 1.875rem;    /* 30px */
  --fs-32: 2rem;       /* 32px */
  --fs-36: 2.25rem;    /* 36px */
  --fs-40: 2.5rem;     /* 40px */
	
	
}

html, body {
  overflow-x: hidden;
}
/*フォント指定*/
html {
  font-size: clamp(14px, 1.2vw, 16px);
}

/* --------------------------------------
   基本適用  *ホームステージングLP専用*
-------------------------------------- */
body#staging_lp {
  font-family: var(--font-base);
  font-weight: var(--weight-4); /* regular */
  font-style: normal;
  font-optical-sizing: auto;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}



/* --------------------------------------
   Google font 
-------------------------------------- */
.c-font-sans  { font-family: var(--font-base); }
.c-font-serif { font-family: var(--font-serif); }
.c-font-eng { font-family: var(--font-eng); }



/*------------------------------
　ウエイト※変更不可
------------------------------*/
.c-font-weight--100 {
  font-weight: var(--weight-1);
}
.c-font-weight--200 {
  font-weight: var(--weight-2);
}
.c-font-weight--300 {
  font-weight: var(--weight-3);
}
.c-font-weight--400 {
  font-weight: var(--weight-4)!important;
}
.c-font-weight--500 {
  font-weight: var(--weight-5)!important;
}
.c-font-weight--600 {
  font-weight: var(--weight-6);
}
.c-font-weight--700 {
  font-weight: var(--weight-7);
}
.c-font-weight--800 {
  font-weight: var(--weight-8);
}
.c-font-weight--900 {
  font-weight: var(--weight-9);
}



/*---------------------------------------
overflow
---------------------------------------*/
.c-overflow-hidden{
	overflow: hidden;
}

/*------------------------------
テキスト位置
------------------------------*/
.c-text-align--center {
  text-align: center
}
.c-text-align--left {
  text-align: left
}

/*------------------------------
テキスト ※変更不可
------------------------------*/
p, a, li, th, td, dt, dd, span {
  line-height: 1.7;
  color: var(--color--key-bk);
}
/*------------------------------
見出し h1-h6 ※変更不可
------------------------------*/

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  font-weight: normal;
  color: var(--color--key-bk);
}

/* ======================================
   Headings (SP〜PC 自然補間)
   ====================================== */

h1 {
  /* SPもPCも40px固定 */
  font-size: 2.5rem; /* 40px */
}
h2 {
  /* 24px → 36px */
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}
h3 {
  /* 20px → 30px */
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
}
h4 {
  /* 19px → 28px */
  font-size: clamp(1.1875rem, 2.2vw, 1.75rem);
}
h5 {
  /* 18px → 26px */
  font-size: clamp(1.125rem, 2vw, 1.625rem);
}

h6 {
  /* 17px → 22px */
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
}



/*------------------------------
テキスト ※変更不可
------------------------------*/
.c-text--xlg {
  font-size: var(--fs-30); /* 30px基準 */
}
.c-text--lg {
  font-size: var(--fs-24);
}
.c-text--l {
  font-size: var(--fs-20);
}
.c-text--md {
  font-size: var(--fs-18);
}
.c-text--s {
  font-size: var(--fs-15);
}
.c-text--xs {
  font-size: var(--fs-13);
}
.c-text--xxs {
  font-size: var(--fs-12);
}


/* --------------------------------------
   Lead Text（Large）
   見出し寄りのリード文
-------------------------------------- */
.c-text--lead-lg {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: var(--lh-body);
}
/*リード base*/
.c-text--lead {
  font-size: var(--fs-18);
}

/*注釈*/
.c-note {
  text-indent: -1em;
  padding-left: 1em;
  font-size: var(--fs-11);
}




/*------------------------------
　装飾タイトル（font system対応）
------------------------------*/

/* 角丸タイトル */
.c-ttl__lg {
  margin-bottom: 1.5em;
}

.c-rounded-en {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  padding: 0 30px;
  margin-bottom: 1em;
  border: 1px solid var(--color--key-blue);
  background: #fff;
  color: var(--color--key-blue);
  font-size: var(--fs-14); /* 14px */
  position: relative;
}

.c-rounded-en::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 40%;
  width: 1px;
  height: 10px;
  background-color: var(--color--key-blue);
}

/* =========================
   Overlap Title
========================= */
.c-overlap-ttl {
  padding-top: 60px;
  text-align: center;
  position: relative;
}

.c-overlap-ttl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background-color: var(--color--key-blue);
}

.c-overlap-ttl::after {
  content: attr(data-en-ttl);
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: var(--fs-40); /* 40px */
  color: var(--color--key-blue);
  opacity: 0.1;
  line-height: 0.8;
  white-space: nowrap;
}

/* =========================
   Rounded Point Label
========================= */
.c-rounded-corners-point {
  background-color: var(--color--key-blue);
  color: var(--color--white);
  padding: 7px 17px;
  border-radius: 40px;
  display: inline-block;
  font-size: var(--fs-12); /* 12px */
  text-align: center;
  line-height: 1.4;
  margin-right: 10px;
}

/* =========================
   Horizontal Line Title
========================= */
.c-ttl-horizontal-line {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1em;
}

.c-ttl-horizontal-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 3px;
  background-color: var(--color--key-blue);
}

/* =========================
   Center Horizontal Line
========================= */
.c-center-horizontal {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}

.c-center-horizontal::before {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--color--key-blue);
  border-radius: 2px;
}


/* ===============================
   Text Link テキストリンク
=============================== */
.c-text-link {
  display: inline-block;
  position: relative;
  color: var(--color--key-bk);
  text-decoration: none;
  line-height: 1.6;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: 
    color 0.3s ease,
    background-size 0.3s ease,
    opacity 0.3s ease;
text-indent: 0
}

/* hover */
.c-text-link:hover {
  opacity: 0.7;
  background-size: 0% 1px; /* ふわっと消える */
}

/* ==========================
   Color Modifiers
========================== */
.c-text-link--gray {
  color: var(--color--gray07);
}

.c-text-link--yellow {
  color: var(--color--key-yellow);
}

.c-text-link--white {
  color: #fff;
}




/*------------------------------
　角丸 border
------------------------------*/
.c-border {
  border-radius: 5px;
}
.c-border--blue {
  border: 1px solid var(--color--key-blue);
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  /*------------------------------
見出し h1-h6 ※変更不可
------------------------------*/
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
  /* .ttl-goldline */
  .ttl-goldline {
    padding-left: 50px;
  }
  .ttl-goldline:before {
    width: 40px;
  }
}
/*=================== PCここまで ==================*/

/**************************************************
* ボタン ※変更不可
***************************************************/
/* ボタン共通設定 */

.c-btn-solid a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  background: var(--color--key-blue);
  margin: 0;
  font-weight: var(--weight-4);
  text-align: center;
  outline: none;
  transition: ease .2s;
}

.c-btn-solid--hd a {
  width: 130px;
  height: 40px;
  line-height: 40px;
  font-size: 0.8125rem; /*13px*/
}
.c-btn-solid--cta a {
  width: 100%;
  max-width: 240px;
  height: 60px;
  line-height: 60px;
  font-size: 1rem; /*16px*/
}
.c-btn-solid a span {
  position: relative;
  z-index: 3;
  color: #fff;
}
.c-btn-solid a:hover {
  opacity: 1;
}
.c-btn-solid a:hover span {
  color: #fff;
}

.c-btn-solid .c-bgcentery:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--color--dark-blue01);
  width: 100%;
  height: 100%;
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(1, 0);
  transform-origin: center;
}
.c-btn-solid .c-bgcentery:hover:before {
  transform: scale(1, 1);
}


/*黄色*/
.c-btn-solid--yellow a {
  background: var(--color--key-yellow);
}

.c-btn-solid--yellow a span {
 color:var(--color--key-bk)
}
.c-btn-solid--yellow .c-bgcentery:before {
	background: var(--color--dark-yellow01);
}


/*ボーダー ボタン*/
.c-btn {
  overflow: hidden;
  border-radius: 8px;
  display: block;
  line-height: 40px;
  margin: 0;
  font-weight: var(--weight-4);
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  font-size: 0.8125rem; /*13px*/
}
/*ボタン青*/
.c-btn-border--blue {
  border: 1px solid var(--color--key-blue);
  color: var(--color--key-blue);
  background: var(--color--white);
}
.c-btn-border--blue:hover {
  border: 1px solid var(--color--key-blue);
  color: var(--color--white);
  background: var(--color--key-blue);
  opacity: 1;
}
/*英語文字ボタン view-more*/
.c-btn--short {
  width: 110px;
  height: 32px;
  line-height: 32px;
}
/*短いボタン*/
.c-btn--middle {
  width: 160px;
  height: 40px;
  line-height: 40px;
}

.c-circle-arrow-bk, .c-circle-arrow-white {
  position: relative;
  display: block;
}
.c-circle-arrow-white::after {
  content: "";
  background: url('../../images/common/circle-arrow-w.svg');
  width: 40px;
  padding: 20px;
  background-size: 40px;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 4px;
}
.c-circle-arrow-bk::after {
  content: "";
  background: url('../../images/common/circle-arrow.svg');
  width: 40px;
  padding: 20px;
  background-size: 40px;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 4px;
}
.c-circle-arrow-bk--s::after {
  width: 30px;
  padding: 15px;
  background-size: 30px;
}


/*ホームステージング*/
.c-btn-square {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px;
  margin: auto;
/*  max-width: 280px;*/
  width: 100%;

  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
}
/*ボタン黄色*/
.c-btn-square--yellow {
  border: 1px solid var(--color--key-yellow);
  font-size: 0.9375rem;
  font-weight: var(--weight-4);
}
.c-btn-square--yellow:hover {
   opacity: 0.7;
}
/*幅*/
.c-btn-square--medium {
  width: 100%;
  max-width: 400px;
}


/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-btn-solid--hd a {
    width: 160px;
  }
  .c-btn-solid--cta a {
    height: 72px;
    line-height: 72px;
    max-width: 300px;
    font-size: 1.125rem; /*18px*/
  }
  .c-circle-arrow-white::after {
    width: 60px;
    padding: 30px;
    background-size: 60px;
    margin-left: 8px;
  }
  .c-circle-arrow-bk::after {
    width: 60px;
    padding: 30px;
    background-size: 60px;
    margin-left: 8px;
  }
  .c-circle-arrow-bk--s::after {
    width: 40px;
    padding: 20px;
    background-size: 40px;
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
	
.c-btn-square {
  padding: 20px;
}
  .c-btn-solid--hd a {
    width: 160px;
    height: 38px;
    line-height: 38px;
  }
  /*英語文字ボタン view-more*/
  .c-btn--short {
    width: 130px;
    height: 40px;
    line-height: 40px;
  }
  /*短いボタン*/
  .c-btn--middle {
    width: 180px;
    height: 50px;
    line-height: 50px;
  }
}
/*=================== PCここまで ==================*/
/*---------------------
ふわっと 表示
------------------------*/
.c-fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}
.c-fadein.c-active {
  opacity: 1;
  transform: translate(0, 0);
}
/**************************************************
* よくある質問 
***************************************************/
.c-faq__item {
  padding: 0 10px;
  border-radius: 6px;
  margin-bottom: 20px;
/*  background: var(--color--white);*/
}
.c-faq__item:hover {
  opacity: 0.8;
}
.c-faq__item dt {
  padding: 10px 20px 10px 20px;
  position: relative;
}
.c-faq__item dt span {
  font-size: 1.25rem;
  color: var(--color--key-bk);
  position: absolute;
  top: 14px;
  left: 0;
}
.c-faq__item dd {
  padding: 16px 0 16px 20px;
  position: relative;
  border-top: 1px solid #aaa;
}

.c-faq__item dd span {
  font-size: 1.25rem;
  position: absolute;
  top: 12px;
  left: 0;
}


/*ビジネス*/
.p-office-faq .c-faq__item dt {
  font-weight: 400;
}
.p-office-faq .c-faq__item dd span {
  color: var(--color--key-blue);
}

/*ホーム*/
.p-home-faq .c-faq__item dt,.p-home-faq .c-faq__item dd{
  font-weight: 300;
}
.p-home-faq .c-faq__item dd span {
  color: var(--color--key-bk);
}


/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-faq__item {
    padding: 0 20px;
  }
  .c-faq__item dt {
    padding: 20px 0 20px 30px;
  }
  .c-faq__item dd {
    padding: 20px 0 20px 30px;
  }
  .c-faq__item dt span, .c-faq__item dd span {
    top: 15px;
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
  .c-faq__item {
    padding: 0 40px;
    margin-bottom: 24px;
  }
  .c-faq__item dt {
    padding: 25px 0 25px 30px;
  }
  .c-faq__item dd {
    padding: 25px 0 25px 30px;
  }
  .c-faq__item dt span, .c-faq__item dd span {
    top: 21px;
  }
}
/*=================== PCここまで ==================*/
/**************************************************
* 画像とテキストが横並びレイアウト 100%表示
スマホは縦組み
***************************************************/
.c-align-horizontally__text-wrap {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-align-horizontally {
    justify-content: center;
  }
  /*並び変更*/
  .c-align-horizontally--reverse {
    flex-direction: row-reverse;
  }
  .c-align-horizontally__text-wrap {
    width: 45%;
    align-self: center;
    max-width: 550px;
  }
  .c-align-horizontally__text-wrap--short {
    max-width: 490px;
  }
  .c-align-horizontally__text-wrap--long {
    max-width: 580px;
  }
  /*padding:auto解除*/
  .c-align-horizontally__text-wrap--clear-margin-l {
    margin-left: inherit;
    padding: 0 2%;
  }
  .c-align-horizontally__text-wrap--clear-margin-r {
    margin-right: inherit;
    padding: 0 2%;
  }
  .c-align-horizontally__img {
    width: 55%;
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
  /*padding:auto解除*/
  .c-align-horizontally__text-wrap--clear-margin-l {
    padding: 0 0 0 5%;
  }
  .c-align-horizontally__text-wrap--clear-margin-r {
    padding: 0 5% 0 0;
  }
}
/*=================== PCここまで ==================*/
/**************************************************
* お問い合わせ
***************************************************/
.c-cta__inner {
  width: 80%;
  max-width: 780px;
  background: var(--color--white);
  padding: 40px 24px;
  margin: 0 auto;
  border-radius: 10px;
}
.c-cta__text {
  margin: auto;
	text-align: center;
}

/*ビジネス*/
#office .c-cta ,#phonebooth .c-cta {
  background: url("../../images/common/cta-sp.jpg") no-repeat top center;
  background-size: cover;
}

/*ホーム*/
#staging_lp .c-cta {
  background:
    linear-gradient(
      rgba(235, 226, 171, 0.4),
      rgba(235, 226, 171, 0.4)
    ),
    url("../../images/common/staging-cta-bg-pc.jpg") no-repeat top center;
  background-size: cover;

}



/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
#office .c-cta ,#phonebooth .c-cta{
    background: url("../../images/common/cta-pc.jpg") no-repeat top center;
  }
  .c-cta__inner {
    width: 68%;
  }
  .c-cta__text p {
    text-align: center;
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {}
/*=================== PCここまで ==================*/
/**************************************************
* footer
***************************************************/
.c-footer {
  position: relative;
  background-color: var(--color--light-blue01);
  padding: 40px 0 24px;
}
.c-footer__list-wrap {
  width: 92%;
  margin: auto;
}
/* logo */
.c-footer__logo {
  width: 180px;
  height: auto;
  margin: 24px 0 48px;
}
.c-footer__list-menu {
  line-height: 2.3;
  font-size: 0.8125rem;
}
.c-footer__list--2colmn .c-footer__list-menu {
  width: 100%;
}
.c-footer__sub-list-wrap {
  display: flex;
  justify-content: space-around;
  max-width: 390px;
  font-size: 0.8125rem;
}
.c-footer__sub-list {
  border-top: 1px solid var(--color--gray02);
  padding-top: 24px;
}
/* copyright */
.c-footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color--key-bk);
}
/*------------------------------
pageTopボタン ※変更不可
------------------------------*/
.c-pagetop {
  z-index: 700;
  position: absolute;
  top: -25px;
  right: 20px;
}
.c-pagetop-arrow {
  width: 15px;
  height: 50px;
  position: relative;
  display: block;
}
.c-pagetop-arrow::before, .c-pagetop-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.sample1-1::before {
  left: 6px;
  width: 2px;
  height: 50px;
  background: #555;
}
.sample1-1::after {
  top: -40px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-footer__logo {
    margin: 0px;
  }
  .c-footer__list-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .c-footer__list-wrap-right {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 70%;
    margin-left: auto;
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
  .c-footer {
    padding: 50px 0 24px;
  }
  .c-footer__list-wrap {
    width: 80%;
  }
  .c-footer__list-wrap-right {
    grid-template-columns: 200px auto;
    width: 100%;
    margin-left: auto;
    justify-content: flex-end;
  }
  .c-footer__list-menu {
    margin-bottom: 5px;
  }
  .c-footer__list:nth-child(2) .c-footer__list-menu {
    margin-bottom: 0;
  }
  .c-footer__sub-list-wrap {
    font-size: 0.875rem;
  }
}
/*=================== PCここまで ==================*/
/**************************************************
* kv
***************************************************/
.c-kv {
  width: 100%;
  overflow: hidden;
  height: auto;
  position: relative;
}
.c-kv__inner {
  position: relative;
}
.c-kv__img {
  position: relative;
  display: block;
}
.c-kv__img::before {
  background: rgba(0, 0, 0, 0.4);
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-kv-catch {
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  margin: auto;
  border: 3px double #fff;
  padding: 10px;
}
.c-kv-catch {
  font-size: 6.0vw;
  color: #fff;
  text-align: center;
}
.c-kv-catch span {
  color: #fff;
}
.c-kv-catch span.font-80 {
  display: inline-block;
  padding: 8px 10px 4px;
  margin: 10px 0;
  font-size: 80%;
  background: #fff;
  color: var(--color--key-bk);
}
.c-kv-medal {
  width: 43%;
  position: absolute;
  z-index: 100;
  right: 10px;
  bottom: 10px;
}
.c-kv-center-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 52%;
  margin: auto;
}
/* スクロールダウンの位置 */
.c-scroll {
  position: absolute;
  left: 4%;
  bottom: 10%;
  /*    writing-mode: vertical-rl;*/
}
.c-scroll a {
  color: #fff;
  font-size: 0.6875rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 10px 0 6px 15px;
}
/* 誘導線のアニメーション部分 */
.c-scroll::before {
  animation: scroll 2s infinite;
  background-color: var(--color--white);
  bottom: -25px;
  content: "";
  height: 70px;
  left: -109px;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 誘導線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-kv__img {
    width: 150%;
    left: -25%;
  }
  .c-kv-catch {
    top: 35%;
    width: 70%;
    border: 4px double #fff;
    padding: 30px;
  }
  .c-kv-catch {
    font-size: 3.5vw;
    font-weight: 600;
  }
  .c-kv-catch span.font-80 {
    padding: 3px 16px 1px;
  }
  .c-kv-medal {
    position: absolute;
    width: 22%;
    /*    max-width: 270px;*/
    right: 5%;
    bottom: 20px;
    margin: 0;
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
  .c-kv__img {
    width: 100%;
    left: 0;
  }
  .c-kv-catch {
    top: 35%;
    width: 34%;
    padding: 41px 28px;
  }
  .c-kv-catch {
    font-size: 2.1vw;
  }
  .c-kv-medal {
    width: 16%;
    max-width: 270px;
  }
}
/*=================== PCここまで ==================*/
/**************************************************
* ループ
***************************************************/
@keyframes infinity-loop-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-loop-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.c-loop-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.c-loop-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: anchor-center;
}
.c-loop-infinity__list--left {
  animation: infinity-loop-left 80s infinite linear .5s both;
}
.c-loop-infinity__list--right {
  animation: infinity-loop-right 75s infinite linear .5s both;
}
.c-loop-infinity__item--multiple {
  width: calc(100vw / 3);
  margin: 0 4px;
  align-self: center;
}
.c-loop-infinity__item--singular {
  width: calc(100vw / .5);
  margin: 0;
}
.c-loop-infinity__item > img {
  width: 100%;
  vertical-align: middle;
}
/*画像の比率*/
.c-loop-infinity__item--multiple {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  overflow: hidden; /* はみ出し防止 */
}
.c-loop-infinity__item--multiple > img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.c-loop-infinity__item--multiple:nth-child(odd) {
  height: 167px;
}
.c-loop-infinity__item--multiple:nth-child(even) {
  height: 124px;
  width: 207px;
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-loop-infinity__item--multiple {
    width: calc(100vw / 3);
    margin: 0 10px;
  }
  .c-loop-infinity__item--singular {
    width: calc(100vw / .8);
  }
  .c-loop-infinity__item--multiple:nth-child(odd) {
    height: 247px;
  }
  .c-loop-infinity__item--multiple:nth-child(even) {
    height: 154px;
    width: 257px;
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
  .c-loop-infinity__item--multiple {
    width: calc(100vw / 4);
    margin: 0 20px;
  }
  .c-loop-infinity__item--singular {
    width: calc(100vw / 1.3);
  }
  .c-loop-infinity__item--multiple:nth-child(odd) {
    height: 540px;
  }
  .c-loop-infinity__item--multiple:nth-child(even) {
    height: 405px;
    width: 590px;
  }
}
/*=================== PCここまで ==================*/
/**************************************************
* 線が伸びるアニメ
***************************************************/
/* 未使用 使うなら要調整 */
.c-line-stretches {
  margin: 50px 0;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.c-line-stretches::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--color--key-blue);
  animation: secondaryImageOverlayIn 0.6s 0s cubic-bezier(.77, 0, .175, 1), secondaryImageOverlayOut 0.6s 0.6s cubic-bezier(.77, 0, .175, 1);
  animation-fill-mode: both;
}
.c-line-stretches__item {
  margin: 0.05em;
  line-height: 1;
  color: var(--color--key-bk);
  animation: fadeIn 0.1s 0.5s;
  animation-fill-mode: both;
  background-color: var(--color--white);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes secondaryImageOverlayOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(102%);
  }
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {}
/*=================== PCここまで ==================*/
/**************************************************
*Grid
***************************************************/
.c-grid {
  display: grid;
  gap;
  0;
}
.c-grid--topics {
  grid-template-columns: 1fr;
}
/*
.c-grid--booth-advantages{
    grid-gap:5px;
    grid-template-columns: 1fr 1fr;  
}
*/
.c-grid--booth-products {
  grid-gap: 10px;
}
.c-grid--booth-icon {
  grid-gap: 5px;
  grid-template-columns: repeat(4, 1fr);
}
.c-grid--booth-cost {
  grid-template-columns: 1fr 1fr;
}
.c-grid--booth-cost-wrap {
  grid-gap: 8px;
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-grid--topics {
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
  }
  /*
    
.c-grid--booth-advantages{
    grid-gap:5px;
    grid-template-columns: 1fr 1fr 1fr; 
    grid-template-rows: repeat(2, auto);
    place-items: center ;
}
*/
  .c-grid--booth-icon {
    grid-gap: 5px;
    grid-template-columns: repeat(8, 1fr);
  }
  .c-grid--booth-products {
    grid-template-columns: 1fr 1fr;
    /* 　　grid-template-rows: 1fr 1fr;*/
  }
  /*子要素の高さ揃え*/
  .c-grid--booth-products .p-phonebooth-products__list {
    display: grid;
/*
    grid-template-rows: subgrid;
    grid-row: span 2;
*/
  }
  .c-grid--booth-products-main {
    grid-template-columns: 1fr 330px;
    grid-row: 1;
    grid-column: 1 / span 2;
  }
  .c-grid--booth-products-main .p-phonebooth-products__list-img {
    order: 1;
    align-content: center;
  }
  .c-grid--booth-cost-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .c-grid--booth-option {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
  .c-grid--booth-products-main {
    grid-template-columns: 1fr 560px;
  }
  .c-grid--booth-cost {
    grid-template-rows: 50px;
  }
  .c-grid--booth-option {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*=================== PCここまで ==================*/
/**************************************************
* ニュース、トピックス
***************************************************/
/*3点リーダー*/
.c-news__detail {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
/**************************************************
* hover  アニメ
***************************************************/
/*オンマウスでシャドー表示*/
.c-hover-shadow {}
.c-hover-shadow {
  display: block;
  transition: all .3s ease-in-out;
  /*    box-shadow: 0 0 0 rgba(0,0,0,.25);*/
}
.c-hover-shadow:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
  opacity: 1;
}
/*------------------------------
テキスト マーカー 
------------------------------*/
.c-marker-blue {
  background: #94D5FB;
  background-image: linear-gradient(to right, #EBF6FC, #D7EFFD);
}
.c-marker-line-blue {
  background-image: linear-gradient(to right, #EBF6FC, #D7EFFD);
  background-repeat: no-repeat;
  background-size: 100% 50%;
  background-position: bottom;
  transition: all 0.25s ease-in;
}
.c-marker-line-blue:hover {
  background-size: 100% 100%;
  /*	color: #ffffff;*/
}
/*---------------------------------------
テキスト背景付き （ベタ、ボーダー）
---------------------------------------*/
/*背景青*/
.c-bg-blue {
  background-color: var(--color--key-blue);
}
/*ボーダー 青*/
.c-border-blue {
  border: 1px solid var(--color--key-blue);
  background-color: var(--color--white);
}



/*---------------------------------------
画面最下部固定 CTA
---------------------------------------*/
.c-btn-fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: rgba(13, 110, 158, .3);
  text-align: center;
  /* padding: 20px 0; */
  display: flex;
z-index: 11;
}
.c-btn-fixed--sea-green{
background: rgba(14, 178, 135, .15);
}

.c-btn-fixed__cta-btn {
  background: #F47E04;
  width: 92%;
  height: 50px;
  max-width: 347px;
  margin: auto;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  transition: all .3s;
}
.c-btn-fixed__cta-btn--pnk{
	 background: #E84444;
}
.c-btn-fixed__ttl {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  width: 50%;
  margin-right: auto;
  margin-left: 6px;
}
.c-balloon__center--white-pnk,
.c-balloon__center--white-ore {
  justify-content: center;
  position: relative;
  max-width: 140px;
  width: 42%;
  margin: 0 auto 0 0;
  padding: .4em 1em;
  border-radius: 8px;
  background-color: #ffffff;
  color: #f47e03;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
}
.c-btn-fixed__cta-btn--pnk .c-btn-fixed__ttl{
	font-size: 1.125rem;
	width: 45%;
	margin-left: 2px;
}
.c-balloon__center--white-pnk{
font-size:0.625rem;
width: 50%;
max-width: 146px;
}


.c-balloon__center--white-pnk::before ,
.c-balloon__center--white-ore::before {
  position: absolute;
  bottom: 0;
  width: 17px;
  height: 11px;
  top: 50%;
  right: -11px;
  transform: translateY(-50%) rotate(-90deg);
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
}


.c-balloon__center--white-pnk {
  background-color: #ffffff;
  color: #E84444;
}


/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-btn-fixed {
    height: 90px;
  }
  .c-btn-fixed__cta-btn {
    flex-wrap: wrap;
    height: 70px;
    border-radius: 10px;
    padding: 5px;
  }
.c-balloon__center--white-pnk,
  .c-balloon__center--white-ore {
    font-size: 14px;
    margin: 0 auto 10px;
    padding: .35em 1.4em;
    width: 100%;
    max-width: 270px;
    border-radius: 10px;
  }
	
.c-balloon__center--white-pnk{
	max-width: 299px;
}
	
  .c-btn-fixed__ttl {
    margin-left: auto;
    margin-top: -6px;
    width: 100%;
    font-size: 19px;
  }
.c-btn-fixed__cta-btn--pnk .c-btn-fixed__ttl{
	font-size: 19px;
	margin-left: auto;
	width: 100%;
	
}
.c-balloon__center--white-pnk::before,
  .c-balloon__center--white-ore::before {
    bottom: -8px;
    width: 17px;
    height: 11px;
    top: initial;
    right: initial;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {
  .c-btn-fixed {
    height: 100px;
  }
  .c-btn-fixed__cta-btn {
    height: 80px;
    padding: 8px;
    border: 2px solid #F47E04;
  }

.c-balloon__center--white-ore {
    font-size: 0.875rem;
  }
.c-balloon__center--white-pnk {
        margin: 0 auto 13px;
        padding: .35em 1em;
	font-size:0.8125rem;
}
.c-btn-fixed__cta-btn--pnk .c-btn-fixed__ttl,
.c-btn-fixed__ttl {
    font-size: 1.25rem;
	width: 100%;
  }
	
  .c-btn-fixed__cta-btn:hover {
    background: #fff;
    border: 2px solid #F47E04;
    opacity: 1;
  }
  .c-btn-fixed__cta-btn:hover .c-btn-fixed__ttl {
    color: #F47E04;
  }
  .c-btn-fixed__cta-btn:hover .c-balloon__center--white-ore {
    background-color: #f47e03;
    color: #fff;
  }
  .c-btn-fixed__cta-btn:hover .c-balloon__center--white-ore::before {
    background-color: #f47e03;
  }
	
 .c-btn-fixed__cta-btn.c-btn-fixed__cta-btn--pnk,
.c-btn-fixed__cta-btn.c-btn-fixed__cta-btn--pnk:hover{
	border: 2px solid #E84444;
	}
  .c-btn-fixed__cta-btn.c-btn-fixed__cta-btn--pnk:hover .c-btn-fixed__ttl {
    color: #E84444;
  }
  .c-btn-fixed__cta-btn.c-btn-fixed__cta-btn--pnk:hover .c-balloon__center--white-pnk {
    background-color: #E84444;
    color: #fff;
  }
  .c-btn-fixed__cta-btn.c-btn-fixed__cta-btn--pnk:hover .c-balloon__center--white-pnk::before {
    background-color: #E84444;
  }
}
/*=================== PCここまで ==================*/






/*---------------------------------------
テキストアニメーション カーテン
---------------------------------------*/
/*---------------------------------------
テキストアニメーション：カーテン
---------------------------------------*/

.c-curtain-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.c-curtain-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #FFF; 
  animation: c-curtain-in 0.6s 0s cubic-bezier(.77, 0, .175, 1),
             c-curtain-out 0.6s 0.6s cubic-bezier(.77, 0, .175, 1);
  animation-fill-mode: both;
}

.c-curtain-text > * {
  position: relative;
  margin: 0;
  opacity: 0;
  animation: c-fade-in 0.1s 0.5s forwards;
}

/* --- keyframes --- */
@keyframes c-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes c-curtain-in {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes c-curtain-out {
  0% { transform: translateX(0); }
  100% { transform: translateX(102%); }
}




/*ブラッシュアップ版 class名変更*/
/* =========================
   Curtain Reveal Component
========================= */

.c-curtain-reveal {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: transparent; /* 初期は文字を隠す */
}

/* カーテン */
.c-curtain-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: translateX(-100%);
}

/* 発火 */
.c-curtain-reveal.is-active {
  color: inherit;
}

.c-curtain-reveal.is-active::after {
  animation: c-curtain-reveal 1.2s cubic-bezier(.77, 0, .175, 1) forwards;
}

/* keyframes */
@keyframes c-curtain-reveal {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(102%);
  }
}

/*---------------------------------------
 大きいサイズの英語表記
---------------------------------------*/


/* 英字見出し */
.c-section-heading__title::after {
  content: attr(data-en-heading);
  display: block;
  margin-top: 4px;
/*  font-size: 3.5rem;*/
font-size: clamp(3rem, 4vw, 3.5rem);
  color: var(--color--key-yellow);
  line-height: 1.2;

  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
}
.c-section-heading__title {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
}

/* ===== h3 用 ===== */

/*日本語*/
.c-section-heading__title--sub {
  position: relative;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  padding-bottom: 24px;
}

/*英字*/
.c-section-heading__title--sub::after {
  content: attr(data-en-heading);
  display: block;
  margin-top: 0px;

/*  font-size: 2.75rem;*/
	font-size: clamp(2.25rem, 2.4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #666;
}

/* 下線 */
.c-section-heading__title--sub::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 55px;
  height: 2px;
  background-color: var(--color--key-yellow); 
}


/*h3 白背景の外枠*/
.c-section-heading--with-text{
background-color: var(--color--white);
padding: 40px 30px;
width: 100%;
max-width: 520px;
text-align: center;
box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.04);
	
}
.c-section-heading__text{
margin:24px auto 0;
font-size: 0.875rem;/*	14px*/
font-weight: var(--weight-4);
line-height: 1.6;
}



@media (min-width: 600px) {
/*h3 白背景の外枠*/
.c-section-heading--with-text{
padding: 50px 30px;
}
	
}
@media (min-width: 1023px) {
.c-section-heading--with-text{
padding: 70px 30px;
}
.c-section-heading__title--sub {
  padding-bottom: 32px;
}
.c-section-heading__text{
		margin:32px auto 0;	
}

}

/*---------------------------------------
 画像とテキストレイアウト
---------------------------------------*/
.c-media {
  display: flex;
  flex-direction: column;
}

.c-media__image{
	width: 90%;
	position: relative;
	padding-bottom: 30px;
}
.c-media__image-bg{
	position: relative;
}

/* 画像背面のグラデ（80%色あり → 20%で白へ） */
.c-media__image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 50px;
  bottom: clamp(-5px, -5vw, -80px);
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(247, 247, 242, 1) 0%,
    rgba(247, 247, 242, 1) 80%,
    rgba(255, 255, 255, 1) 100%
  );
}

.c-media__image-bg--left::before {
  right: 9%;
}
.c-media__image-bg--right::before {
  left: 9%;
}

.c-media__image-bg img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.c-media__body {
  flex: 1 1 auto;
   z-index: 1;
  position: relative;
}

.c-media__image-bg--left{
	padding-left: 0%;
}

.c-media__image-bg--right{
	padding-right: 0%;
}


/* 広め */
.c-media__body--wide {
width: 98%;
  max-width: 800px;
}


.c-media__overlap {
  margin-bottom: -30px;
  z-index: 1;
  position: relative;
}

.c-media__body--left,
.c-media__image--left{
	 margin-left: auto;
}

.c-media__ttl{
	padding-left: 5%;
	
}

@media (min-width: 600px) {
.c-media {
    gap: 8px;
}
.c-media__image-bg::before {
  bottom: clamp(-40px, -5vw, -80px);
}
.c-media__image-bg--left{
	padding-left: 4%;
}

.c-media__image-bg--right{
	padding-right: 4%;
}
.c-media__image-bg--left::before {
  right: 4%;
}
.c-media__image-bg--right::before {
  left: 4%;
}
	
	
}

@media (min-width: 1023px) {
.c-media__image{
	width: 92%;
	padding-bottom: 50px;
}
.c-media {
    flex-direction: row; 
	align-items: flex-start;
    gap: 0;
  }
	
.c-media--reverse{
	flex-direction: row-reverse;
}

.c-media__image{
	width: 50%;
	padding-bottom: 50px;

}
.c-media__image-bg--left{
	padding-left: 3%;
}

.c-media__image-bg--right{
	padding-right: 3%;
}
	
	
	
.c-media__body--wide {
width: 51%;
}
	
}


/*---------------------------------------
 概要文ブロック 見出しと本文
---------------------------------------*/
.c-introduction{
	padding: 8% 8%;
}

.c-introduction__ttl{
	margin-bottom: 24px;
	font-weight: var(--weight-5);
}
.c-introduction__text p{
	font-size: 0.875rem;/*	14px*/
	font-weight: var(--weight-4);
	margin-bottom: 16px;
	
}


.c-media__body--left {
    margin-right: auto;
    margin-left: 0;
}
.c-media__body--right{
	margin-left: auto;
}




@media (min-width: 600px) {
.c-introduction{
	padding: 4% 8%;
}

}

@media (min-width: 1023px) {
.c-introduction{
	padding: 5% 5%;
}

	
.c-media__body--left {
    margin-right: auto;
    margin-left: auto;
}
.c-media__body--right{
	margin-left: auto;
	margin-right: auto;
}
.c-introduction__text p{
	font-size: 1rem;/*	16px*/
	
}	
	
}


/*---------------------------------------
 grid 2列４列
---------------------------------------*/

/* =========================
   Rows Component
========================= */

.c-rows {
  display: grid;
  gap: 16px;
}

.c-rows__item {
  display: flex;
  flex-direction: column;
}

/* =========================
   Layout Modifier
========================= */

/* SP / TB : 2 columns */
.c-rows--two-four {
  grid-template-columns: repeat(2, 1fr);
}

/* PC : 4 columns */
@media screen and (min-width: 1023px) {
  .c-rows--two-four {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}


/*---------------------------------------
 中点付きテキスト
---------------------------------------*/

/* 中点付きテキスト（改行対応・文字面揃え） */
.c-text-dot {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}

.c-text-dot::before {
  content: "・";
  margin-right: 4px;
}






