@charset "utf-8";

/* CSS Document */


/***********
pageHeading
************/


.pageHeading {
  height: 34em;
  padding: 50px 5vw 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pageHeading-container {
}
.pageHeading-subTitle {
  font-size: clamp(4.5rem,10vw, 12rem);
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
  position: relative;
}
.pageHeading-subTitle::before {
  content: "";
  display: block;
  width: max(0.3em,20px);
  height: 1px;
  background-color: var(--color-main);
}
.pageHeading-title {
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-brand01);
}

@media screen and (max-width:834px) {

  .pageHeading {
    height: 20em;
    padding: 30px 5vw 0;
  }
  .pageHeading-subTitle {
    font-size: clamp(2.5rem,14vw, 4.5rem);
  }

}


/***********
innerBase
************/

.innerBase {
  padding-left: 5vw;
  padding-right: 5vw;
}


@media screen and (max-width:1440px) {

  .innerBase {
    padding-left: min(5vw,30px);
    padding-right: min(5vw,30px);
  }

}



/***********
box
************/

.box {
  padding: min(7vw,4em) min(5vw,9em);
}

@media screen and (max-width:834px) {

  .box {
    margin-left: -3vw;
    margin-right: -3vw;
  }
}

/***********
pagination
************/

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: min(12vw,8em);
  padding-bottom: 2em;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.5em;
  height: 3em;
  color: var(--color-brand01);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 5px;
}
.pagination a {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-brand01) inset ;
}
.pagination a.prev ,
.pagination a.next {
  box-shadow: none;
  background-color: transparent;
}
.pagination span.dots{
  border-color: transparent;
}
body.is-pc .pagination a:hover ,
.pagination span:not(.dots){
  background-color: var(--color-brand01);
  color: var(--color-base);
  box-shadow: 0 0 0 1px var(--color-brand01) inset ;
}

.pagination a.prev,
.pagination a.next{
}

@media screen and (max-width:834px) {

  .pagination {
    padding-top: 3em;
    margin-left: -4vw;
    margin-right: -4vw;
  }
  .pagination span,
  .pagination a {
    margin: 0 1px 2px;
  font-size: 1rem;
  }
}


/***********
post
************/

.post {
  font-size: 0.9rem;
}

.post p:not([class]) {
  line-height: 2;
}
.post p:not([class]) + p {
  padding-top: 1em;
}

.post h2:not([class]) {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 2.5em 0 1em 0;
  line-height: 1.4;
  position: relative;
}
.post h2:not([class])::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--color-brand01) 5em, var(--color-sub01) 5em);
  margin-top: 1em;
}

.post h3:not([class]) {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 2.5em 0 0.8em 0;
  line-height: 1.4;
  position: relative;
}

.post h4:not([class]) {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 2em 0 1em 0;
  border-left: 3px solid var(--color-brand01);
  padding: 0.1em 0em 0.1em 0.8em;
  position: relative;
}

.post h5:not([class]) {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 2em 0 0.5em 0;
  padding-left: 1em;
  position: relative;
}
.post h5:not([class])::before {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.3em;
  background-color: var(--color-sub01);
  box-shadow: 0 0 0 0.2em var(--color-brand01);
  position: absolute;
  left: 0;
  top: 0.6em;
  border-radius: 50%;
}

.post h6:not([class]) {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 2em 0 0.5em 0;
  position: relative;
}


