@charset 'utf-8';
/* ======================================================
CSS information

 File Name  : pages.css
 Style Info : コンテンツの共通スタイル
====================================================== */

.preparation-block {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: #555;
  border: 1px solid #ddd;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .preparation-block {
    height: 300px;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  .preparation-block {
    height: 400px;
  }

}

/*****************************************
 * コンテンツ周り
 ****************************************/

#contents .contents-block + .contents-block {
  margin-top: 6rem;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  #contents .contents-block + .contents-block {
    margin-top: 8rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  #contents .contents-block + .contents-block {
    margin-top: 10rem;
  }

}

/*****************************************
 * フォーム周り
 ****************************************/

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  padding: 1.4rem;
  width: 100%;
  color: var(--basecolor1);
  font-size: 1.6rem;
  border: 1px solid var(--input-border-color);
  outline: none;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    padding: 1.5rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    padding: 1.6rem;
  }

}

textarea {
  resize: vertical;
  height: 150px;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  textarea {
    height: 175px;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  textarea {
    height: 200px;
  }

}

textarea:focus {
  outline: none;
}

input[type="checkbox"] {
  display: none;
  appearance: none;
}

input[type="checkbox"] + span {
  position: relative;
  cursor: pointer;
}

input[type="checkbox"] + span::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin: -2px .5rem 0 0;
  background: #fff;
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid var(--input-border-color);
}

input[type="checkbox"]:checked + span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 8px;
  display: block;
  margin-top: -7px;
  width: 13px;
  height: 23px;
  border-right: 3px solid var(--basecolor3);
  border-bottom: 3px solid var(--basecolor3);
  transform: rotate(45deg);
}

input[type="submit"] {
  letter-spacing: .1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  color: var(--basecolor2);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  background: var(--basecolor3);
  border: solid 1px var(--basecolor3);
  border-radius: 100px;
}

input[type="submit"]:disabled {
  opacity: .1;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  input[type="submit"] {
    width: 200px;
    height: 60px;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  input[type="submit"] {
    width: 250px;
    height: 70px;
  }

}

/*****************************************
 * ページタイトル
 ****************************************/

#page-title-block {
  display: flex;
  margin-block: 4rem;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  #page-title-block {
    margin-block: 6rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  #page-title-block {
    margin-block: 8rem;
  }

}

#page-title-block > h1 {
  position: relative;
  line-height: 1;
  padding-top: 55px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  #page-title-block > h1 {
    padding-top: 75px;
    font-size: 1.8rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  #page-title-block > h1 {
    padding-top: 95px;
    font-size: 2rem;
  }

}

#page-title-block > h1::before {
  content: attr(data-en-title);
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: -.1rem;
  width: 100%;
  font-size: 4.4rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 1px 1px 5px rgb(51 51 51 / .1);
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  #page-title-block > h1::before {
    letter-spacing: 0;
    font-size: 6.4rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  #page-title-block > h1::before {
    font-size: 8.4rem;
  }

}

/*****************************************
 * パンくず
 ****************************************/

#my-breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

/* ～767px（例外）
------------------------------------*/
@media (max-width:767px) {

  #my-breadcrumbs {
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }

}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  #my-breadcrumbs {
    margin-bottom: 5rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  #my-breadcrumbs {
    margin-bottom: 6rem;
  }

}

#my-breadcrumbs > li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 300;
}

#my-breadcrumbs > li:not(:last-of-type):after {
  content: '';
  margin-top: 1px;
  width: 18px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ccc' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m10 17l5-5l-5-5'/%3E%3C/svg%3E");
}

#my-breadcrumbs > li > a {
  font-weight: 400;
}

/*****************************************
 * セクションタイトル
 ****************************************/

