@charset "UTF-8";

/*=========================================================

  =GLOBAL LAYOUT

==========================================================*/

:root {
  --color-white: #fff;
  --color-black: #222;
  --color-grey: #f1f1f1;
  --color-link: #0634B1;
  --font-family-en:  "Plus Jakarta Sans", sans-serif;
  --border-radius-40: 4rem;
  --border-radius-32: 3.2rem;
  --border-radius-24: 2.4rem;
  --border-radius-16: 1.6rem;
  --border-radius-8: .8rem;
  --border-radius-4: .4rem;
  --border-color-gray:rgba(34, 34, 34, 0.2);
}
html {
  font-family: YakuHanJP, "LINE Seed JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: var(--color-black);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-padding-top: 16rem;
}
body {
  background: #231F20;
  width: 100%;
  font-size: 1.6rem;
  font-feature-settings: 'palt' 1;
  letter-spacing: .01em;
  line-height: 1.2;
}
@media only screen and (max-width:960px) {
  body {
    font-size: 1.4rem;
  }
}

body.nav-open {
  overflow: hidden;
}



/*=========================================================

  =COMMON LAYOUT

==========================================================*/

/*
------------------------------------------
 =Frame Format
------------------------------------------
*/
#wrapper {
  width: 100%;
  position: relative;
  pointer-events: auto;
}
.inner {
  width: 100%;
  max-width: 142rem;
  margin: 0 auto;
  padding: 0 7rem;
}
.inner-w {
  width: 100%;
  padding: 0 4%;
}
.wrap {
  padding: 12rem 0 16rem;
}
.content-row {
  display: grid;
  gap: 8rem;
  grid-template-columns: auto 34rem;
}
.bg-grey{
  background: var(--color-grey);
}
.bg-white{
  background: var(--color-white);
}
.is-fixed{
  position: sticky;
  top: 12rem;
}
#canvas-bg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}
.canvas-noise{
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:0.08;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  animation:noiseShift .7s steps(2) infinite;
}
@keyframes noiseShift{
  0%{transform:translate(0,0)}
  100%{transform:translate(-2%,2%)}
}
.site-interactive-layer {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  pointer-events: none;
}
.page-header{
  position: relative;
  display: grid;
  grid-template-rows: 28rem auto 1fr;
  min-height: 60rem;
  color: var(--color-white);
}
.page-header .inner {
   grid-row: 2;
}
.page-header .section-heading{
  margin-bottom: 2.4rem;
}
.page-header .intro-copy{
  font-size:1.8rem;
  line-height: 1.8;
}
.page-header .intro-copy a{
  color: var(--color-white);
  text-decoration: underline;
}
.page-header .intro-copy a:hover {
  text-decoration: none;
}
.main-body {
  padding: 8rem 0 16rem;
  position: relative;
}

@media screen and (max-width:960px) {
  #wrapper {
    padding-top: 7rem;
  }
  .wrap {
    padding: 6.4rem 0 8rem;
  }
  .content-row {
    grid-template-columns: 1fr;
    gap: 6.4rem;
  }
  .inner,.inner-w {
    padding: 0 2rem;
  }
  .page-header{
    min-height:36rem;
    grid-template-rows: 10rem auto 1fr;
  }
  .page-header .intro-copy{
    font-size:1.5rem;
  }
  .main-body {
    padding: 4.8rem 0 8rem;
  }
}

/*
------------------------------------------
 =Font Format
------------------------------------------
*/
.section-heading{
  margin-bottom:4.8rem;
}
.section-heading .en{
  font-family: var(--font-family-en);
  font-size:1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  padding:0;
  position: relative;
  display: inline-block;
  padding-bottom: .2rem;
}
.section-heading .en::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .1rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  animation: heroTitleUnderline .4s ease-out .25s forwards;
}
.bg-white .section-heading .en::after,
.bg-grey .section-heading .en::after {
  background: var(--color-black);
}
@keyframes heroTitleUnderline {
  to {
    transform: scaleX(1);
  }
}
.section-heading .jp{
  font-size:4.4rem;
  font-weight: 700;
  line-height: 1.2;
  padding-top:1rem;
}
.page-header .section-heading .jp{
  font-size:5.6rem;
}
.p-top-sec-header {
  display: flex;
  align-items: center;
  gap:2.4rem 8rem ;
  margin-bottom:4.8rem;
}
.p-top-sec-header .section-heading{
  margin-bottom:0;
}
.border-top-heading{
  padding-top: 4rem;
  margin-bottom: 4rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
.border-top-heading::before,
.border-top-heading::after{
  position: absolute;
  top: 0;
  content: "";
  display: block;
  height: .1rem;
}
.border-top-heading::before {
  left: 0;
  width: 1.8rem;
  background: var(--color-black);
}
.border-top-heading::after{
  width: calc(100% - 2.2rem);
  right: 0;
  background: #ccc;
}
.page-main-copy{
  font-size:4.8rem;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom:4.8rem;
}
.lead-txt{
  font-size:1.8rem;
  line-height: 1.6;
}

@media screen and (max-width:960px) {
  .section-heading{
    margin-bottom:2.4rem;
  }
  .section-heading .jp{
    font-size:2.6rem;
  }
  .page-header .section-heading .jp{
    font-size:2.8rem;
  }
  .p-top-sec-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom:2.4rem;
  }
  .border-top-heading {
    padding-top: 2.8rem;
    margin-bottom: 2.8rem;
    font-size: 2.4rem;
  }
  .page-main-copy{
    font-size:2.8rem;
    margin-bottom:2.4rem;
  }
  .lead-txt{
    font-size:1.4rem;
  }
}

/*
------------------------------------------
 =Header
------------------------------------------
*/
#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s;
  z-index: 10;
  height: 12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:0 4rem;
  color:var(--color-white);
}
#header .logo {
  width: 20rem;
  height: auto;
  z-index: 1;
  opacity: 1;
  transition: all 0.3s;
}
#header.scroll {
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 7rem;
}
@media screen and (max-width:1180px) {
  #header {
    padding:0 2rem;
    height: 6rem;
  }
  #header .logo {
    width: 16rem;
  }
}


/* G-nav */
#g-nav ul {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  letter-spacing: .01em;
  font-weight: 400;
}
#g-nav ul .g-nav-list__item {
  position: relative;
}
#g-nav li a {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 1.44;
}
#g-nav ul .g-nav-droplist {
  display: block;
}
#gnav-contact {
  margin: 0;
}
#gnav-contact a {
  display: block;
  padding: 1.8rem 2.4rem;
  overflow: hidden;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: .8rem;
  text-align: center;
  transition:
    background-color .3s ease-in-out,
    border-color .3s ease-in-out;
}
#gnav-contact a > p {
  height: 1.44em;
  margin: 0;
  overflow: hidden;
  line-height: 1.44;
}
#gnav-contact a > p span {
  display: inline-block;
  color: var(--color-black);
  line-height: 1.44;
  /* ホバー後に表示する白文字 */
  text-shadow: 0 -1.44em 0 var(--color-white);
  transform: translateY(0);
  transition: transform .3s cubic-bezier(.43, .05, .2, 1);
  will-change: transform;
}
#gnav-contact .txt {
  display: inline-block;
  line-height: 1;
  text-shadow: 0 -1.44em 0 var(--color-white);
  transition: transform .3s cubic-bezier(.43, .05, .2, 1);
  will-change: transform;
}
@media (hover: hover) {
  /* ホバー */
  #gnav-contact .g-nav-btn-link:hover,
  #gnav-contact .g-nav-btn-link:focus-visible {
    background-color: transparent;
  }
  #gnav-contact .g-nav-btn-link:hover .txt,
  #gnav-contact .g-nav-btn-link:focus-visible .txt {
    transform: translateY(1.44em);
  }
  }
#g-nav .blank-link{
  position:relative;
  padding-right:1.6rem;
}
#g-nav .blank-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  background-color: currentColor;
  -webkit-mask: url(../img/icon/blanklink.svg) center / contain no-repeat;
          mask: url(../img/icon/blanklink.svg) center / contain no-repeat;
  pointer-events: none;
}
@media screen and (min-width: 1181px) {
  #g-nav {
    padding: 2.4rem 0;
  }
  #g-nav ul {
    align-items: center;
    gap: 3.2rem;
  }
  #g-nav li .g-nav-link {
    color: inherit;
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 1;
    padding: .2em 0;
  }
  #g-nav li .g-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 1);
    transition: .3s ease-in-out;
    transform: scale(0, 1);
    transform-origin: left top;
  }
  #g-nav li .g-nav-link:hover::before,
  #g-nav li .g-nav-link:focus-visible::before {
    transform: scale(1, 1);
  }
  #g-nav .g-nav-list .g-nav-link span {
    display: inline-block;
    line-height: 1;
    text-shadow: 0 -1.4em 0 #ddd;
    transition: transform .3s cubic-bezier(.43, .05, .17, 1);
    will-change: transform;
  }
  #g-nav .g-nav-list .g-nav-link:hover span,
  #g-nav .g-nav-list .g-nav-link:focus-visible span {
    transform: translateY(1.4em);
  }
  #g-nav li.current a {
    opacity: 0.4;
  }
}