.post img {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.post img[src$="jpg"],
.post img[src$="jpeg"] {
}

.post blockquote:not([class]) {
  background-color: var(--color-sub01);
  padding: min(5vw,4em) min(4vw,6%);
  margin: 2em 0;
}
.post blockquote:not([class]) h2:first-child,
.post blockquote:not([class]) h3:first-child,
.post blockquote:not([class]) h4:first-child,
.post blockquote:not([class]) h5:first-child{
  margin-top: 0;
}

.post table:not([class]) {
  border: 1px solid #aaa;
  font-weight: 400;
}

.post table:not([class]) thead td {
  border: 1px solid var(--color-sub01);
  padding: 1em 0.8em;
  text-align: center;
  line-height: 1.8;
  background-color: var(--color-sub01);
}
.post table:not([class]) thead th{
  border: 1px solid var(--color-sub01);
  padding: 1em 1.5em;
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
  background-color: var(--color-brand01);
  color: var(--color-base);
}

.post table:not([class]) tbody th {
  border: 1px solid #aaa;
  padding: 1em 1.5em;
  text-align: left;
  font-weight: 600;
  vertical-align: top;
  line-height: 1.8;
  background-color: var(--color-sub01);
}

.post table:not([class]) tbody td {
  border: 1px solid #aaa;
  padding: 1em 1.5em;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  color: var(--color-base);
}

.post ul:not([class]){
  line-height: 1.8;
  list-style: disc;
  margin-left: 1.8em;
  padding: 1em 0;
}
.post ol:not([class]){
  line-height: 1.8;
  list-style: decimal;
  margin-left: 1.8em;
  padding: 1em 0;
}
.post ol:not([class]) li{
  padding-left: 0.5em;
}

/*
youtube比率対策
*/

.post iframe[src*="youtube"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.post table:not([class]) p:not([class]) {
  font-size: 100%;
}

@media screen and (max-width:834px) {

  .post p:not([class]) {
    line-height: 1.8;
  }


  .post h2:not([class]) {
    font-size: 1.2rem;
  }

  .post h3:not([class]) {
    font-size: 1.2rem;
  }

  .post h4:not([class]) {
    font-size: 1.1rem;
  }

  .post h5:not([class]) {
    font-size: 1rem;
  }

  .post h6:not([class]) {
    font-size: 1rem;
  }




  .post table:not([class]) thead th,
  .post table:not([class]) tbody th ,
  .post table:not([class]) tbody td {
    padding: 0.8em;
  }

}

.post > *:first-child,
.post blockquote > *:first-child{
  margin-top: 0 !important;
}

.post *[class^="l-"] img:not([class]){
  padding-bottom: 0 !important;
}

.post h2 + ul,
.post h3 + ul,
.post h4 + ul,
.post h5 + ul,
.post h6 + ul,
.post h2 + ol,
.post h3 + ol,
.post h4 + ol,
.post h5 + ol,
.post h6 + ol{
  padding-top: 0 !important;
}



/***********
aboutus
************/

.aboutus {
  display: flex;
  align-items: center;
}
.aboutus-img {
  width: 42%;
  padding-right: 2%;
  text-align: center;
}
.aboutus-logo {
  width: clamp(150px,80%, 300px);
  margin: 0 auto;
}

.aboutus-inner {
  flex: 1;
}

@media screen and (max-width:834px) {

  .aboutus-img {
    width: 30%;
    padding-right: 2%;
    margin-left: -5%;
  }
  .aboutus-logo {
    width: clamp(100px,100%, 300px);
  }

}

@media screen and (max-width:640px) {

  .aboutus {
    display: block;
  }
  .aboutus-img {
    width: auto;
    text-align: center;
    padding-right: 0;
    margin-left: 0;
  }
  .aboutus-logo {
    width: clamp(150px,40%, 200px);
    margin: 0 auto 2em;
  }

}

/***********
divide
************/

.divide {
  display: flex;
}
.divide + .divide {
  margin-top: var(--padding-large);
}
.divide-visual {
  width: 44%;
  position: relative;
  z-index: 2;
}
.divide-img {
  min-height: 100%;
}
.divide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.divide-inner {
  flex: 1;
  padding-top: 5vw;
}
.divide-box {
  padding: min(6vw,7em) 10%;
  position: relative;
  z-index: 9;
}
.divide-num {
  font-size: 8.4rem;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand01);
  letter-spacing: 0;
  position: absolute;
  top: 0;
  line-height: 1;
  white-space: nowrap;
  background-color: var(--color-base);
  width: 1.5em;
  text-align: center;
  translate: 0 -50%;
}


.divide:not(.-reverse) .divide-img {
  margin-right: -15vw;
  margin-left: -15%;
}
.divide:not(.-reverse) .divide-box {
  padding-right: 22%;
}
.divide:not(.-reverse) .divide-num {
  left: 1px;
}

.divide.-reverse {
  flex-direction: row-reverse;
}
.divide.-reverse .divide-img {
  margin-left: -15vw;
  margin-right: -15%;
}
.divide.-reverse .divide-box {
  padding-left: 22%;
}
.divide.-reverse .divide-num {
  right: 1px;
}

@media screen and (max-width:834px) {

  .divide {
    display: block;
  }
  .divide + .divide {
    margin-top: var(--padding-large);
  }
  .divide-visual {
    width: auto;
    position: relative;
    z-index: 1;
    transition-delay: 0.4s;
  }
  .divide-img {
    margin-top: -5vw;
  }
  .divide-img img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    aspect-ratio: 16 / 12;
  }
  .divide-inner {
    padding-top: 2em;
    position: relative;
    z-index: 9;
    transition-delay: 0s;
  }
  .divide-box {
    padding: min(8vw,2em) 5%;
    background-color: var(--color-base);
  }
  .divide-num {
    font-size: 5rem;
    width: 1.5em;
    translate: 0 -60%;
  }


  .divide:not(.-reverse) .divide-img,
  .divide.-reverse .divide-img {
    margin-left: 0;
    margin-right: 0;
    margin-left: -5vw;
    padding-right: 5%;
  }
  .divide:not(.-reverse) .divide-box ,
  .divide.-reverse .divide-box{
    padding-left: 5%;
    padding-right: 5%;
  }
  .divide:not(.-reverse) .divide-num,
  .divide.-reverse .divide-num {
    left: auto;
    right: 1px;
  }

}

/***********
borderAnim
************/

.borderAnim {
  position: relative;
}

.borderAnim::before,
.borderAnim::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  box-sizing: border-box;
}

.borderAnim::before {
  top: 0;
  left: 0;
  border-top: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
}

.borderAnim::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
}

