@charset "utf-8";

/* CSS Document */

:root {
  --font-family-gothic:     'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-gothic-en:  'Roboto','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  --font-family-serif:     'Noto Serif JP','Yu Mincho','游明朝',YuMincho,'Hiragino Mincho ProN',serif;

  --color-base: #fff;
  --color-main: #000;
  --color-brand01: #e20000;
  --color-primary01: #2380c5;
  --color-accent01: #ffd800;
  --color-sub01: #f0f0f0;
  --color-sub02: #ccc;
}


/***********
base
************/
html,
body {
  height: 100%;
  min-height: 100%;
  font-size: 13px;
  font-weight: normal;
  font-family: var(--font-family-gothic);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-main);
/*
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
*/
}

body.is-menu-open {
  overflow: hidden;
}
h1,h2,h3,h4,h5,h6,th,em{
  font-weight: 700;
  font-style: normal;
}
strong {
  font-weight: 900;
}

@media screen and (max-width:1280px) {
  body{
    font-size: 12px;
  }
}
@media screen and (max-width:834px) {
  body{
    font-size: min(calc(9px + 0.7vmin),12px);
    -webkit-tap-highlight-color:transparent;
  }
}
@media screen and (max-width:520px) {
  body{
    font-size: min(calc(9px + 1vmin),12px);
    -webkit-tap-highlight-color:transparent;
  }
}


a {
  text-decoration: underline;
  transition: 0.1s;
}

a:visited{}
a:hover,
a:active {
  color: ;
  text-decoration: none;
}

img {
  /* width: auto; */
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(0, 144, 202, 0.5); /* Safari */
}
::-moz-selection {
  background: rgba(0, 144, 202, 0.5); /* Firefox */
}

@media screen and (min-width:835px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/***********************
layout
************************/

/***********
wp
************/

.right,.alignright {  float: right !important; }
.left,.alignleft  {  float: left !important; }
.aligncenter  { display: block; margin-left:auto; margin-right:auto; }
.wp-caption {   max-width: 100%; }

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

  .right,
  .alignright {
    float: right !important;
    width: 35%;
    margin-left: 1em;
  }

  .left,
  .alignleft {
    float: left !important;
    width: 35%;
    margin-right: 1em;
  }

}

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

  .right,
  .alignright ,
  .left,
  .alignleft {
    display: block;
    width: 100%;
    margin: 0 auto 1.5em;
    float: none !important;
  }
}

/***********
common
************/

.l-relative {  position: relative !important; }

.l-textAlign-center {  text-align: center !important; }
.l-textAlign-right  {  text-align: right !important; }
.l-textAlign-left   {  text-align: left !important; }

.l-bottom-xxsmall {  margin-bottom: 5px  !important; }
.l-bottom-xsmall  {  margin-bottom: 10px !important; }
.l-bottom-small   {  margin-bottom: 15px !important; }
.l-bottom         {  margin-bottom: 20px !important; }
.l-bottom-large   {  margin-bottom: 30px !important; }
.l-bottom-xlarge  {  margin-bottom: 50px !important; }
.l-bottom-xxlarge {  margin-bottom: 80px !important; }

.l-top-xxsmall {  margin-top: 5px  !important; }
.l-top-xsmall  {  margin-top: 10px !important; }
.l-top-small   {  margin-top: 15px !important; }
.l-top         {  margin-top: 20px !important; }
.l-top-large   {  margin-top: 30px !important; }
.l-top-xlarge  {  margin-top: 50px !important; }
.l-top-xxlarge {  margin-top: 80px !important; }

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

  .l-bottom-xxsmall {  margin-bottom: 5px  !important; }
  .l-bottom-xsmall  {  margin-bottom: 7px !important; }
  .l-bottom-small   {  margin-bottom: 10px !important; }
  .l-bottom         {  margin-bottom: 15px !important; }
  .l-bottom-large   {  margin-bottom: 20px !important; }
  .l-bottom-xlarge  {  margin-bottom: 30px !important; }
  .l-bottom-xxlarge {  margin-bottom: 40px !important; }

  .l-top-xxsmall {  margin-top: 5px  !important; }
  .l-top-xsmall  {  margin-top: 7px !important; }
  .l-top-small   {  margin-top: 10px !important; }
  .l-top         {  margin-top: 15px !important; }
  .l-top-large   {  margin-top: 20px !important; }
  .l-top-xlarge  {  margin-top: 30px !important; }
  .l-top-xxlarge {  margin-top: 40px !important; }

}

/***********
layout
************/

.l-wrapper{
  overflow: hidden;
  position: relative;
}
.l-wrapper::after{
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100lvh;
  background: url(../../img/bg01.jpg) no-repeat center center / cover;
}

.l-contents{
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: var(--color-base);
}

/***********
base
************/

.l-base {
  width: auto;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

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

  .l-base {
    padding-left: 4vw;
    padding-right: 4vw;
  }

}

/***********
marker
************/

