@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Noto+Sans+JP&family=Sawarabi+Mincho&display=swap');

/* =========================================================
  page taiken
========================================================= */
#main {
  position: relative;
  padding-top: 100px;
}

#main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(/_themes/taiken/site/images/title-bg.webp) left center repeat-x;
}

/* elm
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken {
  max-width: 1170px;
  font-size: 0.9375rem;
  font-family: "Noto Sans", "Noto Sans JP", arial, sans-serif;
}

:is(.contentPage .body, .cke_editable) .page-taiken p {
  margin: 1em;
  line-height: 1.8;
  text-align: justify;
}

:is(.contentPage .body, .cke_editable) .page-taiken h2 {
  margin-bottom: 0.5rem;
  padding: 0;
  border: none;
  background: none;
  /* color: var(--ac-color-green-1); */
  color: #37a870;
  font-size: 2rem;
  line-height: 1.5;
}

:is(.contentPage .body, .cke_editable) .page-taiken h3 {
  margin-bottom: 1em;
  padding: 0;
  border: none;
  text-align: center;
}

:is(.contentPage .body, .cke_editable) .page-taiken h3::before {
  display: none;
}

:is(.contentPage .body, .cke_editable) .page-taiken img {
  max-width: 100%;
  height: auto !important;
}

:is(.contentPage .body, .cke_editable) .page-taiken hr {
  margin: 2em 0;
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken p {
    margin-right: 0;
    margin-left: 0;
    font-size: 1rem;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken h2 {
    font-size: 1.5rem;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken h3 {
    font-size: 1.125rem;
  }
}

/* page-title
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken h1.page-title {
  margin-bottom: 50px;
  /* color: var(--ac-color-blue-1); */
  color: #0c738c;
  font-weight: 500;
  font-size: 3.0625rem;
  font-family: Stick;
  text-align: center;
}

:is(.contentPage .body, .cke_editable) .page-taiken h1.page-title:has(span)::first-letter {
  font-size: 5rem;
}

:is(.contentPage .body, .cke_editable) .page-taiken h1.page-title span {
  display: block;
  color: var(--mono-color-0);
  font-size: 1.125rem;
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken h1.page-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken h1.page-title:has(span)::first-letter {
    font-size: 3rem;
  }
}

/* inset
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .inset {
  max-width: 640px;
  margin: 0 auto;
}

/* middle-text, large-text
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .middle-text {
  font-size: 1.25rem;
}

:is(.contentPage .body, .cke_editable) .page-taiken .large-text {
  font-size: 2rem;
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .middle-text {
    font-size: 1.0625rem;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken .large-text {
    font-size: 1.25rem;
  }
}

/* swipebox-video
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .swipebox-video {
  display: inline-block;
  position: relative;
}

:is(.contentPage .body, .cke_editable) .page-taiken .swipebox-video::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%,-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.15);
  transition: .4s ease-in;
}

:is(.contentPage .body, .cke_editable) .page-taiken .swipebox-video::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-39%,-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 27px solid rgba(255,255,255,.9);
  transition: .4s ease-in;
}

:is(.contentPage .body, .cke_editable) .page-taiken .swipebox-video:hover {
  opacity: .85;
}

:is(.contentPage .body, .cke_editable) .page-taiken .swipebox-video .external {
  display: none;
}

/* page-yokubariTaiken-about / about-slider
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .about-slider {
  position: relative;
  aspect-ratio: 2/1;
  margin: 0 -15px 80px;
  overflow: hidden;
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: clip-path 0.25s ease-in-out;
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div.current {
  z-index: 0;
  pointer-events: none;
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div.new-current {
  z-index: 1;
  clip-path: none !important;
  transition: none !important;
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div:last-child {
  clip-path: circle(8% at 4% 50%);
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div:last-child:hover {
  clip-path: circle(15.5% at 4% 50%);
  cursor: pointer;
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div:last-child.change {
  z-index: 2;
  clip-path: circle(150% at 4% 50%);
  transition: clip-path 0.5s ease-in-out;
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div:nth-child(2) {
  clip-path: circle(8% at 96% 50%);
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div:nth-child(2):hover {
  clip-path: circle(15.5% at 96% 50%);
  cursor: pointer;
}

:is(.contentPage .body, .cke_editable) .page-taiken .about-slider div:nth-child(2).change {
  z-index: 2;
  clip-path: circle(150% at 96% 50%);
  transition: clip-path 0.5s ease-in-out;
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .about-slider {
    margin-bottom: 30px;
  }
}

/* page-yokubariTaiken-about / taiken-contact
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .taiken-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 5%;
  margin: 1em;
}

:is(.contentPage .body, .cke_editable) .page-taiken .taiken-contact .img {
  flex-basis: 30%;
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .taiken-contact {
    flex-direction: column;
    margin-right: 0;
    margin-left: 0;
  }
}

/* page-yokubariTaiken-message / taiken-list
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .taiken-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4%;
  list-style: none;
  margin: 0;
  padding: 30px;
}

:is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

:is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li .middle-text {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 1.375rem;
}

:is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li .more {
  margin-top: auto;
  padding-top: 10px;
}

:is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li .more a {
  display: block;
  position: relative;
  padding: 1em;
  background: #df2e04;
  color: var(--mono-color-9);
  font-size: 1.0625rem;
  text-align: center;
  transition: all 0.25s ease-in-out;
}

:is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li .more a:hover {
  background: var(--mono-color-9);
  color: #df2e04;
}

:is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li .more a::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  background: #df2e04;
  transition: all 0.5s ease-in-out;
}

:is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li .more a:hover::before {
  right: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .taiken-list {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .taiken-list {
    flex-direction: column;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li .middle-text {
    font-size: 1.125rem;
  }
}

/* page-yokubariTaiken-service
----------------------------------------------- */
#page-yokubariTaiken-service #content {
  padding-top: 0;
  padding-bottom: 0;
}

