

@import url("../bootstrap/dist/css/bootstrap.min");


body[data-variant="default"] {

  /*==========================================================================
    Common
  ==========================================================================*/

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #000;
  background-color: #F1EEE7;
  letter-spacing: 0.1em;

  .clear:after {
    content: "";
    display: block;
    clear: both;
  }

  a {
    text-decoration: none;
  }

  a:hover {
    opacity: 0.8;
  }

  .txt_center {
    text-align: center;
  }

  .txt_right {
    text-align: right;
  }

  /** フォームリセット **/
  input,
  button,
  textarea,
  select,
  submit {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .sp_mv {
    display: none;
  }

  .sp_only {
    display: none;
  }


  /* スクロールCSS */
  .fade-in {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
  }

  .fade-in-up {
    transform: translate(0, 50px);
  }

  .fade-in-down {
    transform: translate(0, -50px);
  }

  .fade-in-left {
    transform: translate(-50px, 0);
  }

  .fade-in-right {
    transform: translate(50px, 0);
  }

  .scroll-in {
    opacity: 1;
    transform: translate(0, 0);
  }


  /* page top */
  .pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
  }

  .pagetop__arrow {
    display: block;
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
  }


  /******************
  header
******************/
  #header {
    background-color: #fff;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  .header_wrap {
    align-items: center;
    display: flex;
    margin-inline: auto;
    padding: 10px 0;
    width: 90%;
  }

  .logo {
    margin: 0 30px 0 0;
    width: 120px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-size: 2em;
  }

  .logo.lower {
    display: block;
  }

  .logo img {
    width: 100%;
  }

  .header_nav_wrap {
    flex: 1;
  }

  .header_nav {
    display: flex;
    text-align: center;
    margin: 0;
    justify-content: end;
  }

  .header_nav li {
    margin-right: 10px;
  }

  .header_nav li a {
    color: #000;
    padding: 5px 10px;
    transition: .4s;
  }

  .header_nav li a:hover {
    background-color: #2C81BD;
    color: #fff;
    opacity: 1;
    text-decoration: none;
  }

  .header_nav li.operator a {
    color: #3B8DC6;
  }

  .header_nav li.operator a:hover {
    color: #fff !important;
  }

  .disabled a {
    color: gray !important;
  }


  .operator a {
    color: #3B8DC6 !important;
  }

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



  /******************
    main
  ******************/
  #main {
    padding-top: 70px;
  }

  .mv_wrap {
    margin-bottom: 100px;
  }

  .mv_wrap figure {
    margin: 0;
  }

  .about_wrap,
  .recommend_wrap,
  .package_wrap,
  .news_wrap,
  .voice_wrap,
  .bnr_wrap {
    max-width: 840px;
    margin-inline: auto;
    margin-bottom: 100px;
    width: 90%;
  }

  .head_wrap {
    margin-bottom: 50px;
    text-align: center;
  }

  .head_wrap_title {
    font-size: 36px;
  }

  .about_cont_title {
    margin-bottom: 25px;
    text-align: center;
  }

  .about_cont_title span {
    background-color: #EFE141;
    display: inline-block;
    font-size: 24px;
    padding: 3px 10px;
  }

  .about_cont_txt {
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 50px;
  }

  .recommend_cont {
    display: flex;
    justify-content: space-between;
    max-width: 712px;
    margin-inline: auto;
  }

  .recommend_point {
    max-width: 746px;
    margin-inline: auto;
  }

  .recommend_point_title {
    background-color: #99C8E8;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 6px 10px;
  }

  .recommend_point_list {
    background: #fff;
    margin: 0;
    padding: 20px 30px;
    counter-reset: number 0;
  }

  .recommend_point_list li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 32px;
  }

  .recommend_point_list li::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: #99C8E8;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 0;
  }

  .recommend_point_list li::after {
    color: #0D0D0D;
    counter-increment: number 1;
    content: counter(number) " ";
    position: absolute;
    top: 0;
    left: 8px;
  }

  .recommend_point_list li:last-child {
    margin-bottom: 0;
  }

  .more_btn {
    margin-bottom: 0;
    text-align: center;
  }

  .more_btn a {
    background-color: #2C81BD;
    border: 2px solid #2C81BD;
    border-radius: 40px;
    color: #fff;
    display: block;
    font-size: 18px;
    max-width: 251px;
    position: relative;
    transition: .4s;
    width: 90%;
  }

  .more_btn a:hover {
    background-color: #fff;
    color: #2C81BD;
    text-decoration: none;
  }

  .more_btn.about_btn a {
    margin-inline: auto;
    padding: 20px;
  }

  .more_btn.about_btn a::before {
    content: "";
    background-image: url(/tanki/assets/portal/common/btn_icon01-0e7e9f958497aca21459c8ed13b964725f267a421b42935f86d97889d7d4eafe.svg);
    background-size: cover;
    position: absolute;
    top: -10px;
    left: -65px;
    width: 56px;
    height: 50px;
  }

  .more_btn.about_btn a:hover::before {
    transform: rotate(15deg);
  }

  .more_btn.about_btn a::after {
    content: "";
    background-image: url(/tanki/assets/portal/common/btn_icon02-076480b3692e0edf164ada7550a7901cbf014a00d482482b225ca06766f727f3.svg);
    background-size: cover;
    position: absolute;
    right: -45px;
    bottom: -13px;
    width: 42px;
    height: 37px;
  }

  .more_btn.about_btn a:hover::after {
    transform: rotate(15deg);
  }

  .more_btn a span::after {
    content: url(/tanki/assets/portal/common/btn_arrow-2e2b58d93218d53b6ee207ca6dbb8c7c1b168b364a2c74b02ed2bd1df90baa2f.svg);
    margin-left: 15px;
  }

  .more_btn a:hover span::after {
    content: url(/tanki/portal/common/btn_arrow-2.svg);
  }

  .cont_txt {
    margin-bottom: 20px;
    line-height: 2;
    text-align: center;
  }

  .package_merit {
    max-width: 746px;
    margin-inline: auto;
  }

  .package_merit_title {
    background-color: #C3DCBE;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 6px 10px;
  }

  .package_merit_list {
    background: #fff;
    margin: 0;
    padding: 20px 30px;
    counter-reset: number 0;
  }

  .package_merit_list li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 32px;
    max-width: 369px;
    margin-inline: auto;
  }

  .package_merit_list li::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: #C3DCBE;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 0;
  }

  .package_merit_list li::after {
    color: #0D0D0D;
    counter-increment: number 1;
    content: counter(number) " ";
    position: absolute;
    top: 0;
    left: 8px;
  }

  .news_info {
    margin-right: 25px;
  }

  .news_list li {
    margin-bottom: 35px;
    border-bottom: 1px solid #99C8E8;
    padding: 0 10px 10px;
    color: #000;
    position: relative;
    display: flex;
  }

  .news_list li:last-child {
    margin-bottom: 0;
  }

  .news_title {
    flex: 1;
  }

  .news_list_day {
    font-size: 18px;
    margin-right: 20px;
  }

  .news_list_cat {
    background-color: #99C8E8;
    padding: 0 5px 2px;
    width: 81px;
  }

  .news_list_cat.cat02 {
    background-color: #C3DCBE;
  }

  .voice_link {
    display: flex;
    gap: 35px;
    width: 90%;
    margin-inline: auto;
  }

  .voice_link_btn:first-child {
    width: 365px;
  }

  .voice_link_btn:nth-child(2) {
    width: 293px;
  }

  .voice_link_btn a {
    background-color: #2C81BD;
    border: 2px solid #2C81BD;
    border-radius: 999px;
    color: #fff;
    display: block;
    font-size: 18px;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: .4s;
  }

  .voice_link_btn a:hover {
    background-color: #fff;
    color: #2C81BD;
    opacity: 1;
    text-decoration: none;
  }

  .voice_link_btn a span::after {
    content: url(/tanki/assets/portal/common/btn_arrow-2e2b58d93218d53b6ee207ca6dbb8c7c1b168b364a2c74b02ed2bd1df90baa2f.svg);
    margin-left: 15px;
  }

  .voice_link_btn a:hover span::after {
    content: url(/tanki/portal/common/btn_arrow-2.svg);
  }

  .voice_link_btn:first-child a::before {
    content: "";
    background-image: url(/tanki/assets/portal/common/btn_icon03-59a78e784d4516787c72803003f6148a61a491382aef482d3bc25979806b9c1d.svg);
    background-size: cover;
    width: 84px;
    height: 108px;
    position: absolute;
    bottom: -53px;
    left: -10px;
  }

  .voice_link_btn:first-child a:hover::before {
    transform: rotate(-10deg);
  }

  .voice_link_btn:nth-child(2) a::before {
    content: "";
    background-image: url(/tanki/assets/portal/common/btn_icon04-4888daeb6349deee7bdace540f4f48907fa9a3803efa56b7fc5b4d7f0e2485cf.svg);
    background-size: cover;
    width: 58px;
    height: 120px;
    position: absolute;
    bottom: 20px;
    right: 0;
  }

  .voice_link_btn:nth-child(2) a:hover::before {
    transform: rotate(-10deg);
  }

  .bnr_block {
    text-align: center;
    margin: 0;
  }

  .bread {
    max-width: 967px;
    margin-inline: auto;
    margin-bottom: 20px;
    width: 90%;
  }

  .bread ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }

  .bread ol li {
    font-size: 14px;
    margin-right: 25px;
    position: relative;
  }

  .bread ol li::after {
    content: ">";
    position: absolute;
    top: -2px;
    right: -18px
  }

  .bread ol li:last-child::after {
    content: none;
  }

  .bread ol li a {
    color: #000;
  }

  .bread ol li:last-child {
    color: #2C81BD;
  }



  /******************
    footer
  ******************/
  #footer {
    background: #99C8E8;
    font-family: "Noto Sans JP", sans-serif;
  }

  .footer_wrap {
    max-width: 967px;
    margin: 0 auto;
    padding: 35px 0 15px;
    width: 90%;
  }

  .footer_logo {
    margin-bottom: 55px;
    text-align: center;
  }

  .footer_link_wrap {
    margin-bottom: 55px;
  }

  .footer_link {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
  }

  .footer_link a {
    color: #000;
    transition: .4s;
  }

  .footer_link a:hover {
    color: #2C81BD;
    text-decoration: none;
  }

  .copy {
    font-size: 13px;
    text-align: center;
    margin: 0;
  }

  .footer_info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .footer_info_box {
    border-radius: 20px;
    background: #fff;
    width: 48%;
  }

  .footer_info_title {
    background: #C3DCBE;
    border-radius: 20px 20px 0 0;
    padding: 10px;
    margin: 0;
    text-align: center;
  }

  .footer_info_cont {
    padding: 30px;
  }

  .footer_info_contact {
    display: flex;
    margin-bottom: 15px;
    position: relative;
  }

  .footer_info_contact_name {
    font-size: 21px;
    font-weight: bold;
    margin: 0;
  }

  .footer_info_block_txt {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .footer_info_block {
    display: flex;
    flex-wrap: wrap;
    color: #2C81BD;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    gap: 0 20px;
    letter-spacing: 1px;
  }

  .footer_info_block p {
    padding-left: 40px;
    position: relative;
    margin-bottom: 0;
  }

  .tel::before {
    content: "";
    background-image: url(/tanki/assets/portal/common/icon_tel-f98b7012f86ff74f17a0edbeb2f8c71228843d72ab71419f29f758d3c41441de.svg);
    background-size: cover;
    width: 29px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .fax::before {
    content: "";
    background-image: url(/tanki/assets/portal/common/icon-phone-10ffc3a3ac7c8c06ce3e68460909ad17b1701c75d838d12aafe6e919a1f0e350.svg);
    background-size: cover;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .footer_info_contact_link {
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0;
    width: 91px;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .footer_info_contact_link a {
    background-color: #2C81BD;
    border-radius: 30px;
    color: #fff;
    display: block;
    font-size: 18px;
    padding: 1px 2px 3px;
    transition: .4s;
  }

  .footer_info_contact_link a:hover {
    text-decoration: none;
  }

  .footer_info_contact_link a span::after {
    content: url(/tanki/assets/portal/common/btn_arrow-2e2b58d93218d53b6ee207ca6dbb8c7c1b168b364a2c74b02ed2bd1df90baa2f.svg);
    margin-left: 5px;
  }

  .footer_info_case h3 {
    font-size: 21px;
    font-weight: bold;
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
  }

  .footer_info_case h3::before {
    content: "";
    background-image: url(/tanki/assets/portal/common/arrow-9c8a0784d07710bc64b65d6c026186ed01771789234e9c492545e659665104df.svg);
    background-size: cover;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 53%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .footer_info_case p {
    color: #2C81BD;
    font-size: 18px;
  }

  .footer_info_case:last-child p {
    margin-bottom: 0;
  }

  .cv_wrap {
    background-color: #000;
    color: #FEF589;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .cv_wrap_block {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1037px;
    width: 85%;
    margin-inline: auto;
    padding: 15px 0;
  }

  .cv_wrap_block p {
    margin-bottom: 0;
    text-align: center;
  }

  .cv_txt {
    font-size: 26px;
    font-weight: bold;
  }

  .cv_day {
    font-size: 26px;
    font-weight: bold;
  }

  .cv_btn a {
    background-color: #EFE141;
    border-radius: 40px;
    color: #000;
    display: block;
    font-size: 18px;
    text-align: center;
    padding: 10px 25px;
    position: relative;
    transition: .4s;
  }

  .cv_btn a:hover {
    background-color: #2C81BD;
    color: #fff;
    opacity: 1;
    text-decoration: none;
  }

  .cv_btn a span::after {
    content: url(/tanki/assets/portal/common/cv_arrow-9c3ea371a6a97a4201b7a66be3f58f9434a8cdae5f246c0e452adeb08db95dd5.svg);
    margin-left: 15px;
  }

  .cv_btn a:hover span::after {
    content: url(/tanki/assets/portal/common/cv_arrow_02-93a3b1ec1607e0edb84d967b90866cc646df22c53088a1c2ab0735a93be80f60.svg);
  }


  /******************
    modal
  ******************/
  .remodal {
    max-width: 900px !important;
    padding: 0 !important;
  }

  .modal_title {
    background: #2C81BD;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 30px 20px;
    margin-bottom: 0;
  }

  .modal_cont_wrap {
    padding: 30px 6%;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
  }

  .remodal-close {
    color: #fff;
    top: 10px;
    right: 10px;
    left: initial;
  }

  .remodal-close:before {
    font-size: 55px;
  }

  .modal_read {
    border: 10px solid #99C8E8;
    padding: 20px;
    margin-bottom: 40px;
  }

  .modal_read p {
    margin-bottom: 0;
  }

  .modal_cont dt {
    margin-bottom: 10px;
  }

  .modal_cont {
    margin-bottom: 30px;
  }

  .modal_cont dd li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
  }

  .modal_cont dd li:last-child {
    margin-bottom: 0;
  }

  .modal_cont dd li::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 0;
  }

  .modal_cont dd li p {
    margin: 10px 0 0;
  }

  .ha-check-button {
    margin: 4rem 0;
    text-align: center;
    font-size: 20px;
  }

  input[type="checkbox"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .label {
    margin-bottom: 0;
  }

  input[type="checkbox"] {
    cursor: pointer;
    padding-left: 30px;
    vertical-align: middle;
    position: relative;
  }

  input[type="checkbox"]::before,
  input[type="checkbox"]::after {
    content: "";
    display: block;
    position: absolute;
  }

  input[type="checkbox"]::before {
    background-color: #2C81BD;
    border-radius: 5px;
    border: 2px solid #2C81BD;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
  }

  input[type="checkbox"]::after {
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    opacity: 0;
    height: 6px;
    width: 16px;
    transform: rotate(-45deg);
    top: -4px;
    left: 8px;
  }

  input[type="checkbox"]:checked::after {
    opacity: 1;
  }

  .remodal__cont__btn button:disabled {
    background: #ccc;
  }

  button:focus {
    outline: 0;
  }

  .remodal__cont__btn button {
    max-width: 560px;
    width: 100%;
    height: 80px;
    border-radius: 45px;
    border: 1px solid #fff;
    background: #2C81BD;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    margin-bottom: 3rem;
    transition-duration: .4s;
  }

  .remodal__cont__btn button:hover {
    transform: scale(1.05);
  }

  .remodal__cont__btn button:after {
    position: absolute;
    content: "";
    background: url(/tanki/assets/portal/common/icon_arrow-6f14b95d6e9285d95d7800cf4af51f7e624a996daafb83e0753a16314c7fb0b3.svg) no-repeat;
    top: 0;
    bottom: 0;
    right: 29px;
    margin: auto;
    width: 29px;
    height: 29px;
    background-size: 100%;
  }

  .remodal__cont__btn button span::after {
    content: url(/tanki/assets/portal/common/btn_arrow-2e2b58d93218d53b6ee207ca6dbb8c7c1b168b364a2c74b02ed2bd1df90baa2f.svg);
    margin-left: 20px;
  }

  /* レスポンシブ */
  @media screen and (max-width: 1100px) {
    .flow_wrap::before {
      right: 0;
    }

    .experience_wrap::before {
      left: 0;
    }
  }


  @media screen and (max-width: 1000px) {
    .pc_only {
      display: none;
    }

    .sp_only {
      display: block;
    }

    .footer_info {
      display: block;
    }

    .footer_info_box {
      width: 100%;
      margin-bottom: 40px;
    }

    .footer_link {
      flex-wrap: wrap;
      gap: 15px 35px;
      justify-content: center;
    }

    /* ハンバーガーメニュー */
    .openbtn {
      position: relative;
      background: #2C81BD;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 5px;
      overflow: hidden;
    }

    /*ボタン内側*/
    .openbtn .openbtn-area {
      transition: all .4s;
      /*アニメーションの設定*/
    }

    .openbtn span {
      display: inline-block;
      transition: all .4s;
      /*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 2px;
      background: #fff;
      width: 45%;
    }

    .openbtn span:nth-of-type(1) {
      top: 15px;
    }

    .openbtn span:nth-of-type(2) {
      top: 23px;
    }

    .openbtn span:nth-of-type(3) {
      top: 31px;
    }

    /*activeクラスが付与されると .openbtn-areaが360度回転し、
  その中の線のtopの位置や形状が変化して×に*/
    .openbtn.show .openbtn-area {
      transform: rotateX(360deg);
    }

    .openbtn.show span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-135deg);
      width: 30%;
    }

    .openbtn.show span:nth-of-type(2) {
      opacity: 0;
    }

    .openbtn.show span:nth-of-type(3) {
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(135deg);
      width: 30%;
    }

    /* メニュー部分 */
    .sp_navi {
      left: 0;
      top: 0;
      width: 100%;
      height: 40px;
      z-index: 999;
    }

    .global-nav {
      position: fixed;
      right: -320px;
      top: 0;
      width: 300px;
      height: 100vh;
      padding-top: 60px;
      background-color: #fff;
      transition: all 0.6s;
      z-index: 200;
      overflow-y: auto;
    }

    .hamburger {
      position: absolute;
      right: 20px;
      top: 9px;
      width: 50px;
      height: 50px;
      cursor: pointer;
      z-index: 300;
    }

    .global-nav__list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .global-nav__item {
      text-align: center;
      padding: 0 14px;
    }

    .global-nav__item a {
      display: block;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
      text-decoration: none;
      color: #111;
      font-size: 16px;
      text-align: left;
    }

    .global-nav__item a:hover {
      background-color: #eee;
    }

    .hamburger__line {
      position: absolute;
      left: 11px;
      width: 50px;
      height: 2px;
      background-color: #111;
      transition: all 0.6s;
    }

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

    .sp_list {
      padding-left: 1em;
    }

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

    &.nav-open .black-bg {
      opacity: 0.8;
      visibility: visible;
    }

    .sp_br {
      display: none;
    }

    .cv_txt,
    .cv_day {
      font-size: 23px;
    }

    .page_link {
      flex-wrap: wrap;
      gap: 20px 6%;
    }

    .page_link li {
      width: 47%;
    }

    .jobsearch_box dl {
      display: block;
    }

    .jobsearch_box dt {
      text-align: left;
      margin-bottom: 10px;
      width: 100%;
    }
  }


  @media screen and (max-width: 900px) {
    .flow_cont_wrap {
      display: block;
    }

    .flow_box {
      margin-bottom: 40px;
      width: 100%;
    }

    .flow_box:last-child {
      margin-bottom: 0;
    }

    .list_x5 li {
      width: 30%;
    }
  }


  @media screen and (max-width: 768px) {
    .pc_mv {
      display: none;
    }

    .sp_mv {
      display: block;
    }

    .head_wrap_title {
      font-size: 28px;
    }

    .about_cont_title span {
      font-size: 20px;
    }

    .recommend_cont {
      gap: 10px;
    }

    .package_merit_title {
      font-size: 19px;
    }

    .voice_link {
      display: block;
      width: 100%;
    }

    .voice_link_btn:first-child,
    .voice_link_btn:nth-child(2) {
      max-width: 365px;
      margin-inline: auto;
      width: 100%;
    }

    .voice_link_btn:first-child {
      margin-bottom: 70px;
    }

    .news_list li {
      display: block;
    }

    .news_info {
      margin-bottom: 8px;
    }

    .outline_block {
      display: block;
    }

    .outline_block dt {
      padding: 10px;
      width: 100%;
    }

    .schedule_block>dt {
      font-size: 18px;
    }

    .cv_wrap_block {
      display: block;
    }

    .cv_wrap_block p.cv_btn {
      max-width: 240px;
      margin-inline: auto;
      margin-top: 10px;
    }

    .ready_wrap::before {
      width: 83px;
      height: 117px;
      top: 40px;
    }

    .flow_wrap::before {
      width: 108px;
      height: 168px;
      top: 10px;
    }

    .experience_wrap::before {
      width: 108px;
      height: 106px;
      top: 50px;
    }

    .review_wrap::before {
      width: 58px;
      height: 124px;
      top: 50px;
    }

    .review_wrap::after {
      width: 84px;
      height: 108px;
      bottom: -90px;
    }

    .mv_wrap {
      margin-bottom: 60px;
    }

    .flow_link a {
      font-size: 14px;
    }

    .review_btn a {
      font-size: 14px;
      padding: 10px 35px;
    }

    .closing {
      font-size: 21px;
      margin-top: -20px;
    }

    .ready_wrap,
    .flow_wrap,
    .experience_wrap {
      margin-bottom: 80px;
    }

    .about_cont_txt {
      font-size: 16px;
    }

    .recommend_point_title {
      font-size: 20px;
    }

    .recommend_point_list li {
      font-size: 16px;
    }

    .company_txt {
      font-size: 16px;
      line-height: 1.6;
    }

    .company_title {
      font-size: 32px;
    }

    .company_title span {
      display: block;
      margin-right: 0;
    }

    .company_search_txt {
      font-size: 16px;
    }

    .company_search_list li {
      line-height: 1.6;
    }

    .company_search_txt p {
      margin-bottom: 20px;
    }

    .point_br {
      display: none;
    }

    .icon_list_block li {
      width: 49%;
    }

    .package_box {
      width: 47%;
    }

    .package_img {
      text-align: center;
    }

    .office_block {
      gap: 30px 5%;
    }

    .office_box {
      width: 47%;
    }

    .office_photo {
      text-align: center;
    }

    .detail_cities {
      font-size: 16px;
    }

    .detail_icons li {
      padding-left: 35px;
    }

    .detail_icons li::before {
      width: 25px;
      height: 25px;
      top: 1;
    }

    .acceptance_wrap::after {
      width: 90px;
      height: 127px;
      top: -30px;
      right: 10px;
    }
  }

  @media screen and (max-width: 600px) {
    .footer_info_contact {
      align-items: center;
      margin-bottom: 5px;
    }

    .footer_info_contact_link {
      position: initial;
      transform: none;
      -webkit-transform: none;
      -ms-transform: none;
      width: 70px;
    }

    .schedule_block_sub {
      display: block;
    }

    .schedule_block_sub dt {
      text-align: left;
      margin-bottom: 8px;
      width: 100%;
    }

    .schedule_block:first-child .schedule_block_sub dt {
      padding: 5px;
      text-align: center;
    }

    .cv_wrap_block {
      width: 90%;
    }

    .cv_txt,
    .cv_day {
      font-size: 17px;
    }

    .cv_btn a {
      font-size: 16px;
    }

    .cv_wrap_block p.cv_btn {
      max-width: 220px;
    }

    .page_link li {
      width: 100%;
    }

    .ready_wrap::before {
      width: 73px;
      height: 102px;
      top: 80px;
    }

    .flow_wrap::before {
      width: 78px;
      height: 113px;
      top: 70px;
    }

    .experience_wrap::before {
      width: 98px;
      height: 95px;
      top: 110px;
    }

    .review_wrap::before {
      width: 48px;
      height: 100px;
      top: 70px;
    }

    .review_wrap::after {
      width: 74px;
      height: 94px;
      bottom: -100px;
    }

    .footer_info_contact_name {
      font-size: 15px;
    }

    .footer_info_block {
      font-size: 22px;
    }

    .footer_info_block_txt {
      font-size: 15px;
    }

    .footer_info_case h3 {
      font-size: 18px;
    }

    .footer_info_case p {
      font-size: 15px;
      margin-bottom: 13px;
    }

    .footer_info_title {
      font-size: 18px;
      padding: 6px;
    }

    .footer_info_cont {
      padding: 15px 25px;
    }

    .footer_link li a {
      font-size: 15px;
    }

    .footer_info {
      margin-bottom: 40px;
    }

    .company_info_detail_title {
      font-size: 17px;
    }

    .list_x2 li {
      width: 100%;
    }

    .list_x5 li {
      width: 44%;
    }

    .list_x3 li {
      width: 28%;
    }

    .search_btn_block {
      display: block;
    }

    .search_btn_block p {
      width: 225px;
      margin-inline: auto;
    }

    .search_btn_block p.search_btn_submit {
      margin-bottom: 20px;
    }

    .search_btn_reset input {
      width: 100%;
    }

    .icon_list_block li {
      width: 100%;
    }

    .package_box {
      width: 100%;
    }

    .office_box {
      width: 100%;
    }

    .acceptance_wrap::after {
      width: 70px;
      height: 100px;
      top: 20px;
      right: 0px;
    }

    .business_ready .closing {
      margin-top: 5px;
    }

    .business_ready .review_btn a {
      padding-right: 80px;
    }

    .more_btn.about_btn.flow_btn a {
      font-size: 16px;
    }
  }
}
