/* ----------------------------- */
/* common.css */
/* ----------------------------- */

:root{
  scroll-padding: 0;
  scroll-behavior: smooth;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --wrap-width: calc(100vw - 300px - 120px);
  --wrap-width-sp: calc(100vw - 60px);
  --main-color: #005BAC;
}
body {
  font-family: "Noto Sans JP", 'Hiragino Sans', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-feature-settings:"palt";
}
@media screen and (max-width: 1260px) {
}

img {
  width: 100%;
  vertical-align: bottom;
}

h2 {
  font-size: 48px;
  font-weight: var(--font-bold);
  color: var(--main-color);
  margin-bottom: 40px;
}
h3 {
  font-size: 24px;
  font-weight: var(--font-bold);
}
h4 {
  font-size: 20px;
  font-weight: var(--font-bold);
}
@media screen and (max-width: 1260px) {
  h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 760px) {
  h2 {
    font-size: 24px;
    margin-bottom: 24px;
    margin-left: 1em;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 16px;
  }
}

p {
  font-size: 16px;
  font-weight: var(--font-regular);
  color: #000;
  line-height: 2;
}
@media screen and (max-width: 760px) {
  p {
    font-size: 14px;
  }
}

a {
  display: block;
  text-decoration: none;
  color: #000;
}
.download-link a {
  text-decoration: underline;
  color: var(--main-color);
  padding-left: 1.5em;
  position: relative;
  width: fit-content;
}
.download-link a::before {
  content: "";
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 9px;
}
.download-link a:hover {
  text-decoration: none;
}
.download-link.pdf a::before {
  background-image: url(../img/icon_pdf.svg);
}
.download-link.word a::before {
  background-image: url(../img/icon_word.svg);
}
ul li,
ol li {
  list-style: none;
  line-height: 2;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* table
----------------------------- */
table {
  border-collapse: collapse;
  margin: 10px 0 20px;
}
table caption {
  font-size: 18px;
  font-weight: var(--font-bold);
  color: var(--main-color);
  text-align: left;
}
table th,
table td {
  border: 1px solid #C7D0D5;
  padding: 0.2em 0.5em;
  font-size: 16px;
  line-height: 1.5;
}
table thead {
  background: #E6EFF7;
}
table thead th,
table thead td {
  font-weight: 500;
}
table tbody th {
  text-indent: -1em;
  padding-left: 1.5em;
  font-weight: var(--font-regular);
}
table th.align_center,
table td.align_center {
  text-align: center;
}
table tbody tr:nth-child(even) {
  background: #E6EBEE66;
}
@media screen and (max-width: 760px) {
  .scroll-table {
    overflow-x: auto;
  }
  table {
    min-width: 650px;
  }
  table caption {
    font-size: 16px;
  }
  table th,
  table td {
    font-size: 14px;
  }
}

/* margin調整
----------------------------- */
.mt30 {
  margin-top: 30px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}

.mb40 {
  margin-bottom: 40px;
}
.mb100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .mt60 {
    margin-top: 30px;
  }
  .mt50 {
    margin-top: 20px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
}


/* ----------------------------- */
/* .l-header */
/* ----------------------------- */
.l-header {
  width: 300px;
  min-width: 300px;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px 40px;
  z-index: 100;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (max-width: 1260px) {
  .l-header {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    background: none;
    box-shadow: none;
    position: static;
  }
}
/* .l-header__logo
----------------------------- */
.l-header__logo {
  width: 220px;
  margin-top: 15px;
}
.l-header__logo.for_sp {
  display: none;
}
@media screen and (max-width: 1260px) {
  .l-header__logo {
    width: 180px;
    margin-top: 0 ;
  }
  .l-header__logo.for_sp {
    display: block;
    width: 220px;
    position: absolute;
    top: 20px;
    left: 40px;
  }
}
@media screen and (max-width: 760px) {
  .l-header__logo {
    width: 160px;
    margin-top: 0 ;
  }
  .l-header__logo.for_sp {
    width: 160px;
    top: 10px;
    left: 10px;
  }
}

/* .l-header__nav
----------------------------- */
.l-header__nav > ul {
  padding: 30px 0;
}
.l-header__nav ul li {
  padding: 10px 0;
}
.l-header__nav > ul > li {
  padding-left: 33px;
  position: relative;
}
.l-header__nav > ul > li::before {
  content: "";
  width: 25px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 19px;
  left: 0;
}
.l-header__nav .overview::before {
  background-image: url(../img/icon_file.svg);
}
.l-header__nav .example::before {
  background-image: url(../img/icon_building.svg);
}
.l-header__nav .flow::before {
  background-image: url(../img/icon_list.svg);
}
.l-header__nav .howto::before {
  background-image: url(../img/icon_pen.svg);
}
.l-header__nav .faq::before {
  background-image: url(../img/icon_question.svg);
}
.l-header__nav .contact::before {
  background-image: url(../img/icon_paper-plane.svg);
}
.l-header__nav a {
  font-size: 18px;
  font-weight: var(--font-medium);
  width: fit-content;
}

/* .children */
.l-header__nav ul.children {
  padding: 0;
  padding-left: 1em;
}
.l-header__nav ul.children li {
  list-style-type: disc;
  padding: 6px 0;
}
.l-header__nav ul.children li a {
  font-size: 14px;
}

/* .p-hamburger__button */
.p-hamburger__button {
  display: none;
}

/* .p-mask */
.p-mask {
  display: none;
  background-color: rgba(0, 0, 0, .2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 90;
}
.p-mask.is-open {
  display: block;
}

/* .l-header__nav-student 
----------------------------- */
.l-header__nav_wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.l-header__nav-student {
  width: 100%;
  margin-top: auto;
  vertical-align: bottom;
}
.l-header__nav-student div {
  padding: 20px 0;
  border-top: 1px solid #E5E5E7;
  width: 100%;
}
.l-header__nav-student a {
  text-align: center;
  margin: auto;
}
.l-header__nav-student p {
  font-size: 16px;
  font-weight: var(--font-regular);
  padding-left: 38px;
  position: relative;
  width: fit-content;
  text-align: center;
  margin: auto;
}
.l-header__nav-student p::before {
  content: "";
  width: 25px;
  height: 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_user.svg);
  position: absolute;
  top: 8px;
  left: 0;
}

/* .l-header__nav （タブレット・スマホ）
----------------------------- */
@media screen and (max-width: 1260px) {
  /* .p-hamburger__button
  ----------------------------- */
  .p-hamburger__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    z-index: 110;
    position: fixed;
    top: 10px;
    right: 10px;
  }
  .p-hamburger__button img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .p-hamburger__button .icon_hamburger {
    width: 28px;
  }
  .p-hamburger__button .icon_close {
    width: 24px;
    display: none;
  }

  /* .l-header__nav_wrap
  ----------------------------- */
  .l-header .l-header__nav_wrap {
    position: fixed;
    top: 0;
    left: -100%;
    opacity: 0;
    width: 300px;
    height: 100dvh;
    max-height: 100dvh;
    background: #fff;
    padding: 35px 40px;
    z-index: 100;
    transition: 0.5s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .l-header__nav ul {
    padding: 76px 0 30px;
  }
  .l-header .l-header__nav_wrap.is-open {
    left: 0;
    opacity: 1;
  }
  .l-header .l-header__nav_wrap li a {
  }
}
@media screen and (max-width: 760px) {
  .l-header .l-header__nav_wrap {
    width: 100%;
    box-shadow: none;
    height: auto;
    max-height: 100dvh;
    padding-bottom: 0;
    padding: 30px 30px 0;
    top: -100%;
    left: 0;
  }
  .l-header .l-header__nav_wrap.is-open {
    top: 0;
  }
  .l-header__nav > ul {
    padding: 60px 0 30px;
  }
  .l-header__nav a {
    font-size: 16px;
  }
  .l-header__nav > ul > li {
    padding-left: 38px;
  }
  .l-header__nav > ul > li::before {
    top: 17px;
  }
  .l-header__nav-student a {
    text-align: left;
    margin: 0;
  }
}


/* ----------------------------- */
/* .banner
/* ----------------------------- */
.banner {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 330px;
  border-radius: 5px;
  background: #F2CE6C;
  transition: 0.5s ease;
  z-index: 50;
  transition: transform .2s cubic-bezier(0.45, 0, 0.55, 1), bottom 0.5s ease;
}
.banner:hover {
  transform: translateY(-5px);
}
.banner > a > div {
  padding: 15px;
}
.banner .flex {
  justify-content: start;
}
.banner .banner-img {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  background: #fff;
  display: flex;
  justify-content: center;
}
.banner .banner-img img {
  width: 45px;
}
.banner p {
  font-size: 14px;
  line-height: 1.5;
  color: #605045;
}
.banner p.bold {
  font-size: 16px;
  font-weight: var(--font-bold);
  color: #222;
}
@media screen and (max-width: 760px) {
  .banner {
    bottom: 0;
    right: 0;
    width: 100vw;
    border-radius: 0;
  }
  .banner .flex {
    justify-content: center;
    align-items: center;
  }
  .banner > a > div {
    padding: 6px;
  }
  .banner .banner-img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  .banner .banner-img img {
    width: 28px;
  }
  .banner p {
    font-size: 10px;
  }
  .banner p.bold {
    font-size: 12px;
  }
  .banner p.bold br {
    display: none;
  }
}


/* ----------------------------- */
/* .l-main-contet （右側）
/* ----------------------------- */
.l-main-contet {
  width: calc(100% - 300px);
  margin-left: 300px;
}
@media screen and (max-width: 1260px) {
  .l-main-contet {
    width: 100%;
    margin-left: 0;
  }
}


/* ----------------------------- */
/* .l-main */
/* ----------------------------- */
.l-main {
}

/* .l-main__section
----------------------------- */
.l-main__section {
  position: relative;
}
.l-main__section.bg-wh {
  background: #fff;
}
.l-main__section.bg-bl {
  background: #E6EBEE;
}
.l-main__section::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
}
.l-main__section.bg-wh::before {
  border-top: 60px solid #E6EBEE;
  border-right: 60px solid var(--main-color);
}
.l-main__section.bg-bl::before {
  border-top: 60px solid #fff;
  border-right: 60px solid var(--main-color);
}
.l-main__section .wrap {
  padding: 80px 60px;
  max-width: calc(1280px + 120px);
  margin: auto;
}
.l-main__section.pd0 .wrap {
  padding: 0 60px;
}
@media screen and (max-width: 1260px) {
  .l-main__section .wrap {
    padding: 36px 4% 40px;
  }
  .l-main__section.pd0 .wrap {
    padding: 0 4%;
  }
  .l-main__section.bg-wh::before {
    border-top: 30px solid #E6EBEE;
    border-right: 30px solid var(--main-color);
  }
  .l-main__section.bg-bl::before {
    border-top: 30px solid #fff;
    border-right: 30px solid var(--main-color);
  }
}

/* .keyvisual
----------------------------- */
.keyvisual {
  position: absolute;
  top: 0;
  z-index: -100;
}

/* .top_logo
----------------------------- */
.l-main__section.top_logo .wrap {
  padding-top: 20px;
}
.flex_top {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 36px;
}
.top_logo .logo_action {
  width: 120px;
}
.top_logo .logo_cci {
  width: 230px;
}

@media screen and (max-width: 1260px) {
  .l-main__section.top_logo .wrap {
    padding-top: 10px;
  }
  .flex_top {
    gap: 20px;
  }
  .top_logo .logo_action {
    width: 80px;
  }
  .top_logo .logo_cci {
    width: 154px;
  }
}
@media screen and (max-width: 760px) {
  .flex_top {
    gap: 17px;
    margin-bottom: 10px;
  }
  .top_logo .logo_action {
    width: 56px;
  }
  .top_logo .logo_cci {
    width: 104px;
  }
}

/* .copy
/* .description
----------------------------- */
.copy .wrap > *,
.description .wrap > * {
  transform: rotate(-7.5deg) skewX(-7deg);
  width: fit-content;
}
.copy_title {
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.2;
  font-size: 80px;
  font-weight: var(--font-semibold);
  color: #EB7100;
  margin: 0.1em 0 0.3em
}
.copy_text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 24px;
  line-height: 2.25;
  letter-spacing: 0.15em;
  font-weight: var(--font-extrabold);
  color: #EB7100;
  margin-bottom: 1em;
}
.l-main__section.description .wrap {
}
.description_title {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: var(--font-bold);
  color: #fff;
  background: #EB7100;
  width: fit-content;
  border-radius: 0 20px 0 0;
  padding: 0.25em 0.5em 0.3em;
}
.description_title:nth-child(2) {
  margin-top: -0.3em;
}
.description_text {
  font-size: 22px;
  line-height: 2.5;
  letter-spacing: 0.1em;
  font-weight: var(--font-semibold);
  margin-top: 1.5em;
}
.overview_pdf {
  margin-top: calc(var(--wrap-width) * 0.05);
}
.overview_pdf a {
  width: fit-content;
  transition: 0.3s all;
}
.overview_pdf a:hover {
  transform: translateY(-5px);
}
.overview_pdf .flex {
  justify-content: center;
  gap: 10px;
  padding: 5px 20px;
  border-radius: 5px;
  border: 1px solid #EB7100;
}
.overview_pdf .icon_download {
  width: 16px;
}
.overview_pdf p {
  line-height: 1.8;
}

