@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#242424;
  --main-color3:#018ada;
  --main-color4:#e3f3ff;
  --main-color5:#dfdfdf;
  --main-color6:#fbbe06;
  --main-color7:#c2c2c2;
  --main-color8:#f77709;
  --main-color9:#53bd89;
  --main-color10:#50b0f4;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントディスプレイの設定*/
@font-face {
  font-family: "Roboto";
  src: url("roboto.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("notosansjp.woff2") format("woff2");
  font-display: swap;
}
/*フォントサイズを調整*/
/*影*/
/*グラデーション*/
/*--その他--*/
/*全体の調整*/
main.main-wrap {
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  main.main-wrap {
    padding-right: 0;
  }
}

/*文字デフォルト*/
div.ccm-page {
  height: 100vh;
}
div.ccm-page p {
  margin-bottom: 0.2em;
}
@media screen and (max-width: 540px) {
  div.ccm-page p {
    font-size: 0.9em;
  }
}

/*編集中のテキストブロックに余白を設ける*/
div.ccm-block-content-edit-inline textarea + div {
  padding: 5px;
}
div.ccm-block-content-edit-inline textarea + div table th, div.ccm-block-content-edit-inline textarea + div table td {
  min-width: 20px;
}

/*スマホのみ表示するクラス*/
.sp-only {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp-only {
    display: block;
  }
}

/*タブレット2以下のみ表示するクラス*/
.tb2-only {
  display: none;
}
@media screen and (max-width: 820px) {
  .tb2-only {
    display: block;
  }
}

/*スマホのみ非表示のクラス*/
@media screen and (max-width: 540px) {
  .pc-only {
    display: none;
  }
}

/*スタックを透過*/
.col-md-12 .ccm-custom-style-main {
  background-image: unset;
}

/*--カスタムクラス--*/
/*conctainerの幅調整*/
.container-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 540px) {
  .container-width {
    padding: 0 0;
  }
}

.container-width-s {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 540px) {
  .container-width-s {
    padding: 0 0;
  }
}

/*スマートフォンで上下反転*/
@media screen and (max-width: 540px) {
  .sp-column-reverse .row {
    flex-direction: column-reverse;
  }
}

/*PC中央寄せ、スマートフォン左寄せ*/
.pc-center-sp-left p {
  text-align: center;
}
@media screen and (max-width: 540px) {
  .pc-center-sp-left p {
    text-align: left;
  }
}
.pc-center-sp-left div {
  text-align: center;
}
@media screen and (max-width: 540px) {
  .pc-center-sp-left div {
    text-align: left;
  }
}

p.pc-center-sp-left {
  text-align: center;
}
@media screen and (max-width: 540px) {
  p.pc-center-sp-left {
    text-align: left;
  }
}

/*背景色*/
.bg-color-gray {
  position: relative;
  background-color: #f9f9f9;
  padding: 20px 20px;
  border: 1px solid var(--main-color5);
  z-index: 1;
}
@media screen and (max-width: 540px) {
  .bg-color-gray {
    padding: 10px 5px;
  }
}

.bg-color-white {
  position: relative;
  background-color: var(--main-color1);
  z-index: 1;
}

.img-center {
  text-align: center;
}

.relative {
  position: relative;
}