.marker {
  background: linear-gradient(to right ,var(--color-accent01), var(--color-accent01)) 0 100% / 0 40% no-repeat;
  transition: background 1s cubic-bezier(0.83, 0, 0.17, 1);
  text-decoration: none;
  padding-left: 0.05em;
  padding-right: 0.05em;
}

.marker.is-inview {
  background-size: 100% 40%;
}


/***********
fontColor
************/

.l-fontColor-brand01 {
  color: var(--color-brand01);
}
.l-fontColor-accent01 {
  color: var(--color-accent01);
}

/***********
text
************/

.textMain{
  font-size: clamp(100%,3.8vw, 170%);
  font-weight: 500;
  line-height: 1.7;
}
.textLead{
  font-size: clamp(100%,3.8vw, 170%);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.l-list-circle {}
.l-list-circle li {
  padding-left: 1em;
  position: relative;
}
.l-list-circle li::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  left: 0;
  top: 0.8em;
  background: var(--color-main);
  border-radius: 50%;
}

.l-list-dot {}
.l-list-dot li {
  margin-left: 1em;
}
.l-list-dot li::before {
  content: "・";
  margin-left: -1em;
}

.l-list-asterisk {}

.l-list-asterisk li {
  margin-left: 1em;
}
.l-list-asterisk li::before {
  content: "※";
  margin-left: -1em;
}

.l-list-number {
  padding-left: 2em;
}
.l-list-number li {
  list-style: decimal;
}


/***********
linkWrap
************/

.l-linkWrap{
  padding-top: 2em;
  text-align: center;
}
.l-linkWrap.-left{
  text-align: left;
}
.l-linkWrap.-right{
  text-align: right;
}


.l-linkSeparate {
  display: flex;
  justify-content: center;
  padding-top: 2em;
}
.l-linkSeparate-item {
  padding: 0 1%;
  min-width: 30%;
}
.l-linkSeparate-item .l-btn {
}


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

  .l-linkWrap.-left ,
  .l-linkWrap.-right{
    text-align: center;
  }

  .l-linkSeparate {
    display: block;
    text-align: center;
  }
  .l-linkSeparate-item {
    padding: 0;
    min-width: initial;
  }
  .l-linkSeparate-item + .l-linkSeparate-item {
    padding-top: 10px;
  }
  .l-linkSeparate-item .l-btn {
    width: 100%;
    max-width: 480px;
  }

}

/***********
btn
************/

.l-btn {
  font-size: clamp(100%,5vw, 214%);
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0.4em;
  border: 2px solid var(--color-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3em;
  background: linear-gradient(to bottom, #fff 50%, #eee 50%, #c0c0c0 100%);
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.5), 0 0 0.4em rgba(0, 0, 0, 0.3) inset;
  line-height: 1;
}
.l-btn::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f138";
  margin-left: 0.2em;
  margin-right: -0.2em;
  scale: 0.8;
  vertical-align: middle;
  display: inline-block;
  translate: 0 0.05em;
}
body.is-pc .l-btn:hover {
  translate: 0.1em 0.1em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.5), 0 0 0.4em rgba(0, 0, 0, 0.3) inset;
}


/***********
header
************/

.header {
  background: url(../../img/bg02.jpg) no-repeat center center / cover;
  padding-bottom: 50px;
}

.header-logo {
  width: clamp(200px,54vw, 410px);
  margin: 0 auto;
  padding: 30px 0 20px;
}

.header-visual {
  padding: 0 min(5vw,45px);
}

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

  .header-logo {
    padding: 15px 0 10px;
  }
  .header-visual {
    padding: 0 ;
  }

}
/***********
cv
************/

.cv {
  background-color: var(--color-brand01);
  position: relative;
  z-index: 9;
  padding-bottom: 2em;
}
.cv.-offset {
  padding-top: 1.5em;
}
.cv::before,
.cv::after {
  content: "";
  display: block;
  width: clamp(30px,12vw, 75px);
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../../img/edge01.png) no-repeat 0 0 / 100% 100%;
  pointer-events: none;
}
.cv::before{
  left: 0;
}
.cv::after{
  right: 0;
  rotate: 180deg;
}
.cv-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cv-heading {
  text-align: center;
}
.cv-heading-title {
  display: inline-block;
  font-size: clamp(154%,6vw, 270%);
  font-weight: 900;
  background: url(../../img/title_bg01.png) no-repeat center center / 100% 100%;
  padding: 0.2em 2.5em;
  translate: 0 -50%;
  margin-bottom: -50%;
}
.cv-title {
  font-size: clamp(100%,4.6vw, 254%);
  font-weight: 700;
  color: var(--color-base);
  padding-bottom: 0.5em;
}
.cv-headline {
  font-weight: 900;
  font-size: clamp(139%,6vw, 300%);
  line-height: 1.3;
  color: var(--color-base);
}
.cv-list {
  display: flex;
  justify-content: space-between;
  padding-left: 2%;
  margin-right: 2%;
}
.cv-list li {
  flex: 1;
  padding: 0 1.5%;
}
.cv-btn {
  font-size: clamp(100%,5vw, 214%);
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0.4em;
  border: 2px solid var(--color-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3em;
  background: linear-gradient(to bottom, #fff 50%, #eee 50%, #c0c0c0 100%);
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.5), 0 0 0.4em rgba(0, 0, 0, 0.3) inset;
  line-height: 1;
}
.cv-btn::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f138";
  margin-left: 0.2em;
  margin-right: -0.2em;
  scale: 0.8;
  vertical-align: middle;
  display: inline-block;
  translate: 0 0.05em;
}
body.is-pc .cv-btn:hover {
  translate: 0.1em 0.1em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.5), 0 0 0.4em rgba(0, 0, 0, 0.3) inset;
}

