/*
Theme Name:このさきしまね(島根県定住財団)
Theme URI:
Author: takami
Author URI: https://yoshida-designbu.com
License: takami
*/


/*--------------
common
--------------*/
html {
  font-size: min(0.875rem, 3.64vw);
}

@media print,screen and (min-width:1024px) {
  html {
    font-size: 0.875rem;
  }
}
@media print,screen and (min-width:1200px) {
  html {
    font-size: 1rem;
  }
}

*,
*::before,
*::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root{
  --color-black:#333333;
  --color-white:#fefefe;
  --color-yellow:#c4ba00;
  --color-blue:#00a4ce;
  --color-red:#e95a65;
  --color-gray:#afafaf;
  --bg-gray:#f7f7f7;
  --bg-padding:min(2rem,4vw);
  --b-radius:min(1rem,2vw);
  --g-rainbow:linear-gradient(90deg,rgba(220, 88, 97, 1) 0%, rgba(0, 164, 207, 1) 50%, rgba(196,187, 0, 1) 100%);
  --b-shadow-black: 0 0 1rem var(--color-gray);
  --b-shadow-blue: 0 0 1rem rgba(0,175,199,.8);
  --b-dashed: dashed 1px currentColor;
  --hover-opacity:.6;
  --opacity-black:rgba(12, 10, 10, 0.5);
  --transition:all .5s cubic-bezier(.43,.05,.17,1);
  --contents-width:min(1140px, 86%);
  --section-margin:min(12rem,20vw);
  --line-height:2;
  --flex-gap:min(4rem, 4vw);
  --scale:scale(1.1);
}

body {
  font-family: "Poppins","Zen Kaku Gothic New",'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ','Meiryo','ＭＳ ゴシック',sans-serif;
  line-height: 1.75;
  letter-spacing: .05em;
  font-weight: 400;
  color: var(--color-black);
  position: relative;
}

a {
  text-decoration: none;
  color: var(--color-black);
  transition: var(--transition);
  font-weight: 500;
}

li{
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1,h2,h3,h4,h5,h6{
  font-weight: 500;
}

table {
  clear: both;
  border-collapse: collapse;
  width: 100%;
}

td,th{
  padding: min(1rem, 1.4vw);
}

.contents{
  width: var(--contents-width);
  margin: 0 auto;
}

.svg-circle{
  fill: var(--color-black);
}

.rainbow-line{
  overflow: hidden;
  position: absolute;
  opacity: .5;
  width: min(.6rem, 1vw);
}

.rainbow-line::before{
  content: "";
  display: block;
  position: absolute;
  width: min(.6rem, 1vw);
  height: min(22rem, 46vw);
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg,rgba(220, 88, 97, 1) 0%, rgba(0, 164, 207, 1) 50%, rgba(196,187, 0, 1) 100%);
  margin: auto;
  opacity: 0;
}

.rainbow-line.active::before{
animation: scrollbar 2.8s ease-in .5s;
-webkit-animation: scrollbar 2.8s ease-in .5s;
}

@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
  }
}

picture{
  overflow: hidden;
}