@media screen and (max-width: 1920px) and (min-width: 1260.1px) {
  .copy_title {
    font-size: calc(var(--wrap-width) * 0.06);
    font-size: min(calc(var(--wrap-width) * 0.06), 80px);
  }
  .copy_text {
    font-size: calc(var(--wrap-width) * 0.018);
  }
  .description_title {
    font-size: calc(var(--wrap-width) * 0.037);
    font-size: min(calc(var(--wrap-width) * 0.037), 48px);
  }
  .description_text {
    font-size: calc(var(--wrap-width) * 0.017);
    font-size: min(calc(var(--wrap-width) * 0.017), 22px);
  }
}
@media screen and (max-width: 1260px) {
  .copy_title {
    font-size: max(calc(var(--wrap-width-sp) * 0.06), 24px);
  }
  .copy_text {
    font-size: max(calc(var(--wrap-width-sp) * 0.018), 12px);
  }
  .description_title {
    font-size: max(calc(var(--wrap-width-sp) * 0.037), 18.5px);
  }
  .description_text {
    font-size: max(calc(var(--wrap-width-sp) * 0.017), 12px);
  }
  .overview_pdf {
    margin-top: calc(var(--wrap-width-sp) * 0.06);
  }
}
@media screen and (max-width: 760px) {
  .description .wrap > * {
    transform: rotate(0) skewX(0);
  }
  .description_title {
    border-radius: 0 10px 0 0;
  }
  .description_title:nth-child(1) {
    margin-top: 2em;
  }
  .description_title:nth-child(2) {
    margin-top: 0;
  }
  .description_text {
    margin-top: 0.5em;
  }
  .description_text br {
    display: none;
  }
  .overview_pdf {
    margin-top: 15px;
  }
  .overview_pdf .icon_download {
    width: 12px;
  }
  .overview_pdf p {
    font-size: 12px;
  }
}