/***********
intro
************/

.intro {
  background: url(../../img/bg03.png) no-repeat center top / clamp(620px,140vw, 1250px) auto;
  padding-top: 3em;
}
.intro-container {
}
.intro-heading {
  font-size: clamp(200%,7vw, 324%);
  font-weight: 900;
  text-align: center;
  background: url(../../img/title_object01.png) no-repeat center top / 3em auto;
  padding-top: 2em;
  padding-bottom: 0.6em;
}
.intro-feature {
  position: relative;
  z-index: 3;
}

/***********
heading
************/

.heading {
  font-size: clamp(170%,5.8vw, 308%);
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 0.2em;
  margin-bottom: 0.8em;
}
.heading-container {
  position: relative;
  display: flex;
  align-items: end;
  z-index: 2;
}
.heading-num {
  width: 3em;
  margin-right: 0.2em;
}
.heading-title {
  font-weight: 900;
  line-height: 1.4;
}

.heading.-brand01 {
  color: var(--color-base);
}
.heading.-brand01::after {
  content: "";
  display: block;
  width: 200%;
  height: 78%;
  position: absolute;
  right: 8%;
  bottom: 0;
  background: var(--color-brand01);
  transform: skewX(-20deg);
}

.heading.-accent01 {
}
.heading.-accent01::after {
  content: "";
  display: block;
  width: 200%;
  height: 78%;
  position: absolute;
  left: -4%;
  bottom: 0;
  background: var(--color-accent01);
  transform: skewX(-20deg);
}

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

  .heading {
  }
  .heading.-brand01::after {
    height: 85%;
    position: absolute;
    right: 8%;
  }
  .heading-title {
    line-height: 1.4;
  }
}

/***********
title
************/

.largeTitle {
  font-size: clamp(154%,5.5vw, 270%);
  font-weight: 900;
  text-align: center;
  padding: 0.7em 0;
  margin-bottom: 0.8em;
  line-height: 1.3;
  position: relative;
}
.largeTitle::before,
.largeTitle::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.3em;
  position: absolute;
  left: 0;
  background: var(--color-main);
  transform: skewX(-20deg);
}
.largeTitle::before{
  top: 0;
}
.largeTitle::after{
  bottom: 0;
}

.largeTitle-subTitle {
  display: block;
}

.largeTitle.-brand01::before,
.largeTitle.-brand01::after {
  background-color: var(--color-brand01);
}
.largeTitle.-primary01::before,
.largeTitle.-primary01::after {
  background-color: var(--color-primary01);
}



/***********
section01
************/

