@charset "UTF-8";

/* root変数 */
:root {
  --color-black: #323232;
  --color-white: #FFF;
  --color-main: #51b33f;
  --color-sub: #fff;
  --color-back: #f6f6f6;
  --color-border: #d2d0d0;
  --fontSize-headline01: 2.25rem;
  --fontSize-headline02: 2rem;
  --fontSize-headline03: 1.5rem;
  --fontSize-headline04: 1.4375rem;
  --fontSize-subtitle: 1.1875rem;
  --fontSize-caption: .9rem;
  --lineHeight-headline: 1.5;
  --headerHeight: 80px;
  --shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 886px) {
  :root {
    --fontSize-headline01: 1.7rem;
    --fontSize-headline02: 1.3rem;
    --fontSize-headline03: 1.5rem;
    --fontSize-headline04: 1.4375rem;
    --fontSize-subtitle: 1.1875rem;
    --fontSize-caption: .9rem;
    --lineHeight-headline: 1.5;
    --headerHeight: 80px;
    --s
}
}

/* base */
html {
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", 'Meiryo, Osaka', "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: var(--color-black);
  line-height: 1.75;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--headerHeight);
}

a:hover {
  cursor: pointer;
}

.header_s {
  position: relative;
  border-bottom: solid 1px var(--color-border);
  height: auto;
}

main {
  /* margin-top: var(--headerHeight); */
}

footer {
  background: var(--color-black);
  color: var(--color-white);
}

a:hover {
  opacity: 0.5;
  transition: 0.4s;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: 700;
}

hr {
  margin-top: 80px;
  margin-bottom: 80px;
  color: var(--color-border);
}

summary::-webkit-details-marker {
  display: none;
}



/* layout */
.ly_cont {
  max-width: 1060px;
  padding: 80px 20px;
  margin: 0 auto;
  z-index: 1;
}

.ly_cont_top {
  max-width: 1500px;
  height: 750px;
  padding-top: var(--headerHeight);
  margin: 0 auto;
}

.ly_cont_s {
  max-width: 1060px;
  padding: 40px 20px;
  margin: 0 auto;
  z-index: 1;
}

.ly_cont_sup {
  max-width: 980px;
  margin: 50px auto 30px;
  padding: 0 10px;
}

.ly_cont_contact {
  max-width: 700px;
  margin: 50px auto 30px;
  padding: 0 10px;
}

