@charset "utf-8";

/* CSS Document */

/*
youtube比率対策
*/

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

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


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

.pageHeading {
  position: relative;
}

.pageHeading-wrapper {
  position: relative;
  margin: var(--header-height) 0 0 ;
  height: clamp(220px,20vw, 250px);
  border-radius:  var(--header-rounded);
  isolation: isolate;
  transform: translateZ(0);
  overflow: hidden;
  background-color: var(--color-base);
}


.pageHeading-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pageHeading-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient( 135deg, var(--color-brand01) 0%, var(--color-brand02) 100%);
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.pageHeading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.pageHeading-img.-backdrop::after {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.pageHeading-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 9;
}

.pageHeading-block {
}

.pageHeading-parent {
  display: inline-block;
  background-color: var(--color-base);
  font-size: clamp(124%,1vw, 154%);
  font-weight: 600;
  color: var(--color-main);
  border-radius: 10em;
  padding: 0.1em 1.5em;
  margin-bottom: 0.5em;
}
.pageHeading-title {
  font-size: clamp(300%,2vw, 500%);
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.3;
}
.pageHeading-subTitle {
  font-size: clamp(100%,1.2vw, 124%);
  font-weight: 500;
  color: var(--color-base);
  font-family: var(--font-family-gothic-en);
  line-height: 1.3;
  padding-top: 0.4em;
}

.pageHeading-block {
}


/*
object
*/

.pageHeading-object01 {
  width: clamp(300px,30vw, 400px);
  height: clamp(150px,15vw, 200px);
  background: url(../../img/object/mt02.png) no-repeat center bottom / 100% auto;
  position: absolute;
  right: 0;
  bottom: -100px;
  z-index: 9;
}
.pageHeading-object01-cloud01 {
  display: block;
  width: 6vw;
  height: 6vw;
  background: url(../../img/object/cloud01.png) no-repeat center bottom / 100% auto;
  position: absolute;
  left: 20%;
  bottom: calc(100% + 1vw);
  animation: anim-pageHeading-cloud 60s linear infinite -30s;
}
.pageHeading-object01-cloud02 {
  display: block;
  width: 10vw;
  height: 10vw;
  background: url(../../img/object/cloud02.png) no-repeat center bottom / 100% auto;
  position: absolute;
  left: 30%;
  bottom: calc(100% + 3vw);
  animation: anim-pageHeading-cloud 80s linear infinite -38s;
}
.pageHeading-object01-glider {
  display: block;
  width: 6vw;
  height: 6vw;
  position: absolute;
  left: 65%;
  bottom: 100%;
  animation: anim-pageHeading-glider01 5s ease-in-out infinite alternate-reverse;
}
.pageHeading-object01-glider span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../img/object/glider.png) no-repeat center bottom / 100%;
  animation: anim-pageHeading-glider02 12s ease-in-out infinite ;
}

@keyframes anim-pageHeading-cloud {
  0%  {
    translate: 20vw;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    translate: -20vw;
    opacity: 0;
  }
}
@keyframes anim-pageHeading-glider01 {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(20%);
  }
}
@keyframes anim-pageHeading-glider02 {
  0% {
    translate: 0 0;
    scale: 1 1;
  }
  50% {
    translate: -100% 0;
    scale: 1 1;
  }
  50.1% {
    scale: -1 1;
  }
  100% {
    translate: 0 0;
    scale: -1 1;
  }
}


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

  .pageHeading-wrapper {
    height: clamp(130px,35vw, 200px);
  }

  .pageHeading-container {
    padding-top: 1em;
  }

  .pageHeading-title {
    font-size: clamp(139%,6vw, 254%);
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .pageHeading-parent {
    background-color: var(--color-base);
    font-size: clamp(93%,3.5vw, 124%);
    padding: 0.1em 1em;
    margin-bottom: 0.5em;
  }

  /*
  object
  */

  .pageHeading-object01 {
    width: 180px;
    height: 80px;
    bottom: -50px;

  }
  .pageHeading-object01-cloud01 {
    width: 50px;
    height: 50px;
  }
  .pageHeading-object01-cloud02 {
    width: 60px;
    height: 60px;
    bottom: calc(100% + 20px);
  }
  .pageHeading-object01-glider {
    width: 60px;
    height: 60px;
    bottom: 80%;
  }


}

/***********
submitSection
************/

.submitSection {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  padding-top: 2em;
}
.submitSection-item {
  padding: 0 8px;
}

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

  .submitSection {
    display: block;
    padding-top: 2em;
    text-align: center;
  }
  .submitSection-item {
    padding: 10px 0px;
  }

}

/***********
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.-half {
  width: 47.5%;
}
.separate.-reverse {
  flex-direction: row-reverse;
}

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

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

}



/***********
fileLink
************/