.section01 {
  padding-top: 6em;
  position: relative;
}
.section01::before {
  content: "";
  display: block;
  width: 830px;
  height: 100%;
  background: url(../../img/bg05.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: calc(100% - 28%);
  top: 0;
  pointer-events: none;
}
.section01::after {
  content: "";
  display: block;
  width: 500px;
  height: 550px;
  background: url(../../img/bg04.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(100% - 26%);
  top: -300px;
  pointer-events: none;
}
.section01-container {
  position: relative;
  z-index: 2;
  padding-bottom: 6em;
}
.section01-container::before {
  content: "";
  display: block;
  width: 224px;
  height: 452px;
  background: url(../../img/bg06.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: calc(100% - 14%);
  bottom: 60px;
  pointer-events: none;
}
.section01-container::after {
  content: "";
  display: block;
  width: 164px;
  height: 374px;
  background: url(../../img/bg07.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(100% - 10%);
  bottom: 0;
  pointer-events: none;
}



.section01-gallery {
  display: flex;
  justify-content: space-between;
}
.section01-gallery-img {
  width: 49.5%;
}

.section01-art {
  padding-top: 5em;
  text-align: center;
  position: relative;
  z-index: 3;
}

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

  .section01 {
    padding-top: 3em;
  }
  .section01::before {
    width: 400px;
    right: calc(100% - 22%);
  }
  .section01::after {
    width: 250px;
    height: 300px;
    left: calc(100% - 20%);
    top: -200px;
    pointer-events: none;
  }
  .section01-container {
    padding-bottom: 3em;
  }
  .section01-container::before {
    width: 140px;
    height: 256px;
    bottom: 20px;
    right: calc(100% - 18%);
  }
  .section01-container::after {
    width: 100px;
    height: 190px;
    left: calc(100% - 12%);
  }


  .section01-gallery {
  }
  .section01-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 85 / 100;
  }

  .section01-art {
    padding-top: 3em;
    max-width: 400px;
    margin: 0 auto;
  }

}


/***********
section02
************/

.section02 {
  padding-top: 6em;
  position: relative;
}
.section02::before {
  content: "";
  display: block;
  width: 830px;
  height: 100%;
  background: url(../../img/bg05.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: calc(100% - 14%);
  top: 0;
  pointer-events: none;
}
.section02::after {
  content: "";
  display: block;
  width: 500px;
  height: 550px;
  background: url(../../img/bg04.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: calc(100% - 18%);
  top: -300px;
  pointer-events: none;
}
.section02-container {
  position: relative;
  z-index: 2;
  padding-bottom: 10em;
}

.section02-environ {
}

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


  .section02 {
    padding-top: 3em;
    position: relative;
  }
  .section02::before {
    width: 400px;
    right: calc(100% - 14%);
  }
  .section02::after {
    width: 250px;
    height: 300px;
    right: calc(100% - 18%);
    top: -180px;
    pointer-events: none;
  }
  .section02-container {
    padding-bottom: 5em;
  }

}

/***********
section03
************/

.section03 {
  padding-top: 6em;
  position: relative;
}
.section03::before {
  content: "";
  display: block;
  width: 830px;
  height: 1686px;
  background: url(../../img/bg05.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(100% - 36%);
  top: -1200px;
  pointer-events: none;
}
.section03::after {
  content: "";
  display: block;
  width: 500px;
  height: 780px;
  background: url(../../img/bg04.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(100% - 27%);
  top: -300px;
  pointer-events: none;
}
.section03-container {
  position: relative;
  z-index: 2;
  padding-bottom: 6em;
}
.section03-container::before {
  content: "";
  display: block;
  width: 830px;
  height: 1686px;
  background: url(../../img/bg05.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: calc(100% - 18%);
  top: -6em;
  pointer-events: none;
}
.section03-container::after {
  content: "";
  display: block;
  width: 830px;
  height: 1686px;
  background: url(../../img/bg05.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(100% - 27%);
  top: -300px;
  pointer-events: none;
}

.section03-environ {
  margin-top: 7em;
  margin-bottom: 10em;
}

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

  .section03 {
    padding-top: 3em;
    position: relative;
  }
  .section03::before {
    width: 400px;
    height: 700px;
    position: absolute;
    right: auto;
    left: calc(100% - 55%);
    top: -500px;
  }
  .section03::after {
    width: 250px;
    height: 390px;
    left: calc(100% - 15%);
    top: -250px;
  }
  .section03-container {
    padding-bottom: 5em;
  }
  .section03-container::before {
    display: none;
  }
  .section03-container::after {
    display: none;
  }

  .section03-environ {
    margin-top: 4em;
    margin-bottom: 4em;
  }

}


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

.separate {
  display: flex;
}
.separate + .separate{
  padding-top: 1em;
}
.separate-visual {
  width: 51%;
  padding-top: 0.8em;
}
.separate-img {
}
.separate-inner {
  flex: 1;
}

.separate.-center {
  align-items: center;
}


.separate:not(.-reverse) .separate-img {
  margin-left: -26%;
}
.separate:not(.-reverse) .separate-inner {
  padding-left: 8%;
}

.separate.-reverse {
  flex-direction: row-reverse;
}
.separate.-reverse .separate-img{
  margin-right: -26%;
}
.separate.-reverse .separate-inner{
  padding-right: 2%;
}



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

  .separate {
  }
  .separate-visual {
    width: 48%;
    padding-top: 0;
  }
  .separate-img {
  }
  .separate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 90 / 100;
  }
  .section02 .separate-img img {
    object-position: 85% center;
  }


  .separate:not(.-reverse) .separate-img {
    margin-left: -4vw;
  }
  .separate:not(.-reverse) .separate-inner {
    padding-left: 5%;
  }

  .separate.-reverse {
  }
  .separate.-reverse .separate-img{
    margin-right: -4vw;
  }
  .separate.-reverse .separate-inner{
    padding-right: 2%;
  }

}

/***********
working
************/

.working {
  padding-top: 1em;
}
.working + .working {
  padding-top: 3em;
}
.working-heading {
  text-align: center;
  font-size: clamp(124%,5vw, 234%);
  font-weight: 900;
  position: relative;
  padding: 0.5em 0;
  line-height: 1.1;
}
.working-heading::before,
.working-heading::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  position: absolute;
  top: 0;
  background-color: var(--color-main);
}
.working-heading::before {
  left: 0;
  clip-path: polygon(0% 0%, 100% 0%,  0 100%);
}
.working-heading::after {
  right: 0;
  background-color: var(--color-accent01);
  clip-path: polygon(0% 0%, 100% 0%,  100% 100%);
}

.working-container {
  border: 2px solid var(--color-main);
  border-right: none;
  padding: min(4vw,3em);
  padding-right: 0;
}

.working-block {
  display: flex;
  align-items: center;
}
.working-block + .working-block {
  padding-top: 2em;
}
.working-visual {
  width: 51%;
}
.working-inner {
  flex: 1;
}

.working-img {
  position: relative;
}
.working-img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  color: var(--color-base);
  background-color: var(--color-brand01);
  padding: 0.4em 0;
  text-align: center;
  font-size: clamp(85%,2vw, 108%);
}

.working-block:not(.-reverse) .working-inner {
  padding-left: 4%;
}

.working-block.-reverse {
  flex-direction: row-reverse;
}
.working-block.-reverse .working-inner {
  padding-right: 2%;
}

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

  .working {
    padding-top: 1em;
  }
  .working + .working {
    padding-top: 2em;
  }
  .working-heading {
    font-feature-settings: "palt";
    padding: 0.6em 0;
  }

  .working-container {
  }

  .working-block {
    display: flex;
    align-items: center;
  }
  .working-block + .working-block {
    padding-top: 2em;
  }
  .working-visual {
    width: 42%;
  }
  .working-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  .working-inner {
    flex: 1;
  }

  .working-block:not(.-reverse) .working-inner {
    padding-left: 3%;
  }
  .working-block.-reverse .working-inner {
    padding-right: 1%;
  }
}


/***********
facility
************/

.facility {
  text-align: center;
  padding-top: 4em;
  padding-bottom: 4em;
}
.facility-heading {
  display: inline-block;
  font-size: clamp(100%,4.4vw, 170%);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.5em;
  position: relative;
}
.facility-heading::before,
.facility-heading::after {
  content: "";
  display: block;
  width: 2.5em;
  height: 3em;
  position: absolute;
  background: url(../../img/title_object02.png) no-repeat center top / 100% 100%;
  top: 50%;
  translate: 0 -45%;
}
.facility-heading::before {
  right: 100%;
  margin-right: 1em;
}
.facility-heading::after {
  left: 100%;
  margin-left: 1em;
  scale: -1 1;
}
.facility-img {
}

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

  .facility {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .facility-heading {
    margin-bottom: 0.6em;
  }
  .facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
  }
}