.ly_table {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.ly_table tr {
  border: solid 1px var(--color-border);
}

.ly_table th,
td {
  padding: .8rem 1.5rem;
}

.ly_table th {
  background-color: var(--color-back);
}

.ly_row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.ly_row_main {
  width: 80%;
  margin: 0;
  padding-right: 30px;
}

.ly_row_side {
  width: 20%;
  position: -webkit-sticky;
  position: sticky;
  top: 5em;
}

.ly_row_side_ttl {
  border-top: 2px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding: 7px 10px;
}

.ly_row_side_list li {
  border-bottom: 1px dotted var(--color-black);
  padding: 7px 10px;
  font-size: 0.85em;
}

@media only screen and (max-width: 886px) {
  .ly_row_main {
    width: 100%;
    padding: 0;
  }

  .ly_row_side {
    width: 100%;
    padding-top: 20px;
  }

  .ly_cont_top {
  height: 380px;
}
}

.bl_row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.bl_col_2 {

}

.bl_col_item40 {
  width: 40%;
  margin-bottom: 20px;
  padding: 0 20px;
}

.bl_col_item60 {
  width: 60%;
  margin-bottom: 20px;
  padding: 0 20px;
}

.bl_col_item30 {
  width: 30%;
  margin-bottom: 20px;
}

.bl_col_item70 {
  width: 70%;
  margin-bottom: 20px;
  padding: 0 0 70px 50px;
}


.bl_col3>.bl_col_item {
  width: calc((100% - 50px) / 3);
  margin-right: 25px;
  margin-bottom: 25px;
}

.bl_col2>.bl_col_item {
  width: calc((100% - 50px) / 2);
  margin-right: 20px;
  margin-bottom: 20px;
}

.bl_col2>.bl_col_item:nth-child(2n) {
  margin-right: 0;
}

.bl_col3>.bl_col_item:nth-child(3n) {
  margin-right: 0;
}

.bl_col4>.bl_col_item {
  width: calc((100% - 45px) / 4);
  margin-right: 15px;
  margin-bottom: 20px;
  display: flex;
  flex: 1 0 auto; /* fix IE11 */
}

.bl_col4>.bl_col_item:nth-child(4n) {
  margin-right: 0;
}

.bl_col4>.bl_col_item:last-child {
  margin-right: 0;
}

.bl_col8>.bl_col_item {
  width: calc((100% - 105px) / 8);
  margin-right: 15px;
  margin-bottom: 20px;
}

.bl_col8>.bl_col_item:nth-child(8n) {
  margin-right: 0;
}

.el_card {
  display: block;
  background: var(--color-white);
  border-radius: 8px;
  padding: 15px 20px 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}

.el_card_s {
  display: block;
  background: var(--color-white);
  border-radius: 8px;
  border: solid 1px var(--color-border);
  width: 100%;
  margin-bottom: 30px;
}

.el_card_h {
  padding: 20px 20px 25px;
  height: 100%;
}

.el_card_s a {
  font-size: .9em;
}

.el_card_s img {
  border-radius: 8px 8px 0 0;
}

.el_card_s a:hover {
  text-decoration: underline;
}

.el_card_img {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.el_card_icon {
  display: block;
  width: auto;
  max-height: 120px;
}

.el_card_icon__small {
  display: block;
  width: auto;
  max-height: 70px;
}

.el_card_ttl {
  font-weight: 700;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5;
}

.el_card_text {
  font-size: .85em;
  text-align: center;
  margin-top: 5px;
}

.el_card_link {
  display: block;
  padding-top: 10px;
  color: var(--color-main);
  text-decoration: underline;
  text-align: center;
}

.el_card_btn {
  font-size: var(--fontSize-caption);
  text-align: center;
  display: block;
  color: var(--color-white);
  font-weight: 700;
  background: var(--color-main);
  border-radius: 15px;
  margin-top: 1em;
}

.el_card_btn::before {
  content: ">";
  font-size: var(--fontSize-caption);
  color: var(--color-main);
  font-weight: 700;
}


.el_cardImgBig {
  display: block;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 25px;
}

.el_cardImgBig_img {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.el_cardImgBig_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.el_cardImgBig_text {
  padding: 10px 10px 15px;
  font-weight: 700;
}

.el_cardImgBig_text span {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 20px;
  padding: 3px 10px;
  margin-right: .5rem;
  margin-bottom: .2rem;
}

.el_media img {
  margin-bottom: 10px;
}

.el_media_ttl {
  font-size: var(--fontSize-subtitle);
  font-weight: 700;
}

.el_media_ttlNum {
  color: var(--color-main);
  margin-right: .7em;
}

.el_media_text {
  font-size: var(--fontSize-caption);
}

.hp_grayBack {
  background: var(--color-back);
}

.el_head01 {
  font-size: var(--fontSize-headline01);
  font-weight: 700;
  text-align: center;
}

.el_head01-1 {
  font-size: var(--fontSize-headline01);
  font-weight: 700;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 25px;
}

.el_head02 {
  font-size: var(--fontSize-headline02);
  font-weight: 700;
  padding-bottom: 15px;
}

.el_head03 {
  font-size: var(--fontSize-headline03);
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
}

.el_head03-1 {
  font-size: var(--fontSize-subtitle);
  font-weight: 700;
}

.el_head04 {
  font-weight: 700;
  text-align: center;
}

.el_head05 {
  width: 90%;
  max-width: 700px;
  margin: 40px auto 0;
  font-size: var(--fontSize-subtitle);
  font-weight: 700;
  padding: 7px 10px;
  border-top: solid 1px var(--color-border);
  border-bottom: solid 1px var(--color-border);
}

.el_head06 {
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: var(--fontSize-subtitle);
}

.el_text06 {
  text-align: left;
  font-weight: 700;
  margin-bottom: 15px;
}

.ttl_eng {
  color: var(--color-main);
  font-size: 1em;
  text-align: center;
  font-weight: 700;
}

.el_head_s01 {
  font-weight: 700;
  font-size: 1.05em;
  margin-bottom: 10px;
}

.el_head_s02 {
  font-weight: 700;
  font-size: 1.05em;
  margin: 10px 15px;
}

.el_head_s03 {
  font-size: var(--fontSize-headline02);
  font-weight: 700;
  /* border-bottom: solid 2px var(--color-main); */
  margin-bottom: 20px;
}

.el_sub_ttl {
  display: block;
  font-size: 0.6em;
  font-weight: 700;
  color: var(--color-main);
}

.el_underBorder {
  /* border-bottom: dotted 1px var(--color-border); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.el_underBorder:before,
.el_underBorder:after {
  border-top: 1px dotted var(--color-black);
  content: "";
  /* width: 3em; */
  flex-grow: 1;
}

.el_underBorder:before {
  margin-right: 1em;
}

.el_underBorder:after {
  margin-left: 1em;
}



.el_headNum {
  color: var(--color-main);
  margin-right: 1rem;
}

.el_caption {
  font-size: var(--fontSize-caption);
  text-align: center;
  margin-top: -10px;
}

.el_box {
  display: block;
  padding: 2px;
  border: solid 1px var(--color-main);
  color: var(--color-main);
  font-weight: 700;
  border-radius: 2em;
}



.ly_detail {
  width: 90%;
  max-width: 700px;
  margin: 20px auto 30px;
}

.el_btn {
  text-align: center;
}

.el_btn_l {
  text-align: left;
}

.el_btn a {
  background-image: linear-gradient(90deg, #0085ce, #50b9fe);
  color: var(--color-white);
  padding: 10px 80px;
  border-radius: 2rem;
  font-size: var(--fontSize-subtitle);
  font-weight: 700;
  text-align: center;
  display: inline-block;
  margin-top: 30px;
}

.el_btn__small {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 0 20px;
  border-radius: 1rem;
  font-weight: 700;
  text-align: center;
  display: inline-block;
}

.ly_jump {
  width: auto;
  padding: 30px 0 0;
  margin: 0 auto;
}

.ly_jump ul {
  justify-content: center;
}

.ly_jump li {
  margin-right: 4em;
  font-weight: 700;
  position: relative;
}

.ly_jump li:last-child {
  margin-right: 0;
}

.ly_jump li:before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.3em;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--color-main);
  border-right: 3px solid var(--color-main);
  transform: rotate(135deg);
  pointer-events: c;
}

.img_wrap {
  text-align: center;
}

@media only screen and (max-width: 886px) {
  .ly_cont {
    padding: 50px 20px;
  }

  .sp_noBr {
    display: none;
  }

  .bl_row {
    display: block;
  }

  .bl_col2>.bl_col_item,
  .bl_col3>.bl_col_item,
  .bl_col_item40,
  .bl_col_item60 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .bl_col4,
  .bl_col8 {
    display: flex;
  }

  /* .bl_col4>li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  } */
  .bl_col4>.bl_col_item,
  .bl_col8>.bl_col_item {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .bl_col4 .bl_col_item:nth-child(2n),
  .bl_col8 .bl_col_item:nth-child(2n) {
    margin-right: 0;
  }

  .ly_jump .bl_row {
    padding: 30px 20px 0;
    display: flex;
  }

  .ly_jump ul {
    justify-content: flex-start;
  }

  .ly_jump li {
    margin-right: 0;
    width: 100%;
  }

  .ly_jump li:before {
    left: 0em;
  }

  .ly_jump li a {
    margin-left: 25px;
  }
}

/* globalnavi */
.ly_nav {
  max-width: initial;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: auto;
  color: var(--color-white);
}

.ly_nav.change-color {
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
  color: var(--color-black);
}

.ly_nav img {
  position: absolute;
  top: 25px;
  left: 0;
  margin-left: 40px;
}

.ly_nav_s {
  max-width: 980px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin:15px auto;
  padding: 0 10px;
}

.bl_nav {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bl_nav_link {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 1rem;
}

.bl_nav_link>li {
  height: 100%;
  padding-inline: 8px;
}

.bl_nav_link>li>a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 8px;
  font-weight: 700;
}

.bl_nav_btn {
  position: relative;
  /* height: 100%; */
  background-color: var(--color-main);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2em 1.5em;
  margin-right: 1em;
  text-align: center;
  font-weight: 700;
  border-radius: 2em;
}

.ENlink {
  border: solid 1px;
  font-size: 0.75em;
  padding: 0 1em;
}

@media only screen and (max-width: 886px) {
  .ly_nav img {
    margin-left: 10px;
  }

  .bl_nav {
    display: block;
    position: fixed;
    right: -320px;
    /* 右から出てくる */
    top: 0;
    width: 300px;
    /* スマホに収まるサイズ */
    height: 100%;
    padding-top: var(--headerHeight);
    background-color: var(--color-white);
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
  }

  .bl_hamburger {
    position: absolute;
    right: 15px;
    top: 18px;
    width: 40px;
    /* クリックしやすい幅 */
    height: 40px;
    /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }

  .bl_nav_link {
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .bl_nav_link li {
    height: auto;
    text-align: center;
    padding: 0 14px;
  }

  .bl_nav_link li a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }

  .bl_nav_link li a:hover {
    background-color: #eee;
  }

  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }

  .hamburger_border_top {
    top: 14px;
  }

  .hamburger_border_center {
    top: 20px;
  }

  .hamburger_border_bottom {
    top: 26px;
  }

  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  .bl_nav_btn {
    display: block;
    height: auto;
    padding: .8rem;
  }

  /* 表示された時用のCSS */
  .nav-open .bl_nav {
    right: 0;
  }

  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}

/* mv */
.bl_mv {
  height: 750px;
  overflow: hidden;
  z-index: -30;
  position: relative;
  background-image: url(../img/main_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.bl_mv_inner {
  padding-top: 250px;
  position: relative;
}

.bl_mv_ttl {
  font-size: 3.5rem;
  color: var(--color-main);
  font-weight: 700;
  /* padding-top: 10px;
  padding-bottom: 10px; */
  line-height: 1.2;
  font-feature-settings: "palt";
  margin-bottom: 1rem;
  text-align: right;
}

.bl_mv_catch {
  font-size: 3rem;
}

.bl_mv_text {
  font-size: var(--fontSize-headline04);
  font-weight: 700;
}

.bl_mv_image {
  position: absolute;
  top: 90px;
  right: -280px;
  width: 1080px;
  height: 650px;
  background: url(../img/main_img.png) no-repeat;
  background-size: contain;
  z-index: -50;
}

.bl_mv_image video {
  position: absolute;
  top: 27px;
  left: 107px;
  width: 483px;
  height: 302px;
}

.mv_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.bl_mv_label {
  margin-top: 10px;
  /* margin-left: 20px; */
}

@media only screen and (max-width: 886px) {
  .bl_mv {
    height: 380px;
  }

  .bl_mv_inner {padding-top: 100px;}

  .bl_mv_ttl {
    font-size: 2.3rem;
    padding-top: 30px;
    text-align: center;
  }

  .bl_mv_catch {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 5px;
    display: inline-block;
  }

  .bl_mv_text {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
  }

  .bl_mv_image {
    position: relative;
    background: none;
    right: 0;
    width: 100%;
    height: auto;
    /* width: 600px;
    height: 410px; */
  }

  .bl_mv_image video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }

  .el_sp_wrap {
    max-width: 380px;
    margin: 0 auto 20px;
    text-align: center;
  }

  .bl_mv_label {
    width: 100%;
    margin: 10px 0 0;
  }
}

@media only screen and (max-width: 490px) {
  .bl_mv_catch {line-height: 1.2;}
  .bl_mv_text {font-size: 1rem;}
  .el_head01 {font-size: 1.3rem;}
}

/* companyLogoArea */
.bl_logoArea {
  margin: 20px 0;
  text-align: center;
}

.bl_logoArea_text {
  font-size: var(--fontSize-subtitle);
  text-align: center;
  padding-bottom: 20px;
  font-weight: 700;
}


.bl_logoArea_img {
  overflow: hidden;
  background: url(../img/logo_area.png) repeat-x 50%;
  background-size: auto 150px;
  width: 100%;
  height: 150px;
  animation: bg-slider 60s linear infinite;
}

@keyframes bg-slider {
  0% {
    background-position: 0 0
  }

  to {
    background-position: -4138px 0
  }
}

/* pageheader */
.ly_pageHeader {
  background: var(--color-back);
}

.ly_pageHeader h1 {
  font-size: var(--fontSize-headline01);
  font-weight: 700;
  text-align: center;
}

/* contact */
/* .bl_contact {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
} */

.bl_contact_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.bl_contact_text {
  width: 60%;
  padding: 30px 20px;
  text-align: center;
  margin: 0 auto;
}

.bl_contact_text>h2 {
  font-size: var(--fontSize-headline04);
  color: var(--color-white);
}

.bl_contact_img {
  width: 40%;
}

@media only screen and (max-width: 886px) {
  .bl_contact {
    width: 100%;
  }

  .bl_contact_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .bl_contact_text {
    width: 100%;
  }
}

/* faq */
.bl_faq {
  border-bottom: 1px solid var(--color-border);
}

.bl_faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  cursor: pointer;
  font-weight: 700;
}

.bl_faq summary::before,
.bl_faq p::before {
  position: absolute;
  left: 1em;
}

.bl_faq summary::before {
  color: var(--color-main);
  content: "Q";
  font-weight: 700;
}

.bl_faq summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid var(--color-black);
  border-right: 3px solid var(--color-black);
  content: '';
  transition: transform .5s;
}

.bl_faq[open] summary::after {
  transform: rotate(225deg);
}

.bl_faq p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  transition: transform .5s, opacity .5s;
}

