@charset "UTF-8";

/*==========================================================================
  Common
==========================================================================*/

body {
  font-family: 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif, Roboto,
    "Droid Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-weight: 500;
  color: #505050;
}
.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;
}
@media screen and (min-width: 800px) {
  body {
    min-width: 1300px;
  }
}
/* 追加部分 */
header#header {
    position: fixed;
    z-index: 1000;
    width: 100%;
}
.page_sns_box.header_sns {
    margin-top: 10px;
}
.page_sns_box.header_sns ul li:nth-child(2) {
    width: 33px;
}
.header_inner {
    display: flex;
    background-color: #FFBD17;
}
.page_sns_box.header_sns ul {
    display: flex;
    gap: 20px;
}
.h_cnts.pc_only {
    display: flex;
}
ul.header__menu {
    display: flex;
}
.h_logo {
    width: 20%;
    margin-right: 1%;
    display: flex;
    gap: 10%;
}
.logo {
    margin-bottom: 0;
    margin-top: 10px;
}
.header_inner {
    /* max-width: 1370px; */
    align-items: center;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 3% 0 3%;
    overflow: hidden;
    justify-content: space-between;
}
.sav_logo {
    display: inline-block;
    margin-bottom: 0;
    width: 100%;
}
.sav_logo + img {
    margin-left: 10px;
    width: 210px;
}
li.mega__menu::after {
    content: "|";
}
li.mega__menu:nth-child(8)::after {
    content: unset;
}
li.mega__menu a {
    padding: 20px 20px;
    color: #585741 !important;
    font-size: 16px;
    font-weight: bold;
}
p.logo a {
    display: flex;
}
.mv_guard {
    background-color: #FFBD17;
    position: relative;
    padding-top: 30px;
    padding-top: 80px;
    padding-bottom: 110px;
}
.mv_guard_ttl-block {
    max-width: 1100px;
    background-color: #FFFDF6;
    margin: 0 auto;
    border: solid 3px #FFB217;
    border-radius: 30px;
    position: relative;
    height: 586px;
}
.guard_ttl_deco {
  position: absolute;
}
p.guard_ttl_deco.mv_guard_ttl_detail {
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    top: 320px;
    left: 27%;
    font-size: 18px;
}
figure.guard_ttl_deco.left-cap {
    display: flex;
    justify-content: center;
    bottom: 110px;
    width: 100%;
    margin: 0 auto;
}
.image1 {
  top: 40px;
  left: 5%;
}
.image2 {
  top: 95px;
  left: 8%;
}
.image3 {
  top: 300px;
  left: 30px;
}
.image4 {
  top: 300px;
  right: 30px;
}
.image5 {
  bottom: -16px;
  left: 23%;
}
figure.guard_ttl_deco.image.sp {
  display: none;
}
@media screen and (min-width: 800px) {
    .sp_only {
        display: none;
    }
}
.menu_trigger {
  width: 30px;
  height: 22px;
  position: fixed;
  top: 20px;
  right: 40px;
  z-index: 1100; /* ← ここが重要！パネルより前に出す */
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu_trigger span {
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}
.menu_trigger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 5px);
}
.menu_trigger.active span:nth-child(2) {
  opacity: 0;
}
.menu_trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -5px);
}

.menu_panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; /* trigger より低い */
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding-top: 70px;
}
.menu_panel.active {
  display: block;
  background-color: rgba(255, 189, 23, 0.9);
}

