/* index.php reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* index menu */
#index nav.main_menu {
  position: absolute;
  top: 790px;
}
/* ====== main visual ====== */
#index .mv {
  width: 100%;
  height: 720px;
  border-top: 10px #0251c7 solid;
  position: relative;
  background-color: #207fdd;
  overflow: hidden;
}

#index .mv .mv_box {
  width: 100%;
  height: 100%;
  position: relative;
}
#index .mv li {
  width: 100%;
  height: 100%;
}
#index .mv .mv_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#index .mv .mv_copy {
  font-size: calc(100vw / 28);
  line-height: 1.4;
  font-weight: 900;
  color: #ffffff;
  text-shadow: #000000cc 2px 2px 4px, #00000055 0px 0px 6px;
}
#index .mv li:nth-of-type(1) .mv_img {
  background: url(../images/index/mv_01.jpg) no-repeat center center;
  background-size: cover;
}
#index .mv li:nth-of-type(1) .mv_copy img {
  display: block;
  max-width: 360px;
  width: 70%;
}
#index .mv li:nth-of-type(1) .mv_copy {
  position: absolute;
  right: 10%;
  bottom: 15%;
  z-index: 10;
}
#index .mv li:nth-of-type(2) .mv_img {
  background: url(../images/index/mv_02.jpg) no-repeat center center;
  background-size: cover;
}
#index .mv li:nth-of-type(2) .mv_copy {
  position: absolute;
  right: 5%;
  top: 18%;
  z-index: 10;
}
#index .mv li:nth-of-type(3) .mv_img {
  background: url(../images/index/mv_03.jpg) no-repeat center center;
  background-size: cover;
}
#index .mv li:nth-of-type(3) .mv_copy {
  position: absolute;
  left: 15%;
  top: 10%;
  z-index: 10;
}
#index .mv .mv_box li .mv_img {
  overflow: hidden;
  opacity: 0;
  transform: perspective(100px) translateZ(2rem);
  transition: transform 7s linear, opacity 0.5s ease-in-out;
}
#index .mv .mv_box li .mv_img.mv-fadein {
  overflow: visible;
  opacity: 1;
}
#index .mv .mv_box li .mv_img.mv-zoom {
  overflow: visible;
  opacity: 1;
  transform: perspective(1000px) translateZ(0);
  transition: transform 7s linear, opacity 0.5s ease-in-out;
}

/* お知らせバー */
#index .mv .shortnews_box {
  background: #003399;
  padding: 15px 0 15px 80px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 15;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
}
#index .mv .shortnews_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e6eef9;
  position: absolute;
  right: -30px;
  bottom: 0;
  z-index: -1;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
}
#index .mv .shortnews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
#index .mv .shortnews dt {
  font-weight: bold;
}
#index .mv .shortnews dd {
  background: #ffffff;
  padding: 6px 30px 8px 10px;
  display: flex;
  align-items: center;
}
#index .mv .shortnews dd::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin-top: 3px;
  margin-right: 10px;
  background: #8cd8f5;
  border-radius: 5px;
}