@media screen and (max-width:1440px) {
  #g-nav ul {
    font-size: 1.3rem;
    gap: 1.8rem;
  }
}

@media screen and (max-width:1180px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #f2f4f5;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition:
    transform .35s cubic-bezier(.43,.05,.17,1),
    opacity .25s ease,
    visibility 0s linear .35s;
  }
  #g-nav ul {
    display: block;
  }
  #g-nav ul li {
    font-size: 1.4rem;
    margin: 0;
  }
  #g-nav ul li .g-nav-link {
    padding: 2rem 2rem;
    color: var(--color-black);
  }
  #g-nav .g-nav-list {
    position: relative;
  }
  #g-nav .g-nav-list::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    height: 1px;
    width: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 3px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
  }
  #g-nav .g-nav-list .g-nav-list__item::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 3px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
}
  #g-nav .g-nav-list .g-nav-list__item.active {
    border-bottom: none;
  }
  #gnav-contact {
    margin: 0;
  }
  #gnav-contact a {
    width: 72%;
    margin: 3rem auto 0;
    padding: 2.4rem 2rem 2.4rem 2rem;
  }
  #gnav-contact .txt {
    color: var(--color-white);
    text-shadow: none;
  }
  #g-nav .blank-link{
    padding-right:0;
  }
  #g-nav .blank-link::after {
    display: none;
  }
  #g-nav .blank-link .g-nav-link::after {
    content: "";
    display: inline-block;
    position: static;
    width: 1rem;
    height: 1rem;
    margin-left: .6rem;
    background-color: var(--color-black);
    vertical-align: -.1rem;
    -webkit-mask: url(../img/icon/blanklink.svg) center / contain no-repeat;
            mask: url(../img/icon/blanklink.svg) center / contain no-repeat;
    transform: none;
    opacity: 1;
  }
  #gnav-contact a {
    color: var(--color-white);
    background-color: var(--color-black);
    border: 1px solid var(--color-black);
  }
}

@media (hover: none) {
  #gnav-contact .g-nav-btn-link:active {
    transform: scale(.96);
    color:#fff;
  }
}

/* G-nav has-child */
#g-nav li.has-child ul {
  position: absolute;
  left: calc(50% - 12rem);
  top: 3rem;
  z-index: 4;
  background: rgba(255, 255, 255, 1);
  width: 24rem;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  font-size: 1.4rem;
  overflow: hidden;
  padding: 1rem;
  border-radius: .8rem;
  box-shadow: 0 .4rem 2rem 0 rgba(0, 0, 0, 0.2);
  }
#g-nav li.has-child ul li {
  margin: 0;
}
#g-nav li.has-child:hover>ul,
#g-nav li.has-child ul li:hover>ul,
#g-nav li.has-child:active>ul,
#g-nav li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}
#g-nav li.has-child ul li a {
  color: #111;
  opacity: 1;
  padding: 1.6rem 3rem 1.6rem 1.6rem;
  border-radius: .8rem;
  position: relative;
}
#g-nav li.has-child ul li a:hover,
#g-nav li.has-child ul li a:active {
  background-color: #ededf0;
}

@media screen and (min-width:1181px) {
  #g-nav li.has-child ul li a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    /* opacity: .4; */
    background: url(../img/icon/link-arrow.svg) center / cover;
    transform: translateY(-50%);
  }
}

@media screen and (max-width:1180px) {
  #g-nav li.has-child ul {
    background: var(--color-white);
    box-shadow: none;
  }
  #g-nav ul li.has-child .g-nav-link::before,
  #g-nav ul li.has-child .g-nav-link::after {
    content: "";
    background-color: #444;
    position: absolute;
    width: 12px !important;
    height: 2px !important;
    top: 2.7rem !important;
    right: 2rem !important;
    z-index: 2;
  }
  #g-nav ul li.has-child .g-nav-link::before {
    transform: translateY(-50%) rotate(90deg) !important;
    top: 2.8rem !important;
    transition: opacity .3s cubic-bezier(.33, 1, .68, 1);
  }
  #g-nav ul li.has-child.active .g-nav-link::before {
    transform: rotate(180deg);
    opacity: 0;
  }
  #g-nav li .g-nav-link:hover {
    background-color: #ddd;
  }
  #g-nav li.has-child ul li a::before {
    right: 3rem;
  }
  #g-nav.panelactive {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  #g-nav.panelactive #nav-wrap {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav ul {
    width: 100%;
    margin: 8rem auto 2.4rem auto;
  }
  #g-nav ul ul {
    width: 100%;
    margin: 0;
  }
  #g-nav ul li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    transform: none;
    padding: 2rem;
    border-radius: 0;
  }
  #g-nav li.has-child ul li a {
    padding: 1.8rem 2rem;
  }
}

/* G-nav-openbtn */
.g-nav-openbtn {
  display: none;
}

@media screen and (max-width:1180px) {
  .g-nav-openbtn {
    display: block;
    position: fixed;
    border-radius: 50%;
    z-index: 9999;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    width: 4.8rem;
    height: 4.8rem;
    background: var(--color-white);
  }
  .g-nav-openbtn .openbtn-area {
    transition: all .3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
  }
  .g-nav-openbtn span {
    display: inline-block;
    transition: all .3s;
    position: absolute;
    left: calc(50% - 9px);
    height: 2px;
    background: var(--color-black);
    width: 18px;
    z-index: 9999;
  }
  .g-nav-openbtn span:nth-of-type(1) {
    top: -6px;
  }
  .g-nav-openbtn span:nth-of-type(2) {
    top: 0px;
  }
  .g-nav-openbtn span:nth-of-type(3) {
    top: 6px;
  }
  .g-nav-openbtn.active {
    background: #666;
  }
  .g-nav-openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }
  .g-nav-openbtn.active span:nth-of-type(1) {
    top: -6px;
    left: -9px;
    transform: translateY(6px) rotate(-135deg);
    width: 18px;
    background: var(--color-white);
  }
  .g-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .g-nav-openbtn.active span:nth-of-type(3) {
    top: 6px;
    left: -9px;
    transform: translateY(-6px) rotate(135deg);
    width: 18px;
    background: var(--color-white);
  }
}
/*
------------------------------------------
 =FOOTER
------------------------------------------
*/
#footer{
  padding:10rem 0;
  position: relative;
  color:var(--color-white);
}
#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 0;
  pointer-events: none;
}
#footer > * {
  position: relative;
  z-index: 1;
}
.footer-offer{
  margin:0 4%;
  display: grid;
  place-items: center;
  padding: 10rem 4rem;
  border:.1rem solid #333;
  border-radius: var(--border-radius-8);
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  color: var(--color-black);
  text-align: center;
  border-radius: var(--border-radius-16);
  transition:
    background-color .3s ease,
    transform .3s ease;
    margin-bottom:12rem;
    overflow:hidden;
}
.footer-offer .lead-txt{
  margin-bottom:4rem;
}
.footer-offer .link-btn {
  font-size: 1.8rem;
  min-width: 42rem;
  justify-content: center;
  padding: 4rem 2.8rem;
  z-index: 4;
}
@media (hover: hover){
 .footer-offer:hover {
    color: var(--color-white);
    background: rgba(84, 84, 84, .8);
  }
  .footer-offer:hover .link-btn {
    background-color: var(--color-white);
    border-color: var(--color-black);
  }
  .footer-offer:hover .link-btn .normal {
    transform: translateY(110%);
  }
  .footer-offer:hover .link-btn .hover {
    transform: translateY(0);
  }
  .footer-offer:hover .link-btn .arrow {
    transform: scale(1.08);
  }
  .footer-offer:hover .link-btn .arrow::before {
    transform: scale(1);
  }
  .footer-offer:hover .link-btn .arrow::after {
    opacity: 0;
    transform: scale(1.45);
  }
  .footer-offer:hover .link-btn .arrow svg {
    animation: linkArrowSlide .55s cubic-bezier(.43, .05, .17, 1);
  }
}
@media screen and (max-width:960px) {
  #footer{
    padding:4rem 0;
  }
  .footer-offer{
    margin:0 2rem;
    padding: 4.8rem 2rem;
    margin-bottom:6.4rem;
  }
  .footer-offer .lead-txt{
    margin-bottom:2.4rem;
  }
  .footer-offer .link-btn {
    font-size: 1.4rem;
    min-width: 32rem;
    padding: 3rem 2rem;
  }
}