/***********
environ
************/

.environ {
  position: relative;
}
.environ::after {
  content: "";
  display: block;
  background: url(../../img/art_staff.png) no-repeat center center / 100% auto;
  width: clamp(110px,28vw, 220px);
  height: clamp(110px,28vw, 220px);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.environ-container {
  display: inline-block;
  background: url(../../img/title_bg02.png) no-repeat center center / 100% 100%;
  color: var(--color-base);
  font-size: clamp(100%,4vw, 170%);
  font-weight: 500;
  line-height: 1.7;
  padding: 2em 8em 2em 5em;
  text-align: left;
}
.environ-text {
}

.environ.-bg03 .environ-container {
  background-image: url(../../img/title_bg03.png) ;
  margin-right: 2em;
}

.environ:not(.-reverse)::after {
  right: 0;
}

.environ.-reverse {
  text-align: right;
}
.environ.-reverse::after {
  left: 5%
}
.environ.-reverse .environ-container {
  padding: 2em 5em 2em 8em;
}

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

  .environ {
  }
  .environ::after {
    width: clamp(110px,28vw, 220px);
    height: clamp(110px,28vw, 220px);
  }
  .environ-container {
    line-height: 1.5;
  }
  .environ-text {
  }

  .environ:not(.-reverse)::after {
    right: 0;
  }
  .environ:not(.-reverse) .environ-container {
    min-width: 80%;
    padding: 1.5em 6em 1.5em 5em;
    margin-left: -2em;
  }

  .environ.-bg03 .environ-container {
    margin-right: 0;
  }

  .environ.-reverse {
    text-align: left;
  }
  .environ.-reverse::after {
    left: 0;
  }
  .environ.-reverse .environ-container {
    margin-left: clamp(50px,20vw, 150px);
    padding: 1.5em 3em 1.5em 4em;
  }

}

/***********
gradData
************/

.gradData {
  background: url(../../img/bg08.png);
  padding-bottom: 2em;
  position: relative;
  z-index: 9;
}
.gradData-heading {
  text-align: center;
  translate: 0 -40%;
}
.gradData-img {
  text-align: center;
}
.gradData-img figcaption {
  text-align: left;
  margin-top: -1em;
  font-size: clamp(85%,2vw, 108%);
  font-weight: 500;
}

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

  .gradData {
    background-size: 750px auto;
    padding-bottom: 1em;
  }

}

/***********
intv
************/