.bl_faq[open] p {
  transform: none;
  opacity: 1;
}

.bl_faq p::before {
  color: var(--color-main);
  content: "A";
  font-weight: 700;
}

/* footer */


.bl_footer_list_item {
  display: block;
  margin-bottom: 1.5em;
  font-weight: 700;
}

.bl_footer_subList li {
  font-size: 0.85em;
  margin-bottom: 5px;
}

.bl_footer_subList li::before {
  content: '-';
  padding-right: 1em;
}

/* .bl_footer_list>li {
  padding-right: 20px;
}

.bl_footer_list>li:last-child {
  padding-right: 0;
} */

.bl_footer_sub {
  font-size: 0.9em;
  text-align: right;
}

.bl_footer_sub>a {
  margin-right: 1.5em;
}

.bl_footer_sub>a:last-child {
  margin-right: 0;
}

.bl_footer_copy {
  font-size: 12px;
  text-align: center;
  margin-top: 30px;
}

/* @media only screen and (max-width: 886px) {
  .bl_footer {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }

  .bl_footer_list {
    display: block;
    padding-left: 0;
  }

  .bl_footer_list>li {
    padding-right: 0px;
  }
} */


.el_mb20 {
  margin-bottom: 20px;
}

.el_mb30 {
  margin-bottom: 30px;
}

