@charset "UTF-8";
/* =================================================================
		base setting
================================================================= */
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  background-color: #fff;
  color: #222;
  font-family: "游ゴシック体", Yu Gothic, YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior-y: none;
}

* {
  box-sizing: border-box;
}

img {
  height: auto;
}

ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul {
  text-align: left;
}
ul li {
  list-style: none;
}

ol {
  counter-reset: item;
  list-style-type: none;
  text-align: left;
}
ol li {
  padding-left: 1.3em;
  position: relative;
}
ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-1em);
}

figure {
  margin: 0;
}

table {
  border: none;
  border-spacing: 0;
}

th,
td {
  vertical-align: top;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.6;
}

em {
  font-weight: bold;
  font-style: normal;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

a {
  outline: none;
  color: #222;
  text-decoration: none;
}

/* =================================================================
		#Header
================================================================= */
.header {
  width: 100%;
  padding: 0 1.6vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  transition: background-color 0.3s;
}
.header:after {
  content: "";
  display: block;
  background: url(../img/waveline_header.svg) left bottom/100% auto no-repeat;
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s;
}
.scrolled .header:after {
  opacity: 1;
}

.header-inner {
  padding: 18px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: padding 0.3s;
}

.header-logo {
  width: 308px;
  line-height: 0;
  transition: width 0.3s;
}
@media screen and (max-width: 1400px) {
  .header-logo {
    width: 280px;
  }
}
.header-logo a {
  display: block;
}
.header-logo a img {
  width: 100%;
  transition: filter 0.2s;
}

.header-contact {
  position: absolute;
  right: 0;
  top: 26px;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 0.5em 1.8em;
  border-radius: 999px;
  border: 2px solid #222;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media print, screen and (min-width: 737px) {
  .scrolled .header-inner {
    padding: 20px 0 50px;
  }
  .scrolled .header-logo {
    width: 210px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 12px;
    height: 64px;
  }
  .header-inner,
  .header-logo,
  .header-logo a,
  .header-logo a img {
    height: 100%;
  }
  .header-inner {
    padding: 8px 0 16px;
  }
  .header-logo {
    width: auto;
  }
  .header-logo a img {
    width: auto;
  }
  .header-contact {
    position: absolute;
    right: 0;
    top: 26px;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 0.5em 1.8em;
    border-radius: 999px;
    border: 2px solid #222;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
  }
}
/* =================================================================
		#navigation
================================================================= */
.gnav {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.gnav li {
  margin-left: 24px;
  position: relative;
}
.gnav li a,
.gnav li span {
  display: block;
  cursor: pointer;
  padding: 8px 0;
  color: #222;
}
.gnav li a {
  transition: color 0.3s;
}
@media (hover: hover) {
  .gnav li a:hover {
    color: #747474;
  }
}
@media screen and (max-width: 1400px) {
  .gnav {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .gnav {
    display: none;
  }
}
.sub-menu {
  opacity: 0;
  font-size: 1.4rem;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 9000;
  transform: translate(-50%, -20px);
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
}
.sub-menu::before {
  content: "";
  display: block;
  width: calc(100% + 32px);
  height: calc(100% + 38px);
  background: #f3f3f3;
  position: absolute;
  top: -19px;
  left: -16px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: -1;
  mix-blend-mode: multiply;
}
.sub-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.sub-menu.open:before {
  transform: scaleY(1);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sub-menu li {
  padding: 0;
  margin: 0;
}
.sub-menu li a {
  display: block;
  height: auto;
  padding: 14px 28px;
  transition: background-color 0.4s;
}

/* =================================================================
		#header color setting
================================================================= */
.header-logo img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(20deg) brightness(104%) contrast(102%);
}

.gnav > li > a,
.gnav > li > span {
  color: #fff;
}
@media (hover: hover) {
  .gnav > li > a,
  .gnav > li > span {
    transition: 0.2s;
  }
  .gnav > li > a:hover,
  .gnav > li > span:hover {
    color: #fff;
  }
}

body.scrolled .header-logo img {
  filter: none;
}
body.scrolled .gnav li a,
body.scrolled .gnav li span {
  color: #222;
}
@media (hover: hover) {
  body.scrolled .gnav li a:hover,
  body.scrolled .gnav li span:hover {
    color: #878787;
  }
}

/* =================================================================
  		 #mobile menu button
  ================================================================= */
.btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 17px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  position: fixed;
  right: 12px;
  top: 22px;
  z-index: 9998;
  transition: 0.3s ease;
}
@media print, screen and (min-width: 769px) {
  .btn-menu {
    display: none;
  }
}
.btn-menu:focus {
  outline: none;
}
.btn-menu__text {
  margin-left: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.btn-menu__bars {
  display: block;
  position: relative;
  width: 36px;
  height: 2px;
  border-radius: 99px;
  background-color: #fff;
  transition: 0.3s;
}
.btn-menu__bars:before, .btn-menu__bars:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.3s;
}
.scrolled .btn-menu__bars {
  background-color: #464646;
}
.scrolled .btn-menu__bars:before, .scrolled .btn-menu__bars:after {
  background-color: #464646;
}
.btn-menu__bars:before {
  transform: translate(0, -8px);
}
.btn-menu__bars:after {
  transform: translate(0, 8px);
}
.menu-open .btn-menu .btn-menu__bars {
  background-color: transparent;
}
.menu-open .btn-menu .btn-menu__bars:before, .menu-open .btn-menu .btn-menu__bars:after {
  background-color: #464646;
}
.menu-open .btn-menu .btn-menu__bars:before {
  transform: rotate(35deg);
}
.menu-open .btn-menu .btn-menu__bars:after {
  transform: rotate(-35deg);
}

/* menu */
.spnav-menu {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 0.5em;
  z-index: 9991;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.spnav-cont {
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 56px 32px 40px;
  transform: translateY(20px);
}

.spnav-menu-list {
  height: 100%;
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 600;
  overflow-y: auto;
}
.spnav-menu-list > li {
  margin-bottom: 20px;
}
.spnav-menu-list > li a {
  display: block;
}

.gnav-parent .ttl {
  margin-bottom: 8px;
}

.spnav-submenu {
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 1.8rem;
}
.spnav-submenu li:not(:last-child) {
  margin-bottom: 10px;
}

/* .spnav-menu スライドアニメーション */
.menu-open .spnav-menu {
  visibility: visible;
  opacity: 1;
}
.menu-open .spnav-cont {
  opacity: 1;
  transform: translateY(0);
  transition: 0.3s 0.15s;
}

body.menu-open {
  overflow: hidden;
}

/* =================================================================
		#common
================================================================= */
.site-main {
  padding-bottom: 20vh;
}

@media screen and (max-width: 768px) {
  .site-main {
    padding-bottom: 80px;
  }
}
.pct,
.ico {
  line-height: 0;
}
.pct img,
.ico img {
  width: 100%;
  transition: transform 0.3s;
}

.btn-main {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 20rem;
  text-align: center;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  border: 1px solid #1d1d1d;
  background-color: #1d1d1d;
  margin: 0 auto;
  padding: 2rem 4rem;
  border-radius: 3rem;
  transition: background-color 0.2s, color 0.2s;
  position: relative;
}
.btn-main:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(96%) sepia(83%) saturate(2%) hue-rotate(141deg) brightness(114%) contrast(100%);
  transition: 0.3s;
}
@media (hover: hover) {
  .btn-main:hover {
    color: #222;
    background-color: #fff;
  }
  .btn-main:hover:after {
    filter: none;
  }
}
.btn-main.white {
  background-color: #fff;
  color: #1d1d1d;
}
@media (hover: hover) {
  .btn-main.white:hover {
    color: #fff;
    background-color: #1d1d1d;
  }
  .btn-main.white:hover:after {
    filter: none;
  }
}

@media screen and (max-width: 736px) {
  .btn-main {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
  }
}
.nav-previous {
  text-align: center;
}

.sec-lead {
  max-width: 1380px;
  margin: 0 auto 88px;
  font-size: 1.8rem;
  line-height: 2.4;
  font-weight: bold;
  padding: 0 40px;
}
@media print, screen and (min-width: 1500px) {
  .sec-lead {
    max-width: 1480px;
  }
}

@media screen and (max-width: 768px) {
  .sec-lead {
    margin-bottom: 64px;
    font-size: 1.6rem;
    line-height: 2;
    padding: 0 30px;
  }
}
.term {
  display: inline-block;
}

.list-common {
  font-size: 1.7rem;
  line-height: 1.6;
}
@media screen and (max-width: 736px) {
  .list-common {
    font-size: 1.6rem;
  }
}
.list-common li {
  margin-bottom: 0.8em;
  padding-left: 0.95em;
  position: relative;
}
.list-common li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.57em;
  border-radius: 50%;
  background-color: #123d83;
  width: 6px;
  height: 6px;
}
.list-common span {
  display: inline-block;
}

.list-normal {
  font-size: 1.7rem;
  line-height: 1.6;
}
@media screen and (max-width: 736px) {
  .list-normal {
    font-size: 1.6rem;
  }
}
.list-normal li {
  margin-bottom: 0.4em;
  padding-left: 12px;
  position: relative;
}
.list-normal li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.57em;
  border-radius: 50%;
  background-color: #4a4a4a;
  width: 4px;
  height: 4px;
}