/*--カスタム：テキストブロック--*/
/*表デザインnormal*/
table.table_normal {
  border-collapse: collapse;
  width: 100%;
}
table.table_normal th, table.table_normal td {
  border-top: 1px solid var(--main-color5);
  border-bottom: 1px solid var(--main-color5);
  padding: 0.5em 0.25em;
  min-width: 5.5em;
}
@media screen and (max-width: 540px) {
  table.table_normal th, table.table_normal td {
    display: block;
    padding: 0.4em 0.4em;
    font-size: 0.9em;
  }
}
table.table_normal th {
  color: var(--main-color2);
  text-align: left;
  min-width: 25%;
  padding: 0.5em 0.5em 0.5em 1em;
}
@media screen and (max-width: 540px) {
  table.table_normal th {
    border-bottom: none;
    width: 100%;
    padding: 0.4em 0.4em;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 540px) {
  table.table_normal td {
    border-top: none;
    border-bottom: 1px solid var(--main-color5);
  }
}

/*表デザイン01*/
table.table_design01 {
  border-collapse: collapse;
  width: 100%;
}
table.table_design01 th, table.table_design01 td {
  border: 2px solid var(--main-color1);
  background-color: #f3f3f3;
  padding: 0.7em 1em;
}
@media screen and (max-width: 540px) {
  table.table_design01 th, table.table_design01 td {
    display: block;
    padding: 0.4em 0.4em;
    border: none;
    font-size: 0.9em;
  }
}
table.table_design01 th {
  background-color: var(--main-color3);
  color: var(--main-color1);
  font-weight: bold;
  text-align: center;
  width: 20%;
}
@media screen and (max-width: 540px) {
  table.table_design01 th {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  table.table_design01 td {
    border-bottom: 2px solid var(--main-color1);
  }
}

/*丸ul*/
ul.maru_ul {
  list-style: none;
  padding-left: 0.2em;
}
ul.maru_ul li {
  position: relative;
  padding-left: 1.1em;
}
@media screen and (max-width: 540px) {
  ul.maru_ul li {
    font-size: 0.9em;
  }
}
ul.maru_ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--main-color3);
  border-radius: 4px;
}

/*数字ol*/
ol.num_ol {
  list-style: none;
  counter-reset: listnum;
  padding-left: 0.3em;
}
ol.num_ol li {
  position: relative;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media screen and (max-width: 540px) {
  ol.num_ol li {
    font-size: 0.9em;
  }
}
ol.num_ol li::before {
  counter-increment: listnum;
  content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
  padding-right: 0.2em;
  color: var(--main-color3);
  vertical-align: baseline;
  font-size: 1.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 750;
}

/*webボタン*/
div.ccm-page a.webbtn {
  position: relative;
  display: inline-block;
  padding: 0.8em 1.25em;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--main-color1);
  background-color: var(--main-color6);
  outline: solid 1px var(--main-color1);
  outline-offset: -4px;
  transition: all 0.4s;
  z-index: 2;
}
div.ccm-page a.webbtn:hover {
  color: var(--main-color6);
  outline-color: var(--main-color6);
  background-color: var(--main-color1);
}

/*黄色マーカー*/
.yellow_marker {
  background: linear-gradient(transparent 60%, #fae6a0 60%);
}

/*フォント調整*/
.fontsize-12 {
  font-size: 1.2em;
}

/*見出し*/
div.ccm-page h1 {
  position: relative;
  text-align: center;
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 540px) {
  div.ccm-page h1 {
    font-size: 1.2em;
  }
}

div.ccm-page h2 {
  position: relative;
  font-size: 1.75em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 1px solid var(--main-color7);
  padding: 0.05em 0.1em 0.05em 0.55em;
  margin-left: -0.2em;
}
@media screen and (max-width: 540px) {
  div.ccm-page h2 {
    font-size: 1.5em;
  }
}
div.ccm-page h2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0.2em;
  width: 4px;
  height: calc(100% + 0.2em);
  background-color: var(--main-color3);
}
div.ccm-page h2.none {
  margin: 0;
  padding: 0;
  border: none;
}
div.ccm-page h2.none::after {
  display: none;
}

div.ccm-page h3 {
  border-left: 5px solid var(--main-color3);
  padding-left: 0.35em;
  font-size: 1.2em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h3 {
    font-size: 1.1em;
  }
}

div.ccm-page h4 {
  position: relative;
  display: table;
  color: var(--main-color3);
  padding: 0.25em 0em;
  font-size: 1.15em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h4 {
    font-size: 1.05em;
  }
}