.googleMaps{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.googleMaps iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*---- fixed menu ----*/
.top-fixedMenu{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: min(37rem, 100%);
}

.top-fixedMenu>ul{
  display: flex;
  gap: min(1rem, 1vw);
}

.top-fixedMenu li{
  width: 50%;
}
.top-fixedMenu li>a{
  background: linear-gradient(90deg,rgba(220, 88, 97, .8) 0%, rgba(0, 164, 207, .8) 50%, rgba(196,187, 0, .8) 100%);
  color: var(--color-white);
  text-transform: uppercase;
  display: block;
  font-size: min(1.6rem,4.24vw);
  padding: min(.6rem) min(1rem);
  text-align: center;
}

/*---- animation ----*/
.a-circle{
  animation: 16s linear infinite rotation;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.a-pop{
  animation: scroll-blur 1.5s ease .5s normal forwards;
  opacity: 0;
}
@keyframes scroll-blur {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}


/*---- thumbnail ----*/
.thumbnail{
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}
.thumbnail img{
  transition: var(--transition);
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}


/*---- not found ----*/
.notFound{
  text-align: center;
  margin: min(17svh) 0;
}

.notFont-wrapper{
  width: 90%;
  margin: 0 auto;
}
.notFont-wrapper>h2{
  font-size: min(5rem,16vw);
  line-height: 1.2;
}
.notFont-wrapper>h2 span{
  display: block;
  font-size: 50%;
}

.notFont-wrapper p{
  padding: min(2rem, 5vw) 0;
}


/*---- title ----*/
.contents-title{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: min(2.83rem,6vw);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: min(4rem, 8vw);
  gap: min(1rem,2vw);
}

.contents-title>.contents-title_image{
  width: min(6rem, 12vw);
}
.contents-title>.contents-title_text span{
  display: block;
  text-transform: uppercase;
  font-size: min(55%);
}


/*---- link ----*/
.linkBtn span{
  padding-right: min(1.24rem, 4vw);
  position: relative;
}
.linkBtn span::before{
  position: absolute;
  content: "";
  background: url(img/swiper-arrow.svg) no-repeat center;
  background-size: 100%;
  width: min(.8rem, 2.4vw);
  height: min(1.2rem, 3vw);
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: var(--transition);
}

.breadcrumbs{
  text-align: center;
  padding: min(1rem) min(2rem, 4vw);
  font-size: min(.8rem);
}

.breadcrumbs a{
  text-decoration: underline;
}

/*--------------
  loading
--------------*/
.c-loader-bg{
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100svh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: scaleY(1);
  transform-origin: center top;
  width: 100vw;
  z-index: 200;
  background: var(--color-white);
    pointer-events: none;
}

.c-loader-text{
  writing-mode: tb;
  font-weight: 400;
  font-size: min(1.83rem, 6vw);
}


/*--------------
loading
--------------*/
.loadingBg{
  width: 100%;
  height: 100svh;
  display: block;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  background: url(img/bg.png) repeat center;
  background-size: 90%;
  opacity: 1;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  animation: loadingBg-fadeIn .75s ease-in-out 5s normal forwards;
  filter: 0;
}

@keyframes loadingBg-fadeIn {
  0%{
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
  }
  100%{
    opacity: 0;
    visibility: hidden;
    filter: var(--blur10px);
  }
}


/*--------------
  header
--------------*/
header{
  padding: min(2rem, 6vw) min(10rem, 17vw) min(2rem, 6vw) min(5vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.header-logo{
  width: min(17rem, 36vw);
  z-index: 10;
}

header h1 img{
  display: block;
}

.header-menuList{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: min(2rem);
}

.header-menuItem a.is-active{
  color: var(--color-blue);
}

.header-menuList li.header-sns{
  width: min(2rem);
}

.header-menuItem.current>a{
  color: var(--color-blue);
}

.header-menu{
  display: none;
}

@media screen and (min-width:1024px) {
  nav.headerNav{
    display: flex;
    gap: 20px;
  }

  .header-menu{
    display: block;
  }
}

@media screen and (min-width:768px) {
  header h1 a:hover,
  .header-menuList li.header-sns a:hover{
    opacity: var(--hover-opacity);
  }

  .scroll{
    top: 20vw;
  }

  .linkBtn:hover{
    opacity: .6;
  }
  .linkBtn:hover span::before{
    transform: translate(30%, -50%);
  }

  /*---- fixed menu ----*/
  .top-fixedMenu{
    top: 77svh;
    right: 0;
    width: auto;
  }

  .top-fixedMenu>ul{
    flex-direction: column;
  }

  .top-fixedMenu li{
    width: 100%;
  }

  .top-fixedMenu li>a:hover{
    opacity: .6;
  }
}

/*----- hamburger -----*/
.openBtn{
  cursor: pointer;
  text-align: center;
  position: fixed;
  height: min(2.4rem, 7vw);
  width: min(3.6rem, 11vw);
  top: min(1.8rem, 5vw);
  right: min(4rem, 3vw);
  z-index: 200;
  transition: var(--transition);
}

.openBtn span{
  width: 100%;
  height: min(3px, .6vw);
  display: block;
  z-index: 1;
  position: absolute;
  margin: 0 auto;
  background: var(--g-rainbow);
  border-radius: 9999px;
  transition: var(--transition);
  opacity: .6;
}

.openBtn span:nth-of-type(1){
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.openBtn span:nth-of-type(2){
  top: 43%;
}
.openBtn span:nth-of-type(3){
  top: 87%;
  left: 50%;
  transform: translate(-50%, 0);
}

.openBtn.active span:nth-of-type(1){
  width: 100%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0) rotate(25deg);
}
.openBtn.active span:nth-of-type(2){
  display: none;
}
.openBtn.active span:nth-of-type(3){
  width: 100%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0) rotate(-25deg);
}

.openBtn small{
  position: absolute;
  left: 50%;
  bottom: -54%;
  text-transform: uppercase;
  transform: translateX(-50%);
  line-height: 1.5;
  font-size: min(.8rem, 2.6vw);
  font-weight: 500;
}

.g-nav .pullDownMenu{
  width: min(120px, 25vw);
}

#js-g-nav{
  transition: var(--transition);
  -webkit-transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -2%);
}

#js-g-nav.panelactive{
  opacity: 1;
  visibility: inherit;
  transform: translate(0, 0);
}