/* page-yokubariTaiken-service / bg-area
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .bg-area {
  position: relative;
  margin-bottom: 40px;
  padding: 50px 0;
}

:is(.contentPage .body, .cke_editable) .page-taiken .bg-area > *:last-child {
  margin-bottom: 0;
}

:is(.contentPage .body, .cke_editable) .page-taiken .bg-area::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(12,115,140,0.1);
}

/* page-yokubariTaiken-service / hotel-list
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .hotel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4%;
  list-style: none;
  position: relative;
  margin: 40px 0 0;
  padding: 30px;
}

:is(.contentPage .body, .cke_editable) .page-taiken .hotel-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(12,115,140,0.1);
}

:is(.contentPage .body, .cke_editable) .page-taiken .hotel-list li {
  flex-basis: 30.666%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

:is(.contentPage .body, .cke_editable) .page-taiken .hotel-list li .img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

:is(.contentPage .body, .cke_editable) .page-taiken .hotel-list li .img img {
  transform: scale(1.1);
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

:is(.contentPage .body, .cke_editable) .page-taiken .hotel-list li .area {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 17px;
  /* background: var(--ac-color-blue-1); */
  background: #0c738c;
  color: var(--mono-color-9);
  font-weight: 700;
  font-size: 2rem;
}

:is(.contentPage .body, .cke_editable) .page-taiken .hotel-list li .name {
  /* color: var(--ac-color-green-1); */
  color: #37a870;
  font-weight: 700;
  font-size: 1.3125rem;
}