.menu_panel ul {
  list-style: none;
  padding: 50px 20px 60px 20px;
  margin: 0;
  text-align: center;
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
}
.menu_panel li {
  width: 80%;
  margin: 0 auto;
  padding: 15px 0;
  border-bottom: 1px solid #D2D2CC;
}
.menu_panel li:nth-child(1) {
  border-radius: 10px 10px 0 0;
}
.menu_panel li:nth-child(2) {
  border-radius: 0;
}
.menu_panel li:nth-child(3) {
  border-radius: 0;
}
.menu_panel li:nth-child(4) {
  border-radius: 0;
}
.menu_panel li:nth-child(5) {
  border-radius: 0;
}
.menu_panel li a {
  font-size: 18px;
  color: #585741;
  text-decoration: none;
}
.ttl_block_br {
  display: none;
}
/* カルーセル */
section.carousel_area {
    /* max-width: 1100px; */
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
}
.splide__slide {
  width: 100%;
}
.splide__slide img {
  width: 100%;
}
/* スライド共通のスタイル */
.splide__slide img {
  opacity: .3;
  transform: scale(.8);
  transition: .7s;
}
/* アクティブなスライドのスタイル */
.splide__slide.is-active img {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
/* スライドのサイズ調整 */
.splide__slide img {
  height: auto;
  width: 100%;
}

/* slickスライド用 */
.slick01  img {
  /* opacity: .3; */
	transform: scale(.8);
	transition: transform .3s;
}
.slick01 .slick-center img {
  /* opacity: 1; */
	transform: scale(1);
}


/* レイアウトの為のスタイル */
.wrapper {
  margin-inline: auto;
  margin-top: 10px;
  /* max-width: 600px; */
  width: 100%;
}
.splide:not(.is-overflow) .splide__pagination {
    display: block !important;
    text-align: center;
    bottom: -50px;
}
.splide__pagination__page {
  background: #585741 !important;
}
.splide__pagination__page.is-active {
  background: #FE6E31 !important;
}
.answer {
  background: url(../image/jobcafe/common/answer_back.png) repeat top center;
  background-size: contain;
  width: 100%;
  background-color: #FFBD17; /* 必要に応じて背景色を指定 */
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;

}
.sircle {
  width: 20%;
  height: 20%;
  border-radius: 50%;
  background: #FFBD17;
  position: absolute;
  z-index: -1;
  top: -35px;
  left: 39.5%;
  text-align: center;
  margin: 0 auto;
}
.sp_ttl {
  display: none;
}
figure.answer_ttl_logo {
    position: absolute;
    top: -10px;
    left: 47%;
}
.answer_ttl {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.answer_ttl span {
  font-size: 35px;
  position: relative;
}
.answer_ttl span::before {
  content: url(../image/jobcafe/common/ashirai_left.png);
  position: absolute;
  left: -65px;
  top: -10px;
}
.answer_ttl span::after {
  content: url(../image/jobcafe/common/ashirai_right.png);
  position: absolute;
  right: -65px;
  top: -10px;
}
.six_block {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列 */
  grid-template-rows: repeat(2, auto);   /* 縦2行 */
  row-gap: 60px;  /* ← 縦方向の間隔を広く */
  column-gap: 20px; /* 横方向の間隔（必要に応じて） */
  max-width: 1100px; 
  margin: 0 auto; /* 中央寄せ */
  padding: 20px;
  margin-top: 80px;
}

.only_block {
  background-color: #fff;
    padding: 20px 10px 0px 10px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    height: 280px;
    align-content: center;
    text-decoration: none !important;
    transition: 0.3s;
}
.only_block figure {
    height: 183px;
    align-content: center;
}
.only_block p {
    font-weight: bold;
    color: #585741;
}
.fukidashi {
    background-color: #FFF37D;
    border-radius: 10px;
    width: 276px;
    height: 73px;
    align-content: center;
    position: relative;
    background: #FFF37D;
    display: inline-block;
    margin-bottom: 20px; /* 三角分の余白 */
    position: absolute;
    top: -40px;
    left: 30px;
}
.fukidashi p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
}
.fukidashi::after {
  content: "";
  position: absolute;
  top: 100%; /* 親要素のすぐ下 */
  left: 130px; /* 三角の横位置（調整可） */
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #FFF37D transparent transparent transparent;
}
section.news {
    position: relative;
    background-color: #FFF6DE;
    border-radius: 50px;
    padding: 80px 0px;
    width: 100%;
    margin-top: -40px;
    z-index: 100;
}
.news_ttl {
  font-size: 30px;
  font-weight: bold;
  color: #585741;
  text-align: center;
  /* margin-top: 40px; */
  margin-bottom: 50px;
}
span.sub_red {
    font-family: 'Roboto', sans-serif;
    color: #FE6E31;
    font-size: 15px;
}
.sub_small {
  font-weight: bold;
  font-size: 16px;
  color: #585741;
}
.yellow_txt {
  font-weight: bold;
  font-size: 18px;
  color: #FFA100;
  text-align: center;
  position: relative;
}
.yellow_txt::before {
  content: url(../image/jobcafe/common/line_left.png);
  position: absolute;
  left: 27%;
}
.yellow_txt::after {
  content: url(../image/jobcafe/common/line_right.png);
  position: absolute;
  right: 27%;
}
.news_width {
  max-width: 1100px;
  margin: 0 auto;
}
.deco {
  position: absolute;
}
.hoshi1 {
  top: 0;
  left: 0;
}
.hoshi2 {
  bottom: 0;
  right: 0;
}
.orange_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* テキストとの間隔 */
  padding: 12px 20px;
  background-color: #FE6E31;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  position: relative;
}
.btn_area {
  display: flex;
  justify-content: center;
}
.orange_btn:hover {
  background-color: #e65a1c;
  text-decoration: none;
  color: #fff;
}
.img_expl_block {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 80px;
}
.img_expl_width figcaption {
    margin-top: 15px;
    font-size: 14px;
    color: #000000;
}
.schedule {
  background: url(../image/jobcafe/common/back_grid.png) center center;
  background-size: contain;
  width: 100%;
  /* max-width: 1100px; */
  margin: 0 auto;
  padding-top: 75px;
  padding-bottom: 30px;
}
/* 白い丸＋三角マーク */
/* .orange_btn::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: relative;
} */
/* 三角マーク（CSSだけで描画） */
/* .orange_btn::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #FE6E31;
  z-index: 1;
  pointer-events: none;
} */
/* レスポンシブ切替 */
.sp_only {
  display: none;
}
figure.img_expl_width {
    width: 59%;
}
.deatil_expl_width {
    width: 36%;
    align-content: center;
    padding-bottom: 60px;
}
.deatil_expl_width p {
  font-size: 16px;
  color: #585741;
  line-height: 160%;
  margin-bottom: 30px;
}
.img_expl_width img {
    width: 100%;
}
.img_expl_block_ttl {
    color: #585741;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: #FCE50B;
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}
.deatil_expl_width .btn_area {
    justify-content: left;
}
.deatil_expl_width .btn_area .orange_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #FE6E31;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    position: relative;
    width: 170px;
}
.orange_btn::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    right: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
}
.orange_btn::after {
    content: '';
    position: absolute;
    right: 17px;
    left: unset;
    top: 19px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #FE6E31;
    z-index: 1;
    pointer-events: none;
}
.orange_btn.news {
  width: 190px;
}
.registration {
  background: url(../image/jobcafe/common/registration_back.png) center center;
  background-size: contain;
  width: 100%;
  background-color: #FFBD17; /* 必要に応じて背景色を指定 */
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 30px;
}
.registration_back {
  max-width: 1100px;
  margin: 0 auto;
}
.regi_cap p{
  color: #fff; 
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.regi_cap p::before{
  content: url(../image/jobcafe/common/regi_left.png);
  position: absolute;
  left: 355px;
  top: -35px;
}
.regi_cap p::after{
  content: url(../image/jobcafe/common/regi_right.png);
  position: absolute;
  right: 360px;
  top: -15px;
}
.fukidashi_second {
    margin-top: 80px;
}
.fukidashi_second h2 {
  position: relative;
  font-weight: bold;
  font-size: 30px;
  color: #FFA100;
  background-color: #fff;
  text-align: center;
  width: 430px;
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
}
.fukidashi_second h2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 205px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #FFFDF6 transparent transparent transparent;
}
figure.regi_image {
    text-align: center;
    margin-top: 25px;
}
.regi_detail {
  background-color: #FFFDF6;
  border-radius: 10px;
  padding: 30px 80px;
  max-width: 835px;
  margin: 0 auto;
}
.regi_detail_ttl {
  color: #FFA100;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
p.regi_detail_expl {
    line-height: 1.8;
    letter-spacing: 0.15px;
}
figure.dots_image {
    text-align: center;
    margin-top: -20px;
}
.dots_line {
  border-bottom: 2px dotted #FCE50B;
}
.regi_middle {
  position: relative;
  color: #fff; /* 文字色 */
  text-shadow:
    -1px -1px 0 #EFAB00,
     1px -1px 0 #EFAB00,
    -1px  1px 0 #EFAB00,
     1px  1px 0 #EFAB00; /* 外枠に黒い影を四方向から */
  font-size: 24px;
  text-align-last: center;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 50px;
}
.regi_middle p::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 515px;
  border-width: 30px 30px 0;
  border-style: solid;
  border-color: #B47200 transparent transparent transparent;
}
.result_block {
  max-width: 835px;
  margin: 0 auto;
  background-color: #FFF6DE;
  border: solid 3px #FCE50B;
  border-radius: 10px;
  position: relative;
  padding: 30px 20px 10px 20px;
  margin-bottom: 50px;
}
.result_block figure {
  position: absolute;
}
ul.result_list {
    background-color: #fff;
    width: 438px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
}
.result_list li {
  font-size: 16px;
  font-weight: bold;
  line-height: 197%;
  border-bottom: 2px solid #E7E7E4;
}
.result_list li span {
  color: #FFA100;
}
.result_image1 {
  left: 160px;
  top: 10px;
}
.result_image2 {
  right: 120px;
  top: 70px;
}
.orange_btn.regi {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #FE6E31;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    position: relative;
    width: 324px;
    justify-content: center;
}
.orange_btn.regi::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: relative;
    position: absolute;
    right: 40px;
}
.orange_btn.regi::after {
    content: '';
    position: absolute;
    left: unset;
    right: 45px;
    top: 19px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #FE6E31;
    z-index: 1;
    pointer-events: none;
}
ul.back_white {
    background-color: #fff;
    padding: 50px 20px 40px 20px;
    border-radius: 10px;
    margin-bottom: 80px;
}
a.news_list {
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 894px;
    margin: 0 auto;
    border-bottom: 2px dotted #FCE50B !important;
    padding: 15px 40px; /* 上下にスペースを追加 */
    text-decoration: none;
    align-items: center;
}
a.news_list p {
  margin-bottom: 0px;
  font-weight: bold;
  color: #585741;
  align-content: center;
}
.news_list p:nth-of-type(1) {
  width: 15%;
}

