@charset "utf-8";

/*
  File Name   : top.css
  Description : Write top content styles
*/

/* kv-wrap
============================================================ */
#home .kv-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}
#home .kv-wrap .kv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
#home .kv-wrap .kv-inner .kv-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
}
.kv-title {
  font-family: var(--font-shippori-mincho);
  color: white;
  writing-mode: vertical-rl;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 40px;
  text-shadow: 0 0 10px rgba(0, 0, 0, .5);
  letter-spacing: 0.05em;
  opacity: 0;
}
#home .kv-wrap .kv-inner .kv-item {
  vertical-align: top;
}
#home .kv-wrap .kv-inner .kv-item:nth-child(n+2) {
  display: none;
}
#home .kv-wrap .kv-inner .slick-initialized .kv-item {
  display: inline-block;
}
#home .kv-wrap .kv-inner .kv-item .kv-item-img {
  overflow: hidden;
  text-indent: -9999px;
  height: 920px;
  background: no-repeat center center;
  background-size: cover;
}
#home .kv-wrap .kv-inner .kv-item .sp-img {
  display: none;
}
#home .kv-wrap .kv-inner .slick-list {
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 0;
}
.kv-splide-wrapper {
  background-color: rgba(26, 112, 131, .8);
  padding: 25px 0 45px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  opacity: 0;
}
.kv-splide {
  max-width: 1380px;
  margin-inline: auto;
}
.kv-splide .splide__slide img {
  aspect-ratio: 700 / 328;
  object-fit: cover;
  width: 100%;
}
.kv-splide .splide__arrow {
  background: transparent;
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-radius: 0;
  height: 1.5em;
  width: 1.5em;
}
.kv-splide .splide__arrow svg {
  display: none;
}
.kv-splide .splide__arrow--next {
  right: 32.5%;
  transform: translateY(-50%) rotate(45deg);
}
.kv-splide .splide__arrow--prev {
  left: 32.5%;
  transform: translateY(-50%) rotate(-135deg);
}
.kv-splide .splide__pagination {
  bottom: -1.9em;
}
.kv-splide .splide__pagination__page {
  height: 10px;
  width: 10px;
  margin: 0 10px;
  background-color: white;
  opacity: 1;
}
.kv-splide .splide__pagination__page.is-active {
  transform: scale(1);
  background: #cec862;
}

@media (max-width: 1380px) {
  .kv-splide .splide__arrow--next {
    right: 30.5%;
    transform: translateY(-50%) rotate(45deg);
  }
  .kv-splide .splide__arrow--prev {
    left: 30.5%;
    transform: translateY(-50%) rotate(-135deg);
  }
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  #home .kv-wrap .kv-inner .kv-item .kv-item-img {
    min-height: 500px;
    height: calc(100vh - 60px);
    max-height: 790px;
  }
  #home .kv-wrap .kv-inner .kv-item .pc-img {
    display: none;
  }

  #home .kv-wrap .kv-inner .kv-item .sp-img {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  #home .kv-wrap .kv-inner .kv-item .kv-item-img {
    min-height: inherit;
    height: 630px;
    max-height: inherit;
  }
  .kv-title {
    font-size: max(30px, calc(38 / 599 * 100vw));
	top: 240px;
  }
  .kv-splide-wrapper {
    padding: 20px 0 30px;
  }
  .kv-splide .splide__arrow {
    width: 1em;
    height: 1em;
  }
  .kv-splide .splide__arrow--next {
    right: 16%;
  }
  .kv-splide .splide__arrow--prev {
    left: 16%;
  }
  .kv-splide .splide__pagination__page {
    width: 6px;
    height: 6px;
    margin: 0 6px;
  }
  .kv-splide .splide__pagination {
    bottom: -1.5em;
  }
}

/* kv loading
============================================================ */
#home .kv-loading {
  position: absolute;
  z-index: 0;
  top: calc(50% - 40px - 30px);
  left: calc(50% - 40px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#home .kv-loading::after {
  content: "";
  position: absolute;
  z-index: -1;
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-top: 4px solid rgba(0, 0, 0, .1);
  border-right: 4px solid rgba(0, 0, 0, .1);
  border-bottom: 4px solid rgba(0, 0, 0, .1);
  border-left: 4px solid #333;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: load-animation 1.1s infinite linear;
          animation: load-animation 1.1s infinite linear;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  #home .kv-loading {
    top: calc(50% - 35px);
    left: calc(50% - 35px);
  }
  #home .kv-loading::after {
    width: 70px;
    height: 70px;
  }
}
@-webkit-keyframes load-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.top-time {
  background-color: var(--color-light-green);
  padding-block: 55px 45px;
  display: grid;
  place-content: center;
  padding-inline: var(--padding-pc);
}
.top-time-list {
  display: grid;
  gap: 20px;
}
.top-time-item {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 100px auto;
  align-items: center;
  text-align: center;
  gap: 30px;
  width: fit-content;
}
.top-time-title {
  background-color: white;
  padding: 2px 10px;
  color: var(--color-green);
}
@media screen and (max-width: 1024px) {
.top-time-title {
    padding: 12px 10px;
}
}