:is(.contentPage .body, .cke_editable) .page-taiken .hotel-list li .capacity {
  font-weight: 500;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .hotel-list {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .hotel-list {
    flex-direction: column;
    padding: 30px 15px;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken .taiken-list li .middle-text {
    font-size: 1.125rem;
  }
}

/* page-yokubariTaiken-recruit / interview
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .interview {
  margin-bottom: 60px;
}

:is(.contentPage .body, .cke_editable) .page-taiken .interview .header {
  display: flex;
  gap: 1em;
  margin: 30px;
  padding: 1em 0;
  border-top: 2px solid rgba(12,115,140, 0.5);
  border-bottom: 2px solid rgba(12,115,140, 0.5);
}

:is(.contentPage .body, .cke_editable) .page-taiken .interview .header .img {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 256px;
  padding: 0 0.5em;
}

:is(.contentPage .body, .cke_editable) .page-taiken .interview .header .txt .name {
  margin: 0 0 5px;
  padding: 0;
  /* color: var(--ac-color-blue-1); */
  border: none;
  background: none;
  color: #0c738c;
  font-weight: 700;
  font-size: 2rem;
  text-align: left;
}

:is(.contentPage .body, .cke_editable) .page-taiken .interview .body {
  margin: 0 30px;
}

:is(.contentPage .body, .cke_editable) .page-taiken .interview .body h4 {
  margin: 2em 0 0;
  padding: 0;
  border: none;
  background: none;
  /* color: var(--ac-color-blue-1); */
  color: #0c738c;
  font-weight: 700;
  font-size: 1.25rem;
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .interview .header {
    margin-right: 0;
    margin-left: 0;
    padding-top: 0;
    flex-direction: column;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken .interview .header .img {
    flex-basis: 0;
    padding: 10px 0;
    background: rgba(12,115,140, 0.5);
  }

  :is(.contentPage .body, .cke_editable) .page-taiken .interview .header .txt .name {
    font-size: 1.5rem;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken .interview .body {
    margin: 0;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken .interview .body h4 {
    font-size: 1.125rem;
  }
}

/* page-yokubariTaiken-recruit / slide
----------------------------------------------- */
:is(.contentPage .body, .cke_editable) .page-taiken .slide {
  margin: 20px 0 30px;
}

:is(.contentPage .body, .cke_editable) .page-taiken .slick-arrow {
  display: block !important;
  opacity: 0.6;
  position: absolute;
  top: calc(50% - 20px);
  z-index: 1;
  width: 40px;
  height: 40px;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  text-indent: -9999px;
  transition: opacity 0.25s ease-in-out;
}

:is(.contentPage .body, .cke_editable) .page-taiken .slick-arrow:hover {
  opacity: 1;
}

:is(.contentPage .body, .cke_editable) .page-taiken .slick-prev {
  left: 0;
  background-image: url(/_themes/taiken/site/images/slide-prev.svg);
}

:is(.contentPage .body, .cke_editable) .page-taiken .slick-next {
  right: 0;
  background-image: url(/_themes/taiken/site/images/slide-next.svg);
}

:is(.contentPage .body, .cke_editable) .page-taiken .slide .slick-dots {
  display: flex !important;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}

:is(.contentPage .body, .cke_editable) .page-taiken .slide .slick-dots,
:is(.contentPage .body, .cke_editable) .page-taiken .slide .slick-dots li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

:is(.contentPage .body, .cke_editable) .page-taiken .slide .slick-dots {
  display: flex;
  justify-content: center;
  gap: 1px;
}

:is(.contentPage .body, .cke_editable) .page-taiken .slick-dots li button {
  display: block;
  opacity: 0.6;
  width: 60px;
  height: 6px;
  padding: 0;
  border: none;
  text-indent: -9999px;
}

:is(.contentPage .body, .cke_editable) .page-taiken .slick-dots li button:hover,
:is(.contentPage .body, .cke_editable) .page-taiken .slick-dots li.slick-active button {
  opacity: 0.8;
}

:is(.contentPage .body, .cke_editable) .page-taiken .slick-slide .slide-item {
  aspect-ratio: 2/1;
}

:is(.contentPage .body, .cke_editable) .page-taiken .slick-slide .slide-item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

@media screen and (max-width: 640px) {
  :is(.contentPage .body, .cke_editable) .page-taiken .slick-arrow {
    width: 20px;
    background-size: 20px auto;
  }

  :is(.contentPage .body, .cke_editable) .page-taiken .slick-dots li button {
    width: 30px;
  }
}