/* ----------------------------- */
/* .c-card
/* ----------------------------- */
.c-card {
  padding: 40px;
  border-radius: 10px;
  background: #fff;
  margin: 40px 0;
}
.c-card:last-child {
  margin-bottom: 0;
}
.bg-wh .c-card {
  border: 1px solid #C7D0D5;
}
.c-card h3 {
  background: var(--main-color);
  color: #fff;
  line-height: 2;
  padding: 0 17px;
  border-radius: 10px;
  margin-bottom: 33px;
}
.c-card > h4 {
  color: #000;
  line-height: 1.5;
  padding: 12px 20px;
  border-bottom: 1px solid var(--main-color);
  width: fit-content;
  margin: 15px 0;
}
.c-card ol {
  margin: 10px 0;
  counter-reset: cnt;
}
.c-card ol li {
  position: relative;
  padding-left: 2.2em;
  counter-increment: cnt;
  margin-bottom: 0.8em;
}
.c-card ol li::before {
  content: "（" counter(cnt) "）";
  color: var(--main-color);
  font-weight: var(--font-bold);
  position: absolute;
  left: 0;
  line-height: 1.6;
}
.c-card ol li p {
  line-height: 1.6;
}
.c-card ul {
  margin: 10px 0;
}
.c-card ul li {
  position: relative;
  padding-left: 1.3em;
  line-height: 2;
  font-size: 16px;
}
.c-card ul li::before {
  content: "●";
  color: var(--main-color);
  font-size: 1em;
  font-weight: var(--font-bold);
  position: absolute;
  left: 0;
}
.c-card ol:last-child,
.c-card ul:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 760px) {
  .c-card {
    padding: min(4vw, 20px);
    margin: 20px 0;
  }
  .c-card h3 {
    padding: 0 17px;
    margin-bottom: 15px;
  }
  .c-card > h4 {
    padding: 8px 12px;
    margin: 10px 0;
  }
  .c-card ul li {
    font-size: 14px;
  }
}


