/* アニメーション定義 */
@keyframes twinkle {
  0%, 100% {
    opacity: .2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@keyframes spin1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes contraction1 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* ===========================================================================
  .bg
============================================================================ */
.bg_illust {
  height: 100vw;
  position: fixed;
  top: 0;
  width: 100vh;
  z-index: -1;
}
.bg_illust .illusts {
  height: 100vh;
  opacity: .56;
  position: relative;
  width: 100vw ;
}
.bg_illust .illusts .illust {
  position: absolute;
}
.bg_illust .illusts .illust01 {
  left: 9rem;
  top: 9rem;
  width: 21.7rem;
}
.bg_illust .illusts .illust02 {
  left: -1.7rem;
  top: 45%;
  width: 23.7rem;
}
.bg_illust .illusts .illust03 {
  bottom: 2.6rem;
  left: 1.7rem;
  width: 20.3rem;
}
.bg_illust .illusts .illust04 {
  right: -1.6rem;
  top: 9.5rem;
  width: 21.9rem;
}
.bg_illust .illusts .illust05 {
  right: 14.4rem;
  top: 50%;
  width: 22.4rem;
}
.bg_illust .illusts .illust06 {
  bottom: 2.4em;
  right: 3rem;
  width: 17rem;
}
@media screen and (max-width: 768px) {
  .bg_illust .illusts .illust01 {
    left: 2rem;
    top: 2rem;
    width: calc(21.7rem * .6);
  }
  .bg_illust .illusts .illust02 {
    left: -1.7rem;
    top: 45%;
    width: calc(23.7rem * .6);
  }
  .bg_illust .illusts .illust03 {
    bottom: 2.6rem;
    left: 1.7rem;
    width: calc(20.37rem * .6);
  }
  .bg_illust .illusts .illust04 {
    right: -1.6rem;
    top: 4rem;
    width: calc(21.9rem * .6);
  }
  .bg_illust .illusts .illust05 {
    right: 3rem;
    top: 50%;
    width: calc(22.4rem * .6);
  }
  .bg_illust .illusts .illust06 {
    bottom: -2rm;
    right: .5rem;
    width: calc(17rem * .6);
  }
}
/* main{opacity: 0;} */
/* ===========================================================================
  .header_menu
============================================================================ */
.header_menu .hamburger .btn {
  position: fixed;
  right: 2.5rem;
  top: 2.5rem;
  transition: .3s;
  width: 7rem;
  z-index: 999;
}
.header_menu .hamburger .btn02 {
  opacity: 0;
  pointer-events: none;
}
.menu_open .header_menu .hamburger .btn02 {
  opacity: 1;
  pointer-events: all;
}
.header_menu .container {
  align-items: center;
  background: rgba(255,255,255,.95);
  display: flex;
  flex-direction: column;
  height: 100vh;
  /* height: 100svh; */
  left: 0;
  opacity: 0;
  overflow: auto;
  /* justify-content: center; */
  padding: 6rem 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: .3s;
  transition: .3s;
  width: 100%;
  z-index: 998;
}
.menu_open .header_menu .container {
  opacity: 1;
  pointer-events: all;
}
.header_menu .menu_contents {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: auto;
  width: 100%;
}
.header_menu .menu_contents .content01 {
  width: 100%;
}
.header_menu .menu_contents .content01 .home {
  align-items: center;
  background-color: #004bb1;
  background-image: url(../img/tour/factory06.svg);
  background-position: right 2.6rem bottom -1.5px;
  background-repeat: no-repeat;
  background-size: 4.9rem;
  border: solid 1px #004bb1;
  border-radius: 1rem;
  color: #fff;
  display: flex ;
  font-size: 1.8rem;
  font-weight: 800;
  height: 5.5rem;
  padding: 1.6rem;
  position: relative;
  width: calc((100% - 2rem) / 2);
}
.header_menu .menu_contents .content01 .home::before {
  background-image: url(../img/tour/factory05.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -1.5px;
  content: '';
  height: 3.3rem;
  position: absolute;
  right: 2.6rem;
  transition: .3s;
  width: 4.9rem;
}
.header_menu .menu_contents .content01 .home:hover:before {
  opacity: 0;
}
.header_menu .menu_contents .content01 .home:hover {
  background-color: #fff;
  color: #004bb1;
}
.header_menu .menu_contents .content02 {
  margin-top: 1.7rem;
  width: 100%;
}
.header_menu .menu_contents .content02 .h2 {
  color: #004bb1;
  font-size: 2rem;
  font-weight: 800;
  height: 4.5rem;
}
.header_menu .menu_contents .content02 .links_flex {
  display: flex;
  gap: 2rem;
}
.header_menu .menu_contents .content02 .links_flex .links {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  width: calc((100% - 2rem) / 2);
}
.header_menu .menu_contents .content02 .links_flex .links .link {
  align-items: center;
  background: #fff;
  border: solid 1px #004bb1;
  border-radius: 1rem;
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem 2rem;
  position: relative;
}
.header_menu .menu_contents .link:hover {
  opacity: .7;
}
.header_menu .menu_contents .content02 .links_flex .links .link::before {
  background-image: url(../img/tour/arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 2.4rem;
  margin: auto;
  position: absolute;
  right: 2rem;
  top: 0;
  width: 1.8rem;
}
.header_menu .menu_contents .content02 .links_flex .links .link .icon {
  width: 4.8rem;
}
.header_menu .menu_contents .content02 .links_flex .links .link .txts {
  white-space: nowrap;
  width: calc(100% - 6.3rem);
}
.header_menu .menu_contents .content02 .links_flex .links .link .txts .h3 {
  align-items: center;
  color: #004bb1;
  display: flex;
  font-weight: 800;
  height: 4.8rem;
  line-height: calc(24/16);
}
.header_menu .menu_contents .content02 .links_flex .links .link .txts .p {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  height: 3.4rem;
  line-height: calc(17/14);
  margin-top: .5rem;
}
.header_menu .menu_contents .content03 {
  padding-top: 4.5rem;
  width: 25rem;
}
.header_menu .menu_contents .content03 .links {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
.header_menu .menu_contents .content03 .links .link {
  border-bottom: solid 1px #004bb1 ;
  border-top: solid 1px #004bb1 ;
  padding: 1.5rem 0;
  position: relative;
}
.header_menu .menu_contents .content03 .links .link::after {
  background-image: url(../img/tour/arrow02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 3.2rem;
  margin: auto;
  position: absolute;
  right: 1rem;
  top: 0;
  width: 3.2rem;
}
.header_menu .menu_contents .content03 .links .link .h3 {
  font-size: 1.4rem;
  line-height: calc(17/14);
}
.header_menu .menu_contents .content03 .links .link .p {
  color: #004bb1;
  font-weight: 800;
  line-height: calc(24/15);
  margin-top: .9rem;
}

.header_menu .menu_contents .content04 {
  border-top: dashed 1px #004bb1;
  padding-top: 3rem;
  width: 100%;
}
.header_menu .menu_contents .content04 .links {
  display: flex;
  gap: 1.7rem 2rem;
}
.header_menu .menu_contents .content04 .links .link {
  align-items: center;
  background: #fff;
  border: solid 1px #004bb1;
  border-radius: 1rem;
  color: #004bb1;
  display: flex;
  font-weight: 800;
  gap: 1.5rem;
  height: 5.5rem;
  padding: 1.2rem 2rem;
  position: relative;
  width: calc((100% - 2rem) / 2);
}
.header_menu .menu_contents .content04 .links .link::before {
  background-image: url(../img/tour/arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 2.4rem;
  margin: auto;
  position: absolute;
  right: 2rem;
  top: 0;
  width: 1.8rem;
}
@media screen and (max-width: 768px) {
  .header_menu .hamburger .btn {
    right: 1.5rem;
    top: 1.8rem;
    width: 5rem;
  }
  .header_menu .container {
    padding: 3.4rem 1.5rem 8rem;
  }
  .header_menu .menu_contents {
    display: block;
    margin: 0;
  }
  .header_menu .menu_contents .content01 .home {
    background-position: right 1.6rem bottom -1.5px;
    background-size: 4.5rem;
    border-radius: .65rem;
    height: 6rem;
    padding: 1.9rem;
    width: 17rem;
  }
  .header_menu .menu_contents .content01 .home::before {
    height: 4.5rem;
    right: 1.6rem;
    width: 4.5rem;
  }
  .header_menu .menu_contents .content02 {
    margin-top: 2rem;
    width: 100%;
  }
  .header_menu .menu_contents .content02 .h2 {
    font-size: 2rem;
    height: auto;
    margin-bottom: .5rem;
  }
  .header_menu .menu_contents .content02 .links_flex {
    flex-direction: column;
    gap: .8rem;
  }
  .header_menu .menu_contents .content02 .links_flex .links {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    width: 100%;
  }
  .header_menu .menu_contents .content02 .links_flex .links .link {
    border-radius: .65rem;
    gap: 1rem;
    padding: .6rem 1rem;
  }
  .header_menu .menu_contents .content02 .links_flex .links .link::before {
    right: .8rem;
    width: 1rem;
  }
  .header_menu .menu_contents .content02 .links_flex .links .link .txts {
    width: 100%;
  }
  .header_menu .menu_contents .content02 .links_flex .links .link .txts .h3 {
    height: 4rem;
    line-height: calc(18/14);
  }
  .header_menu .menu_contents .content02 .links_flex .links .link .txts .p {
    display: none;
    height: 3.4rem;
    margin-top: 0;
  }
  .header_menu .menu_contents .content03 {
    padding-top: 3rem;
    width: 100%;
  }
  .header_menu .menu_contents .content03 .links {
    display: flex;
    flex-direction: column;
    gap: .8rem;
  }
  .header_menu .menu_contents .content03 .links .link {
    border: none;
    display: flex;
    padding: 0;
  }
  .header_menu .menu_contents .content03 .links .link::after {
    display: none;
  }
  .header_menu .menu_contents .content03 .links .link .h3 {
    display: none;
  }
  .header_menu .menu_contents .content03 .links .link .p {
    margin-top: 0;
  }
  .header_menu .menu_contents .content03 .links .link .p::before {
    color: #004bb1;
    content: '●';
  }
  .header_menu .menu_contents .content04 {
    margin-top: 1.6rem;
    padding-top: 1.6rem;
  }
  .header_menu .menu_contents .content04 .links {
    gap: .8rem;
  }
  .header_menu .menu_contents .content04 .links .link {
    border-radius: .65rem;
    gap: 1rem;
    padding: .6rem 1rem;
    width: 100%;
  }
  .header_menu .menu_contents .content04 .links .link::before {
    right: .8rem;
    width: 1rem;
  }
}
/* ===========================================================================
  top_fv
============================================================================ */
.top_fv {
  background: #ccc;
  /* background-image: url(../img/tour/fv_bg.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.top_fv video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.top_fv .container::before {
  background: #ececec;
  content: '';
  height: 100%;
  mix-blend-mode: multiply;
  opacity: .49;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.top_fv .wrap01 {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 8rem 0 7rem;
  position: relative;
  z-index: 3;
}
.top_fv .wrap01 .logo {
  left: -2.5rem;
  position: relative;
  width: 42.1rem;
}
.top_fv .wrap01 .p1 {
  left: -1rem;
  margin-top: 1.8rem;
  position: relative;
  width: 42.46rem;
}
.top_fv .wrap01 .btns {
  display: flex;
  gap: 4.5rem;
  justify-content: center;
  margin-top: 3rem;
}
.top_fv .wrap01 .btns .btn {
  align-items: center;
  background: #fff;
  border: solid 3px #004bb1;
  border-radius: 100rem;
  color: #004bb1;
  display: flex;
  font-weight: 800;
  height: 5.8rem;
  justify-content: center;
  position: relative;
  width: 32rem;
}
.top_fv .wrap01 .btns .btn::before, .top_fv .wrap01 .btns .btn::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 2.8rem;
  margin: auto;
  position: absolute;
  right: 1.5rem;
  top: 0;
  transition: .3s;
  width: 3.5rem;
}
.top_fv .wrap01 .btns .btn::before {
  background-image: url(../img/tour/icon_sougankyou_w.svg);
}
.top_fv .wrap01 .btns .btn::after {
  background-image: url(../img/tour/icon_sougankyou.svg);
}
.top_fv .wrap01 .btns .btn:hover {
  background: #004bb1;
  color: #fff;
}
.top_fv .wrap01 .btns .btn:hover:after {
  opacity: 0;
}
.top_fv .wrap01 .partners {
  bottom: 1.7rem;
  font-size: 1.2rem;
  position: absolute;
  right: 2rem;
  text-shadow: 0 0 .3rem rgba(255,255,255,.8);
}
.top_fv .wrap01 .partners dl {
  display: flex;
  font-weight: 400;
}
.top_fv .wrap01 .partners dl dt {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top_fv .wrap01 {
    padding: 6rem 1.5rem 6rem;
  }
  .top_fv .wrap01 .logo {
    left: -1.7rem;
    width: calc(42.1rem * .7);
  }
  .top_fv .wrap01 .p1 {
    left: -.7rem;
    width: calc(42.46rem * .7);
  }
  .top_fv .wrap01 .btns {
    flex-direction: column;
    gap: 3rem;
    width: 100%;
  }
  .top_fv .wrap01 .btns .btn {
    width: 100%;
  }
  .top_fv .wrap01 .partners {
    align-items: center;
    bottom: 1.7rem;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 2rem;
    right: 0;
  }
  .top_fv .wrap01 .partners dl {
    display: flex;
    font-weight: 500;
  }
}
/* ===========================================================================
  top01
============================================================================ */
.top01 {
  overflow: hidden;
}
.top01 .wrap01 {
  padding: 5.6rem 0 7.7rem;
  position: relative;
}
.top01 .wrap01 .h2 {
  background-image: url(../img/tour/cloud01.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: 4.9rem;
  font-weight: 500;
  height: 54rem;
  left: -21.8rem;
  line-height: normal;
  padding-left: 27.3rem;
  padding-left: 15rem;
  padding-top: 11.1rem;
  position: absolute;
  top: 0;
  top: -4rem;
  width: 66.25rem;
}
.top01 .wrap01 .h2::before {
  animation: twinkle 2s ease-in-out infinite;
  background-image: url(../img/tour/stars01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 8.3rem;
  position: absolute;
  right: -2rem;
  top: 10.4rem;
  width: 4rem;
}
.top01 .wrap01 .h2 strong {
  color: #004bb1;
  font-weight: 500;
}
.top01 .wrap01 .movie_area {
  background: #fff;
  border: solid 3px #004bb1;
  border-radius: 1.5rem;
  display: block;
  margin-left: auto;
  padding: 3rem 3rem 1.2rem;
  position: relative;
  width: 45.1rem;
}
.top01 .wrap01 .movie_area::before {
  background-color: #004bb1;
  background-image: url(../img/quiz/bg_line.svg);
  background-repeat: no-repeat;
  background-size: 111.6rem;
  border-radius: 1.5rem;
  bottom: -1.5rem;
  content: '';
  height: 100%;
  position: absolute;
  right: -1.2rem;
  width: 100%;
  z-index: -1;
}
.top01 .wrap01 .movie_area .deco {
  animation: spin1 5s linear infinite;
  background-image: url(../img/tour/icon_circle01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 9rem;
  left: -3.6rem;
  position: absolute;
  top: -3.6rem;
  width: 9rem;
  z-index: 2;
}

.top01 .wrap01 .movie_area .movie {
  aspect-ratio: 383/250;
  background: #ccc;
  position: relative;
}
.top01 .wrap01 .movie_area .movie img {
  height: 100%;
  object-fit: cover;
  transition: .3s;
  width: 100%;
}
.top01 .wrap01 .movie_are:hover .movie img {
  transform: scale(1.1);
}
.top01 .wrap01 .movie_area .movie::before {
  background: #afafaf;
  content: '';
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  transition: .3s;
  width: 100%;
}
.top01 .wrap01 .movie_area:hover .movie::before {
  opacity: 0;
}
.top01 .wrap01 .movie_area .movie::after {
  background-image: url(../img/tour/icon_play01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 4.3rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.3rem;
}
.top01 .wrap01 .movie_area span {
  color: #004bb1;
  display: block;
  margin-top: 1.2rem;
  text-align: center;
}
.top01 .wrap01 .p1 {
  font-size: 2rem;
  line-height: 2;
  margin-top: 5.8rem;
  position: relative;
  text-align: center;
}
.top01 .wrap01 .p1 strong {
  color: #004bb1;
}
.top01 .wrap01 .p1 strong.big {
  font-size: 2.6rem;
}
/* モーダルの背景とコンテナ */
.modal_bg .close {
  background-image: url(../img/tour/close01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 4rem;
  position: absolute;
  right: 1.3rem;
  top: 1.3rem;
  width: 4rem;
}
.modal_container {
  background: #fff;
  border-radius: .5rem;
  left: 50%;
  max-height: 90%;
  max-width: 90%;
  overflow: auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.youtube_modal {
  background: rgba(0,0,0,.6);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: auto;
  padding: 1.5rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
}
.youtube_modal.active {
  display: flex;
}
.youtube_modal .close {
  background-image: url(../img/tour/close01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 4rem;
  position: absolute;
  right: 1.3rem;
  top: 1.3rem;
  width: 4rem;
}
.youtube_modal .youtube {
  aspect-ratio: 16/9;
  background: #000;
  margin: auto;
  max-width: 100rem;
  width: 100%;
}
.youtube_modal .youtube iframe {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top01 .wrap01 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 1.5rem 8rem;
  }
  .top01 .wrap01 .h2 {
    align-items: flex-start;
    display: flex;
    font-size: 3rem;
    height: auto;
    justify-content: center;
    left: -3rem;
    padding: 6rem 0 8rem;
    position: relative;
    top: -1rem;
    width: 100%;
  }
  .top01 .wrap01 .h2 strong {
    color: #004bb1;
    font-weight: 500;
  }
  .top01 .wrap01 .movie_area {
    margin-top: 5rem;
    order: 2;
    padding: 1.5rem 1.5rem 1.2rem;
    width: 100%;
  }
  .top01 .wrap01 .p1 {
    font-size: 1.6rem;
    margin-top: 0rem;
  }
  .top01 .wrap01 .p1 strong.big {
    font-size: 2.1rem;
    white-space: nowrap;
  }
}
/* ===========================================================================
  ベルトコンベアー
============================================================================ */
@keyframes scrollBelt {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.belt_area {
  height: 9.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.beltConveyors {
  display: flex;
  gap: 4rem;
  left: 0;
  position: absolute;
  top: 0;
  will-change: transform;
}
.beltConveyors .beltConveyor {
  border: solid 1rem #dadbdb;
  border-radius: 100rem;
  flex-shrink: 0;
  height: 9.5rem;
  position: relative;
  width: 56.5rem;
}
.beltConveyors .beltConveyor .gear {
  animation: spin2 5s linear infinite;
  background: linear-gradient(#fff 0,#fff 50%,#fff100 50%,#fff100 100%);
  border: solid 1rem #dadbdb;
  border-radius: 100%;
  bottom: 0;
  height: 9.5rem;
  margin: auto;
  position: absolute;
  top: 0;
  width: 9.5rem;
}
.beltConveyors.reverse .beltConveyor .gear {
  animation: spin1 5s linear infinite;
}
.beltConveyors .beltConveyor .gear::before {
  border: solid 1rem #dadbdb;
  border-radius: 100%;
  bottom: 0;
  content: '';
  height: 4rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 4rem;
}
.beltConveyors .beltConveyor .gear01 {
  left: -1rem;
}
.beltConveyors .beltConveyor .gear02 {
  background: linear-gradient(45deg,#fff 0,#fff 50%,#fff100 50%,#fff100 100%);
  left: 0;
  right: 0;
}
.beltConveyors .beltConveyor .gear03 {
  background: linear-gradient(90deg,#fff 0,#fff 50%,#fff100 50%,#fff100 100%);
  right: -1rem;
}
@media screen and (max-width: 768px) {
  .belt_area {
    height: 7rem;
  }
  .beltConveyors .beltConveyor {
    border: solid .5rem #dadbdb;
    flex-shrink: 0;
    height: 7rem;
    width: 35rem;
  }
  .beltConveyors .beltConveyor .gear {
    border: solid .5rem #dadbdb;
    height: 7rem;
    width: 7rem;
  }
  .beltConveyors .beltConveyor .gear::before {
    border: solid .5rem #dadbdb;
    height: 2.5rem;
    width: 2.5rem;
  }
  .beltConveyors .beltConveyor .gear01 {
    left: -.5rem;
  }
  .beltConveyors .beltConveyor .gear03 {
    right: -.5rem;
  }
}
/* ===========================================================================
  top02
============================================================================ */
.top02 {
  position: relative;
  z-index: 1;
}
.top02 .container {
  border-top: solid 1rem #dadbdb;
  padding-top: .7rem;
  position: relative;
}

.top02 .wrap01 {
  padding: 15rem 0 0;
}
.top02 .wrap01 .contents {
  background: #fff;
  border: solid 1px ;
  border-radius: 1.5rem;
  padding: 8rem 4rem;
  position: relative;
}
.top02 .wrap01 .contents::before {
  background-image: url(../img/tour/factory01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 11rem;
  position: absolute;
  right: 6.8rem;
  top: -4.4rem;
  width: 13.8rem;
  z-index: -1;
}
.top02 .wrap01 .contents:after {
  background: #fff;
  content: '';
  height: 10px;
  position: absolute;
  right: calc(6.8rem + 1px);
  top: -1px;
  width: calc(13.8rem - 2px);
  z-index: 2;;
}
.top02 .wrap01 .contents .content01 .h2 {
  color: #004bb1;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.top02 .wrap01 .contents .content01 .p1 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(30/16);
  margin-top: 3rem;
  text-align: center;
}
.top02 .wrap01 .contents .content01 .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 5.3rem 2.5rem;
  margin-top: 4.2rem;
}
.top02 .wrap01 .contents .content01 .cards .card {
  width: calc((100% - 5rem) / 3);
}
.top02 .wrap01 .contents .content01 .cards .card .h3 {
  align-items: center;
  background-image: url(../img/tour/hukidashi01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  height: 6.2rem;
  justify-content: center;
  padding-bottom: 1.7rem;
  transition: .3s;
  width: 100%;
}
.top02 .wrap01 .contents .content01 .cards .card:hover .h3 {
  transform: translateY(-1rem);
}
.top02 .wrap01 .contents .content01 .cards .card .img {
  aspect-ratio: 277/202;
  border: solid 3px #004bb1;
  border-radius: 1.5rem;
  margin-top: .3rem;
  overflow: hidden;
}
.top02 .wrap01 .contents .content01 .cards .card .img img {
  height: 105%;
  max-width: auto;
  object-fit: cover;
  transition: .3s;
  width: 105%;
}
.top02 .wrap01 .contents .content01 .cards .card:hover .img img {
  transform: scale(1.1);
}
.top02 .wrap01 .contents .content01 .cards .card .h4 {
  align-items: center;
  display: flex;
  gap: .4rem;
  margin-top: 1.3rem;
}
.top02 .wrap01 .contents .content01 .cards .card .h4 .icon {
  width: 4.8rem;
}
.top02 .wrap01 .contents .content01 .cards .card .h4 .txt {
  font-weight: 800;
  line-height: calc(24/16);
  white-space: nowrap;
  width: calc((100% - 5.2rem));
}
.top02 .wrap01 .contents .content01 .cards .card .p2 {
  align-items: center;
  display: flex;
  font-size: 1.3rem;
  font-weight: 400;
  height: 4rem;
  justify-content: center;
  margin-top: 1.3rem;
  text-align: center;
}
.top02 .wrap01 .contents .content01 .cards .card .p3 {
  align-items: center;
  border-radius: .2rem;
  display: flex;
  font-size: 1.3rem;
  font-weight: 400;
  height: 1.9rem;
  justify-content: center;
  margin: 1.1rem auto 0;
  text-align: center;
  width: 7.4rem;
}
.top02 .wrap01 .contents .content01 .cards .card .p3.color1 {
  background: #deb34f;
}
.top02 .wrap01 .contents .content01 .cards .card .p3.color2 {
  background: #c3dcbd;
}
.top02 .wrap01 .contents .content01 .cards .card .p3.color3 {
  background: #e9ecb2;
}
.top02 .wrap01 .contents .content02 {
  margin-top: 6rem;
  text-align: center;
}
.top02 .wrap01 .contents .content02 .h2 {
  position: relative;
  width: 100%;
}
.top02 .wrap01 .contents .content02 .h2::before {
  background: #004bb1;
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.top02 .wrap01 .contents .content02 .h2 span {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 15.4rem;
}
.top02 .wrap01 .contents .content02 .p1 {
  color: #004bb1;
  font-size: 2.4rem;
  line-height: normal;
  margin-top: 1.2rem;
}
.top02 .wrap01 .contents .content02 .bnr {
  border: solid 1px;
  display: block;
  margin-top: 1.4rem;
}
.top02 .wrap01 .contents .content02 .bnr:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .top02 .container {
    border-top: solid .5rem #dadbdb;
    padding-top: .5rem;
  }

  .top02 .wrap01 {
    padding: 10rem 1.5rem 0;
  }
  .top02 .wrap01 .contents {
    padding: 6rem 1.5rem;
  }
  .top02 .wrap01 .contents .content01 .h2 {
    font-size: 2.4rem;
  }
  .top02 .wrap01 .contents .content01 .cards {
    flex-direction: column;
    gap: 5rem;
    margin-top: 4rem;
  }
  .top02 .wrap01 .contents .content01 .cards .card {
    width: 100%;
  }
  .top02 .wrap01 .contents .content02 {
    margin-top: 6rem;
    text-align: center;
  }
  .top02 .wrap01 .contents .content02 .bnr {
    aspect-ratio: 2.25/1;
    border-radius: 1.5rem;
    overflow: hidden;
  }
  .top02 .wrap01 .contents .content02 .bnr img {
    height: 100%;
    max-width: inherit;
    max-width: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }
}
/* ===========================================================================
  top03
============================================================================ */
.top03 .wrap01 {
  padding: 29.15rem 0 0;
}
.top03 .wrap01 .contents {
  background: #fff;
  border: solid 1px ;
  border-radius: 1.5rem;
  padding: 13.6rem 0 3rem;
  position: relative;
}
.top03 .wrap01 .contents::before {
  background-image: url(../img/tour/factory01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 11rem;
  left: 6.8rem;
  position: absolute;
  top: -4.4rem;
  width: 13.8rem;
  z-index: -1;
}
.top03 .wrap01 .contents:after {
  background: #fff;
  content: '';
  height: 10px;
  left: calc(6.8rem + 1px);
  position: absolute;
  top: -1px;
  width: calc(13.8rem - 2px);
  z-index: 2;;
}
.top03 .wrap01 .contents .content01 {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.top03 .wrap01 .contents .content01 .h2 {
  background-image: url(../img/tour/cloud02.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: 4.9rem;
  font-weight: 500;
  height: 63.55rem;
  line-height: normal;
  padding-left: 12.8rem;
  padding-top: 18.7rem;
  position: absolute;
  right: -25.45rem;
  top: -42.7rem;
  width: 66.25rem;
}
.top03 .wrap01 .contents .content01 .h2 small {
  display: inline-block;
  font-size: 3.2rem;
}
.top03 .wrap01 .contents .content01 .h2 strong {
  color: #004bb1;
  font-weight: 500;
}
.top03 .wrap01 .contents .content01 .p1 {
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  justify-content: center;
  line-height: calc(30/20);
  text-align: center;
  width: 63.4rem;
  z-index: 2;
}
.top03 .wrap01 .contents .content01 .p1::before, .top03 .wrap01 .contents .content01 .p1::after {
  background-color: #004bb1;
  background-image: url(../img/quiz/bg_line.svg);
  background-repeat: repeat;
  background-size: 111.6rem;
  content: '';
  width: 2.9rem;
}
.top03 .wrap01 .contents .content01 .p1 span {
  /* padding: 0 2.5rem; */
  flex-grow: 1;
  white-space: nowrap;
}
.top03 .wrap01 .contents .content01 .p1 span strong {
  color: #004bb1;
}
.top03 .wrap01 .contents .content01 .scroll {
  aspect-ratio: 1/1;
  margin-top: 2rem;
  overflow: auto;
  width: 70rem;
  width: 63.4rem;
}
.top03 .wrap01 .contents .content01 .scroll .dummy {
  background-color: #ccc;
  background-image: url(../img/quiz/bg_line.svg);
  background-repeat: repeat;
  background-size: 111.6rem;
  height: 100rem;
  margin: 0 auto;
  width: 63.4rem;
}
.top03 .wrap01 .contents .content02 {
  background: #eceee1;
  margin-top: 3.2rem;
  width: 100%;
}
.top03 .wrap01 .contents .content02 .profile {
  align-items: center;
  background: #eceee1;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1.6rem 0;
  width: 63.4rem;
}
.top03 .wrap01 .contents .content02 .profile .icon {
  width: 9.4rem;
}
.top03 .wrap01 .contents .content02 .profile .p2 {
  font-weight: 700;
  line-height: normal;
  text-align: justify;
  width: 37.6rem;
}
.top03 .wrap01 .contents .content02 .profile .p2 span {
  font-size: 1.8rem;
}
.top03 .wrap01 .contents .content02 .profile .snss {
  display: flex;
  gap: .6rem;
}
.top03 .wrap01 .contents .content02 .profile .snss .sns {
  width: 3.5rem;
}
@media screen and (max-width: 768px) {
  .top03 .wrap01 {
    padding: 27rem 1.5rem 0;
  }
  .top03 .wrap01 .contents {
    padding: 3rem 0 3rem;
  }
  .top03 .wrap01 .contents .content01 .h2 {
    align-items: center;
    background-size: 100%;
    display: flex;
    flex-direction: column;
    font-size: 3rem;
    height: 34rem;
    justify-content: center;
    padding: 0;
    padding-right: 4rem;
    right: -9rem;
    top: -32rem;
    width: 100%;
  }
  .top03 .wrap01 .contents .content01 .h2 small {
    font-size: 2rem;
  }
  .top03 .wrap01 .contents .content01 .p1 {
    display: flex;
    font-size: 1.6rem;
    line-height: calc(30/20);
    width: calc(100% - 3rem);
  }
  .top03 .wrap01 .contents .content01 .p1 span {
    padding: 0 1.5rem;
  }
  .top03 .wrap01 .contents .content01 .scroll {
    aspect-ratio: inherit;
    height: 80vh;
    width: 100%;
  }
  .top03 .wrap01 .contents .content01 .scroll .dummy {
    height: 100rem;
    width: 100%;
  }
  .top03 .wrap01 .contents .content02 {
    margin-top: 3rem;
  }
  .top03 .wrap01 .contents .content02 .profile {
    flex-wrap: wrap;
    padding: 1.5rem;
    width: 100%;
  }
  .top03 .wrap01 .contents .content02 .profile .icon {
    width: 9rem;
  }
  .top03 .wrap01 .contents .content02 .profile .p2 {
    font-size: 1.4rem;
    width: calc(100% - 10.5rem);
  }
  .top03 .wrap01 .contents .content02 .profile .p2 span {
    font-size: 1.6rem;
  }
  .top03 .wrap01 .contents .content02 .profile .snss {
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
  }
  .top03 .wrap01 .contents .content02 .profile .snss .sns {
    width: 4rem;
  }
}
/* ===========================================================================
  top04
============================================================================ */
.top04 {
  margin-top: 24.7rem;
}
.top04 .container {
  /* background: linear-gradient(to right,#fff 0,#fff 20%,#e8f1f7 20%,#e8f1f7 100%); */
  margin: 0 auto;
  max-width: 128rem;
  position: relative;
}
.top04 .container::before {
  background: linear-gradient(to right,#fff 0,#fff 20%,#e8f1f7 20%,#e8f1f7 100%);
  content: '';
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  width: 100%;
}
.top04 .wrap01 {
  padding: 27rem 0 6.2rem;
  position: relative;
}
.top04 .wrap01 .h2 {
  background-image: url(../img/tour/cloud03.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: 4.9rem;
  font-weight: 500;
  height: 36.5rem;
  left: -12.5rem;
  line-height: normal;
  padding-left: 11.4rem;
  padding-top: 4.7rem;
  position: absolute;
  top: 0;
  width: 50.5rem;
  z-index: 2;
}
.top04 .wrap01 .h2 strong {
  color: #004bb1;
  font-weight: 500;
}
.top04 .wrap01 .imgs .img {
  position: absolute;
  width: 17.2rem;
  z-index: 2;
}
.top04 .wrap01 .imgs .img:nth-of-type(1) {
  animation: contraction1 2s linear infinite;
  right: 31.8rem;
  top: -11.9rem;
}
.top04 .wrap01 .imgs .img:nth-of-type(2) {
  animation: contraction1 4s linear infinite;
  right: 12.9rem;
  top: -4.1rem;
}
.top04 .wrap01 .imgs .img:nth-of-type(3) {
  animation: contraction1 3s linear infinite;
  right: 27.3rem;
  top: 12.2rem;
}
.top04 .wrap01 .contents {
  background: #004bb1;
  border: solid 1px #000;
  border-radius: 1.5rem;
  padding: 7rem 3.6rem 5rem;
  position: relative;
}
.top04 .wrap01 .contents::before {
  background-image: url(../img/tour/factory02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 4.5rem;
  position: absolute;
  right: 6.8rem;
  top: -4.4rem;
  width: 13.8rem;
  z-index: 2;
}
.top04 .wrap01 .contents::after {
  animation: twinkle 2s ease-in-out infinite;
  background-image: url(../img/tour/stars01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 8.3rem;
  position: absolute;
  right: 8.98rem;
  top: -15.1rem;
  width: 4rem;
}
.top04 .wrap01 .contents .content01 {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.top04 .wrap01 .contents .content01 .p1 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
.top04 .wrap01 .contents .content01 .p1 strong {
  color: #fffb00;
}
.top04 .wrap01 .contents .content01 .license {
  position: absolute;
  right: 5.6rem;
  top: 7.3rem;
  width: 15.6rem;
}
.top04 .wrap01 .contents .content01 .btn {
  margin-top: 3.5rem;
  position: relative;
}
.top04 .wrap01 .contents .content01 .btn::before {
  background-image: url(../img/tour/btn_line01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border: solid 1px #fff;
  border-radius: 100rem;
  bottom: -.6rem;
  content: '';
  height: 5.5rem;
  position: absolute;
  right: -.4rem;
  width: 31.1rem;
}
.top04 .wrap01 .contents .content01 .btn span {
  align-items: center;
  background: #fffb00;
  border: solid 3px #004bb1;
  border-radius: 100rem;
  color: #004bb1;
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  height: 5.8rem;
  justify-content: center;
  position: relative;
  position: relative;
  transition: .3s;
  width: 32rem;
  z-index: 2;
}
.top04 .wrap01 .contents .content01 .btn:hover span {
  background: #004bb1;
  border: solid #fff100;
  color: #fffb00;
}
@media screen and (max-width: 768px) {
  .top04 {
    margin-top: 24.7rem;
  }
  .top04 .container {
    background: linear-gradient(to right,#fff 0,#fff 20%,#e8f1f7 20%,#e8f1f7 100%);
  }
  .top04 .wrap01 {
    padding: 0 1.5rem 6rem;
    position: relative;
  }
  .top04 .wrap01 .h2 {
    align-items: flex-start;
    display: flex;
    font-size: 3rem;
    height: auto;
    justify-content: center;
    left: -6rem;
    padding: 6rem 0 8rem;
    position: relative;
    top: -1rem;
    width: 100%;
    z-index: 3;
  }
  .top04 .wrap01 .imgs .img {
    position: absolute;
    width: 17.2rem;
    z-index: 2;
  }
  .top04 .wrap01 .imgs .img:nth-of-type(1) {
    right: 18rem;
    top: -16rem;
    z-index: 4;
  }
  .top04 .wrap01 .imgs .img:nth-of-type(2) {
    right: -4rem;
    top: 9rem;
  }
  .top04 .wrap01 .imgs .img:nth-of-type(3) {
    right: 23rem;
    top: 20rem;
  }
  .top04 .wrap01 .contents {
    margin-top: 15rem;
    padding: 4rem 1.5rem;
  }
  .top04 .wrap01 .contents::after {
    right: 8rem;
    top: -13rem;
    z-index: 3;
  }
  .top04 .wrap01 .contents .content01 .p1 {
    font-size: 1.6rem;
    text-align: left;
  }
  .top04 .wrap01 .contents .content01 .license {
    margin-top: 2rem;
    position: relative;
    right: 0;
    top: 0;
    width: 15.6rem;
  }
  .top04 .wrap01 .contents .content01 .btn {
    margin-top: 3rem;
  }
}
/* ===========================================================================
  top05
============================================================================ */
.top05 {
  margin-top: 33.3rem;
}
.top05 .wrap01 {
  height: 54.4rem;
  position: relative;
}
.top05 .wrap01::before {
  background-image: url(../img/tour/top05_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 125rem;
  z-index: 2;
}
.top05 .wrap01 .h2 {
  font-size: 4.9rem;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  right: 0;
  right: 3.2rem;
  top: 8.5rem;
  width: 44.3rem;
  z-index: 2;
}
.top05 .wrap01 .h2 strong {
  color: #004bb1;
  font-weight: 500;
}
.top05 .wrap01 .imgs .img {
  position: absolute;
  width: 17.2rem;
  z-index: 2;
}
.top05 .wrap01 .imgs .img:nth-of-type(1) {
  animation: contraction1 2s linear infinite;
  left: 33.2rem;
  top: -23.9rem;
}
.top05 .wrap01 .imgs .img:nth-of-type(2) {
  animation: contraction1 4s linear infinite;
  left: 18.5rem;
  top: -9rem;
}
.top05 .wrap01 .imgs .img:nth-of-type(3) {
  animation: contraction1 3s linear infinite;
  left: 32.5rem;
  top: 8.2rem;
}
.top05 .wrap01 .contents {
  position: relative;
}
.top05 .wrap01 .contents::before {
  background-image: url(../img/tour/factory03.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 8.9rem;
  left: 5.3rem;
  position: absolute;
  top: -6.7rem;
  width: 13.8rem;
  z-index: 1;
}
.top05 .wrap01 .contents::after {
  animation: twinkle 2s ease-in-out infinite;
  background-image: url(../img/tour/stars01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 8.3rem;
  left: 12.4rem;
  position: absolute;
  top: -17.1rem;
  width: 4rem;
}
.top05 .wrap01 .contents .content01 {
  height: 54.4rem;
  position: relative;
  z-index: 2;
}
.top05 .wrap01 .contents .content01 .p1 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(41/16);
  padding: 12rem 0 0;
  width: 28.2rem;
}
.top05 .wrap01 .contents .content01 .p1 > span {
  border-bottom: solid 1px;
  display: inline-block;
  padding: 0 1.2rem;
  width: 100%;
}
.top05 .wrap01 .contents .content01 .p1 > span span {
  color: #004bb1;
}
.top05 .wrap01 .contents .content01 .p1 > span strong {
  color: #004bb1;
  font-weight: 800;
}
.top05 .wrap01 .contents .content01 .report {
  position: absolute;
  right: 0rem;
  top: 19rem;
  width: 39.7rem;
}
.top05 .wrap01 .contents .content01 .btn {
  bottom: 8.9rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  width: 31.1rem;
  z-index: 3;
}
.top05 .wrap01 .contents .content01 .btn::before {
  background-color: #004bb1;
  background-image: url(../img/tour/btn_line02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100rem;
  bottom: -.6rem;
  content: '';
  height: 8.7rem;
  position: absolute;
  right: -1.4rem;
  width: 31.1rem;
}
.top05 .wrap01 .contents .content01 .btn span {
  align-items: center;
  background: #fffb00;
  border: solid 3px #004bb1;
  border-radius: 100rem;
  color: #004bb1;
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  height: 8.7rem;
  justify-content: center;
  position: relative;
  position: relative;
  transition: .3s;
  width: 32rem;
  z-index: 2;
}
.top05 .wrap01 .contents .content01 .btn:hover span {
  background: #004bb1;
  border: solid #fff100;
  color: #fffb00;
}
@media screen and (max-width: 768px) {
  .top05 {
    margin-top: 35rem;
  }
  .top05 .wrap01 {
    height: auto;
  }
  .top05 .wrap01::before {
    display: none;
  }
  .top05 .wrap01 .h2 {
    font-size: 3rem;
    left: 0;
    padding: 0 1.5rem;
    position: relative;
    top: 0;
    width: 100%;
  }
  .top05 .wrap01 .imgs .img {
    width: 12rem;
  }
  .top05 .wrap01 .imgs .img:nth-of-type(1) {
    left: 22rem;
    top: -30rem;
    width: 16rem;
    z-index: 4;
  }
  .top05 .wrap01 .imgs .img:nth-of-type(2) {
    left: 28rem;
    top: -9rem;
  }
  .top05 .wrap01 .imgs .img:nth-of-type(3) {
    left: 6rem;
    top: -16rem;
    width: 14rem;
    z-index: 4;
  }
  .top05 .wrap01 .contents::before {
    left: 1.5rem;
    top: -3rem;
  }
  .top05 .wrap01 .contents::after {
    left: 2rem;
  }
  .top05 .wrap01 .contents .content01 {
    height: auto;
  }
  .top05 .wrap01 .contents .content01 .p1 {
    align-items: center;
    background-image: url(../img/tour/top05_bg.svg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    height: 45rem;
    justify-content: center;
    margin-top: 17rem;
    padding: 0 1.5rem;
    text-align: left;
    width: 100%;
  }
  .top05 .wrap01 .contents .content01 .report {
    margin-left: auto;
    position: absolute;
    right: -3rem;
    top: -19rem;
    width: 80%;
  }
  .top05 .wrap01 .contents .content01 .btn {
    bottom: 0;
    display: block;
    margin-top: 3rem;
    position: relative;
  }
}
/* ===========================================================================
  top06
============================================================================ */
.top06 .container {
  margin-top: 8.4rem;
}
.top06 .wrap01 {
  padding-top: 8.8rem;
  position: relative;
}
.top06 .wrap01::before {
  animation: twinkle 2s ease-in-out infinite;
  background-image: url(../img/tour/stars02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 8.3rem;
  left: 7.6rem;
  position: absolute;
  top: 7.5rem;
  width: 4rem;
  z-index: 3;
}
.top06 .wrap01 .h2 {
  left: 2.5rem;
  position: absolute;
  top: 0;
  width: 69.9rem;
  z-index: 2;
}
.top06 .wrap01 .p1 {
  position: absolute;
  right: 6.9rem;
  top: 5.8rem;
  width: 44.6rem;
  z-index: 2;
}
.top06 .wrap01 .maps {
  background: #fff;
  border: solid 1px #000;
  border-radius: 1.5rem 1.5rem 0 0;
  height: 74.8rem;
  position: relative;
}
.top06 .wrap01 .maps::before {
  background-image: url(../img/tour/factory01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 11rem;
  position: absolute;
  right: 6.2rem;
  top: -4.8rem;
  width: 13.8rem;
  z-index: -1;
}
.top06 .wrap01 .maps:after {
  background: #fff;
  content: '';
  height: 10px;
  position: absolute;
  right: calc(6.2rem + 1px);
  top: -1px;
  width: calc(13.8rem - 2px);
  z-index: 2;;
}
.top06 .wrap01 .maps .map {
  background-repeat: no-repeat;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: .3s;
  width: 100%;
}
.top06 .wrap01 .maps .map.active {
  opacity: 1;
  pointer-events: all;
}
.top06 .wrap01 .maps .map .spot {
  position: absolute;
}
.top06 .wrap01 .maps .map .spot .icon img {
  transition: .3s;
}
.top06 .wrap01 .maps .map .spot:hover .icon img {
  position: relative;
  transform: scale(1.1);
  z-index: 10;
}
.top06 .wrap01 .maps .map .spot .icon.column {
  width: 6.7rem;
}
.top06 .wrap01 .maps .map .spot .icon.raw {
  width: 9.2rem;
}
.top06 .wrap01 .maps .map .spot .txt {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.top06 .wrap01 .maps .map .spot .txt span {
  display: block;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: calc(32/28);
  padding-top: .4rem;
  position: absolute;
  text-shadow: 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 .2rem #fff;
}
.top06 .wrap01 .maps .map .spot .txt.left span {
  left: 0;
  text-align: left;
}
.top06 .wrap01 .maps .map .spot .txt.right span {
  right: 0;
  text-align: right;
}
.top06 .wrap01 .maps .map .back {
  bottom: 1.5rem;
  box-shadow: 0 .4rem .4rem 0 rgba(0, 0, 0, .25);
  left: 1.1rem;
  position: absolute;
}
.top06 .wrap01 .maps .map .back span {
  align-items: center;
  background: #fff;
  background-image: url(../img/tour/back.svg);
  background-position: center top 1.9rem;
  background-repeat: no-repeat;
  background-size: 4.6rem;
  border: solid 1px;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  height: 9rem;
  justify-content: flex-end;
  padding-bottom: .6rem;
  text-align: center;
  transition: .3s;
  width: 9rem;
}
.top06 .wrap01 .maps .map .back:hover span {
  transform: translateY(.4rem);
}
.top06 .wrap01 .maps .map_all {
  background-image: url(../img/tour/map_all.png);
  background-position: left 2.9rem bottom 6.3rem;
  background-size: 91.8rem;
}
.top06 .wrap01 .maps .map_all .hukidashi {
  position: absolute;
  transition: .3s;
}
.top06 .wrap01 .maps .map_all .hukidashi:hover {
  transform: scale(1.05);
}
.top06 .wrap01 .maps .map_all .hukidashi.toubu {
  right: 3.68rem;
  top: 24.87rem;
  width: 16.25rem;
}
.top06 .wrap01 .maps .map_all .hukidashi.seibu {
  bottom: 4.28rem;
  left: 26.2rem;
  width: 16.4rem;
}
.top06 .wrap01 .maps .map_all .hukidashi.chuuouNanbu {
  bottom: 2.68rem;
  right: 27.1rem;
  width: 16.4rem;
}
.top06 .wrap01 .maps .map_all .hukidashi.hokubu {
  left: 14.4rem;
  top: 21.5rem;
  width: 16.25rem;
}
.top06 .wrap01 .maps .map_toubu {
  background-image: url(../img/tour/map_toubu.svg);
  background-position: left 20.5rem bottom 2.6rem;
  background-size: 49.9rem;
}
.top06 .wrap01 .maps .map_toubu .spot01 {
  left: 32rem;
  top: 19.87rem;
}
.top06 .wrap01 .maps .map_toubu .spot01 .txt span {
  right: 2.6rem;
  text-align: right;
}
.top06 .wrap01 .maps .map_toubu .spot02 {
  left: 40.1rem;
  top: 18.4rem;
}
.top06 .wrap01 .maps .map_toubu .spot02 .txt span {
  left: 2rem;
}
.top06 .wrap01 .maps .map_toubu .spot03 {
  left: 56.9rem;
  top: 39.67rem;
}
.top06 .wrap01 .maps .map_toubu .spot04 {
  left: 63.37rem;
  top: 53.27rem;
}
.top06 .wrap01 .maps .map_seibu {
  background-image: url(../img/tour/map_seibu.svg);
  background-position: left 30.8rem bottom 7.5rem;
  background-size: 56.1rem;
}
.top06 .wrap01 .maps .map_seibu .spot01 {
  left: 36.7rem;
  top: 36.17rem;
}
.top06 .wrap01 .maps .map_seibu .spot01 .txt span {
  left: -18rem;
  top: -9.5rem;
}
.top06 .wrap01 .maps .map_seibu .spot02 {
  left: 39.7rem;
  top: 45.7rem;
}
.top06 .wrap01 .maps .map_seibu .spot03 {
  left: 47.5rem;
  top: 31.47rem;
}
.top06 .wrap01 .maps .map_seibu .spot03 .txt span {
  right: 0;
  top: -16.7rem;
}
.top06 .wrap01 .maps .map_seibu .spot04 {
  left: 54.6rem;
  top: 30.37rem;
}
.top06 .wrap01 .maps .map_seibu .spot04 .txt span {
  left: 5rem;
  top: -2.5rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu {
  background-image: url(../img/tour/map_chuuouNanbu.svg);
  background-position: left 29.2rem bottom 10.9rem;
  background-size: 36.2rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot01 {
  left: 31rem;
  top: 19.07rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot01 .txt span {
  left: -15rem;
  text-align: right;
  top: -9.5rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot02 {
  left: 38.3rem;
  top: 27.176rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot02 .txt span {
  right: -28.5rem;
  top: -7rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot03 {
  left: 43.6rem;
  top: 33.576rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot03 .txt span {
  left: -27rem;
  text-align: right;
  top: -9.5rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot04 {
  left: 43.4rem;
  top: 43.276rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot04 .txt span {
  left: -26rem;
  text-align: right;
  top: -9.5rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot05 {
  left: 48.1rem;
  top: 48.676rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot05 .txt span {
  left: -18rem;
  text-align: right;
  top: -2.5rem;
}
.top06 .wrap01 .maps .map_chuuouNanbu .spot06 {
  left: 54rem;
  top: 54.076rem;
}
.top06 .wrap01 .maps .map_hokubu {
  background-image: url(../img/tour/map_hokubu.svg);
  background-position: left 28rem bottom 11.9rem;
  background-size: 46.1rem;
}
.top06 .wrap01 .maps .map_hokubu .spot01 {
  left: 33.6rem;
  top: 39.076rem;
}
.top06 .wrap01 .maps .map_hokubu .spot02 {
  left: 38.8rem;
  top: 31.076rem;
}
.top06 .wrap01 .maps .map_hokubu .spot02 .txt span {
  right: -31.5rem;
  top: -15rem;
}
.top06 .wrap01 .maps .map_hokubu .spot03 {
  left: 44.1rem;
  top: 40.376rem;
}
.top06 .wrap01 .maps .map_hokubu .spot03 .txt span {
  left: 3rem;
}

.top06 .wrap01 .tab_btns {
  display: flex;
  gap: .5rem;
}
.top06 .wrap01 .tab_btns .tab_btn {
  width: calc((100% - 2rem) / 5);
}
.top06 .wrap01 .tab_btns .tab_btn {
  align-items: center;
  border: solid 1px #000;
  border-radius: 0 0 .3rem .3rem;
  border-top: none;
  color: #858585;
  display: flex;
  font-size: 1.7rem;
  height: 4.5rem;
  justify-content: center;
  transition: .3s;
  width: calc((100% - 1.5rem) / 4);
}
.top06 .wrap01 .tab_btns .tab_btn.active {
  color: #fff;
  pointer-events: none;
}
.top06 .wrap01 .tab_btns .tab_btn:hover {
  opacity: .7;
}
.top06 .wrap01 .tab_btns .tab_btn00 {
  background: #fff;
  color: #004bb1;
}
.top06 .wrap01 .tab_btns .tab_btn01 {
  background: rgba(111, 183, 223, .26);
  color: #48a1d2;
}
.top06 .wrap01 .tab_btns .tab_btn02 {
  background: rgba(127, 184, 112, .26);
  color: #72b561;
}
.top06 .wrap01 .tab_btns .tab_btn03 {
  background: rgba(222, 179, 79, .26);
  color: #e08e65;
}
.top06 .wrap01 .tab_btns .tab_btn04 {
  background: rgba(179, 185, 84, .26);
  color: #abb338;
}
.top06 .wrap01 .tab_btns .tab_btn00.active {
  background: #004bb1;
  color: #fff;
}
.top06 .wrap01 .tab_btns .tab_btn01.active {
  background: rgba(111, 183, 223, 1);
  color: #fff;
}
.top06 .wrap01 .tab_btns .tab_btn02.active {
  background: rgba(127, 184, 112, 1);
  color: #fff;
}
.top06 .wrap01 .tab_btns .tab_btn03.active {
  background: rgba(222, 179, 79, 1);
  color: #fff;
}
.top06 .wrap01 .tab_btns .tab_btn04.active {
  background: rgba(179, 185, 84, 1);
  color: #fff;
}
.top06 .wrap01 .sup {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  font-size: 1.8rem;
  gap: 2.3rem;
  justify-content: center;
  margin-top: 2rem;
  text-align: center;
}
.top06 .wrap01 .sup strong {
  color: #f40606;
}
.top06 .wrap01 .sup::before, .top06 .wrap01 .sup::after {
  background-image: url(../img/tour/tris.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  flex-shrink: 0;
  height: 4.7rem;
  width: 2.1rem;
}
/* モーダルの背景とコンテナ */
.modal_bg {
  background: rgba(0,0,0,.6);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
}
.modal_bg .close {
  background-image: url(../img/tour/close01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 4rem;
  position: absolute;
  right: 1.3rem;
  top: 1.3rem;
  width: 4rem;
  z-index: 9999;
}
.modal_container {
  background: #fff;
  border-radius: .5rem;
  left: 50%;
  max-height: 90%;
  max-width: 90%;
  overflow: auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
}
.top06 .modal_container {
  width: calc((100rem - 4.8rem) / 4);
}
.top06 .modal_container .factory_card {
  width: 100%;
}
body.modal-open {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top06 .wrap01 {
    padding-top: 15rem;
  }
  .top06 .wrap01::before {
    left: 5rem;
    top: -2rem;
  }
  .top06 .wrap01 .h2 {
    left: -9rem;
    width: 49rem;
  }
  .top06 .wrap01 .p1 {
    left: 0;
    margin: auto;
    right: 0;
    width: calc(100% - 7rem);
  }
  .top06 .wrap01 .map:not(.map_all) .p1 {
    top: 4.9rem;
  }
  .top06 .wrap01 .map.map_all .p1 {
    top: 3rem;
    transform: scale(1.15);
  }
  .top06 .wrap01 .maps {
    border-radius: 0;
    height: 74.8rem;
    height: calc((74.8rem * .5) + 5rem);
    position: relative;
  }

  .top06 .wrap01 .maps .map .spot .icon.column {
    width: calc(6.7rem * .375);
  }
  .top06 .wrap01 .maps .map .spot .icon.raw {
    width: calc(9.2rem * .375);
  }
  .top06 .wrap01 .maps .map .spot .txt span {
    font-size: calc(2.8rem * .375);
    padding-top: calc(.4rem * .375);
  }
  .top06 .wrap01 .maps .map .back {
    bottom: 1.6rem;
    left: 1.6rem;
    transform: scale(.5);
  }
  .top06 .wrap01 .maps .map_all {
    background-image: url(../img/tour/map_all.png);
    background-position: center bottom 5rem;
    background-size: calc(91.8rem * .375);
  }
  .top06 .wrap01 .maps .map_all .hukidashi:hover {
    transform: scale(1);
  }
  .top06 .wrap01 .maps .map_all .hukidashi.toubu {
    right: 0;
    top: 21rem;
    width: calc(16.25rem * .5);
  }
  .top06 .wrap01 .maps .map_all .hukidashi.seibu {
    bottom: 3rem;
    left: 8rem;
    width: calc(16.4rem * .5);
  }
  .top06 .wrap01 .maps .map_all .hukidashi.chuuouNanbu {
    bottom: 2rem;
    right: 9rem;
    width: calc(16.4rem * .5);
  }
  .top06 .wrap01 .maps .map_all .hukidashi.hokubu {
    left: 3.5rem;
    top: 16.5rem;
    width: calc(16.25rem * .5);
  }
  .top06 .wrap01 .maps .map_toubu {
    background-position: center bottom 7rem;
    background-size: calc(49.9rem * .375);
    transform: scale(1.15);
  }
  .top06 .wrap01 .maps .map_toubu .spot01 {
    left: 13.8rem;
    top: 15.5rem;
  }
  .top06 .wrap01 .maps .map_toubu .spot01 .txt span {
    right: calc(2.6rem * .375);
  }
  .top06 .wrap01 .maps .map_toubu .spot02 {
    left: 16.7rem;
    top: 15rem;
  }
  .top06 .wrap01 .maps .map_toubu .spot02 .txt span {
    left: calc(2rem * .375);
  }
  .top06 .wrap01 .maps .map_toubu .spot03 {
    left: 23rem;
    top: 22.5rem;
  }
  .top06 .wrap01 .maps .map_toubu .spot04 {
    left: 25.4rem;
    top: 27.8rem;
  }
  .top06 .wrap01 .maps .map_seibu {
    background-position: center bottom 7rem;
    background-size: calc(56.1rem * .375);
    transform: scale(1.15);
  }
  .top06 .wrap01 .maps .map_seibu .spot01 {
    left: 10.7rem;
    top: 23.6rem;
  }
  .top06 .wrap01 .maps .map_seibu .spot01 .txt span {
    left: calc(18rem * .375 * -1);
    top: calc(9.5rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_seibu .spot02 {
    left: 12rem;
    top: 27.2rem;
  }
  .top06 .wrap01 .maps .map_seibu .spot03 {
    left: 14.5rem;
    top: 21.7rem;
  }
  .top06 .wrap01 .maps .map_seibu .spot03 .txt span {
    right: -1rem;
    top: calc(16.7rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_seibu .spot04 {
    left: 17.3rem;
    top: 21.3rem;
  }
  .top06 .wrap01 .maps .map_seibu .spot04 .txt span {
    left: calc(5rem * .375);
    top: calc(2.5rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_chuuouNanbu {
    background-position: center bottom 8rem;
    background-size: calc(36.2rem * .375);
    transform: scale(1.15);
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot01 {
    left: 12.7rem;
    top: 17.5rem;
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot01 .txt span {
    left: calc(15rem * .375 * -1);
    top: calc(9.5rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot02 {
    left: 15.2rem;
    top: 20rem;
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot02 .txt span {
    right: calc(28.5rem * .375 * -1);
    top: calc(7rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot03 {
    left: 17.3rem;
    top: 22.5rem;
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot03 .txt span {
    left: calc(27rem * .375 * -1);
    top: calc(8.5rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot04 {
    left: 17.3rem;
    top: 26.2rem;
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot04 .txt span {
    left: calc(26rem * .375 * -1);
    top: calc(9.5rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot05 {
    left: 19.1rem;
    top: 28.3rem;
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot05 .txt span {
    left: calc(18rem * .375 * -1);
    top: calc(2.5rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_chuuouNanbu .spot06 {
    left: 21.5rem;
    top: 30.5rem;
  }
  .top06 .wrap01 .maps .map_hokubu {
    background-position: center bottom 10rem;
    background-size: calc(46.1rem * .375);
    transform: scale(1.15);
  }
  .top06 .wrap01 .maps .map_hokubu .spot01 {
    left: 12.4rem;
    top: 23rem;
  }
  .top06 .wrap01 .maps .map_hokubu .spot02 {
    left: 14rem;
    top: 20.3rem;
  }
  .top06 .wrap01 .maps .map_hokubu .spot02 .txt span {
    right: calc(31.5rem * .375 * -1);
    top: calc(15rem * .375 * -1);
  }
  .top06 .wrap01 .maps .map_hokubu .spot03 {
    left: 15.6rem;
    top: 23.5rem;
  }
  .top06 .wrap01 .maps .map_hokubu .spot03 .txt span {
    left: calc(3rem * .375);
  }

  .top06 .wrap01 .tab_btns {
    display: flex;
    gap: 1px;
    position: relative;
    z-index: 3;
  }
  .top06 .wrap01 .tab_btns .tab_btn {
    width: calc((100% - 4px) / 5);
  }
  .top06 .wrap01 .tab_btns .tab_btn {
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: center;
    width: calc((100% - 1.5rem) / 4);
  }
  .top06 .wrap01 .sup {
    font-size: 1.4rem;
    gap: 0;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 0 .5rem;
    white-space: nowrap;
  }
  .top06 .wrap01 .sup::before, .top06 .wrap01 .sup::after {
    height: 4rem;
    width: 2rem;
  }
  .modal_container {
    max-height: calc(100% - 14rem);
    max-width: calc(100% - 6rem);
    width: 100%;
  }
  .top06 .modal_container {
    width: 100%;
  }
}
/* ===========================================================================
  top07
============================================================================ */
.top07 .container {
  border-bottom: solid 1rem #dadbdb;
  margin-bottom: 1rem;
}
.top07 .wrap01 {
  padding: 10rem 0 2.5rem;
}
.top07 .wrap01 .h2 {
  align-items: center;
  border-bottom: solid 1rem #dadbdb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
  padding-bottom: .7rem;
  position: relative;
  text-align: center;
}
.top07 .wrap01 .h2::before {
  background-image: url(../img/tour/factory04.svg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 4.5rem;
  margin: 0 auto;
  pointer-events: none;
  position: absolute;
  width: 100rem;
}
.top07 .wrap01 .h2 small {
  font-size: 2rem;
  line-height: 1.5;
}
.top07 .wrap01 .h2 small span {
  background: linear-gradient(transparent 60%, #fffb00 60%);
}
.top07 .wrap01 .h2 strong {
  color: #004bb1;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: normal;
  margin-top: .5rem;
}
.top07 .wrap01 .tab_area .tab_btns {
  display: flex;
  gap: .5rem;
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn {
  align-items: center;
  color: #858585;
  display: flex;
  font-size: 1.7rem;
  height: 4.5rem;
  justify-content: center;
  transition: .3s;
  width: calc((100% - 1.5rem) / 4);
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn.active {
  color: #fff;
  pointer-events: none;
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn:hover {
  opacity: .7;
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn01 {
  background: rgba(111, 183, 223, .26);
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn02 {
  background: rgba(127, 184, 112, .26);
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn03 {
  background: rgba(222, 179, 79, .26);
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn04 {
  background: rgba(179, 185, 84, .26);
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn01.active {
  background: rgba(111, 183, 223, 1);
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn02.active {
  background: rgba(127, 184, 112, 1);
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn03.active {
  background: rgba(222, 179, 79, 1);
}
.top07 .wrap01 .tab_area .tab_btns .tab_btn04.active {
  background: rgba(179, 185, 84, 1);
}
.top07 .wrap01 .tab_area .tab_contents {
  margin-top: 1.8rem;
  position: relative;
}
.factory_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.factory_card {
  background: #fff;
  border: solid 1px;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: calc(20/14);
  padding: 1.4rem;
  width: calc((100% - 4.8rem) / 4);
}
.factory_card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.factory_card .tags .tag {
  align-items: center;
  border-radius: .2rem;
  color: #fff;
  display: flex;
  font-size: 1.2rem;
  height: 2rem;
  justify-content: center;
  width: calc((100% - .4rem) / 2);
}
.tagA01 {
  background: rgba(111, 183, 223, 1);
}
.tagA02 {
  background: rgba(127, 184, 112, 1);
}
.tagA03 {
  background: rgba(222, 179, 79, 1);
}
.tagA04 {
  background: rgba(179, 185, 84, 1);
}
.tagB01 {
  background: rgba(214, 132, 107, 1);
}
.tagB02 {
  background: rgba(178, 131, 194, 1);
}
.tagB03 {
  background: rgba(113, 164, 185, 1);
}
.tagB05 {
  background: rgba(221, 124, 179, 1);
}
.factory_card .img {
  aspect-ratio: 204/148;
  margin-top: .8rem;
  overflow: hidden;
}
.factory_card .img img {
  height: 100%;
  object-fit: cover;
  transition: .3s;
  width: 100%;
}
.factory_card  .h3 {
  align-items: center;
  border-bottom: solid 1px #cecece;
  color: #004bb1;
  display: flex;
  flex-direction: column;
  font-weight: 800;
  height: 7rem;
  justify-content: center;
  line-height: calc(18/14);
  text-align: center;
  white-space: nowrap;;
}
.factory_card .p1 {
  border-bottom: solid 1px #cecece;
  height: 9.7rem;
  left: -1.4rem;
  padding: .8rem 1.4rem;
  position: relative;
  width: calc(100% + 2.8rem);
}
.factory_card .p2 {
  border-bottom: solid 1px #cecece;
  height: 5.6rem;
  padding: .8rem 0;
}
.factory_card dl {
  padding: .8rem 0;
}
.factory_card .dl1 {
  border-bottom: solid 1px #cecece;
  height: 9.8rem;
}
.factory_card .dl2 {
  height: 14rem;
}
.factory_cards .factory_card dl dt {
  font-weight: 500;
}
.factory_card .btn {
  align-items: center;
  background: #eceee1;
  display: flex;
  height: 3.3rem;
  justify-content: center;
  padding-left: 2.8rem;
  position: relative;
  width: 100%;
}
.factory_card .btn::after {
  content: '　＞';
  white-space: nowrap;
}
.factory_card .btn:hover {
  opacity: .7;
}
.top07 .wrap01 .tab_area .tab_contents .tab_content {
  display: none!important;
}
.top07 .wrap01 .tab_area .tab_contents .tab_content.active {
  display: flex!important;
}

@media screen and (max-width:768px) {
  .top07 .wrap01 {
    padding: 12rem 0 2.5rem;
  }
  .top07 .wrap01 .h2 {
    border-bottom: solid .5rem #dadbdb;
  }
  .top07 .wrap01 .h2::before {
    width: 100%;
    z-index: -1;
  }
  .top07 .wrap01 .tab_area .tab_btns {
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0 1.5rem;
  }
  .top07 .wrap01 .tab_area .tab_btns .tab_btn {
    width: calc((100% - .5rem) / 2);
  }
  .top07 .wrap01 .tab_area .tab_contents {
    margin-top: 1.8rem;
    position: relative;
  }
  .factory_cards {
    display: block;
    overflow: hidden;
    padding: 0 ;
    position: relative;
    touch-action: pan-y;
  }
  .factory_cards .cards_inner {
    display: flex;
    gap: 3rem;
    padding: 0 3rem;
    transition: transform .4s ease;
    width: 100%;
  }
  .factory_cards .factory_card {
    flex-shrink: 0;
    width: 100%;
  }
  .factory_cards .slide-prev, .factory_cards .slide-next {
    align-items: center;
    background: #004bb1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.7rem;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 0;
    height: 7.4rem;
    justify-content: center;
    line-height: 1;
    padding: 0 1rem .51rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    z-index: 10;
  }
  .factory_cards .slide-prev {
    background-image: url(../img/tour/prev.svg);
  }
  .factory_cards .slide-next {
    background-image: url(../img/tour/next.svg);
  }
  .factory_cards .slide-prev {
    left: 0;
  }
  .factory_cards .slide-next {
    right: 0;
  }
}
/* ===========================================================================
  top08
============================================================================ */
.top08 .container {
  border-bottom: solid 1rem #dadbdb;
  margin-bottom: 1rem;
}
.top08 .wrap01 {
  padding: 10rem 0 2.5rem;
}
.top08 .wrap01 .h2 {
  align-items: center;
  border-bottom: solid 1rem #dadbdb;
  color: #004bb1;
  display: flex;
  flex-direction: column;
  font-size: 3.2rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding-bottom: .7rem;
  position: relative;
  text-align: center;
}
.top08 .wrap01 .h2::before {
  background-image: url(../img/tour/factory04.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 4.5rem;
  margin: 0 auto;
  pointer-events: none;
  position: absolute;
  width: 100rem;
  z-index: -1;
}
.top08 .wrap01 .h2::after {
  background-image: url(../img/tour/food01.svg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -.2rem;
  content: '';
  height: 6.3rem;
  margin: 0 auto;
  pointer-events: none;
  position: absolute;
  width: 100rem;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .top08 .container {
    border-bottom: solid 1rem #dadbdb;
    margin-bottom: 1rem;
  }
  .top08 .wrap01 {
    padding: 12rem 0 2.5rem;
  }
  .top08 .wrap01 .h2::before {
    width: 100%;
  }
  .top08 .wrap01 .h2::after {
    width: 100%;
  }
}
/* ===========================================================================
  responsive_cards
============================================================================ */
.responsive_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.responsive_cards.col3 .responsive_card {
  width: calc((100% - 6rem) / 3);
}
.responsive_cards.col2 .responsive_card {
  width: calc((100% - 3rem) / 2);
}
.responsive_card {
  background: #fff;
  border: solid 1px #000;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
}
.responsive_cardsA .responsive_card {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: calc(20/14);
  padding: 1.4rem;
}
.responsive_cardsA .responsive_card .tags {
  display: flex;
  gap: .4rem;
  justify-content: center;
}
.responsive_cardsA .responsive_card .tags .tag {
  align-items: center;
  border-radius: .2rem;
  color: #fff;
  display: flex;
  font-size: 1.2rem;
  height: 2.1rem;
  justify-content: center;
  width: 9.6rem;
}
.responsive_cardsA .responsive_card .imgs {
  display: flex;
  justify-content: space-between;
  margin-top: .6rem;
}
.responsive_cardsA .responsive_card .imgs .img {
  aspect-ratio: 140/148;
  overflow: hidden;
  width: calc((100% - .5rem) / 2);
}
.responsive_cardsA .responsive_card .imgs .img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.responsive_cardsA .responsive_card .h3 {
  color: #004bb1;
  font-weight: 800;
  padding: .9rem 0;
  text-align: center;
}
.responsive_cardsA .responsive_card .p1 {
  border-top: solid 1px #cecece;
  height: 15.8rem;
  padding: .9rem 0;
}
.responsive_cardsA .responsive_card .p2 {
  border-top: solid 1px #cecece;
  left: -1.4rem;
  padding: .9rem 1.4rem;
  position: relative;
  width: calc(100% + 2.8rem);
}
.responsive_cardsA .responsive_card dl {
  border-top: solid 1px #cecece;
  height: 15rem;
  padding: .9rem 0;;
}
.responsive_cardsA .responsive_card dl dt {
  font-weight: 500;
}
.responsive_cardsA .responsive_card .btn {
  align-items: center;
  background: #eceee1;
  display: flex;
  height: 3.3rem;
  justify-content: center;
  margin: 0 auto;
  padding-left: 2.8rem;
  position: relative;
  width: 20rem;
}
.responsive_cardsA .responsive_card .btn::after {
  content: '　＞';
  white-space: nowrap;
}
.responsive_cardsA .responsive_card .btn:hover {
  opacity: .7;
}
.responsive_cardsB .responsive_card {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: calc(20/14);
  padding: 1.4rem;
}
.responsive_cardsB .responsive_card .h3 {
  align-items: center;
  color: #004bb1;
  display: flex;
  font-size: 1.6rem;
  font-weight: 800;
  height: 6rem;
  justify-content: center;
  line-height: 1.25;
  text-align: center;
}
.responsive_cardsB .responsive_card .p1 {
  font-weight: 500;
  margin: 1rem 0;
  text-align: center;
}
.responsive_cardsB .responsive_card .imgs .img {
  aspect-ratio: 282/177;
  margin: 0 auto;
  max-width: 28.2rem;
  overflow: hidden;
}
.responsive_cardsB .responsive_card .imgs .img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.responsive_cardsB .responsive_card .imgs .cap {
  align-items: center;
  display: flex;
  font-size: 1rem;
  height: 2rem;
  justify-content: flex-end;
  text-align: right;
}
.responsive_cardsB .responsive_card .p2 {
  border-bottom: solid 1px #cecece;
  height: 13.1rem;
  left: -1.4rem;
  padding: 0 1.4rem .9rem;
  position: relative;
  text-align: justify;
  width: calc(100% + 2.8rem);
}
.responsive_cardsB .responsive_card .ul1 {
  padding: .9rem 0;
}
.responsive_cardsB .responsive_card .ul1 li {
  display: flex;
}
.responsive_cardsB .responsive_card .ul1 li.col1 {
  flex-wrap: wrap;
}
.responsive_cardsB .responsive_card .ul1 li span {
  display: flex;
  flex-shrink: 0;
  font-weight: 500;
}
.responsive_cardsB .responsive_card .ul1 li.col1 span {
  width: 100%;
}
.responsive_cardsB .responsive_card .ul1 li p {
  flex-shrink: 0;
  font-weight: 400;
}
.responsive_cardsB .responsive_card .ul1 li.col1 p {
  width: 100%;
}
.responsive_cardsB .responsive_card .ul1 li p strong {
  font-weight: 500;
}
.responsive_cardsB .responsive_card .link {
  color: #004bb1;
  text-decoration: underline;
}
@media screen and (max-width:768px) {
  .responsive_cards {
    display: block;
    overflow: hidden;
    padding: 0 ;
    position: relative;
    touch-action: pan-y;
  }
  .responsive_cards .cards_inner {
    display: flex;
    gap: 3rem;
    padding: 0 3rem;
    transition: transform .4s ease;
    width: 100%;
  }
  .responsive_cards .responsive_card {
    flex-shrink: 0;
    width: 100%!important;
  }
  .responsive_cards .slide-prev, .responsive_cards .slide-next {
    align-items: center;
    background: #004bb1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.7rem;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 0;
    height: 7.4rem;
    justify-content: center;
    line-height: 1;
    padding: 0 1rem .51rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    z-index: 10;
  }
  .responsive_cards .slide-prev {
    background-image: url(../img/tour/prev.svg);
  }
  .responsive_cards .slide-next {
    background-image: url(../img/tour/next.svg);
  }
  .responsive_cards .slide-prev {
    left: 0;
  }
  .responsive_cards .slide-next {
    right: 0;
  }
  .responsive_cardsB .responsive_card .p2 {
    height: 17.1rem;
  }
}
/* ===========================================================================
  .footer01
============================================================================ */
.footer01 .wrap01 {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 7rem 0 12rem;
}
.footer01 .wrap01 .h2 {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
.footer01 .wrap01 .h2 span {
  display: block;
  margin-top: .9rem;
  width: 26.1rem;
}
.footer01 .wrap01 .p1 {
  font-size: 1.8rem;
  margin-top: 2rem;
}
.footer01 .wrap01 .btn {
  align-items: center;
  background: #fffb00;
  border: solid 3px #004bb1;
  border-radius: 100rem;
  color: #004bb1;
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  height: 5.8rem;
  justify-content: center;
  margin-top: .6rem;
  position: relative;
  width: 32rem;
}
.footer01 .wrap01 .btn:hover {
  background: #004bb1;
  color: #fffb00;
}
.footer01 .wrap01 .btn::before, .footer01 .wrap01 .btn::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 7.2rem;
  pointer-events: none;
  position: absolute;
  top: -2.5rem;
  transition: .3s;
  width: 5rem;
}
.footer01 .wrap01 .btn::before {
  background-image: url(../img/tour/lens01.svg);
  left: -8.4rem;
}
.footer01 .wrap01 .btn::after {
  background-image: url(../img/tour/lens02.svg);
  right: -8.4rem;
}
.footer01 .wrap01 .btn:hover:before, .footer01 .wrap01 .btn:hover:after {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .footer01 .wrap01 {
    padding: 6rem 1.5rem 8rem;
  }
  .footer01 .wrap01 .p1 {
    font-size: 1.6rem;
  }
  .footer01 .wrap01 .btn {
    margin-top: 1rem;
  }
  .footer01 .wrap01 .btn::before, .footer01 .wrap01 .btn::after {
    bottom: 0;
    height: 4rem;
    margin: auto;
    top: 0;
    width: 4rem;
  }
  .footer01 .wrap01 .btn::before {
    left: 1.5rem;
  }
  .footer01 .wrap01 .btn::after {
    right: 1.5rem;
  }
}
/* ===========================================================================
  .footer02
============================================================================ */
.footer02 .wrap01 {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}
.footer02 .wrap01 .btn {
  align-items: center;
  border: solid 3px #004bb1;
  border-radius: 100rem;
  color: #004bb1;
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  height: 5.8rem;
  justify-content: center;
  margin-top: .6rem;
  position: relative;
  width: 32rem;
}
.footer02 .wrap01 .btn:hover {
  background: #004bb1;
  color: #fff;
}
.footer02 .wrap01 .btn + .btn {
  margin-top: 3rem;
}
.footer02 .wrap01 .sup {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1.7rem;
}
/* ===========================================================================
  .copyright
============================================================================ */
.copyright {
  background: #004bb1;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 1.5rem 0 13rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1rem;
    padding: 2.5rem 0 8rem;
  }
}
/* ===========================================================================
  .page_fv
============================================================================ */
.page_fv {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.tour_05 .page_fv {
  background-image: url(../img/tour/page/fv_akaginyuugyou.jpg);
}
.tour_03 .page_fv {
  background-image: url(../img/tour/page/fv_meiji.jpg);
}
.tour_01 .page_fv {
  background-image: url(../img/tour/page/fv_kohara.jpg);
}
.tour_04 .page_fv {
  background-image: url(../img/tour/page/fv_nakamura.jpg);
}
.tour_02 .page_fv {
  background-image: url(../img/tour/page/fv_glico.jpg);
}
.tour_06 .page_fv {
  background-image: url(../img/tour/page/fv_mint.jpg);
}
.page_fv::before {
  background: #c5c5c5;
  background: #a4a4a4 ;
  content: '';
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  opacity: .8;
  position: absolute;
  top: 0;
  width: 100%;
}
.page_fv .wrap01 {
  align-items: center;
  aspect-ratio: 1280/490;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.page_fv .wrap01 .h1 > span {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 2.4rem;
  font-weight: 800;
  justify-content: center;
  text-align: center;
  text-shadow: 0 0 .4rem rgba(0, 0, 0, .84);
}
.page_fv .wrap01 .h1 > span::before, .page_fv .wrap01 .h1 > span::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 4.5rem;
  width: 3rem;
}
.page_fv .wrap01 .h1 > span::before {
  background-image: url(../img/tour/page/page_fv_deco01.svg);
}
.page_fv .wrap01 .h1 > span::after {
  background-image: url(../img/tour/page/page_fv_deco02.svg);
}
.page_fv .wrap01 .h1 > strong {
  background: #fff;
  border-radius: 3rem 3rem 0 0 ;
  color: #004bb1;
  display: flex;
  font-size: 3.2rem;
  font-weight: 800;
  height: 11.9rem;
  justify-content: center;
  line-height: normal;
  margin-top: 1.8rem;
  padding: 1.9rem 0 .4rem;
  position: relative;
  text-align: center;
  width: 51.9rem;
}
.page_fv .wrap01 .h1 > strong span {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page_fv .wrap01 {
    align-items: center;
    aspect-ratio: 2/2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  .page_fv .wrap01 .h1 span {
    font-size: 2rem;
  }
  .page_fv .wrap01 .h1 span::before, .page_fv .wrap01 .h1 span::after {
    height: 3rem;
  }
  .page_fv .wrap01 .h1 strong {
    border-radius: 2rem 2rem 0 0 ;
    font-size: 2rem;
    height: auto;
    margin-top: 1rem;
    padding: 1.5rem 0 .4rem;
    width: calc(100vw - 3rem);
  }
}
/* ===========================================================================
  .page01
============================================================================ */
.page01 .head {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 4.6rem 0 6.4rem;
  position: relative;
  text-align: center;
}
.page01 .head::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  position: absolute;
}
.tour_05 .page01 .head::before {
  background-image: url(../img/tour/page/illust_ice01.svg);
  height: 16rem;
  left: 20rem;
  top: -8rem;
  width: 23.7rem;
}
.tour_03 .page01 .head::before {
  background-image: url(../img/tour/page/illust_choco01.svg);
  height: 22.8rem;
  left: 15rem;
  top: -6rem;
  width: 22rem;
}
.tour_01 .page01 .head::before {
  background-image: url(../img/tour/page/illust_gear01.svg);
  height: 19.2rem;
  left: 20rem;
  top: -7rem;
  width: 23.6rem;
}
.tour_04 .page01 .head::before {
  background-image: url(../img/tour/page/illust_nikuman01.svg);
  height: 13.9rem;
  left: 20.5rem;
  top: -5rem;
  width: 17.1rem;
}
.tour_02 .page01 .head::before {
  background-image: url(../img/tour/page/illust_stick01.svg);
  height: 21rem;
  left: 15.3rem;
  top: -7.3rem;
  width: 21.8rem;
}
.tour_06 .page01 .head::before {
  background-image: url(../img/tour/page/illust_coin01.svg);
  height: 14.21rem;
  left: 14.2rem;
  top: -3rem;
  width: 24.7rem;
}
.page01 .head .h2 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 3.2rem;
  font-weight: 700;
  height: 9.2rem;
  justify-content: center;
  line-height: normal;
  position: relative;
}
.page01 .head .tag {
  align-items: center;
  border-radius: .2rem;
  color: #fff;
  display: flex;
  font-size: 1.2rem;
  height: 2rem;
  justify-content: center;
  letter-spacing: -.07rem;
  margin-top: 1.7rem;
  width: 10rem;;
}
.page01 .sec_company {
  background: #e8f1f7;
  padding: 3.5rem 0;
}
.page01 .sec_company .wrap01 {
  display: flex;
  height: 48.3rem;
  justify-content: space-between;
}
.page01 .sec_company .wrap01 .img {
  aspect-ratio: 500/483;
  border-radius: 1rem;
  overflow: hidden;
  width: 50%;
}
.page01 .sec_company .wrap01 .img img {
  height: 102%;
  object-fit: cover;
  width: 102%;
}
.page01 .sec_company .wrap01 .txts {
  background: #fff;
  border-radius: 1rem;
  font-weight: 400;
  line-height: calc(1.5);
  padding: 2.2rem;
  width: calc(50% - 3rem);
}
.page01 .sec_company .wrap01 .txts .dls1 dl {
  display: flex;
  gap: .8rem;
}
.page01 .sec_company .wrap01 .txts .dls1 dl dt {
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  white-space: nowrap;
  width: 4.8rem;
}
.page01 .sec_company .wrap01 .txts .dls1 dl dd .g_map {
  align-items: center;
  border: solid 1px #6f6f6f;
  border-radius: .4rem;
  display: flex;
  font-size: 1.4rem;
  height: 2.4rem;
  justify-content: center;
  margin: .6rem 0;
  width: 13.4rem;
}
.page01 .sec_company .wrap01 .txts .dls1 dl dd .url.small {
  font-size: 1.3rem;
}
.page01 .sec_company .wrap01 .txts .dls1 dl dd .url:hover {
  text-decoration: underline;
}
.page01 .sec_company .wrap01 .txts .dls1 .links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.page01 .sec_company .wrap01 .txts .dls1 .links .link {
  align-items: center;
  border: solid 1px #004bb1;
  border-radius: .4rem;
  display: flex;
  font-size: 1.4rem;
  height: 2.4rem;
  justify-content: center;
  width: 15.4rem;
}
.page01 .sec_company .wrap01 .txts .dls1 .links .link:hover {
  background: #004bb1;
  color: #fff;
}
.page01 .sec_company .wrap01 .txts .dls2 {
  border-top: solid 1px #004bb1;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
}
.page01 .sec_company .wrap01 .txts .dls2 dl {
  display: flex;
}
.page01 .sec_company .wrap01 .txts .dls2 dl dt {
  /* width: 13rem; */
  flex-shrink: 0;
  font-weight: 400;
  white-space: nowrap;
}
.page01 .sec_company .wrap01 .txts .dls2 dl dt::first-letter {
  color: #004bb1;
}
.page01 .sec_company .wrap01 .txts .dls2 dl dd {
  /* width: calc(100% - 13rem); */
  flex-shrink: 0;
}
.page01 .sec_company .wrap01 .txts .dls2 dl dd .blue {
  color: #5f97e2;
}
.page01 .sec_point .wrap01 {
  padding: 17rem 0 7rem;
  position: relative;
}
.page01 .sec_point .wrap01::before, .page01 .sec_point .wrap01::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  position: absolute;
}
.tour_05 .page01 .sec_point .wrap01::before {
  background-image: url(../img/tour/page/illust_ice01.svg);
  height: 16rem;
  right: -8.7rem;
  top: 8.7rem;
  width: 23.7rem;
}
.tour_05 .page01 .sec_point .wrap01::after {
  background-image: url(../img/tour/page/illust_ice02.svg);
  bottom: 7rem;
  height: 22.2rem;
  left: -6.7rem;
  width: 27.3rem;
}
.tour_03 .page01 .sec_point .wrap01::before {
  background-image: url(../img/tour/page/illust_choco02.svg);
  height: 22.8rem;
  right: -5.9rem;
  top: 5.3rem;
  width: 22rem;
}
.tour_03 .page01 .sec_point .wrap01::after {
  background-image: url(../img/tour/page/illust_choco01.svg);
  bottom: 4.9rem;
  height: 28rem;
  left: -10.7rem;
  width: 22rem;
}
.tour_01 .page01 .sec_point .wrap01::before {
  background-image: url(../img/tour/page/illust_gear02.svg);
  height: 11rem;
  right: -3rem;
  top: 9.97rem;
  width: 11.2rem;
}
.tour_01 .page01 .sec_point .wrap01::after {
  background-image: url(../img/tour/page/illust_gear03.svg);
  bottom: 6.9rem;
  height: 16.1rem;
  left: -6.6rem;
  width: 19.8rem;
}
.tour_04 .page01 .sec_point .wrap01::before {
  background-image: url(../img/tour/page/illust_nikuman01.svg);
  height: 11.1rem;
  right: -3.3rem;
  top: 11.3rem;
  width: 13.6rem;
}
.tour_04 .page01 .sec_point .wrap01::after {
  background-image: url(../img/tour/page/illust_nikuman01.svg);
  bottom: 7.7rem;
  height: 13.9rem;
  left: -5.7rem;
  width: 17.1rem;
}
.tour_02 .page01 .sec_point .wrap01::before {
  background-image: url(../img/tour/page/illust_stick02.svg);
  height: 18.4rem;
  right: -4.2rem;
  top: 8.6rem;
  width: 17.9rem;
}
.tour_02 .page01 .sec_point .wrap01::after {
  background-image: url(../img/tour/page/illust_stick03.svg);
  bottom: 2.2rem;
  height: 24.2rem;
  left: -8rem;
  width: 24.3rem;
}
.tour_06 .page01 .sec_point .wrap01::before {
  background-image: url(../img/tour/page/illust_coin02.svg);
  height: 12.4rem;
  right: -4.1rem;
  top: 13.2rem;
  width: 21.5rem;
}
.tour_06 .page01 .sec_point .wrap01::after {
  background-image: url(../img/tour/page/illust_coin01.svg);
  bottom: 8.3rem;
  height: 12.4rem;
  left: -7.5rem;
  width: 21.5rem;
}
.page01 .sec_point .wrap01 .frame {
  align-items: center;
  border: solid 1px #004bb1;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  padding: 8rem 0 8.7rem;
  position: relative;
}
.page01 .sec_point .wrap01 .frame::before {
  animation: twinkle 2s ease-in-out infinite;
  background-image: url(../img/tour/stars01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 8.3rem;
  position: absolute;
  right: 39.1rem;
  top: -11.6rem;
  width: 4rem;
}
.page01 .sec_point .wrap01 .frame .h3 {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -7.9rem;
  width: 32.4rem;
}
.page01 .sec_point .wrap01 .frame .ul1 li {
  display: flex;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 700;
  gap: .6rem;
  white-space: nowrap;
}
.page01 .sec_point .wrap01 .frame .ul1 li + li {
  margin-top: 2rem;
}
.page01 .sec_point .wrap01 .frame .ul1 li span {
  color: #ff1010;
  flex-shrink: 0;
  font-size: 3rem;
  position: relative;
  top: -.7rem;
  width: 3rem;
}
.page01 .sec_point .wrap01 .frame .ul1 li p {
  width: calc(100% - 3.6rem);
}
.page01 .sec_point .wrap01 .frame .ul1 li p strong {
  color: #004bb1;
}
.page01 .sec_point .wrap01 .frame .btn {
  bottom: -4.35rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 37.8rem;
  z-index: 3;
}
.page01 .sec_point .wrap01 .frame .btn::before {
  background-color: #004bb1;
  background-image: url(../img/tour/btn_line02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100rem;
  bottom: -.9rem;
  content: '';
  height: 100%;
  position: absolute;
  right: -.4rem;
  width: 100%;
}
.page01 .sec_point .wrap01 .frame .btn span {
  align-items: center;
  background-color: #fffb00;
  border: solid 3px #004bb1;
  border-radius: 100rem;
  color: #004bb1;
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  height: 8.7rem;
  justify-content: center;
  padding-left: 7.8rem;
  position: relative;
  transition: .3s;
  width: 37.8rem;
  z-index: 2;
}
.page01 .sec_point .wrap01 .frame .btn span::before, .page01 .sec_point .wrap01 .frame .btn span::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 5.3rem;
  left: 3.6rem;
  margin: auto;
  position: absolute;
  top: 0;
  width: 4.1rem;
}
.page01 .sec_point .wrap01 .frame .btn span::after {
  background-image: url(../img/tour/pdf.svg);
  transition: .3s;
}
.page01 .sec_point .wrap01 .frame .btn:hover span::after {
  opacity: 0;
}
.page01 .sec_point .wrap01 .frame .btn span::before {
  background-image: url(../img/tour/pdf_y.svg);
}
.page01 .sec_point .wrap01 .frame .btn:hover span {
  background: #004bb1;
  border: solid 3px #fff100;
  color: #fffb00;
}
.page01 .sec_point .wrap01 .small {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 6rem;
  opacity: 0;
  position: relative;
  text-align: center;
  z-index: 2;
}
.page01 .sec_faq .wrap01 {
  padding-bottom: 21rem;
}
.page01 .sec_faq .wrap01 .faqs .faq {
  border-top: 1px solid #004bb1;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding: 2.8rem 0;
}
.page01 .sec_faq .wrap01 .faqs .faq.reverse {
  flex-direction: row-reverse;
}
.page01 .sec_faq .wrap01 .faqs .faq .txts {
  display: flex;
  flex-direction: column;
  height: 31.3rem;
  position: relative;
  width: 46.5rem;
}
.page01 .sec_faq .wrap01 .faqs .faq .txts .h3 {
  align-items: center;
  background-image: url(../img/tour/page/faq_hukidashi01.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #004bb1;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-size: 2.8rem;
  height: 15.8rem;
  justify-content: center;
  line-height: 1.2;
  padding-bottom: 3.8rem;
  position: relative;
  position: absolute;
  top: -2.9rem;
  width: 21.9rem;
}
.page01 .sec_faq .wrap01 .faqs .faq:not(.reverse) .txts .h3 {
  left: 0;
}
.page01 .sec_faq .wrap01 .faqs .faq.reverse .txts .h3 {
  background-image: url(../img/tour/page/faq_hukidashi02.svg);
  right: 0;
}
.page01 .sec_faq .wrap01 .faqs .faq .txts .p1 {
  flex-shrink: 0;
  font-weight: 400;
  line-height: calc(26/16);
  margin-top: auto;
  text-align: justify;
}
.page01 .sec_faq .wrap01 .faqs .faq .img {
  border: solid 3px #004bb1;
  border-radius: 1.5rem;
  height: 31.3rem;
  overflow: hidden;
  width: 46.5rem;
}
.page01 .sec_faq .wrap01 .faqs .faq .img.short {
  height: 22.2rem;
  margin: auto 0;
}
.page01 .sec_faq .wrap01 .faqs .faq .img img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  transform: scale(1.03);
  width: 100%;
}
.page01 .sec_faq .wrap01 .faqs .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 2.3rem;
}
.page01 .sec_faq .wrap01 .faqs .gallery .img {
  aspect-ratio: 294/221;
  overflow: hidden;
  width: calc((100% - 10rem) / 3);
}
.page01 .sec_faq .wrap01 .faqs .gallery .img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page01 .head {
    padding: 6rem 1.5rem;
  }
  .tour_05 .page01 .head::before {
    height: calc(16rem * .7);
    left: -1rem;
    top: -5rem;
    width: calc(23.7rem * .7);
  }
  .tour_03 .page01 .head::before {
    height: calc(22.8rem * .7);
    left: -3rem;
    top: -3rem;
    width: calc(22rem * .7);
  }
  .tour_01 .page01 .head::before {
    height: calc(19.2rem * .7);
    left: -2rem;
    top: -5rem;
    width: calc(23.6rem * .7);;
  }
  .tour_04 .page01 .head::before {
    height: calc(13.9rem * .7);
    left: -1rem;
    top: -4rem;
    width: calc(17.1rem * .7);
  }
  .tour_02 .page01 .head::before {
    height: calc(21rem * .7);
    left: -1rem;
    top: -2.5rem;
    width: calc(21.8rem * .7);
  }
  .tour_06 .page01 .head::before {
    height: calc(14.2rem * .7);
    left: -1rem;
    top: -2.5rem;
    width: calc(24.7rem * .7);
  }
  .page01 .head .h2 {
    font-size: 2rem;
    height: 6rem;
  }
  .page01 .sec_company {
    padding: 3.5rem 1.5rem;
  }
  .page01 .sec_company .wrap01 {
    display: block;
    height: auto;
  }
  .page01 .sec_company .wrap01 .img {
    background: #fff;
    padding: 1.5rem;
    width: 100%;
  }
  .page01 .sec_company .wrap01 .txts {
    border-radius: 0 0 1rem 1rem;
    margin-top: -1.5rem;
    padding: 1.5rem 1.5rem;
    width: 100%;
  }
  .page01 .sec_company .wrap01 .txts .dls1 dl {
    display: block;
    font-size: 1.4rem;
    gap: .8rem;
  }
  .page01 .sec_company .wrap01 .txts .dls1 dl + dl {
    margin-top: 1rem;
  }
  .page01 .sec_company .wrap01 .txts .dls1 dl dt {
    width: 4rem;
  }
  .page01 .sec_company .wrap01 .txts .dls1 dl dd .url {
    font-size: 1.3rem;
  }
  .page01 .sec_company .wrap01 .txts .dls1 dl dd .url.small {
    font-size: 1.1rem;
  }
  .page01 .sec_company .wrap01 .txts .dls2 {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
  }
  .page01 .sec_company .wrap01 .txts .dls2 dl {
    display: block;
    font-size: 1.4rem;
  }
  .page01 .sec_company .wrap01 .txts .dls2 dl + dl {
    margin-top: 1rem;
  }
  .page01 .sec_company .wrap01 .txts .dls2 dl dt {
    width: 100%;
  }
  .page01 .sec_company .wrap01 .txts .dls2 dl dd {
    width: 100%;
  }
  .page01 .sec_point .wrap01 {
    padding: 10rem 1.5rem 6rem;
    position: relative;
  }
  .page01 .sec_point .wrap01::before, .page01 .sec_point .wrap01::after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    position: absolute;
  }
  .tour_05 .page01 .sec_point .wrap01::before {
    height: calc(16rem * .7);
    right: -2rem;
    top: 2rem;
    width: calc(23.7rem * .7);
  }
  .tour_05 .page01 .sec_point .wrap01::after {
    bottom: 2rem;
    height: calc(22.2rem * .7);
    left: -2rem;
    width: calc(27.3rem * .7);
  }
  .tour_03 .page01 .sec_point .wrap01::before {
    height: calc(22.8rem * .7);
    right: -4rem;
    top: 2rem;
    width: calc(22rem * .7);
  }
  .tour_03 .page01 .sec_point .wrap01::after {
    bottom: 2rem;
    height: calc(22.8rem * .7);
    left: -4rem;
    width: calc(22rem * .7);
  }
  .tour_01 .page01 .sec_point .wrap01::before {
    height: calc(11rem * .7);
    right: -1rem;
    top: 4rem;
    width: calc(11.2rem * .7);
  }
  .tour_01 .page01 .sec_point .wrap01::after {
    bottom: 3rem;
    height: calc(16.1rem * .7);
    left: -3rem;
    width: calc(19.8rem * .7);
  }
  .tour_04 .page01 .sec_point .wrap01::before {
    height: calc(11.1rem * .7);
    right: -3rem;
    top: 4rem;
    width: calc(13.6rem * .7);
  }
  .tour_04 .page01 .sec_point .wrap01::after {
    bottom: 2rem;
    height: calc(13.9rem * .7);
    left: -3rem;
    width: calc(17.1rem * .7);
  }
  .tour_02 .page01 .sec_point .wrap01::before {
    height: calc(18.4rem * .7);
    right: -3rem;
    top: 4rem;
    width: calc(17.9rem * .7);
  }
  .tour_02 .page01 .sec_point .wrap01::after {
    bottom: 2rem;
    height: calc(24.2rem * .7);
    left: -2rem;
    width: calc(24.3rem * .7);
  }
  .tour_06 .page01 .sec_point .wrap01::before {
    background-image: url(../img/tour/page/illust_coin02.svg);
    height: calc(12.4rem * .7);
    right: -3rem;
    top: 4rem;
    width: calc(21.5rem * .7);
  }
  .tour_06 .page01 .sec_point .wrap01::after {
    bottom: 2rem;
    height: calc(12.4rem * .7);
    left: -2rem;
    width: calc(21.5rem * .7);
  }
  .page01 .sec_point .wrap01 .frame {
    border-radius: 1rem;
    padding: 5rem 1.5rem 7rem;
  }
  .page01 .sec_point .wrap01 .frame::before {
    right: 5rem;
    top: -11rem;
  }
  .page01 .sec_point .wrap01 .frame .h3 {
    top: -6.2rem;
    width: calc(32.4rem * .7);
  }
  .page01 .sec_point .wrap01 .frame .ul1 li {
    font-size: 1.6rem;
  }
  .page01 .sec_point .wrap01 .frame .ul1 li + li {
    margin-top: 1.6rem;
  }
  .page01 .sec_point .wrap01 .frame .ul1 li span {
    font-size: 2.4rem;
    width: 2.4rem;
  }
  .page01 .sec_point .wrap01 .frame .ul1 li p {
    white-space: nowrap;
    width: calc(100% - 3rem);
  }

  .page01 .sec_point .wrap01 .frame .btn {
    white-space: nowrap;
    width: 32rem;
  }
  .page01 .sec_point .wrap01 .frame .btn::before {
    width: 32rem;
  }
  .page01 .sec_point .wrap01 .frame .btn span {
    font-size: 1.8rem;
    padding-left: 5rem;
    width: 32rem;
  }
  .page01 .sec_point .wrap01 .frame .btn span::before, .page01 .sec_point .wrap01 .frame .btn span::after {
    left: 1.5rem;
  }

  .page01 .sec_faq .wrap01 {
    padding-bottom: 17rem;
  }
  .page01 .sec_faq .wrap01 .faqs .faq {
    border-top: 1px solid #004bb1;
    flex-direction: column;
    padding: 2.8rem 1.5rem;
  }
  .page01 .sec_faq .wrap01 .faqs .faq.reverse {
    flex-direction: column;
  }
  .page01 .sec_faq .wrap01 .faqs .faq .txts {
    height: auto;
    width: 100%;
  }
  .page01 .sec_faq .wrap01 .faqs .faq .txts .h3 {
    font-size: 2rem;
    height: calc(15.8rem * .75);
    padding-bottom: 2.4rem;
    position: relative;
    top: -2.9rem;
    width: calc(21.9rem * .75);
  }
  .page01 .sec_faq .wrap01 .faqs .faq:not(.reverse) .txts .h3 {
    left: 0;
  }
  .page01 .sec_faq .wrap01 .faqs .faq.reverse .txts .h3 {
    margin-left: auto;
  }
  .page01 .sec_faq .wrap01 .faqs .faq .txts .p1 {
    font-size: 1.4rem;
    margin-top: -1.5rem;
  }
  .page01 .sec_faq .wrap01 .faqs .faq .img {
    aspect-ratio: calc(46.5/31.3);
    border-radius: 1rem;
    height: auto;
    margin-top: 2rem;
    width: 100%;
  }
  .page01 .sec_faq .wrap01 .faqs .faq .img.short {
    aspect-ratio: calc(46.5/22.2);
    height: auto;
    margin: 2rem 0 0;
  }
  .page01 .sec_faq .wrap01 .faqs .gallery {
    gap: 1.5rem;
    margin-top: 0;
    padding: 0 1.5rem;
  }
  .page01 .sec_faq .wrap01 .faqs .gallery .img {
    width: calc((100% - 3rem) / 2);
  }
}
/* ===========================================================================
  .page02
============================================================================ */
.page02 .container {
  background: #f0f1ed;
  position: relative;
}
.page02 .head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  position: absolute;
  top: -6rem;
  width: 100%;
}
.page02 .head::before, .page02 .head::after {
  border-bottom: 1px solid #000;
  border-top: 3px solid #000;
  content: '';
  height: .9rem;
  width: calc((100% - 51rem) / 2);
}
.page02 .head .h2 {
  align-items: center;
  background-image: url(../img/tour/page/page02_ttl.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #004bb1;
  display: flex;
  font-size: 2.4rem;
  height: 12rem;
  justify-content: center;
  line-height: 1.37;
  text-align: center;
  width: 48rem;
}
.page02 .sec_spot {
  background: #f0f1ed;
  padding: 11.6rem  0 7rem;
}
.page02 .sec_spot .wrap02 {
  margin-top: 8.5rem;
}
.page02 .sec_spot .wrap02 .h3 {
  display: flex;
  justify-content: center;
  position: relative;
}
.page02 .sec_spot .wrap02 .h3::before, .page02 .sec_spot .wrap02 .h3::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -1.8rem;
  content: '';
  height: 3.9rem;
  position: absolute;
  width: 7.9rem;
}
.page02 .sec_spot .wrap02 .h3::before {
  background-image: url(../img/tour/page/ribbon01.svg);
  left: 0;
}
.page02 .sec_spot .wrap02 .h3::after {
  background-image: url(../img/tour/page/ribbon02.svg);
  right: 0;
}
.page02 .sec_spot .wrap02 .h3 span {
  align-items: center;
  background: #fff;
  border: solid 1px #004bb1;
  color: #004bb1;
  display: flex;
  font-size: 2.4rem;
  height: 3.9rem;
  justify-content: center;
  position: relative;
  width: 87.3rem;
  z-index: 2;
}
.page02 .sec_spot .wrap02 .flows {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  margin-top: 8rem;
}
.page02 .sec_spot .wrap02 .flows .flow {
  position: relative;
}
.page02 .sec_spot .wrap02 .flows .flow.grow {
  flex-grow: 1;
}
.page02 .sec_spot .wrap02 .flows .flow .arrow {
  align-items: center;
  background: #000;
  border-radius: 100%;
  color: #fff;
  display: flex;
  font-size: 1.3rem;
  height: 7.4rem;
  justify-content: center;
  left: -4.8rem;
  letter-spacing: .028rem;
  position: absolute;
  text-align: center;
  top: -3.1rem;
  width: 7.4rem;
}
.page02 .sec_spot .wrap02 .flows .flow .arrow.small {
  font-size: 1.1rem;
}
.page02 .sec_spot .wrap02 .flows .flow .arrow span::before {
  content: '▶︎';
}
.page02 .sec_spot .wrap02 .flows .flow .when {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -5.5rem;
}
.page02 .sec_spot .wrap02 .flows .flow .when .time {
  color: #004bb1;
  font-weight: 800;
}
.page02 .sec_spot .wrap02 .flows .flow .when .icon {
  width: 7.4rem;
}
.page02 .sec_spot .wrap02 .flows .flow .when .genre {
  font-size: 1.2rem;
}
.page02 .sec_spot .wrap02 .flows .flow:has(.blue) .when .genre {
  color: #fff;
}
.page02 .sec_spot .wrap02 .flows .flow dl {
  border: solid 1px;
  border-radius: .5rem;
  overflow: hidden;
}
.page02 .sec_spot .wrap02 .flows .flow dl dt {
  display: flex;
}
.page02 .sec_spot .wrap02 .flows .flow dl dt .h4 {
  font-size: 1.8rem;
  font-weight: 500;
  min-width: 23rem;
  padding: 6.2rem .9rem .9rem;
  text-align: center;
  white-space: nowrap;
}
.page02 .sec_spot .wrap02 .flows .flow dl dt .h4.blue {
  background: #004bb1;
  color: #fff;
}
.page02 .sec_spot .wrap02 .flows .flow dl dt .h4.beige {
  background: #ebe0d0;
}
.page02 .sec_spot .wrap02 .flows .flow dl dt .h4.sky {
  background: #c6d8f2;
}
.page02 .sec_spot .wrap02 .flows .flow dl dt span {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 7.2rem;
  justify-content: center;
}
.page02 .sec_spot .wrap02 .flows .flow dl dd {
  background: #fff;
  font-weight: 400;
  line-height: 1.5;
  padding: .9rem .9rem 1rem;
}
.page02 .sec_spot .wrap02 .flows .flow dl dd span {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 7.3rem;
  justify-content: center;
  text-align: center;
}
.page02 .sec_spot .wrap02 .flows .flow dl dd span strong {
  background: linear-gradient(transparent 60%, #fffb00 60%);
  font-weight: 500;
}
.page02 .sec_spot .wrap02 .comment {
  background: #fff;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 3rem;
  padding: .9rem 7rem .9rem 14.3rem;
  position: relative;
}
.page02 .sec_spot .wrap02 .comment::before {
  background-image: url(../img/tour/page/pin01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 6rem;
  left: 7.7rem;
  position: absolute;
  top: -.7rem;
  width: 4.4rem;
}
@media screen and (max-width: 768px) {
  .page02 .head::before, .page02 .head::after {
    display: none;
  }
  .page02 .head .h2 {
    background-size: 50rem;
    font-size: 2rem;
    height: 12rem;
    width: 100%;
  }
  .page02 .sec_spot .wrap02 .h3::before {
    left: .5rem;
  }
  .page02 .sec_spot .wrap02 .h3::after {
    right: .5rem;
  }
  .page02 .sec_spot .wrap02 .h3 span {
    font-size: 2rem;
    width: 28rem;
  }
  .page02 .sec_spot .wrap02 .flows {
    align-items: center;
    flex-direction: column;
    gap: 16rem;
    margin-top: 9rem;
    padding: 0 1.5rem;
  }
  .page02 .sec_spot .wrap02 .flow {
    width: 100%;
  }
  .page02 .sec_spot .wrap02 .flows .flow.grow {
    flex-grow: inherit;
  }
  .page02 .sec_spot .wrap02 .flows .flow .arrow {
    flex-direction: column;
    left: 0;
    line-height: 1.2;
    margin: auto;
    right: 0;
    top: -14rem;
    width: 7.4rem;
  }
  .page02 .sec_spot .wrap02 .flows .flow .arrow.small {
    font-size: 1.1rem;
  }
  .page02 .sec_spot .wrap02 .flows .flow .arrow span::before {
    content: '▼';
  }
  .page02 .sec_spot .wrap02 .flows .flow .when {
    top: -6rem;
  }
  .page02 .sec_spot .wrap02 .flows .flow dl dt .h4 {
    min-width: 50%;
    width: 100%;
  }
  .page02 .sec_spot .wrap02 .flows .flow dl dt span.sp_small {
    font-size: 1.3rem;
  }
  .page02 .sec_spot .wrap02 .comment {
    margin-top: 6rem;
    padding: 6rem 1.5rem 3rem;
  }
  .page02 .sec_spot .wrap02 .comment::before {
    left: 0;
    margin: auto;
    right: 0;
    top: -1rem;
  }
}
/* ===========================================================================
  .page03
============================================================================ */
.page03 .container {
  padding: 10rem 0 8rem;
}
.page03 .head {
  background-image: url(../img/tour/page/page03_deco01.svg);
  background-position: bottom;
  background-size: 128rem;
  position: relative;
}
.page03 .head .h2 {
  align-items: center;
  color: #004bb1;
  display: flex;
  font-size: 3.2rem;
  height: 5.7rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 100rem;
  position: relative;
  text-align: center;
}
.page03 .head .h2::before {
  animation: spin1 5s linear infinite;
  background-image: url(../img/tour/icon_circle01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 9rem;
  position: absolute;
  right: -1.8rem;
  top: 1.2rem;
  width: 9rem;
  z-index: 2;
}
.page03 .sec_others {
  border-bottom: solid 1px;
}
.page03 .sec_others .wrap01 {
  padding: 0 4rem;
  position: relative;
}
.slider_cards {
  overflow: hidden;
  padding: 5.3rem 0 4.4rem;
}
.slider_cards .slider-inner {
  display: flex;
  gap: 2.5rem;
  transition: transform .4s ease;
}
.slider_cards .card {
  flex-shrink: 0;
  width: calc((calc(100rem - 8rem) - 5rem) / 3);
}
.slider_cards .card .h3 {
  align-items: center;
  background-image: url(../img/tour/hukidashi01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  height: 6.2rem;
  justify-content: center;
  padding-bottom: 1.7rem;
  transition: .3s;
  width: 100%;
}
.slider_cards .card:hover .h3 {
  transform: translateY(-1rem);
}
.slider_cards .card .img {
  aspect-ratio: 277/202;
  border: solid 3px #004bb1;
  border-radius: 1.5rem;
  margin-top: .3rem;
  overflow: hidden;
}
.slider_cards .card .img img {
  height: 105%;
  max-width: auto;
  object-fit: cover;
  transition: .3s;
  width: 105%;
}
.slider_cards .card:hover .img img {
  transform: scale(1.1);
}
.slider_cards .card .h4 {
  align-items: center;
  display: flex;
  gap: .4rem;
  margin-top: 1.3rem;
}
.slider_cards .card .h4 .icon {
  width: 4.8rem;
}
.slider_cards .card .h4 .txt {
  font-weight: 800;
  line-height: calc(24/16);
  white-space: nowrap;
  width: calc((100% - 5.2rem));
}
.slider_cards .card .p2 {
  align-items: center;
  display: flex;
  font-size: 1.3rem;
  font-weight: 400;
  height: 4rem;
  justify-content: center;
  margin-top: 1.3rem;
  text-align: center;
}
.slider_cards .card .p3 {
  align-items: center;
  border-radius: .2rem;
  display: flex;
  font-size: 1.3rem;
  font-weight: 400;
  height: 1.9rem;
  justify-content: center;
  margin: 1.1rem auto 0;
  text-align: center;
  width: 7.4rem;
}
.slider_cards .card .p3.color1 {
  background: #deb34f;
}
.slider_cards .card .p3.color2 {
  background: #c3dcbd;
}
.slider_cards .card .p3.color3 {
  background: #e9ecb2;
}
.slider_cards .slider-canvas {
  overflow: hidden;
  position: relative;
}
.slider_cards .slider-item {
  flex-shrink: 0;
}
.slider_cards .slide-prev, .slider_cards .slide-next {
  align-items: center;
  background: #004bb1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 0;
  height: 7.4rem;
  justify-content: center;
  line-height: 1;
  padding: 0 1rem .51rem;
  position: absolute;
  top: 20rem;
  width: 4.4rem;
  z-index: 10;
}
.slider_cards .slide-prev {
  background-image: url(../img/tour/prev.svg);
  left: -1rem;
}
.slider_cards .slide-next {
  background-image: url(../img/tour/next.svg);
  right: -1rem;
}
.page03 .sec_digitalMap .wrap01 {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 5.3rem;
  position: relative;
  position: relative;
}
.page03 .sec_digitalMap .wrap01 .h3 {
  font-size: 1.8rem;
}
.page03 .sec_digitalMap .wrap01 .btn {
  align-items: center;
  background: #fffb00;
  border: solid 3px #004bb1;
  border-radius: 100rem;
  color: #004bb1;
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  height: 5.8rem;
  justify-content: center;
  margin-top: .6rem;
  width: 43.2rem;
}
.page03 .sec_digitalMap .wrap01 .btn:hover {
  background: #004bb1;
  color: #fffb00;
}
.page03 .sec_digitalMap .wrap01 .decos .deco {
  position: absolute;
  top: 3.6rem;
  transition: .2s;
}
.page03 .sec_digitalMap .wrap01 .decos .deco01 {
  left: 2rem;
  width: 24.5rem;
}
.page03 .sec_digitalMap .wrap01 .decos .deco02 {
  right: 2rem;
  width: 25.95rem;
}
.page03 .sec_digitalMap .wrap01 .btn:hover + .decos .deco01 {
  left: 0;
}
.page03 .sec_digitalMap .wrap01 .btn:hover + .decos .deco02 {
  right: 0;
}
@media screen and (max-width:768px) {
  .page03 .container {
    padding: 8rem 0;
  }
  .page03 .head {
    background-position: bottom right -16rem;
  }
  .page03 .head .h2 {
    font-size: 2rem;
    justify-content: flex-start;
    padding-left: 1.5rem;
  }
  .page03 .head .h2::before {
    animation: spin1 5s linear infinite;
    background-image: url(../img/tour/icon_circle01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    height: 9rem;
    position: absolute;
    right: -1.8rem;
    top: 2rem;
    width: 9rem;
    z-index: 2;
  }
  .page03 .sec_others {
    border-bottom: solid 1px;
  }
  .page03 .sec_others .wrap01 {
    padding: 0 4rem;
    position: relative;
  }
  .page03 .sec_others .wrap01 {
    padding: 0;
    position: relative;
  }
  .slider_cards {
    padding: 5.3rem 3rem 4.4rem;
    touch-action: pan-y;
  }
  .slider_cards .slider-inner {
    gap: 3rem;
  }
  .slider_cards .card {
    width: calc(100vw - 6rem);
  }
  .slider_cards .slide-prev, .slider_cards .slide-next {
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
  }
  .slider_cards .slide-prev {
    left: 0;
  }
  .slider_cards .slide-next {
    right: 0;
  }
  .page03 .sec_digitalMap .wrap01 {
    padding: 14rem 1.5rem 0;
  }
  .page03 .sec_digitalMap .wrap01 .h3 {
    font-size: 1.4rem;
  }
  .page03 .sec_digitalMap .wrap01 .btn {
    border-radius: 100rem;
    height: 8rem;
    margin-top: 1rem;
    text-align: center;
    width: 32rem;
  }
  .page03 .sec_digitalMap .wrap01 .decos .deco {
    top: 2rem;
  }
  .page03 .sec_digitalMap .wrap01 .decos .deco01 {
    left: -7rem!important;
  }
  .page03 .sec_digitalMap .wrap01 .decos .deco02 {
    right: -7rem!important;
  }
}