.borderAnim.is-show::before {
  animation: borderAnim-topLeft 1s linear forwards;
  animation-delay: 0.3s;
}
.borderAnim.is-show::after {
  animation: borderAnim-bottomRight 1s linear forwards;
  animation-delay: 0.6s;
}

/* 左上→左下→上辺完成 */
@keyframes borderAnim-topLeft {
  0%   { width: 0; height: 0; }
  100% { width: 100%; height: 100%; }
}

/* 右下→右上→下辺完成 */
@keyframes borderAnim-bottomRight {
  0%   { width: 0; height: 0; }
  100% { width: 100%; height: 100%; }
}

/***********
summaryCard
************/

.summaryCard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5em 4%;
}
.summaryCard li {
}

.summaryCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 14;
}
.summaryCard-inner {
  padding-top: 1.5em;
}
.summaryCard .l-textMain {
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .summaryCard {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em 4%;
  }
  .summaryCard-img img {
    aspect-ratio: 16 / 11;
  }
  .summaryCard-inner {
    padding-top: 1.2em;
  }

}

@media screen and (max-width:520px) {

  .summaryCard {
    grid-template-columns: 1fr;
    gap: 3em 0;
  }
  .summaryCard-img img {
    aspect-ratio: 16 / 9;
  }

}



/***********
descCard
************/

.descCard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5em 4%;
}
.descCard li {
}

.descCard-heading {
  background-color: var(--color-sub01);
  font-size: 1.05em;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4.4em;
  padding: 1em 1em 1em 2.8em;
  position: relative;
}
.descCard-heading::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 4px;
  background-color:var(--color-brand01);
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
}


.descCard-inner {
  padding-top: 1.5em;
}
.descCard .l-textMain {
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .descCard {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em 4%;
  }

  .descCard-inner {
    padding-top: 1.2em;
  }

}

@media screen and (max-width:520px) {

  .descCard {
    grid-template-columns: 1fr;
    gap: 3em 0;
  }

}



/***********
normalSlider
************/

.normalSlider {
  overflow: hidden;
}
.normalSlider-slide {
  display: flex;
  position: relative;
}

.normalSlider-slide .slick-dots{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.normalSlider-slide .slick-dots button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #fff;
  display: inline-block;
  width: 30px;
  height: 3px;
  text-indent: -99999px;
  overflow: hidden;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
}
.normalSlider .slick-dots .slick-active button{
  opacity: 1;
}

.normalSlider-slide.-dotRight .slick-dots{
  justify-content: end;
}
.normalSlider-slide.-dotLeft .slick-dots{
  justify-content: start;
}

@media screen and (max-width:834px) {

  .normalSlider {
    overflow: hidden;
  }
  .normalSlider-slide {
    display: flex;
    position: relative;
  }

  .normalSlider-slide .slick-dots{
    bottom: 15px;
    justify-content: center !important;
    padding: 0 10px;
  }
  .normalSlider-slide .slick-dots button{
    width: 20px;
    height: 2px;
    margin: 0 2px;
  }

}


/***********
pv
************/

.pv {
  padding-left: 5vw;
  overflow: hidden;
}
.pv-container {
  position: relative;
}



/*
slider
*/

.pv-slider{
  opacity: 0;
  transition: all 0.1s ease 0s;
  overflow: hidden;
  display: flex;
  padding-bottom: 40px;
  position: relative;
}
body.is-loaded .pv-slider{
  opacity: 1;
}
.pv-slider :not(.slick-dots) li{
  position: relative;
  width: 100%;
}
.pv-img{
  width: 100%;
}
.pv-img > img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.pv-img.-zoom{
  transform-origin: center center;
}
.slick-animation .pv-img.-zoom{
  animation: amin-pv-zoom 10s linear forwards;
}
.pv-img.-left{
  scale: 1.1;
  transform-origin: left center;
}
.slick-animation .pv-img.-left{
  animation: amin-pv-left 10s linear forwards;
}
.pv-img.-right{
  scale: 1.1;
  transform-origin: left center;
}
.slick-animation .pv-img.-right{
  animation: amin-pv-right 10s linear forwards;
}


.pv-slider .slick-dots{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: start;
}
.pv-slider .slick-dots button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: var(--color-main);
  display: inline-block;
  width: 50px;
  height: 4px;
  text-indent: -99999px;
  overflow: hidden;
  margin-right: 8px;
  padding: 0;
  cursor: pointer;
  opacity: 0.2;
}
.pv-slider .slick-dots .slick-active button{
  opacity: 1;
}
.pv-slider-slide.-dotRight .slick-dots{
  justify-content: end;
}
.pv-slider-slide.-dotLeft .slick-dots{
  justify-content: start;
}