/* .merit
----------------------------- */
.merit h2 {
  font-size: min(3vw, 48px);
  color: #EB7100;
  text-align: center;
}
.merit h2 span {
  font-size: 1.3em;
  padding: 0 0.5em;
}

/* .img_merits */
.flex.img_merits {
  margin: 40px 0;
}
.flex.img_merits > * {
  width: 48%;
}
.img_merits .merit-card {
  background: linear-gradient(to bottom, #E6EBEE, #fff);
  border-radius: 10px;
  padding: 40px 20px;
  position: relative;
}
.merit-card .merit_title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: var(--font-bold);
  padding: 0.2em 0.8em;
  background: #EB7100;
  color: #fff;
  border-radius: 0 15px 0 0;
  transform: rotate(-7.5deg) skewX(-7deg);
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, .15);
  position: absolute;
  top: -1.2em;
  left: -1.2em;
}
.merit-card img {
  height: 200px;
  margin: 20px 0 40px;
}
.merit-card .merit_description {
  font-size: min(1.8vw, 36px);
  line-height: 1.5;
  font-weight: var(--font-bold);
  text-align: center;
}
.merit-card .merit_description > span {
  color: #EB7100;
}

/* .support_pattern */
.support_pattern {
  width: 100%;
  background: #fff;
  border: 10px solid #E6EFF7;
  border-radius: 10px;
  padding: 40px 20px;
}
.support_pattern p.support_pattern_title {
  font-size: 24px;
  font-weight: var(--font-bold);
  line-height: 1.5;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 1.5em;
}
.support_pattern .flex {
  justify-content: space-evenly;
}
.support_pattern .support_pattern_item {
  width: 38%;
}
.support_pattern .support_pattern_item h3 {
  margin-top: 2em;
  color: var(--main-color);
  font-size: 16px;
}
.support_pattern .support_pattern_item p a {
  display: inline;
  color: var(--main-color);
  text-decoration: underline;
}
.support_pattern .support_pattern_item p a:hover {
  text-decoration: none;
}
.support_pattern .support_pattern_item p:first-of-type {
  padding-top: 1em;
}
.support_pattern .support_line {
  width: 1px;
  border-right: 1px solid #C7D0D5;
}