.top-time-text {
  font-size: 18px;
  letter-spacing: 0.07em;
}
.top-time-warning {
  background-color: var(--color-red);
  color: white;
  padding: 5px 15px;
  margin-left: 20px;
  font-size: 15px;
}
.top-time-remark {
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin-top: 23px;
}


/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .top-time {
    padding-inline: var(--padding-sp);
  }
  .top-time-text {
    text-align: left;
  }
  .top-time-warning {
    display: block;
    color: var(--color-red);
    background-color: transparent;
    padding: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-time {
    padding: 0;
    position: relative;
  }
  .top-time::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: white;
  }
  .top-time-inner {
    padding: 0;
  }
  .top-time-list {
    gap: 0;
  }
  .top-time-item {
    grid-template-columns: 75px 1fr;
    gap: 0 10px;
    padding: 10px;
  }
  .top-time-item:first-child {
    padding: 20px 10px 10px;
  }
  .top-time-item:last-child {
    padding: 10px 10px 20px;
  }
  .top-time-title {
    padding: 2px 4px;
    font-size: 14px;
  }
  .top-time-text {
    font-size: 14px;
  }
  .top-time-warning {
    font-size: 12px;
  }
}

/* menu
============================================================ */
.top-menu {
  padding-block: 70px 60px;
}
.top-menu-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.top-menu-item:not(:first-child) {
  border-left: 1px solid var(--color-green);
}
.top-menu-item a {
  text-decoration: none;
  padding-block: 15px 30px;
  display: block;
  text-align: center;
  position: relative;
}
.top-menu-item a::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  background-color: var(--color-green);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.top-menu-item img {
  max-width: 110px;
}
.top-menu-title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}

/*sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .top-menu-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .top-menu-item:nth-child(4){
    border-left: none;
  }
	
	
.top-menu-item:nth-child(1),
.top-menu-item:nth-child(2),
.top-menu-item:nth-child(3){
	border-bottom: 1px solid var(--color-green);
	}
	
}
@media screen and (max-width: 599px) {
  .top-menu {
    padding-block: 0;
/*    border-top: 1px solid var(--color-green);*/
	border-top: 0;
  }
  .top-menu-inner {
    padding: 0;
  }
  .top-menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-menu-item,
  .top-menu-item:nth-child(4) {
    border-bottom: 1px solid var(--color-green);
    border-left: 1px solid var(--color-green);
  }
  .top-menu-item:nth-child(2n) {
/*    border-right: 1px solid var(--color-green);*/
	   border-right: 0;
  }
	
	
.top-menu-item:nth-child(1),
.top-menu-item:nth-child(2){
	border-top: 0;
	}
	
.top-menu-item:nth-child(1),
.top-menu-item:nth-child(3),
.top-menu-item:nth-child(5){
	border-left: 0;
	}
	
.top-menu-item:nth-child(5),
.top-menu-item:nth-child(6){
	border-bottom: 0;
	}
	
  .top-menu-item img {
    max-width: 40%;
  }
  .top-menu-title {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .top-menu-item img {
    max-width: 50%;
  }
}


/* news
============================================================ */
.news {
  padding-block: 70px 30px;
  background-color: #fcfcf0;
}

@media screen and (max-width: 599px) {
.news {
  padding-block: 40px 30px;
}
}