@keyframes amin-pv-zoom {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.1;
  }
}
@keyframes amin-pv-left {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -5% 0;
  }
}
@keyframes amin-pv-right {
  0% {
    translate: -5% 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes amin-pv-up {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 -5%;
  }
}
@keyframes amin-pv-down {
  0% {
    translate: 0 -5%;
  }
  100% {
    translate: 0 0;
  }
}


@media screen and (max-width:834px) {

  .pv {
    padding-left: 5vw;
  }
  .pv-container {
    position: relative;
  }



  /*
  slider
  */

  .pv-slider{
    padding-bottom: 30px;
  }
  body.is-loaded .pv-slider{
    opacity: 1;
  }
  .pv-slider :not(.slick-dots) li{
    position: relative;
    width: 100%;
  }
  .pv-img{
    width: 100%;
  }
  .pv-img > img {
    aspect-ratio: 16 / 10;
    vertical-align: bottom;
  }


  .pv-slider .slick-dots button{
    width: 20px;
    height: 3px;
    margin-right: 5px;
  }

}




/***********
dataTable
************/

.dataTable {
  line-height: 1.6;
  font-size: 0.85rem;
  line-height: 1.7;
  border-collapse: separate;
  border-spacing: 5px;
}

.dataTable thead td {
  padding: 1.2em 1.2em ;
}
.dataTable thead th {
  padding: 1.2em 1.2em ;
}

.dataTable tbody tr {
}
.dataTable tbody th {
  padding: 1.8em 1em ;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid var(--color-main);
}
.dataTable tbody tr:first-child th {
  border-top: 1px solid var(--color-main);
}
.dataTable tbody td {
  padding: 1.8em 5% ;
  position: relative;
  text-align: justify;
  border-bottom: 1px solid var(--color-sub02);
}
.dataTable tbody tr:first-child td {
  border-top: 1px solid var(--color-sub02);
}

/*
setting
*/

.dataTable.-fixed {
  table-layout: fixed;
}

.dataTable.-vwide thead td ,
.dataTable.-vwide thead th{
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.dataTable.-vwide tbody td ,
.dataTable.-vwide tbody th{
  padding-top: 1.2em;
  padding-bottom: 1.2em;
}


.dataTable.-vtop,
.dataTable.-vtop th,
.dataTable.-vtop td {
  vertical-align: top;
}

.dataTable.-alignLeft,
.dataTable.-alignLeft th,
.dataTable.-alignLeft td {
  text-align: justify;
}

.dataTable.-alignCenter,
.dataTable.-alignCenter th,
.dataTable.-alignCenter td {
  text-align: center;
}


/*
size
*/

.dataTable-th.-trisect {
  width: 33%;
}
.dataTable-th.-small {
  width: 18em;
}
.dataTable-th.-xsmall {
  width: 15em;
}
.dataTable-th.-xxsmall {
  width: 12em;
}
.dataTable-th.-alignLeft {
  text-align: left;
}



@media screen and (max-width:834px) {

  .dataTable {
    font-feature-settings: "palt";
    border-spacing: 2px;
  }
  .dataTable th,
  .dataTable td {
  }

  .dataTable thead td {
    padding: 1em 0.5em ;
  }
  .dataTable thead th {
    padding: 1em 0.5em ;
  }
  .dataTable tbody th {
    padding: 1em 0em ;
  }
  .dataTable tbody td {
    padding: 1em 1em ;
  }

  /*
  setting
  */

  .dataTable.-fixed {
    table-layout: fixed;
  }

  .dataTable.-vwide thead td ,
  .dataTable.-vwide thead th{
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .dataTable.-vwide tbody td ,
  .dataTable.-vwide tbody th{
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .dataTable.-fixed {
    table-layout: fixed;
  }
  .dataTable-th.-small {
    width: 8em;
  }
  .dataTable-th.-xsmall {
    width: 8em;
  }
  .dataTable-th.-xxsmall {
    width: 22%;
  }


}

@media screen and (max-width:520px) {

  /*
  spBlock
  */

  .dataTable.-spBlock ,
  .dataTable.-spBlock tbody ,
  .dataTable.-spBlock th ,
  .dataTable.-spBlock td ,
  .dataTable.-spBlock tr {
    display: block;
    width: 100% !important;
  }

  .dataTable.-spBlock {
    border: none;
  }
  .dataTable.-spBlock tbody tr {
    border: none;
  }

  .dataTable.-spBlock tbody th {
    border: 1px solid var(--color-brand01);
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 0.5em 1em ;
    text-align: left;
  }
  .dataTable.-spBlock tbody td {
    padding: 1em 0em 2em ;
    line-height: 1.7;
    text-align: left;
  }
  .dataTable.-spBlock tbody td::before,
  .dataTable.-spBlock tbody td::after {
    display: none;
  }

  .dataTable.-spBlock .dataTable-linkList {
    display: block;
    max-width: 19em;
    margin: 0 auto;
  }

}

/***********
comVisual
************/


.comVisual {
  position: relative;
  overflow: hidden;
}
.comVisual-text {
  background: url(../../img/company/philosophy.png) repeat-x 0 0 ;
  background-size: clamp(2000px, 200vw, 6000px) auto;
  height: clamp(100px, 10vw, 300px);
  animation: anim-comVisualBg-loop 40s linear infinite reverse;
  mix-blend-mode: difference;
  position: relative;
  z-index: 9;
  margin-bottom: -4%;
}
@keyframes anim-comVisualBg-loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: clamp(2000px, 200vw, 6000px) 0;
  }
}

.comVisual-img {
  background-color: var(--color-main);
}
.comVisual-img img {
  opacity: 0.65;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 5;
}

@media screen and (max-width:834px) {

  .comVisual {
  }
  .comVisual-text {
    background-size: 1500px auto;
    height: 75px;
    margin-bottom: -30px;
  }
  @keyframes anim-comVisualBg-loop {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 1500px 0;
    }
  }

  .comVisual-img img {
    aspect-ratio: 16 / 8;
  }
}


/***********
philosophy
************/

.philosophy {
  padding-top: min(6vw,4em);
}
.philosophy-section {
  display: flex;
  align-items: center;
}
.philosophy-section + .philosophy-section {
  padding-top: min(12vw,8em);
}
.philosophy-heading {
  width: 33%;
  min-width: 200px;
}
.philosophy-heading-block {
  aspect-ratio: 16 / 10;
  position: relative;
  padding: 2.2em 0 0 1.5em;
}
.borderAnim.philosophy-frame {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 1% 100%);
}
.philosophy-heading-subTitle {
  font-size: 2rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
}
.philosophy-heading-title {
  font-weight: 500;
  font-size: 0.85rem;
  padding-top: 0.5em;
}