.intv {
  position: relative;
  padding-bottom: 8em;
}
.intv::before {
  content: "";
  display: block;
  width: 830px;
  height: 100%;
  background: url(../../img/bg05.png) no-repeat 0 bottom / 100% auto;
  position: absolute;
  left: 88%;
  bottom: 0;
  pointer-events: none;
}
.intv-container {
  position: relative;
  z-index: 2;
}
.intv-heading {
  background-color: var(--color-main);
  color: var(--color-base);
  text-align: center;
  position: relative;
  font-size: clamp(154%,6vw, 308%);
  margin-bottom: 0.5em;
}
.intv-heading::after {
  content: "";
  display: block;
  width: 148px;
  height: 148px;
  background: url(../../img/bg09.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 3%;
  top: 0;
}
.intv-heading-title {
  font-feature-settings: "palt";
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.2em 0;
}


.intv-section {
  padding-top: 3em;
  position: relative;
}
.intv-section::after {
  content: "";
  display: block;
  width: 260px;
  height: 620px;
  background: url(../../img/bg10.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.intv-section + .intv-section {
  margin-top: 4em;
}
.intv-section-container {
  width: auto;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;

}


.intv-visual {
  margin-right: -50px;
}
.intv-header {
  position: relative;
  z-index: 2;
  margin-left: -60px;
  margin-bottom: 2em;
}

.intv-name {
  z-index: 3;
  margin-top: -7em;
  position: relative;
}
.intv-name-box {
  display: inline-block;
  color: var(--color-base);
  font-family: var(--font-family-serif);
  font-size: clamp(139%,6vw, 300%);
  font-weight: 600;
  position: relative;
  line-height: 1.2;
  text-align: center;
  padding: 0.4em 1.8em 0.5em;
}
.intv-name-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-main);
  transform: skewX(-25deg);
}
.intv-name-pos {
  position: relative;
  z-index: 2;
  font-size: 60%;
}
.intv-name-title {
  position: relative;
  z-index: 2;
}

.intv-lead {
  margin-top: -2em;
  z-index: 2;
  position: relative;
  margin-left: -50px;
}
.intv-lead-box {
  display: inline-block;
  color: var(--color-base);
  font-family: var(--font-family-serif);
  font-size: clamp(154%,5.5vw, 239%);
  font-weight: 600;
  position: relative;
  line-height: 1.3;
  padding: 1.2em 3.5em 0.6em;
}
.intv-lead-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-primary01);
  transform: skewX(-25deg);
}
.intv-lead-text {
  position: relative;
  z-index: 2;
}

.intv-more {
  padding-top: 2em;
  text-align: right;
  color: var(--color-primary01);
  font-size: clamp(108%,3vw, 124%);
}
.intv-more a{
  text-decoration: underline;
  color: var(--color-primary01);
}
.intv-more a:hover {
  text-decoration: none;
}

/*
detail
*/

.intv-detail {
  text-align: left;
  padding-top: 1em;
  padding-bottom: 2em;
}
.intv-title {
  font-size: clamp(139%,5vw, 239%);
  font-weight: 700;
  font-family: var(--font-family-serif);
  color: var(--color-primary01);
  border-left: 12px solid var(--color-primary01);
  padding: 0.2em 0 0.2em 0.6em;
  margin-bottom: 0.8em;
}
.intv-text{
  font-size: clamp(100%,3.8vw, 154%);
  font-weight: 500;
  line-height: 1.7;
}


/*
link
*/


.intv-link {
  text-align: center;
  margin-top: 2.5em;
}
.intv-link-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--color-main);
  font-size: clamp(154%,5vw, 200%);
  font-family: var(--font-family-gothic-en);
  letter-spacing: 0.05em;
  background-color: var(--color-base);
  width: 100%;
  height: 3em;
  transition: 0.2s;
  position: relative;
  cursor: pointer;
}
.intv-link-btn::before,
.intv-link-btn::after{
  content: "";
  display: block;
  width: 1.2em;
  height: 3px;
  margin-top: -1px;
  background-color: var(--color-main);
  position: absolute;
  right: 2em;
  top: 50%;
}
.intv-link-btn::after{
  transform: rotate(90deg);
}
.intv-link-btn.-close::before{
  transform: rotate(45deg);
}
.intv-link-btn.-close::after{
  transform: rotate(135deg);
}


body.is-pc .intv-link-btn:hover {
  background-color: var(--color-main);
  color: var(--color-base);
}
body.is-pc .intv-link-btn:hover::before,
body.is-pc .intv-link-btn:hover::after {
  background-color: var(--color-base);
}

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

  .intv {
  }
  .intv-container {
  }
  .intv-heading {
    text-align: left;
    margin-bottom: 0.5em;
    padding-left: 0.8em;
  }
  .intv-heading::after {
    width: 100px;
    height: 100px;
    right: 0;
  }


  .intv-section {
    padding-top: 3em;
  }
  .intv-section::after {
    width: 120px;
    height: 300px;
  }
  .intv-section + .intv-section {
    padding-top: 2em;
  }


  .intv-visual {
    padding-left: 4vw;
    margin-right: 0;
  }
  .intv-visual img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: 60% 0;
    aspect-ratio: 100 / 90;
  }
  .intv-header {
    position: relative;
    z-index: 2;
    margin-left: -20px;
    margin-bottom: 1.5em;
  }

  .intv-name {
    margin-top: -6em;
  }
  .intv-name-box {
    padding: 0.4em 1.8em 0.5em;
  }
  .intv-name-box::after {
    transform: skewX(-25deg);
  }

  .intv-lead {
    margin-top: -1.5em;
    margin-left: -15px;
  }
  .intv-lead-box {
    line-height: 1.3;
    padding: 1.2em 2.5em 0.6em;
  }
  .intv-lead-box::after {
    transform: skewX(-25deg);
  }
  .intv-lead-text {
    position: relative;
    z-index: 2;
  }

  /*
  detail
  */

  .intv-detail {
    text-align: left;
    padding: 3.2em 3vw;
  }
  .intv-title {
    border-left-width: 6px;
  }

  /*
  link
  */

  .intv-link {
    margin-top: 2em;
  }
  .intv-link-btn {
  }
  .intv-link-btn::before,
  .intv-link-btn::after{
    right: 1em;
  }

}