.g-nav{
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(22rem, 70vw);
  height: calc(100% - 25%);
  color: var(--color-black);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 1rem rgb(12 10 10 / 20%);
  overflow: auto;
  visibility: hidden;
}

.g-nav>.openBtn{
  position: fixed;
  top: min(2rem, 4vw);
  right: min(2rem, 4vw);
  height: min(4rem, 12vw);
  width: min(9rem, 27vw);
}

.g-nav_container{
  display: flex;
  flex-wrap: wrap;
}

.g-nav_menu{
  padding: min(8rem,16vw) min(4rem,8vw);
  overflow-y: auto;
  width: 100%;
  position: relative;
}

.g-nav_menu__wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
    gap: min(1rem, 3vw);
}

.g-nav_logo{
  width: 100%;
  padding-bottom: min(3rem, 6vw);
}
.g-nav_logo img{
  width: min(18rem, 58vw);
}

.g-nav_mainMenuList{
  display: flex;
  flex-wrap: wrap;
  gap: min(2rem,6vw) min(2rem,4vw);
  margin-bottom: min(4rem,10vw);
  justify-content: center;
  transition: all 1.2s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transition: all 1.2s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition-delay: .6s;
  opacity: 0;
  filter: blur(10px);
}
#js-g-nav.panelactive .g-nav_mainMenuList{
  opacity: 1;
  filter: blur(0px);
}

.g-nav_mainMenuList li{
  width: calc((100% - calc(min(2rem, 4vw)* 2)) / 3);
}

.g-nav_menuList{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(1.4rem, 5vw);
  font-size: min(1.24rem,4.83vw);
  opacity: 0;
  transition: var(--transition);
  transition-delay: .5s;
  transform: translateY(-4%);
}

#js-g-nav.panelactive .g-nav_menuList{
  opacity: 1;
  transform: translateY(0%);
}

.g-nav_menu a{
  font-weight: 500;
}
.g-nav_menuList li.menuLinks a span{
  display: block;
  text-transform: uppercase;
  font-size: min(80%);
  background:var(--g-rainbow);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .6;
}

.g-nav_menuList li.tabLinks a span{
  position: relative;
  padding-right:min(6vw,1.4rem);
}
.g-nav_menuList li.tabLinks a span::before{
  position: absolute;
  content: "";
  background: url(img/icon-wndow.svg) no-repeat center;
  background-size: 100%;
  width: min(4vw, 1rem);
  height: min(6vw, 1.4rem);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (min-width:1024px) {
  .openBtn small{
    bottom: -60%;
  }
}

@media screen and (min-width:768px) {
  #js-g-nav{
    transform: translate(0, -4%);
  }

  .g-nav_menu{
    padding: min(4rem, 4vw);
  }

  .g-nav_menuList a:hover{
    opacity: .6;
  }

}


