@charset "UTF-8";
/*--------------------------------------------------

  = 目次

  1. Base
  2. Layout
  3. Block
  4. Element
  5. Home
  6. Helper
  7. Print

--------------------------------------------------*/
/*--------------------------------------------------

  = Base

--------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  position: relative;
  width: 100%;
  color: #222;
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
strong {
  font-weight: bold;
}
em {
  font-style: normal;
}
:root {
  --key-color: #403B94;
  --key-color-dark: #322D80;
  --yellow-color: #FFED2D;
  --yellow-smooth-color: #FFFF00;
  --base_line_height: 1.6;
  --base_line_height_sp: 1.6;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  body {
    min-width: 1140px;
    line-height: var(--base_line_height);
    font-size: 1.6rem;
  }
  a[href*="tel:"] {
    /* pointer-events: none; */
    cursor: default;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  body {
    min-width: 300px;
    line-height: var(--base_line_height_sp);
    font-size: 1.6rem;
  }
}
/*--------------------------------------------------

  =  スクロールバー

--------------------------------------------------*/
.scroll-box::-webkit-scrollbar {
  height: 4px;
}
.scroll-box::-webkit-scrollbar-track {
  background: #eee;
}
.scroll-box::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}
.bl_x_scroll {
  position: relative;
}
.bl_x_scroll::after {
  content: "";
  display: block;
  width: 10%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff',endColorstr='#ffffff',GradientType=0 );
}
/*--------------------------------------------------

  =  Layout（ly_）

--------------------------------------------------*/
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  z-index: 100;
}
.ly_header_col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .ly_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8rem;
    padding-left: 2rem;
    z-index: 111;
  }
  .ly_cont {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: content-box;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .ly_header {
    height: 60px;
  }
  .ly_cont {
    padding: 0 20px;
  }
}
/*--------------------------------------------------

  = Block（bl_）

--------------------------------------------------*/
/*--------------------------------------------------
  = bl_headerNav
--------------------------------------------------*/
.bl_headerNav_info_link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 100%;
  background-color: var(--key-color);
}
.bl_headerNav_info_tel {
  position: relative;
  font-weight: 500;
}
.bl_headerNav_info_tel::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../img/icon_tel.svg) no-repeat center/100%;
  transform: translateY(-50%);
}
.bl_headerNav_contactLink {
  display: flex;
  align-items: center;
   justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
  background: var(--key-color);
  height: 100%;
  transition: all .2s;
}
.bl_headerNav_contactLink span {
  position: relative;
  display: block;
}
.bl_headerNav_contactLink span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.bl_headerNav_contactLink span::before {
  background: url(../img/icon_mail.svg) no-repeat center/100%;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bl_headerNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
  }
  .bl_headerNav_info {
    height: 100%;
  }
  .bl_headerNav_info_link {
    width: 21rem;
    text-align: center;
    height: 100%;
  }
  .bl_headerNav_info_txt {
    line-height: 1.42;
    font-size: 1.4rem;
    height: 100%;
  }
  .bl_headerNav_info .hp_ffArial {
    font-size: 1.4rem;
    font-weight: 200;
  }
  .bl_headerNav_info_tel {
    font-size: 22px;
    padding-left: 3rem;
  }
  .bl_headerNav_info_tel::before {
    width: 1.8rem;
    height: 1.8rem;
  }
  .bl_headerNav_contact {
    height: 7rem;
  }
  .bl_headerNav_contactLink {
    padding: 0 2rem;
    font-size: 1.7rem;
  }
  .bl_headerNav_contactLink span {
    padding-left: 3.5rem;
  }
  .bl_headerNav_contactLink span::before {
    width: 2.6rem;
    height: 1.8rem;
  }
  .pc_fixed_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
    padding: 13px 10px;
    z-index: 100;
  }

  /* hover */
  .bl_headerNav_contactLink:hover {
    opacity: .8;
  }
}
/* = PC 
----------------------------------------------- */
@media screen and (min-width: 768px) {
  .sp_fixed_btn {
    display: none;
  }
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .sp_fixed_btn {
    display: flex;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(70%);
    transition: all 0.3s;
    z-index: 999;
  }
  .is-menuFixed .sp_fixed_btn {
    opacity: 1;
    transform: translateX(0);
  }
  .sp_fixed_btn .bl_headerNav_item {
    width: calc(100% / 3);
  }
  .sp_fixed_btn .bl_headerNav_item .el_btn {
    width: 100%;
  }
  .sp_fixed_btn .bl_headerNav_item .el_btn_link {
    padding: 4rem 2rem 1rem;
  }
  .bl_headerNav_info_link {
    width: 80px;
    height: 60px;
    padding: 10px;
    line-height: 1.3;
  }
  .bl_headerNav_info_txt {
    font-size: 0;
  }
  .bl_headerNav_info_tel {
    font-size: 0.8rem;
    font-weight: 200;
    padding-top: 30px;
  }
  .bl_headerNav_info_tel::before {
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    transform: translateY(0%);
  }
}
/*--------------------------------------------------
  = bl_navBtn
--------------------------------------------------*/
@media screen and (min-width: 821px) {
  .bl_navBtn {
    display: none;
  }
}
/*--------------------------------------------------
  = bl_headerLogo
--------------------------------------------------*/
.bl_headerLogo {
   color: #fff;
}
.bl_headerLogo_img img {
  width: 100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) {
  .bl_headerLogo p {
    font-size: 1.4rem;
  }
  .bl_headerLogo_img {
    width: 8rem;
    padding: 0 1rem;
    margin-right: 1rem;
  }

  /* hover */
  .bl_headerLogo a:hover {
    opacity: 0.8;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
  .bl_headerLogo_img {
    width: 55px;
    padding-left: 10px;
    margin-right: 13px;
  }
  .bl_headerLogo p {
    font-size: 1.2rem;
  }
}
/*--------------------------------------------------
  = bl_headerNav_menu
--------------------------------------------------*/
.bl_headerNav_menuLink {
  display: block;
}
.bl_headerNav_menuLink.current {
  color: var(--key-color);
  pointer-events: none;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) {
  .bl_headerNav_menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
  .bl_headerNav_menuItem {
    margin: 0 2%;
  }
  .bl_headerNav_menuLink {
    font-size: 16px;
  }

  /* hover */
  .bl_headerNav_menuLink:hover {
    color: #F14494;
  }
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) and (max-width: 1260px) {
  .bl_headerNav_menuLink {
    font-size: 14px;
  }
}
/* = SP (820px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
  .bl_headerNav {
    display: none;
    position: absolute;
    top: 12rem;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 12rem);
    padding-bottom: 5rem;
    background-color: #fff;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.1);
    z-index: 100;
  }
  .js_gnavOpened .bl_headerNav {
    display: block;
    transform: translateY(0);
  }
  .bl_headerNav_menuItem {
    padding: 0 3rem;
  }
  .bl_headerNav_menuLink {
    font-size: 3rem;
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid #ccc;
  }
}
/*--------------------------------------------------
  = bl_btn01
--------------------------------------------------*/
.bl_btn {
  display: inline-block;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  border-radius: 7px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  padding: 2.4rem;
}
.bl_btn01 {
  color: #111;
  background: linear-gradient(to bottom, #FFFF00, #C1C117);
}
.bl_btn02 {
  color: #fff;
  background: linear-gradient(to bottom, #4D48AC, #25217B);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bl_btn {
    min-width: 400px;
  }
  .bl_btn + .bl_btn {
    margin-left: 30px;
  }

  /* hover */
  .bl_btn:hover {
    opacity: 0.8;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .bl_btn {
    display: block;
    font-size: 1.8rem;
    padding: 20px 15px;
  }
  .bl_btn + .bl_btn {
    margin-top: 15px;
  }
}

/*--------------------------------------------------
  = bl_balloon
--------------------------------------------------*/
.bl_balloon {
  position: relative;
  max-width: 100%;
  color: #fff;
  text-align: center;
  background: var(--key-color-dark);
}
.bl_balloon:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -20px;
  border: 20px solid transparent;
  border-bottom: 20px solid #322D80;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bl_balloon {
    width: 700px;
    font-size: 2.6rem;
    padding: 25px 50px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .bl_balloon {
    font-size: 1.6rem;
    padding: 15px 20px;
  }
  .bl_balloon:before {
    margin-left: -12px;
    border: 12px solid transparent;
    border-bottom: 12px solid #322D80;
  }
}

/*--------------------------------------------------
  = bl_accordion
--------------------------------------------------*/
.bl_accordion_item {
  background-color: #fff;
  border: 3px solid #111;
  border-radius: 7px;
}
.bl_accordion_title {
  position: relative;
  color: #CE180B;
  text-align: center;
}
.bl_accordion_title::after {
  border-right: solid 2px #111;
  border-top: solid 2px #111;
  content: "";
  display: block;
  height: 11px;
  position: absolute;
  right: 0;
  top: 40%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 11px;
}
.bl_accordion_title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}
.bl_accordion_content {
  display: none;
  border-top: 1px solid #111;
  padding: 30px 0;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bl_accordion_item {
    padding: 0 40px;
  }
  .bl_accordion_title {
    padding: 30px 0;
  }
  .bl_accordion_listItem {
    text-indent: -1.5rem;
    margin-left: 1.5rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .bl_accordion_item {
    padding: 0 15px;
  }
  .bl_accordion_title {
    padding: 20px 0;
  }
  .bl_accordion_listItem {
    text-indent: -1.4rem;
    margin-left: 1.4rem;
  }
}

/*--------------------------------------------------
  = 
--------------------------------------------------*/

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

}

/*--------------------------------------------------
  = 
--------------------------------------------------*/

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

}