.nopost {
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .nopost {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 736px) {
  .container {
    margin-top: 0;
  }
}
.slideup {
  opacity: 0;
  transform: translateY(100px);
}

.slideup-is-show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s 0.1s, transform 0.9s 0.2s, filter 0.9s 0.3s;
}

/* =================================================================
		#designing
================================================================= */
.txtbox {
  font-size: 1.7rem;
}
@media screen and (max-width: 736px) {
  .txtbox {
    font-size: 1.6rem;
  }
}
.txtbox p {
  margin-bottom: 0.9em;
}
.txtbox p:last-child {
  margin-bottom: 0;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 736px) {
  .flex {
    display: block;
  }
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.size-normal {
  font-size: 1.7rem;
}
@media screen and (max-width: 736px) {
  .size-normal {
    font-size: 1.6rem;
  }
}

.bold {
  font-weight: bold;
}

.wd-05 {
  width: 5%;
}

.wd-10 {
  width: 10%;
}

.wd-15 {
  width: 15%;
}

.wd-20 {
  width: 20%;
}

.wd-25 {
  width: 25%;
}

.wd-30 {
  width: 30%;
}

.wd-31 {
  width: 31%;
}

.wd-32 {
  width: 32%;
}

.wd-33 {
  width: 32%;
}

.wd-34 {
  width: 32%;
}

.wd-35 {
  width: 35%;
}

.wd-36 {
  width: 36%;
}

.wd-37 {
  width: 37%;
}

.wd-38 {
  width: 38%;
}

.wd-39 {
  width: 39%;
}

.wd-40 {
  width: 40%;
}

.wd-41 {
  width: 41%;
}

.wd-42 {
  width: 42%;
}

.wd-43 {
  width: 43%;
}

.wd-44 {
  width: 44%;
}

.wd-45 {
  width: 45%;
}

.wd-46 {
  width: 46%;
}

.wd-47 {
  width: 47%;
}

.wd-48 {
  width: 48%;
}

.wd-49 {
  width: 49%;
}

.wd-50 {
  width: 50%;
}

.wd-51 {
  width: 51%;
}

.wd-52 {
  width: 52%;
}

.wd-53 {
  width: 53%;
}

.wd-54 {
  width: 54%;
}

.wd-55 {
  width: 55%;
}

.wd-60 {
  width: 60%;
}

.wd-61 {
  width: 61%;
}

.wd-62 {
  width: 62%;
}

.wd-63 {
  width: 63%;
}

.wd-64 {
  width: 64%;
}

.wd-65 {
  width: 65%;
}

.wd-66 {
  width: 66%;
}

.wd-67 {
  width: 67%;
}

.wd-68 {
  width: 68%;
}

.wd-69 {
  width: 69%;
}

.wd-70 {
  width: 70%;
}

.wd-75 {
  width: 75%;
}

.wd-80 {
  width: 80%;
}

.wd-85 {
  width: 85%;
}

.wd-90 {
  width: 90%;
}

.wd-95 {
  width: 95%;
}

.wd-100 {
  width: 100%;
}

@media screen and (max-width: 736px) {
  .wd-05,
  .wd-10,
  .wd-15,
  .wd-20,
  .wd-25,
  .wd-30,
  .wd-31,
  .wd-32,
  .wd-33,
  .wd-34,
  .wd-35,
  .wd-36,
  .wd-37,
  .wd-38,
  .wd-39,
  .wd-40,
  .wd-41,
  .wd-42,
  .wd-43,
  .wd-44,
  .wd-45,
  .wd-46,
  .wd-47,
  .wd-48,
  .wd-49,
  .wd-50,
  .wd-51,
  .wd-52,
  .wd-53,
  .wd-54,
  .wd-55,
  .wd-60,
  .wd-61,
  .wd-62,
  .wd-63,
  .wd-64,
  .wd-65,
  .wd-66,
  .wd-67,
  .wd-68,
  .wd-69,
  .wd-70,
  .wd-75,
  .wd-80,
  .wd-85,
  .wd-90,
  .wd-95,
  .wd-100 {
    width: 100%;
  }
}
.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

.ta-center {
  text-align: center;
}

.size-l-1 {
  font-size: 1.8rem;
}

.mt-0 {
  margin-top: 20px !important;
}

.mt-10 {
  margin-top: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

@media screen and (max-width: 736px) {
  .size-l-1 {
    font-size: 1.7rem;
  }
  .ta-left-sp {
    text-align: left;
  }
  .ta-right-sp {
    text-align: right;
  }
  .ta-center-sp {
    text-align: center;
  }
  .mb-0-sp {
    margin-bottom: 0px !important;
  }
  .mb-10-sp {
    margin-bottom: 10px !important;
  }
  .mb-20-sp {
    margin-bottom: 20px !important;
  }
  .mb-30-sp {
    margin-bottom: 30px !important;
  }
  .mb-40-sp {
    margin-bottom: 40px !important;
  }
}
/* =================================================================
		#display control
================================================================= */
@media print, screen and (min-width: 737px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 736px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inline;
  }
}
/* =================================================================
		#back to top button
================================================================= */
/* =================================================================
  		 #mobile navigation
  ================================================================= */
/* mobile menu button */
.btn-menu-mb {
  width: 52px;
  height: 44px;
  padding: 13px 12px 0;
  position: fixed;
  right: 0;
  top: 8px;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s;
  z-index: 9992;
  display: none;
}

.nav-toggle {
  width: 100%;
  height: 24px;
}
.nav-toggle div {
  position: relative;
}
.nav-toggle span {
  display: block;
  background-color: #ffffff;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  transition: 0.35s ease-in-out;
}
.home .nav-toggle span {
  background-color: #383838;
}
.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 8px;
}
.nav-toggle span:nth-child(3) {
  top: 16px;
}
.scrolled .nav-toggle span, .single .nav-toggle span {
  background-color: #383838;
}

.scrolled .nav-toggle span {
  background-color: #2c2c2c;
}

.open .nav-toggle span {
  background-color: #ffffff;
  transition: 0.3s;
}
.open .nav-toggle span:nth-child(1) {
  top: 8px;
  transform: rotate(315deg);
}
.open .nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open .nav-toggle span:nth-child(3) {
  top: 8px;
  transform: rotate(-315deg);
}