@media screen and (max-width: 1260px) {
  .merit h2 {
    font-size: 30px;
  }
  .img_merits .merit-card {
    padding: 20px 10px 40px;
  }
  .merit-card img {
    height: 150px;
    margin: 10px 0 20px;
  }
  .merit-card .merit_description {
    font-size: min(2.6vw, 22px);
  }
}
@media screen and (max-width: 760px) {
  .merit h2 {
    font-size: min(4vw, 30px);
  }
  .flex.img_merits {
    margin-bottom: 20px;
    gap: 20px;
  }
  .flex.img_merits > * {
    width: 90%;
    max-width: 450px;
    margin: auto;
  }
  .merit-card .merit_title {
    font-size: 18px;
    border-radius: 0 10px 0 0;
  }
  .merit-card .merit_description {
    font-size: 18px;
  }
  .support_pattern {
    width: 100%;
    max-width: 600px;
    padding: 20px;
  }
  .support_pattern .flex > * {
    width: 100%;
    max-width: 380px;
    margin: auto;
  }
  .support_pattern p.support_pattern_title {
    font-size: 18px;
  }
  .support_pattern .support_pattern_item h3 {
    font-size: 14px;
  }
  .support_pattern .support_line {
    height: 1px;
    border-right: none;
    border-bottom: 1px solid #C7D0D5;
    margin: 30px 0;
  }
}