.philosophy-inner {
  flex: 1;
  padding-left: 7%;
}

@media screen and (max-width:640px) {

  .philosophy {
    padding-top: min(6vw,4em);
  }
  .philosophy-section {
    display: block;
  }
  .philosophy-section + .philosophy-section {
    padding-top: min(15vw,6em);
  }
  .philosophy-heading {
    width: auto;
    min-width: initial;
  }
  .philosophy-heading-block {
    aspect-ratio: 16 / 6;
    padding: 1.2em 0 0 0.5em;
  }
  .philosophy-heading-subTitle {
    font-size: 1.8rem;
  }
  .philosophy-heading-title {
  }

  .philosophy-inner {
    padding-left: 0;
    padding-top: 1.5em;
    padding-bottom: 0;
  }

}

/***********
staff
************/

.staff {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}
.staff + .staff {
  padding-top: min(20vw,12em);
}

.staff-name {
  width: clamp(60px,10vw, 116px);
}
.staff-name-text {
  position: sticky;
  right: 0;
  top: var(--header-height);
  font-size: clamp(60px,10vw, 116px);
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transform-origin: left top;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.staff-name-accent {
  color: var(--color-brand01);
}

.staff-container {
  flex: 1;
}
.staff-img {
  width: clamp(100px,40%, 400px);
  padding-bottom: min(12vw,7em);
  filter: grayscale(100%) brightness(110%);
  transition: 0.5s;
}
.staff-img:hover {
  filter: grayscale(0%);
}

.staff-block {
  width: clamp(500px,90%, 900px);
}

@media screen and (max-width:640px) {

  .staff {
    margin-right: -5vw;
  }
  .staff + .staff {
  }

  .staff-name {
    width: 40px;
  }
  .staff-name-text {
    top: 70px;
    font-size: 40px;
  }
  .staff-name-accent {
    color: var(--color-brand01);
  }

  .staff-container {
    flex: 1;
    padding-right: 8px;
  }
  .staff-img {
    width: clamp(100px,55%, 300px);
    padding-bottom: min(12vw,7em);
  }
  .staff-block {
    width: auto;
  }

}



/***********
urllink
************/

.urllink {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
.urllink i {
  margin-right: 0.8em;
  scale: 1.5;
  color: var(--color-brand01);
}
body.is-pc .urllink:hover {
  text-decoration: underline;
  color: var(--color-brand01);
  text-decoration-color: var(--color-brand01);
}


/***********
separate
************/

.separate {
  display: flex;
  justify-content: space-between;
}
.separate-item.-large {
  width: 50%;
}
.separate-item.-small {
  width: 45%;
}
.separate-item.-xlarge {
  width: 55%;
}
.separate-item.-xsmall {
  width: 40%;
}
.separate-item.-xxlarge {
  width: 60%;
}
.separate-item.-xxsmall {
  width: 35%;
}
.separate-item.-xxxlarge {
  width: 62%;
}
.separate-item.-xxxsmall {
  width: 33%;
}

.separate-item.-half {
  width: 47.5%;
}
.separate.-reverse {
  flex-direction: row-reverse;
}
.separate.-end {
  align-items: end;
}

.separate-item.-offsetTop {
  padding-top: 0.5em;
}

@media screen and (max-width:640px) {

  .separate {
    display: block;
  }
  .separate-item {
    width: auto !important;
  }
  .separate-item:first-child {
    padding-bottom: 1.6rem;
  }

}



/***********
numHeading
************/

.numHeading {
  padding-bottom: 2em;
  display: flex;
  align-items: center;
}
.numHeading-num {
  font-size: 7rem;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand01);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  width: 1em;
  translate: 0 -0.05em;
}
.numHeading-inner {
  flex: 1;
}
.numHeading-inner .l-minTitle {
  padding-bottom: 0;
}

@media screen and (max-width:834px) {

  .numHeading {
    padding-bottom: 1em;
  }
  .numHeading-num {
    font-size: 4rem;
  }
}

/***********
cafeLogo
************/

.cafeLogo {
  text-align: center;
  padding-bottom: 4em;
  width: clamp(80px,40vw, 320px);
  margin: 0 auto;
}

/***********
thumbSlider
************/

.thumbSlider {
  position: relative;
}

.thumbSlider-main {
}
.thumbSlider-item img {
  display: block;
  width: 100%;
  height: auto;
}

.thumbSlider-control {
  margin-top: 15px;
}

.thumbSlider-thumb {
  display: flex;
  gap: 10px
}

.thumbSlider-thumb-item {
  width: 120px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  opacity: 0.7;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  outline: none;
}
.thumbSlider-thumb-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.thumbSlider-thumb-item.is-current {
  opacity: 1;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000;
}

.thumbSlider-thumb-item:hover {
  opacity: 1;
}
.thumbSlider-thumb-item:focus-visible {
}

.thumbSlider .slick-slide img {
  display: block;
}

.thumbSlider .slick-prev ,
.thumbSlider .slick-next{
  display: block;
  width: 60px;
  height: 80px;
  transition: 0.4s;
  cursor: pointer;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 9;
}
.thumbSlider .slick-prev span ,
.thumbSlider .slick-next span{
  width: 60%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--color-dark01);
}
.thumbSlider .slick-next {
  right: -60px;
}
.thumbSlider .slick-next span{
  rotate: -45deg;
  border-left: none;
  border-top: none;
}
.thumbSlider .slick-prev {
  left: -60px;
}
.thumbSlider .slick-prev span{
  rotate: -45deg;
  border-right: none;
  border-bottom: none;
}

