@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #333;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0 0 16px -6px #b5b5b5;
}
header .logo img {
    width: 150px;
}
header img {
    width: 150px;
    margin-left: 64px;
}
main .flex-wrapper {
    max-width: 700px;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin-inline: auto;
}
main {
    margin-top: calc(60px + 64px);
}
h1 {
    font-size: 36px;
    font-weight: 700;
    padding-left: 16px;
    border-left: 6px solid #000;
}
.paragraph h2 {
    font-size: 28px;
    font-weight: 700;
}
h3 {
    font-size: 20px;
    font-weight: 700;
}
img {
    width: 100%;
}
.flex-wrapper .right-content {
    width: 324px;
}
.flex-wrapper .right-content .company-card {
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    margin-left: 16px;
    position: sticky;
    width: 324px;
    top: 124px;
}
.flex-wrapper .right-content .cta p {
    font-weight: 700;
}
.flex-wrapper .right-content .cta a {
    background-color: #e8440b;
    color: #fff;
    border-radius: 100vmax;
    padding: 8px;
    display: inline-block;
    font-weight: 700;
    margin-top: 8px;
}
.flex-wrapper .left-content {
    width: 700px;
}
.flex-wrapper .left-content hgroup {
    margin-bottom: 32px;
}
.flex-wrapper .left-content hgroup .company {
    font-size: 20px;
}
.company-card .text {
    padding: 0 36px 36px;
}
.company-logo {
    text-align: center;
}
.company-logo > div {
    margin: 4px 0;
}
.company-logo img {
    width: 150px;
    padding: 36px;
}
.company-card .cta {
    text-align: center;
    padding-bottom: 36px;
}
.company-card .text .company-name .label,
.company-card .text .company-business .label,
.company-card .text .company-volume .label,
.company-card .text .company-issue .label {
    margin-right: 8px;
    font-weight: 700;
}
article .read-text {
    margin: 32px 0 32px;
    line-height: 32px;
}
article .main-01,
article .main-02 {
    margin-bottom: 32px;
}
.paragraph h2 {
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    background: transparent;/*背景透明に*/
    border-left: solid 10px #e8440b;/*左線*/
    margin-bottom: 32px;
}
.sub-01,
.sub-02 {
    margin: 16px 0 16px;
}
h3 {
    margin-bottom: 16px;
}
.company {
    margin: 16px 0;
    font-size: 24px;
}
.point {
  padding: 16px;
  background: #FFF5EA;
}
.point p {
  padding-left: 16px;
    color: #e8440b;
    font-weight: 700;
    font-size: 24px;
}
.point ul {
  margin: 16px 32px;
}
/*
.point li {
    background-color: initial;
    margin: initial;
    box-shadow: initial;
    padding: 8px 0;
}
*/
.point li {
  list-style: none;
/*    background-color: #fff;*/
  background-color: initial;
  margin: 8px 16px;
  padding: 16px;
  font-weight: 700;
  border-bottom: 1px solid #373737
}
.main-01 {
    margin-top: 64px;
}
.paragraph,
.mid-cta {
    margin-bottom: 64px;
}
.paragraph p {
    line-height: 2;
    margin-bottom: 24px;
}
.cv {
    margin-top: 64px;
    padding-top: 64px;
    background-color: #fff8f3;
}
.cv .inner {
    text-align: center;
}
.cv h2 {
    padding: 0;
    border-left: initial;
}
.cv-head {
    color: #ed582d;
    font-size: 28px;
}
.cv-form {
    height: 800px;
    margin-top: 32px;
}

/* 20250625 ポップアップ */
.popup {
    position: fixed;
    bottom: 60px;     /* 下からの余白 */
    right: 20px;      /* 右からの余白 */
    width: 200px;     /* 必要に応じて調整 */
    height: auto;
    opacity: 1;
    transition: opacity 0.5s ease;  /* フェードアウトの速さ */
    z-index: 1000;    /* 必要に応じて調整 */
    background-color: #fff;
    padding: 0;
    box-sizing: border-box;
}
/* 20250625 ポップアップ */
/*.popup {
    position: fixed;
    bottom: 60px;      下からの余白 *
    right: 20px;      * 右からの余白 *
    width: 200px;     * 必要に応じて調整 *
    height: auto;
    opacity: 1;
    transition: opacity 0.5s ease;  * フェードアウトの速さ *
    z-index: 1000;    * 必要に応じて調整 *
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 16px;
    box-sizing: border-box;
}*/

.popup.hidden {
    opacity: 0;
    pointer-events: none; /* 透明中はクリック無効 */
}

.popup span {
    display: block;
    text-align: center;
    font-weight: 700;
}

.popup .cvbtn {
    color: #fff;
    background-color: #e34d17;
    border-radius: 100vmax;
    padding: 8px 0;
    font-size: 14px;
}

.popup .cvbtn:hover {
    color: #e34d17;
    background-color: #fff;
    border: 1px solid #e34d17;
}