/* .overview
----------------------------- */
.c-card {
  position: relative;
}
.c-card-img {
  width: 120px;
  position: absolute;
  bottom: 0;
  right: 40px;
}
.overview .c-card:first-of-type .c-card-img {
  width: 170px;
}
.overview .c-card:nth-of-type(3) .c-card-img {
  bottom: 33px;
}
.overview .c-card .fig-margin {
  margin-right: 140px;
}
.overview .c-card:first-of-type .fig-margin {
  margin-right: 180px;
}
.overview_04 .flex > * {
  width: 31.5%;
  background: #E5F1F8;
  border-radius: 10px;
  text-align: center;
  padding: 30px 20px;
}
.overview_04 h4 {
  font-size: 24px;
  color: var(--main-color);
  margin-bottom: 10px;
}
.overview_04 p {
  line-height: 1.6;
}
.overview_04 p.number {
  font-size: 24px;
  font-weight: var(--font-extrabold);
  color: var(--main-color);
}
.overview_04 p.number span {
  font-size: 80px;
  font-weight: var(--font-bold);
}
.overview_04 p.description {
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
  text-align: left;
}
ul.flex-list {
  display: flex;
  justify-content: start;
  gap: 20px;
}
@media screen and (min-width: 1260.1px) {
  .overview_04 p.number {
    font-size: min(1.6vw, 24px);
  }
  .overview_04 p.number span {
    font-size: min(4.1vw, 80px);
  }
}
@media screen and (max-width: 1060px) {
  .overview .c-card-img {
    width: 80px;
  }
  .overview .c-card:first-of-type .c-card-img {
    width: 95px;
  }
  .overview .c-card .fig-margin {
    margin-right: 90px;
  }
  .overview .c-card:first-of-type .fig-margin {
    margin-right: 105px;
  }
  .overview_04 .flex > * {
    padding: 20px 15px;
  }
  .overview_04 p.number {
    font-size: 16px;
  }
  .overview_04 p.number span {
    font-size: 50px;
  }
}
@media screen and (max-width: 760px) {
  .overview .c-card-img {
    right: 20px;
  }
  .overview .c-card .fig-margin {
    margin-right: 0 !important;
  }
  .overview .c-card:nth-of-type(1),
  .overview .c-card:nth-of-type(2) {
    padding-bottom: 120px;
  }
  .overview .c-card:nth-of-type(3) {
    padding-bottom: 55px;
  }
  .overview .c-card:nth-of-type(3) .c-card-img {
    bottom: 17px;
  }
  ul.flex-list {
    display: block;
  }
  .overview_04 .flex > * {
    width: 100%;
    margin-bottom: 20px;
  }
  .overview_04 h4 {
    font-size: 20px;
    color: var(--main-color);
  }
}