.el_mb50 {
  margin-bottom: 50px;
}

.el_mb80 {
  margin-bottom: 80px;
}

.el_mt0 {
  margin-top: 0;
}

.el_mr20 {
  margin-right: 20px;
}

/* support only */
.ly_supportNav {
  max-width: 1000px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.bl_news {
  /* max-width: 700px; */
  list-style-type: none;
  padding: 0.5em 1em;
  /* border: 1px solid var(--color-border); */
  margin: 0 auto;
}

.bl_news li {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: .3em;
  font-size: var(--fontSize-caption);
  border-bottom: dotted 1px var(--color-border);
  padding-bottom: 0.8em;
}

.bl_news li::before {
  transform: rotate(-45deg);
  width: .7em;
  height: .7em;
  border-bottom: 3px solid var(--color-main);
  border-right: 3px solid var(--color-main);
  content: '';
}

/* .ly_cont {
  padding: 25px 0;
} */

.qs_wrap_page__navi {
  display: flex;
  justify-content: center;
}

ul.qs_page__navi {
  display: flex;
}

ul.qs_page__navi li {
  padding: 5px 10px;
  border: solid 1px var(--color-border);
  border-radius: 2px;
  margin: 0 5px;
}

li.current {
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 700;
}

.qs_page__navi li.next a:after {
  content: ">";
}

.bl_cta {
  background: url(/business/cae/lib/img/lineup.webp) right calc(45% + 480px) top -28px no-repeat, url(/business/cae/lib/img/template.webp) left calc(45% + 480px) top 10px no-repeat, linear-gradient(-30deg, #54cbdd 0, #0085ce 100%);
  background-size: auto 120%, auto 135%, auto auto;
}

.bl_cta_box {
  padding: 30px 0;
}

.bl_cta p {
  color: #fff;
  text-align: center;
}

.bl_cta_subttl {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.bl_cta_ttl {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 10px;
}

a.bl_cta_btn {
  font-size: 1.1rem;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  margin: 0 auto;
  width: 300px;
  display: block;
  text-align: center;
  font-weight: 700;
  color: var(--color-main);
}

/* lp */

.lp {
  background-color: #fbe8de;
  position: relative;
}

.lp:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #fbe8de;
    bottom: -40px;
}

.el_small_text {
  font-size: 0.7em;
}

.lp .bl_row {
  justify-content: center;
}

.lp_card {
  display: flex;
  padding-bottom: 10px;
}

.lp_card_ttl {
  font-size: 1.175em;
  font-weight: 700;
  text-align: center;
  padding-top: 10px;
}

.lp_list li {
  margin-top: 8px;
  padding-left: 25px;
  line-height: 1.5;
}

.lp_list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin: 0 10px 0 -20px;
  display: inline-block;
  border: 3px solid #ee986a;
  border-radius: 50%;
}

.lp_b {
  font-weight: 700;
  color: var(--color-main);
}

.mr1 {margin-right: 1em;}
.p_ud50 {padding: 50px 0;}
.p_u50d20 {padding: 50px 0 20px;}
.w100 {
  width: 100%;
}
.w100s {
  width: 100%;
  box-shadow: 0 12px 24px #e6e7eb;
}

.bg_gray {
  background-image: url(../img/haikei.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.bg_blue {
  background: linear-gradient(90deg, #51b33f, #bce686);
}

.bg1 {
  background: url(../img/man.png) right calc(45% + 480px) top -28px no-repeat, url(/business/cae/lib/img/template.webp) left calc(45% + 480px) top 10px no-repeat;
  background-size: auto 120%, auto 135%, auto auto;
}

.bg_syodan {
  position: relative;
  background-image: url(../img/syodan.jpg);
  background-repeat: no-repeat;
  background-size: cover;
    /* background:linear-gradient(-30deg, #54cbdd 0, #0085ce 100%); */
}

.color_white {
  color: #fff;
}

.bg_color_white {
  background: #fff;
  color: var(--color-main);
}

.bl_contact_btn {
  background: var(--color-sub);
  font-size: 1.3rem;
  padding: 10px 40px;
  color: var(--color-main);
  font-weight: 700;
  border-radius: 30px;
}

.contact_item {
  background: var(--color-white);
  padding: 1em 2em;
  border-radius: 10px;
  margin-top: 20px;
}

.footer_row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 0 20px;
}

.footer_row>.bl_col_item {
  padding-right: 80px;
}

.footer_row>.bl_col_item:last-child {
  padding-right: 0px;
}

.pr50 {
  padding-right: 50px;
}

@media only screen and (max-width: 886px) {
.pr50 {padding-right: 0;}
.footer_row {
}
.footer_row>.bl_col_item {
  width: 100%;
  margin-bottom: 20px;
padding-right: 0;
text-align: center;
}
.bl_footer_sub {text-align: center;}

.feature-c {
  align-items: center;
}
}

/* table01 */
#table01 {
  width: 100%;
}

#table01 tr {
  border-bottom: 1px solid var(--color-border);
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
}

#table01 th {
  width: 30%;
}