/***********
info
************/

.info {
  padding-top: 3em;
  position: relative;
  overflow: hidden;
}
.info::before {
  content: "";
  display: block;
  width: 250px;
  height: 452px;
  background: url(../../img/bg06.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: calc(100% - 16%);
  bottom: -80px;
  pointer-events: none;
}
.info::after {
  content: "";
  display: block;
  width: 250px;
  height: 500px;
  background: url(../../img/bg07.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(100% - 15%);
  bottom: 0;
  pointer-events: none;
}

.info-container {
  position: relative;
  z-index: 2;
  padding-bottom: 8em;
}
.info-art {
  padding-top: 3em;
  padding-bottom: 4em;
}

.info-section {
}
.info-section + .info-section {
  margin-top: 7em;
}
.info-section-container {
  display: flex;
  flex-direction: row-reverse;
}
.info-visual {
  width: 52%;
}
.info-img {
}
.info-inner {
  flex: 1;
}
.info-heading {
}

.info-lead {
  z-index: 2;
  position: relative;
  margin-left: -50px;
}
.info-lead-box {
  display: inline-block;
  color: var(--color-base);
  font-size: clamp(200%,8vw, 354%);
  font-weight: 900;
  position: relative;
  line-height: 1.2;
  padding: 0.4em 2em 0.6em 2em;
}
.info-lead-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-main);
  transform: skewX(-25deg);
  transform-origin: right top;
}
.info-lead-text {
  position: relative;
  z-index: 2;
  font-feature-settings: "palt";
  transform: skewX(-8deg);
}

.info-title {
  z-index: 2;
  position: relative;
  margin-left: -15px;
  margin-top: -1em;
}
.info-title-box {
  display: inline-block;
  font-size: clamp(139%,5vw, 214%);
  font-weight: 900;
  position: relative;
  line-height: 1.2;
  padding: 0.2em 1.5em 0.2em 2em;
}
.info-title-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-accent01);
  transform: skewX(-25deg);
  transform-origin: right top;
}
.info-title-text {
  position: relative;
  z-index: 2;
  font-feature-settings: "palt";
}

.info-block {
  padding: 2em 30px 0 50px;
}
.info-text {
  font-size: clamp(100%,3.8vw, 170%);
  font-weight: 500;
  line-height: 1.7;
}

.info-cv {
  padding-top: 3em;
  text-align: center;
}
.info-cv-btn {
  font-size: clamp(100%,5vw, 214%);
  white-space: nowrap;
  color: var(--color-base);
  text-decoration: none;
  font-weight: 700;
  border-radius: 0.4em;
  border: 2px solid var(--color-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3em;
  background: linear-gradient(to bottom, #e20000 50%, #d10000 50%, #9b0000 100%);
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.5), 0 0 0.4em rgba(0, 0, 0, 0.3) inset;
  line-height: 1;
  position: relative;
}
.info-cv-btn::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f138";
  margin-left: 0.2em;
  margin-right: -0.2em;
  scale: 0.8;
  vertical-align: middle;
  display: inline-block;
  translate: 0 0.05em;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
}
body.is-pc .info-cv-btn:hover {
  translate: 0.1em 0.1em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.5), 0 0 0.4em rgba(0, 0, 0, 0.3) inset;
}

/*
line
*/

.info-line {
  padding-top: 8em;
}
.info-line-link {
  text-align: center;
  padding-top: 3em;
}
.info-line-link a {
  display: inline-block;
}
body.is-pc .info-line-link a:hover {
  translate: 3px 3px;
}


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

  .info {
    padding-top: 2em;
  }
  .info::before {
    width: 140px;
    height: 222px;
    right: calc(100% - 20%);
    bottom: 20px;
  }
  .info::after {
    width: 120px;
    height: 200px;
    left: calc(100% - 20%);
    bottom: 0;
    pointer-events: none;
  }
  .info-container {
    padding-bottom: 4em;
  }
  .info-art {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .info-section {
  }
  .info-section + .info-section {
    margin-top: 4em;
  }
  .info-section-container {
    display: block;
    position: relative;
  }
  .info-visual {
    width: auto;
    padding: 40px 4vw 0;
  }
  .info-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 100 / 65;
  }
  .info-inner {
  }
  .info-heading {
    position: absolute;
    left: 0;
    top: 0;
  }

  .info-lead {
    z-index: 2;
    position: relative;
    margin-left: -50px;
  }
  .info-lead-box {
    padding: 0.3em 2em 0.5em 2.5em;
  }
  .info-lead-box::after {
    box-shadow: 5px 5px 0 var(--color-base);
  }

  .info-title {
    margin-top: -5px;
  }
  .info-title-box {
    padding: 0.3em 1.5em 0.3em 2.2em;
  }
  .info-title-box::after {
    box-shadow: 5px 5px 0 var(--color-base);
  }
  .info-title-text {
    position: relative;
    z-index: 2;
    font-feature-settings: "palt";
  }

  .info-block {
    padding: 1.5em 4vw 0 4vw;
  }
  .info-text {
    text-align: center;
  }

  .info-cv {
    padding-top: 1.5em;
  }

  /*
  line
  */

  .info-line {
    padding-top:4em;
  }
  .info-line-link {
    padding-top: 1.5em;
  }
  .info-line-link a {
    max-width: 200px;
  }

}