.footer-contact__loop{
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.footer-contact__loop-text {
  color: #B0B0AE;
  /* font-family: var(--font-family-en); */
  font-size: 24rem;
  font-weight:700;
  white-space: pre;
  line-height: 1;
  letter-spacing: -.08em;
  opacity: .1;
  -webkit-animation: textLoop 30s linear infinite;
  animation: textLoop 30s linear infinite;
  padding-right: 12rem;
}
@-webkit-keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@media screen and (max-width:960px) {
  .footer-contact__loop-text {
    font-size: 18rem;
    padding-right: 8rem;
  }
}

/* FOOTER UTILITY */
.footer-utility{
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-nav-list {
  display: flex;
  gap: 3.2rem;
}
.footer-nav-list li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  background-image: linear-gradient(#fff, #fff);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size .3s cubic-bezier(.17,.935,.305,1);
}
.footer-nav-list li a:hover {
  background-position: 0% 100%;
  background-size: 100% 1px;
}
.footer-nav-list li a span {
  display: inline-block;
  line-height: 1;
  text-shadow: 0 -1.4em 0 currentColor;
  transition: transform .3s cubic-bezier(.25,1,.5,1);
  will-change: transform;
}

@media (hover:hover){
  .footer-nav-list li a:hover span,
  .footer-nav-list li a:focus-visible span{
    transform: translateY(1.4em);
  }
}

/* 外部リンク */
.footer-nav-list li.blank-link {
  position: relative;
  padding-right: 1.6rem;
}
.footer-nav-list li.blank-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  background: url(../img/icon/blanklink.svg) center/contain no-repeat;
  transform: translateY(-50%);
  z-index: 2;
}

@media screen and (max-width:960px){
  .footer-nav-list{
    flex-wrap: wrap;
    justify-content: center;
    gap:1.6rem;
  }
  .footer-nav-list li a{
    font-size:1.3rem;
  }
}

/* FOOTER ABOUT */
.footer-about{
  display: flex;
  gap: 3.2rem;
  justify-content: space-between;
  align-items: center;
  margin-top:8rem;
  padding: 6.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-about .logo-object{
  max-width: 22rem;
  margin-bottom: 1.5em;
}
.footer-about .adress{
  font-size:1.4rem;
  line-height: 1.6;
}
.footer-about .footer-social-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-about .footer-social-list li a {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 100%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--color-white);
}
.footer-about .footer-social-list li img{
  width: 2.4rem;
  position: relative;
  z-index: 2;
  transition: filter 0.3s cubic-bezier(0.25, 1, 0.5, 1);;
}
.footer-about .footer-social-list li a:hover{
  opacity: .6;
}
@media screen and (max-width:960px) {
  .footer-about{
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    justify-content: center;
    margin-top:4rem;
    padding: 4rem 0;
  }
  .footer-about .logo-object{
    max-width: 18rem;
    margin: 0 auto 2.4rem;
  }
  .footer-about .adress{
    text-align: center;
  }
}

/* FOOTER BOTTOM */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
  font-size: 1.3rem;
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-bottom ul {
  align-items: center;
  display: flex;
  gap:2.4rem;
}
.footer-bottom li {
  position: relative;
}
.footer-bottom li:last-child {
  margin-right: 0;
}
.footer-bottom li a {
  display: block;
  text-decoration: none;
  color: var(--color-white);
  transition: .3s ease-in-out;
  position: relative;
  overflow: hidden;
  line-height: 1.4;
}
.footer-bottom li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 1);
  transition: .3s ease-in-out;
  transform: scale(0, 1);
  transform-origin: left top;
}
.footer-bottom li a:hover::before {
  transform: scale(1, 1);
}
.copyright {
  font-size: 1.3rem;
  text-align: right;
}
@media screen and (max-width:960px) {
  .footer-bottom {
    justify-content: center;
    padding: 1.6rem 0 0;
    font-size: 1.2rem;
  }
  .footer-bottom ul {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    justify-content: center;
  }
  .footer-bottom li {
    margin: 1rem;
  }
  .copyright {
    width: 100%;
    text-align: center;
  }
}


/* breadcrumbs
---------------------------------*/
.breadcrumbs {
  font-size: 1.2rem;
  text-align: left;
  padding: 0 0 2.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.breadcrumbs .inner {
  white-space: nowrap;
}
.breadcrumb-list {
  display: flex;
}
.breadcrumb-list li {
  position: relative;
  padding-left: 3rem;
  color: #666;
}
.breadcrumb-list li:first-child {
  padding-left: 0;
}
.breadcrumbs a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumbs a:hover {
  color: #666;
}
.breadcrumbs li:nth-child(n+2)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: translateY(-50%) rotate(45deg);
}
.breadcrumbs li a span {
  background-image: linear-gradient(var(--color-black), var(--color-black));
  background-position: 0% 100%;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
.breadcrumbs li a:hover span {
  background-position: 100% 100%;
  background-size: 0% 1px;
}

@media screen and (max-width: 960px) {
  .breadcrumbs {
    font-size: 1.1rem;
    padding: 0 2rem 1.5rem;
  }
  .breadcrumbs .inner {
    padding: 0;
  }
  .breadcrumb-list li {
    padding-left: 2rem;
  }
  .breadcrumbs li:nth-child(n+2)::before {
    left: 0.7rem;
    width: 0.4rem;
    height: 0.4rem;
  }
}


/*
------------------------------------------
 =TOP
------------------------------------------
*/

/* P-TOP-MV
--------------------------*/
#p-top-mv {
  color:var(--color-white);
  position: relative;
  padding-top:22%;
  overflow:hidden;
}
#p-top-mv .mv-copy{
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom:2.4rem;
}
#p-top-mv .mv-txt{
  font-size:1.8rem;
  line-height: 1.6;
}
#p-top-mv .inner-w{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom:6.4rem;
  gap:4rem;
}
.mv-stats{
  --outer-border-color: var(--color-white);
  --inner-border-color: #aaa;
  display: grid;
  grid-template-columns: repeat(3, 14rem);
  gap: 1.2rem;
}
.mv-stats .item{
  position: relative;
  display: flex;
  width: 14rem;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  background: rgba(35, 31, 32, .35);
  backdrop-filter: blur(10px);
  overflow: hidden;
  border-radius: 50%;
}
.mv-stats .item::before {
  position: absolute;
  inset: 0;
  border: 1px solid var(--outer-border-color);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.mv-stats .item::after {
  position: absolute;
  inset: 4px;
  border: 1px solid var(--inner-border-color);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.mv-stats__txt{
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  margin: 0 0 8px;
  line-height: 1.4;
}
.mv-stats__num {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 700;
  font-family:var(--font-family-en);
  line-height: 1;
  letter-spacing: -0.03em;
}
.mv-stats__num span{
  font-size: clamp(1.1rem, 3.2vw, 1.6rem);
}
@media screen and (max-width:960px) {
  #p-top-mv {
    padding-top: 10rem;
  }
  #p-top-mv .inner-w {
    flex-direction: column;
    align-items: stretch;
    gap: 2.4rem;
    margin-bottom:4rem;
  }
  #p-top-mv .txts,
  .mv-stats {
    width: 100%;
  }
  #p-top-mv .mv-txt{
    font-size:1.5rem;
  }
  .mv-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    justify-content: center;
  }
  .mv-stats .item {
    width: 100%;
    min-width: 0;
  }
}
.js-carousel-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.mv-slider .swiper-slide {
  width: 72rem ;
  padding:0 0 0;
  margin:0 2rem 0 ;
}
@media screen and (max-width:960px) {
  .mv-slider .swiper-slide {
    width: 40rem ;
    padding:0 0 0;
    margin:0 1.2rem 0 ;
  }
}


/* P-TOP-PHILOSOPHY
--------------------------*/
#p-top-philosophy{
  color:var(--color-white);
  padding: 20rem 0 15rem;
}
#p-top-philosophy .inner{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 12rem;
}
#p-top-philosophy .copy{
  justify-self: end;
  writing-mode: vertical-rl;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .045em;
}
#p-top-philosophy .txt{
  font-size:2rem;
  line-height: 2;
}
@media screen and (max-width:960px) {
  #p-top-philosophy{
    padding: 8rem 0 6rem;
  }
  #p-top-philosophy .inner{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  #p-top-philosophy .copy{
    writing-mode: initial;
    justify-self: start;
    font-size: 2.6rem;
    line-height: 1.4;
  }
  #p-top-philosophy .txt{
    font-size:1.4rem;
  }
}

/* P-TOP-Trouble
--------------------------*/
#p-top-trouble .inner-w{
  display: grid;
  grid-template-columns: 35% auto;
  align-items: center;
  color:var(--color-white);
  gap: 8rem;
}
#p-top-trouble .p-top-trouble__list{
  gap: .8rem;
}
.p-top-trouble__list .item{
  background: rgba(35, 31, 32, .35);
  backdrop-filter: blur(10px);
  border:.1rem solid rgba(255, 255, 255, .2);
  border-radius: var(--border-radius-8);
  padding:3.2rem;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 8rem auto;
  align-items: center;
}
.p-top-trouble__list .item .ttl{
  font-size:2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom:.8rem;
}
.p-top-trouble__list .item .txt{
  line-height: 1.6;
}
@media screen and (max-width:960px) {
  #p-top-trouble .inner-w{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .p-top-trouble__list .item{
    padding:1.6rem;
    display: grid;
    gap: 1.6rem;
    grid-template-columns: 6.4rem auto;
    align-items: start;
  }
  .p-top-trouble__list .item .ttl{
    font-size:1.6rem;
  }
}