.cost_ttl {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
}

.cost_ttl_s {
  font-size: 1rem;
  margin-left: 10px;
}

.cost_wrapper {
  display: flex;
  align-items: center;
  min-height: 250px;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text_center {
  text-align: center;
} 

/* sp */
@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}


.arrow {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 12px;
  margin-right: 10px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 8px;
  height: 3px;
  border-radius: 9999px;
  background-color: #0085ce;
  transform-origin: calc(100% - 1.5px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.date {
  margin-right: 10px;
  font-size: .9em;
}

.news_ttl {
  display: inline-block;
  color: var(--color-main);
  font-size: .9em;
}

.sidebar {
  padding: 3px 20px;
  background: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 0;
}

.sidebar_list_item {
  border-top: solid 1px #eaeaea;
  font-size: .9em;
  width: 100%;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-weight: 700;
}

.sidebar_list li:first-child .sidebar_list_item {
  border-top: none;
}

.sidebar_list_item::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  position: absolute;
  top: 20px;
  right: 7px;
  transform: rotate(135deg) scale(1, 1);
}

.sidebar_list_item.open::after {
  top: 21px;
  transform: rotate(135deg) scale(-1, -1);
}

.sidebar_list li ul {
  padding: 0px 10px 15px 30px;
}

.sidebar_list li ul li a{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-size: .85em;
  padding: 4px 0;
}

.sidebar_list li ul li a:hover {
  text-decoration: underline;
}

.sidebar_list_inner {
  display: none;
}

.pankuzu {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 10px 0px;
  font-size: .8em;
}

.pankuzu li {
  margin-right: 40px;
  position: relative;
}

.pankuzu li::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  position: absolute;
  top: 8px;
  right: -20px;
  transform: rotate(45deg) scale(1, 1);
}