.news-inner {
  max-width: calc(1180px - var(--padding-pc) * 2);
}
.news-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 16px;
}
.news-title {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: baseline;
  margin-left: 20px;
  width: fit-content;
}
.news-title-ja {
  font-size: 33px;
  font-weight: bold;
}
.news-title-en {
  text-transform: uppercase;
  color: var(--color-green);
}
.news-tab-lists {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(4, 95px);
  grid-auto-flow: column;
  gap: 10px;
}
.news-tab-list,
a.news-tab-list {
  display: grid;
  place-content: center;
  color: var(--color-green);
  border: 1px solid var(--color-green);
  background-color: white;
  padding: 3px 15px;
  text-decoration: none;
  text-align: center;
  font-size: 14PX;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  cursor: pointer;
}
.news-tab-list:hover,
a.news-tab-list:hover {
  opacity: 1;

}
.news-tab-list[aria-selected="true"],
.news-tab-list.is-active {
  background-color: var(--color-green);
  color: white;
}
.news-tab-panels {
  display: grid;
}
.news-tab-panel {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}
.news-tab-panel[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .news-inner {
    padding-inline: var(--padding-sp);
  }
  .news-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news-title {
    margin-left: 0;
    margin-inline: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .news-tab-lists {
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .news-tab-lists {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
  .news-tab-list, a.news-tab-list {
    padding: 5px;
    font-size: 12px;
  }
}
/* about
===========================================================*/
.about {
  display: grid;
  grid-template-columns: calc(50vw - 270px) 1fr;
}
.about-bg {
  background-image: url(../images/home/about_bg_pc.jpg);
  background-size: cover;
  background-position: center;
}
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content {
  padding: 65px 45px 50px 60px;
  background-color: var(--color-light-green2);
}
.about-content-inner {
  max-width: 810px;
}
.about-title {
  font-size: 33px;
  font-weight: bold;
}
.about-text {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--color-green);
}
.about-subtitle {
  margin-top: 45px;
  font-size: 26px;
  font-weight: bold;
  color: var(--color-dark-green);
}
.about-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}
.about-item a {
  text-decoration: none;
}
.about-item-title {
  color: white;
  text-decoration: none;
  display: block;
  padding: 20px;
  background-color: var(--color-dark-green);
  position: relative;
  font-weight: bold;
}
.about-item-title::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
  background-color: var(--color-yellow);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media screen and (max-width: 1220px) {
  .about {
    grid-template-columns: 20% 1fr;
  }
  .about-item-title {
    font-size: 14px;
    padding-inline: 15px;
  }
  .about-item-title::after {
    right: 10px;
  }
}

/* sp
------------------------------------------------------------ */

@media screen and (max-width: 980px) {
	
.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
	
}

@media screen and (max-width: 390px) {
  .about-list {
    grid-template-columns: 1fr;
  }
  .about-item a {
    display: grid;
    grid-template-columns: 30% 1fr;
  }
  .about-item-title {
    display: grid;
    align-items: center;
	font-size: 16px;
    padding-inline: 25px;
  }
}
@media screen and (max-width: 599px) {
  .about {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .about-content {
    padding: 0 var(--padding-sp) 40px;
  }
  .about-title {
    background-image: url(../images/home/about_bg_sp.jpg);
    background-size: cover;
    background-position: center;
    margin-inline: calc(50% - 50vw);
    color: white;
    text-align: center;
    padding-block: 50px;
    font-size: 24px;
  }
  .about-text {
    font-size: 14px;
    padding-bottom: 30px;
    margin-top: 30px;
  }
  .about-subtitle {
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
  }
  .about-list {
    margin-top: 20px;
  }
}

/* links
============================================================ */
.links {
  background-color: #BEE2E7;
  padding-block: 85px;
}
.links-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: calc(1320px - var(--padding-pc) * 2);
}
.links-box {
  box-shadow: var(--base-shadow);
  background-color: white;
  padding: 20px 20px 30px;
}
.links-title {
  color: var(--color-dark-green);
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid var(--color-dark-green);
  text-align: center;
  padding-block: 10px 20px;
}
.links-box ul {
  margin: 20px 10px;
  display: grid;
  gap: 20px;
}
.links-box li {
  position: relative;
  padding-left: 24px;
  line-height: 150%;
}
.links-box li::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100vmax;
  background-color: var(--color-yellow);
}
.links-box a {
  font-size: 15px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .links {
    padding-block: 40px;
  }
  .links-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-inline: var(--padding-sp);
  }
  .links-box {
    padding: 15px;
  }
  .links-box:last-child {
    grid-column: 1 / -1;
    width: 50%;
    margin-inline: auto;
  }
  .links-title {
    font-size: 18px;
  }
  .links-box ul {
    margin: 10px;
    gap: 15px;
  }
  .links-box li {
    padding-left: 18px;
  }
  .links-box li::before {
    top: 9px;
    width: 8px;
    height: 8px;
  }
  .links-box a {
    font-size: 13px;
  }
}
@media screen and (max-width: 599px) {
  .links {
    padding-block: 40px;
  }
  .links-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .links-box:last-child {
    width: 100%;
  }
}