body.is-pc .thumbSlider .slick-prev:hover ,
body.is-pc .thumbSlider .slick-next:hover{
  opacity: 1;
}


@media screen and (max-width:640px) {

  .thumbSlider-control {
    margin-top: 5px;
  }

  .thumbSlider-thumb {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px 4px;
  }

  .thumbSlider-thumb-item {
    width: auto;
  }
}



/***********
catNavi
************/

.catNavi {
  margin-bottom: min(12vw,8em);
  background-color: var(--color-sub01);
  padding: min(7vw,4em) min(5vw,9em);
  position: relative;
}
.catNavi::before {
  content: "Category";
  font-size: 1.7em;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
  position: absolute;
  left: min(5vw,9em);
  top: 50%;
  translate: 0 -55%;
}
.catNavi-list {
  padding-left: 10em;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.catNavi-list li {
  padding: 0.3em;
}
.catNavi-list li a {
  display: inline-block;
  background-color: var(--color-base);
  color: var(--color-dark02);
  padding: 0.5em 1.5em;
  min-width: 6em;
  border-radius: 3em;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
body.is-pc .catNavi-list li a:hover,
.catNavi-list li.current-cat a {
  background-color: var(--color-brand01);
  color: var(--color-base);
}

@media screen and (max-width:834px) {

  .catNavi {
    margin-bottom: min(10vw,6em);
    padding: 15px 0;
    overflow: auto;
  }
  .catNavi::before {
    display: none;
  }
  .catNavi-list {
    padding-left: 5vw;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .catNavi-list li {
    padding: 0 3px;
  }
  .catNavi-list li a {
    padding: 0.8em 1em;
    min-width: 5em;
  }

}

/***********
worksHeader
************/

.worksHeader {
}
.worksHeader-img {
  padding-right: 20%;
  position: relative;
  z-index: 9;
}
.worksHeader-block {
  display: flex;
  justify-content: end;
}
.worksHeader-box {
  width: 95%;
  max-width: 840px;
  background-color: var(--color-sub01);
  padding: calc(min(5vw,3em) + 50px) min(5vw,9em);
  margin-top: -50px;
}
.worksHeader-title {
  font-size: 2.6rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  padding-bottom: 0.5em;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-sub03);
}

.worksHeader-data {
  display: flex;
  align-items: start;
  padding-top: 0.6em;
  border-bottom: 1px solid var(--color-sub03);
  font-size: 1.1rem;
  padding: 1.2em 0.5em 0.9em ;
}
.worksHeader-data dt {
  width: 7em;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  color: var(--color-brand01);
  letter-spacing: 0.04em;
  padding-bottom: 0.4em;
  line-height: 1.2;
}
.worksHeader-data dd {
  font-size: 85%;
  font-weight: 350;
  flex: 1;
  padding-bottom: 0.4em;
}

@media screen and (max-width:640px) {

  .worksHeader {
  }
  .worksHeader-img {
    padding-right: 10%;
    margin-left: -5vw;
  }
  .worksHeader-block {
  }
  .worksHeader-box {
    margin-right: -5vw;
    background-color: var(--color-sub01);
    padding: calc(min(5vw,3em) + 50px) min(5vw,5em) 2em;
    margin-top: -50px;
  }
  .worksHeader-title {
    font-size: 1.7rem;
  }

  .worksHeader-data {
    padding: 0.6em 0 0.4em ;
  }
  .worksHeader-data dt {
    width: 5.1em;
  }

}


/***********
gallery
************/

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 5% ;
  margin-bottom: -5%;
}
.gallery li {
  width: 47.5%;
  margin-bottom:5%;
}
.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

body.is-pc .gallery a:hover {
  cursor: zoom-in;
}

/***********
paging
************/

.paging {
  display: flex;
  justify-content: center;
  margin: min(12vw,8em) 0;
  position: relative;
}
.paging a {
  display: inline-block;
  width: auto;
  color: inherit;
  text-decoration: none;
  padding: 1em 0 1rem 0;
  font-weight: 500;
  font-size: 1.3rem;
  font-family: var(--font-family-gothic-en);
}


.paging-back {
}
.paging-back a {
  border-bottom: 1px solid var(--color-dark01);
}

.paging-next {
  position: absolute;
  right: 0;
}
.paging-next a {
  padding-right: 3em;
}
.paging-next a::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  position: absolute;
  right: 0;
  top: 55%;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-left: none;
  border-bottom: none;
  rotate: 45deg;
  transform-origin:  right top;
  transition: 0.4s;
}