.pankuzu li:last-child::after {
  display: none;
}

.pankuzu li a {
  text-decoration: underline;
}

.answer_inner {
  font-size: .9em;
}

.answer_inner h2 {
  font-weight: 700;
  font-size: 1.25em;
}

.answer_inner h3 {
  font-weight: 700;
  font-size: 1.1em;
  background: #f6f6f6;
  border-left: solid 5px var(--color-main);
  margin-bottom: 15px;
  padding: 5px 15px;
}

.answer_inner p {
  padding-bottom: 2em;
}

.answer_inner a {
  color: #00669e;
  text-decoration: underline;
}

.answer_inner ul li {
  font-weight: 700;
  margin-bottom: 7px;
}

.answer_inner ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin: 0 10px 0 0;
  display: inline-block;
  border: 3px solid #99b5ed;
  border-radius: 50%;
}

.answer_inner ol li {
  font-weight: 700;
  margin-bottom: 7px;
}

.answer_inner img {
  margin-bottom: 20px;
}

.answer_inner img:hover {
  cursor: pointer;
  opacity: 0.6;
}

.bl_comment {
  background: #FFF;
  padding: 40px 60px;
  border-radius: 10px;
  width: 70%;
  margin: 0 auto;
  position: relative;
}

.bl_comment_text {
  width: 100%;
}