@media screen and (max-width: 1500px) {
  #index .mv .mv_copy {
    font-size: calc(100vw / 24);
  }
}
/* タブレット用のスタイル */
@media screen and (max-width: 1025px) {
  #index .mv .mv_copy {
    font-size: calc(100vw / 20);
  }
  #index .mv li:nth-of-type(1) .mv_copy {
    right: 5%;
    bottom: 12%;
  }
  #index .mv li:nth-of-type(2) .mv_copy {
    right: 5%;
    top: 8%;
  }
  #index .mv li:nth-of-type(3) .mv_copy {
    left: 5%;
    top: 17%;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .mv {
    max-height: 400px;
    height: 100vw;
    border-top: none;
  }
  #index .mv .mv_copy {
    font-size: calc(100vw / 14);
    line-height: 1.4;
  }
  #index .mv li:nth-of-type(1) .mv_copy img {
    display: block;
    max-width: 45vw;
  }
  #index .mv li:nth-of-type(1) .mv_copy {
    right: 2%;
    bottom: 25%;
    line-height: 1.2;
  }
  #index .mv li:nth-of-type(2) .mv_copy {
    right: 5%;
    top: 8%;
  }
  #index .mv li:nth-of-type(3) .mv_copy {
    left: 5%;
    top: 15%;
  }
  #index .mv .shortnews_box {
    padding: 2% 0 2% 17%;
  }
  #index .mv .shortnews_box::before {
    position: absolute;
    right: -4vw;
    bottom: 0;
  }
  #index .mv .shortnews dd {
    width: 100%;
    padding: 1% 0 1% 2%;
    font-size: calc(100vw / 28);
  }
  #index .mv .shortnews {
    gap: 5px;
  }
}
/* @media screen and (orientation: landscape) {
  #index .mv .mv_copy {
    font-size: calc(100vw / 18);
    line-height: 1.4;
  }
  #index .mv .shortnews dd {
    font-size: calc(100vw / 38);
  }
} */
@media screen and (max-width: 391px) {
  #index .mv {
    max-height: 400px;
    height: 100vw;
    border-top: none;
  }
  #index .mv .mv_copy {
    font-size: calc(100vw / 14);
    line-height: 1.4;
  }
  #index .mv li:nth-of-type(1) img {
    display: block;
    max-width: 46vw;
  }
  #index .mv li:nth-of-type(1) .mv_copy {
    left: 5%;
    bottom: 16%;
    line-height: 1.2;
  }
  #index .mv li:nth-of-type(2) .mv_copy {
    right: 5%;
    top: 8%;
  }
  #index .mv li:nth-of-type(3) .mv_copy {
    left: 5%;
    top: 15%;
  }
  #index .mv .shortnews_box {
    padding: 2% 0 2% 17%;
  }
  #index .mv .shortnews_box::before {
    position: absolute;
    right: -4vw;
    bottom: 0;
  }
  #index .mv .shortnews dd {
    width: 100%;
    padding: 1% 0 1% 2%;
    font-size: calc(100vw / 28);
  }
  #index .mv .shortnews {
    gap: 5px;
  }
}
/* introducs */
#index .intro_box {
  padding-top: 60px;
  background: #ffffff;
  position: relative;
}
#index .intro_box .intro_wpap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 6vw 10vw 6vw 0;
  background: url(../images/index/intor_bg.png) no-repeat right top;
  background-size: contain;
  position: relative;
}
#index .intro_box .intro_txt {
  width: 56%;
  line-height: 1.8;
}
#index .intro_box .intro_txt .intro_hl {
  width: 100%;
  margin: 30px 0;
  position: relative;
}
#index .intro_box .intro_txt .intro_hl span {
  display: block;
  padding: 10px 10px 15px 60px;
  font-size: calc(100vw / 43);
  font-weight: bold;
  color: #ffffff;
  z-index: 1;
}

#index .intro_box .intro_txt p {
  padding-left: 60px;
}
#index .intro_box .intro_img {
  width: 44%;
  position: relative;
}
#index .intro_box .intro_img img:nth-of-type(1) {
  width: 65%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