/*--------------
KV
--------------*/
.KV{
  position: relative;
  height: 100svh;
  background: url(img/KV-imageSP.webp) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.KV::before{
  position: absolute;
  content: "";
  background: var(--g-rainbow);
  opacity: .3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.KV-copy{
  position: absolute;
  bottom: 66svh;
  transform: translateX(-50%);
  left: 50%;
  width: min(85vw);
  z-index: 1;
}

.KV-copy img{
      width: 100%;
}

.swiper-wrapper{
  top: 0;
  left: 0;
  height: 100%;
}

.swiper-pagination-bullet-active{
  background: url(img/star-dia.svg) no-repeat center;
  background-size: 100%;
}

@media screen and (min-width:768px) {
  .KV{
    background: url(img/KV-image.webp) no-repeat center;
    background-size: cover;
  }
  .KV-copy{
    bottom: 21vh;
    left: 9%;
    width: min(40vw);
    transform: none;
  }
}




/*--------------
copy
--------------*/
/*--- common ---*/
.top-copyCircle{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  width: min(24rem, 60vw);
}
.copy-circle{
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.top-copyCircle p{
  font-size: min(1.24rem, 3.64vw);
  line-height: 2;
}


/*--------------
copy slider
--------------*/
.top-copySlide{
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}

.top-copySlide .svg-circle{
  fill: var(--color-white);
}

.top-copySlide_wrapper{
  position: relative;
  overflow: hidden;
  height: 100svh;
  padding: 7svh 14svh;
}
.top-copySlide_wrapper::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--g-rainbow);
  opacity: 0.5; /* 背景だけ透過 */
  z-index: -1;
}

.top-copySlide_container{
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100svh;
  will-change: transform;
}

.top-copySlide_contents{
  position: relative;
  height: 100%;
}

.top-copySlide_contents._contents__end {
  margin-right: 100svh;
}

.top-copySlide_image,.top-copyTop_textArea{
  position: absolute;
}

picture.top-copySlide_imageInner{
  display: block;
  position: relative;
}

.top-copySlide_line{
  position: absolute;
  width: 500svh;
  top: 10svh;
  left: -14svh;
}

.cls-1 {
  fill: none;
  opacity: 1;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}

/* top */
.top-copySlide_contents._contents__top{
  width: 98svh;
}

.top-copySlide_image._image__1{
  width: min(84svh);
  top: 0;
  left: 0;
  z-index: 2;
}
.top-copySlide_image._image__2{
  bottom: 20%;
  width: min(43svh);
  left: 8svh;
}

.top-copySlide_contents._contents__top>.top-copyTop_textArea{
  bottom: 14svh;
  right: 6svh;
}

/* center */
.top-copySlide_contents._contents__center{
  width: min(229svh);
  z-index: 10;
}

.top-copySlide_image._image__3{
  width: min(64svh);
  bottom: 10svh;
}
.top-copySlide_image._image__5{
  width: min(100svh);
  bottom: 13svh;
  left: 72svh;
}
.top-copySlide_image._image__4{
  width: min(47svh);
  z-index: -1;
  top: 0;
  left: 39svh;
}
.top-copySlide_image._image__6{
  right: min(14svh);
  width: min(38svh);
  top: min(0svh);
  z-index: 2;
}
.top-copySlide_image._image__7{
  right: 20svh;
  width: min(41svh);
  bottom: min(12svh);
  z-index: -2;
}

.top-copySlide_contents._contents__center>.top-copyTop_textArea{
  top: 15%;
  right: 0;
}

.top-copySlide_centerCopy{
  position: absolute;
  font-size: min(2.83rem);
  left: 102svh;
  top: 10%;
}

/* bottom */
.top-copySlide_contents._contents__end{
  width: min(158svh);
  z-index: -1;
}

.top-copySlide_image._image__8{
  left: 20svh;
  width: min(91svh);
  top: 0;
  z-index: 1;
}

.top-copySlide_image._image__9{
  right: 20svh;
  width: min(37svh);
  bottom: min(12svh);
}

@media screen and (max-width:768px) {
  .top-copySlide_wrapper{
    padding: 7svh;
  }

  .top-copySlide_line{
    width: 367svh;
    top: 21svh;
    left: -7svh;
  }

  .top-copySlide_contents._contents__top{
    width: 83svh;
  }

  .top-copySlide_image._image__1{
    width: min(65svh);
  }

  .top-copySlide_image._image__2{
    bottom: 31svh;
    width: min(37svh);
    left: 7svh;
  }

  .top-copySlide_contents._contents__center{
    width: min(174svh);
  }

  .top-copySlide_image._image__3{
    width: min(46svh);
    bottom: 21svh;
  }
  .top-copySlide_image._image__4{
    width: min(39svh);
    top: 7svh;
    left: 21svh;
  }
  .top-copySlide_image._image__5{
    width: min(77svh);
    bottom: 24svh;
    left: 53svh;
  }
  .top-copySlide_image._image__6{
    right: min(14svh);
    width: min(30svh);
    top: min(5svh);
  }

  .top-copySlide_image._image__7{
    right: 14svh;
    width: min(34svh);
    bottom: min(16svh);
  }

  .top-copySlide_centerCopy{
    font-size: min(2.83rem, 4svh);
    left: 66svh;
    top: 15svh;
  }

  .top-copySlide_contents._contents__center>.top-copyTop_textArea{
    top: 19svh;
    right: 7svh;
  }

  .top-copySlide_contents._contents__end{
    width: min(96svh);
  }
  .top-copySlide_image._image__8{
    left: 6svh;
    width: min(64svh);
    top: 7svh;
  }
  .top-copySlide_image._image__9{
    right: 2svh;
    width: min(30svh);
    bottom: min(22svh);
  }
}

/*--------------
copy top
--------------*/
.top-copyTop{
  position: relative;
  margin: 0 auto min(56vw,22rem);
  padding: var(--section-margin) 0 6vw;
}

.top-copyTop_image{
  width: 88%;
  margin: 0 0 0 auto;
}

.top-copyTop>.top-copyCircle{
  position: absolute;
  top: min(34rem, 70vw);
  left: 3%;
}

.top-copyTop>.rainbow-line.-line1{
  top: min(-4%);
  z-index: 1;
  left: min(8rem, 7vw);
  height: min(24rem, 39vw);
}
.top-copyTop>.rainbow-line.-line1::before{
  height: min(24rem, 40vw);
}

.top-copyTop>.rainbow-line.-line2{
  bottom: min(-23%);
  right: min(19rem, 15vw);
  height: min(15rem, 33vw);
  z-index: 1;
}

/*--------------
copy center
--------------*/
.top-copyCenter{
  position: relative;
  padding: var(--section-margin) 0;
}

.top-copyCenter_textArea{
  writing-mode: tb;
  margin: 0 auto;
  font-size: min(1.24rem, 3.83vw);
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: min(1rem);
}

.top-copyCenter>.rainbow-line.-line1{
  top: 0;
  left: min(8rem, 11vw);
  height: min(14rem, 30vw);
}

.top-copyCenter>.rainbow-line.-line2{
  top: 3rem;
  right: min(9rem, 9vw);
  height: min(19rem, 36vw);
}

.top-copyCenter>.rainbow-line.-line3{
  bottom: 2rem;
  right: min(12rem, 17vw);
}
.top-copyCenter>.rainbow-line.-line3::before{
  height: min(10rem, 22vw);
  width: min(.5rem, .8vw);
}


/*--------------
copy end
--------------*/
.top-copyEnd_main{
  width: min(64rem,90vw);
  margin: min(23rem,60vw) auto min(12rem,19vw);
  position: relative;
  z-index: 1;
}

.top-copyEnd_main::before,
.top-copyEnd_main::after{
  position: absolute;
  content: "";
}

.top-copyEnd_main::before{
  background: var(--g-rainbow);
  opacity: .6;
  width: 93%;
  height: 75%;
  bottom: -40%;
  right: 0;
  z-index: -2;
}
.top-copyEnd_main::after{
  background: url(img/top-copyEnd_mainLine.webp) no-repeat center;
  background-size: 100%;
  width: 205%;
  height: 90%;
  bottom: -37%;
  right: 0;
  z-index: -1;
}

.top-copyEnd_main>picture{
  width: 88%;
  display: block;
}

.top-copyEnd_main>.top-copyEnd_textArea{
  position: absolute;
  top: -50vw;
}

.top-copyEnd_main>.rainbow-line.-line1{
  top: min(-87%);
  right: min(7rem, 5vw);
}

.top-copyEnd_textArea2{
  position: absolute;
  color: var(--color-white);
  right: min(4rem, 3vw);
  bottom: -26%;
  font-size: min(3rem, 5vw);
}

.top-copyEnd_lastCopy{
  padding: var(--section-margin) 0;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.top-copyEnd_lastCopy p{
  writing-mode: tb;
  font-size: min(2rem, 4.83vw);
}

.top-copyEnd_lastCopy .rainbow-line.-line1{
  top: -6vw;
  left: min(12rem, 20vw);
}
.top-copyEnd_lastCopy .rainbow-line.-line2{
  top: min(11%);
  height: min(15rem, 32vw);
  right: min(12rem, 20vw);
}
.top-copyEnd_lastCopy .rainbow-line.-line3{
  bottom: -4%;
  left: min(11rem, 28vw);
  height: min(16rem, 30vw);
}

@media screen and (min-width:768px) {
  .top-copyCircle{
    width: min(24rem, 36vw);
  }
  /*--------------
  copy top
  --------------*/
  .top-copyTop{
    width: min(74rem,88vw);
    padding: var(--section-margin) 0;
    margin: 0 auto min(6rem)
  }

  .top-copyTop_image{
    width: min(70%);
  }

  .top-copyTop>.top-copyCircle{
    top: 43%;
    left: auto;
  }

  .top-copyTop>.rainbow-line.-line1{
    top: min(-4%);
    height: min(24rem);
    left: 0;
  }
  .top-copyTop>.rainbow-line.-line2{
    bottom: min(2%);
    height: min(15rem, 23vw);
    left: min(19rem, 31vw);
    right: auto;
  }

  /*--------------
  copy center
  --------------*/
  .top-copyCenter>.rainbow-line.-line1{
    top: 0;
    left: min(21rem,25vw);
    height: 14rem;
  }
  .top-copyCenter>.rainbow-line.-line2{
    top: 6rem;
    right: min(21rem, 26vw);
  }
  .top-copyCenter>.rainbow-line.-line3{
    bottom: 4rem;
    right: min(30rem, 34vw);
    height: 10rem;
    width: .5rem;
  }

  /*--------------
  copy end
  --------------*/
  .top-copyEnd_main{
    width: min(74rem, 88vw);
    margin: 23rem auto 12rem;
  }

  .top-copyEnd_main>.top-copyEnd_textArea{
    top: -70%;
  }

  .top-copyEnd_main>picture{
    width: 78%;
  }

  .top-copyEnd_main::before{
    width: 85%;
    height: 60%;
    bottom: -35%;
  }

  .top-copyEnd_main::after{
    height: 76%;
    bottom: -33%;
    width: 144%;
  }

  .top-copyEnd_main>.rainbow-line.-line1{
    top: min(-57%);
    right: min(7rem);
  }

  .top-copyEnd_lastCopy p{
    font-size: min(2.24rem, 3.83vw);
  }

  .top-copyEnd_textArea2{
    right: min(4rem, 3vw);
    bottom: -23%;
    font-size: min(3rem, 3.4vw);
  }

  .top-copyEnd_lastCopy .rainbow-line.-line1{
    top: -6rem;
    left: min(29rem, 32vw);
  }
  .top-copyEnd_lastCopy .rainbow-line.-line2{
    top: 8rem;
    right: min(29rem, 32vw);
  }
  .top-copyEnd_lastCopy .rainbow-line.-line3{
    bottom: -5%;
    left: min(29rem, 32vw);
    height: 16rem;
  }
}


@media screen and (min-width:1024px) {
  .top-copyCircle p{
    font-size: min(1.24rem,2vw);
  }

  /*--------------
  copy end
  --------------*/
  .top-copyEnd_main{
    margin: 23rem auto 12rem;
  }

  .top-copyEnd_main>.top-copyEnd_textArea{
    top: -53%;
    width: min(24rem,27vw);
  }

  .top-copyEnd_main::before{
    height: 60%;
    bottom: -32%;
  }
}


/*--------------
top-bg
--------------*/
.top-bg{
  overflow: hidden;
  height: 62vw;
}
.top-bg img{
  object-position: center;
  object-position: 89%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width:768px) {
  .top-bg{
    height: 36vw;
  }
  .top-bg img{
  object-position: center;
  }
}



/*--------------
cms
--------------*/
/*----- common -----*/
.new-text{
  text-transform: uppercase;
  color: var(--color-red);
}

.newsList-item a{
  display: flex;
  flex-wrap: wrap;
  padding: min(.6rem, 4vw) 0;
  gap: min(2rem, 1vw);
  transition: var(--transition);
  font-size: min(1.14rem,3.83vw);
}
.newsList-item a time.date{
  font-size: min(90%);
}

.news .link-contents{
  margin-top: min(2.4rem);
}

p.news-title{
  width: 100%;
}

/*--------------
NEWS
--------------*/
.top-news{
  background: var(--bg-gray);
  padding:var(--section-margin) 0;
}

.top-news .contents{
  border-top: var(--b-dashed);
  border-bottom: var(--b-dashed);
  padding:calc(var(--section-margin) / 2) 0;
}

.top-news .link-contents{
  margin-top: calc(var(--section-margin) / 5);
  text-align: center;
}


/*--------------
INFORMATION
--------------*/
.top-information{
  padding: var(--section-margin) 0;
}

.top-information_contents{
  padding-bottom: var(--section-margin);
}
.top-information .top-information_contents:last-of-type{
  padding-bottom: 0;
}

.top-information_contents>h3{
  position: relative;
  text-align: center;
  color: var(--color-white);
  z-index: 1;
  font-weight: 600;
  font-size: min(2rem, 5.4vw);
  padding: min(1.4rem, 2vw) 0;
  margin-bottom: min(2rem, 4vw);
  text-align: center;
}
.top-information_contents>h3::before{
  position: absolute;
  content: "";
  background: url(img/info-titleBg.svg) no-repeat center;
  background-size: 100%;
  width: min(17rem, 38vw);
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}


/*--------------
TOPICS
--------------*/
.top-topics{
  background: var(--bg-gray);
  padding: var(--section-margin) 0;
}

.topics-titleArea{
  margin-top: calc(var(--section-margin) / 5);
}

.topics-titleArea p{
  font-size: min(1.2rem,3.83vw);
  line-height: 1.5;
  letter-spacing: 0;
}

.topics-dateArea{
  font-size: min(.85rem);
}

.top-topics .topicsLinks{
  text-align: center;
  margin-top: min(5rem, 16vw);
}


@media screen and (min-width:768px) {
  /*--------------
  NEWS
  --------------*/
  .top-news .contents{
    padding: calc(var(--section-margin) / 3) 0;
  }

  .newsList-item a .date{
    width: min(6.4rem);
  }

  .newsList-item a:hover{
    transform: translateX(.4%);
    opacity: .6;
  }

  p.news-title{
    width: calc(calc(100% - min(2rem, 2vw)) - min(6.4rem));
  }

  .top-news .newsList{
    width: min(35rem, 100%);
    margin: 0 auto;
  }

  /*--------------
  INFORMATION
  --------------*/
  .top-information_contents a:hover .thumbnail img{
    transform: var(--scale);
  }

  /*--------------
  TOPICS
  --------------*/
  .topics-item a{
    position: relative;
    z-index: 1;
    color: var(--color-white);
  }
  .topics-item a::before{
    position: absolute;
    content: "";
    background: var(--opacity-black);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: var(--transition);
    opacity: 0;
    z-index: 1;
  }

  .topics-item .topics-titleArea{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86%;
    transition: var(--transition);
    opacity: 0;
    margin-top: 0;
    z-index: 2;
  }

  .topics-item a:hover::before,
  .topics-item a:hover .topics-titleArea{
    opacity: 1;
  }
}


/*----- pickUp slide -----*/
.swiper-controller{
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: min(29vw, 11rem);
  left: 50%;
  transform: translate(-50%, 0);
  width: 107%;
}

.top-slideContents .swiper-button-prev:after,
.top-slideContents .swiper-button-next:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background: url(img/swiper-arrow.svg) no-repeat center;
  background-size: 100%;
  width: min(2rem, 4vw);
  height: min(3rem, 6vw);
}

.swiper-button-prev::after {
  transform: scale(-1, 1);
}

body .swiper-button-next{
  right: -2%;
}
body .swiper-button-prev{
  left: -2%;
}

.top-slideContents.contents{
  position: relative;
  width: 100%;
}

body .top-slideContents .swiper-pagination{
  bottom: -2.6rem;
}

body .top-slideContents .swiper-pagination-bullet-active{
  background: var(--color-red);
}

.top-pickUp_list:has(.top-pickUp_noPost){
    justify-content: center;
}

/*--------------
responsive
--------------*/
nav.globalMenuSp {
  display: none;
}

/*--------------
JOB CAFE
--------------*/
.jobCafe-info{
  padding: calc(var(--section-margin) / 2) 0;
}

.jobCafe-info_inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--flex-gap) *2);
  flex-wrap: wrap;
}