.paging-prev {
  position: absolute;
  left: 0;
}
.paging-prev a {
  padding-left: 3em;
}
.paging-prev a::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  position: absolute;
  left: 0;
  top: 55%;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-right: none;
  border-bottom: none;
  rotate: -45deg;
  transform-origin:  left top;
  transition: 0.4s;
}

body.is-pc .paging-next a:hover::after ,
body.is-pc .paging-prev a:hover::after {
  border-color: var(--color-main);
}

@media screen and (max-width:520px) {

  .paging a {
    font-size: 1.1rem;
  }
  .paging-next a {
    padding-right: 2em;
  }
  .paging-next a::after {
    top: 50%;
    scale: 0.6;
  }
  .paging-prev a {
    padding-left: 2em;
  }
  .paging-prev a::after {
    top: 50%;
    scale: 0.6;
  }
}

/***********
article
************/

.article {
}
.article-heading {
  padding-bottom: 3em;
}
.article-data {
  padding-bottom: 1em;
}
.article-data-time {
  display: inline-block;
  font-size: 1rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  padding-right: 1em;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
}
.article-data-time.-slash {
  margin-right: 1.5em;
  padding-right: 1.5em;
}
.article-data-time.-slash::after {
  content: "";
  display: block;
  width: 1px;
  height: 2em;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  background: rgba(0, 0, 0, 0.3);
}

.article-data-cat.l-catIcon {
  display: inline-block;
  font-size: 0.9rem;
  font-feature-settings: "palt";
  line-height: 1.3;
}
.article-data-term {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1.3;
}


.article-title {
  font-weight: 500;
  font-size: 1.7rem;
}
.article-eyecatch {
  padding-bottom: 3em;
  text-align: center;
}

@media screen and (max-width:640px) {

  .article-title {
    font-size: 1.4rem;
  }
  .article-eyecatch {
    padding-bottom: 3em;
  }
  .article-data-time.-slash {
    margin-right: 1em;
    padding-right: 1em;
  }
}



/***********
xxxxx
************/


.sitemap {
}
.sitemap-list {
}

/*
navi
*/

.sitemap-list {
  font-size: 0.85rem;
}
.sitemap-list > li {
  position: relative;
  padding-bottom: 0.5em;
}

.sitemap-list > li > a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0.2em 1.5em;
}
.sitemap-list > li > a small{
  font-weight: 500;
  font-size: 170%;
  font-family: var(--font-family-gothic-en);
  padding-right: 0.5em;
}
.sitemap-list > li > a span{
  font-size: 90%;
  opacity: 0.5;
}

/*
child1
*/

.sitemap-list >li > ul {
  padding: 1em 0 1.5em 2em;
  display: flex;
  flex-wrap: wrap;
}
.sitemap-list >li > ul li {
  padding-right: 2em;
}

.sitemap-list > li > ul > li > a {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.2em 0 0.3em 1em;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.sitemap-list > li > ul > li > a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: var(--color-brand01);
  position: absolute;
  left: 0;
  top: 1em;
}


body.is-pc .sitemap-list  a:hover {
  color: var(--color-brand01);
}

/***********
facilityLead
************/

.facilityLead {
  text-align: center;
  font-size: clamp(1rem,3.2vw, 1.2em);
  line-height: 1.8em;
}


/***********
faqSection
************/

