@charset "UTF-8";

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

body {
  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;
}

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

.disabled a {
  color: gray !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;
}

.about_wrap .more_btn {
  background-color: initial;
  color: initial;
  max-width: initial;
  padding: 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(../img/top/btn_icon01.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(../img/top/btn_icon02.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(../img/common/btn_arrow.svg);
  margin-left: 15px;
}

.more_btn a:hover span::after {
  content: url(../img/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(../img/common/btn_arrow.svg);
  margin-left: 15px;
}

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

.voice_link_btn:first-child a::before {
  content: "";
  background-image: url(../img/top/btn_icon03.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(../img/top/btn_icon04.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(../img/common/icon_tel.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(../img/common/icon-phone.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(../img/common/btn_arrow.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(../img/common/arrow.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: 1200px;
  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(../img/common/cv_arrow.svg);
  margin-left: 15px;
}

.cv_btn a:hover span::after {
  content: url(../img/common/cv_arrow_02.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(/shimane-touroku/assets/img/icon_arrow.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(../img/common/btn_arrow.svg);
  margin-left: 20px;
}


/******************
  guideline
******************/
.outline_wrap {
  max-width: 746px;
  margin-inline: auto;
  margin-bottom: 80px;
  width: 90%;
}

.outline_block {
  display: flex;
  margin-bottom: 10px;
}

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

.outline_block dt {
  background-color: #99C8E8;
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: center;
  width: 155px;
}

.outline_block dd {
  background-color: #fff;
  flex: 1;
  font-size: 18px;
  padding: 20px 40px;
  margin-bottom: 0;
}

.outline_list {
  margin-bottom: 0;
}

.outline_list li {
  padding-left: 1em;
  font-size: 14px;
  position: relative;
  margin-bottom: 8px;
}

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

.outline_list li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

#about,
#schedule {
  padding-top: 74px;
  margin-top: -74px;
}

.schedule_wrap {
  max-width: 746px;
  margin-inline: auto;
  width: 90%;
}

.schedule_block {
  margin-bottom: 20px;
}

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

.schedule_block:first-child>dt {
  background-color: #EFE141;
}

.schedule_block>dt {
  background-color: #C3DCBE;
  font-size: 22px;
  padding: 10px;
  text-align: center;
}

.schedule_block>dt+dd {
  background-color: #fff;
  padding: 15px 30px;
}

.schedule_block_sub {
  align-items: center;
  display: flex;
  margin-bottom: 0;
}

.schedule_block:first-child .schedule_block_sub dt {
  background-color: #EFE141;
  border-radius: 30px;
  padding: 15px 0;
}

.schedule_block_sub dt {
  margin-right: 50px;
  text-align: center;
  width: 109px;
}

.schedule_block_sub dd {
  flex: 1;
  margin-bottom: 0;
}

.schedule_block_sub p {
  margin-bottom: 0;
}

.schedule_block_sub .big {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
}

.nolist {
  margin-bottom: 0;
  counter-reset: my-counter;
}

.nolist li {
  list-style-type: none;
  margin-bottom: 5px;
  padding-left: 1em;
  position: relative;
}

.nolist li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  color: #000;
  font-size: 85%;
  position: absolute;
  top: 2px;
  left: 0px;
}

.nolist li::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid;
  position: absolute;
  top: 4px;
  left: -6px;
}

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

.schedule_cont {
  margin-bottom: 40px;
}

.more_btn.about_btn.flow_btn {
  margin-bottom: 100px;
  background-color: initial;
  border-radius: 0%;
  color: initial;
  max-width: initial;
  padding: 0;
}

.more_btn.about_btn.flow_btn a {
  max-width: 402px;
}

.more_btn.about_btn.flow_btn a::before {
  top: -17px;
  left: initial;
  right: -27px;
}

.more_btn.about_btn.flow_btn a::after {
  right: inherit;
  left: -28px;
  bottom: -3px;
}


/******************
  flow
******************/
.page_link {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 90px;
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.page_link li {
  width: 200px;
}

.page_link a {
  background-color: #2C81BD;
  border-radius: 999px;
  color: #fff;
  display: block;
  padding: 5px 10px 17px;
  position: relative;
  transition: .4s;
  text-align: center;
}

.page_link a:hover {
  opacity: .6;
  text-decoration: none;
}

.page_link a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-image: url(../img/flow/arrow_white.svg);
  background-size: cover;
  width: 10px;
  height: 5px;
}

.ready_wrap {
  position: relative;
  max-width: 800px;
  padding-top: 74px;
  margin: -74px auto 100px;
  width: 90%;
}

.ready_wrap::before {
  content: "";
  background-image: url(../img/flow/ill_01.svg);
  background-size: cover;
  width: 113px;
  height: 159px;
  position: absolute;
  top: 10px;
  left: 0;
}

.flow_wrap {
  max-width: 800px;
  padding-top: 74px;
  margin: -74px auto 100px;
  width: 90%;
  position: relative;
}

.flow_wrap::before {
  content: "";
  background-image: url(../img/flow/ill_02.svg);
  background-size: cover;
  width: 158px;
  height: 228px;
  position: absolute;
  top: -20px;
  right: -50px;
}

.experience_wrap {
  max-width: 800px;
  padding-top: 74px;
  margin: -74px auto 100px;
  position: relative;
  width: 90%;
}

.experience_wrap::before {
  content: "";
  background-image: url(../img/flow/ill_03.svg);
  background-size: cover;
  width: 158px;
  height: 155px;
  position: absolute;
  top: 20px;
  left: -50px;
}

.flow_cont_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 5%;
}

.flow_box {
  background-color: #fff;
  border-radius: 25px;
  padding: 20px 25px;
  width: 47.5%;
}

.flow_box dl {
  align-items: flex-start;
  display: flex;
  margin-bottom: 0;
}

.flow_box dl dt {
  background-color: #2C81BD;
  border-radius: 50%;
  color: #fff;
  font-size: 40px;
  font-family: "Roboto Condensed", sans-serif;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  line-height: 1;
}

.flow_box dl dd {
  flex: 1;
}

.flow_maintxt {
  margin-bottom: 10px;
}

.flow_subtxt {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0;
}

.flow_link {
  margin-top: 15px;
}

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

.flow_link a {
  background-color: #99C8E8;
  border: 2px solid #99C8E8;
  border-radius: 999px;
  color: #000000;
  display: block;
  padding: 10px;
  text-align: center;
  transition: .4s;
}

.flow_link a:hover {
  background-color: #fff;
  color: #99C8E8;
  opacity: 1;
  text-decoration: none;
}

.flow_link a span {
  position: relative;
}

.flow_link a span::after {
  content: url(../img/common/arrow_black.svg);
  margin-left: 15px;
}

.flow_link a:hover span::after {
  content: url(../img/common/arrow_blue.svg);
}

.flow_wrap .flow_box dl dt {
  background-color: #65A658;
}

.closing {
  color: #2C81BD;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin: 0;
}

.flow_box.green_bg {
  background-color: #65A658;
  color: #fff;
}

.green_bg_tel,
.green_bg_tel2 {
  font-size: 32px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
}

.green_bg_tel2 {
  margin-bottom: 0;
}

.green_bg_tel span,
.green_bg_tel2 span {
  position: relative;
  padding-left: 40px;
}

.green_bg_tel span::before {
  content: url(../img/flow/free_white.svg);
  position: absolute;
  top: 0;
  left: -20px;
}

.green_bg_tel2 span::before {
  content: url(../img/flow/tel_white.svg);
  position: absolute;
  top: 0;
  left: -10px;
}

.green_bg_txt {
  margin-bottom: 5px;
}

.experience_wrap .flow_box dl dt {
  background-color: #DCCB0F;
}

.flow_link.dl_btn a span::after {
  content: url(../img/common/dl_btn-black.svg);
  position: absolute;
  top: 60%;
  right: -22px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow_link.dl_btn a:hover span::after {
  content: url(../img/common/dl_btn-blue.svg);
}

.freetel {
  color: #2C81BD;
  font-size: 32px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  margin-bottom: 0;
}

.freetel span {
  position: relative;
  padding-left: 40px;
}

.freetel span::before {
  content: url(../img/flow/free_blue.svg);
  position: absolute;
  top: 0;
  left: -20px;
}

.review_wrap {
  max-width: 800px;
  padding-top: 74px;
  margin: -74px auto 100px;
  position: relative;
  width: 90%;
}

.review_wrap::before {
  content: "";
  background-image: url(../img/flow/ill_04.svg);
  background-size: cover;
  width: 88px;
  height: 183px;
  position: absolute;
  top: 20px;
  right: 0;
}

.review_wrap::after {
  content: "";
  background-image: url(../img/flow/ill_05.svg);
  background-size: cover;
  width: 124px;
  height: 159px;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.review_txt {
  text-align: center;
}

.review_btn a {
  background-color: #2C81BD;
  border: 2px solid #2C81BD;
  border-radius: 999px;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 15px 35px;
  position: relative;
  max-width: 400px;
  margin-inline: auto;
  transition: .4s;
}

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

.review_btn a::after {
  content: url(../img/common/dl_white.svg);
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.review_btn a:hover::after {
  content: url(../img/common/dl_blue.svg);
}

.review_cont {
  margin-bottom: 40px;
}

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


/******************
  guideline business
******************/
.business_package .cont_txt {
  max-width: 606px;
  margin-top: -20px;
  margin-inline: auto;
  text-align: left;
}

.acceptance_wrap {
  margin-inline: auto;
  margin-bottom: 80px;
  max-width: 900px;
  position: relative;
  width: 90%;
}

.acceptance_wrap::after {
  content: "";
  background-image: url(../img/flow/ill_01.svg);
  background-size: cover;
  width: 113px;
  height: 159px;
  position: absolute;
  top: -40px;
  right: 50px;
}

.acceptance_cont {
  background: #fff;
  border: 10px solid #99C8E8;
  padding: 20px 30px;
  margin-top: -20px;
}

.acceptance_list {
  counter-reset: number;
  margin-bottom: 40px;
}

.acceptance_list li {
  list-style-type: none;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 8px;
}

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

.acceptance_list li::before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  top: 2px;
  left: 5.5px;
  font-size: 15px;
}

.acceptance_list li::after {
  content: '';
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #000;
  border-radius: 50%;
}

.acceptance_txt {
  margin-bottom: 30px;
}

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

.ready_wrap.business_ready::before {
  content: none;
}

.business_ready .flow_box dl dt {
  background-color: #D9CB27;
}

.business_ready .closing {
  letter-spacing: 2.5px;
  text-align: left;
}

.business_ready .flow_subtxt {
  padding-left: 0;
  text-indent: 0;
}

.business_ready .flow_cont_wrap {
  margin-bottom: 40px;
}

.business_ready .review_btn a {
  max-width: 500px;
}

.schedule_block_sub_wrap .schedule_block_sub {
  margin-bottom: 30px;
}

.schedule_block_sub_wrap {
  background-color: #fff;
  padding: 15px 30px;
  margin-bottom: 10px;
}

.business_schedule .schedule_block_sub_wrap .schedule_block_sub {
  margin-bottom: 0;
}

.schedule_block_sub dd a {
  color: #2C81BD;
}

.schedule_block_sub dd p {
  margin-bottom: 10px;
}

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

.schedule_block_sub dt.long {
  width: 200px;
}


/* レスポンシブ */
@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;
  }
}