#index .intro_box .intro_img img:nth-of-type(2) {
  width: 65%;
  position: absolute;
  top: 18vh;
  left: 0;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1025px) {
  #index .intro_box .intro_wpap {
    padding: 4vw 4vw 4vw 4vw;
  }
  #index .intro_box .intro_txt .intro_hl {
    margin: 30px 0 10px;
  }
  #index .intro_box .intro_txt .intro_hl span {
    padding: 10px 10px 15px 30px;
  }
  #index .intro_box .intro_txt p {
    padding-left: 30px;
  }
  #index .intro_box .intro_txt {
    width: 60%;
    line-height: 1.8;
  }
  #index .intro_box .intro_img {
    width: 40%;
    position: relative;
  }
  #index .intro_box .intro_img img:nth-of-type(1) {
    width: 85%;
  }
  #index .intro_box .intro_img img:nth-of-type(2) {
    width: 85%;
    top: 16vw;
  }
}
@media screen and (max-width: 811px) {
  /*  #index .intro_box .intro_wpap{
    display: block;
    padding: 10vw;
  }*/
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .intro_box {
    padding: 0;
    font-size: calc(100vw / 28);
    height: 210vw;
    background: url(../images/index/intor_bg_sp.png) no-repeat left bottom;
    background-size: 100%;
  }
  #index .intro_box .intro_wpap {
    background: none;
    display: block;
    padding: 5vw 5vw 5vw 0;
  }

  #index .intro_box .intro_txt {
    width: 100%;
    line-height: 1.8;
  }
  #index .intro_box .intro_txt .intro_hl {
    width: 100%;
    margin: 4vw 0;
  }
  #index .intro_box .intro_txt .intro_hl span {
    padding: 1vw 2vw 2vw 10vw;
    font-size: calc(100vw / 16);
    line-height: 1.4;
  }
  #index .intro_box .intro_txt p {
    padding-left: 10vw;
  }
  #index .intro_box .intro_img {
    width: 100%;
    margin: 10px auto 0;
    position: absolute;
    bottom: 0;
  }
  #index .intro_box .intro_img img:nth-of-type(1) {
    width: 65%;
    position: absolute;
    top: 0;
    right: 5vw;
    z-index: 1;
  }
  #index .intro_box .intro_img img:nth-of-type(2) {
    width: 65%;
    position: absolute;
    top: 30vw;
    left: 5vw;
  }
}
/* @media screen and (orientation: landscape) {
  #index .intro_box {
    font-size: calc(100vw / 38);
  }
  #index .intro_box .intro_txt .intro_hl {
    font-size: calc(100vw / 18);
  }
} */
/* work */
#index .work {
  background: #ebf0f2;
  padding-bottom: 80px;
}
#index .work .work_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
#index .work .work_box .work_img {
  width: 40%;
  overflow: hidden;
  margin-bottom: 20px;
}
#index .work .work_box .work_cntns {
  width: 60%;
  padding: 80px 50px 30px 10vw;
  position: relative;
}
#index .work .work_box .work_cntns dt {
  margin-bottom: 40px;
  position: relative;
  display: block;
}
#index .work .work_box .work_cntns dt h3 {
  font-size: calc(100vw / 46);
  font-weight: bold;
  transition: 0.8s;
  position: relative;
}
#index .work .work_box .work_cntns dt h3 span {
  position: relative;
  z-index: 1;
}
#index .work .work_box .work_cntns dt:after,
#index .work .work_box .work_cntns dt:before {
  content: "";
  display: block;
  width: 1%;
  height: 12px;
  transform: skewx(-30deg);
}
#index .work .work_box .work_cntns dt:before {
  background: #ffcc00;
  position: absolute;
  top: 50px;
  left: -12vw;
  z-index: 2;
}
#index .work .work_box .work_cntns dt:after {
  background: #ffff00;
  position: absolute;
  top: 57px;
  left: -13vw;
  z-index: 1;
}
#index .work .work_box .work_cntns dt.is-active:after,
#index .work .work_box .work_cntns dt.is-active:before {
  width: 100%;
  transition: 0.8s;
}
#index .work .work_box .work_cntns dd {
  line-height: 1.8;
}

#index .work .work_list {
  width: fit-content;
  margin: auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 30px;
}
#index .work .work_list .work_list_hl {
  width: fit-content;
  margin: 10px auto 40px;
  text-align: center;
  font-size: 160%;
  display: flex;
  align-items: center;
  gap: 20px;
}
/* ３つのサービスのわってしてるやつ */
#index .work .work_list .work_list_hl::after,
#index .work .work_list .work_list_hl::before {
  content: "";
  display: block;
  width: 30px;
  height: 60px;
  background: url(../images/index/wa-i01.png) no-repeat 100%;
}
#index .work .work_list .work_list_hl::after {
  transform: scale(-1, 1);
}