/* P-TOP-REASON
--------------------------*/
#p-top-reason .reason-list .item{
  position: relative;
}
.reason-list .item .num {
  width: 6.4rem;
  height: 6.4rem;
  background: var(--color-black);
  border: .4rem solid var(--color-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2.2rem;
  font-family: var(--font-family-en);
  line-height: 1;
  border-radius: 100%;
  position: absolute;
  left: -1.6rem;
  top: -1.6rem;
}
.reason-list .item .item-pic{
  border-radius: var(--border-radius-8);
  overflow: hidden;
}
.reason-list .item .item-body{
  margin-top:2.4rem;
}
.reason-list .item .item-body .ttl{
  font-size:2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:.8rem;
  text-align: center;
}
.reason-list .item .item-body .txt{
  line-height: 1.6;
}
@media screen and (max-width:960px) {
  .reason-list.l-grid.col3{
    row-gap: 4rem;
  }
  .reason-list .item .num {
    width: 5rem;
    height: 5rem;
    font-size: 1.8rem;
    left: -1.2rem;
    top: -1.2rem;
  }
  .reason-list .item .item-body{
    margin-top:1.6rem;
  }
  .reason-list .item .item-body .ttl{
    font-size:2rem;
    line-height: 1.4;
  }
}


/* P-TOP-WORKS
--------------------------*/
#p-top-works{
  background: var(--color-white);
  overflow: hidden;
}
#p-top-works .inner{
  position: relative;
}
.works-slider {
  position: relative;
  overflow: visible;
  margin: 0 calc(50% - 50vw) 0 0;
  width: calc(50vw + 50%);
}
.works-slider .swiper{
  overflow: visible;
  clip-path: inset(-10rem -100vw -10rem 0);
}
.works-slider .works-item {
  width: 58rem ;
  padding:0 ;
  margin:0 4rem 4rem 0;
}
.works-slider .swiper-pagination {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-family-en);
  padding-top:2rem;
}
.works-slider .swiper-controller {
  width: calc(200% - 100vw);
}

@media screen and (max-width:960px) {
  .works-slider .works-item {
    width: 32rem ;
    padding:0 0 2.4rem;
    margin:0 2.4rem 0 0;
  }
  .works-slider .swiper-pagination {
    font-size: 1.2rem;
  }
}

.works-caption{
  margin-bottom:8rem;
}
@media screen and (max-width:960px) {
.works-caption{
  margin-bottom:4.8rem;
}
}

.works-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6.4rem 4.8rem ;
}
.works-item{
  position: relative;
  z-index: 0;
}
.works-item a{
  display: block;
}
.works-item .item-pic{
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-8);
}
.works-item .item-pic .thumb{
  aspect-ratio: 16 / 9;
  /* aspect-ratio: 768 / 475; */
  overflow: hidden;
}
.works-item .item-pic .thumb img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.works-item .item-body{
  margin-top:2.4rem;
}
.works-item .item-body .ttl{
  font-size:2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:1.2rem;
}
#p-top-works .works-item .item-body .ttl{
  font-size:2.4rem;
}
.works-item .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  transition:
    background-color .3s cubic-bezier(.43,.05,.17,1),
    transform .45s cubic-bezier(.43,.05,.17,1);
}

.works-item .arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background: var(--color-black);
  transform: scale(0);
  transition: transform .3s cubic-bezier(.43,.05,.17,1);
}
.works-item .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(34, 34, 34, 1);
  border-radius: 50%;
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.43,.05,.17,1);
}
.works-item .arrow svg {
  position: relative;
  z-index: 2;
  width: .8rem;
  height: .8rem;
  color: var(--color-black);
  fill: currentColor;
}
.works-btn{
  position: absolute;
  top:0;
  right:7rem;
}
@media screen and (min-width:961px) {
  /* ホバー時に表示する背景 */
  .bg-action .works-item::before {
    content: "";
    position: absolute;
    inset: -2rem;
    z-index: -1;
    background: var(--color-white);
    border-radius: 1.6rem;
    opacity: 0;
    transition: opacity .45s cubic-bezier(.43,.05,.17,1);
    box-shadow: 0 .4rem 1.2rem rgba(34, 34, 34, 0.04);
  }
}
@media (hover: hover) {
  .bg-action .works-item:hover::before {
    opacity: 1;
  }
}

@media screen and (max-width:960px) {
  .works-list {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .works-item .item-body{
    margin-top:1.6rem;
  }
  .works-item .item-body .ttl{
    font-size:1.8rem;
  }
  #p-top-works .works-item .item-body .ttl{
    font-size:1.8rem;
  }
  .works-btn{
    position: static;
    text-align: center;
    margin-top: 3.2rem;
  }
}


.mv-slider .swiper-slide a{
  color:#fff;
}
.mv-slider .item-pic::after{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, transparent 0%, #111 100%);
}
.mv-slider .item-body{
  position: absolute;
  bottom: 2.8rem;
  width: calc(100% - 4.8rem);
  left:2.4rem;
  margin:0;
}
.mv-slider .entry-meta{
  margin-bottom:.4rem;
}
.mv-slider .item-body .ttl{
  font-size: 2.4rem;
  margin-bottom:0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
.mv-slider .ov-action .ov-action__ttl span {
  background-image: linear-gradient(#fff, #fff);
}
.mv-slider .entry-meta .entry-client:after,
.mv-slider .entry-meta .entry-date:after {
  border-right: rgba(255, 255, 255, .4) solid 1px;
}
.mv-slider .item-body .entry-taglist-nolink{
  display: none;
}
@media screen and (max-width:960px) {
  .mv-slider .item-body{
    width: calc(100% - 4rem);
    left:2rem;
    bottom:2rem;
  }
  .mv-slider .works-item .ttl{
    font-size: 1.8rem;
  }
}


/* P-TOP-SERVICE
--------------------------*/
.top-service-list.l-grid.col2{
  gap: 2.4rem 2.4rem;
}
.top-service-list .item{
  background-color: var(--color-white);
  border-radius: var(--border-radius-8);
  /* border:.1rem solid var(--border-color-gray); */
  padding:3.6rem;
}
.top-service-list .item-header{
  display: grid;
  gap: 2.4rem;
  align-items: center;
  grid-template-columns:  1fr 8rem;
  margin-bottom: 3.2rem;
}
.top-service-list .item-header .icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 8rem;
  height: 8rem;
  padding: 1px;
  border-radius: .4rem;
  background: linear-gradient(
    135deg,
  #f7f7f7 0%,
  #efefef 30%,
  #ddd 50%,
  #efefef 70%,
  #f7f7f7 100%
  );
  flex-shrink: 0;
  background-size:300% 300%;
  animation: borderFlow 4s ease-in-out infinite;
}
.top-service-list .item-header .icon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(.4rem - 1px);
  background: #f5f7fb;
}
@keyframes borderFlow{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.top-service-list .item-header .icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 5rem;
  height: auto;
  object-fit: contain;
}
.top-service-list .item-header .title{
  font-size:2.4rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: .4rem;
}
.top-service-list .item-header .title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .1rem;
  background: currentColor;
  content: "";
}
.top-service-list .item-header .title .num{
  font-size:1.6rem;
  font-family:var(--font-family-en);
  padding-right:.4rem;
}
.top-service-list .item-ttl{
  font-size:2.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:1.6rem;
  letter-spacing: 0;
}
.top-service-list .item-txt{
  line-height: 1.8;
}
@media screen and (max-width:960px) {
  .top-service-list.l-grid.col2{
    gap: 1.6rem;
  }
  .top-service-list .item{
    padding:2rem 2rem 2.4rem;
  }
  .top-service-list .item-header{
    grid-template-columns:  1fr 6rem;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
  }
  .top-service-list .item-header .icon {
    width: 6rem;
    height: 6rem;
  }
  .top-service-list .item-header .icon img {
    width: 3.6rem;
    height: auto;
  }
  .top-service-list .item-header .title{
    font-size:1.6rem;
    font-weight: 700;
  }
  .top-service-list .item-header .title .num{
    font-size:1.2rem;
  }
  .top-service-list .item-ttl{
    font-size:2rem;
    margin-bottom:1rem;
  }
}