/* .example
----------------------------- */
.company-list {
  margin: 30px 0 20px;
  gap: 40px;
  justify-content: start;
}
.company-list > * {
  width: 30%;
}
.company-card {
  height: 100%;
  border-radius: 20px;
  border: 1px solid #E6EBEE;
  box-shadow: 6px 6px 0 #E6EBEE;
  padding: 20px;
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.company-card:hover {
  transform: translateY(-5px);
}
.company-card .thumbnail {
  margin-bottom: 20px;
}
.company-card .thumbnail img {
  border-radius: 8px;
}
.company-card .name {
  font-size: 20px;
  font-weight: var(--font-bold);
  padding-left: 25px;
  position: relative;
}
.company-card .name::before {
  content: "▶";
  width: 20px;
  width: 20px;
  border-radius: 5px;
  background: var(--main-color);
  font-size: 10px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 10px;
  left: 0;
}
.company-card .category {
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #666;
}
.company-card .address {
  font-size: 16px;
}
@media screen and (max-width: 1260px) {
  /* カルーセル */
  .company-list {
    flex-wrap: nowrap;
    width: fit-content;
    padding-bottom: 10px;
    padding-right: 10px;
  }
  .company-list {
    width: 100%;
  }
  .company-list > * {
    width: 100%;
  }
  .company-card {
    width: 300px;
    margin: 10px 40px 10px 0;
  }
  .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  .slick-dots li button:before {
    content: "";
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #D9D9D9;
    border-radius: 50%;
  }
  .slick-dots li.slick-active button:before {
    background: var(--main-color);
    opacity: 1;
  }
}

/* .flow
----------------------------- */


/* .howto
----------------------------- */
.howto {
}
.howto ol .download-link a::before {
  top: 5px;
}
.c-submission {
  background: #F2F7FB;
  border-radius: 10px;
  padding: 28px;
}
.c-submission h4 {
  margin-bottom: 15px;
}
.c-submission p {
  line-height: 1.8;
}
.c-submission .address-box {
  border: 1px solid #000;
  padding: 15px 20px;
  width: fit-content;
  margin-top: 10px;
}
.flex.change_and_cancel {
  margin: 35px 0 40px;
  gap: 20px 15px;
}
.flex.change_and_cancel > * {
  width: 48.5%;
  border-radius: 10px;
  border: 10px solid #E6EFF7;
  padding: 15px;
}
.flex.change_and_cancel h4 {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 13px;
}
.flex.change_and_cancel h4::before {
  content: "●";
  color: var(--main-color);
  font-weight: var(--font-bold);
  position: absolute;
  left: -3px;
}
@media screen and (max-width: 760px) {
  .c-submission {
    padding: 15px;
  }
  .flex.change_and_cancel {
    margin: 20px 0;
  }
  .flex.change_and_cancel > * {
    width: 100%;
  }
}


/* .faq
----------------------------- */
.c-faq {
  padding: 40px 0;
  border-bottom: 1px solid #E6E6E6;
}
.c-faq:first-child {
  padding-top: 0;
}
.c-faq:last-of-type {
  margin-bottom: 35px;
}
.c-faq .faq-question {
  font-size: 24px;
  font-weight: var(--font-bold);
  line-height: 1.5;
  padding-left: 2.1em;
  margin-bottom: 18px;
  position: relative;
}
.c-faq .faq-question::before {
  content: "Q";
  text-align: center;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  top: 0;
}
.jasso-link {
  margin-top: 10px;
}
.jasso-link a {
  width: fit-content;
  transition: 0.3s all;
}
.jasso-link a:hover {
  transform: translateY(-5px);
}
.jasso-link .flex {
  justify-content: center;
  gap: 8px;
  padding: 10px 25px;
  border-radius: 5px;
  border: 1px solid #1CA79F;
}
.jasso-link .icon_newtab {
  width: 16px;
}
.jasso-link p {
  line-height: 1.2;
}
.jasso-link p:first-child {
  font-size: 10px;
}
.jasso-link p:last-child {
  font-size: 14px;
}
@media screen and (max-width: 760px) {
  .c-faq {
    padding: 15px 0;
  }
  .c-faq:last-of-type {
    margin-bottom: 20px;
  }
  .c-faq .faq-question {
    font-size: 14px;
    padding-left: 1.5em;
    margin-bottom: 10px;
  }
  .c-faq .faq-question::before {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    font-size: 10px;
    line-height: 1.3;
    top: 3px;
  }
  .jasso-link .flex {
    gap: 6px;
    padding: 10px 15px;
  }
}

/* .contact
----------------------------- */
.contact {
}
.contact p {
  line-height: 1.5;
}
.contact .wrap > .flex > div:first-child {
  width: 20%;
  margin: auto 0;
}
.contact-link {
  width: 38%;
  justify-content: center;
  align-items: center;
  background: #E6EBEE;
  border-radius: 10px;
  transition: 0.3s all;
}
.contact-link a {
  height: 100%;
}
.contact-link:hover {
  transform: translateY(-5px);
}
.contact-link .flex {
  height: 100%;
  padding: 20px 15px;
  justify-content: center;
  align-items: center;
  gap: 15px min(2vw, 30px);
}
.contact .reception {
  font-size: 24px;
  font-size: min(1.6vw, 24px);
  font-weight: var(--font-bold);
}
.contact .phone_number {
  font-size: 36px;
  font-size: min(2.4vw, 36px);
  font-weight: var(--font-bold);
}
.contact .reception_hours {
  font-size: 14px;
} 
.contact .email {
  font-size: 20px;
} 
.contact img {
  width: 55px;
}
@media screen and (max-width: 1260px) and (min-width: 760.1px) {
  .contact .wrap {
    /* banner分 */
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1260px) {
  .contact .wrap > .flex {
    flex-direction: column;
    gap: 25px;
  }
  .contact .wrap > .flex > * {
    width: 500px !important;
  }
  .contact .reception {
    font-size: 24px;
  }
  .contact .reception br {
    display: none;
  }
  .contact .phone_number {
    font-size: 36px;
  }
}
@media screen and (max-width: 760px) {
  .contact .wrap > .flex {
    gap: 15px;
  }
  .contact .wrap > .flex > * {
    width: 100% !important;
  }
  .contact-link .flex {
    padding: 15px;
  }
  .contact .reception {
    font-size: 14px;
  }

  .contact .phone_number {
    font-size: 24px;
  }
  .contact .reception_hours {
    font-size: 12px;
  } 
  .contact .email {
    font-size: 16px;
  } 
  .contact img {
    width: 38px;
  }
}


/* ----------------------------- */
/* .l-footer */
/* ----------------------------- */
.l-footer {
  position: relative;
}
.l-footer .wrap {
  padding: 0 40px 40px;
  max-width: calc(1280px + 80px);
  margin: auto;
}
.l-footer .l-footer__line {
  border-top: #E6EBEE 1px solid;
}
.l-footer .wrap > .flex {
  justify-content: start;
  gap: 30px;
}
.l-footer .wrap > .flex > * {
}
.l-footer .wrap > .flex > *:nth-child(1) {
}
.l-footer .wrap > .flex > *:nth-child(2) {
  margin-right: auto;
}
.l-footer .wrap > .flex > *:nth-child(3) {
  margin-left: auto;
}
.l-footer .kitakyushu a {
  margin-bottom: 12px;
}
.l-footer .logo_city {
  width: 128px;
}
.l-footer .logo_cci {
  width: 198px;
}
.l-footer .kitakyushu p {
  font-size: 12px;
  line-height: 1.8;
}
.l-footer .kitakyushu p.emphasis {
  font-size: 14px;
  letter-spacing: -0.055em;
}
.l-footer .shigomaru .flex {
  justify-content: end;
  margin-bottom: 20px;
  gap: 20px 35px;
}
.l-footer .l-footer__banner {
  width: 150px;
  height: 50px;
}
.l-footer .l-footer__banner.logo_shigomaru {
  background: #fff;
  border: 1px solid #E6EBEE;
}
.l-footer .l-footer__banner.logo_shigomaru_company {
  background: #428CC8;
}
.l-footer .l-footer__banner a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer .l-footer__banner img {
  display: block;
  height: 31px;
}
.l-footer .tel {
  display: flex;
}
.copyright {
  text-align: right;
  font-size: 12px;
}
@media screen and (max-width: 1400px) and (min-width: 1260.1px) {
  .l-footer .shigomaru .flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 1160px) {
  .l-footer .shigomaru {
    width: 100%;
    border-top: 1px solid #E6E6E6;
    padding-top: 20px;
    margin-top: -10px;
  }
  .l-footer .shigomaru .flex {
    justify-content: start;
  }
}
@media screen and (max-width: 760px) {
  .l-footer .wrap {
    padding: 0 4vw calc(10px + 52px);
    margin: auto;
  }
  .l-footer .wrap > .flex > *:nth-child(1),
  .l-footer .wrap > .flex > *:nth-child(2) {
    width: 100%;
  }
  .l-footer .shigomaru .flex {
    margin-bottom: 10px;
    gap: 20px;
  }
}


/* ----------------------------- */
/* .modal
/* ----------------------------- */
.modal-area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, .2);
  padding: 40px;
  z-index: 9999;
  overflow-y: scroll;
}
.modal-card {
  max-width: 1280px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  position: relative;
}
.modal-card h2 {
  font-size: 36px;
  line-height: 1.6;
  margin-bottom: 0;
}
.modal-card h3 {
  background: var(--main-color);
  color: #fff;
  line-height: 2; 
  padding: 0 17px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.modal-card .category_and_address {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.modal-card .category_and_address .category {
  color: #666;
  padding-right: 1em;
}
.modal-card .introduction {
  padding: 20px;
  border-radius: 10px;
  background: #E6EBEE;
  margin-bottom: 40px;
}
.modal-card .flex {
  gap: 20px;
}
.modal-card .flex:not(:last-child) {
  margin-bottom: 30px;
}
.modal-flex__text {
  width: calc(100% - 450px - 40px);
}
.modal-flex__img {
  width: 450px;
}
.modal-flex__img figcaption {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}
.modal-card .date {
  font-size: 14px;
  color: #666;
  text-align: right;
}

@media screen and (max-width: 1060px) {
  .modal-flex__text {
    width: 100%;
  }
  .modal-flex__img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 760px) {
  .modal-area {
    padding: 40px 4vw 30px;
  }
  .modal-card {
    padding: 20px 20px;
  }
  .modal-card h2 {
    font-size: 24px;
    margin-left: 0;
  }
  .modal-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .modal-card .category_and_address {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .modal-card .category_and_address .category {
    display: block;
  }
  .modal-card .introduction {
    padding: 10px;
    margin-bottom: 20px;
  }
  .modal-flex__img figcaption {
    font-size: 12px;
  }
}

/* .modal-close
----------------------------- */
.modal-close {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  top: -30px;
  right: -30px;
  cursor: pointer;
}
.modal-close img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 760px) {
  .modal-close {
    width: 40px;
    height: 40px;
    top: -20px;
    right: -20px;
  }
  .modal-close img {
    width: 16px;
    height: 16px;
  }
}