div.ccm-page h5 {
  color: var(--main-color9);
  padding: 0.25em 0em;
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h5 {
    font-size: 1.05em;
  }
}

div.ccm-page h6 {
  position: relative;
  color: var(--main-color2);
  font-family: "Noto Serif JP", serif;
  padding: 1em 1.5em;
  font-size: 1.2em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0 0;
  text-align: center;
  pointer-events: auto;
  cursor: pointer;
  border-left: 2px solid var(--main-color3);
}
@media screen and (max-width: 540px) {
  div.ccm-page h6 {
    font-size: 1em;
  }
}

/*余白*/
.margin-pc100-sp50 {
  height: 100px;
}
@media screen and (max-width: 540px) {
  .margin-pc100-sp50 {
    height: 50px;
  }
}

/*header*/
header#org #header-box {
  display: flex;
}
header#org #header-box .header-logo {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
header#org #header-box .header-navi {
  width: 100%;
}
header#org #header-box .header-navi .global-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-right: 100px;
}
@media screen and (max-width: 540px) {
  header#org #header-box .header-navi .global-btn {
    display: none;
  }
}
header#org #header-box .header-navi .global-btn a > div {
  color: var(--main-color1);
  padding: 0.5em 1em;
  border: 1px solid transparent;
  transition: all 0.2s;
}
header#org #header-box .header-navi .global-btn a:hover > div {
  color: var(--main-color3);
  background-color: var(--main-color1) !important;
  border-color: var(--main-color10);
}

/*ハンバーガーメニュー（jsにて切り替え）*/
#hamburger-btn {
  position: fixed;
  display: block;
  width: 75px;
  height: 70px;
  top: 0;
  right: 0;
  caret-color: transparent;
  cursor: pointer;
  z-index: 100;
}
#hamburger-btn .box {
  position: relative;
  padding: 0 10px;
}
#hamburger-btn .box span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--main-color2);
  width: 55%;
}
#hamburger-btn .box span:nth-child(1) {
  top: 15px;
}
#hamburger-btn .box span:nth-child(2) {
  top: 23px;
}
#hamburger-btn .box span:nth-child(3) {
  top: 31px;
}
#hamburger-btn.active .box span:nth-of-type(1) {
  top: 18px;
  transform: translateX(-50%) translateY(6px) rotate(-45deg);
  width: 30%;
}
#hamburger-btn.active .box span:nth-of-type(2) {
  opacity: 0;
}
#hamburger-btn.active .box span:nth-child(3) {
  top: 30px;
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
  width: 30%;
}

#global-nav-area { /*グローバルナビ*/
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  overflow: hidden;
}
#global-nav-area.view {
  opacity: 1;
  pointer-events: all;
}
#global-nav-area.view .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color3);
  opacity: 0.4;
  z-index: 0;
}
#global-nav-area.view .global-nav {
  transform: translateX(0);
}
#global-nav-area .global-nav {
  position: relative;
  padding: 3%;
  padding-top: 100px;
  min-width: 25%;
  background-color: var(--main-color1);
  z-index: 1;
  transform: translateX(100%);
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 820px) {
  #global-nav-area .global-nav {
    padding-top: 80px;
  }
}
@media screen and (max-width: 540px) {
  #global-nav-area .global-nav {
    padding-right: 3%;
    padding-left: 3%;
    width: 100%;
  }
}
#global-nav-area .global-nav > ul {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  #global-nav-area .global-nav > ul {
    font-size: 1em;
  }
}
#global-nav-area .global-nav > ul > li {
  margin-bottom: 1em;
}
#global-nav-area .global-nav > ul > li a {
  display: block;
  min-width: 250px;
  text-decoration: none;
  color: var(--main-color2);
  font-weight: 700;
  padding: 0.5em 0.5em 0.5em 0.5em;
  transition: all 0.3s;
  z-index: 2;
  font-weight: 600;
}
#global-nav-area .global-nav > ul > li a:hover {
  color: var(--main-color1);
  background-color: var(--main-color9);
}