.jobCafe-info_item{
  width: 100%;
}

.jobCafe-info_item>h3{
    font-size: min(1.6rem, 4.83vw);
    padding-bottom: min(.8rem, 2vw);
}

.jobCafe-info_address{
  display: flex;
  flex-direction: column;
  gap: min(.4rem);
  font-size: min(.9rem);
  margin-bottom: min(.8rem);
}

.jobCafe-info_address a{
  font-weight: 400;
}

.scrollPause{
  height: 100svh;
}

@media screen and (min-width:768px) {
  .jobCafe-info_item{
    width: calc((100% - var(--flex-gap)) / 2);
  }

  .jobCafe-info_inner{
    gap: var(--flex-gap);
  }
}


/*--------------
footer
--------------*/
footer {
  z-index: 2;
  position: relative;
  padding: min(6rem, 12vw) 0 0;
}

.footer-wrapper{
  width: 90%;
  margin: 0 auto;
}

ul.footer-linkList{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(var(--flex-gap) * 1.5);
  margin-bottom: var(--section-margin);
}
ul.footer-linkList li{
  font-size: min(1.6rem,4.24vw);
  width: 100%;
  text-align: center;
}

a.footer-linkList_link{
  position: relative;
  font-weight: 500;
}
a.footer-linkList_link>.footer-linkList_linkCircle{
  position: absolute;
  width: min(6rem, 16vw);
  top: 0;
  left: 0;
  transform: translate(-21%, -37%);
}
a.footer-linkList_link>.footer-linkList_linkArrow{
  width: min(15rem, 100%);
  display: block;
  opacity: .7;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(38%);
}