.fileLink {
  font-size: 1.39rem;
  font-weight: 500;
}
.fileLink li {
  padding: 0.8em 0;
  border-bottom: 1px dashed var(--color-sub03);
}
.fileLink.-single li {
  padding: 0.2em 0;
  border-bottom: none;
}
.fileLink a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.5em;
}
.fileLink a:hover {
  text-decoration: underline;
}
.fileLink a{
  padding-left: 4.2em;
}
.fileLink a::after {
  content: "";
  display: block;
  width: 3.5em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.fileLink a[href*="pdf"]::after {
  background: url(../../img/icon/pdf.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="jpg"]::after,
.fileLink a[href*="jpeg"]::after {
  background: url(../../img/icon/jpg.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="png"]::after {
  background: url(../../img/icon/png.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="doc"]::after,
.fileLink a[href*="docx"]::after {
  background: url(../../img/icon/doc.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="xls"]::after,
.fileLink a[href*="xlsx"]::after {
  background: url(../../img/icon/xls.png) no-repeat left top / 100% auto;
}
.fileLink a[href*="zip"]::after {
  background: url(../../img/icon/zip.png) no-repeat left top / 100% auto;
}

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

  .fileLink {
    font-size: 1.16rem;
  }

}

/***********
note
************/

.note {
  font-size: clamp(100%,1.2vw, 116%);
  line-height: 1.7;
}
.note h2{
  font-size: 124%;
  border-left: 3px solid var(--color-brand01);
  margin-top: 2em;
  margin-bottom: 0.8em;
  padding-left: 0.8em;
}
.note h3{
  font-size: 108%;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.4em;
}


.note ul {
  margin-left: 1em;
}
.note ul li::before {
  content: "・";
  margin-left: -1em;
}

.note ol {
  list-style: none; /* ← ここでブラウザの自動数字を消す */
  counter-reset: item;
  padding-left: 1.5em;
}

.note ol > li {
  counter-increment: item;
  position: relative;
  padding-left: 1.5em;
}

.note ol > li::before {
  content: counter(item) ". ";
  position: absolute;
  left: 0;
}

.note ol ol {
  list-style: none;
  counter-reset: sub-counter;
  padding-top: 0.2em;
  padding-left: 1em;
}

.note ol ol > li {
  counter-increment: sub-counter;
  position: relative;
  padding-left: 1.5em;
}

.note ol ol > li::before {
  content: "(" counter(sub-counter) ") ";
  position: absolute;
  left: 0;
}



/***********
sitemapList
************/

.sitemapList {
  font-size: clamp(116%,1.4vw, 139%);
  padding: 0 3vw;
}
.sitemapList > li {
  padding-bottom: 0.5em;
}
.sitemapList > li > a{
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding: 0.2em 0 0.2em 1em;
  position: relative;
}
.sitemapList > li > a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-brand01);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0.25em;
  scale: 0.4;
  transform-origin: left;
}
.sitemapList a span{
  display: inline-block;
  padding-right: 1em;
}
.sitemapList a small{
  display: block;
  font-size: 77%;
  font-weight: 400;
  opacity: 0.8;
}

.sitemapList ul {
  padding: 0.2em 0 0.8em 1em;
  display: flex;
  flex-wrap: wrap;
}
.sitemapList ul li{
  position: relative;
  padding-left: 1.4em;
  padding-right: 1em;
}
.sitemapList ul li::before{
  content: "└";
  position: absolute;
  left: 0;
  top: 0.1em;
  opacity: 0.5;
}
.sitemapList ul li a{
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
  font-size: 93%;
}

body.is-pc .sitemapList a:hover {
  color: var(--color-brand01);
  text-decoration: underline;
}

/***********
 上部スクロールバー
************/
.top-scrollbar {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  border-top: 1px solid var(--color-sub02);
  border-left: 1px solid var(--color-sub02);
  border-right: 1px solid var(--color-sub02);
}
.top-scrollbar .inner {
  height: 1px;
}


/***********
langTab
************/

.langTab {
  display: flex;
  align-items: end;
  border-bottom: 2px solid var(--color-brand01);
  padding: 0 15px;
  margin-block-end: ;
}
.langTab li {
  display: inline-block;
  margin: 0 2px;
  font-size: clamp(116%,1.4vw, 124%);
  padding: 1em 1.5em;
  min-width: 8em;
  text-align: center;
  line-height: 1;
  background-color: #eee;
  cursor: pointer;
}
.langTab li.is-active {
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding-top: 1.2em;
}
body.is-pc .langTab li:not(.is-active):hover {
  background-color: #e0e0e0;
}


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

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

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