/*footer*/
footer {
  position: relative;
  z-index: 2;
  background-color: #f3f3f3;
}

#footer-box {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: max-content 1fr;
  padding: 70px 3% 80px 3%;
}
@media screen and (max-width: 540px) {
  #footer-box {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
#footer-box .footer-l {
  max-width: 350px;
}
@media screen and (max-width: 540px) {
  #footer-box .footer-l {
    max-width: none;
  }
}
#footer-box .footer-l .contact p {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  font-size: 0.95em;
}
#footer-box .footer-l .contact p a {
  font-size: 0.9em;
  color: #686868;
  transition: color 0.2s;
}
#footer-box .footer-l .contact p a:hover {
  color: var(--main-color3);
}
#footer-box .footer-r .site-map {
  padding-left: 20%;
}
@media screen and (max-width: 1600px) {
  #footer-box .footer-r .site-map {
    padding-left: 5%;
  }
}
@media screen and (max-width: 540px) {
  #footer-box .footer-r .site-map {
    padding-left: 0;
  }
}
#footer-box .footer-r .site-map ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #footer-box .footer-r .site-map ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 540px) {
  #footer-box .footer-r .site-map ul {
    grid-template-columns: 1fr;
  }
}
#footer-box .footer-r .site-map ul li {
  font-size: 0.92em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 540px) {
  #footer-box .footer-r .site-map ul li {
    font-size: 0.87em;
  }
}
#footer-box .footer-r .site-map ul li a {
  color: var(--main-color2);
  transition: color 0.2s;
}
#footer-box .footer-r .site-map ul li a:hover {
  color: var(--main-color3);
}

.footer-bottom {
  padding: 1em 0;
  font-size: 0.8em;
  background-color: var(--main-color2);
  color: var(--main-color1);
  text-align: center;
}

/*mv*/
.mv-area {
  position: relative;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(0deg, rgb(227, 243, 255), rgb(237, 247, 255));
}
.mv-area .main-img {
  position: relative;
  z-index: 5;
}
.mv-area .box {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 5;
  aspect-ratio: 22/13;
}
@media screen and (max-width: 480px) {
  .mv-area .box {
    aspect-ratio: 3/4;
  }
}
.mv-area .l {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  opacity: 0.4;
}
@media screen and (max-width: 540px) {
  .mv-area .l {
    display: none;
  }
}
.mv-area .r {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  opacity: 0.4;
}
@media screen and (max-width: 540px) {
  .mv-area .r {
    display: none;
  }
}

/*ページ内ナビ*/
#in-page-navi {
  background-color: #bbc3c7;
  background-repeat: repeat;
  background-size: 130px;
}
#in-page-navi .box {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
#in-page-navi .box a.item {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 1em 1em;
  background-color: var(--main-color1);
  transition: background-color 0.2s;
  border-left: 1px solid var(--main-color7);
}
@media screen and (max-width: 540px) {
  #in-page-navi .box a.item {
    padding: 0.5em 0.15em;
  }
}
#in-page-navi .box a.item.last {
  border-right: 1px solid var(--main-color7);
}
#in-page-navi .box a.item:hover {
  background-color: var(--main-color5);
}
#in-page-navi .box a.item:hover i {
  color: var(--main-color2);
}
#in-page-navi .box a.item i {
  display: block;
  color: var(--main-color3);
  transition: color 0.2s;
}

/*疑問・悩み*/
section.query {
  position: relative;
  padding: 50px 3%;
  background-color: var(--main-color10);
  background-image: linear-gradient(0deg, rgb(65, 146, 219), rgb(117, 193, 237));
}
@media screen and (max-width: 540px) {
  section.query {
    padding: 20px 2%;
  }
}
section.query::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f7f7f7;
  clip-path: polygon(0 0, 50% 38%, 100% 0, 100% 60%, 50% 98%, 0 60%);
  opacity: 0.75;
}
@media screen and (max-width: 540px) {
  section.query::before {
    clip-path: polygon(0 0, 50% 40%, 100% 0, 100% 60%, 50% 100%, 0 60%);
  }
}