/* P-TOP-BLOG
--------------------------*/
#p-top-blog{
  padding:0 0 18rem;
  overflow: hidden;
}
/* #p-top-blog .inner{
  display: grid;
  gap:0 8rem;
  grid-template-columns: 23rem auto;
} */
.blog-list-row{
  display: grid;
  gap: 1.6rem;
}
.blog-list-row .item{
  position: relative;
}
.blog-list-row .item a {
  background-color: var(--color-white);
  border-radius: var(--border-radius-8);
  border:.1rem solid var(--border-color-gray);
  padding: 2rem ;
  position: relative;
  display: grid;
  gap: 3.2rem;
  grid-template-columns: 20rem 1fr 2.4rem;
  align-items: center;
}
.blog-list-row .item .item-pic{
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-8);
}
.blog-list-row .item .item-pic .thumb{
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-list-row .item .item-pic .thumb img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-list-row .item .item-body .entry-ttl{
  font-size:1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:1.6rem;
}
.blog-list-row .arrow {
  background: rgba(34,34,34,0);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  overflow: hidden;
  transition:
    background-color .45s cubic-bezier(.43,.05,.17,1),
    transform .45s cubic-bezier(.43,.05,.17,1);
}
.blog-list-row .arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-black);
  transform: scale(0);
  transition: transform .45s cubic-bezier(.43,.05,.17,1);
  z-index: 0;
}
.blog-list-row .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(34,34,34,1);
  border-radius: 50%;
  transition: opacity .35s ease,
              transform .45s cubic-bezier(.43,.05,.17,1);
  z-index: 1;
}
.blog-list-row .arrow svg {
  width: .8rem;
  height: .8rem;
  position: relative;
  z-index: 4;
  color: var(--color-black);
  fill: currentColor;
  transition:
    transform .45s cubic-bezier(.43,.05,.17,1),
    opacity .25s ease,
    color .3s ease;
}
@media (hover: hover){
  .blog-list-row .item a:hover{
      border:.1rem solid var(--color-black);
  }
  .blog-list-row .item a:hover .arrow {
    transform: scale(1.08);
  }
  .blog-list-row .item a:hover .arrow::before {
    transform: scale(1);
  }
  .blog-list-row .item a:hover .arrow::after {
    opacity: 0;
    transform: scale(1.45);
  }
  .blog-list-row .item a:hover .arrow svg {
    color: var(--color-white);
    animation: linkArrowSlide .55s cubic-bezier(.43,.05,.17,1);
  }
}
@media screen and (max-width:960px) {
  #p-top-blog{
    padding:0 0 10rem;
  }
  /* #p-top-column .inner{
    grid-template-columns: 1fr;
  } */
  .blog-list-row .item a {
    grid-template-columns: 10rem 1fr 2.4rem;
    gap: 1.6rem;
    padding:1.4rem 1rem;
    align-items: flex-start;
  }
  .blog-list-row .item .item-body .entry-ttl {
    font-size: 1.6rem;
  }
  .blog-list-row .arrow {
    align-self: center;
  }
  .blog-list-row .item .item-pic .thumb{
    aspect-ratio: 4 / 3;
  }
}


.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6.4rem;
  align-items: start;
}
.blog-archive__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.8rem;
}
.blog-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6.4rem 4.8rem ;
}
.blog-card{
  position: relative;
}
.blog-card__link {
  position: relative;
  z-index: 0;
  display: block;
  color: inherit;
}
.blog-card .blog-card__pic {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-8);
}
.blog-card .blog-card__pic .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-card .blog-card__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 本文・矢印の配置 */
.blog-card .blog-card__body {
  margin-top: 1.6rem;
}
.blog-card--featured .blog-card__body{
  margin-top: 2.4rem;
}
.blog-card .entry-ttl {
  margin: 0 0 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.blog-card--featured .entry-ttl {
  font-size: 2.4rem;
}
.blog-card .entry-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 2rem;
  align-items: center;
  column-gap: 0;
  margin-bottom: 0;
}
.blog-card .entry-date {
  grid-column: 1;
}
.blog-card .entry-category-nolink {
  grid-column: 2;
  margin: 0;
  padding: 0;
}
/* 矢印 */
.blog-card .arrow {
  position: relative;
  grid-column: 3;
  justify-self: end;
  align-self: center;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(34, 34, 34, 0);
  transform: none;
  transition:
    background-color 0.45s cubic-bezier(.43, .05, .17, 1),
    transform 0.45s cubic-bezier(.43, .05, .17, 1);
}
.blog-card .arrow::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 50%;
  background: var(--color-black);
  content: "";
  transform: scale(0);
  transition:
    transform 0.45s cubic-bezier(.43, .05, .17, 1);
}
.blog-card .arrow::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(34, 34, 34, 1);
  border-radius: 50%;
  content: "";
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(.43, .05, .17, 1);
}
.blog-card .arrow svg {
  position: relative;
  z-index: 4;
  width: 0.8rem;
  height: 0.8rem;
  color: var(--color-black);
  fill: currentColor;
  transition:
    transform 0.45s cubic-bezier(.43, .05, .17, 1),
    opacity 0.25s ease,
    color 0.3s ease;
}
@media screen and (min-width:961px) {
    /* ホバー時に出てくる白背景 */
  .bg-action .blog-card__link::before {
    content: "";
    position: absolute;
    inset: -2rem -2rem;
    z-index: -1;
    background: var(--color-white);
    border-radius: 1.6rem;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(.43,.05,.17,1);
    box-shadow: 0 .4rem 1.2rem rgba(34, 34, 34, 0.04);
  }
}

@media (hover: hover) {
  .bg-action .blog-card__link:hover::before {
    opacity: 1;
  }
  .blog-card__link:hover .arrow {
    transform: scale(1.08);
  }
  .blog-card__link:hover .arrow::before {
    transform: scale(1);
  }
  .blog-card__link:hover .arrow::after {
    opacity: 0;
    transform: scale(1.45);
  }
  .blog-card__link:hover .arrow svg {
    color: var(--color-white);
    animation: linkArrowSlide 0.55s
      cubic-bezier(.43, .05, .17, 1);
  }
}

@media screen and (max-width:960px) {
  .blog-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .blog-archive__list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .blog-card-list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .blog-card {
    padding-bottom: 2.4rem;
    background-image: repeating-linear-gradient(
      to right,
      #999 0,
      #999 1px,
      transparent 1px,
      transparent 4px
    );
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: auto 1px;
  }
  .blog-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-image: repeating-linear-gradient(
      to right,
      #999 0 1px,
      transparent 1px 4px
    );
  }
  .blog-card__link {
    display: grid;
    grid-template-columns: 34% minmax(0, 1fr);
    align-items: start;
    column-gap: 2rem;
    height: auto;
  }
  .blog-card .blog-card__pic {
    grid-column: 1;
    min-width: 0;
  }
  .blog-card .blog-card__body {
    grid-column: 2;
    min-width: 0;
    margin-top: 0;
  }
  .blog-card .entry-ttl {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .blog-card .entry-meta {
    grid-template-columns: auto minmax(0, 1fr) 2rem;
    font-size: 1rem;
  }
}


/*
------------------------------------------
 =SERVICE
------------------------------------------
*/
.service-card{
  display: grid;
  gap: 4.8rem;
}
.service-card .item{
  display: grid;
  grid-template-columns: 38rem minmax(0, 1fr);
  padding:4.8rem 6.4rem;
  overflow: hidden;
  gap: 4.8rem;
  border-radius: var(--border-radius-16);
  background: var(--color-white);
}
.service-card__header {
  display: flex;
  padding: 5rem 3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-8);
  background: #F2F4F8;
  text-align: center;
}
.service-card__header img {
  display: block;
  width: 8rem;
  height: auto;
  margin-bottom: 1.6rem;
  object-fit: contain;
}
.service-card__header .title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
.service-card__header .title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .1rem;
  background: currentColor;
  content: "";
}
.service-card__header .title span {
  padding-right: .4rem;
  font-family: var(--font-family-en);
  font-size: 1.6rem;
}
.service-card__body .copy {
  margin: 0 0 1.6rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.service-card__body .txt{
  line-height: 1.8;
}
.service-card__menu {
  margin-top: 2.4rem;
  padding: 2.4rem 2.4rem;
  border: 1px solid var(--border-color-gray);
  border-radius: var(--border-radius-8);
}
.service-card__menu .ttl {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width:960px) {
  .service-card{
    gap: 2.4rem;
  }
  .service-card .item{
    grid-template-columns: 1fr;
    padding:2.4rem;
    gap: 2rem;
    border-radius: var(--border-radius-8);
  }
  .service-card__header {
    padding: 3.2rem 2rem;
  }
  .service-card__header img {
    width: 5rem;
    height: auto;
    margin-bottom: 1.6rem;
  }
  .service-card__header .title {
    font-size: 1.8rem;
  }
  .service-card__header .title span {
    font-size: 1.3rem;
  }
  .service-card__body .copy {
    margin: 0 0 1.6rem;
    font-size: 2.2rem;
  }
  .service-card__menu {
    padding: 1.6rem;
  }
  .service-card__menu .ttl {
    font-size: 1.6rem;
  }
}


/*
------------------------------------------
 =FAQ
------------------------------------------
*/
#p-faq .content-row{
  display: grid;
  gap: 6.4rem;
  grid-template-columns: 30rem auto ;
}
@media screen and (min-width:961px) {
#p-faq .side-nav {
  position: sticky;
  top: 10rem;
  z-index: 1;
  align-self: flex-start;
}
}
#p-faq .faq-wrap:not(:first-child){
  margin-top:12rem;
}
.faq_contents {
  display: grid;
  cursor: pointer;
  text-align: left;
  background-color: var(--color-white);
  padding: 1.6rem 2.4rem;
  border-radius: var(--border-radius-8);
  border: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.faq_contents:not(:first-of-type) {
  margin-top: 1.6rem;
}
.faq_contents:hover,
.faq_contents.selected {
  border-color: var(--color-black);;
}
.faq-head {
  position: relative;
  padding: 1rem 4rem 1rem 0;
}
.faq-head .ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding-left: 2.8rem;
}
.faq-head .ttl::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-family-en);
  line-height: 1;
}
.toggle_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-color: var(--color-black);
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.toggle_icon::before,
.toggle_icon::after {
  display: block;
  content: '';
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.toggle_icon::after {
  width: 11px;
  height: 2px;
}
.toggle_icon::before {
  width: 2px;
  height: 11px;
}
.faq_contents.selected .toggle_icon::before {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq_contents dd.accordion-body {
  display: none;
  padding-bottom: 1.4rem;
}
.faq-body {
  background-color: #F0F0F0;
  border-radius: var(--border-radius-8);
  margin-top: 0.6rem;
  line-height: 1.66;
  padding: 2.4rem;
}
@media screen and (max-width:960px) {
  #p-faq .content-row{
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  #p-faq .faq-wrap:not(:first-child){
    margin-top:8rem;
  }
  .faq_contents {
    padding: 1rem 1rem;
  }
  .faq_contents:not(:first-of-type) {
    margin-top: 1.2rem;
  }
  .faq-head {
    padding: 0.8rem 3.6rem 0.8rem 0;
  }
  .faq-head .ttl {
    font-size: 1.6rem;
    padding-left: 2.2rem;
  }
  .faq-head .ttl::before {
    font-size: 1.8rem;
    top: 0;
  }
  .toggle_icon {
    width: 2.8rem;
    height: 2.8rem;
  }
  .toggle_icon::after {
    width: 9px;
  }
  .toggle_icon::before {
    height: 9px;
  }
  .faq-body {
    padding: 1.6rem;
    font-size: 1.4rem;
  }
}


/*
------------------------------------------
 =CONTACT
------------------------------------------
*/
#p-contact .main-body .inner,
#p-thanks .main-body .inner{
  max-width: 122rem;
}
#p-thanks .main-body .inner{
  line-height: 1.8;
}
.contact-input .form-item{
  width: 100%;
  text-align: left;
  margin-bottom: 4rem;
}
.contact-input .form-item dt {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
}
.contact-input .form-item dd{
  width: 100%;
}
.contact-input .form-item dt.required{
  display: flex;
  align-items: center;
}
.form-item dt.required::after {
  background-color: #E63A3A;
  border-radius: .4rem;
  content: "必須";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  padding: .6rem .6rem .5rem;
  margin-left: 1rem;
}
@media screen and (max-width: 960px) {
  .contact-input .form-item{
    margin-bottom: 2.4rem;
  }
}

