@charset "UTF-8";
/* CSS Document */ :root {
  --weight-2: 200;
  --weight-4: 400;
  --weight-6: 600;
  --weight-9: 900;
}
/*フォント指定*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px)and (max-width: 1022px) {
  html {
    /*    font-size: 1.4159292035vw;*/
    font-size: 2.0833333333vw; /* 16 ÷ 768 × 100 */
  }
}
@media (min-width: 1023px) {
  html {
    font-size: 16px;
  }
}
/*------------------------------
フォント※変更不可
------------------------------*/
.c-font-weight--200 {
  font-weight: var(--weight-2);
}
.c-font-weight--400 {
  font-weight: var(--weight-4);
}
.c-font-weight--600 {
  font-weight: var(--weight-6);
}
.c-font-weight--900 {
  font-weight: var(--weight-9);
}
/*------------------------------
テキスト位置
------------------------------*/
.c-text-align--center {
  text-align: center
}
.c-text-align--left {
  text-align: left
}
/*------------------------------
テキスト ※変更不可
------------------------------*/
p, a, li, th, td, dt, dd, div, span {
  line-height: 1.6;
  color: var(--color--key-bk);
}
/*------------------------------
見出し h1-h6 ※変更不可
------------------------------*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  font-weight: normal;
}
h1 {
  font-size: 2.5rem; /*40px*/
}
h2 {
  font-size: 1.5rem; /*24px*/
}
h3 {
  font-size: 1.25rem; /*20px*/
}
h4 {
  font-size: 1.1875rem; /*19px*/
}
h5 {
  font-size: 1.125rem; /*18px*/
}
h6 {
  font-size: 1.0625rem; /*17px*/
}
/*------------------------------
テキスト ※変更不可
------------------------------*/
.c-text--xlg {
  font-size: 1.875rem; /*30px*/
}
.c-text--lg {
  font-size: 1.5rem; /*24px*/
}
.c-text--l {
  font-size: 1.25rem; /*20px*/
}
.c-text--md {
  font-size: 1.125rem; /*18px*/
}
.c-text--s {
  font-size: 0.9375rem; /*15px*/
}
.c-text--xs {
  font-size: 0.8125rem; /*13px*/
}
.c-text--xxs {
  font-size: 0.75rem; /*12px*/
}
.c-note {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 0.6875rem; /*11px*/
}
.c-text--lead {
  font-size: 1.125rem; /*18px*/
}
@media (min-width: 1023px) {
  /*------------------------------
見出し h1-h6 ※変更不可
------------------------------*/
  h1 {
    font-size: 2.5rem; /*40px*/
  }
  h2 {
    font-size: 2.25rem; /*36px*/
  }
  h3 {
    font-size: 1.875rem; /*30px*/
  }
  h4 {
    font-size: 1.75rem; /*28px*/
  }
  h5 {
    font-size: 1.625rem; /*26px*/
  }
  h6 {
    font-size: 1.375rem; /*22px*/
  }
  /*------------------------------
テキスト ※変更不可
------------------------------*/
  .c-text--xlg {
    font-size: 2.5rem; /*40px*/
  }
  .c-text--lg {
    font-size: 1.875rem; /*30px*/
  }
  .c-text--l {
    font-size: 1.625rem; /*26px*/
  }
  .c-text--md {
    font-size: 1.25rem; /*20px*/
  }
  .c-text--s {
    font-size: 1.0625rem; /*17px*/
  }
  .c-text--xs {
    font-size: 0.875rem; /*14px*/
  }
  .c-note {
    font-size: 0.8125rem; /*13px*/
  }
  .c-text--lead {
    font-size: 1.25rem; /*20px*/
  }
}
/*------------------------------
　装飾タイトル変更不可
------------------------------*/
/* 角丸タイトル */
.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: 0.875rem; /*14px*/
  position: relative;
}
.c-rounded-en::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 40%;
  display: block;
  width: 1px;
  height: 10px;
  background-color: var(--color--key-blue);
}
/**/
.c-overlap-ttl {
  padding-top: 60px;
  text-align: center;
  position: relative;
}
.c-overlap-ttl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  display: block;
  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%);
  display: block;
  text-align: center;
  font-size: 2.5rem; /*40px*/
  color: var(--color--key-blue);
  opacity: 0.1;
  line-height: 0.8;
}
/*角丸テキスト 背景青*/
.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: 0.75rem;
  text-align: center;
  line-height: 1.4;
  margin-right: 10px;
}
/* .c-ttl-horizontal-line */
.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: translate(0, -50%);
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: var(--color--key-blue);
}
/*テキスト下 中央に水平線*/
.c-center-horizontal {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
.c-center-horizontal:before {
  content: '';
  position: absolute;
  bottom: -9px;
  display: inline-block;
  width: 40px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--color--key-blue);
  border-radius: 2px;
}
/*------------------------------
　角丸 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ここまで ==================*/
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1023px) {}
/*=================== PCここまで ==================*/
/**************************************************
* ボタン ※変更不可
***************************************************/
/* ボタン共通設定 */
/*
.c-btn-solid{
  position: absolute;
  top: 10px;
  right: 5%;
}
*/
.c-btn-solid a {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  background: var(--color--key-blue);
  margin: 0;
  font-weight: bold;
  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 {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  line-height: 40px;
  margin: 0;
  font-weight: bold;
  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 {
	width: 100%;
    max-width: 50px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}
.c-circle-arrow--s {
    max-width: 30px;
}
*/
/*詳細はこちらボタン*/
/*
.c-detail-btn{
	display: inline-block;
}
*/
.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;
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .c-btn-solid--hd a {
    width: 160px;
  }
  .c-btn-solid--cta a {
    height: 80px;
    line-height: 80px;
    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-solid--hd a {
    width: 160px;
    height: 50px;
    line-height: 50px;
  }
  /*英語文字ボタン 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;
  font-weight: 400;
}
.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;
  color: var(--color--key-blue);
  position: absolute;
  top: 12px;
  left: 0;
}
/*=================== 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 {
  background: url("../../images/common/cta-sp.jpg") no-repeat top center;
  background-size: cover;
}
.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;
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .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%;
  }
}
/*
.logos-slider {
  background: #333;
}
*/
/*=================== 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ここまで ==================*/