.query-box {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--main-color1);
  border: solid 2px var(--main-color2);
  border-radius: 10px;
  overflow: hidden;
  background-image: linear-gradient(0deg, rgb(240, 247, 253), rgb(254, 255, 255) 23%, rgb(255, 255, 255));
  box-shadow: rgba(50, 50, 50, 0.1) 0px 3px 6px, rgba(50, 50, 50, 0.16) 0px 3px 6px;
}
.query-box .title {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  color: var(--main-color1);
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 15px 3%;
  background-color: #004166;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgb(5, 74, 113) 8px, rgb(5, 74, 113) 11px);
}
@media screen and (max-width: 540px) {
  .query-box .title {
    font-size: 1.1em;
    letter-spacing: 0.03em;
  }
}
.query-box ul {
  list-style: none;
  padding-left: 0;
  padding: 10px 3%;
}
@media screen and (max-width: 540px) {
  .query-box ul {
    padding-bottom: 0;
  }
}
.query-box ul li {
  display: inline-block;
  font-size: 1.05em;
  font-weight: 700;
  padding: 0.25em 1em;
  border-radius: 10px;
  background-color: var(--main-color5);
  margin-right: 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  .query-box ul li {
    font-size: 0.92em;
    padding: 0.25em 0.8em;
    letter-spacing: 0;
  }
}
.query-box ul li span {
  font-size: 1.1em;
  color: #dd4834;
}
@media screen and (max-width: 540px) {
  .query-box ul li span {
    font-size: 1.05em;
  }
}
.query-box .demerit {
  padding: 0px 3%;
}
.query-box .color-bg {
  padding: 10px 2%;
  border-radius: 0 0 10px 10px;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .query-box .color-bg {
    padding-top: 0;
  }
}