.faqSection {
  position: relative;
  background-color: var(--color-sub01);
  margin-bottom: 1em;
}
.faqSection-heading {
  font-size: var(--fontSize-main);
  font-weight: 400;
  background-color: var(--color-sub04);
  padding: 1.5em 4em 1.5em 4.5rem;
  min-height: 3.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  line-height: 1.8;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.2s;
  text-underline-offset: 0.2em;
  border-bottom: 1px solid var(--color-base);

}
.faqSection-heading::before {
  content: "Q";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 1.8em;
  height: 1.8em;
  padding-bottom: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  background-color: var(--color-brand01);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 50%;
  position: absolute;
  left: 1.5em;
  top: 1.5em;
}

.faqSection-heading-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 1.8em;
  height: 1.8em;
  position: absolute;
  right: 0.8em;
  top: 50%;
  margin-top: -0.9em;
}
.faqSection-heading-icon::before,
.faqSection-heading-icon::after{
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  margin-top: -0.5px;
  background-color: var(--color-brand01);
  position: absolute;
  left: calc(50% - 7px);
  top: 50%;
}
.faqSection-heading-icon::after{
  transform: rotate(90deg);
}
.faqSection-heading.is-active .faqSection-heading-icon::after{
  transform: rotate(0deg);
}
body.is-pc .faqSection-heading:hover{
  text-decoration: underline;
  text-decoration-color: inherit;
}

.faqSection-answer {
  display: none;
}
.faqSection-answer-inner {
  padding: 1.5em 4em 2em 4.5rem;
  position: relative;
}
.faqSection-answer-inner::before {
  content: "A";
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 1.8em;
  height: 1.8em;
  font-size: 1rem;
  color: var(--color-base);
  background-color: var(--color-main);
  font-size: var(--fontSize-main);
  font-weight: 500;
  border-radius: 50%;
  position: absolute;
  left: 1.5em;
  top: 1.5em;
}

@media screen and (max-width:834px) {

  .faqSection {
    margin-bottom: 0.5em;
  }
  .faqSection-heading {
    padding: 1.5em 3em 1.5em 4.5rem;
  }
  .faqSection-answer-inner {
    padding: 1.2em 5vw 2em 4.5rem;
  }
  .faqSection-answer-inner::before {
    top: 1em;
  }

  .faqSection-heading-icon {
    right: 0.3em;
    scale: 0.9;
  }

}


@media screen and (max-width:520px) {

  .faqSection-heading {
    padding: 1em 3em 1em 3.2rem;
    font-size: 0.85rem;
  }

  .faqSection-heading::before {
    top: 0.8em;
    left: 0.8em;
  }
  .faqSection-answer-inner {
    padding: 1.2em 5vw 2em 3.2rem;
  }
  .faqSection-answer-inner::before {
    left: 0.8em;
  }


}



/***********
divide
************/

.flow {
  counter-reset : flow_num;
}
.flow-section {
  display: flex;
}
.flow-section + .flow-section {
  margin-top: var(--padding-small);
}
.flow-visual {
  width: 44%;
  position: relative;
  z-index: 2;
}
.flow-img {
  min-height: 100%;
  margin-right: -10%;
}
.flow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}
.flow-inner {
  flex: 1;
  padding-top: 5vw;
}
.flow-box {
  padding: min(5vw,3em) 8% min(6vw,4em);
  padding-left: 16%;
  position: relative;
  z-index: 9;
}
.flow-num {
  font-size: 8.4rem;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand01);
  letter-spacing: 0;
  position: absolute;
  top: 0;
  line-height: 1;
  white-space: nowrap;
  background-color: var(--color-base);
  width: 1.5em;
  text-align: center;
  translate: 0 -50%;
  right: 1px;
}
.flow-num::before{
  display: inline;
  counter-increment:flow_num;
  content: counter(flow_num, decimal-leading-zero) ;
}
.flow-inner .l-title {
  position: relative;
  z-index: 2;
}



@media screen and (max-width:834px) {

  .flow-section {
    display: block;
  }
  .flow-section + .flow-section {
    padding-bottom: var(--padding-large);
  }
  .flow-visual {
    width: auto;
    position: relative;
    z-index: 1;
    transition-delay: 0.1s;
  }
  .flow-img {
    margin-top: -5vw;
    margin-right: 0;
    margin-left: -5vw;
    padding-right: 0;
  }
  .flow-img img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    aspect-ratio: 16 / 10;
  }
  .flow-inner {
    padding-top: 2em;
    position: relative;
    z-index: 9;
    transition-delay: 0s;
  }
  .flow-box {
    padding: 2em 5% min(5vw,1em)  0;
    background-color: var(--color-base);
  }
  .flow-box::before,
  .flow-box::after {
    display: none !important;
  }
  .flow-num {
    font-size: 5rem;
    width: 1.1em;
    translate: 0 0;
    top: 0;
    left: -0.2em;
    right: auto;
    z-index: 9;
  }

  .flow-inner .l-title {
    margin-left: 5rem;
  }

}

/***********
xxxxx
************/


/***********
xxxxx
************/


/***********
xxxxx
************/


/***********
xxxxx
************/


/***********
xxxxx
************/