/* ３つのサービスのアンダーライン */
#index .work .work_list .work_list_hl span {
  position: relative;
}
#index .work .work_list .work_list_hl span:after,
#index .work .work_list .work_list_hl span:before {
  content: "";
  display: block;
  width: 96%;
  height: 10px;
  transform: skewx(-30deg);
}
#index .work .work_list .work_list_hl span:before {
  background: #ffcc00;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 2;
}
#index .work .work_list .work_list_hl span:after {
  background: #ffff00;
  position: absolute;
  top: 57px;
  left: 0;
  z-index: 1;
}
#index .work .work_list_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  gap: 40px;
}
#index .work .work_list_box .work_items {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: calc((90% / 3) - 40px);
  border: 2px solid #0251c7;
  background: #ffffff;
  transition: 0.4s;
  position: relative;
}
#index .work .work_list_box .work_items::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #95a0b1;
  transition: 0.4s;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
#index .work .work_list_box .work_items .work_name {
  width: 100%;
  height: 20vh;
  max-height: 220px;
  background: #0251c7;
  font-size: 120%;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
#index .work .work_list_box .work_items .work_names {
  margin: auto;
  text-shadow: #000000cc 2px 2px 4px, #00000055 0px 0px 6px;
  position: absolute;
  opacity: 0.7;
  bottom: 40%;
  left: 0;
  right: 0;
  z-index: 2;
}
#index .work .work_list_box .work_items .work_img {
  width: 100%;
  text-align: center;
  line-height: 0;
  overflow: hidden;
  transition: 0.4s;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#index .work .work_list_box .work_items:hover {
  box-shadow: 0 0 30px #0251c755;
  transition: 0.4s;
}
#index .work .work_list_box .work_items:hover::before {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}
#index .work .work_list_box .work_items:hover .work_name .work_names {
  opacity: 1;
  font-size: 110%;
  transition: 0.4s;
}
#index .work .work_list_box .work_items:hover .work_name img {
  transform: scale(1.1);
  transition: 0.4s;
}
#index .work .work_list_box .work_items .work_contnt ul {
  width: 100%;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#index .work .work_list_box .work_items .work_contnt ul li {
  font-size: 90%;
}
#index .work .work_list_box .work_items .work_link {
  width: 80%;
  margin: auto auto 20px;
  z-index: 10;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1025px) {
  #index .work .work_list_box {
    gap: 20px;
  }
  #index .work .work_box .work_cntns {
    padding: 5vw 3vw 0 3vw;
    margin-bottom: 20px;
  }
  #index .work .work_box .work_cntns dt {
    margin-bottom: 30px;
  }
  #index .work .work_box .work_cntns dt:after,
  #index .work .work_box .work_cntns dt:before {
    width: 100%;
    height: 8px;
  }
  #index .work .work_box .work_cntns dt:before {
    top: 32px;
    left: -5vw;
  }
  #index .work .work_box .work_cntns dt:after {
    top: 38px;
    left: -8vw;
  }
  #index .work .work_box .work_cntns dt h3 {
    font-size: calc(50vw / 18);
    font-weight: bold;
  }
  #index .work .work_list {
    width: 90%;
    padding: 20px;
    border-radius: 20px;
  }
  #index .work .work_list .work_list_hl {
    width: fit-content;
    margin: 0 auto 20px;
    font-size: 180%;
    gap: 10px;
  }

  /* ３つのサービスのわってしてるやつ */
  #index .work .work_list .work_list_hl::after,
  #index .work .work_list .work_list_hl::before {
    width: 26px;
    height: 50px;
    background-size: contain;
  }
  /* ３つのサービスのアンダーライン */
  #index .work .work_list .work_list_hl span::after,
  #index .work .work_list .work_list_hl span::before {
    width: 100%;
    height: 8px;
  }
  #index .work .work_list .work_list_hl span:before {
    background: #ffcc00;
    position: absolute;
    top: 32px;
    right: 0;
    z-index: 2;
  }
  #index .work .work_list .work_list_hl span:after {
    background: #ffff00;
    position: absolute;
    top: 38px;
    left: 0;
    z-index: 1;
  }
  #index .work .work_list_box .work_items .work_contnt ul {
    padding: 10px 10px 20px 10px;
    gap: 5px 10px;
  }
  #index .work .work_list_box .work_items {
    width: calc((100% / 3) - 20px);
  }
  #index .work .work_list_box .work_items::before {
    width: 102%;
    height: 102%;
    top: 4px;
    left: 4px;
    z-index: 5;
  }
  #index .work .work_list_box .work_items .work_name {
    height: 10vh;
  }
  #index .work .work_list_box .work_items .work_names {
    opacity: 1;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .work .work_box {
    justify-content: center;
    margin-bottom: 6vw;
  }
  #index .work .work_box .work_cntns {
    padding: 0 5vw;
    margin-bottom: 20px;
  }
  #index .work .work_box .work_cntns dt {
    margin-bottom: 8vw;
    position: relative;
  }
  #index .work .work_box .work_cntns dt h3 {
    font-size: calc(100vw / 18);
    font-weight: bold;
  }
  #index .work .work_box .work_cntns dt:after,
  #index .work .work_box .work_cntns dt:before {
    width: 100%;
    height: 8px;
  }
  #index .work .work_box .work_cntns dt:before {
    top: 7vw;
    left: -8vw;
  }
  #index .work .work_box .work_cntns dt:after {
    top: 9vw;
    left: -14vw;
  }
  #index .work .work_list_box .work_items {
    max-width: 400px;
    width: 100%;
  }
  #index .work .work_list {
    width: 90%;
    padding: 6vw;
    border-radius: 10px;
  }
  #index .work .work_list .work_list_hl {
    margin: 3vw auto 8vw;
  }
  /* ３つのサービスのわってしてるやつ */
  #index .work .work_list .work_list_hl::after,
  #index .work .work_list .work_list_hl::before {
    width: 30px;
    height: 60px;
    background-size: contain;
  }
  /* ３つのサービスのアンダーライン */
  #index .work .work_list .work_list_hl span::after,
  #index .work .work_list .work_list_hl span::before {
    width: 110%;
    height: 8px;
  }
  #index .work .work_list .work_list_hl span:before {
    top: 16vw;
    right: 0;
  }
  #index .work .work_list .work_list_hl span:after {
    top: 17vw;
    left: 0;
  }
  #index .work .work_list_box .work_items .work_name {
    height: 30vh;
  }
  #index .work .work_list_box .work_items .work_names {
    font-size: 120%;
  }
  #index .work .work_box .work_img {
    width: 100%;
  }
  #index .work .work_box .work_cntns {
    width: 100%;
    padding: 10vw 5vw 3vw 5vw;
    margin: 0;
  }
  #index .work .work_box2 ul {
    gap: 10px;
  }
  #index .work .work_box2 ul li {
    max-width: 200px;
    width: calc((90vw - 30px) / 3);
  }
}

