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

* {
  margin: 0;
  padding: 0;
}

/*---------- ページ全体の指定 ----------*/
body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: #333;
  background-color: #fff;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

/*---------- リンク設定 ----------*/

.bgsa_a {
  color: #333;
  text-decoration: none;
}

.bgsa_a {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.bgsa_a img {
  border-style: none;
}

.bgsa_img {
  vertical-align: bottom;
}

.bgsa_a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.bgsa_a img {
  border-style: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}


/*---------- PC・スマホの非表示指定 ----------*/
@media screen and (max-width:768px) {
  .spnone {
    display: none;
  }
}

@media screen and (min-width:769px) {
  .pcnone {
    display: none;
  }
}


/*---------- カラー ----------*/
.red {
  color: #d90d0d;
}


/*---------- タイトル ----------*/
h1.title,
h2.title {
  margin: 0 auto;
  padding: 60px 0 40px;
  text-align: center;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 900;
  color: #1c294f;
}

@media screen and (min-width:769px) {
  h1.title,
  h2.title {
    margin: 0 auto;
    padding: 60px 0 60px;
    text-align: center;
    line-height: 1.8;
    font-size: 28px;
    font-weight: 900;
    color: #1c294f;
  }
}


/*---------- サービス ----------*/
.container {
  margin: 0 20px;
  padding: 0 10px;
}

.service_box_flex {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.service_box_item {
  margin: 0 auto 20px;
  padding: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.service_pict {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  display: inline-block;
}

.service_pict img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 80 / 47;
}


.service_pict p {
  margin: 0;
  padding: 3px 3%;
  position: absolute;
  top: 8%;
  left: 0;
  color: #fff;
  font-weight: 600;
  background-color: #d4452b;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
}

.service_text_box {
  margin: 0;
  padding: 0 20px 20px;
}

.service_name {
  margin: 8px 0;
  padding: 3px 0 5px;
  text-align: left;
  color: #1c294f;
  font-size: 18px;
  font-weight: 800;
  border-bottom: solid 1px #ccc;
  line-height: 1.8;
  position: relative;
}

.service_name::after {
  content: url("../images/front/arrow.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 3px;
  right: 0;
  transform: scale(0.8);
}

.service_subtext {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 800;
  color: #333;
}

.service_price {
  margin: 0 auto;
  padding: 0;
  font-size: 13px;
}

.price {
  font-size: 17px;
  font-weight: 800;
}

.service_location {
  margin: 0;
  padding: 8px 0 8px 20px;
  font-size: 14px;
  position: relative;
}

.service_location::before {
  content: url("../images/front/location-dot-solid.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: -1px;
  left: -1%;
  transform: scale(0.52);
}

.label {
  font-size: 13px;
}

.pb10 {
  padding-bottom: 4px;
}

.mt4 {
  margin-top: 4px;
}

.label_same {
  padding: 1px 6px;
  border-radius: 2px;
  display: inline-block;
}

.brown {
  color: #996600;
  background: #fff;
  border: solid 1px #eddab1;
}

.orange {
  color: #ff6600;
  background: #fff7eb;
  border: solid 1px #fff7eb;
}

.btn {
  margin: 20px 0 0;
  text-align: right;
}

.mt8 {
  margin-top: 8px;
}

a.btn_blue {
  padding: 6px 8%;
  width: 100%;
  max-width: 140px;
  background: #1c294f;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 100px;
  border: solid 2px #1c294f;
  display: inline-block;
  position: relative;
}

a.btn_blue::after {
  content: url("../images/front/arrow_white.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 6px;
  right: 5%;
  transform: scale(0.6);
}

a.btn_blue:hover {
  color: #1c294f;
  background: #fff;
  border: solid 2px #1c294f;
  opacity: 100;
  position: relative;
}

a.btn_blue:hover::after {
  content: url("../images/front/arrow.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 6px;
  right: 5%;
  transform: scale(0.6);
}

.btn_blue_02 {
  padding: 6px 8%;
  width: 100%;
  max-width: 140px;
  background: #fff;
  color: #1c294f;
  font-size: 14px;
  text-align: right;
  border-radius: 100px;
  border: solid 2px #1c294f;
  display: inline-block;
  position: relative;
}

.btn_blue_02:hover {
  color: #fff;
  background: #1c294f;
  border: solid 2px #1c294f;
  opacity: 100;
  position: relative;
}

a.btn_blue_02::after {
  content: url("../images/front/arrow.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 6px;
  right: 5%;
  transform: scale(0.6);
}

a.btn_blue_02:hover::after {
  content: url("../images/front/arrow_white.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 6px;
  right: 5%;
  transform: scale(0.6);
}


@media screen and (min-width:769px) {
  .container {
    margin: 0 auto;
    padding: 0 10px;
    width: calc(100% - 20px);
    max-width: 1080px;
  }

  .service_box_flex {
    margin: 0 auto;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .service_box_item {
    margin: 0 auto 20px;
    padding: 0;
    width: 48%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }

  .service_pict {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    position: relative;
    display: inline-block;
  }

  .service_pict img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 80 / 47;
  }


  .service_pict p {
    margin: 0;
    padding: 3px 3%;
    position: absolute;
    top: 8%;
    left: 0;
    color: #fff;
    font-weight: 600;
    background-color: #d4452b;
    font-size: 15px;
    letter-spacing: 1px;
    display: block;
  }

  .service_text_box {
    margin: 0;
    padding: 0 20px 20px;
  }

  .service_name {
    margin: 8px 0;
    padding: 5px 0 8px;
    text-align: left;
    color: #1c294f;
    font-size: 20px;
    font-weight: 800;
    border-bottom: solid 1px #ccc;
    line-height: 1.8;
    position: relative;
  }

  .service_name::after {
    content: url("../images/front/arrow.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 3px;
    right: 0;
    transform: scale(0.8);
  }

  .service_subtext {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 800;
    color: #333;
  }

  .service_price {
    margin: 0 auto;
    padding: 0;
    font-size: 14px;
  }

  .price {
    font-size: 18px;
    font-weight: 800;
  }

  .service_location {
    margin: 0;
    padding: 8px 0 8px 18px;
    font-size: 15px;
    position: relative;
  }

  .service_location::before {
    content: url("../images/front/location-dot-solid.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: -1px;
    left: -1%;
    transform: scale(0.52);
  }

  .label {
    font-size: 13px;
  }

  .pb10 {
    padding-bottom: 4px;
  }

  .label_same {
    padding: 1px 8px;
    border-radius: 2px;
    display: inline-block;
  }

  .brown {
    color: #996600;
    background: #fff;
    border: solid 1px #eddab1;
  }

  .orange {
    color: #ff6600;
    background: #fff7eb;
    border: solid 1px #fff7eb;
  }

  .btn {
    margin: 20px 0 0;
    text-align: right;
  }

  a.btn_blue {
    padding: 6px 8%;
    width: 100%;
    max-width: 140px;
    background: #1c294f;
    color: #fff;
    font-size: 15px;
    text-align: center;
    border-radius: 100px;
    border: solid 2px #1c294f;
    display: inline-block;
    position: relative;
  }

  a.btn_blue::after {
    content: url("../images/front/arrow_white.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 6px;
    right: 5%;
    transform: scale(0.8);
  }

  a.btn_blue:hover {
    color: #1c294f;
    background: #fff;
    border: solid 2px #1c294f;
    opacity: 100;
    position: relative;
  }

  a.btn_blue:hover::after {
    content: url("../images/front/arrow.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 6px;
    right: 5%;
    transform: scale(0.8);
  }

  .btn_blue_02 {
    padding: 6px 8%;
    width: 100%;
    max-width: 140px;
    background: #fff;
    color: #1c294f;
    font-size: 15px;
    text-align: right;
    border-radius: 100px;
    border: solid 2px #1c294f;
    display: inline-block;
    position: relative;
  }

  .btn_blue_02:hover {
    color: #fff;
    background: #1c294f;
    border: solid 2px #1c294f;
    opacity: 100;
    position: relative;
  }

  a.btn_blue_02::after {
    content: url("../images/front/arrow.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 6px;
    right: 5%;
    transform: scale(0.8);
  }

  a.btn_blue_02:hover::after {
    content: url("../images/front/arrow_white.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 6px;
    right: 5%;
    transform: scale(0.8);
  }
}


/*----------- 打合わせや面接、セミナー開催に最適！ ----------*/
.explan_container {
  margin: 0 auto;
  padding: 0;
}

.explan_text {
  margin: 0 auto 40px;
  padding: 0;
  letter-spacing: 1px;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  text-align: justify;
}


@media screen and (min-width:769px) {
  .explan_container {
    margin: 0 auto;
    padding: 0;
  }

  .explan_text {
    margin: 0 auto 100px;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    text-align: center;
  }
}


/*----------- 定期利用・長期利用のご案内/BLOG ----------*/
.guidance_box_flex {
  margin: 0;
  padding: 60px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  background-color: #eee;
  border-radius: 0 0 0 100px;
}

.blog_box_flex {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.blog_item_sp_img,
.guidance_item_img{
  text-align: center;
}

.guidance_item,
.blog_item {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.pb40 {
  padding-bottom: 40px;
}

.guidance_item img,
.blog_item img {
  width: 80%;
}

.blog_item img {
  margin: 60px 0 0;
}

.guidance_title_eng {
  margin: 0 20px;
  padding: 0;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #d4452b;
  position: relative;
  display: inline-block;
}

.blog_title_eng {
  margin: 40px 0 0;
  padding: 0;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #d4452b;
  position: relative;
  display: inline-block;
}

.guidance_title_eng::after,
.blog_title_eng::after {
  content: "";
  height: 1px;
  width: 64px;
  background-color: #d4452b;
  top: calc(50% - 1px);
  left: calc(100% + 20px);
  position: absolute;
  display: block;
}

.guidance_title_jp {
  margin: 20px;
  padding: 0;
  line-height: 1.8;
  font-size: 20px;
  font-weight: 800;
  color: #1c294f;
}

.blog_title_jp {
  margin: 20px 0;
  padding: 0;
  line-height: 1.8;
  font-size: 20px;
  font-weight: 800;
  color: #1c294f;
}

.guidance_copy {
  margin: 0 20px 20px;
  padding: 0;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: justify;
}

.blog_copy {
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: justify;
}

.guidance_btn,
.blog_btn {
  margin: 0 auto;
  text-align: center;
}

a.btn_orange {
  padding: 3.2% 8%;
  width: 100%;
  max-width: 200px;
  background: #d4452b;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 100px;
  border: solid 2px #d4452b;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
}

a.btn_orange::after {
  content: url("../images/front/arrow_white.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 13px;
  right: 5%;
  transform: scale(0.6);
}

a.btn_orange:hover {
  color: #d4452b;
  background: #fff;
  border: solid 2px #d4452b;
  opacity: 100;
  position: relative;
}

a.btn_orange:hover::after {
  content: url("../images/front/arrow_orange.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 13px;
  right: 5%;
  transform: scale(0.6);
}

a.btn_orange2 {
  padding: 3.2% 8%;
  width: 100%;
  max-width: 200px;
  background: #fff;
  color: #d4452b;
  font-size: 14px;
  text-align: center;
  border-radius: 100px;
  border: solid 2px #d4452b;
  display: inline-block;
  position: relative;
}

a.btn_orange2::after {
  content: url("../images/front/arrow_orange.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 13px;
  right: 5%;
  transform: scale(0.6);
}

a.btn_orange2:hover {
  color: #fff;
  background: #d4452b;
  border: solid 2px #d4452b;
  opacity: 100;
  position: relative;
}

a.btn_orange2:hover::after {
  content: url("../images/front/arrow_white.webp");
  position: absolute;
  margin: 0;
  padding: 0;
  display: inline-block;
  top: 13px;
  right: 5%;
  transform: scale(0.6);
}


@media screen and (min-width:769px) {

  .gray_bg {
    display: block;
    position: absolute;
    top: 0;
    right:0;
    width: 80%;
    height: calc(100% - 45px);
    border-radius: 120px 0 0 120px;
    background-color: #eee;
    z-index: -1;
  }

  .gray_bg::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 28%;
    width: 50vw;
    height: 100%;
    background-color: #eee;
    z-index: 0;
  }

  .guidance_box_flex {
    margin: 0 auto;
    padding: 80px 0;
    width: 100%;
    max-width: 1080px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    background-color: #fff;
    border-radius: 0 0 0;
  }

  .blog_box_flex {
    margin: 0 auto;
    padding: 100px 0 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .guidance_item,
  .blog_item {
    margin: 0 auto;
    padding: 0;
    width: 46%;
    justify-content: center;
    align-items: center;
  }

  .pb40 {
    padding-bottom: 40px;
  }

  .guidance_item img,
  .blog_item img {
    width: 100%;
  }

  .blog_item img {
    margin: 0;
  }

  .guidance_title_eng,
  .blog_title_eng {
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.8;
    color: #d4452b;
    position: relative;
    display: inline-block;
  }

  .guidance_title_eng::after,
  .blog_title_eng::after {
    content: "";
    height: 1px;
    width: 64px;
    background-color: #d4452b;
    top: calc(50% - 1px);
    left: calc(100% + 20px);
    position: absolute;
    display: block;
  }

  .guidance_title_jp,
  .blog_title_jp {
    margin: 20px 0;
    padding: 0;
    line-height: 1.8;
    font-size: 22px;
    font-weight: 800;
    color: #1c294f;
  }

  .guidance_copy,
  .blog_copy {
    margin: 0 0 20px;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 1px;
  }

  .guidance_btn,
  .blog_btn {
    margin: 0 auto;
    text-align: left;
  }

  a.btn_orange {
    padding: 3.2% 8%;
    width: 100%;
    max-width: 240px;
    background: #d4452b;
    color: #fff;
    font-size: 15px;
    text-align: center;
    border-radius: 100px;
    border: solid 2px #d4452b;
    display: inline-block;
    position: relative;
  }

  a.btn_orange::after {
    content: url("../images/front/arrow_white.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 16px;
    right: 5%;
    transform: scale(0.8);
  }

  a.btn_orange:hover {
    color: #d4452b;
    background: #fff;
    border: solid 2px #d4452b;
    opacity: 100;
    position: relative;
  }

  a.btn_orange:hover::after {
    content: url("../images/front/arrow_orange.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 16px;
    right: 5%;
    transform: scale(0.8);
  }

  a.btn_orange2 {
    padding: 3.2% 8%;
    width: 100%;
    max-width: 240px;
    background: #fff;
    color: #d4452b;
    font-size: 15px;
    text-align: center;
    border-radius: 100px;
    border: solid 2px #d4452b;
    display: inline-block;
    position: relative;
  }

  a.btn_orange2::after {
    content: url("../images/front/arrow_orange.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 16px;
    right: 5%;
    transform: scale(0.8);
  }

  a.btn_orange2:hover {
    color: #fff;
    background: #d4452b;
    border: solid 2px #d4452b;
    opacity: 100;
    position: relative;
  }

  a.btn_orange2:hover::after {
    content: url("../images/front/arrow_white.webp");
    position: absolute;
    margin: 0;
    padding: 0;
    display: inline-block;
    top: 16px;
    right: 5%;
    transform: scale(0.8);
  }
}

/*----------- 提携先リンク ----------*/
.company_link_flex {
  margin: 0 auto;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}

.link_item {
  margin: 0 0 8px;
  width: 48%;
}

.link_item img {
  width: 100%;
}



@media screen and (min-width:769px) {
  .company_link_flex {
    margin: 0 auto;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
  }

  .link_item {
    margin: 0 8px;
    width: 25%;
  }

  .link_item img {
    width: 100%;
  }
}