/*--------------------------------------------------

  =  Element（el_）

--------------------------------------------------*/
/*--------------------------------------------------
  = el_clr
--------------------------------------------------*/
.el_key_color {
  color: var(--key-color);
}
.el_yellow_color {
  color: var(--yellow-color);
}
.el_marker {
  background:linear-gradient(transparent 60%, rgba(255,255,0,0.5) 60%);
}
/*--------------------------------------------------
  = el_heading
--------------------------------------------------*/
/* mainHeading */
.el_mainHeading,
.el_mainHeading_2 {
  color: #111;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}
.el_mainHeading__clrWH {
  color: #fff;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  /* mainHeading */
  .el_mainHeading {
    line-height: 1.3;
    font-size: 5rem;
  }
  .el_mainHeading_2 {
    line-height: 1.3;
    font-size: 4rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  /* mainHeading */
  .el_mainHeading {
    line-height: 1.4;
    font-size: 3.2rem;
  }
  .el_mainHeading_2 {
    font-size: 2.6rem;
  }
}
/*--------------------------------------------------
  = el_leadTxt
--------------------------------------------------*/
.el_leadTxt {
  text-align: center;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .el_leadTxt {
    margin-top: 2.1rem;
    line-height: 1.6;
    margin-bottom: 5rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .el_leadTxt {
    margin-top: 3.7rem;
    line-height: 1.67;
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
/*--------------------------------------------------
  = el_menuFixed
--------------------------------------------------*/
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) {
  .el_menuFixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .9);
    padding: 13px 10px;
    opacity: 0;
    transform: translateY(70%);
    transition: all 0.3s;
    z-index: 999;
  }
  .el_menuFixed .item {
    width: 450px;
    margin: 0 15px;
    border-radius: 6px;
    overflow: hidden;
    transition: all .3s;
  }
  .el_menuFixed.col_2 {
    display: flex;
    justify-content: center;
  }
  .is-menuFixed .el_menuFixed {
    opacity: 1;
    transform: translateX(0);
  }

  /* hover */
  .el_menuFixed .item .contact_link:hover {
    opacity: .8;
  }
  
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
  .el_menuFixed {
    display: none;
  }
}

/*--------------------------------------------------
  = el_copyright
--------------------------------------------------*/
.el_copyright {
  color: #222;
  line-height: 1;
  text-align: center;
  padding: 2.5rem 0;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .el_copyright {
    font-size: 1.2rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .el_copyright {
    font-size: 1.2rem;
  }
}
/*--------------------------------------------------

  =  Home（hm_）

--------------------------------------------------*/
/*--------------------------------------------------
  = hm_main hm_mv
--------------------------------------------------*/
.hm_mv img {
  width: 100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_main {
    margin-top: 80px;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_main {
    margin-top: 60px;
  }
}
/*--------------------------------------------------
  = hm_cta
--------------------------------------------------*/
.hm_cta.bg {
  position: relative;
}
.hm_cta.bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}
.hm_cta .bl_btn {
  position: relative;
  z-index: 2;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_cta.bg {
    background: url(../img/cta_bg.webp) no-repeat top 30% center/cover;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_cta.bg {
    background: url(../img/cta_bg.webp) no-repeat center/150% auto;
  }
}
/*--------------------------------------------------
  = hm_about
--------------------------------------------------*/
.hm_about {
  background: linear-gradient(to right, #fff, #ededed);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

}
/*--------------------------------------------------
  = hm_features
--------------------------------------------------*/
.hm_features {
  color: #fff;
  background: #2B276A;
}
.hm_features .ly_cont {
  background: var(--key-color-dark);
}
.hm_features_ttl {
  border-bottom: 1px solid #fff;
}
.hm_features_img01 {
  width: 104px;
}
.hm_features_img02 {
  width: 100px;
}
.hm_features_img03 {
  width: 58px;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_features .el_mainHeading .hp_ffArial {
    font-size: 7rem;
  }
  .hm_features_item + .hm_features_item {
    border-left: 1px solid #fff;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_features .ly_cont {
    padding: 0;
  }
  .hm_features .el_mainHeading .hp_ffArial {
    font-size: 4.6rem;
  }
  .hm_features_item + .hm_features_item {
    border-top: 1px solid #fff;
  }
  
}
/*--------------------------------------------------
  = hm_mission
--------------------------------------------------*/
.hm_mission {
  overflow: hidden;
}
.hm_mission_main,
.hm_mission_imgRight {
  position: relative;
  z-index: 1;
}
.hm_mission_main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hm_mission_txt {
  text-align: center;
  line-height: 1.8;
}
.hm_mission_imgRight {
  clear: both;
  background-color: #fbeeee;
}
.hm_mission_imgRight_img {
  float: right;
}
.hm_mission_imgRight p {
  line-height: 2.3;
}
.hm_mission .el_clr01 {
  font-weight: bold;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_mission_main {
    padding: 3rem 0 3.6rem;
  }
  .hm_mission_main::after {
    border-bottom: 236px solid #fbeeee;
    border-left: 150vw solid transparent;
  }
  .el_verticalHeading {
    margin-bottom: 4rem;
  }
  .hm_mission_txt {
    font-size: 2.3rem;
  }
  .hm_mission_imgRight {
    padding: 4rem 0 5rem;
  }
  .hm_mission_imgRight_img {
    width: 35rem;
    margin-bottom: 2rem;
    margin-left: 3rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_mission_main {
    padding: 3rem 0;
  }
  .hm_mission_main::after {
    border-bottom: 25.7rem solid #fbeeee;
    border-left: 100vw solid transparent;
  }
  .el_verticalHeading {
    margin-bottom: 4rem;
  }
  .hm_mission_txt {
    font-size: 2.7rem;
    font-weight: 600;
  }
  .hm_mission_imgRight {
    padding: 2rem 0 7rem;
  }
  .hm_mission_imgRight_img {
    width: 27rem;
    margin-bottom: 2rem;
    margin-left: 3rem;
  }
  .hm_mission_imgRight p {
    line-height: 2;
  }
}
/*--------------------------------------------------
  = hm_ma
--------------------------------------------------*/
.hm_ma {
  background: #fff;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_ma {
    padding-top: 8rem;
  }
  .hm_ma .el_mainHeading {
    margin-bottom: 2.4rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_ma .el_mainHeading {
    margin-bottom: 3.2rem;
  }
}
/*--------------------------------------------------
  = hm_example
--------------------------------------------------*/
.hm_example {
  background: #fbeeee;
}
.hm_example_ttl,
.hm_example_note {
  text-align: center;
}
.bl_exampleFrame_item {
  position: relative;
}
.bl_exampleFrame_item + .bl_exampleFrame_item::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/icon_arrow01.svg) no-repeat;
  background-size: 100%;
  margin: auto;
}
.bl_exampleBanner a {
  display: block;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_example {
    padding: 8rem 0;
  }
  .hm_example .ly_cont {
  }
  .hm_example .el_mainHeading {
    margin-bottom: 4rem;
    font-size: 3.8rem;
  }
  .bl_exampleFrame {
    display: flex;
    justify-content: space-between;
  }
  .bl_exampleFrame_item {
    width: 48%;
  }
  .bl_exampleFrame_item + .bl_exampleFrame_item {
    margin-left: 2%;
  }
  .bl_exampleFrame_item + .bl_exampleFrame_item::before {
    top: 0;
    bottom: 0;
    left: -3.5rem;
    width: 2.6rem;
    height: 2.7rem;
  }
  .bl_exampleBanner {
    width: 60rem;
    margin: 2rem auto 3rem;
  }

  /* hover */
  .bl_exampleBanner a:hover {
    opacity: .8;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_example {
    padding-bottom: 8rem;
  }
  .hm_example .el_mainHeading {
    margin-bottom: 2rem;
  }
  .bl_exampleFrame_item + .bl_exampleFrame_item {
    margin-top: 6rem;
  }
  .bl_exampleFrame_item + .bl_exampleFrame_item::before {
    left: 0;
    right: 0;
    top: -5rem;
    width: 4.1rem;
    height: 4.1rem;
    transform: rotate(90deg);
  }
  .bl_exampleBanner {
    width: 96%;
    margin: 2rem auto 3rem;
  }
}
/*--------------------------------------------------
  = bl_linkBtn
--------------------------------------------------*/
.bl_linkBtn_link {
  display: block;
  position: relative;
  color: #c62828;
  font-weight: 500;
  border-bottom: 0.2rem solid #c62828;
}
.bl_linkBtn_link::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  background: url(../img/icon_arrow02.svg) no-repeat;
  background-size: 100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_example .bl_linkBtn {
    width: 60rem;
    margin: 0 auto;
  }
  .bl_linkBtn_col {
    display: flex;
    flex-wrap: wrap;
  }
  .bl_linkBtn_col .bl_linkBtn_item {
    width: 27.7rem;
  }
  .bl_linkBtn_col .bl_linkBtn_item + .bl_linkBtn_item {
    margin-left: 4rem;
  }
  .bl_linkBtn_link {
    font-size: 1.6rem;
    padding-right: 2rem;
    padding-bottom: 0.5rem;
  }
  .bl_linkBtn_link::after {
    width: 8px;
    height: 15px;
  }
  .bl_linkBtn_link:hover {
    color: #ef5350;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .bl_linkBtn_item {
    width: 38.7rem;
    margin: auto;
  }
  .bl_linkBtn_item + .bl_linkBtn_item {
    margin-top: 2rem;
  }
  .bl_linkBtn_link {
    font-size: 2.6rem;
    padding-right: 2.5rem;
    padding-bottom: 1rem;
  }
  .bl_linkBtn_link::after {
    width: 1rem;
    height: 1.8rem;
  }
}

/*--------------------------------------------------
  = hm_about
--------------------------------------------------*/

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

}
/*--------------------------------------------------
  = hm_case
--------------------------------------------------*/
.hm_case {
  position: relative;
  z-index: 1;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_case {
    padding: 7rem 3rem 12rem;
    background: url(../img/case_bg_pc.webp) no-repeat top center/cover;
  }
  .hm_case .bl_case_list {
    max-width: 1300px;
    margin: 0 auto;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_case {
    padding: 8rem 3rem 12rem;
    background: url(../img/case_bg_sp.webp) no-repeat top center/100% auto;
  }
  .hm_case::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139,24,78,0.75);
    z-index: -1;
  }
}
/*--------------------------------------------------
  = hm_problem
--------------------------------------------------*/
.hm_problem {
  position: relative;
  background: linear-gradient(to right, #fff, #ededed);
}
.hm_problem_ttl {
  background: url(../img/sylph_hand.webp) no-repeat center right/375px auto;
  background-color: #fff;
}
.hm_problem_box {
  position: relative;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_problem_ttl h2 {
    width: 580px;
    margin: auto;
  }
  .hm_problem_box {
    width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_problem_ttl {
    background: url(../img/sylph_hand.webp) no-repeat center right/170px auto;
    background-color: #fff;
  }
  .hm_problem_ttl h2 {
    width: 60%;
    padding-left: 20px;
  }
}
/*--------------------------------------------------
  = hm_app
--------------------------------------------------*/
.hm_app_itemBox {
  background: #fff;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_app {
    background: url(../img/app_bg.webp) repeat-y top center/contain #E5E5E7;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_app {
    background: url(../img/app_bg.webp) repeat-y top right/130% auto #E5E5E7;
  }
}
/*--------------------------------------------------
  = hm_process
--------------------------------------------------*/
.hm_process_body {
  background-color: #FAFAFA;
  border: 1px solid #333;
}
.hm_process_body h3 {
  font-weight: bold;
  text-align: center;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_process {
    padding-bottom: 10rem;
  }
  .hm_process .seiyaku_img {
    width: 53rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hm_process_body {
    padding: 4.5rem;
  }
  .hm_process_body h3 {
    font-size: 2.8rem;
  }
  .hm_process_body .img {
    width: 90rem;
    margin: 0 auto;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_process {
    padding-bottom: 10rem;
  }
  .hm_process_body {
    padding: 4.5rem 2rem;
  }
  .hm_process_body h3 {
    font-size: 3.6rem;
  }
}
/*--------------------------------------------------
  = hm_company
--------------------------------------------------*/
.hm_company {
  color: #fff;
  background-color: #111;
}
.hm_company_ttl {
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(255, 255, 255, 0.7);
}
.hm_company_info_item {
  display: flex;
  align-items: flex-start;
}
.hm_company_info_cont {
  flex: 1;
}
.hm_company a {
  text-decoration: underline;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .hm_company .ly_cont {
    max-width: 1000px;
  }
  .hm_company_ttl {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
  .hm_company_info + .hm_company_info {
    margin-left: 9rem;
  }
  .hm_company_infoLogo {
    width: 120px;
  }
  .hm_company_info_ttl {
    width: 17rem;
    line-height: 1.8;
    font-size: 1.4rem;
    font-weight: 600;
  }
  .hm_company_info_txt {
    line-height: 1.8;
    font-size: 1.4rem;
  }
  .hm_company_info_txt small {
    font-size: 1.2rem;
  }
  .hm_company_info_txt + .hm_company_info_txt {
    margin-top: 1rem;
  }
  .hm_company_info_item + .hm_company_info_item {
    margin-top: 2rem;
  }
  /* hm_company_info_cont__2col */
  .hm_company_info_cont__2col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .hm_company_info_cont__2col .hm_company_info_txt {
    width: calc(100% / 2 - 1rem);
  }
  .hm_company_info_cont__2col .hm_company_info_txt + .hm_company_info_txt {
    margin: 0;
  }
  .hm_company_info_cont__2col .hm_company_info_txt:nth-child(n + 3) {
    margin-top: 3.4rem;
  }
  /* hm_company_info_wide */
  .hm_company_info_item.hm_company_info_wide {
    margin-top: 3.6rem;
  }
  .hm_company_info_wide .hm_company_info_txt + .hm_company_info_txt {
    margin-top: 1.4rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .hm_company_ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .hm_company_info_item + .hm_company_info_item {
    margin-top: 2rem;
  }
  .hm_company_info + .hm_company_info {
    margin-top: 2rem;
  }
  .hm_company_infoLogo {
    width: 100px;
    margin-bottom: 30px;
  }
  .hm_company_info_ttl {
    width: 12rem;
    line-height: 1.7;
    font-size: 1.4rem;
  }
  .hm_company_info_txt {
    line-height: 1.7;
    font-size: 1.4rem;
  }
  .hm_company_info_txt small {
    font-size: 1.3rem;
  }
  .hm_company_info_txt + .hm_company_info_txt {
    margin-top: 0.2rem;
  }
  /* hm_company_info_cont__2col */
  .hm_company_info_cont__2col .hm_company_info_txt + .hm_company_info_txt {
    margin-top: 1.4rem;
  }
  /* hm_company_info_wide */
  .hm_company_info_wide .hm_company_info_txt + .hm_company_info_txt {
    margin-top: 2.3rem;
  }
}

/*--------------------------------------------------

  = bl_contactCont_ttl form_cont

--------------------------------------------------*/
.formList{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.6rem;
	margin:0 0 3rem;
}
.formList dt{
	width:27%;
}
.formList dt span {
  display: inline-block;
	font-size: 1.2rem;
	padding:0.1em 0.4em;
	background:#e40d22;
	color:#fff;
	margin-left:1em;
	font-weight: normal;
	border-radius: 3px;
}
.formList dd{
	width:73%;
	margin-bottom:3rem;
}
.formList dd input[type="checkbox"] {
       display: none; 
    } 
.checkLabel{
	display: block;
	position:relative;
	padding-left:30px;
  margin-bottom: 1rem;
	transition: .3s;
}
.checkLabel:hover{
	cursor: pointer;
}
.checkLabel::after{
	content:'';
	display: inline-block;
	width:20px;
	aspect-ratio:1;
	background-color: #eae9e6;
	position:absolute;
	left:0;
	top:7px;
}
.checkLabel::before{
	content:'';
	display: inline-block;
	width:20px;
	aspect-ratio:1;
	background:#484848;
	position:absolute;
	left:1px;
	top:8px;
	opacity: 0;
}
.formList dd input[type="checkbox"]:checked + .checkLabel::before {
	opacity: 1;
	z-index: 2;
}

.formList dd input[type="text"],
.formList dd input[type="tel"],
.formList dd input[type="email"],
.formList dd textarea {
	-webkit-appearance:none;
	width:100%;
	background-color: #eae9e6;
	font-size:16px;
	padding: 1.2rem 1rem;
}
.formList dd input::placeholder,
.formList dd textarea::placeholder {
	color: #cccccc;
 }

.confirm input[type="checkbox"]{
	transform: scale(1,1);
	margin-right: 1rem;
}
.confirm a{
	text-decoration: underline;
}
.sendBox{
	text-align: center;
	padding: 6rem 0 0;
}
.sendBox input[type="submit"]{
	-webkit-appearance:none;
	background:#222;
	width: 60%;
	font-size:1.7rem;
	font-weight: 600;
	color:#fff;
	border:none;
	padding: 2rem;
	display: inline-block;
	border-radius: 5px;
}
.sendBox.back input[type="submit"] {
	background:#bbb;
	color: #222;
}

.privacyBox {
  overflow: auto;
  border: 1px solid #ddd;
}
.privacyBox h3 {
  color: var(--key-color);
}
.privacyBox h3,
.privacyBox h4 {
  font-weight: bold;
}
.privacyBox p,
.privacyBox li {
  font-size: 14px;
}

.error {
  color: #e40d22;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bl_contactCont_ttl {
    background: url(../img/contact_bg_pc.webp) no-repeat center/cover #111;
  }
	.form_cont {
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
  .privacyBox {
    height: 180px;
    padding: 20px;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .bl_contactCont_ttl {
    background: url(../img/contact_bg_sp.webp) no-repeat center/cover #111;
  }
	.formList dt span {
		font-size: 1.2rem;
	}
	.formList dt{
		width:100%;
		font-size: 16px;
		margin-bottom: 1rem;
	}
	.formList dd{
		width:100%;
		margin-bottom: 2.5rem;
	}
	.checkLabel{
		width:100%;
		position:relative;
		font-size: 16px;
		padding-left:30px;
		margin-bottom:2rem;
		transition: .3s;
	}
	.checkLabel::after{
		top: 7px;
	}
	.checkLabel::before{
		top: 7px;
	}
	.formList dt:last-of-type{
		margin-bottom:2rem;
	}
	.formList dd input[type="text"],
	.formList dd input[type="tel"], 
	.formList dd input[type="email"],
	.formList dd textarea {
		font-size: 16px;
		padding: 1.5rem;
	}
	.sendBox input[type="submit"]{
		width:100%;
		font-size: 16px;
   	font-weight: normal;
	}
  .privacyBox {
    height: 250px;
    padding: 20px 13px;
  }
}

/*--------------------------------------------------

  = 各パーツ

--------------------------------------------------*/
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/*-------------------------------------- 
    フォントサイズ
--------------------------------------*/
.text_normal {
  font-size: 1.6rem;
}
.text_normal-1 {
  font-size: 1.5rem;
}
.text_normal-2 {
  font-size: 1.4rem;
}
.text_normal-3 {
  font-size: 1.3rem;
}
.text_normal-4 {
  font-size: 1.2rem;
}
.text_normalPlus1 {
  font-size: 1.7rem;
}
.text_normalPlus2 {
  font-size: 1.8rem;
}
.text_normalPlus3 {
  font-size: 1.9rem;
}

@media print, screen and (max-width: 768px) {

}

/*--------------------------------------------------

  = Print

--------------------------------------------------*/
@media print {
  html {
    width: 100%;
    zoom: 95%;
  }
  body {
    max-width: 1400px;
    margin: 0 auto;
  }
  .ly_header {
    position: relative;
  }
}