/* instagram
============================================================ */
.instagram {
  background-image: url(../images/home/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 75px 130px;
}
.instagram-inner {
  max-width: calc(1180px - var(--padding-pc) * 2);
}
.instagram-head {
  position: relative;
}
.instagram-title {
  display: grid;
  gap: 20px;
  justify-self: center;
  justify-items: center;
}
.instagram-title-image {
  width: 45px;
}
.instagram-title-text {
  font-size: 32px;
  font-weight: bold;
}
.instagram-follow {
  width: 190px;
  position: absolute;
  top: 5px;
  right: 0;
}
.instagram-content {
  margin-top: 40px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .instagram {
    padding-block: 40px 70px;
  }
  .instagram-inner {
    padding-inline: var(--padding-sp);
  }
  .instagram-title {
    grid-auto-flow: column;
    width: fit-content;
    align-items: center;
    gap: 10px;
  }
	
	
@media screen and (max-width: 599px) {
.instagram {
        padding-block: 40px 30px;
    }
	}
	

@media screen and (max-width: 480px) {
.instagram-title {
        grid-auto-flow: unset;
        width: 100%;
    }
	}
	
	
  .instagram-title-image {
    width: 30px;
  }
  .instagram-title-text {
    font-size: 24px;
  }
  .instagram-follow {
    width: 150px;
    top: -20px;
  }
}
@media screen and (max-width: 599px) {
  .instagram-title-text {
    font-size: 24px;
  }
  .instagram-follow {
    width: 150px;
  }
  .instagram-follow {
    width: 30%;
    top: -10px;
  }
}
/* banners
============================================================ */
.banners {
  position: relative;
  z-index: 0;
  padding-block: 75px 20px;
}

@media screen and (max-width: 599px) {
.banners {
    padding-block: 45px 20px;
}
}


.banners::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-light-green2);
  clip-path: polygon(50% 0%, 100% 0, 100% 27%, 0 66%, 0 0);
}
.banners-inner {
  max-width: calc(1170px - var(--padding-pc) * 2);
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .banners-inner {
    padding-inline: var(--padding-sp);
  }
}

/* recruit
============================================================ */
.recruit a {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 37%);
  text-decoration: none;
  box-shadow: var(--base-shadow);
  position: relative;
}
.recruit a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/link-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.recruit-image {
  width: 100%;
}

.recruit-image img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-content {
  background-color: var(--color-yellow);
  position: relative;
  padding: 45px;
  overflow: hidden;
}
.recruit-content::after {
  content: "Recruit";
  font-family: var(--font-azo-sans-black);
  font-size: 74px;
  color: rgba(255 255 255 / 0.5);
  position: absolute;
  bottom: -25px;
  right: -5px;
  line-height: 1;
}
.recruit-title {
  font-weight: bold;
  font-size: 42px;
}
.recruit-text {
  margin-top: 20px;
  font-size: 17px;
  font-weight: bold;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .recruit a {
    grid-template-columns: 1fr;
  }
  .recruit-image {
    height: 300px;
  }
  .recruit-image img {
    height: 100%;
    object-fit: cover;
  }
  .recruit-content {
    padding: 30px;
  }
  .recruit-title {
    font-size: 32px;
  }
  .recruit-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .recruit a::before {
    width: 10px;
    height: 10px;
  }
  .recruit-image {
    height: 100%;
  }
  .recruit-content {
    padding: 20px 20px 40px;
  }
  .recruit-content::after {
    font-size: 44px;
    bottom: -12px;
  }
  .recruit-title {
    font-size: 24px;
  }
}

/* facility
============================================================ */
.facility {
    margin: 0 auto;
    margin-top: 60px;
    width: 100%;
    max-width: 750px;
}
.facility-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.facility-list li {
  box-shadow: var(--base-shadow);
  position: relative;
}
.facility-list li::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/link-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .facility {
    margin-top: 40px;
  }
  .facility-list {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .facility {
    margin-top: 30px;
  }
  .facility-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .facility-list li::before {
    width: 10px;
    height: 10px;
  }
}

/* banner
============================================================ */
.banner {
  margin-top: 70px;
  padding-block: 60px;
  border-top: 1px solid var(--color-gray);
}
.banner-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.banner-list li {
  box-shadow: var(--base-shadow);
}
.banner-list li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .banner {
    margin-top: 40px;
    padding-block: 40px;
  }
  .banner-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .banner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}