/*ポイント*/
.point-item {
  padding: 30px 3% 50px 3%;
  display: grid;
  grid-template-columns: 1fr 300px;
}
@media screen and (max-width: 820px) {
  .point-item {
    display: block;
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 820px) {
  .point-item .text-box {
    background-color: rgba(254, 255, 255, 0.6);
  }
}
.point-item .text-box .click-area {
  padding: 10px;
}
@media screen and (max-width: 820px) {
  .point-item .text-box .click-area {
    position: relative;
    border: 1px solid var(--main-color7);
    padding-right: 20px;
  }
  .point-item .text-box .click-area::after {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    color: var(--main-color6);
    top: 50%;
    right: 5px;
    font-size: 1.1em;
    font-weight: 900;
    transform: translate(0, -50%);
    transition: all 0.2s;
  }
}
.point-item .text-box .click-area .title {
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  .point-item .text-box .click-area .title {
    font-size: 1.15em;
    margin-bottom: 5px;
  }
}
.point-item .text-box .click-area .sub-title {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--main-color3);
}
@media screen and (max-width: 820px) {
  .point-item .text-box .click-area .sub-title {
    font-size: 1em;
  }
}
.point-item .text-box .info {
  padding: 10px;
  line-height: 1.7;
}
@media screen and (max-width: 820px) {
  .point-item .text-box .info {
    padding: 2px 10px;
    font-size: 0.9em;
    line-height: 1.5;
    height: 0;
    overflow: hidden;
    transition: all 0.2s;
    border: 1px solid var(--main-color7);
  }
}
@media screen and (max-width: 820px) {
  .point-item .img-box {
    height: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 820px) {
  .point-item.view .text-box .click-area::after {
    transform: translate(0, -50%) rotate(180deg);
  }
}
@media screen and (max-width: 820px) {
  .point-item.view .text-box .info {
    padding: 10px 10px;
    height: auto;
  }
}
.point-item.view .img-box {
  text-align: center;
}
@media screen and (max-width: 820px) {
  .point-item.view .img-box {
    height: auto;
  }
}

/*カード(タイトル・アイコン・説明)*/
.card-area {
  padding: 20px 3%;
}
.card-area .card-box {
  max-width: 820px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .card-area .card-box {
    grid-template-columns: 1fr 1fr;
  }
}
.card-area .card-box .item {
  padding: 20px 5%;
  background-color: var(--main-color1);
  border-radius: 10px;
  min-height: 140px;
  box-shadow: rgba(50, 50, 50, 0.1) 0px 3px 6px, rgba(50, 50, 50, 0.16) 0px 3px 6px;
}
.card-area .card-box .item .title {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .card-area .card-box .item .title {
    font-size: 0.9em;
  }
}
.card-area .card-box .item .desc {
  font-size: 0.9em;
}
@media screen and (max-width: 540px) {
  .card-area .card-box .item .desc {
    font-size: 0.82em;
  }
}
.card-area .card-box .item .desc a {
  display: block;
}

/*実績のテーブル（記事ブロック）*/
.result-table table {
  max-width: 620px;
  margin: 0 auto;
}
.result-table table tbody tr {
  display: grid;
  grid-template-columns: 140px max-content 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  .result-table table tbody tr {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 2px dotted var(--main-color10);
    margin-bottom: 8px;
    font-size: 0.9em;
    padding: 0 3%;
    padding-bottom: 5px;
  }
}
.result-table table tbody tr td:first-child {
  text-align: center;
}
.result-table table tbody tr td:first-child span {
  display: inline-block;
  padding: 0.08em 0.5em 0.1em 0.5em;
  min-width: 150px;
  color: white;
}
@media screen and (max-width: 820px) {
  .result-table table tbody tr td:first-child span {
    text-align: center;
  }
}
@media screen and (max-width: 820px) {
  .result-table table tbody tr td:first-child {
    text-align: left;
    grid-column: 1/3;
  }
}
.result-table table tbody tr td:nth-child(2) {
  text-align: left;
  min-width: 270px;
  padding-left: 3em;
}
@media screen and (max-width: 820px) {
  .result-table table tbody tr td:nth-child(2) {
    min-width: 200px;
    padding-left: 0;
    min-width: none;
    text-align: left;
  }
}
.result-table table tbody tr td:nth-child(2) a {
  position: relative;
}
.result-table table tbody tr td:nth-child(2) a::after {
  position: absolute;
  top: 50%;
  left: 100%;
  font-weight: 900;
  content: "\f030";
  font-family: "Font Awesome 5 Free";
  transform: translate(0, -50%);
}
.result-table table tbody tr td:nth-child(3) {
  text-align: left;
  padding-left: 1em;
}
.result-table table tbody tr:last-child {
  border-bottom: none;
}

/*料金表のテーブル*/
.price-table table {
  width: 100%;
  border-top: 1px solid #BBBBBB;
  border-left: 1px solid #BBBBBB;
}
.price-table table tbody tr th, .price-table table tbody tr td {
  padding: 0.25em 0.3em;
  font-size: 1em;
  font-weight: 450;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 1px solid #BBBBBB;
  border-right: 1px solid #BBBBBB;
}
@media screen and (max-width: 820px) {
  .price-table table tbody tr th, .price-table table tbody tr td {
    font-size: 0.9em;
    display: block;
  }
}
.price-table table tbody tr th {
  width: 250px;
  background-color: var(--main-color5);
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .price-table table tbody tr th {
    width: 100%;
  }
}
.price-table table tbody tr td {
  background-color: var(--main-color1);
}

/*アコーディオンブロックを調整（FAQ）*/
.org_accordion .accordion-header .accordion-button {
  font-weight: unset;
  color: var(--main-color3);
  background-color: unset;
  box-shadow: unset;
  border-left: 3px solid var(--main-color1);
}
.org_accordion .accordion-header .accordion-button[aria-expanded=false] {
  border-color: var(--main-color1) !important;
}
.org_accordion .accordion-header .accordion-button[aria-expanded=true] {
  border-color: unset;
  box-shadow: unset;
  border-left: 3px solid var(--main-color3) !important;
}
.org_accordion .accordion-header .accordion-button:focus {
  border-color: var(--main-color1);
  box-shadow: unset;
}
.org_accordion .accordion-item:first-child .accordion-button {
  border-left: 3px solid var(--main-color3);
}

/*スクロールバーを表示*/
.table_box {
  overflow: auto;
  display: block;
}
.table_box::-webkit-scrollbar {
  width: 10px; /* スクロールバーの幅 */
  height: 10px; /* スクロールバーの高さ */
}
.table_box::-webkit-scrollbar-thumb {
  background: #888; /* スクロールバーの操作部分の背景色 */
  border-radius: 5px; /* 角丸にする */
}
.table_box::-webkit-scrollbar-thumb:hover {
  background: #555; /* ホバー時のスクロールバーの操作部分の背景色*/
}

/*フロー*/
.flow-box {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  max-width: -moz-min-content;
  max-width: min-content;
  margin: 0 auto;
}
.flow-box .item {
  position: relative;
  min-width: 180px;
  border: 3px solid var(--main-color3);
  border-left: none;
  border-right: none;
  padding: 15px 12px 10px 15px;
  background-color: var(--main-color1);
  text-align: center;
}
@media screen and (max-width: 540px) {
  .flow-box .item {
    background-color: rgba(254, 255, 255, 0.9);
  }
}
.flow-box .item::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1px;
  width: 2px;
  height: 70%;
  transform: translate(0, -50%);
  border-right: 2px dotted var(--main-color10);
}
.flow-box .item:last-child::before {
  display: none;
}
.flow-box .item > span {
  position: absolute;
  top: 10px;
  left: 15px;
  color: var(--main-color9);
  font-size: 1.6em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.flow-box .item > p.title {
  font-weight: 750;
  text-align: center;
  margin-bottom: 0.5em;
}
.flow-box .item > p.info {
  font-size: 0.95em;
  text-align: left;
}

/*コンバージョンボタン*/
a.btn_06 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: auto;
  margin: auto;
  padding: 0.7rem 1rem;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 100vh;
  border-bottom: 5px solid #db6b08;
  background: var(--main-color8);
  color: var(--main-color1) !important;
}
@media screen and (max-width: 540px) {
  a.btn_06 {
    padding: 0.5rem 0.9rem;
    font-size: 1.1em;
  }
}
a.btn_06:hover {
  margin-top: 4px;
  border-bottom: 1px solid #db6b08;
  color: var(--main-color1);
}