/* ✕ボタン */
    .popup .close-btn {
    position: absolute;
    top: 4px;
    right: 6px;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

.flex-wrapper .left-content {
    width: 100%;
    max-width: 850px;
}
h1 {
    margin-bottom: 32px;
}
.link {
    color: #3f51b5;
    text-decoration: underline;
}
.colophon {
    /* padding: 32px; */
    line-height: 3;
    /* box-shadow: 0 4px 20px #d1d1d1; */
    margin-bottom: 64px;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 128px;
    text-align: center;
}
header {
/*    justify-content: flex-start;*/
    justify-content: space-between;
}
header .header_cv {
  margin: 10px 64px 10px 0;
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  background: #0D3276;
  border-radius: 20px;
}
.popup img {
    margin-bottom: 16px;
}
.popup .treat {
    margin-bottom: 8px;
    font-size: 12px;
}


/* 対話形式記事 */
.chat .flex-l {
    display: flex;
    margin-top: 32px;
}

.chat .flex-r {
    display: flex;
    flex-direction: row-reverse;
}

.chat .icon p {
    font-size: 11px;
}

.chat .flex-l img,
.chat .flex-r img {
    border-radius: 50%;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    width: 80px;
}

.chat .flex-r .icon,
.chat .flex-l .icon {
    flex-shrink: 0;
    margin-right: 35px;
    width: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.chat .flex-r .icon {
    margin-left: 35px;
    margin-right: 0;
}

.chat .flex-l .text,
.chat .flex-r .text {
    border: 2px solid #333;
    border-radius: 8px;
    flex-grow: 1;
    margin-bottom: auto;
    padding: 20px;
    position: relative;
}
.chat .flex-r .text {
    background-color: rgba(255, 245, 234, 0.43);
}

.chat .flex-l .text::before {
    background: #fff;
    border-right: 2px solid #333;
    border-top: 2px solid #333;
    content: "";
    height: 11px;
    left: -7px;
    position: absolute;
    top: 15px;
    transform: rotate(-135deg);
    width: 11px;
}

.chat .flex-r .text::before {
    background: #fff;
    border-right: 2px solid #333;
    border-top: 2px solid #333;
    content: "";
    height: 11px;
    position: absolute;
    top: 15px;
    transform: rotate(-135deg);
    width: 11px;
    left: auto;
    right: -7px;
/*    transform: rotate(45deg);*/
}

@media (max-width: 768px) {
  main {
    margin-top: calc(60px + 12px);
  }
  main .flex-wrapper {
    max-width: 94%;
    flex-direction: column-reverse;
  }
  .flex-wrapper .right-content {
    width: 100%;
  }
  .flex-wrapper .right-content .company-card {
    margin-left: 0;
  }
  .flex-wrapper .left-content {
    width: 100%;
  }
  .popup {
    display: none;
  }
  /*
  .popup {
    bottom: 85px;
    right: 10px;
    width: 170px;
  }
  .popup span {
    font-size: 12px;
  }
  .popup .cvbtn {
    font-size: 10px;
  }
  */
  .chat .flex-r {
    margin-top: 16px;
  }
  .chat .flex-r .icon {
    margin-left: 16px;
  }
  .chat .flex-l .icon {
    margin-right: 16px;
  }
  header .header_cv {
    margin: 10px 6px 10px 0;
    padding: 0 8px;
    font-size: 1rem
  }
  header img {
    width: 150px;
    margin-left: 16px;
  }
  h1 {
    font-size: calc(34vw / 768 * 100);
    padding-left: 8px;
    border-left: 3px solid #000;
  }
  article .read-text {
    margin: 28px 0;
    line-height: 32px;
  }
  article .main-01,
  article .main-02 {
    margin-bottom: 28px;
  }
  .point {
    padding: 12px 8px;
    background: #FFF5EA;
  }
  .point p {
    padding-left: 6px;
    font-size: 21px;
  }
  .point ul {
    margin: 8px 0;
  }
  .point li {
    margin: 8px;
    padding: 6px 0;
  }
  .paragraph h2 {
    border-left: solid 6px #e8440b;/*左線*/
    margin-bottom: 21px;
    font-size: calc(28vw / 768 * 100);
  }
  .paragraph h3 {
    font-size: calc(20vw / 768 * 100);
  }
}

@media (max-width: 425px) {
  header .header_cv {
    font-size: calc(14vw / 425 * 100);
  }
  h1 {
    font-size: calc(26vw / 425 * 100);
  }
  .paragraph h2 {
    font-size: calc(24vw / 425 * 100);
  }
  .paragraph h3 {
    font-size: calc(20vw / 425 * 100);
  }
}

.markerLine {
  text-shadow: 0 3px 5px rgba(253, 179, 28, .5);  /* にじんだ感じを出す */
  line-height: normal;  /* 可変文字サイズ取得やクロスブラウザのため！ */
  font-weight: bold;
  background: linear-gradient(rgba(0,0,0,0) 60%, rgba(253, 179, 28, .5) 0);
}
.markerLine::before, .markerLine::after {
  display: inline-block;  /* 高さを持たせるため */
  content: "\A";     /* 改行を入れて高さを発生させる */
  white-space: pre;  /* 改行を入れて高さを発生させる */
  /*width: 0.41em;  始終点の傾斜「平行四辺形」の幅 */
  width: 0.19em;/*傾斜角 70°→80°に変更*/
  clip-path: inset(1px 0); /* はみ出し部分をトリミング */
  transform-origin: bottom left;  /* トランスフォームの起点を左下隅に。重要！ */
  transform: skewX(-10deg) translateX(-0.19em);  /* 「平行四辺形」の幅の分ずらす */
  background: linear-gradient(rgba(0,0,0,0) 60%, rgba(253, 179, 28, .5) 0); /* 本要素と同じ指定 */
}
.markerLine::after {
  filter: blur(.03em);  /* 終端のにじみの演出 */
  transform: skewX(-10deg); /* マーカー右端の平行四辺形の移動は不要 */
  background: linear-gradient(rgba(0,0,0,0) 60%, rgba(232, 68, 11, .75) 0); /* 背景色の透明度を少し濃い目に */
}