/* menu */
/* =================================================================
		#recruit navigation button for mobile
================================================================= */
.btn-recruit-mb {
  padding: 4px 8px;
  border: 1px solid #fff;
  position: fixed;
  right: 60px;
  top: 10px;
  cursor: pointer;
  z-index: 9990;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  color: #fff;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.btn-recruit-mb p {
  font-size: 1.2rem;
  line-height: 1.2;
}
@media screen and (max-width: 736px) {
  .btn-recruit-mb {
    display: flex;
  }
}

.nav-recruit-toggle {
  width: 18px;
  height: 12px;
  margin-right: 10px;
}
.nav-recruit-toggle div {
  position: relative;
}
.nav-recruit-toggle span {
  display: block;
  background-color: #ffffff;
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  transition: 0.35s ease-in-out;
}
.nav-recruit-toggle span:nth-child(2) {
  top: 6px;
}
.nav-recruit-toggle span:nth-child(3) {
  top: 12px;
}
.scrolled .nav-recruit-toggle span, .single-interview .nav-recruit-toggle span {
  background-color: #2c2c2c;
}
.recnav-open .nav-recruit-toggle span {
  transition: 0.3s;
}
.recnav-open .nav-recruit-toggle span:nth-child(1) {
  top: 6px;
  transform: rotate(315deg);
}
.recnav-open .nav-recruit-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.recnav-open .nav-recruit-toggle span:nth-child(3) {
  top: 6px;
  transform: rotate(-315deg);
}

.scrolled .btn-recruit-mb,
.single-interview .btn-recruit-mb {
  color: #222;
  border-color: #3b3b3b;
  background-color: rgba(255, 255, 255, 0.7);
}

/* =================================================================
		#contact box
================================================================= */
.contact-box {
  max-width: 920px;
  margin: 22vh auto 0;
  padding: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
}
.contact-box .mark {
  width: 208px;
  display: block;
  margin-right: 80px;
}
.contact-box .ttl {
  line-height: 0;
  margin-bottom: 10px;
}
.contact-box .ttl img {
  width: 320px;
}
.contact-box .exp {
  font-size: 1.7rem;
  font-weight: bold;
  margin: -12px 0 32px;
}
.contact-box .btn-main {
  margin: 0 auto 0 0;
}

@media screen and (max-width: 768px) {
  .contact-box {
    margin: 80px auto 0;
    padding: 0 3rem;
    display: block;
  }
  .contact-box .mark {
    width: 22%;
    margin: 0 auto 16px;
  }
  .contact-box .cont {
    width: 85%;
    margin: 0 auto;
  }
  .contact-box .ttl {
    margin: 0 auto;
    text-align: center;
  }
  .contact-box .ttl img {
    width: 82%;
  }
  .contact-box .exp {
    font-size: 1.5rem;
    margin: 0 0 28px;
  }
  .contact-box .btn-main {
    margin: 0 auto;
  }
}
/* =================================================================
		#footer
================================================================= */
.footer {
  margin-top: 80px;
  background-color: #222;
  color: #fff;
  padding: 15vh 32px 4vh;
  position: relative;
}
.footer:before {
  content: "";
  display: block;
  background: url(../img/waveline.svg) left top/100% auto no-repeat;
  filter: invert(0%) sepia(8%) saturate(631%) hue-rotate(356deg) brightness(95%) contrast(73%);
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 98%;
  z-index: 2;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto 14vh;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .footer-inner {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    margin-top: 64px;
    padding: 40px 20px 48px;
  }
  .footer:before {
    background-size: auto 100%;
    height: 30px;
  }
  .footer-inner {
    margin: 0 0 48px;
    display: block;
  }
}
.footer-brand {
  margin-right: 48px;
}
.footer-brand .logo {
  width: 240px;
  margin-bottom: 12px;
  line-height: 0;
}
.footer-brand .logo img {
  width: 100%;
  filter: invert(96%) sepia(83%) saturate(2%) hue-rotate(141deg) brightness(114%) contrast(100%);
}
.footer-brand .tagline {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .footer-brand {
    margin-right: 0;
  }
  .footer-brand .logo {
    width: 200px;
    margin-bottom: 12px;
  }
  .footer-brand .tagline {
    font-size: 1.4rem;
  }
}
.footer-nav {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1280px) {
  .footer-nav {
    justify-content: flex-start;
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav {
    display: block;
    margin-top: 24px;
  }
}
.footer-nav-list {
  font-size: 1.5rem;
  line-height: 1.5;
}
.footer-nav-list:first-child {
  margin-left: 0;
}
.footer-nav-list li {
  margin-bottom: 16px;
}
.footer-nav-list li a {
  color: #fff;
}
@media (hover: hover) {
  .footer-nav-list li a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav-list {
    display: none;
  }
}
.sns-list {
  display: flex;
}
.sns-list li {
  margin-right: 12px;
}
.sns-list li a {
  width: 34px;
  display: block;
  border-radius: 50%;
  border: 1px solid #898989;
  aspect-ratio: 1;
  line-height: 0;
}
.sns-list li a img {
  width: 100%;
}
.sns-list li a.link-fb {
  padding: 8px;
}
.sns-list li a.link-x {
  padding: 9px;
}
.sns-list li a.link-instagram {
  padding: 8px;
}
.sns-list li a.link-youtube {
  padding: 8px;
}

.footer-sns-list {
  justify-content: flex-end;
}
.footer-sns-list li {
  margin: 0 0 0 12px;
}

.footer-nav-list,
.footer-sns-list {
  margin-left: 64px;
}

@media screen and (max-width: 768px) {
  .sns-list li a {
    width: 3.5em;
  }
  .footer-sns-list {
    justify-content: flex-start;
  }
  .footer-sns-list li {
    margin: 0 14px 0 0;
  }
  .footer-sns-list {
    margin-left: 0;
  }
}
.copyright {
  font-size: 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1.1rem;
  }
}
/* =================================================================
		#breadcrumbs
================================================================= */
.breadcrumbs {
  width: 100%;
  font-size: 1.15rem;
  list-style: none;
  box-sizing: border-box;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.breadcrumbs .inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs span {
  display: inline-block;
  margin: 0 4px;
}
.breadcrumbs span:first-child {
  margin-left: 0;
}
.breadcrumbs a {
  color: #868686;
  text-decoration: underline;
}

.home .breadcrumbs {
  display: none;
}

@media screen and (max-width: 736px) {
  .breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }
}
/* =================================================================
		#Share Buttons
================================================================= */
.share {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.share-list {
  display: flex;
  justify-content: center;
}
.share-list li {
  margin: 0 8px;
  border-radius: 50%;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .share-list li:hover {
    filter: brightness(112%);
  }
}
.share-list .facebook {
  background-color: #1877f2;
}
.share-list .tweet {
  background-color: #292929;
}
.share-list .line {
  background-color: #00c34d;
}
.share-list .copy {
  background-color: #5d5d5d;
}
.share-list .btn {
  display: block;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  line-height: 0;
  cursor: pointer;
}
.share-list img {
  width: 100%;
}

.share-ttl {
  font-size: 1.8rem;
  margin-right: 24px;
}

@media screen and (max-width: 768px) {
  .share {
    display: block;
    margin: 32px 0;
    padding: 24px 0;
  }
  .share-list {
    align-items: center;
  }
  .share-list li {
    margin: 0 8px;
  }
  .share-list .btn {
    width: 34px;
    height: 34px;
    padding: 8px;
  }
  .share-ttl {
    font-size: 1.6rem;
    margin: 0 0 8px;
    text-align: center;
  }
}
/* =================================================================
		#目次
================================================================= */
#toc_container {
  width: 100%;
  min-width: 100%;
  margin: 0 auto 48px;
  padding: 32px 40px;
}
#toc_container .toc_title {
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.7em;
}
@media screen and (max-width: 736px) {
  #toc_container .toc_title {
    font-size: 1.6rem;
  }
}
#toc_container .toc_title span,
#toc_container .toc_title a {
  letter-spacing: 0.08em;
  font-family: "游ゴシック体", Yu Gothic, YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
}
#toc_container .toc_title a {
  font-size: 1.5rem;
}
#toc_container li {
  margin-bottom: 0.3em;
}
#toc_container li a {
  text-decoration: underline;
  position: relative;
}
#toc_container li a:before {
  content: "";
  display: block;
  background: url(images/ico_arrow.svg) left top/100% auto no-repeat;
  width: 0.4em;
  height: 0.7em;
  position: absolute;
  left: calc(100% + 8px);
  transform: rotate(90deg);
  top: 0.25em;
  opacity: 0.7;
}
#toc_container li ul {
  margin-right: 0.4em;
  margin-bottom: 0.55em;
}