a.btn_07 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: auto;
  margin: auto;
  padding: 0.7rem 1rem;
  font-size: 1.3em;
  font-weight: 600;
  border-radius: 100vh;
  border-bottom: 5px solid #338f0e;
  background: #3eaf12;
  color: var(--main-color1) !important;
  font-family: "Roboto";
}
@media screen and (max-width: 540px) {
  a.btn_07 {
    padding: 0.5rem 0.9rem;
    font-size: 1.2em;
  }
}
a.btn_07:hover {
  margin-top: 4px;
  border-bottom: 1px solid #338f0e;
  color: var(--main-color1);
}

/*コンバージョンエリア*/
section.conversion-area {
  padding: 25px 0;
  background-color: #004166;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgb(5, 74, 113) 8px, rgb(5, 74, 113) 11px);
}
section.conversion-area .box {
  max-width: 650px;
  margin: 0 auto;
}
section.conversion-area .box .btn-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 10px;
  margin: 0 auto;
  padding-bottom: 15px;
  padding: 0 3%;
  margin-bottom: 5px;
}
@media screen and (max-width: 540px) {
  section.conversion-area .box .btn-box {
    grid-template-columns: 1fr !important;
  }
}
section.conversion-area .box .btn-box a {
  width: 100%;
  max-width: 350px;
}
section.conversion-area .box .info {
  padding-top: 0.5em;
  text-align: center;
}
section.conversion-area .box .info p {
  color: var(--main-color1);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 540px) {
  section.conversion-area .box .info p {
    font-size: 0.9em;
  }
}