/***********
footer
************/

.footer {
  background: url(../../img/bg02.jpg);
  color: var(--color-base);
  text-align: center;
  padding-top: 4em;
  padding-bottom: 3em;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  display: block;
  width: 210px;
  height: 306px;
  background: url(../../img/bg11.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: calc(100% - 12%);
  top: 0;
  pointer-events: none;
  opacity: 0.9;
}
.footer::after {
  content: "";
  display: block;
  width: 210px;
  height: 306px;
  background: url(../../img/bg12.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(100% - 12%);
  bottom: 0;
  pointer-events: none;
  opacity: 0.9;
}
.footer-logo {
  width: clamp(200px,70vw, 520px);
  margin: 0 auto;
}
.footer-sns {
  display: flex;
  justify-content: center;
  padding-top: 2em;
}
.footer-sns li {
  padding: 0 10px;
}
body.is-pc .footer-sns a:hover {
  opacity: 0.8;
}
.footer-link {
  padding-top: 5em;
  font-weight: 500;
}
.footer-link a {
  display: inline-block;
  color: var(--color-base);
  text-decoration: none;
  border-bottom: 1px solid var(--color-base);
  font-size: clamp(116%,4vw, 154%);
  font-family: var(--font-family-serif);
  padding: 0.2em 0;
}
body.is-pc .footer-link a:hover {
  opacity: 0.8;
}
.footer-copyright {
  display: block;
  padding-top: 3em;
  font-size: clamp(100%,3vw, 124%);
}

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

  .footer {
    padding-top: 3em;
    padding-bottom: 2em;
  }
  .footer::before {
    width: 150px;
    height: 240px;
    right: calc(100% - 22%);
    top: -50px;
  }
  .footer::after {
    width: 150px;
    height: 215px;
    left: calc(100% - 15%);
  }
  .footer-logo {
  }
  .footer-sns {
    padding-top: 1em;
  }
  .footer-sns li {
    padding: 0 10px;
  }
  .footer-sns li img {
    max-height: 32px;
  }
  .footer-link {
    padding-top: 3em;
  }

}

/***********
inquiry
************/

.inquiry {
  background: url(../../img/bg02.jpg) repeat center center / cover;
  padding-bottom: 50px;
}

.inquiry-logo {
  width: clamp(200px,54vw, 410px);
  margin: 0 auto;
  padding: 30px 0 20px;
}

.inquiry-container {
  background-color: var(--color-base);
  padding: 2em 8% 3em;
}


.inquiry-heading {
  font-size: clamp(154%,6.5vw, 270%);
  font-weight: 600;
  text-align: center;
  background: url(../../img/title_object01.png) no-repeat center top / 3em auto;
  padding: 2em 1em 1em;
  line-height: 1.3;
}


.inquiry-copyright {
  display: block;
  padding-top: 3em;
  text-align: center;
  font-size: clamp(100%,3vw, 124%);
  color: var(--color-base);
}

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

  .inquiry {
    background-size: 750px auto;
  }

  .inquiry-logo {
    padding: 15px 0 10px;
  }

  .inquiry-container {
    padding: 2em 5% 2em;
  }

  .inquiry-heading {
    padding-bottom: 0.5em;
  }

}


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



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



/***********
status
************/

.is-hide {
  display: none;
}
.is-readerHide {
  clip: rect(1px, 1px, 1px, 1px);
}

.is-inlineBlock{
  display: inline-block;
}

.is-out{
  position: absolute;
  left: -9999999px;
}

.is-pc-hide {
  display: none;
}

.is-pc-inline ,
.pc-br {
  display: inline;
}

.is-sp-inline ,
.sp-br {
  display: none;
}

.is-pc-noevent {
  pointer-events: none;
}

.is-step > *{
  opacity: 0;
  transition: opacity 1.2s ease;
}
.is-step.is-show > *{
  opacity: 1;
}

.is-gothic {
  font-family: var(--font-family-gothic);
}

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

  .is-pc-hide {
    display: block;
  }

  .is-sp-hide {
    display: none;
  }

  .is-sp-inline ,
  .sp-br {
    display: inline;
  }

  .is-pc-inline ,
  .pc-br {
    display: none;
  }

  .is-pc-noevent {
    pointer-events: auto;
  }

  .is-spGothic {
    font-family: var(--font-family-gothic);
  }

}