.sec-title-01 {
  letter-spacing: .1rem;
  position: relative;
  padding-top: 55px;
  margin-bottom: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .sec-title-01 {
    margin-bottom: 5rem;
    padding-top: 75px;
    font-size: 1.7rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  .sec-title-01 {
    margin-bottom: 6rem;
    padding-top: 95px;
    font-size: 1.8rem;
  }

}

.sec-title-01::before {
  content: attr(data-en-title);
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: .1rem;
  color: var(--basecolor1);
  font-weight: 900;
  font-size: 3.6rem;
  text-transform: uppercase;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .sec-title-01::before {
    font-size: 5rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  .sec-title-01::before {
    font-size: 6.4rem;
  }

}

.sec-title-01.center {
  text-align: center;
}

.sec-title-01.center::before {
  left: 50%;
  transform: translateX(-50%);
}

.sec-title-02 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  letter-spacing: .2rem;
  margin-bottom: 4rem;
  color: var(--basecolor3);
  font-size: 2rem;
  font-weight: 700;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .sec-title-02 {
    margin-bottom: 5rem;
    font-size: 2.4rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  .sec-title-02 {
    margin-bottom: 6rem;
    font-size: 2.8rem;
  }

}

.sec-title-02::after {
  content: '';
  flex: 1;
  height: 6px;
  background:repeating-linear-gradient(-45deg,rgb(0 164 151 / .1),rgb(0 164 151 / .1) 3px,#fff 0,#fff 6px);
}

.sec-title-03 {
  letter-spacing: .1rem;
  position: relative;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  font-size: 1.8rem;
  font-weight: 700;
}

/* 768px～（タブレット）
------------------------------------------------------ */
@media (min-width: 768px) {

  .sec-title-03 {
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    font-size: 1.9rem;
  }

}

/* 960px～（パソコン）
------------------------------------------------------ */
@media (min-width: 960px) {

  .sec-title-03 {
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    font-size: 2rem;
  }

}

.sec-title-03::before,
.sec-title-03::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
}

.sec-title-03::before {
  z-index: 1;
  width: 60px;
  background: var(--basecolor1);
}

.sec-title-03::after {
  width: 100%;
  background: rgb(14 15 25 / .1);
}

/*****************************************
 * 説明文
 ****************************************/

.desc-text {
  line-height: 2;
  margin-bottom: 4rem;
  margin-inline: auto;
  width: fit-content;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .desc-text {
    line-height: 2.1;
    margin-bottom: 5rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  .desc-text {
    line-height: 2.2;
    margin-bottom: 6rem;
    text-align: center;
  }

}

/*****************************************
 * ページングナビ
 ****************************************/

.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 8rem;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .wp-pagenavi {
    margin-top: 10rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  .wp-pagenavi {
    margin-top: 12rem;
  }

}

.wp-pagenavi > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--table-border-color);
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.wp-pagenavi .previouspostslink {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23333' d='M222 128a6 6 0 0 1-6 6H54.49l61.75 61.76a6 6 0 1 1-8.48 8.48l-72-72a6 6 0 0 1 0-8.48l72-72a6 6 0 0 1 8.48 8.48L54.49 122H216a6 6 0 0 1 6 6'/%3E%3C/svg%3E");
}

.wp-pagenavi .nextpostslink {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%236d6969' d='m220.24 132.24l-72 72a6 6 0 0 1-8.48-8.48L201.51 134H40a6 6 0 0 1 0-12h161.51l-61.75-61.76a6 6 0 0 1 8.48-8.48l72 72a6 6 0 0 1 0 8.48'/%3E%3C/svg%3E");
}

.wp-pagenavi .current {
  color: var(--basecolor2);
  background: var(--basecolor3);
}

/*****************************************
 * hover
 ****************************************/

@media (hover: hover) {

  .wp-pagenavi a {
    transition: all .2s ease-in-out;
  }

  .wp-pagenavi a:hover {
    opacity: .6;
  }

}

/*****************************************
 * グリッド（ギャラリー）
 ****************************************/

.grid-gallery {
  display: grid;
  gap: 1rem;
}

.grid-gallery.row-sp-02 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-gallery.row-sp-03 {
  grid-template-columns: repeat(3, 1fr);
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .grid-gallery.row-tb-04 {
    grid-template-columns: repeat(4, 1fr);
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  .grid-gallery.row-pc-05 {
    grid-template-columns: repeat(5, 1fr);
  }

}

/*****************************************
 * グリッド（テーブル）
 ****************************************/

.grid-table {
  display: grid;
}

.grid-table > .row {
  display: contents;
}

.grid-table > .row > .cell:first-of-type {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  white-space: nowrap;
}

.grid-table > .row > .cell:not(:first-of-type) {
  padding-block: 1rem 3rem;
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .grid-table.row-2 {
    grid-template-columns: auto 1fr;
  }

  .grid-table.row-3 {
    grid-template-columns: auto repeat(2, 1fr);
  }

  .grid-table > .row > .cell:first-of-type {
    padding-block: 2rem;
  }

  .grid-table > .row > .cell:not(:first-of-type) {
    padding-block: 2rem;
  }

}

/* 960px～（パソコン）
------------------------------------*/
@media (min-width: 960px) {

  .grid-table > .row > .cell {
    padding: 1.6rem;
  }

  .grid-table > .row > .cell:first-of-type {
    padding-block: 3rem;
  }

  .grid-table > .row > .cell:not(:first-of-type) {
    padding-block: 3rem;
  }

}

/*****************************************
 * iframe
 ****************************************/

.wrap-gmap iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 280px;
  filter: grayscale(30%);
}

/* 768px～（タブレット）
------------------------------------*/
@media (min-width: 768px) {

  .wrap-gmap iframe {
    height: 340px;
  }

}

/* 960px～（パソコン）
------------------------------------------------------ */
@media (min-width: 960px) {

  .wrap-gmap iframe {
    height: 400px;
  }

}

/*****************************************
 * その他
 ****************************************/

.trim-img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
}

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

.rst-zero-text {
  letter-spacing: .1rem;
  margin-top: 5rem;
  text-align: center;
}

/*******************************************************
 * アニメーション
 ******************************************************/

.smooth-text-anime {
  clip-path: inset(0 100% 0 0);
  display: block;
  transition: .6s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.smooth-text-anime.active {
  clip-path: inset(0);
}

.under-bar-anime {
  position: relative;
  color: var(--basecolor6);
}

.under-bar-anime::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--basecolor6);
  transition: all 1s ease;
}

.under-bar-anime.active::after {
  width: 100%;
}

.fadein-anime {
  opacity: 0;
  transition: all 1s ease;
}

.fadein-anime.active {
  opacity: 1;
}

.fadeinup-anime {
  opacity: 0;
  translate: 0 40px;
}

.fadeinup-anime.active {
  animation: fadeinup-anime .5s ease forwards;
}

@keyframes fadeinup-anime {

  0% {
    opacity: 0;
    translate: 0 40px;
  }

  100% {
    opacity: 1;
    translate: 0 0;
  }

}

.fadeinright-anime {
  opacity: 0;
  translate: -40px 0;
}

.fadeinright-anime.active {
  animation: fadeinright-anime .5s ease forwards;
}

@keyframes fadeinright-anime {

  0% {
    opacity: 0;
    translate: -40px 0;
  }

  100% {
    opacity: 1;
    translate: 0 0;
  }

}