@media screen and (max-width: 391px) {
}

/* reform */
#index .reform {
  padding: 80px 0 0;
  background: #ffffff url(../images/index/minreform_bg.jpg) no-repeat top center;
  background-size: 100%;
  position: relative;
  text-align: center;
}
#index .reform .reform_hl {
  font-size: 180%;
  position: relative;
}
#index .reform .reform_hl::before {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: 106px;
  height: 120px;
  background: url(../images/index/house_icon.png) no-repeat center;
  background-size: 100%;
}
#index .reform p {
  margin: 20px auto;
  line-height: 1.6;
}
#index .reform .reform_hl2 {
  width: fit-content;
  margin: 10px auto 12px;
  padding: 10px 40px;
  background: #64bef4;
  color: #ffffff;
  border-radius: 20px;
}
#index .reform .reform_items {
  width: 90%;
  max-width: 750px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
#index .reform .reform_items li {
  width: calc((100% / 5) - 10px);
}

/* タブレット用のスタイル */
@media screen and (max-width: 1025px) {
  #index .reform {
    margin-bottom: 4vw;
  }
  #index .reform .reform_items {
    display: flex;
    flex-wrap: wrap;
    width: 61%;
  }
  #index .reform .reform_hl::before {
    margin: 0 auto 10px;
    width: 60px;
    height: 70px;
  }
  #index .reform .reform_items {
    width: 90%;
    max-width: 620px;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .reform {
    padding: 6vw 0 0 0;
  }
  #index .reform .reform_items {
    width: 100%;
  }
  #index .reform .reform_hl {
    font-size: 160%;
  }
  #index .reform .reform_hl::before {
    width: 14vw;
    height: 18vw;
    margin: 0 auto 1vw;
  }
  #index .reform .reform_hl2 {
    width: fit-content;
    margin: 10px auto 12px;
    padding: 3vw 5vw;
    background: #64bef4;
    color: #ffffff;
    border-radius: 20px;
  }
  #index .reform .reform_items li {
    width: calc((90% / 3) - 10px);
  }
}
/* @media screen and (orientation: landscape) {
  #index .work .work_list_box .work_items {
    width: calc((100% / 3) - 20px);
  }
  #index .reform .reform_items li {
    width: calc((100% / 5) - 10px);
  }
} */
@media screen and (max-width: 391px) {
}