#toc_container.toc_transparent {
  border: 1px solid #ccc;
}

/* =================================================================
		#sub 下層用フォーマット
================================================================= */
@keyframes key-fadein {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.pageheader {
  margin: 0 auto 10vh;
}

.pageheader-cont {
  height: 77vh;
  max-height: 700px;
  margin-bottom: 52px;
}

.pageheader-pct {
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
}
.pageheader-pct:before, .pageheader-pct:after {
  content: "";
  display: block;
  position: absolute;
}
.pageheader-pct:before {
  width: 100%;
  height: 140px;
  background: rgb(11, 14, 28);
  background: linear-gradient(0deg, rgba(11, 14, 28, 0) 0%, rgba(0, 0, 0, 0.16) 100%);
  left: 0;
  top: 0;
  z-index: 1;
}
.pageheader-pct:after {
  background: url(../img/waveline.svg) left top/100% auto no-repeat;
  filter: invert(100%) sepia(94%) saturate(23%) hue-rotate(17deg) brightness(104%) contrast(107%);
  width: 100%;
  height: 34px;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.pageheader-pct img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: key-fadein 0.9s ease-out 0.5s 1 forwards;
}

@keyframes pageheader-en {
  0% {
    filter: invert(98%) sepia(0%) saturate(2391%) hue-rotate(44deg) brightness(113%) contrast(75%);
  }
  100% {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(287deg) brightness(113%) contrast(101%);
  }
}
.pageheader-ttl-en {
  line-height: 0;
  position: absolute;
  right: 82px;
  top: 53vh;
  z-index: 2;
  transition: top 0.3s;
}
@media print, screen and (min-height: 900px) {
  .pageheader-ttl-en {
    top: 500px;
  }
}
.pageheader-ttl-en img {
  width: auto;
  height: 140px;
  filter: invert(98%) sepia(0%) saturate(2391%) hue-rotate(44deg) brightness(113%) contrast(75%);
  animation: pageheader-en 0.9s ease-out 0.4s 1 forwards;
}

.pageheader-ttl-jp {
  max-width: 1380px;
  padding: 0 40px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  position: relative;
  top: -12px;
}
@media print, screen and (min-width: 1500px) {
  .pageheader-ttl-jp {
    max-width: 1480px;
  }
}

.pageheader-s .pageheader-cont {
  height: 55vh;
  max-height: 380px;
}
.pageheader-s .pageheader-pct {
  height: 55vh;
  max-height: 380px;
}
.pageheader-s .pageheader-ttl-en {
  top: 20vh;
}
.pageheader-s .pageheader-ttl-en img {
  height: 116px;
}

@media screen and (max-width: 736px) {
  .pageheader {
    margin-bottom: 64px;
  }
  .pageheader-cont {
    height: auto;
    margin-bottom: 32px;
    aspect-ratio: 1/0.6;
  }
  .pageheader-pct:before {
    height: 100px;
  }
  .pageheader-pct:after {
    background-size: auto 100%;
    height: 46px;
    bottom: -2px;
  }
  .pageheader-ttl-en {
    position: absolute;
    right: 16px;
    top: 20%;
  }
  .pageheader-ttl-en img {
    height: 7rem;
  }
  .pageheader-ttl-jp {
    font-size: 2.5rem;
    top: -12px;
    padding: 0 3rem;
  }
  .pageheader-s {
    margin-bottom: 56px;
  }
  .pageheader-s .pageheader-cont {
    height: auto;
  }
  .pageheader-s .pageheader-pct {
    height: auto;
    aspect-ratio: 1/0.55;
  }
  .pageheader-s .pageheader-ttl-en {
    top: 12%;
  }
  .pageheader-s .pageheader-ttl-en img {
    height: 6.4rem;
  }
}
.category-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  margin-left: 0.2em;
}

.pattern-bg {
  opacity: 0.1;
  position: absolute;
  z-index: -1;
}

.sec-s {
  max-width: 1060px;
  margin: 0 auto 88px;
  padding: 0 30px;
}

.sec-ss {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 30px;
}

@media screen and (max-width: 736px) {
  .sec-m,
  .sec-s {
    margin-bottom: 48px;
    padding: 0 3rem;
  }
  .sec-ss {
    margin-bottom: 40px;
    padding: 0 3rem;
  }
}
/* =================================================================
		#about
================================================================= */
.about-wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media print, screen and (min-width: 1500px) {
  .about-wrap {
    max-width: 1480px;
  }
}

.stack {
  margin-bottom: 12vh;
}

.txtbox {
  font-size: 1.7rem;
}

.greeting-wrap {
  position: relative;
}

.greeting-blk {
  width: 64%;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 2.2;
  margin-bottom: 2.5em;
  position: relative;
  z-index: 1;
}
.greeting-blk em {
  font-weight: 700;
}
.greeting-blk.mb-l {
  margin-bottom: 4.5em;
}

.about-mark-wrap {
  position: absolute;
  right: 7%;
  top: 0;
  width: 27.5%;
  height: 100%;
  z-index: 0;
}