/* カラムレイアウト  */
.form-row .wpcf7-form-control{
  display: grid;
  column-gap: 1rem;
  row-gap: 1rem;
}
.form-row.col-2 .wpcf7-form-control{
  grid-template-columns: repeat(2, 1fr);
}
.form-row.col-3 .wpcf7-form-control {
  grid-template-columns: repeat(3, 1fr);
}
.form-row.col-4 .wpcf7-form-control{
  grid-template-columns: repeat(4, 1fr);
}
.wpcf7-list-item {
  margin: 0 0 0 0 !important;
}
.wpcf7-spinner {
    display: block;
}

@media screen and (max-width:960px) {
  .form-row.col-2 .wpcf7-form-control,
  .form-row.col-3 .wpcf7-form-control,
  .form-row.col-4 .wpcf7-form-control{
    grid-template-columns: repeat(1, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
  }
}

/* 入力項目  */
#p-contact input[type="text"],
#p-contact input[type="tel"],
#p-contact input[type="url"],
#p-contact input[type="email"],
#p-contact input[type="number"],
#p-contact input[type="password"] {
  padding: 0.8rem 5rem 0.8rem 1.6rem;
  height: 6.6rem;
  font-size: 1.6rem;
  border: 1px solid #DBDBDB;
  background: var(--color-white);
  border-radius: .8rem;
  box-shadow: none;
  max-width: 100%;
  width: 100% !important;
}
#p-contact textarea {
  padding: 1.6rem;
  font-size: 16px;
  border: 1px solid #DBDBDB;
  background: var(--color-white);;
  border-radius: .8rem;
  box-shadow: none;
  max-width: 100%;
  width: 100% !important;
}

/* ラジオボタン チェックボタン */
#p-contact .form-item label{
  display: block;
  border: 1px solid #ddd;
  background: var(--color-white);
  color: var(--color-black);;
  padding: 1.6rem 2rem;
  line-height: 1;
  cursor: pointer;
  max-width: 100%;
  border-radius: .8rem;
}
#p-contact label input:checked+ label {
  border: 1px solid var(--color-white);
}
#p-contact label input[type=radio]+span{
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 2.6rem;
  line-height: 2;
}
/* チェック前のボタン */
#p-contact label input[type=radio]+span:after {
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: .1rem solid #888;
  border-radius: 50%;
  background-color: transparent;
}
#p-contact label input[type=radio]+span:before {
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  top: 50%;
  left: 0;
  border: .4rem solid var(--color-white);
  border-radius: 50%;
  background-color: #000;
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  opacity: 0
}
/* チェック後のボタン */
#p-contact label input[type=radio]:checked+span:before {
  opacity: 1;
  transform: translateY(-50%) scale(1.1)
}
#p-contact label input[type=checkbox]+span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  line-height: 2;
  padding-left: 2.8rem;
}
#p-contact label input[type=checkbox]+span:before {
  position: absolute;
  content: "";
  width: 2rem;
  height:2rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--color-white);
  border: .1rem solid #888;
  border-radius: .3rem;
}
#p-contact label input[type=checkbox]+span:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 10px;
  top: calc(50% - 2px);
  left: 6px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg) scale(0);
  opacity: 0;
  transition: transform 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}
#p-contact label input[type=checkbox]:checked+span:before {
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
}
#p-contact label input[type=checkbox]:checked+span:after {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg) scale(1.1);
}

#p-contact .form-privacy{
  text-align: center;
}
#p-contact .form-privacy p{
  margin-bottom:2rem;
  line-height: 1.6;
}
#p-contact .form-privacy a{
  color:var(--color-black);
  text-decoration: underline;
}
#p-contact .form-privacy a:hover{
  color:var(--color-black);
  text-decoration: none;
}

/* ボタン */
.form-submit {
  margin: 4rem auto 0;
  text-align: center;
  display: grid;
  justify-content: center;
}
.form-submit.submit-2row{
  display: grid;
  grid-template-columns: repeat(2, 32rem);
  justify-content: center;
  gap: 2.4rem;
}
.form-submit__confirm,
.form-submit__back,
.form-submit__submit {
  width: 32rem;
  height: 10rem;
  padding: 1.6rem 4rem;
  border-radius: .8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition:
    transform .2s ease,
    filter .2s ease,
    border-color .2s ease,
    color .2s ease;
}
.form-submit__confirm,
.form-submit__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-submit__confirm,
.form-submit__submit {
  border: 0;
  /* background: linear-gradient(135deg, #2e2e2e 0%,  #1b1b1b 60%,  #0d0d0d 100%); */
  background: linear-gradient(135deg, #3b3b3b 0%, #1f1f1f 50%, #000000 100%);
  color: var(--color-white);
}
.form-submit__back {
  border: .2rem solid #666;
  background: #666;
  color: var(--color-white);
}
input.form-submit__submit[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  text-align: center;
  border-radius: .8rem;
}
.form-submitm__confirm:disabled,
.form-submit__submit:disabled,
button:disabled {
  background: #ddd;
  color: var(--color-white);
  border: 0;
  cursor: not-allowed;
  filter: none;
  transform: none;
  box-shadow: none;
}
@media (hover: hover) {
  .form-submit__confirm:hover,
  .form-submit__submit:hover {
    opacity: 1;
    filter: brightness(1.8);
  }
  .form-submit__back:hover {
    opacity: 1;
    filter: brightness(1.8);
  }
  .form-submit__confirm:disabled:hover,
  .form-submit__submit:disabled:hover,
  button:disabled:hover {
    background: #ddd;
    color: var(--color-white);
    filter: none;
    transform: none;
    cursor: not-allowed;
  }
}
@media (hover: none) {
  .form-submit__confirm:active,
  .form-submit__submit:active,
  .form-submit__back:active {
    transform: scale(.95);
    transition: transform .1s ease;
  }
  .form-submit__confirm:active,
  .form-submit__submit:active {
    color: var(--color-white);
  }
  .form-submit__back:active {
    color: var(--color-white);
  }
}

@media screen and (max-width: 960px) {
  .form-submit {
    margin: 3.2rem auto 0;
    text-align: center;
  }
  .form-submit.submit-2row{
    grid-template-columns: 1fr;
    justify-items: center;
    gap:1.6rem;
  }
  .form-submit__confirm,
  .form-submit__back,
  .form-submit__submit {
    width: 28rem;
    height: 8rem;
    font-size: 1.6rem;
  }
}


/* 確認画面 */
.wpcf7-spinner,
.wpcf7-response-output {
  display: none !important;
}
.contact-confirm .form-item{
  display: grid;
  grid-template-columns: 24rem 1fr;
  column-gap: 3.2rem;
  margin-bottom:0 !important;
}
.contact-confirm .form-item dt,
.contact-confirm .form-item dd {
  padding: 3.2rem 0;
  position: relative;
  line-height: 1.6;
}
.contact-confirm .form-item dt::before,
.contact-confirm .form-item dd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #888 0%, #888 25%, transparent 25.1%);
  background-repeat: repeat-x;
  background-size: 4px 1px;
}
.contact-confirm .form-item:last-of-type dt::after,
.contact-confirm .form-item:last-of-type dd::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #888 0%, #888 25%, transparent 25.1%);
  background-repeat: repeat-x;
  background-size: 4px 1px;
}
.contact-confirm .form-item dt{
  font-weight: 700;
}
.contact-confirm .form-item dd{
  white-space: pre-wrap;
  word-wrap: break-word;
}
@media screen and (max-width:960px) {
  .contact-confirm .form-item{
    grid-template-columns: 10rem 1fr;
    column-gap: 1.6rem;
}
  .contact-confirm .form-item dt,
  .contact-confirm .form-item dd {
    padding: 1.6rem 0;
  }
}
.contact-confirm[hidden],
.contact-input[hidden] {
  display: none !important;
}
.wpcf7-not-valid-tip{
  margin-top:.8rem;
}