/* pickup */
#index .pickup {
  background: #ffffe0;
  padding-bottom: 80px;
}
#index .pickup::before {
  content: "";
  display: block;
  width: 100%;
  height: 15vw;
  background: url(../images/index/pickup_bg.jpg) no-repeat top center;
  background-size: 100%;
}

#index .pickup .pickup_hl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  font-size: 160%;
  position: relative;
  text-align: center;
  color: #000000;
}

#index .pickup .pickup_hl::before,
#index .pickup .pickup_hl::after {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  background: #2e3f51;
  border-radius: 5px;
  transform: rotate(45deg);
}
#index .pickup .pickup_hl::after {
  transform: rotate(135deg);
}
#index .pickup .pickup_bnr {
  max-width: 960px;
  width: 60%;
  margin: 20px auto 60px;
  overflow: hidden;
}
#index .pickup .pickup_bnr:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}
#index .pickup .camp_box {
  max-width: 960px;
  width: 100%;
  margin: 20px auto;
  padding: 20px 25px;
  background: #ffffff;
  border-radius: 10px;
}
#index .pickup .camp_bnr {
  max-width: 860px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
#index .pickup .camp_bnr li {
  width: calc((100% / 3) - 15px);
  transition: all 0.3s ease 0s;
  border: 1px solid #ebf0f2;
  line-height: 0;
}
#index .pickup .camp_bnr li a {
  width: 100%;
  height: 100%;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}
#index .pickup .camp_bnr li:hover {
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
#index .pickup .thumbNail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1500px) {
}
/* タブレット用のスタイル */
@media screen and (max-width: 1025px) {
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .pickup {
    background: #ffffe0;
    padding-bottom: 10vw;
  }
  #index .pickup::before {
    content: "";
    display: block;
    width: 100%;
    height: 15vw;
    background: url(../images/index/pickup_bg.jpg) no-repeat bottom center;
    background-size: 100%;
  }
  #index .pickup .pickup_hl {
    font-size: 120%;
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
  #index .pickup .pickup_hl::before,
  #index .pickup .pickup_hl::after {
    content: "";
    display: block;
    width: 30px;
  }
  #index .pickup .pickup_bnr {
    width: 90%;
  }
  #index .pickup .camp_bnr {
    margin: 3vw auto;
    justify-content: center;
    gap: 15px;
  }
  #index .pickup .camp_bnr li {
    width: calc((100% / 2) - 20px);
    transition: all 0.3s ease 0s;
  }
}
/* @media screen and (orientation: landscape) {
  #index .pickup .camp_bnr li {
    width: calc((100% / 3) - 20px);
  }
} */
@media screen and (max-width: 391px) {
}
