/*--------------
common
--------------*/
html {
  font-size: 0.875rem;
}

@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{
  --c-black:#000000;
  --c-white:#fefefe;
  --c-blue:#2e3192;
  --c-orange:#ffa324;
  --c-green:#4d9c44;
  --c-gray:#dddddd;
  --gradation:linear-gradient(0deg,rgba(255, 148, 70, 1) 0%, rgba(255, 211, 156, 1) 36%, rgba(255, 255, 255, 1) 83%);
  --gradation-rgb:rgb(255,251,224);
  --bg:#f0f9f6;
  --font-20:2rem;
  --font-exTxt:min(1.83rem,4vw);
  --title214:min(2rem,4.6vw);
  --translate:translate(0, -6px);
  --transition:all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
  --opacity:.6;
  --section-margin:8rem;
  --border-radius:min(2rem,4vw);
  --bg-padding:min(6rem,5vw);
  --font-jp:"Libertinus Serif","Noto Serif JP","YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

body {
  font-family: "Montserrat","Noto Sans JP",'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','ＭＳ ゴシック',sans-serif;
  line-height: 1.75;
  letter-spacing: .1em;
  font-feature-settings:"palt";
  font-weight: 400;
  color: var(--color-black);
  position: relative;
  animation: opacityAnimation .5s cubic-bezier(.55,.05,.22,.99) normal forwards;
  opacity: 0;
}

@keyframes opacityAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

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

td,th{
  padding: min(1rem, 1.6vw);
  border: solid 1px var(--color-gray);
  line-height: 1.75;
}

.contents{
  margin: auto;
  width: 86%;
}

.contents-title{
  position: relative;
  color: var(--kaisei-green);
  font-size: min(4.83rem, 7.4vw);
  font-weight: 500;
  position: relative;
  margin-bottom: min(3rem, 6vw);
  line-height: 1.5;
  letter-spacing: .08em;
}

/*---link---*/
.linkBox {
  text-align: center;
  font-weight: 500;
  border-radius: 9999px;
  padding: min(1.24rem, 2.4vw) min(2rem, 4vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: min(2rem, 2vw);
  line-height: 1.5;
}

/*---arrow---*/
.arrow{
  vertical-align: middle;
  color: var(--color-white);
  line-height: 1;
  width: .6rem;
  height: .6rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
}

.arrow-icon{
  background: var(--kaisei-green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(3rem, 6vw);
  height: min(3rem, 6vw);
  transition: var(--transition);
}

.important-text{
  color: #ea0000;
  font-weight: 500;
}

@media print, screen and (min-width: 768px) {
  .contents{
      width: min(53rem);
  }

  .contents-title{
    font-size: 4.83rem;
  }

  /*---link---*/
}

@media print, screen and (min-width: 1024px) {
  .contents{
      width: min(64rem);
  }
}

/*-- scroll animation --*/
.scroll-fadeIn {
  opacity: 0;
}
.scroll-fadeIn.is-active{
  animation: scroll-fadeIn .75s ease .6s normal forwards;
}
@keyframes scroll-fadeIn {
  0%{
    opacity: 0;
    transform: translateY(6%);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-title{
  translate: 0% 0%;
  opacity: 0;
}

.scroll-title.is-active{
  display: block;
  animation: titleEffectAnimation .75s cubic-bezier(.55,.05,.22,.99) .2s normal forwards;
  opacity: 0;
  translate: 0% 140%;
}

/*----- breadcrumbs/pageTop -----*/
.breadcrumbs {
  text-align: left;
  font-size: min(1rem, 2.4vw);
  margin: auto;
  padding: min(1.4rem) min(10rem, 5vw);
  color: var(--kaisei-green);
  letter-spacing: .08em;
}

.breadcrumbs span {
  padding: 0;
  letter-spacing: .04em;
}

.breadcrumbs a {
  color: var(--kaisei-green);
  text-decoration: underline;
}

#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	width: 50px;
	height: 50px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size:0.6rem;
}

/*---- page top -----*/
.page-top{
  right: min(12px, 2vw);
  bottom: min(12px, 1vw);
  position: fixed;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.page-top.is-show {
  visibility: inherit;
  opacity: 1;
}

.page-top a{
  background: var(--kaisei-green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: min(7rem, 16vw);
  width: min(7rem, 16vw);
  text-align: center;
  color: var(--color-white);
  line-height: 1.4;
  box-shadow: var(--bs-black);
  letter-spacing: .08em;
  font-size: min(1.2rem, 3vw);
  text-transform: uppercase;
}


/*----- googleMap/youtube -----*/
.googleMap{
  position: relative;
  padding-bottom: 50.25%;
  overflow: hidden;
}

.googleMap iframe, .googleMap object, .googleMap embed{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube{
  position:relative;
  width:100%;
  padding-top:62.25%;
}

.youtube iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}

/*----- not found -----*/
.notFound{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: min(20vh, 38vw) 0;
}

.notFont-wrapper{
  padding: 0 10vw 0;
}

.notFont-wrapper h2{
  font-size: min(5rem, 17vw);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .02em;
  padding-bottom: 16px;
}
.notFont-wrapper h2 span{
    font-size: 37%;
    display: block;
}

.notFont-wrapper p{
  font-size: 1.2rem;
  padding-bottom: 2rem;
}

.notFont-wrapper .linkBox{
  width: min(23rem, 54vw);
  margin: 0 auto;
}

/*----- thumbnail -----*/
.thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 72.25%;
  background: var(--color-white);
  border-radius: min(1.4rem, 3vw);
}

.thumbnail img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width:100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease;
}

/*----- swiper -----*/
.swiper-wrapper{
  transition-timing-function: linear!important;
}

.swiper-slide{
  padding: 0 2px;
}

.swiper-slide img {
  width: 100%;
  width: 100%;
}

.swiper-slide > div {
  height: 100%;
  width: 100%;
}

.swiper-controller .swiper-pagination-fraction{
  color: var(--kaisei-green);
  position: static;
  width: auto;
  margin: 0px min(16px, 3vw) 0 0;
}

/*--------------
  loading
--------------*/

/*--------------
  header
--------------*/
header h1{
  width: min(37rem, 65vw);
  z-index: 1;
}

header h1 img{
  display: block;
}

@media screen and (min-width:1024px) {
  /*----- header nav -----*/
  .headerNav-menu>a.headerNav-menu_link{
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.24rem;
  }

  .headerNav-menu>a.headerNav-menu_link span.click-icon{
    width: 1rem;
    height: .6rem;
    margin-left: 0.5rem;
    display: block;
    background: url(img/hn-arrow.svg) no-repeat center;
    background-size: contain;
  }
}

@media screen and (min-width:768px) {
  header h1 a:hover{
    opacity: 0.6;
  }

  a:hover .thumbnail img{
    transform: translate(-50%,-50%) scale(1.05);
  }
}

/*----- hamburger -----*/
.fixedBtn{
  cursor: pointer;
  position: fixed;
  top: min(3rem, 3vw);
  right: min(4rem, 3vw);
  z-index: 200;
  transition: ease .5s;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1rem;
  opacity: 0;
  animation: fallInAnimation2 .85s cubic-bezier(.04,.435,.315,.9) .6s normal forwards;
}

.openBtn{
  width: min(72px, 15vw);
  height: min(72px, 15vw);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s cubic-bezier(.215,.61,.355,1);
  gap: min(5.4px, 1.4vw);
  background: var(--opacity-white);
  border-radius: 50%;
  box-shadow: var(--bs-black);
}

.openBtn span{
  background-color: var(--kaisei-green);
  border-radius: 50%;
  height: min(6px, 1.4vw);
  width: min(6px, 1.4vw);
  transition: transform .3s cubic-bezier(.215,.61,.355,1);
  position: relative;
}

.openBtn.active span:nth-of-type(1){
  transform: translateX(200%);
}
.openBtn.active span:nth-of-type(3){
  transform: translateX(-200%);
}

.openBtn::before{
  position: absolute;
  content: "menu";
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-size: min(12px, 2.6vw);
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform .5s cubic-bezier(.215,.61,.355,1);
}
.openBtn.active::before{
  content: "close";
}

#js-g-nav{
  transition: all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-transition: all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
  opacity: 0;
  visibility: hidden;
}

#js-g-nav.panelactive{
  opacity: 1;
  visibility: inherit;
}

.g-nav{
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  background-size: cover;
  backdrop-filter: blur(3px);
  visibility: hidden;
}

.g-nav a{
  color: var(--color-white);
}

.g-nav_container{
  display: flex;
  flex-direction: row-reverse;
  height: 100svh;
}

a.g-nav_logo{
  display: block;
  width: min(36rem, 62vw);
  margin: min(3rem, 5vw);
}

.g-nav_mainMenu_acc,.g-nav_mainMenu_list{
  width: calc(100% / 2);
}

.g-nav_menu{
  padding: 10rem;
  overflow-y: auto;
}

.g-nav_mainMenu{
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}

.g-nav_mainMenu li._mainMenu-item{
  border-bottom: solid 1px var(--color-white);
  padding: min(2rem,4vw) 0;
  cursor: pointer;
}

@media screen and (min-width:768px) {

  a.g-nav_logo:hover,
  ._mainMenu_menuList li a:hover,
  .g-nav_subMenu>.-nav_sns li a:hover{
    opacity: var(--opacity);
  }
}


/*--------------
  footer
--------------*/
footer .copyRight{
  font-size: .7rem;
}