ul.footer-logoList{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--flex-gap) / 2);
  margin-bottom: calc(var(--section-margin) / 5);
  padding-bottom: calc(var(--section-margin) / 5);
  border-bottom: dashed 1px currentColor;
}

ul.footer-logoList li{
  width: 33%;
}

ul.footer-logoList li img{
  width: 90%;
  height: 100%;
  display: block;
  margin: 0 auto;
}


footer small{
  display: block;
  padding: min(2rem, 14vw) 4vw min(8rem, 18vw);
  font-size: min(.74rem, 2.4vw);
  text-align: right;
  letter-spacing: 0;
  text-align: center;
}

@media print,screen and (min-width:768px) {
  /*----- pickUp slide -----*/
  .top-slideContents.contents{
    width: var(--contents-width);
  }

  body .top-slideContents .swiper-pagination {
    bottom: -3rem;
  }

  .page-top a:hover{
    transform: scale(1.15);
  }


  footer small{
    padding: min(2rem, 14vw) 4vw;
  }

  footer a:hover{
    opacity: .6;
  }

  ul.footer-linkList{
    gap: var(--flex-gap);
    margin-bottom: calc(var(--section-margin) / 2);
  }

  ul.footer-linkList li{
    width: auto;
  }

  ul.footer-logoList li{
    width: 24%;
  }

  ul.footer-logoList li img{
  width: 67%;
  }
}

@media print,screen and (min-width:1024px) {
}