.news_list p:nth-of-type(2) {
  width: 15%;
  height: 25px;
}

.news_list p:nth-of-type(3) {
  width: 70%;
  text-align: left;
}
.back_white li {
    text-align: center;
}
.sub_ttl {
  font-size: 22px;
  font-weight: bold;
  color: #FE6E31;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}
.sub_ttl::before {
  content: "ー";
}
.sub_ttl::after {
  content: "ー";
}
.two_block {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}
.facility_block {
    width: 50%;
    border: solid 3px #FE6E31;
    border-radius: 10px;
    background-color: #fff;
    height: 382px;
}
.facility_block_under {
  width: 334px;
  border: solid 3px #FE6E31;
  border-radius: 10px;
  background-color: #fff;
  height: 335px;
}
.query_facility_block {
  width: 334px;
  border: solid 3px #FE6E31;
  border-radius: 10px;
  background-color: #fff;
  height: 345px;
}
.facility_block {
    flex: 1 1 calc(25% - 10px); 
    box-sizing: border-box;
}
.facility_block_flex {
  display: flex;
  padding: 30px 0px 0px 25px;
  justify-content: center;
}
.facility_name {
    background-color: #FE6E31;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
}
.facility_detail_width {
  width: 43%;
  align-content: center;
}
.facility_image_width {
  width: 57%;
}
/* 最後のリストには仕切り線を表示しない */
.news_list:last-child {
  border-bottom: none;
}
p.event-news {
    border: 2px solid #FE6E31;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 14px;
    width: 111px;
    text-align: center;
    color: #FE6E31 !important;
}
p.event-seminar {
    border: 2px solid #29B186;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 14px;
    width: 111px;
    text-align: center;
    color: #29B186 !important;
}
p.news {
    border: 2px solid #7BACF0;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 14px;
    width: 111px;
    text-align: center;
    color: #7BACF0 !important;
}
.facility_detail_width p {
  color: #585741;
  font-size: 16px;
  margin-bottom: 0px;
}
.facility_image_width figcaption {
  font-size: 14px;
    color: #585741;
}
p.tel_ttl {
    font-weight: bold;
    font-size: 18px;
}
.tel_ttl::before {
  content: url(../image/jobcafe/common/free_dial.png);
}
.facility_detail_width .place {
  color: #FFA100;
  background-color: #FFF6DE;
  width: 83px;
  padding: 3px 0px 3px 10px;
}
.facility_detail_width .holiday_ttl {
  color: #FFA100;
  background-color: #FFF6DE;
  width: 83px;
  padding: 3px 0px 3px 18px;
}
section.query {
    background-color: #FFF6DE;
    padding-top: 60px;
    padding-bottom: 100px;
}
.query .news_ttl {
  margin-bottom: 35px;
}
.yellow_btn {
    color: #fff;
    background-color: #FFBD17;
    border-radius: 10px;
    padding: 10px 30px;
    display: block;
    width: 206px;
    text-align: center;
    margin: 0 auto;
}
.yellow_btn:hover {
  color: #fff;
  text-decoration: none;
}
a.yellow_btn.left {
    margin-top: 20px;
}
.facility_detail_width.left {
  padding-bottom: 10px;
}
.facility_detail_width.right {
  padding-bottom: 24px;
}
.four_block {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between; 
}
.query_two_block {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center; 
  margin-bottom: 30px;
}
p.facility_name_second {
    font-size: 20px;
    font-weight: bold;
    color: #FFA100;
    text-align: left;
    height: 84px;
    align-content: center;
    margin-bottom: 0px;
}
p.facility_address {
    font-size: 15px;
    color: #585741;
    text-align: left;
    margin-bottom: 0px;
}
p.facility_tel {
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    color: #585741;
    margin-bottom: 3px;
}
p.facility_tel::before {
  content: ""; /* 空文字にして画像は背景で表示 */
  display: inline-block;
  width: 20px;       /* 好きな幅に調整 */
  height: 20px;      /* 好きな高さに調整 */
  background-image: url(../image/jobcafe/common/free_dial.png);
  background-size: contain;  /* 縦横どちらかに合わせて自動調整 */
  background-repeat: no-repeat;
  margin-right: 6px; /* テキストとの間の余白 */
  margin-top: 4px;
  vertical-align: middle; /* テキストと上下位置を揃える */
}
p.yellow_cap {
    color: #FFA100;
    background-color: #FFF6DE;
    width: 80px;
    margin: 0 auto;
    padding: 0px 3px;
    font-size: 14px;
    text-align: center;
}
p.ann_txt {
    font-size: 15px;
    font-weight: bold;
    color: #585741;
    text-align: center;
    margin-top: 3px;
    margin-bottom: 3px;
}
p.facility_tel_none {
    font-weight: bold;
    font-size: 15px;
    color: #585741;
    margin-bottom: 0px;
}
a.ann_link {
    font-size: 16px;
    text-align: center;
    color: #0087DB;
    text-decoration: none;
}
.ann_link.plus {
  padding-top: 50px;
}
a.ann_link::before {
  content: url(../image/jobcafe/common/target_link.png);
}
.facility_tel_free {
  font-weight: bold;
  font-size: 15px;
  color: #585741;
  margin-bottom: 0px;
}
.facility_tel_free::before {
  content: ""; /* 空文字にして画像は背景で表示 */
  display: inline-block;
  width: 20px;       /* 好きな幅に調整 */
  height: 20px;      /* 好きな高さに調整 */
  background-image: url(../image/jobcafe/common/free_call.png);
  background-size: contain;  /* 縦横どちらかに合わせて自動調整 */
  background-repeat: no-repeat;
  margin-right: 6px; /* テキストとの間の余白 */
  margin-top: 4px;
  vertical-align: middle; /* テキストと上下位置を揃える */
}
.facility_second_block_flex {
  padding: 5px 20px 20px 30px;
}
a.ann_link {
    font-size: 16px;
    text-align: center;
    color: #0087DB;
    display: block;
}
.facility_block_pref {
  align-content: center;
}
.link_list {
  background-color: #FFBD17;
  padding-top: 60px;
  padding-bottom: 100px;
  background-image: url(../image/jobcafe/common/cityscape.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
}
.link_list_width {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.news_ttl.white {
  color: #fff;
}
.white_txt {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.white_txt::before {
  content: url(../image/jobcafe/common/white-line-left.png);
  position: absolute;
  left: 27%;

}
.white_txt::after {
  content: url(../image/jobcafe/common/white-line-right.png);
  position: absolute;
  right: 27%;
}
.display-560 {
  display: none;
}
 .link_list_threeblock {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 20px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.link_list_block {
  background-color: #fff;
  border-radius: 10px;
  width: 310px;
  height: 233px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s;
}

.link_list_block:hover {
  text-decoration: none;
  transform: translateY(-5px);
}

.link_list_block p {
  color: #FE6E31;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  margin-right: 22px;
  position: relative;
}
.link_list_block p::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #FE6E31; /* オレンジ色に変更 */
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.link_list_block p::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent white; /* 白い三角に */
    z-index: 2;
    pointer-events: none;
}
.link_list_block p.link_list_blockonly::before {
  right: 70px;
}
.link_list_block p.link_list_blockonly::after {
  right: 75px;
}

.link_list_block figure {
  height: 111px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link_list_block figure img {
  max-height: 100%;
  max-width: 100%;
}
  .display-500 {
    display: none;
  }
button.splide__arrow.splide__arrow--prev {
    display: none;
}
button.splide__arrow.splide__arrow--next {
    display: none;
}
.sp_display {
  display: none;
}
.display_sp-top {
    display: none;
}
.entry_block {
    position: fixed;
    right: 0;
    top: 10%;
    z-index: 500;
    display: contents;
}
.entry_block .what_entry {
    position: fixed;
    right: 0;
    top: 100px;
    z-index: 500;
    display: block;
    background: #FFF;
    color: #FE6E31;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 16px 0 0 16px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    border: 3px solid #FE6E31;
    border-right: none;
    text-decoration: none;
}
.entry_block .what_entry.pc:hover {
    background: #FE6E31;
    color: #fff;
    transition: .4s;
}
.entry_block .what_entry:hover {
    /* background: #FE6E31; */
    /* color: #fff; */
    transition: .4s;
}
.entry_block .entry_regit {
    position: fixed;
    right: 0;
    top: 400px;
    z-index: 500;
    display: block;
    background: #FE6E31;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 30px 20px 40px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 16px 0 0 16px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    border-right: none;
    text-decoration: none;
}
.entry_regit:hover {
  background: #fff;
  color: #FE6E31;
  transition: .4s;
}
.mv_image_side1 {
    position: absolute;
    left: 40%;
    bottom: 10px;
}
.mv_image_side2 {
    position: absolute;
    right: 40%;
    bottom: -3px;
}
.entry_icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #FE6E31;
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid #FE6E31;
}
/* ？は上に配置 */
.what_entry .entry_icon.question {
  margin: 0 auto 10px auto; /* 下に余白 */
  padding: 4px 4px 0px 0px;
  transform: rotate(-90deg);
}

/* ▶は下に配置 */
.entry_regit .entry_icon.arrow {
  margin: 0px auto 10px auto; /* 上に余白 */
  padding: 4px 0px 0px 2px;
  position: absolute;
  bottom: 0px;
  right: 16px;
  font-size: 16px;
}
.entry_block.second .what_entry::after {
  content: url(../image/jobcafe/common/allow_radius.svg);
  position: absolute;
  right: 38px;
}
.entry_block.second .entry_regit::after {
  content: url(../image/jobcafe/common/allow_radius.svg);
    position: absolute;
  right: 48px;
}
.posi.plus {
 display: none;
}
.entry_block.second {
  display: none;
}
.orage_ttl {
  font-size: 30px;
  color: #FE6E31;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.orage_ttl::before {
  content: url(../image/jobcafe/common/ttl_two-line_left.png);
  position: absolute;
  left: 20%;
}
.orage_ttl::after {
  content: url(../image/jobcafe/common/ttl_two-line_right.png);
  position: absolute;
  right: 20%;
}
.entry_block.second {
    display: flex;
}
.entry_block.second a {
    width: 45%;
    height: 55px;
    display: flex;
    justify-content: center;
}
.display-375 {
  display: none;
}
.guard_ttl_deco.image2.sp {
  display: none;
}
  .display-425 {
    display: none;
  }
  .flex_bnr {
    display: flex;
    padding: 60px 0px;
    gap: 30px;
    justify-content: center;
    width: 90%;
    margin-inline: auto;
}
.regi_detail a {
  color: #FE6E31;
  display: block;
  text-align: center;
  text-decoration-line: underline;
}
.regi_detail a::after {
  content: url(../image/jobcafe/common/txt-download.svg);
}
.result_block p.regi_detail_expl {
  background-color: #fff;
  width: 438px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center;
}
.result_block p.regi_detail_expl a {
    display: block;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #06C755;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    position: relative;
    width: 200px;
    justify-content: center;
}
.line_btn.regi::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: relative;
    position: absolute;
    right: 40px;
}
.line_btn.regi::after {
    content: '';
    position: absolute;
    left: unset;
    right: 45px;
    top: 17.5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #06C755;
    z-index: 1;
    pointer-events: none;
}
.result_block p.regi_detail_expl span {
  display: block;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}



/* カルーセル緊急対応 */
#flex {
  display: none;
}
@media (max-width: 600px) {
  .flex_bnr {
    display: none;
  }
  #flex {
    display: block;
  }
  
}
/* ************************** */


@media (hover: none) {
.entry_block.second .what_entry:active {
    background: #FE6E31;
    color: #fff;
    transition: .4s;
}
.entry_block.second .entry_regit:hover {
    background: #FE6E31;
    color: #fff;
    transition: .4s;
}
}
@media (max-width: 1500px) {
  .sircle {
    width: 25%;
    height: 20%;
    left: 38%;
  }
}
@media (max-width: 1426px) {
  li.mega__menu a {
    padding: 20px 20px;
  }
}
@media (max-width: 1360px) {
.mv_image_side1 {
  left: 0%;
}
.mv_image_side2 {
  left: 0%;
}
}
@media (max-width: 1359px) {
figure.mv_image_side1 {
    bottom: 0px;
    left: 40%;
}
figure.mv_image_side2 {
    left: unset;
    right: 38%;
    bottom: -16px;
    top: unset;
}
figure.guard_ttl_deco.left-cap {
    bottom: 110px;
}
}
@media (max-width: 1356px) {
.header_inner {
    padding: 15px 10px 0 3%;
}
  li.mega__menu a {
    padding: 20px 15px;
  }
}
@media (max-width: 1143px) {
.header_inner {
    justify-content: center;
}
.entry_block .what_entry {
  top: 140px;
}
.entry_block .entry_regit {
  top: 440px;
}
.h_logo {
    width: 30%;
}
li.mega__menu a {
    font-size: 14px;
}
.mv_guard_back {
    margin-top: 30px;
}
}
@media (max-width: 1000px) {
.splide__pagination {
    bottom: -2.5em !important;
}
}
/* レスポンシブ対応 */
@media screen and (max-width: 960px) {
  .link_list_block {
    width: 45%;
  }

}

@media screen and (max-width: 640px) {
  .link_list_block {
    width: 310px;
  }
}
@media screen and (max-width: 831px) {
    li.mega__menu a {
        font-size: 12px;
    }
  }
@media (max-width: 799px) {
  .sp_only {
    display: block;
  }
  .h_cnts.pc_only {
    display: none;
  }
  .h_logo {
    width: 290px;
    margin-right: 1%;
    display: flex;
    gap: 10%;
  }
  .image1 {
    top: 60px;
    left: 9%;
    width: 53%;
    margin: 0 auto;
  }
  .image2 {
    top: 95px;
    left: 5%;
    width: 90%;
    margin: 0 auto;
  }
  p.guard_ttl_deco.mv_guard_ttl_detail {
    width: 90%;
    margin: 0 auto;
    top: 270px;
    left: 6%;
    font-size: 18px;
  }
  .image3 {
    top: 300px;
    left: 0px;
    width: 30%;
  }
  .image4 {
    top: 300px;
    right: 0px;
    width: 30%;
  }
  figure.guard_ttl_deco.right-cap {
    bottom: 0px;
    width: 10%;
  }
  .mv_guard_ttl-block {
    width: 90%;
  }
  .six_block {
    grid-template-columns: repeat(2, 1fr); /* 横3列 */
    grid-template-rows: repeat(3, auto);   /* 縦2行 */
  }
  .fukidashi {
    left: 10.5%;
    width: 80%;
    padding: 15px;
  }
  .display-sp {
    display: none;
  }
  .sircle {
    width: 45%;
    left: 26%;
  }
  figure.answer_ttl_logo {
    left: 43%;
  }
  .btn_area {
    display: flex;
    justify-content: center;
  }
  .img_expl_block {
    /* flex-direction: column-reverse; */
  }
  .deatil_expl_width {
    width: 80%;
    margin: 0 auto;
  }
  figure.img_expl_width {
    width: 80%;
    margin: 0 auto;
  }
  .sp_ttl {
    display: block;
  }
  .answer_ttl span::before {
    top: 15px;
  }
  .answer_ttl span::after {
    right: -125px;
    top: 15px;
  }
  .regi_detail {
    width: 95%;
  }
  .result_block {
    width: 95%;
  }
  .regi_middle p::after {
    left: 46%;
  }
  .regi_cap p::after {
    right: 25%;
  }
  .regi_cap p::before {
    left: 25%;
  }
  .result_image1 {
    left: 12%;
  }
  .result_image2 {
    right: 5%;
  }
    a.news_list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  ul.back_white {
    padding: 30px 50px;
  }

  a.news_list p {
    font-size: 14px;
  }
  p.event-news,
  p.event-seminar,
  p.news {
    width: auto;
    font-size: 13px;
    padding: 4px 10px;
  }
  .two_block {
    display: block;
  }
  .facility_block {
    width: 539px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  a.news_list {
    width: 100%;
  }
  .yellow_txt::before {
    left: 15%;
  }
.yellow_txt::after {
    right: 15%;
  }
  .link_list_threeblock {
    width: 95%;
    gap: 20px;
    margin: 0 auto;
  }
  .white_txt::before {
    left: 15%;
  }
  .white_txt::after {
    right: 15%;
  }
  figure.guard_ttl_deco.left-cap {
    bottom: 85px;
  }
  figure.mv_image_side1 {
    bottom: -10px;
    left: 27%;
  }
  figure.mv_image_side2 {
    right: 26%;
    bottom: -26px;
  }
  .orage_ttl::before {
    left: 10%;
  }
  .orage_ttl::after {
    right: 10%;
  }
  .four_block {
    justify-content: center;
  }
  .query_two_block {
    gap: 10px;
  }
  .news_list p:nth-of-type(1) {
    width: 100%;
    text-align: left;
  }
  .news_list p:nth-of-type(2) {
    width: 125px;
    height: 30px;
  }
  .news_list p:nth-of-type(3) {
    width: 100%;
  }
  figure.deco.hoshi1 {
    width: 120px;
    z-index: -100;
  }
  figure.deco.hoshi2 {
    z-index: -100;
    width: 30%;
  }
  .mv_guard_ttl-block {
    height: 510px;
  }
  .image3 {
    width: 20%;
  }
  .image4 {
    width: 20%;
  }
  .image5 {
    bottom: -16px;
    left: 12%;
    width: 75%;
  }
  .header_inner {
    justify-content: space-between;
  }
  .mv_guard_back {
    margin-top: 0px;
  }
  .orage_ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 700px) {
  .mv_guard_ttl-block {
    height: 445px;
  }
  .image5 {
    bottom: -16px;
  }
  .image3 {
    top: 260px;
  }
  .image4 {
    top: 260px;
  }
  }
/* スマホ（1列表示） */
@media screen and (max-width: 600px) {
    /* .facility_block {
        flex: 1 1 100%; 
    } */
    .four_block {
    width: 300px;
  }
  .display_pc-top {
    display: none;
  }
  .display_sp-top {
    display: block;
  }
  .query_two_block {
    width: 300px;
  }
  .mv_guard {
    padding-bottom: 135px;
  }
  .entry_block.second .entry_regit.active-touch {
    background: #fff;
    color: #FE6E31;
  }
  .entry_block.second .what_entry.active-touch {
    background: #FE6E31;
    color: #fff;
  }
}
@media (max-width: 700px) {
    p.guard_ttl_deco.mv_guard_ttl_detail {       
        top: 235px;
    }
    .sircle {
      width: 55%;
      left: 21%;
    }
    figure.answer_ttl_logo {
      left: 42%;
    }
  }
@media (max-width: 677px) {
.query_two_block {
    margin-bottom: 10px;
}
}
@media (max-width: 675px) {
  .yellow_txt::before {
    left: 8%;
  }
  .yellow_txt::after {
    right: 8%;
  }
}
@media (max-width: 655px) {
    .fukidashi {
      height: 100px;
    }
}
@media (max-width: 650px) {
  .mv_guard_ttl-block {
    height: 500px;
  }
  .regi_cap p::after {
    right: 15%;
  }
  .regi_cap p::before {
    left: 15%;
  }
    .white_txt::before {
    left: 5%;
  }
  .white_txt::after {
    right: 5%;
  }
  .ttl_block_br {
    display: block;
  }
}
@media (max-width: 600px) {
  .result_image1 {
    left: 0%;
  }
  .result_image2 {
    right: 0%;
  }
  .regi_middle p::after {
        left: 45%;
  }
  .sp_display {
    display: block;
  }
  .pc_display {
    display: none;
  }
  .entry_block {
    display: none;
  }
  .entry_block.second {
    bottom: 0;
    top: auto;
    width: 100%;
    background: #FFF6DE;
    padding: 10px;
    padding-top: 30px;
    border-top: 1px solid #fff;
  }
  .entry_block.second .what_entry {
    position: relative;
    top: auto;
    right: auto;
    writing-mode: unset;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    margin-inline: auto;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.02em;
    border-right: 3px solid #FE6E31;
    padding: 15px 45px 15px 20px;
    margin-bottom: 10px;
  }
  .entry_block.second .what_entry .entry_icon.question {
    margin: 0 auto 0px auto;
    padding: 4px 0px 0px 0px;
    transform: unset;
    position: absolute;
    left: 60px;
    top: 10px;
    }
  .entry_block.second .entry_regit {
    position: relative;
    top: auto;
    right: auto;
    writing-mode: unset;
    border-radius: 8px;
    padding: 18px 45px 15px 20px;
    max-width: 350px;
    margin-inline: auto;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.02em;
    border-right: unset;
  }
  footer.posi {
    position: relative;
    padding-top: 150px;
  }
  .entry_regit .entry_icon.arrow {
    margin: 0px auto 10px auto;
    padding: 2px 0px 0px 3px;
    position: absolute;
    bottom: 8px;
    right: 60px;
    font-size: 16px;
  }
  p.facility_name_second {
    font-size: 20px;
  }
  .facility_second_block_flex {
    padding: 5px 13px 20px 23px;
  }
  .image2 {
    display: none;
  }
  .guard_ttl_deco.image2.sp {
    display: block;
    text-align: center;
    margin-top: 30px;
    z-index: 1;
    top: 110px;
  }
  .mv_guard_ttl-block {
    height: 780px;
  }
  .image3 {
    display: none;
  }
  .image4 {
    display: none;
  }
  p.guard_ttl_deco.mv_guard_ttl_detail {
    top: 460px;
  }
  .image5 {
    bottom: -16px;
    left: 3%;
    width: 95%;
  }
  figure.guard_ttl_deco.image.sp {
    display: block;
    top: 310px;
    left: 10%;
  }
  p.guard_ttl_deco.mv_guard_ttl_detail {
    font-size: 20px;
    line-height: 165%;
  }
  .image1 {
    top: 45px;
    left: 3%;
    width: 75%;
    margin: 0 auto;
  }
  figure.guard_ttl_deco.image.sp img {
    width: 45%;
  }
  .orage_ttl {
    font-size: 20px;
  }
  .posi.plus {
    display: block;
  }
  .footer_query {
  padding-bottom: 104px;
  }
  .entry_block.second .what_entry:active {
    background: #FE6E31;
    color: #fff;
    transition: .4s;
  }
}
@media (max-width: 560px) {
  .yellow_txt::before {
    left: 15%;
    top: 20px;
  }
  .yellow_txt::after {
    right: 16%;
    bottom: 3px;
  }
  .display-560 {
    display: block;
  }
  figure.mv_image_side1 {
    bottom: -10px;
    left: 18%;
  }
  figure.mv_image_side2 {
    right: 18%;
    bottom: -26px;
  }
  .entry_block.second .what_entry::after {
    right: 20px;
  }
  .entry_block.second .entry_regit::after {
    right: 38px;
  }
}
@media (max-width: 550px) {
  .sircle {
    width: 70%;
    left: 14%;
  }
  figure.answer_ttl_logo {
    left: 41%;
    width: 15%;
  }
  .answer_ttl span::before {
    left: -45px;
  }
  .answer_ttl span::after {
    right: -105px;
  }
}
@media (max-width: 539px) {
  .facility_block {
    width: 90%;
    height: 100%;
  }
  .facility_image_width iframe {
    width: 90%;
  }
  .yellow_btn {
    margin-bottom: 20px;
  }
}
@media (max-width: 530px) {
    figure.deco.hoshi1 {
        width: 80px;
    }
  }
@media (max-width: 510px) {
  .entry_block.second {
    padding-top: 10px;
    }
  .entry_block.second {
    display: block;
  }
  .entry_block.second a {
    height: 40px;
  }
  .entry_block.second .what_entry {
    padding: 8px 45px 15px 20px;
    font-size: 18px;
  }
  .entry_block.second .entry_regit {
    padding: 11px 45px 15px 20px;
    font-size: 18px;
  }
  .entry_block.second .entry_regit::after {
    right: 23px;
  }
  .entry_block.second a {
    width: 300px;
  }
  .entry_block.second .what_entry::after {
    right: 45px;
  }
  .entry_block.second .entry_regit::after {
    right: 48px;
  }
}

@media (max-width: 500px) {
    .image1 {
        top: 60px;
        left: 5%;
        width: 75%;
        margin: 0 auto;
    }
  .six_block {
    grid-template-columns: repeat(1, 1fr); /* 横3列 */
    grid-template-rows: repeat(6, auto);   /* 縦2行 */
  }
  .only_block {
    width: 320px;
    margin: 0 auto;
  }
  .fukidashi {
    height: 73px;
  }
  .answer_ttl span::before {
    left: 20px;
    transform: rotate(65deg);
    top: -110px;
  }
  .answer_ttl span::after {
    right: -15px;
    transform: rotate(-65deg);
    top: -110px;
  }
  ul.result_list {    
    width: 95%;
  }
  ul.result_list {
    margin-top: 30px;
    margin-bottom: 70px;
  }
  .regi_middle p::after {
    left: 43%;
  }
  .display-500 {
    display: block;
  }
  .white_txt::before {
        left: 70px;
        top: 20px;
  }
  .white_txt::after {
        right: 70px;
        bottom: 1px;
  }
  .orage_ttl::before {
    left: 15%;
  }
  .orage_ttl::after {
    right: 15%;
  }
  p.guard_ttl_deco.mv_guard_ttl_detail {
        top: 455px;
  }
  .mv_guard_ttl-block {
        height: 760px;
  }
  .result_block p.regi_detail_expl {
    width: 95%;
  }
  .result_image2 {
    top: 175px;
    width: 30%;
  }
}
@media (max-width: 470px) {
  .regi_cap p::after {
    right: 5%;
  }
  .regi_cap p::before {
    left: 5%;
  }
  .fukidashi_second h2 {
    width: 80%;
  }
    .orage_ttl::before {
    left: 10%;
  }
  .orage_ttl::after {
    right: 10%;
  }
}
@media (max-width: 450px) {
    .sircle {
      width: 100%;
      left: 0%;
    }
    figure.answer_ttl_logo {
      left: 42%;
      width: 15%;
    }
  }
@media (max-width: 448px) {
  .result_list li {
    line-height: 160%;
  }  
  .result_list li span {
    color: #FFA100;
    display: block;
  }
  ul.result_list {
    text-align: center;
  }
}
@media (max-width: 425px) {
  .regi_detail {
    padding: 30px;
  }
  .facility_block_flex {
    display: block;
    padding: 20px 10px 20px 10%;
  }
  .facility_detail_width {
    width: 100%;
    padding-bottom: 30px !important;
  }
  .facility_image_width {
    width: 100%;
    margin: 0 auto;
  }
  .yellow_txt::before {
    left: 5%;
  }
  .yellow_txt::after {
    right: 5%;
  }
    .white_txt::before {
        left: 25px;
  }
  .white_txt::after {
        right: 25px;
  }
  .orage_ttl {
        font-size: 20px;
  }
  ul.back_white {
    padding: 30px 15px;
  }
  figure.guard_ttl_deco.image.sp {
    top: 270px;
    left: 5%;
  }
  p.guard_ttl_deco.mv_guard_ttl_detail {
    top: 390px;
    font-size: 14px;
  }
  .mv_guard_ttl-block {
    height: 620px;
  }
  .guard_ttl_deco.image2.sp {
    top: 100px;
  }
  .display-425 {
    display: block;
  }
    .orage_ttl::before {
    left: 12%;
    top: 15px;
  }
  .orage_ttl::after {
    right: 12%;
    top: 15px;
  }
  .logo {
    width: 120px;
    margin-top: 18px;
  }
  .page_sns_box.header_sns {
    width: 70px;
  }
  .menu_trigger {
    margin-top: 5px;
  }
  .result_image2 {
    top: 230px;
    width: 30%;
  }
}
@media (max-width: 424px) {
    figure.mv_image_side1 {
        left: 7%;
    }
    figure.mv_image_side2 {
        right: 7%;
    }
  }
@media (max-width: 400px) {
.h_logo {
  width: 235px;
}
.page_sns_box.header_sns ul {
  gap: 10px;
}
  .answer_ttl span {
      font-size: 30px;
  }
}
@media (max-width: 375px) {
  .image1 {
    top: 45px;
  }
  .guard_ttl_deco.image2.sp {
    top: 70px;
  }
  .only_block {
    width: 95%;
  }
  .fukidashi {
    height: 95px;
  }
  .sircle {
        width: 100%;
        left: 0%;
        height: 10%;
  }
  .fukidashi_second h2 {
    width: 95%;
  }
  .fukidashi_second h2 {
    font-size: 26px;
  }
  .regi_cap p::before{
    left: 0%;
  }
.regi_cap p::after{
    right: 0%;
  }
  .regi_middle p::after {
    left: 40%;
  }
  .regi_detail_ttl {
    font-size: 20px;
  }
  .facility_block_flex {
    padding: 20px 10px 20px 8%;
  }
  .display-375 {
    display: block;
  }
    figure.guard_ttl_deco.image.sp {
    top: 220px;
  }
  .mv_guard_ttl-block {
    height: 535px;
  }
  .answer_ttl span {
    font-size: 30px;
    position: relative;
  }
  figure.guard_ttl_deco.image.sp {
        left: 2%;
  }
   p.guard_ttl_deco.mv_guard_ttl_detail {
    top: 325px;
  }
  .flex_bnr {
    flex-wrap: wrap;
    width: 80%;
  }
  .result_image2 {
    width: 35%;
  }
}
@media (max-width: 360px) {
  .answer_ttl {
      font-size: 28px;
  }
  .entry_block.second .what_entry .entry_icon.question {
      left: 40px;
  }
  .entry_regit .entry_icon.arrow {
        right: 40px;
  }
  .image1 {
    top: 40px;
  }
  .guard_ttl_deco.image2.sp {
    top: 70px;
  }
  .guard_ttl_deco.image2.sp {
    top: 60px;
  }
  figure.guard_ttl_deco.image.sp {
    top: 205px;
  }
  p.guard_ttl_deco.mv_guard_ttl_detail {
    top: 310px;
  }
  .mv_guard_ttl-block {
    height: 510px;
  }
  figure.mv_image_side1 {
        left: 5%;
    }
  figure.mv_image_side2 {
        right: 5%;
    }
  }
  @media (max-width: 350px) {
    .menu_trigger {
      right: 20px;
    }
  .yellow_txt::before {
    left: 0%;
  }
  .yellow_txt::after {
    right: 0%;
  }
  }
  @media (max-width: 320px) {
    figure.guard_ttl_deco.image.sp {
        top: 195px;
    }
    p.guard_ttl_deco.mv_guard_ttl_detail {
        top: 295px;
    }
    .mv_guard_ttl-block {
        height: 485px;
    }
  }
  