/*
------------------------------------------
 =ABOUT
------------------------------------------
*/
.profile-wrap{
  display: grid;
  grid-template-columns:22rem minmax(0,1fr);
  gap: 4rem;
  align-items: start;
}
.profile-wrap .profile-wrap__label,
.profile-wrap .profile-wrap__content{
  border-top: 1px solid var(--border-color-gray);
  padding: 6.4rem 0;
}
.profile-wrap__label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.profile-wrap__label .num{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-family-en);
  font-size: 1.4rem;
  line-height: 1;
}
.profile-wrap__label .num::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: #AEAEAE;
  flex-shrink: 0;
}
.profile-wrap__label .title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.profile-wrap__content.message .catch{
  font-size:3.6rem;
  font-weight:400;
  line-height:1.4;
  margin-bottom:3.2rem;
}
.profile-wrap__content.message .text{
  font-size:1.8rem;
  line-height: 2;
}
.profile-row{
  display: grid;
  gap: 4rem;
  grid-template-columns: 20rem auto;
  align-items:center ;
  margin-bottom:3.2rem;
}
.profile-row .pic {
  overflow: hidden;
  border-radius: var(--border-radius-8);
}
.profile-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-row .name{
  font-size:1.8rem;
  font-weight:700;
  line-height:1.4;
}
.profile-wrap__content.profile .text{
  line-height: 2;
}

.profile-wrap__content.outline {
  display: grid;
  gap: .8rem;
}
.outline-item{
  display: grid;
  grid-template-columns: 28rem 1fr;
  gap: .8rem;
}
.outline-item dt,
.outline-item dd {
  padding: 2.4rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-8);
  line-height: 1.6;
}
.outline-item .map{
  margin-top:2rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--border-radius-8)
}
.outline-item .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.profile-wrap__content.private .text{
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .profile-wrap{
    display:block;
  }
  .profile-wrap{
    border-top:1px solid var(--border-color-gray);
  }
  .profile-wrap:last-of-type{
    border-bottom:1px solid var(--border-color-gray);
  }
  .profile-wrap .profile-wrap__label,
  .profile-wrap .profile-wrap__content{
    padding:3.2rem 0;
    border:none;
  }
  .profile-wrap .profile-wrap__label{
    padding-bottom:2rem;
  }
  .profile-wrap .profile-wrap__content{
    padding-top:0;
  }

  .profile-wrap__label .title{
    font-size:1.8rem;
  }
  .profile-wrap__content.message .catch{
    font-size:2.6rem;
    margin-bottom:2rem;
  }
  .profile-wrap__content.message .text{
    font-size:1.6rem;
  }
  .profile-wrap__content.message .text br{
    display:none;
  }
  .profile-row{
    grid-template-columns:10rem 1fr;
    gap:2rem;
    margin-bottom:2.4rem;
  }
  .profile-row .name{
    font-size:1.6rem;
  }
  .profile-wrap__content.profile .text br{
    display:none;
  }
  .profile-wrap__label .num{
    font-size: 1.1rem;
  }
  .profile-wrap__label .num::after {
    content: "";
    width: 1rem;
    height: 1px;
    background: #AEAEAE;
    flex-shrink: 0;
  }
  .profile-wrap__label .title {
    font-size: 1.6rem;
  }

  .outline-item{
    grid-template-columns:1fr;
    gap:0;
  }
  .outline-item dt{
    border-radius: var(--border-radius-8) var(--border-radius-8) 0 0;
    padding:2rem 2rem 1rem;
  }
  .outline-item dd{
    border-radius:0 0 var(--border-radius-8) var(--border-radius-8) ;
    padding:0 2rem 2rem;
  }
  .outline-item .map{
    margin-top:1.6rem;
  }
  .profile-wrap__content.private .text br{
    display:none;
  }
}



/*
------------------------------------------
 =COLUMN SINGLE
------------------------------------------
*/
.single-article_header{
  border-bottom:.1rem solid var(--border-color-gray);
  margin-bottom: 4rem;
}
.single-article_header .entry-meta {
  margin-bottom: 1.4rem;
}
.single-article_header.blog .entry-meta {
  justify-content: space-between;
  gap:1.6rem;
}

.single-article_header .single-entry-date{
  display: flex;
  gap: 1.6rem;
}
.single-article_header .single-entry-date span{
  font-weight: 700;
  color:#999;
  padding-right:.6rem;
}


.single-article_header .entry-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.44;
  padding-bottom:2.4rem;
}
.single-article_body{
  line-height:1.8;
}
@media screen and (max-width: 960px) {
  .single-article_header{
    margin-bottom: 3.2rem;
  }
  .single-article_header .entry-meta {
    margin-bottom: 1rem;
  }
  .single-article_header .entry-title {
    font-size: 2.4rem;
  }
}

.single-article_body > * {
  margin-top: 2.4rem;
}
.single-article_body a:not(.related-card__link):not(.link-btn) {
  color: var(--color-black);
  text-decoration: underline;
}
.single-article_body a:not(.related-card__link):not(.link-btn):hover {
  text-decoration: none;
}
.single-article_body strong{
  font-weight: bold;
}
.single-article_body em{
  font-style: italic;
}

.single-article_body h2{
  padding-top: 3.2rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  position: relative;
  margin-top: 6.4rem;
}
.single-article_body h2::before,
.single-article_body h2::after{
  position: absolute;
  top: 0;
  content: "";
  display: block;
  height: .2rem;
}
.single-article_body h2::before {
  left: 0;
  width: 1.8rem;
  background: var(--color-black);
}
.single-article_body h2::after{
  width: calc(100% - 2.2rem);
  right: 0;
  background: var(--border-color-gray);
}
.single-article_body h3{
  border-radius: var(--border-radius-8);
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 1.4rem 2rem;
  position: relative;
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
}
.single-article_body h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  inset: 2rem auto 2rem 0;
  width: .3rem;
  background: var(--color-black);
}
.single-article_body h4 {
  border-bottom:.1rem solid var(--border-color-gray);
  font-size: 2rem;
  line-height: 1.44;
  font-weight: 700;
  padding-bottom: 1.6rem;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
}
.single-article_body h5{
  font-weight: 700;
  line-height: 1.44;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
}
.single-article_body h2 + *,
.single-article_body h3 + *,
.single-article_body h4 + *,
.single-article_body h5 + * {
  margin-top: 0;
}
@media only screen and ( max-width:960px) {
  .single-article_body h2 {
    font-size: 2rem;
    padding-top: 2.4rem;
    /* margin-bottom: 1.6rem; */
  }
  .single-article_body h3 {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
    /* margin-bottom: 1.6rem; */
  }
  .single-article_body h4 {
    font-size: 1.6rem;
    margin-top: 3.2rem;
  }
}


/* Ul list */
.single-article_body ul:not(.toc_list) > li  {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.44;
}
.single-article_body ul > li::after {
  content: '';
  display: block;
  position: absolute;
  top: .8rem;
  left: 0;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--color-black);
}
/* Ol list */
.single-article_body ol {
  counter-reset: number;
}
.single-article_body ol > li {
  position: relative;
  padding-left: 2.4rem;
  line-height: 1.44;
}
.single-article_body li:nth-of-type(n+2) {
  margin-top: .6rem;
}
.single-article_body ol > li::before {
  color:var(--color-black);
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  display: inline-block;
  content: counter(number) '.';
  font-weight: 700;
  font-family: var(--font-family-en);
}

/* Image */
.single-article_body img{
  max-width:100%;
  height:auto;
  border-radius:.8rem;
}