/*◇採用情報ページ*/
#myCanvas {
  position: fixed;
  top: 100px;
  right: 5%;
  z-index: 0;
}
@media screen and (max-width: 1600px) {
  #myCanvas {
    right: 0;
  }
}
@media screen and (max-width: 820px) {
  #myCanvas {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 540px) {
  #myCanvas {
    top: 120px;
  }
}

.recruit-text-area {
  position: relative;
  z-index: 2;
  top: 0;
  left: 12%;
  max-width: 1200px;
  padding-right: 14%;
}
@media screen and (max-width: 1600px) {
  .recruit-text-area {
    left: 0;
    padding-right: 2%;
    padding-left: 2%;
  }
}

.recruit-catch-copy {
  padding-top: 50px;
}
@media screen and (max-width: 1600px) {
  .recruit-catch-copy {
    padding-top: 0px;
  }
}
@media screen and (max-width: 540px) {
  .recruit-catch-copy {
    padding-top: 30px;
    padding-bottom: 130px;
  }
}

/*採用情報ページ用の見出し*/
.recruit-h {
  margin-bottom: 40px;
}
.recruit-h .eng {
  font-size: 2.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--main-color1);
  font-family: "Kalam", cursive;
}
.recruit-h .jp {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--main-color3);
}

/*あいさつ*/
.greeting {
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 540px) {
  .greeting {
    font-size: 0.95em;
  }
}

/*特徴・強味*/
.recruit-info-box {
  max-width: 1000px;
}
.recruit-info-box tr.flex-box {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 50px;
  gap: 5px;
}
@media screen and (max-width: 540px) {
  .recruit-info-box tr.flex-box {
    display: block;
    margin-bottom: 30px;
  }
}
.recruit-info-box tr.flex-box th.num {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  color: var(--main-color9);
  font-size: 4em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 540px) {
  .recruit-info-box tr.flex-box th.num {
    font-size: 2em;
    display: block;
  }
}
.recruit-info-box tr.flex-box td.bold {
  grid-column-start: 2;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-bottom: 1px solid var(--main-color2);
}
@media screen and (max-width: 820px) {
  .recruit-info-box tr.flex-box td.bold {
    font-size: 1.5em;
    display: block;
  }
}
.recruit-info-box tr.flex-box td.normal {
  padding-top: 10px;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 540px) {
  .recruit-info-box tr.flex-box td.normal {
    font-size: 0.9em;
    display: block;
  }
}

/*レガシーフォーム調整*/
.org_legacyform .form-group {
  margin-bottom: 20px !important;
}
.org_legacyform .form-group label span.text-muted {
  opacity: 1;
  font-size: 0.8em;
  color: var(--main-color1);
  padding: 0.15em 0.5em 0.25em 0.5em;
  background-color: var(--main-color10);
}
.org_legacyform input[type=submit] {
  background-color: var(--main-color10);
  border-color: var(--main-color10);
}
.org_legacyform input[type=submit]:focus {
  border-color: var(--main-color10);
}
.org_legacyform .checkboxList {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 540px) {
  .org_legacyform .checkboxList {
    display: block;
  }
}
.org_legacyform .checkboxList .form-check {
  margin-right: 1.5em;
}/*# sourceMappingURL=eleven_house4.css.map */