.bl_comment_text>h3 {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 20px;
}

.bl_comment_img {
  width: 220px;
  position: absolute;
  bottom: -80px;
  right: -100px;
}

.comment_name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.comment_name_ttl {
  color: var(--color-main);
  font-weight: 700;
  margin-right: 20px;
  font-size: 1.2em;
}

.comment_name_text {
  color: var(--color-main);
  font-weight: 700;
}

.list_a {
  padding: 10px 30px 30px 50px;
}

.list_a li{
  margin-bottom: 10px;
}

.list_a li::before{
  content: "";
  width: 10px;
  height: 10px;
  margin: 0 10px 0 -20px;
  display: inline-block;
  border: 3px solid var(--color-main);
  border-radius: 50%;
}

.img_a img {
  width: 70%;
  margin: 0 auto;
}

.wrap1 {
  box-shadow:0 10px 20px 5px rgba(0,46,75,0.1);
  border-radius: 15px;
  background: #fff;
}

.wrap1 img {
  border-radius: 15px 15px 0 0;
  margin-bottom: 20px;
}

@media only screen and (max-width: 886px) {

}

/* #a01 {
  position: relative;
}

#a01:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #FFF;
  bottom: -40px;
} */

.head01 {
  font-size: 1.4em;
  line-height: 1.3;
  color: var(--color-main);
  padding: 0 20px;
  margin-bottom: 7px;
}

.text01 {
  padding: 0 20px 30px;
}

@media only screen and (max-width: 480px) {
  .bl_comment {
    padding: 40px;
    width: 100%;
  }
  .bl_comment_img {
    width: 130px;
    position: absolute;
    bottom: -80px;
    right: -20px;
  }
}

#modal-container {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
}

#modal-content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  z-index: 1001;
}

#modal-image {
  max-width: 1300px;
  max-height: 100vh;
}

#modal-close {
  position: absolute;
  top: 0px;
  right: -75px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1002;
}

#modal-close:hover,
#modal-close:focus {
  color: #bbb;
  text-decoration: none;
}

.text_center {
  height:60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news_list {
  padding: 30px 20px 20px;
  background: var(--color-white);
  border-radius: 8px;
  margin-top: 20px;
}

.news_list_item {
  display: block;
  border-radius: 5px;
  padding: 5px 30px;
  margin-bottom: 10px;
}

.news_list_item a {
 color: var(--color-main);
 text-decoration: underline;
}

.img_wrap {
  width: 80%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}