@keyframes mark-anim-01 {
  0% {
    transform: rotate(-11deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
@keyframes mark-anim-02 {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.about-mark {
  width: 100%;
  aspect-ratio: 1;
  position: sticky;
  top: 120px;
}
.about-mark img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.about-mark.showed img:nth-child(1) {
  animation: 0.6s ease-out mark-anim-01 0.9s 1 forwards;
}
.about-mark.showed img:nth-child(2) {
  animation: 0.7s ease-out mark-anim-02 0.5s 1 forwards;
}

@media screen and (max-width: 768px) {
  .about-wrap {
    display: block;
    padding: 0 3rem;
  }
  .stack {
    margin-bottom: 80px;
  }
  .txtbox {
    font-size: 1.5rem;
  }
  .greeting-blk {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 2.5em;
  }
  .about-mark-wrap {
    position: absolute;
    right: auto;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 82%;
    opacity: 0.15;
    z-index: -1;
  }
  .about-mark {
    top: 64px;
  }
}
.about-heading {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .about-heading {
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
}
.about-service-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-service-content {
  order: 1;
  width: 50%;
}

.about-service-pct {
  order: 2;
  width: 39%;
}

.about-service-blc {
  margin-top: 48px;
  padding-left: 36px;
  position: relative;
}
.about-service-blc:before {
  content: "";
  display: block;
  background: url(../img/line_vertical.svg) left top/cover no-repeat;
  width: 9px;
  height: 100%;
  position: absolute;
  border-radius: 6px;
  left: 0;
  top: 0;
}
.about-service-blc .tagline {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}
.about-service-blc .heading {
  font-size: 2.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-bottom: 0.35em;
}
.about-service-blc p {
  font-size: 1.7rem;
}
.about-service-blc p a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .about-service-wrap {
    display: block;
  }
  .about-service-content {
    width: 100%;
  }
  .about-service-pct {
    display: block;
    width: 75%;
    margin: 0 auto 32px;
  }
  .about-service-blc {
    margin-top: 40px;
    padding-left: 24px;
  }
  .about-service-blc:before {
    width: 7px;
  }
  .about-service-blc .tagline {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 0.2em;
  }
  .about-service-blc .heading {
    font-size: 2.2rem;
  }
  .about-service-blc p {
    font-size: 1.5rem;
  }
}
.about-logo-wrap {
  margin-top: 56px;
}

.about-logo-pct {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 56px;
}

.about-logo-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about-logo-content .txtbox {
  width: 47%;
}

@media screen and (max-width: 768px) {
  .about-logo-wrap {
    margin-top: 32px;
  }
  .about-logo-pct {
    margin-bottom: 32px;
  }
  .about-logo-content {
    display: block;
  }
  .about-logo-content .txtbox {
    width: 100%;
    margin-bottom: 1.5em;
  }
}
.outline-tbl {
  font-size: 1.7rem;
}
.outline-tbl th,
.outline-tbl td {
  padding: 32px 0;
  border-bottom: 1px solid #ccc;
}
.outline-tbl th {
  width: 15%;
}
.outline-tbl td {
  width: 85%;
}
.outline-tbl a {
  text-decoration: underline;
}
.outline-tbl .history th,
.outline-tbl .history td {
  padding: 0 0 40px;
  border-bottom: none;
}
.outline-tbl .history th {
  width: 7.6em;
}
.outline-tbl .history td {
  width: calc(100% - 7.6em);
}

@media screen and (max-width: 768px) {
  .outline-tbl {
    font-size: 1.5rem;
  }
  .outline-tbl th,
  .outline-tbl td {
    padding: 1.3em 0;
  }
  .outline-tbl th {
    width: 5.5em;
  }
  .outline-tbl td {
    width: calc(100% - 5.5em);
  }
  .outline-tbl .history th,
  .outline-tbl .history td {
    display: block;
    width: 100%;
  }
  .outline-tbl .history th {
    padding-bottom: 0.2em;
  }
  .outline-tbl .history td {
    padding-bottom: 1em;
  }
}
/* =================================================================
		#service
================================================================= */
.service-wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media print, screen and (min-width: 1500px) {
  .service-wrap {
    max-width: 1480px;
  }
}
.service-wrap .pattern-bg {
  width: 372px;
  right: -1%;
  top: -238px;
}

@media screen and (max-width: 768px) {
  .service-wrap {
    padding: 0 3rem;
  }
  .service-wrap .pattern-bg {
    width: 60%;
    right: 1%;
    top: -260px;
  }
}
.project-heading {
  width: 100%;
  padding-left: 32px;
  margin-bottom: 48px;
  position: relative;
}
.project-heading:before {
  content: "";
  display: block;
  background: url(../img/line_vertical.svg) left top/cover no-repeat;
  width: 10px;
  height: 100%;
  position: absolute;
  border-radius: 6px;
  left: 0;
  top: 0;
}
.project-heading:not(:first-of-type) {
  margin-top: 100px;
}

.project-heading-lead {
  font-size: 1.9rem;
  line-height: 1.5;
}

.project-heading-ttl {
  font-size: 3.6rem;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.03em;
  margin-bottom: 0.5em;
}

.project-cat-exp {
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .project-heading {
    padding-left: 24px;
    margin-bottom: 32px;
  }
  .project-heading:before {
    width: 7px;
  }
  .project-heading:not(:first-of-type) {
    margin-top: 0;
  }
  .project-heading-lead {
    font-size: 1.5rem;
    margin-bottom: 0.2em;
  }
  .project-heading-ttl {
    font-size: 2.6rem;
  }
  .project-cat-exp {
    font-size: 1.6rem;
  }
}
.service-blc {
  width: calc(50% - 40px);
  margin-bottom: 100px;
  margin-right: 80px;
  display: flex;
  flex-direction: column;
}
.service-blc.withlnk .service-blc-ttl,
.service-blc.withlnk .service-blc-tagline {
  padding-right: 108px;
}

@media screen and (max-width: 768px) {
  .service-blc {
    width: 100%;
    margin-bottom: 80px;
    margin-right: 0;
  }
  .service-blc.withlnk .service-blc-ttl,
  .service-blc.withlnk .service-blc-tagline {
    padding-right: 0;
  }
}
.service-wrap .service-blc:nth-of-type(even) {
  margin-right: 0;
}

.service-blc-pct {
  width: 100%;
  aspect-ratio: 14/9;
  margin-bottom: 40px;
  overflow: hidden;
  line-height: 0;
}
.service-blc-pct img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .service-blc-pct {
    margin-bottom: 16px;
  }
}
.service-blc-cont {
  flex-grow: 1;
  position: relative;
}

.service-blc-ttl {
  font-size: 4rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin: -0.4em 0 0.6em;
}
@media screen and (max-width: 1280px) {
  .service-blc-ttl {
    font-size: 3.2rem;
  }
}

.service-blc-tagline {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 1280px) {
  .service-blc-tagline {
    font-size: 2rem;
  }
}

.service-blc-exp {
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .service-blc-ttl {
    font-size: 2.8rem;
    margin: 0 0 0.4em;
  }
  .service-blc-tagline {
    font-size: 1.7rem;
    margin-bottom: 1em;
  }
  .service-blc-exp {
    font-size: 1.5rem;
  }
}
.service-blc-link-circle {
  position: absolute;
  right: 0;
  top: 0;
}
.service-blc-link-circle a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92px;
  aspect-ratio: 1;
  color: #fff;
  position: relative;
}
.service-blc-link-circle a:before {
  content: "";
  display: block;
  background-color: #1a1a1a;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 0;
  transition: transform 0.3s;
}
.service-blc-link-circle a div {
  position: relative;
  z-index: 1;
}
.service-blc-link-circle a div p {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.service-blc-link-circle a div:after {
  content: "";
  display: block;
  background: url(../img/ico_arrow.svg) left top/100% auto no-repeat;
  width: 1.3em;
  aspect-ratio: 1.3/1;
  margin: 0 auto;
  filter: invert(100%) sepia(0%) saturate(7432%) hue-rotate(38deg) brightness(121%) contrast(115%);
}
@media (hover: hover) {
  .service-blc-link-circle a {
    transition: 0.2s;
  }
  .service-blc-link-circle a:hover:before {
    transform: scale(1.15);
    transition: transform 0.15s;
  }
}

@media screen and (max-width: 768px) {
  .service-blc-link-circle {
    position: static;
    margin-top: 24px;
  }
  .service-blc-link-circle a {
    display: block;
    width: 80%;
    aspect-ratio: auto;
    background-color: #1a1a1a;
    border-radius: 99px;
    margin: 0 auto;
  }
  .service-blc-link-circle a:before {
    content: none;
  }
  .service-blc-link-circle a div {
    padding: 1.4em 3em;
  }
  .service-blc-link-circle a div p {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .service-blc-link-circle a div:after {
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* =================================================================
		#join
================================================================= */
.join-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.join-wrap .pattern-bg {
  width: 320px;
  right: -1%;
  top: -140px;
}

@media screen and (max-width: 768px) {
  .join-wrap {
    padding: 0 3rem;
  }
  .join-wrap .pattern-bg {
    width: 45%;
    right: 1%;
    top: -90px;
  }
}
.join-blk {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 12vh;
}
.join-blk:nth-child(even) .join-blk-pct {
  order: 2;
}
.join-blk:nth-child(even) .join-blk-cont {
  order: 1;
}

.join-blk-pct {
  width: 34%;
  line-height: 0;
}
.join-blk-pct img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.join-blk-cont {
  width: 61%;
  margin-top: -12px;
}

.join-heading {
  margin-bottom: 24px;
  position: relative;
}
.join-heading .ttl-jp {
  font-size: 3.4rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.join-exp {
  font-size: 1.7rem;
}
.join-exp p {
  margin-bottom: 0.8em;
}

.join-blk-inversion .join-blk-pct {
  order: 2;
}
.join-blk-inversion .join-blk-cont {
  order: 1;
}

.join-blc-link {
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
}
.join-blc-link a {
  display: inline-block;
  line-height: 1.4;
  padding: 0.9em 2.4em 0.9em 1.6em;
  border: 2px solid #222;
  border-radius: 999px;
  position: relative;
}
.join-blc-link a:before {
  content: "";
  display: block;
  background: url(../img/ico_arrow.svg) left top/100% auto no-repeat;
  width: 1em;
  aspect-ratio: 1;
  position: absolute;
  right: 0.9em;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .join-blc-link a {
    transition: 0.2s;
  }
  .join-blc-link a:hover {
    color: #fff;
    background-color: #222;
  }
  .join-blc-link a:hover:before {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(156deg) brightness(106%) contrast(104%);
  }
}

@media screen and (max-width: 768px) {
  .join-blk {
    display: block;
    margin-bottom: 64px;
  }
  .join-blk-pct {
    width: 100%;
    margin-bottom: 18px;
  }
  .join-blk-cont {
    width: 100%;
    margin-top: 0;
  }
  .join-heading {
    margin-bottom: 18px;
  }
  .join-heading .ttl-jp {
    font-size: 2.4rem;
  }
  .join-exp {
    font-size: 1.5rem;
  }
  .join-blc-link {
    margin-top: 24px;
    font-size: 1.6rem;
    text-align: center;
  }
  .join-blc-link a {
    display: block;
    padding: 0.9em 2.4em 0.9em 1.6em;
  }
}
.join-project {
  display: flex;
  align-items: center;
  padding-left: 30px;
  margin-top: 32px;
  position: relative;
}
.join-project:before {
  content: "";
  display: block;
  background: url(../img/line_vertical.svg) left top/cover no-repeat;
  width: 7px;
  height: 100%;
  position: absolute;
  border-radius: 6px;
  left: 0;
  top: 0;
}
.join-project .ttl {
  font-weight: bold;
  font-size: 2em;
  margin-right: 40px;
  margin-bottom: 0.2em;
}
.join-project ul {
  font-size: 1.7rem;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.join-project ul li {
  margin-right: 32px;
}
.join-project ul li a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .join-project {
    display: block;
    padding-left: 22px;
    margin-top: 24px;
  }
  .join-project:before {
    width: 5px;
    border-radius: 6px;
  }
  .join-project .ttl {
    font-size: 1.8em;
  }
  .join-project ul {
    font-size: 1.6rem;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
  }
  .join-project ul li {
    margin-right: 32px;
  }
}
/* =================================================================
		#Post 共通
================================================================= */
.tax-ttl {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .tax-ttl {
    font-size: 1.7rem;
    margin-bottom: 32px;
  }
}
/* =================================================================
		#event
================================================================= */
.event-archive-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
}
@media print, screen and (min-width: 1500px) {
  .event-archive-wrap {
    max-width: 1480px;
  }
}

.event-archive-main {
  flex: 1;
  order: 2;
}

.event-list-item {
  display: flex;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .event-list-item {
    width: calc(50% - 16px);
    margin-bottom: 32px;
  }
  .event-list-item:nth-child(odd) {
    margin-right: 32px;
  }
}
.event-list-item a {
  display: flex;
}
.event-list-item a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.event-list-item a[target=_blank] .ttl span:after {
  content: "";
  display: inline-block;
  background: url(../img/ico_external.svg) left top/100% auto no-repeat;
  width: 12px;
  aspect-ratio: 1;
  margin-left: 0.5em;
}
.event-list-item .pct {
  width: 35%;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1.5/1;
  margin-right: 32px;
}
.event-list-item .pct img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .event-list-item .pct img {
    transition: 0.2s;
  }
  .event-list-item .pct img:hover {
    transform: scale(1.1);
  }
}
.event-list-item .cont {
  flex: 1;
}
.event-list-item .cat {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.event-list-item .ttl {
  font-size: 2rem;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.event-list-item .meta {
  line-height: 1;
  position: absolute;
  right: 28px;
  bottom: 28px;
  text-align: right;
}
.event-list-item .term {
  font-size: 1.6rem;
  margin-bottom: 0.8em;
}
.event-list-item .term .day {
  font-size: 0.7em;
}
.event-list-item .venue {
  font-size: 1.4rem;
}

/* =================================================================
		#event detail
================================================================= */
.event-head-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}
.event-head-info .term {
  font-size: 2rem;
  font-family: "EB Garamond", "游ゴシック体", Yu Gothic, YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
}
.event-head-info .term .day {
  font-size: 0.65em;
}
.event-head-info .venue {
  font-size: 1.4rem;
}

/* =================================================================
		#blog関連レイアウト
================================================================= */
.blog-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 1500px) {
  .blog-wrap {
    max-width: 1480px;
  }
}

.blog-single {
  margin-top: -40px;
}

.blog-main {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .blog-wrap {
    padding: 0 30px;
    display: block;
  }
  .blog-single {
    margin-top: -64px;
  }
  .blog-main {
    margin-bottom: 48px;
  }
}
@media print, screen and (min-width: 769px) {
  .blog-side {
    margin-left: 80px;
    position: sticky;
    top: 120px;
    max-width: 240px;
    min-width: 240px;
  }
}

.side-sec {
  padding-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 40px;
}
.side-sec:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.side-heading {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.side-list {
  display: flex;
  flex-wrap: wrap;
}
.side-list li {
  margin: 0 12px 12px 0;
}
.side-list li a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.7em 1.1em;
  border-radius: 100vmax;
  border: 1px solid #cbcbcb;
  background-color: #fff;
  transition: 0.2s;
}
@media (hover: hover) {
  .side-list li a:hover {
    color: #fff;
    background-color: #383838;
    border-color: #383838;
  }
}

@media screen and (max-width: 768px) {
  .side-sec {
    padding-bottom: 26px;
    margin-bottom: 26px;
  }
  .side-heading {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
}
.post-side-list {
  font-size: 1.6rem;
  line-height: 1.4;
}
.post-side-list li {
  margin-bottom: 1.4em;
}

.post-list {
  display: flex;
  flex-wrap: wrap;
}

.blog-list-item {
  width: 22%;
  margin-right: 4%;
  margin-bottom: calc(2vw + 18px);
  position: relative;
}
.blog-list-item:nth-child(4n) {
  margin-right: 0;
}
.blog-list-item .pct {
  margin-bottom: 14px;
  overflow: hidden;
  aspect-ratio: 1;
}
.blog-list-item .pct img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .blog-list-item .pct img {
    transition: 0.2s;
  }
  .blog-list-item .pct img:hover {
    transform: scale(1.1);
  }
}
.blog-list-item .cat {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 13px;
  line-height: 1.4;
  padding: 0.3em 0.7em;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
.blog-list-item .date {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.2em;
}
.blog-list-item .ttl {
  font-size: 1.7rem;
  line-height: 1.5;
}

.blog-related {
  margin-top: 8vh;
  padding: 8vh 30px;
  background-color: #ebebeb;
}
.blog-related .post-list {
  max-width: 1400px;
  margin: 0 auto;
}
@media print, screen and (min-width: 769px) {
  .blog-related .knowledge-list-item {
    width: 22.5%;
    margin-right: 3.33333%;
    margin-bottom: 0;
  }
  .blog-related .knowledge-list-item:nth-child(3n) {
    margin-right: 3.33333%;
  }
  .blog-related .knowledge-list-item:nth-child(4) {
    margin-right: 0;
  }
}

.project-list-item {
  width: 22%;
  margin-right: 4%;
  margin-bottom: calc(2vw + 18px);
  position: relative;
}
.project-list-item:nth-child(4n) {
  margin-right: 0;
}
.project-list-item .pct {
  margin-bottom: 14px;
  overflow: hidden;
  aspect-ratio: 1;
}
.project-list-item .pct img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .project-list-item .pct img {
    transition: 0.2s;
  }
  .project-list-item .pct img:hover {
    transform: scale(1.1);
  }
}
.project-list-item .cat {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 13px;
  line-height: 1.4;
  padding: 0.3em 0.7em;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
.project-list-item .program {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0.4em;
}
.project-list-item .date {
  font-size: 1.5rem;
}
.project-list-item .ttl {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.3em;
}

.info-list {
  width: 100%;
}

.info-list-item {
  width: 100%;
  padding-bottom: 32px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 32px;
  position: relative;
}
.info-list-item header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.info-list-item .date {
  font-size: 1.5rem;
  margin-right: 14px;
}
.info-list-item .cat {
  font-size: 1.3rem;
  line-height: 1.33333;
  padding: 0.3em 0.9em;
  background-color: #f2f2f2;
  border-radius: 999px;
}
.info-list-item .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (hover: hover) {
  .info-list-item .ttl a {
    transition: 0.2s;
  }
  .info-list-item .ttl a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 768px) {
  .info-list-item {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .info-list-item header {
    margin-bottom: 10px;
  }
  .info-list-item .date {
    font-size: 1.4rem;
  }
  .info-list-item .cat {
    font-size: 1.2rem;
  }
  .info-list-item .ttl {
    font-size: 1.6rem;
  }
}
/* =================================================================
		#blog detail
================================================================= */
.blog-head {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.blog-head-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (hover: hover) {
  .blog-head-meta a:hover {
    text-decoration: underline;
  }
}
.blog-head-meta .category {
  font-size: 1.7rem;
  line-height: 1.4;
}
.blog-head-meta .category a {
  background-color: #ededed;
  padding: 0.4em 1.3em;
  border-radius: 999px;
}

.blog-sgl-ttl {
  font-size: 4rem;
  letter-spacing: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  margin-bottom: 24px;
}

.blog-tag {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .blog-head {
    margin-bottom: 32px;
  }
  .blog-head-meta {
    margin-bottom: 16px;
  }
  .blog-head-meta .category {
    font-size: 1.4rem;
  }
  .blog-head-meta .category a {
    padding: 0.4em 1.3em;
  }
  .blog-sgl-ttl {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }
  .blog-tag {
    font-size: 1.4rem;
  }
}
.blog-author {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.blog-author .pct {
  width: 70px;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 24px;
}
.blog-author .cont {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.blog-author .cont .name {
  font-size: 1.8rem;
  font-weight: bold;
}
.blog-author .cont .position {
  font-size: 1.4rem;
}
.blog-author .date {
  width: 30%;
  font-size: 1.4rem;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .blog-author {
    margin-bottom: 40px;
  }
  .blog-author .pct {
    width: 45px;
    margin-right: 18px;
  }
  .blog-author .cont .name {
    font-size: 1.6rem;
  }
  .blog-author .cont .position {
    font-size: 1.3rem;
  }
  .blog-author .date {
    font-size: 1.2rem;
  }
}
/* =================================================================
		#pagenavi
================================================================= */
.wp-pagenavi {
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border: none !important;
  padding: 0;
  margin: 0 16px 0 0 !important;
  width: 2.2em;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .wp-pagenavi a.page,
  .wp-pagenavi span.page {
    transition: background-color 0.2s;
  }
  .wp-pagenavi a.page:hover,
  .wp-pagenavi span.page:hover {
    background-color: #e8e8e8;
  }
}
.wp-pagenavi .pages {
  width: auto;
  margin-right: 32px;
}
.wp-pagenavi .current {
  background-color: #797979;
  color: #fff;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi {
    font-size: 1.6rem;
    margin-top: 32px;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    margin-right: 12px !important;
  }
  .wp-pagenavi .pages {
    margin-right: 24px;
  }
}
/* =================================================================
		#WordPress Popular Posts
================================================================= */
.wpp-list li {
  padding-left: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
}
.wpp-list li:before {
  content: counter(item);
  font-size: 2.5rem;
  line-height: 1;
  top: 0;
  transform: none;
}
.wpp-list li a:has(> img) {
  display: block;
  width: 70px;
  margin-right: 20px;
}
.wpp-list li a:has(> img) img {
  width: 100%;
}
.wpp-list li .ttl {
  flex: 1;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}

.wpp-no-data {
  font-size: 1.5rem;
  color: #848484;
}

/* =================================================================
		#post block
================================================================= */
.knowledge-list-item {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .knowledge-list-item {
    width: 31.5%;
    margin-right: 2.75%;
    margin-bottom: calc(2vw + 18px);
  }
  .knowledge-list-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (hover: hover) {
  .knowledge-list-item:hover > .pct img {
    transform: scale(1.1);
  }
}
.knowledge-list-item a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.knowledge-list-item > .pct {
  overflow: hidden;
  aspect-ratio: 3/2;
  line-height: 0;
  margin-bottom: 18px;
}
.knowledge-list-item > .pct img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.2s;
}
.knowledge-list-item .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.knowledge-list-item .cat {
  font-size: 1.4rem;
  line-height: 1.4;
}
.knowledge-list-item .author {
  display: flex;
  align-items: center;
}
.knowledge-list-item .author .pct {
  width: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  margin-right: 10px;
}
.knowledge-list-item .author .pct img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.knowledge-list-item .author .name {
  font-size: 1.3rem;
}
.knowledge-list-item .ttl {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.knowledge-list-item .date {
  font-size: 1.3rem;
  color: #5c5c5c;
}
.knowledge-list-item.external .ttl:after {
  content: "";
  display: inline-block;
  background: url(../img/ico_external.svg) left top/100% auto no-repeat;
  width: 12px;
  aspect-ratio: 1;
  margin-left: 0.5em;
}

@media screen and (max-width: 768px) {
  .knowledge-list-item {
    margin: 0 auto 56px;
  }
}
/* =================================================================
		#メンバー一覧
================================================================= */
.member-lead {
  position: relative;
}
.member-lead .pattern-bg {
  width: 372px;
  right: -1%;
  top: -238px;
}

@media screen and (max-width: 768px) {
  .member-lead .pattern-bg {
    width: 55%;
    right: 1%;
    top: -50px;
  }
}
.author-list {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.author-item {
  width: 18%;
  margin-right: 2.5%;
  margin-bottom: 56px;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .author-item:nth-child(5n) {
    margin-right: 0;
  }
}
.author-item:hover .theme {
  opacity: 1;
  bottom: 96%;
}
.author-item .pct {
  width: 80%;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
}
.author-item .pct.showed {
  transform: scale(1);
  opacity: 1;
}
.author-item:nth-child(4n) .pct {
  transition-delay: 0.3s;
}
.author-item:nth-child(5n) .pct {
  transition-delay: 0.15s;
}
.author-item .cont {
  text-align: center;
}
.author-item .name {
  font-size: 2rem;
  margin-bottom: 0.1em;
}
.author-item .name a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.author-item .position {
  font-size: 1.4rem;
  color: #666;
}
.author-item .theme {
  width: 15em;
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 0.75em 1.1em;
  border-radius: 6px;
  border: 2px solid #272727;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 91%;
  transform: translateX(-50%);
  transition: 0.3s;
  opacity: 0;
}
.author-item .theme:after, .author-item .theme:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
}
.author-item .theme:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 7px;
  border-right-width: 7px;
  margin-left: -7px;
  border-top-color: #ffffff;
}
.author-item .theme:before {
  border-color: rgba(39, 39, 39, 0);
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-width: 9px;
  border-right-width: 9px;
  margin-left: -9px;
  margin-top: 2px;
  border-top-color: #272727;
}

@media screen and (max-width: 768px) {
  .author-list {
    margin: 40px auto;
    padding: 0 12px;
  }
  .author-item {
    width: 48%;
    margin: 0 1% 40px;
  }
  .author-item .pct {
    width: 67%;
    margin-bottom: 12px;
  }
  .author-item .name {
    font-size: 1.7rem;
  }
  .author-item .position {
    font-size: 1.4rem;
  }
  .author-item .theme {
    display: none;
  }
}
/* =================================================================
		#メンバー詳細
================================================================= */
.member-cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  aspect-ratio: 3/1;
  position: relative;
  z-index: 0;
  margin-bottom: 56px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.member-cover:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.member-cover:after {
  content: "";
  display: block;
  background: url(../img/waveline.svg) left top/100% auto no-repeat;
  filter: invert(100%) sepia(94%) saturate(23%) hue-rotate(17deg) brightness(104%) contrast(107%);
  width: 100%;
  position: absolute;
  height: 34px;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.member-theme {
  max-width: 1000px;
  font-weight: bold;
  font-size: 4.2rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
  margin-top: 1.8em;
}

@media screen and (max-width: 768px) {
  .member-cover {
    aspect-ratio: 1/0.6;
    margin-bottom: 24px;
    padding: 56px 16px;
  }
  .member-cover:after {
    background-size: auto 100%;
    height: 46px;
    bottom: -2px;
  }
  .member-theme {
    font-size: 2.5rem;
    margin-top: 0;
  }
}
.member-detail {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.member-first {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.member-cont {
  flex: 1;
}

.member-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .member-detail {
    margin-bottom: 64px;
    padding: 0 30px;
  }
  .member-first {
    display: block;
  }
  .member-profile {
    display: block;
  }
}
.member-sns {
  display: flex;
  justify-content: flex-end;
}
.member-sns li {
  margin-left: 12px;
}
.member-sns .facebook {
  background-color: #1877f2;
}
.member-sns .tweet {
  background-color: #292929;
}
.member-sns .line {
  background-color: #00c34d;
}
.member-sns .copy {
  background-color: #5d5d5d;
}
.member-sns .btn {
  display: block;
  width: 36px;
  height: 36px;
  background-color: #505050;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .member-sns .btn:hover {
    background-color: #6a6a6a;
  }
}
.member-sns img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .member-sns {
    justify-content: center;
  }
  .member-sns li {
    margin: 0 6px;
  }
  .member-sns .btn {
    width: 32px;
    height: 32px;
    padding: 8px;
  }
}
.member-name {
  font-size: 4.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-right: 24px;
}

.member-position {
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .member-profile-cont {
    display: block;
    text-align: center;
    margin-bottom: 16px;
  }
  .member-name {
    font-size: 2.8rem;
    margin-right: 0;
  }
  .member-position {
    font-size: 1.5rem;
  }
}
.member-challenge {
  margin-top: 64px;
}

.member-challenge-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.member-challenge-ttl .txt-en {
  display: block;
  width: 190px;
  margin-right: 24px;
}
.member-challenge-ttl .txt-jp {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.member-challenge-txt {
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .member-challenge {
    margin: 48px 0;
  }
  .member-challenge-ttl {
    display: block;
    margin-bottom: 20px;
  }
  .member-challenge-ttl .txt-en {
    width: 19rem;
    margin: 0 auto 6px;
  }
  .member-challenge-ttl .txt-jp {
    text-align: center;
  }
  .member-challenge-txt {
    font-size: 1.6rem;
  }
}
.member-pct {
  max-width: 300px;
  margin-right: 80px;
  line-height: 0;
  overflow: hidden;
  border-radius: 50%;
}
.member-pct img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .member-pct {
    width: 64%;
    margin: 0 auto 18px;
  }
}
.member-texts-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}

.member-back,
.member-selfintroduction {
  font-size: 1.7rem;
  width: 47%;
}
.member-back-ttl,
.member-selfintroduction-ttl {
  font-size: 2rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-bottom: 16px;
  padding-bottom: 14px;
  background: url(../img/line_dashed.png) left bottom/8.8em auto no-repeat;
}

@media screen and (max-width: 768px) {
  .member-texts-wrap {
    display: block;
    margin-top: 0;
  }
  .member-back,
  .member-selfintroduction {
    width: 100%;
    font-size: 1.5rem;
    margin-top: 32px;
  }
  .member-back-ttl,
  .member-selfintroduction-ttl {
    font-size: 1.8rem;
    padding-bottom: 0.7em;
    background-position: center bottom;
    background-size: 8.8em auto;
    text-align: center;
    margin: 0 auto 0.9em;
  }
}
.member-posts {
  margin-top: 64px;
}
@media print, screen and (min-width: 769px) {
  .member-posts .knowledge-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.member-posts-ttl {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.member-posts-ttl .ttl {
  display: inline-block;
  font-size: 2.5rem;
  background-color: #fff;
  padding: 0 0.8em;
  position: relative;
  z-index: 1;
}
.member-posts-ttl:before {
  content: "";
  display: block;
  background-color: #484848;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 49%;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .member-posts {
    margin-top: 56px;
  }
  .member-posts-ttl {
    margin-bottom: 24px;
  }
  .member-posts-ttl .ttl {
    font-size: 1.8rem;
  }
}
/* =================================================================
		#pjt
================================================================= */
.pjt-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .pjt-wrap {
    padding: 0 16px;
  }
}

.pjt-title {
  font-size: 4.2rem;
  line-height: 1.7;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .pjt-title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
  .pjt-title br {
    display: none;
  }
}

.pjt-summary {
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .pjt-summary {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}

.pjtpage-related-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .pjtpage-related-list {
    flex-direction: column;
    gap: 24px;
  }
}

.pjtpage-related-posts {
  max-width: 1180px;
  margin: 80px auto 0;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .pjtpage-related-posts {
    margin: 40px auto 0;
    padding: 0 16px;
  }
}

.pjtpage-related-ttl {
  font-size: 2.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .pjtpage-related-ttl {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.outline-item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .outline-item {
    flex-direction: column;
    border-bottom: 1px solid #ccc;
  }
}
.outline-item dt,
.outline-item dd {
  padding: 32px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .outline-item dt,
  .outline-item dd {
    border-bottom: none;
  }
}
.outline-item dt {
  width: 15%;
  font-weight: bold;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .outline-item dt {
    width: 100%;
    padding: 22px 0 6px;
  }
}
.outline-item dd {
  width: 82%;
}
@media screen and (max-width: 768px) {
  .outline-item dd {
    width: 100%;
    padding: 0 0 22px;
  }
}

/* =================================================================
		#404 Not found
================================================================= */
.error404 .header {
  display: none;
}

.notfound {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding: 30px;
}
.notfound .inner {
  text-align: center;
  position: relative;
}
.notfound p {
  font-size: 1.7rem;
  margin-bottom: 48px;
}
.notfound:before {
  content: "404";
  width: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  font-size: 45rem;
  line-height: 1.333;
  color: #e9e9e9;
  z-index: -1;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .notfound:before {
    font-size: 25vw;
  }
}
.notfound .btn-detail a {
  margin: 0 auto;
}

/* =================================================================
		#ユーザー非表示
================================================================= */
.author-item.user-6,
.author-item.user-7,
.home-member-item.user-6,
.home-member-item.user-7 {
  display: none;
}/*# sourceMappingURL=common.css.map */