/* Iframe */
.single-article_body iframe{
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/* Figure */
.single-article_body figure {
  margin: 2.4rem 0 0;
}
.wp-block-columns.is-layout-flex{
  gap: 1.6rem;
}


/* wp-block-quote */
.single-article_body .wp-block-quote,
.single-article_body blockquote {
  padding: 2.4rem;
  border:.1rem solid var(--border-color-gray);
  border-radius: .8rem;
  font-size: 1.4rem;
  line-height: 1.44;
}
.single-article_body .wp-block-quote cite,
.single-article_body blockquote cite {
    opacity: .6;
    font-size: 1.2rem;
}
.single-article_body .wp-block-quote> :first-child,
.single-article_body blockquote> :first-child {
    margin-top: 0;
}
.single-article_body .wp-block-quote> :last-child,
.single-article_body blockquote> :last-child {
    margin-bottom: 0;
}
/* wp-element-caption */
.single-article_body .wp-element-caption {
    display: block;
    opacity: .6;
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}
/* Iframe */
.single-article_body iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 960px) {
  .single-article_body .wp-block-quote,
  .single-article_body blockquote {
      padding: 1.6rem;
  }
}


.article-note {
  padding:2rem;
  background:#fff;
  border:.1rem solid var(--border-color-gray);
  border-radius:var(--border-radius-8);
}
.article-note p:first-child {
  margin-top:0;
  font-weight:700;
}


/* Gutenberg Table */
.single-article_body .wp-block-table {
  overflow: hidden;
  border: 1px solid var(--border-color-gray);
  border-radius: var(--border-radius-8);
}
.wp-block-table thead {
  border-bottom: none;
}
.single-article_body .wp-block-table table {
  width: 100%;
  table-layout: fixed;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
}
.single-article_body .wp-block-table th,
.single-article_body .wp-block-table td {
  padding: 1.5rem 2rem;
  border: none;
  border-bottom: 1px solid var(--border-color-gray);
  font-size: 1.5rem;
  line-height: 1.6;
  vertical-align: middle;
}
.single-article_body .wp-block-table thead th {
  background: #D7D7D7;
  font-weight: 700;
  text-align: left;
}
.single-article_body .wp-block-table th + th,
.single-article_body .wp-block-table td + td {
  border-left: 1px solid var(--border-color-gray);
}
.single-article_body .wp-block-table tbody tr:last-child td {
  border-bottom: none;
}
.single-article_body .wp-block-table p {
  margin: 0;
}
@media screen and (max-width: 960px) {
.single-article_body .wp-block-table {
    overflow:hidden;
  }
  .single-article_body .wp-block-table table {
    min-width:0;
  }
  .single-article_body .wp-block-table th,
  .single-article_body .wp-block-table td {
    font-size:1.2rem;
    padding:1rem;
  }
}



/* Gutenberg Button */
.wp-block-buttons{
  margin: 2.4rem auto 0;
  text-align: center;
}
.wp-block-button {
  margin: 0;
}
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 0;
  padding: 3rem 3rem;
  color: #fff !important;
  border:.2rem solid var(--color-black);
  background-color: var(--color-black);
  border-radius: 999px;
  font-size: 1.5rem;
  min-width: 32rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none!important;
  transition:
    transform .35s cubic-bezier(.43,.05,.17,1),
    background-color .3s ease;
}
/* 矢印 */
.wp-block-button__link::after {
  content: "";
  width: .9rem;
  height: .9rem;
  flex-shrink: 0;
  background-color: #fff;
  -webkit-mask-image: url("../img/icon/next-arrow-w.svg");
  mask-image: url("../img/icon/next-arrow-w.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform .35s cubic-bezier(.43,.05,.17,1);
}

@media (hover:hover){
  .wp-block-button__link:hover {
    color: var(--color-black) !important;
    background-color: #fff;
  }
  .wp-block-button__link:hover::after {
    background-color: var(--color-black);
    transform: translateX(.5rem);
  }
}
@media (hover:none){
  .wp-block-button__link:active {
    transform: scale(.96);
  }
}

.single-article_body details {
  margin-top:1.6rem;
  padding:1.6rem 2rem;
  border:1px solid var(--border-color-gray);
  border-radius:var(--border-radius-8);
}
.single-article_body summary {
  cursor:pointer;
  font-weight:700;
}

.single-article-contact{
  background-color: var(--color-black);
  border-radius: var(--border-radius-8);
  padding:4rem 2.4rem;
  text-align: center;
  color: #fff;
  margin-top:6.4rem;
}
.single-article-contact .title{
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:1.6rem;
}
.single-article-btn{
  text-align: center;
  margin-top: 2.4rem;
}
.single-article-contact .link-btn{
  min-width: 32rem;
}
@media screen and (max-width: 960px) {
.single-article-contact{
  padding:2.4rem;
  margin-top:6.4rem;
}
.single-article-contact .title{
  font-size: 2rem;
  margin-bottom:1.2rem;
}
.single-article-btn{
  margin-top: 2.4rem;
}
}




.side-column .contact-box{
  background: var(--color-black);
  color:var(--color-white);
  padding:2.4rem;
  border-radius: var(--border-radius-8);
}
.contact-box_header  {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:1.6rem;
  text-align: center;
}
.contact-box_btn{
  width:100%;
}

@media (hover: none) {
  .contact-box_btn:active{
    transform: scale(.95);
    transition: transform 0.1s ease;
    color: var(--color-black);
  }
}
@media only screen and ( max-width:960px) {
  .side-column .contact-box{
    display: none;
  }
  .contact-box_header  {
    font-size: 1.8rem;
  }
}


.side-box{
  padding:1.6rem 2.4rem 2.4rem;
  background: rgba(84, 84, 84, 0.1);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-8);
}
.side-title{
  position:relative;
  margin-bottom:.6rem;
  padding:.6rem 0 .6rem 1rem;
  color:var(--color-black);
  font-size:2rem;
  font-weight:700;
  line-height:1.4;
}
.side-title::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:.3rem;
  height:1.8rem;
  background:var(--color-black);
  border-radius:999px;
  transform:translateY(-50%);
}
@media only screen and ( max-width:960px) {

}


.side-column aside:not(:first-child) {
   margin-top: 4rem;
}

.side-column .filter-list{
  gap: .8rem;
}
.side-column .filter-list li a{
  justify-content:flex-start;
}


#p-blog-single,#p-works-single{
  margin-top:12rem;
}
@media only screen and ( max-width:960px) {
  #p-blog-single,#p-works-single{
    margin-top:0rem;
  }
}


.credit-box{
  padding:.8rem;
  background:rgba(84,84,84,.4);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--border-radius-8);
  backdrop-filter:blur(12px);
}
.credit-box .title{
  position:relative;
  margin-bottom:.6rem;
  padding:.6rem 0 .6rem 1rem;
  color:var(--color-white);
  font-size:1.8rem;
  font-weight:700;
  line-height:1.4;
}
.credit-box .title::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:.3rem;
  height:1.8rem;
  background:var(--color-white);
  border-radius:999px;
  transform:translateY(-50%);
}
.credit-box .credit-content{
  padding:2rem;
  background:var(--color-white);
  border-radius:calc(var(--border-radius-8) - .2rem);
}
.credit-box dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: .4rem;
  margin-bottom: 0 !important;
  font-size: 1.4rem;
}
.credit-box dl dt,
.credit-box dl dd {
  position: relative;
  line-height: 1.6;
}
.credit-box dl dt {
  padding: 1.2rem 0 0;
  font-weight: 700;
}
.credit-box dl dd {
  padding: 0 0 1.2rem;
  overflow-wrap: anywhere;
}
.credit-box dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(
    to right,
    #888 0%,
    #888 25%,
    transparent 25.1%
  );
  background-repeat: repeat-x;
  background-size: 4px 1px;
}
.credit-box dl:last-of-type dd::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(
    to right,
    #888 0%,
    #888 25%,
    transparent 25.1%
  );
  background-repeat: repeat-x;
  background-size: 4px 1px;
}
.credit-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  max-width: 100%;
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}
.credit-link span {
  min-width: 0;
  overflow-wrap: anywhere;
  background-image: linear-gradient(
    currentColor,
    currentColor
  );
  background-position: 100% 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size .6s cubic-bezier(.17, .935, .305, 1);
}
.credit-link::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("../img/icon/blanklink.svg") center / contain no-repeat;
          mask: url("../img/icon/blanklink.svg") center / contain no-repeat;
  transition: transform .4s cubic-bezier(.43, .05, .17, 1);
}

@media (hover: hover) {
  .credit-link:hover span,
  .credit-link:focus-visible span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
  .credit-link:hover::after,
  .credit-link:focus-visible::after {
    transform: translate(.2rem, -.2rem);
  }
}
@media (hover: none) {
  .credit-link:active {
    opacity: .65;
  }
}

@media only screen and ( min-width:961px) {
  .single-article .credit-box{
     display: none;
  }
}
@media only screen and ( max-width:960px) {
  .side-column .credit{
    display: none;
  }
  .single-article .credit-box{
    margin-top:4rem;
  }
}

.related-entry{
  background-color: var(--color-white);
  padding:6.4rem 0;
  margin-top:12rem;
}
@media only screen and ( max-width:960px) {
  .related-entry{
    padding:4rem 0;
    margin-top:8rem;
  }
}
#p-privacy {
  line-height:1.8;
}
