@charset "utf-8";

/* ----------------------------------------------------------
 base css
---------------------------------------------------------- */

/* root
--------------------------------------- */
:root {
  --white: #FFFFFF;
  --black: #222222;
  --gray: #CCCCCC;
  --lightgray: #EFEFEF;
  --darkgray: #999999;
  --orange: #EE6C46;
  --mediumorange: #F8CBAD;
  --lightorange: #FBE5D6;
  --yellow: #FFF2CC;
  --blue: #3C3E89;
  --lightblue: #BECEC5;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

/* body,responsive
--------------------------------------- */
html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 175%;
}
body {
  overflow-x: hidden;
  color: var(--black);
}
.container {
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */  
  body,.container {
    min-width: 1200px;
  }
  .sp {
    display: none !important;
  }
  .wrap {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  html,p {
    text-align: left;
  }
  body {
    min-width: initial;
  }
  .pc {
    display: none !important;
  }
  .wrap {
    width: 80%;
    margin: 0 auto;
  }
  .swiper-mobile {
    overflow: hidden;
  }
}

/* reset,base settings
--------------------------------------- */
main {
  position: relative;
  top: 0;
  z-index: 2;
}
a {
  display: block;
  color: var(--color-black);
  transition: 0.3s;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* ul,ol
--------------------------------------- */
/* エディター内で書いたul,olに対する設定 */
.editor-contents ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.editor-contents ul li:before {
  content: "・";
}
.editor-contents ol {
  list-style: none;
  counter-reset: list-counter;
}
.editor-contents ol > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.25em;
}
.editor-contents ol > li:before {
  content: counter(list-counter) ". ";
  position: absolute;
  left: 0;
  width: 2em;
  text-align: right;
}
.editor-contents a {
  display: inline;
  text-decoration: underline;
}

/* テンプレートにおけるul,ol設定 */
ul.caution li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.caution li:before {
  content: "※";
}
ul.check li {
  position: relative;
  margin-bottom: 0.25rem;
  padding-left: 1.5rem;
  text-align: left;
}
ul.check li:before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  display: block;
  width: 1.125em;
  height: 1.125em;
  background: url(../images/icon-check.svg) no-repeat center center / contain;
}

/* font,text,title
--------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-weight: var(--fw-semibold);
  line-height: 1.75em;
}
h1 .en,h2 .en,h3 .en,h4 .en,h5 .en,h6 .en {
  font-weight: var(--fw-medium);
}
.en {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
}
.orange { color: var(--orange); }
.title-default {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
  font-weight: var(--fw-semibold);
}
.title-default span {
  display: inline-block;
  position: relative;
}
.title-default span.en {
  font-size: 2.5rem;
  line-height: 1.125em;
}
.title-default span.en:before {
  content: "";
  position: absolute;
  left: -3rem;
  top: 50%;
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--gray);
}
.title-default span.ja {
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.title-default.title-center {
  align-items: center;
}
.title-default.title-center span.en:after {
  content: "";
  position: absolute;
  right: -3rem;
  top: 50%;
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--gray);
}

@media screen and (max-width: 768px) { /* -- sp -- */
  .title-default span.en {
    font-size: 2.25rem;
    line-height: 1.125em;
  }
}


/* button
--------------------------------------- */
.button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding: 0.85em 8em 0.85em 1.75em;
  border: 1px solid var(--gray);
  border-radius: 3em;
  background-color: var(--white);
  font-size: 0.95rem;
}
.button a:hover {
  color: var(--orange);
  transform: translateX(0.5rem);
  transition: .3s;
}
.button a:after {
  content: "";
  position: absolute;
  right: 1.25em;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/arrow.svg) no-repeat center center / contain;
}
.button a .ja {
  font-weight: var(--fw-medium);
}
/* back button */
.button.back a:after {
  transform: scale(-1, 1);
}
.button.external-link a:after {
  content: "";
  position: absolute;
  right: 1.5em;
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../images/external-link.svg) no-repeat center center / contain;
}
/* hover */
.hover {
  transition: 0.3s;
}
.hover:hover {
  transform: translateX(1em);
  transition: 0.3s;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  .button {
    text-align: center;
  }
  .button a {
    width: 85%;
    padding: 0.85em 4em 0.85em 1.75em;
  }
}


/* Bubble
--------------------------------------- */
.bubble-right {
  position: absolute;
  width: 80%;
  height: auto;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  margin-left: 20%;
  background: url(../images/bg-right.svg) no-repeat top right / contain;
}
.bubble-right .bubble-wrap {
  position: absolute;
  top: 5%;
  right: -30%;
  width: 130%;
  height: 60%;
  transform: rotate(23.5deg);
}
.bubble-right .background {
  position: absolute;
  top: 0;
  right: -5%;
  z-index: 0;
}
.bubble-left {
  position: absolute;
  width: 55%;
  height: auto;
  aspect-ratio: 1.5 / 1;
  display: flex;
  align-items: center;
  background: url(../images/bg-left.svg) no-repeat top left / contain;
}
.bubble-left .bubble-wrap {
  position: absolute;
  top: -5%;
  left: -37.5%;
  width: 150%;
  height: 80%;
  transform: rotate(-37.5deg) scale(-1, 1);
}
.bubble-left .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media screen and (max-width : 768px) { /* -- sp -- */
  .bubble-right .bubble-wrap img {
    width: 100vw;
    height: 100%;
  }
  .bubble-right .bubble-wrap {
    position: absolute;
    top: -20vw;
    right: initial;
    left: -30vw;
    width: 200%;
    height: 75vw;
    transform: rotate(32.5deg);
  }
  .bubble-left .bubble-wrap img {
    width: 100vw;
    height: 100%;
  }
  .bubble-left .bubble-wrap {
    position: absolute;
    top: -20vw;
    left: -30vw;
    width: 200%;
    height: 75vw;
    transform: rotate(-42.5deg) scale(1, -1);
  }
}


/* fadein
--------------------------------------- */
body main {
  opacity: 0;
  filter: blur(10px);
  animation: pageFade 1s ease-in-out forwards;
}
@keyframes pageFade {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate(0, 30px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) { /* -- sp -- */
  body.home main {
    opacity: 0;
    filter: blur(10px);
    animation: HomeFade 3s ease-in-out forwards;
  }
  @keyframes HomeFade {
    from {
      opacity: 0;
      filter: blur(10px);
    }
    to {
      opacity: 1;
      filter: blur(0);
    }
  }
}


/* ----------------------------------------------------------
 header
---------------------------------------------------------- */
header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: .3s;
}
header.is-animation {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  transition: .3s;
}
header .sitetitle {
  position: relative;
  z-index: 1;
  width: 13.5%; 
}
header .sitetitle a {
  transition: .3s;
}
header .sitetitle a:hover {
  transform: translateX(0.5em);
  transition: .3s;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  header {
    min-width: 1200px;
    padding: 1.5rem 0 0.75rem 1.5rem;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  header {
    width: 100%;
    height: 60px;
  }
  header .sitetitle {
    position: fixed;
    z-index: 10;
    width: 40vw;
    margin-left: 15px;
  }
  header .sitetitle a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
  }
}

.drawerbox {
  position: relative;
  z-index: 2;
}
#gloval-nav nav {
  border-radius: 3em 0 0 3em;
}
#gloval-nav ul.mainmenu {
  position: relative;
  display: flex;
  padding: 0.75em 1.5em;
}
#gloval-nav ul.mainmenu > li {
  font-weight: var(--fw-medium);
  font-size: 0.95rem;
}
#gloval-nav ul.mainmenu > li a {
  padding: 0 0.5em;
}
#gloval-nav ul.mainmenu > li:hover > a {
  color: var(--orange);
  transition: .3s;
}
#gloval-nav ul.mainmenu > li:last-child::first-letter {
  color: var(--orange);
}
#gloval-nav ul.mainmenu li div.submenu p {
  margin-right: 1rem;
}
#gloval-nav ul.mainmenu li div.submenu p a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#gloval-nav ul.mainmenu li div.submenu p span {
  display: inline-block;
  position: relative;
  font-weight: var(--fw-semibold);
}
#gloval-nav ul.mainmenu li div.submenu p span.en {
  font-size: 1rem;
  line-height: 1.125em;
}
#gloval-nav ul.mainmenu li div.submenu p span.ja {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5em;
}
#gloval-nav ul.mainmenu li div.submenu .flex ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
#gloval-nav ul.mainmenu li div.submenu .flex ul li {
  margin: 0.75rem 1em 0 0;
}
#gloval-nav ul.mainmenu li div.submenu .flex ul li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: var(--fw-medium);
}
#gloval-nav ul.mainmenu li div.submenu a:hover {
  color: var(--orange);
  transition: .3s;
}
#gloval-nav ul.mainmenu li div.submenu .flex ul li a span {
  display: inline-block;
  position: relative;
}
#gloval-nav ul.mainmenu li div.submenu .flex ul li a span.en {
  font-size: 0.95rem;
  line-height: 1.125em;
}
#gloval-nav ul.mainmenu li div.submenu .flex ul li a span.ja {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  #nav-toggle {
    display: none;
  }
  #gloval-nav ul.mainmenu > li:last-child {
    position: relative;
    margin-left: 0.5em;
    padding-left: 0.5em;
  }
  #gloval-nav ul.mainmenu > li:last-child:before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    display: block;
    width: 1px;
    height: 1.25em;
    background-color: var(--gray);
  }
  #gloval-nav ul.mainmenu li div.submenu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: -3.5rem;
    right: -1rem;
    height: auto;
    display: flex;
    justify-content: flex-end;
    padding: 7rem 2rem 0 2rem;
    box-sizing: border-box;
    transition: .3s;
  }
  #gloval-nav ul.mainmenu li:hover div.submenu {
    visibility: visible;
    opacity: 1;
    transition: .3s;
  }
  #gloval-nav ul.mainmenu li div.submenu .flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 2rem 1.5rem 2rem;
    border-radius: 10em;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  }
  #gloval-nav ul.mainmenu li div.submenu .flex ul {
    flex: 1;
    padding-left: 1rem;
  }
  #gloval-nav ul.mainmenu li div.submenu .flex ul:after {
    content: "";
    display: block;
    width: 1px;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 0;
    background-color: rgba(00, 00, 00, 0.1);
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  .drawerbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .drawerbox.active {
    z-index: 100;
  }
  #nav-toggle div {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 60px;
    height: 60px;
  }
  #nav-toggle div span {
    position: absolute;
    left: 15px;
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--black);
  }
  #nav-toggle div span:nth-of-type(1) {
    top: 25px;
  }
  #nav-toggle div span:nth-of-type(2) {
    top: 35px;
  }
  .active #nav-toggle div span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 35px;
    transition: .3s;
  }
  .active #nav-toggle div span:nth-of-type(2) {
    transform: rotate(-45deg);
    transition: .3s;
  }
  #gloval-nav {
    visibility: hidden;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.975);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .drawerbox.active #gloval-nav {
    display: block;
  }
  #gloval-nav nav {
    height: 100%;
  }
  #gloval-nav ul.mainmenu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  #gloval-nav ul.mainmenu > li {
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid var(--gray);
    font-size: 5vw;
    text-align: left;
  }
  #gloval-nav ul.mainmenu > li a,
  #gloval-nav ul.mainmenu > li p.sp {
    padding: 0.5em 0;
  }
  #gloval-nav ul.mainmenu > li p.sp {
    position: relative;
  }
  #gloval-nav ul.mainmenu > li p.sp:after {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid var(--gray);
    border-right: 2px solid var(--gray);
    content: "";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    transition: .3s;
  }
  #gloval-nav ul.mainmenu > li p.sp.open {
    padding-top: 1rem;
  }
  #gloval-nav ul.mainmenu > li p.sp.open:after {
    transform: translateY(-50%) rotate(-45deg);
    transition: .3s;
  }
  #gloval-nav ul.mainmenu li div.submenu .flex ul {
    margin-bottom: 1rem;
  }
  #gloval-nav ul.mainmenu li div.submenu .flex ul li {
    width: calc((100% - 1rem) / 2);
    margin: 0;
  }
  #gloval-nav ul.mainmenu li div.submenu .flex ul li:nth-child(odd) {
    margin-right: 1rem
  }
  #gloval-nav ul.mainmenu li div.submenu .flex ul li a {
    padding: ;
  }
}


/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */

/* Contact
--------------------------------------- */
.footer-contact {
  position: relative;
  margin: 4rem 0 6rem 0;
}
body.contact .footer-contact {
  margin: 0;
}
.footer-contact .box {
  position: relative;
  z-index: 1;
  text-align: center;
}
.footer-contact .footer-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer-contact .footer-bg img {
  width: 100%;
  height: auto;
}
.footer-contact .background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-contact h2 {
  margin-bottom: 2rem;
}
.footer-contact h2 .ja {
  color: var(--orange);
}

@media screen and (max-width : 768px) { /* -- sp -- */
  .footer-contact .box {
    padding: 0 10% 2rem 10%;
  }
  .footer-nav .brand a span {
    padding: 0;
  }
  .footer-contact {
    width: 100vw;
    overflow-x: hidden;
  }
  .footer-contact .footer-bg {
    position: relative;
    width: 200%;
    height: auto;
    aspect-ratio: 3 / 1;
    overflow: hidden;
  }
  .footer-contact .footer-bg img {
    width: 100vw;
    height: 100%;
  }
}

/* Footer Nav
--------------------------------------- */
.footer-nav {
  position: relative;
  display: flex;
  padding: 2rem 2rem 3rem 2rem;
}
.footer-nav .totop {
  position: absolute;
  bottom: 3rem;
  right: 2em;
}
.footer-nav .totop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6em;
  height: 6em;
  border-radius: 100%;
  background-color: var(--white);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}
.footer-nav .totop a:hover {
  color: var(--orange);
}
.footer-nav .totop a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--orange);
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.footer-nav .brand {
  display: flex;
  flex-direction: column;
  margin-right: 3vw;
}
.footer-nav .brand a img {
  width: 260px;
}
.footer-nav .brand a span {
  display: block;
  padding: 0.25em;
}
.footer-nav .brand small {
  margin-top: auto;
}
.footer-nav nav {
  flex: 1;
  display: flex;
}
.footer-nav nav > ul {
  margin: 0 3vw;
}
.footer-nav nav ul li {
  margin: 0.225rem 0;
}
.footer-nav nav > ul > li:first-child {
  margin-top: 0;
}
.footer-nav nav > ul > li:last-child {
  margin-bottom: 0;
}
.footer-nav nav ul li a {
  display: flex;
  align-items: center;
}
.footer-nav nav ul li a:hover {
  color: var(--orange);
  transition: .3s;
}
.footer-nav nav ul li a .en {
  position: relative;
  font-weight: var(--fw-semibold);
}
.footer-nav nav ul li a .en:before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 50%;
  display: block;
  width: 1rem;
  height: 1px;
  background-color: var(--gray);
}
.footer-nav nav ul li a .en {
  font-size: 0.9rem;
}
.footer-nav nav ul li a .ja {
  font-size: 0.9rem;
}
.footer-nav nav ul:nth-of-type(1) li a .en {
  width: 6.5rem;
}
.footer-nav nav ul:nth-of-type(1) li > ul {
  padding-left: 6.5rem;
}
.footer-nav nav ul:nth-of-type(2) li a .en {
  width: 8.5rem;
}
.footer-nav nav ul:nth-of-type(2) li > ul {
  padding-left: 8.5rem;
}


/* ----------------------------------------------------------
 Home / front-page.php
---------------------------------------------------------- */

/* opening
--------------------------------------- */
.opening {
  position: fixed;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.opening div.img {
  width: 16rem;
  opacity: 0;
}
.opening div.img img {
  width: 100%;
  height: auto;
}
.opening p.text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
  line-height: 1em;
  opacity: 0;
}
.opening p.text .en {
  display: block;
  font-weight: var(--fw-semibold);
  font-size: 3.5rem;
  line-height: 1em;
}

@media screen and (max-width : 768px) { /* -- sp -- */
  .opening p.text {
    width: 100%;
    left: 0;
    transform: translateX(0);
    text-align: center;
  }
  .opening p.text .en {
    font-size: 2.5rem;
  }
}


/* firstview
--------------------------------------- */
.firstview {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  margin: 0;
  background: url(../images/bg.svg) no-repeat center 40% / 100%;
  overflow: hidden;
}
.firstview:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -5vw;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg-a.svg) no-repeat top left / contain;
  opacity: 0.25;
}
.firstview .bubble {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 50%;
}
.firstview .bubble .background {
  top: 0;
  left: 0;
  z-index: 0;
}
.firstview .flex {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
}
.firstview .flex .left {
  width: 50%;
  padding-left: 4rem;
}
.firstview .flex .left h2 .en {
  font-weight: var(--fw-semibold);
  font-size: max(4.5vw, 50px);
  line-height: 1.5em;
}
.firstview .flex .left h2 .ja {
  display: block;
  font-weight: var(--fw-medium);
  font-size: max(1.15vw, 1.15rem);
  letter-spacing: 0.15em;
}
.firstview .swipercontainer {
  width: 50%;
  height: auto;
  padding: 2rem 0 2rem 0.5rem;
  text-align: right;
  overflow: hidden;
}
.firstview .swipercontainer ul {
  border-radius: 30em 0 0 30em;
  box-shadow: var(--shadow);
}
.firstview .swipercontainer li {
  height: auto;
}
.firstview .swipercontainer li figure {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.75;
  border-radius: 30em 0 0 30em;
  background-color: var(--white);
  overflow: hidden;
}
.firstview .swipercontainer li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.firstview .down {
  position: absolute;
  left: 3rem;
  bottom: 2rem;
}
.firstview .down:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 1px;
  height: 3rem;
  background-color: var(--gray);
}
.firstview .down:after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--orange);
  border-radius: 100%;
  animation: scrolldwon 1.5s infinite;
}
@keyframes scrolldwon {
  0% {
    bottom: 3rem;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  .firstview {
    min-height: 650px;
    max-height: 800px;
  }
  .firstview .bubble {
    top: 50%;
    left: 0;
    transform: translateY(-50%) !important;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  .firstview {
    align-items: flex-start;
    background: url(../images/bg.svg) no-repeat center bottom 15vh / 150%;
  }
  .firstview:before {
    left: initial;
    width: 175%;
    right: -75%;
    background: url(../images/bg-a.svg) no-repeat bottom right / contain;
}
  .firstview .bubble {
    bottom: 5vh;
    width: 200%;
    height: 35%;
  }
  .firstview .flex {
    flex-direction: column;
    align-items: initial;
  }
  .firstview .flex .left {
    order: 2;
    width: 100%;
    padding: 4rem 2rem 2rem 2rem;
  }
  .firstview .flex .left h2 .en {
    font-size: 14vw;
    line-height: 1em;
  }
  .firstview .flex .left h2 .ja {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
  .firstview .swipercontainer {
    order: 1;
    width: 85%;
    margin: 0 auto 0 15%;
    padding: 0;
  }
  .firstview .swipercontainer li figure {
    overflow: hidden;
  }
  .firstview .swipercontainer li figure img {
    width: 100%;
    border-radius: 15em 0 0 15em;
  }
  .firstview .down {
    left: initial;
    right: 2rem;
  }
}


/* AUCENTについて
--------------------------------------- */
main.home .aucent {
  position: relative;
  margin: 6rem 0;
}
main.home .aucent figure {
  border-radius: 0 30em 30em 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
main.home .aucent figure img {
  height: 100%;
  object-fit: cover;
}
main.home .aucent .wrap h2 .en {
  font-size: 2rem;
}
main.home .aucent .wrap h2 .en:before {
  top: 0.5em;
}
main.home .aucent .wrap h3 {
  margin-bottom: 1.5rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
}
main.home .aucent .wrap .button {
  text-align: right;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.home .aucent .wrap {
    position: relative;
    z-index: 1;
    padding: 6rem 0 4rem 37em;
  }
  main.home .aucent .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 25%;
    display: block;
    width: 200%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 20em 0 0 20em;
    background-color: var(--white);
  }
  main.home .aucent figure {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: 38em;
    height: auto;
    aspect-ratio: 1 / 0.85;
    overflow: hidden;
    transform: translateY(-50%);
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .aucent {
    display: flex;
    flex-direction: column;
  }
  main.home .aucent h2 .en {
    line-height: 1.05em;
    margin-bottom: 0.125em;
  }
  main.home .aucent figure {
    order: 1;
    width: 85%;
    margin-top: 4rem;
    margin-right: 15%;
  }
  main.home .aucent .wrap .button {
    text-align: center;
  }
}


/* Business
--------------------------------------- */
main.home .business {
  padding: 4rem 0 0 0;
}
main.home .business > .flex {
  display: flex;
  align-items: center;
}
main.home .business > .flex .left {
  width: 36rem;
}
main.home .business > .flex h3 {
  margin-bottom: 1rem;
  font-weight: var(--fw-medium);
  font-size: 1.25rem;
}
main.home .business > .flex figure {
  width: calc(100% - 36rem);
  margin: 0 auto;
  padding-left: 2rem;
}
main.home .business-consulting h3 .en:first-letter,
main.home .business-consulting h3 .ja,
main.home .business-platform h3 .en:first-letter,
main.home .business-platform h3 .ja {
  color: var(--orange);
}
/* Consulting */
main.home .business-consulting {
  margin-top: 8rem;
  padding: 8rem 0;
  background-color: var(--lightgray);
}
main.home .business-consulting h3 {
  margin-bottom: 1rem;
}
main.home .business-consulting h3 + p {
  font-size: 1rem;
  text-align: center;
}
main.home .business-consulting h3 + p + p.button {
  margin-bottom: 5rem;
  text-align: center;
}
main.home .business-consulting .flex {
  position: relative;
} 
main.home .business-consulting .flex figure {
  border-radius: 0 50em 50em 0;
  box-shadow: var(--shadow);
}
main.home .business-consulting .flex figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 50em 50em 0;
}
main.home .business-consulting h4 {
  margin-bottom: 2rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
}
main.home .business-consulting .flex .wrap .button {
  display: flex;
  flex-wrap: wrap;
}
main.home .business-consulting .flex .wrap .button a {
  width: 17em;
  margin-right: 1rem;
  padding-right: 2em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.home .business-consulting .flex .wrap {
    padding: 5rem 0 5rem 43vw;
  }
  main.home .business-consulting .flex .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 20em 0 0 20em;
    background-color: var(--white);
    transform: translateX(-15vw);
  }
  main.home .business-consulting .flex figure {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    width: 43vw;
    height: auto;
    aspect-ratio: 2 / 1.5;
    overflow: hidden;
    transform: translateY(-50%);
  }
  main.home .business-consulting .flex .wrap .button a:nth-of-type(2n) {
    margin-right: auto;
  }
  main.home .business-consulting .flex .wrap .button a:nth-of-type(n+3) {
    margin-top: 1rem;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .business-consulting {
    margin-top: 6rem;
    padding: 6rem 0;
  }
  main.home .business-consulting h3 + p + p.button {
    margin-bottom: 3rem;
  }
  main.home .business-consulting .flex figure {
    width: 85%;
    margin-left: 15%;
    margin-bottom: 3rem;
    aspect-ratio: 2 / 1.5;
    border-radius: 50em 0 0 50em;
    overflow: hidden;
  }
  main.home .business-consulting .flex figure img {
    border-radius: 50em 0 0 50em;
  }
  main.home .business-consulting .flex .wrap .button {
    flex-direction: column;
    margin-top: 2rem;
  }
  main.home .business-consulting .flex .wrap .button a {
    width: 85%;
    margin: 0 auto 1rem auto;
  }
}


/* Platform */
main.home .business-platform {
  padding: 8rem 0;
}
main.home .business-platform h3 {
  margin-bottom: 1rem;
}
main.home .business-platform h3 + p {
  font-size: 1rem;
  text-align: center;
}
main.home .business-platform h3 + p + p.button {
  margin-bottom: 5rem;
  text-align: center;
}
main.home .business-platform .flex {
  position: relative;
} 
main.home .business-platform .flex figure {
  border-radius: 50em 0 0 50em;
  box-shadow: var(--shadow);
}
main.home .business-platform .flex figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50em 0 0 50em;
}
main.home .business-platform h4 {
  margin-bottom: 2rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
}
main.home .business-platform .flex .wrap .button {
  display: flex;
}
main.home .business-platform .flex .wrap .button a {
  width: 23em;
  margin-right: 1rem;
  padding-right: 2em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.home .business-platform .flex .wrap {
    padding: 5rem 40vw 5rem 0;
  }
  main.home .business-platform .flex .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 50%;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 0 20em 20em 0;
    background-color: var(--white);
    transform: translateX(15vw);
  }
  main.home .business-platform .flex figure {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    width: 43vw;
    height: auto;
    aspect-ratio: 2 / 1.5;
    transform: translateY(-50%);
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .business-platform {
    padding: 6rem 0;
  }
  main.home .business-platform .flex {
    display: flex;
    flex-direction: column;
  }
  main.home .business-platform .flex figure {
    order: 1;
    width: 85%;
    margin-right: 15%;
    margin-bottom: 3rem;
    aspect-ratio: 2 / 1.5;
    border-radius: 0 50em 50em 0;
    overflow: hidden;
  }
  main.home .business-platform .flex figure img {
    border-radius: 0 50em 50em 0;
  }
  main.home .business-platform .flex .wrap {
    order: 2;
  }
  main.home .business-platform .flex .wrap .button {
    flex-direction: column;
    margin-top: 2rem;
  }
  main.home .business-platform .flex .wrap .button a {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}


/* AUCENT Views
--------------------------------------- */
main.home .views {
  padding: 0 0 8rem 0;
}
main.home .views > figure img {
  aspect-ratio: 4 / 1;
  object-fit: cover;
}
main.home .views .flex .right ul li {
  margin: 0 4rem 2rem 0;
  border: 1px solid var(--gray);
  border-radius: 10em;
  background-color: var(--white);
  overflow: hidden;
}
main.home .views .flex .right ul li a {
  display: flex;
}
main.home .views .flex .right ul li a figure {
  width: 32.5%;
  aspect-ratio: 1.125 / 1;
  overflow: hidden;
}
main.home .views .flex .right ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: .3s;
}
main.home .views .flex .right ul li a:hover figure img {
  transform: scale(1.1);
  transition: .3s;
}
main.home .views .flex .right ul li a .post-inner {
  position: relative;
  padding: 1rem 4rem 1rem 1rem;
  flex: 1;
}
main.home .views .flex .right ul li a .post-inner:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: -0.5625rem;
  background: url(../images/arrow.svg) no-repeat center center / contain;
}
main.home .views .flex .right ul li a .post-inner time {
  color: var(--darkgray);
}
main.home .views .flex .right ul li a .post-inner .category {
  margin-left: auto;
  padding: 0.25em 1em;
  border-radius: 2em;
  background-color: var(--lightgray);
  font-weight: var(--fw-regular);
  font-size: 0.8rem;
}
main.home .views .flex .right ul li a:hover .post-inner .category {
  color: var(--black);
}
main.home .views .flex .right ul li a .post-inner h3 {
  margin: 0.5rem 0 0 0;
  font-weight: var(--fw-regular);
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.home .views .flex {
    display: flex;
    align-items: center;
    margin: 8rem auto 0 auto;
  }
  main.home .views .flex .left {
    padding-right: 4rem;
  }
  main.home .views .flex .right {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  main.home .views .flex .right ul li:last-child {
    margin: 2rem 0 0 4rem
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .views {
    padding: 6rem 0;
  }
  main.home .views .flex .right {
    margin-top: 3rem;
  }
  main.home .views .flex .right ul li {
    margin: 0 0 1rem 0;
    border-radius: 1rem;
  }
  main.home .views .flex .right ul li:nth-child(2n) {
    display: none;
  }
  main.home .views .flex .right ul li a {
    flex-direction: column;
  }
  main.home .views .flex .right ul li a figure {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
  }
}


/* News
--------------------------------------- */
main.home .news {
  padding: 6rem 0;
  background-color: var(--lightgray);
}
main.home .news .wrap.flex {
  margin-bottom: 3rem;
}
main.home .news .wrap.flex h2 {
  margin-bottom: 0;
}
main.home .news .wrap.flex .button a {
  margin-top: 0;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.home .news .wrap.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .news .wrap.flex h2 {
    margin-bottom: 2rem;
  }
  main.home .news .swiper-container {
    width: 80%;
    margin: 0 auto;
  }
}


/* Recruit
--------------------------------------- */
main.home .recruit {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 0 0 0;
}
main.home .recruit figure {
  border-radius: 30em 0 0 30em;
  box-shadow: var(--shadow);
}
main.home .recruit figure img {
  height: 100%;
  object-fit: cover;
  border-radius: 30em 0 0 30em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.home .recruit figure {
    width: 45vw;
    margin-left: 55vw;
  }
  main.home .recruit .wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.home .recruit {
    flex-direction: column;
    padding: 0;
  }
  main.home .recruit figure {
    order: 1;
    width: 85%;
    margin-left: 15%;
    margin-bottom: 3rem;
  }
  main.home .recruit .wrap {
    order: 2;
  }
}


/* ----------------------------------------------------------
 About us / page-about.php
---------------------------------------------------------- */
main.about h1 {
  margin-bottom: 3rem;
}

/* Mission
--------------------------------------- */
main.about .mission {
  text-align: center;
}
main.about .mission figure {
  margin: 4rem 0 2rem 0;
}
main.about .mission figure img {
  aspect-ratio: 3.5 / 1;
  object-fit: cover;
  object-position: 50% 45%;
}
main.about .mission h2 {
  margin: 4rem 0 2rem 0;
}
main.about .mission h3 {
  margin: 2rem 0;
  font-weight: var(--fw-medium);
  font-size: 2rem;
  line-height: 1.125em;
}
main.about .mission h4 {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.75em;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.about .mission h3 {
    font-size: 1.75rem;
  }
}


/* Vision
--------------------------------------- */
main.about .vision {
  text-align: center;
}
main.about .vision figure {
  margin: 4rem 0 2rem 0;
}
main.about .vision figure img {
  aspect-ratio: 2.5 / 1;
  object-fit: cover;
  object-position: center 30%;
}
main.about .vision h2 {
  margin: 4rem 0 2rem 0;
}
main.about .vision h3 {
  margin: 2rem 0;
  font-size: 1.85rem;
  line-height: 1.125em;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.about .vision h3 {
    font-size: 1.5rem;
  }
}


/* Company Profile
--------------------------------------- */
main.about .profile {
  margin: 8rem 0;
}
main.about .profile .box > dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
main.about .profile .box > dl > dt {
  width: 9em;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid  var(--gray);
  font-weight: var(--fw-semibold);
}
main.about .profile .box > dl > dt:last-of-type {
  border-bottom: 0;
}
main.about .profile .box > dl > dd {
  width: calc(100% - 9em);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid  var(--gray);
}
main.about .profile .box > dl > dt:last-of-type + dd {
  border-bottom: 0;
}
main.about .profile .box dd dl {
  display: flex;
  flex-wrap: wrap;
}
main.about .profile .box dd dl > dt {
  width: 8em;
  padding: 0.25rem;
}
main.about .profile .box dd dl > dd {
  width: calc(100% - 8em);
  padding: 0.25rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.about .profile .box {
    width: 70em;
    margin: 0 auto;
    padding: 4rem;
    border: 1px solid var(--gray);
    border-radius: 4rem;
    background-color: var(--white);
  }
  main.about .profile .box > dl {
    width: 52em;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.about .profile {
    margin: 4rem 0;
  }
  main.about .profile .box {
    width: 80%;
    margin: 0 auto;
  }
  main.about .profile .box > dl {
    flex-direction: column;
  }
  main.about .profile .box > dl dt {
    width: 100%;
    padding-bottom: 0;
    border-bottom: 0;
  }
  main.about .profile .box > dl dd {
    width: 100%;
    padding-top: 0;
  }
  main.about .profile .box dd dl {
    margin-top: 0.5rem;
  }
  main.about .profile .box dd dl > dt {
    width: 100%;
    padding: 0;
  }
  main.about .profile .box dd dl > dd {
    width: 100%;
    margin-bottom: 0.25rem;
    padding: 0 0 0 1em;
  }
}


/* Google Map
--------------------------------------- */
main.about .map {
  width: 100%;
  margin: 6rem auto 8rem auto;
}
main.about .map iframe {
  width: 100% !important;
  height: 300px;
}


/* Top Message
--------------------------------------- */
main.about .message {
  margin-bottom: 8rem;
}
main.about .message h2 {
  margin-bottom: 5rem;
}
main.about .message .box h3 {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
main.about .message .box .right figure {
  position: relative;
  border-radius: 50em 0 0 50em;
  box-shadow: var(--shadow);
}
main.about .message .box .right figure img {
  border-radius: 50em 0 0 50em;
}
main.about .message .box .right figure figcaption {
  position: absolute;
  right: 0;
  bottom: -1.75rem;
  width: 70%;
  padding: 0.75em 0 0.75em 2em;
  border: 1px solid var(--gray);
  border-radius: 3em 0 0 3em;
  background-color: var(--white);
}
main.about .message .box .right figure figcaption .orange {
  font-weight: var(--fw-semibold);
}
main.about .message .box .right figure figcaption .name {
  margin: 0 0.5rem;
  font-weight: var(--fw-semibold);
  font-size: 1.125rem;
  line-height: 1.5em;
}
main.about .message .box .right .text {
  margin-top: 2.5em;
  color: var(--gray);
  font-weight: var(--fw-medium);
  font-size: 7vw;
  line-height: 1em;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.35;
}
main.about .message .box .right .text span {
  display: block;
  font-size: 3.5vw;
  line-height: 1.5em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.about .message h2 {
    margin-bottom: 3rem;
  }
  main.about .message .box {
    position: relative;
    margin: 4rem 0;
    padding: 6rem 0;
    border: 1px solid var(--gray);
    background-color: var(--white);
  }
  main.about .message .box .right {
    position: absolute;
    top: -4rem;
    right: 0;
    width: 45%;
  }
  main.about .message .box .left {
    width: 55%;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.about .message {
    position: relative;
    margin-bottom: 10rem;
    padding-bottom: 4rem;
  }
  main.about .message .box .right {
    margin-bottom: 4rem;
  }
  main.about .message .box .right figure {
    width: 85%;
    margin-left: 15%;
  }
  main.about .message .box .right figure figcaption .en {
    display: block;
  }
  main.about .message .box .right .text {
    position: absolute;
    right: 0;
    bottom: -1.5em;
    margin-top: 1em;
    font-size: 12vw;
    text-align: right;
  }
  main.about .message .box .right .text span.sp {
    display: inline;
  }
  main.about .message .box .right .text span {
    font-size: 6.5vw;
    line-height: 1.25em;
  }
}


/* Board Members
--------------------------------------- */
main.about .members h2 {
  margin-bottom: 3rem;
}
main.about .members ul li {
  width: calc((100% - 3rem) / 2);
  height: auto !important;
  padding: 1.5rem 2.5rem 2rem 2.5rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
}
main.about .members ul li div {
  display: flex;
  margin-bottom: 1rem;
}
main.about .members ul li .memberprofile {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.about .members ul li .memberprofile span.orange {
  font-weight: var(--fw-semibold);
}
main.about .members ul li .memberprofile span.name {
  font-weight: var(--fw-semibold);
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.about .members ul li figure {
  width: 25%;
  margin: 0;
}
main.about .members ul li figure img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 100%;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.about .members ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
  }
  main.about .members ul li:nth-child(n+3) {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.about .members ul li div {
    flex-direction: column;
    align-items: center;
  }
  main.about .members ul li figure {
    order: 1;
    width: 65%;
    margin-bottom: 0.5rem;
  }
  main.about .members ul li .memberprofile {
    order: 2;
    width: 100%;
    text-align: center;
  }
  main.about .members .swiper-button-prev:after,
  main.about .members .swiper-rtl .swiper-button-next:after {
    content: '' !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    background: url(../images/arrow.svg) no-repeat center center / contain !important;
    transform: scale(-1,1);
  }
  main.about .members .swiper-button-next:after,
  main.about .members .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    background: url(../images/arrow.svg) no-repeat center center / contain !important;
  }
}


/* ----------------------------------------------------------
 Consulting / page-consulting.php
---------------------------------------------------------- */
main.consulting h1 .en:first-letter,
main.consulting h1 .ja {
  color: var(--orange);
}
main.consulting h1 + p {
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.consulting h1 + p + figure {
  margin-top: 2rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.consulting h1 + p + figure {
    width: 55%;
    min-width: 600px;
  }
}

/* Overview
--------------------------------------- */
main.consulting .overview {
  position: relative;
  margin-top: 8rem !important;
  margin-bottom: 0;
  padding-bottom: 6rem;
}
main.consulting .overview .wrap {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
}
main.consulting .overview .flex {
  display: flex;
  align-items: flex-end;
}
main.consulting .overview .flex .left figure {
  width: 100%;
  margin-bottom: 2rem;
}
main.consulting .overview .flex .left h3 {
  margin-bottom: 1.5rem;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.consulting .overview .flex > figure img {
  width: 75%;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.consulting .overview:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 50%;
    background-color: var(--lightgray);
  }
  main.consulting .overview .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    display: block;
    width: 200%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 0 15em 15em 0;
    background-color: var(--white);
  }
  main.consulting .overview .flex .left {
    width: 55%;
    padding-right: 5rem;
  }
  main.consulting .overview .flex > figure {
    width: 45%;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.consulting .overview {
    padding-bottom: 0;
  }
  main.consulting .overview .wrap {
    padding-top: 0;
  }
  main.consulting .overview .flex {
    flex-direction: column;
  }
  main.consulting .overview .flex .left {
    order: 2;
  }
  main.consulting .overview .flex > figure {
    order: 1;
    margin-bottom: 2rem;
  }
  main.consulting .overview .flex > figure img {
    width: 90%;
    margin: 0 5%;
  }
}


/* Service Line
--------------------------------------- */
main.consulting .service {
  margin-top: 0;
  padding-bottom: 4rem;
  background-color: var(--lightgray);
}
main.consulting .service .flex ul li {
  margin-bottom: 2rem;
  border: 1px solid var(--gray);
  border-radius: 50em;
  background-color: var(--white);
}
main.consulting .service .flex ul li:last-child {
  margin-bottom: 0;
}
main.consulting .service .flex ul li a {
  position: relative;
  display: flex;
  border-radius: 50em;
  font-size: 0.9rem;
  line-height: 1.75em;
  overflow: hidden;
}
main.consulting .service .flex ul li a figure {
  width: 23.5%;
}
main.consulting .service .flex ul li a figure img {
  height: 100%;
  object-fit: cover;
}
main.consulting .service .flex ul li a div {
  width: 76.5%;
  padding: 1.5rem 6rem 1.5rem 2rem;
}
main.consulting .service .flex ul li a div h3 {
  margin-bottom: 0.5rem;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.consulting .service > .wrap {
    min-width: 1084px;
  }
  main.consulting .service .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }  
  main.consulting .service .flex h2 {
    width: 35%;
  }
  main.consulting .service .flex ul {
    width: 65%;
    max-width: 700px;
  }
  main.consulting .service .flex ul li a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.5rem;
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    transform: translateY(-50%);
    background: url(../images/arrow.svg) no-repeat center center / contain;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.consulting .service {
    padding: 6rem 0;
  }
  main.consulting .service .flex ul li {
    border-radius: 1rem;
  }
  main.consulting .service .flex ul li a {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    font-size: 1rem;
  }
  main.consulting .service .flex ul li a figure {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
  }
  main.consulting .service .flex ul li a div {
    width: 100%;
    padding: 2rem;
  }
  main.consulting .service .flex ul li a div h3 {
    position: relative;
  }
  main.consulting .service .flex ul li a div h3:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    transform: translateY(-50%);
    background: url(../images/arrow.svg) no-repeat center center / contain;
  }
}


/* Value
--------------------------------------- */
main.consulting .value {
  padding: 8rem 0 4rem 0;
}
main.consulting .value .wrap {
  position: relative;
  z-index: 1;
  margin: 4rem auto;
  padding: 6rem 0;
}
main.consulting .value .flex {
  display: flex;
  align-items: center;
}
main.consulting .value .flex div h3 .en {
  margin-bottom: 1rem;
  font-weight: var(--fw-medium);
  font-size: 2rem;
}
main.consulting .value .flex div h4 {
  margin: 2rem 0;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.consulting .value .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 200%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 10em 0 0 10em;
    background-color: var(--white);
  }
  main.consulting .value .flex figure {
    width: 40%;
    padding: 0 2rem;
  }
  main.consulting .value .flex div {
    width: 60%;
    padding-left: 2rem;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.consulting .value .wrap {
    padding: 0;
  }
  main.consulting .value .flex {
    flex-direction: column;
  }
  main.consulting .value .flex figure {
    order: 1;
    width: 90%;
    margin: 0 5% 2rem 5%;
  }
  main.consulting .value .flex div {
    order: 2;
  }
  main.consulting .value .flex div h3 .en {
    display: block;
    font-size: 1.75rem;
    line-height: 1em;
    text-align: center;
  }
}


/* Leverage Consulting
--------------------------------------- */
main.consulting .leverage {
  text-align: center;
}
main.consulting .leverage figure {
  width: 70%;
  margin: 4rem auto;
}
main.consulting .leverage section:nth-of-type(1) {
  margin-bottom: 2rem;
}
main.consulting .leverage section ul {
  padding: 2rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.consulting .leverage section {
    display: flex;
    align-items: center;
    width: 75%;
    margin: 0 auto;
  }
  main.consulting .leverage section h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11.5em;
  }
  main.consulting .leverage section h3 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    color: var(--white);
    background-color: var(--orange);
    font-weight: var(--fw-medium);
    font-size: 1.15rem;
    line-height: 1.5em;
  }
  main.consulting .leverage section ul {
    width: calc((100% - 12.5em) - 2rem);
    margin-left: 2rem;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.consulting .leverage figure {
    width: 100%;
  }
  main.consulting .leverage section h3 {
    margin-bottom: 1rem;
    border-radius: 1rem;
    color: var(--white);
    background-color: var(--orange);
  }
  main.consulting .leverage section h3 span {
    display: block;
    padding: 0.5em 0;
    font-weight: var(--fw-medium);
    font-size: 1.15rem;
    line-height: 1.5em;
  }
  main.consulting .leverage section ul {
    border-radius: 1rem;
  }
}


/* ----------------------------------------------------------
 業務・システム改革支援 / page-serviceline01.php
 IT組織強化支援 / page-serviceline02.php
 SI PMO支援 / page-serviceline03.php
---------------------------------------------------------- */

/* Title
--------------------------------------- */
main.serviceline .title {
  position: relative;
  margin-bottom: 10rem;
}
main.serviceline .title figure {
  border-radius: 30em 0 0 30em;
  box-shadow: var(--shadow);
}
main.serviceline .title figure img {
  height: 100%;
  object-fit: cover;
  border-radius: 30em 0 0 30em;
}
main.serviceline .title .wrap {
  padding: 2rem 0;
}
main.serviceline .title .subtitle .title-default {
  margin-right: 4rem;
  margin-bottom: 2rem;
}
main.serviceline .title .subtitle .title-default:nth-of-type(1) .en::first-letter,
main.serviceline .title .subtitle .title-default:nth-of-type(1) .ja {
  color: var(--orange);
}
main.serviceline .title .subtitle + div h1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
main.serviceline .title .subtitle + div h1 + p {
  margin-bottom: 1rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.serviceline .title figure {
    position: absolute;
    top: 50%;
    right: 0;
    width: 40%;
    height: 100%;
    transform: translateY(-50%);
  }
  main.serviceline .title figure img {
    aspect-ratio: 3 / 2;
  }
  main.serviceline .title .subtitle {
    display: flex;
  }
  main.serviceline .title .subtitle + div {
    width: 50%;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.serviceline .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
  }
  main.serviceline .title figure {
    order: 1;
    width: 70%;
    margin-left: 30%;
  }
  main.serviceline .title .wrap {
    order: 2;
  }
  main.serviceline .title .subtitle .title-default:nth-of-type(1) {
    margin-bottom: 5rem;
  }
  main.serviceline .title .subtitle .title-default:nth-of-type(2) {
    margin-right: 0;
    margin-bottom: 1.5rem;
    align-items: center;
    font-weight: var(--fw-medium);
  }
  main.serviceline .title .subtitle .title-default:nth-of-type(2) span.en:after {
    content: "";
    position: absolute;
    right: -3rem;
    top: 50%;
    display: block;
    width: 2rem;
    height: 1px;
    background-color: var(--gray);
  }
  main.serviceline .title .subtitle + div h1 {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    text-align: center;
  }
}


/* Case Studies
--------------------------------------- */
main.serviceline .casestudies {
  padding-top: 6rem;
}
main.serviceline .casestudies .flex .button a {
  margin: 0;
  margin-bottom: 0.5rem;
}
main.serviceline .casestudies .flex + p {
  margin-top: 2rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.serviceline .casestudies .flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  main.serviceline .casestudies .flex .left {
    flex: 1;
    padding-right: 4rem;
  }
  main.serviceline .casestudies ul.casestudies-post {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.serviceline .casestudies .flex {
    margin-bottom: 3rem;
  }
  main.serviceline .casestudies .flex .button {
    margin-top: 1rem;
    text-align: center;
  }
  main.serviceline .casestudies ul.casestudies-post li {
    height: auto !important;
  }
}


/* Message
--------------------------------------- */
main.serviceline .message {
  padding: 4rem 0 1rem 0;
}
main.serviceline .message > .wrap {
  text-align: center;
}
main.serviceline .message h2 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.serviceline .message .message-text {
  margin: 8rem 0 6rem 0;
}
main.serviceline .message .message-text .wrap figure {
  border-radius: 0 30em 30em 0;
  box-shadow: var(--shadow);
}
main.serviceline .message .message-text .wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 30em 30em 0;
}
main.serviceline .message .message-text .wrap div h3 {
  margin-bottom: 1em;
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.serviceline .message .button {
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.serviceline .message .message-text .wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
  }
  main.serviceline .message .message-text .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    border: 1px solid var(--gray);
    background-color: var(--white);
  }
  main.serviceline .message .message-text .wrap figure {
    position: absolute;
    right: 55%;
    width: 50vw;
    height: 120%;
    overflow: hidden;
  }
  main.serviceline .message .message-text .wrap div {
    width: 50%;
    margin-left: 50%;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.serviceline .message h2 {
    text-align: left;
  }
  main.serviceline .message .message-text .wrap {
    width: 100%;
  }
  main.serviceline .message .message-text .wrap figure {
    width: 85%;
    margin-right: 15%;
  }
  main.serviceline .message .message-text .wrap div {
    width: 80%;
    margin: 2rem auto 0 auto;
  }
}


/* ----------------------------------------------------------
 業務・システム改革支援 / page-serviceline01.php
---------------------------------------------------------- */

/* Features
--------------------------------------- */
body.serviceline01 .features-summary {
  padding-bottom: 6rem;
  text-align: center;
}
body.serviceline01 .features-summary h2 + p {
  margin-bottom: 1em;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline01 .features-summary {
    margin-bottom: 6rem;
    padding: 3rem 2rem;
    border: 1px solid var(--gray);
    border-radius: 1rem;
  }
}


/* Service Flow
--------------------------------------- */
body.serviceline01 .flow {
  padding: 6rem 0;
  background-color: var(--lightgray);
}
body.serviceline01 .flow h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.serviceline01 .flow h3 .en {
  font-size: 2.25rem;
  line-height: 1.125em;
}
body.serviceline01 .flow h3 .ja {
  padding-top: 0.25em;
}
body.serviceline01 .flow .flow-step {
  margin: 3rem auto;
}
body.serviceline01 .flow .flow-step-child {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto !important;
  padding: 1rem 1.25rem 2rem 1.25rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
  background-color: var(--white);
}
body.serviceline01 .flow .flow-step-child:nth-of-type(4n) {
  margin-right: 0;
}
body.serviceline01 .flow .flow-step-child:nth-of-type(4n):after {
  content: none;
}
body.serviceline01 .flow .flow-step-child h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 4rem;
  font-size: 1.15rem;
  line-height: 1.75em;
  text-align: center;
}
body.serviceline01 .flow .flow-step-child h4 span {
  display: block;
  font-size: 0.7rem;
  line-height: 1.75em;
  letter-spacing: 0;
}
body.serviceline01 .flow .flow-step-child figure {
  width: 60%;
  height: auto;
  margin: 1rem auto 2rem auto;
  border-radius: 100%;
  background-color: var(--lightgray);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
body.serviceline01 .flow .flow-step-child h5 {
  position: relative;
  margin-bottom: 0.25em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--gray);
  font-weight: var(--fw-semibold);
}
body.serviceline01 .flow .flow-step-child h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 2em;
  height: 1px;
  background-color: var(--orange);
}
body.serviceline01 .flow .flow-step-child ul.check {
  margin: 0.5rem 0.25em 1rem 0.25em;
}
body.serviceline01 .flow .flow-step-child ul.check li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5em;
}
body.serviceline01 .flow .flow-step-child h6 {
  position: relative;
  margin-bottom: 1em;
  padding: 0.25rem 0;
  border-radius: 0.25rem;
  color: var(--white);
  background-color: var(--black);
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
  text-align: center;
}
body.serviceline01 .flow .flow-step-child h6:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 10px solid var(--black);
}
body.serviceline01 .flow .flow-step-child h6 + p {
  font-size: 0.9rem;
}
body.serviceline01 .flow .flow-step-child .approach {
  margin-top: auto;
}
body.serviceline01 .flow .swiper-mobile + p {
  font-weight: var(--fw-semibold);
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  body.serviceline01 .flow .flow-step-child {
    flex: 1;
    width: calc((100% - 6rem) / 4);
    margin-right: 2rem;
  }
  body.serviceline01 .flow .flow-step {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
  }
  body.serviceline01 .flow .flow-step-child:after {
    content: "";
    position: absolute;
    top: 10em;
    right: -1.5rem;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--orange);
    margin-top: -15px;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline01 .flow .flow-step-child {
    width: 100%;
    border-radius: 1rem;
  }
  body.serviceline01 .flow .swiper-button-prev:after,
  body.serviceline01 .flow .swiper-rtl .swiper-button-next:after {
    content: '' !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    background: url(../images/arrow.svg) no-repeat center center / contain !important;
    transform: scale(-1,1);
  }
  body.serviceline01 .flow .swiper-button-next:after,
  body.serviceline01 .flow .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    background: url(../images/arrow.svg) no-repeat center center / contain !important;
  }
  body.serviceline01 .flow .swiper-button-disabled {
    display: none;
  }
  body.serviceline01 .flow h3 .ja {
    text-align: center;
  }
  body.serviceline01 .flow .swiper-mobile + p {
    text-align: left;
  }
}


/* ----------------------------------------------------------
 IT組織強化支援 / page-serviceline02.php
---------------------------------------------------------- */

/* Features
--------------------------------------- */
body.serviceline02 .features-summary {
  padding-bottom: 6rem;
  text-align: center;
}
body.serviceline02 .features-summary h2 + p {
  margin-bottom: 1em;
  font-weight: var(--fw-medium);
  font-size: 1.15rem; 
  line-height: 1.5em;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline02 .features-summary {
    margin-bottom: 6rem;
    padding: 3rem 2rem;
    border: 1px solid var(--gray);
    border-radius: 1rem;
  }
}

/* Approaches and Measures
--------------------------------------- */
body.serviceline02 .approaches {
  padding: 6rem 0 8rem 0;
  background-color: var(--lightgray);
}
body.serviceline02 .approaches h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.serviceline02 .approaches h3 .en {
  font-size: 2.25rem;
  line-height: 1.125em;
}
body.serviceline02 .approaches h3 .ja {
  padding-top: 0.25em;
}
body.serviceline02 .approaches h3 + p {
  margin: 2rem auto;
  text-align: center;
}
body.serviceline02 .approaches .flex {
  position: relative;
  padding: 3rem 4rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
  background-color: var(--white);
}
body.serviceline02 .approaches .flex .left,
body.serviceline02 .approaches .flex .right {
  width: calc(50% - 2rem);
  display: flex;
  flex-direction: column;
}
body.serviceline02 .approaches .flex .left h4,
body.serviceline02 .approaches .flex .right h4 {
  margin-bottom: 1em;
  padding: 0.25em 0;
  border: 2px solid var(--black);
  border-radius: 3em;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
  text-align: center;
}
body.serviceline02 .approaches .flex .left h4 + p,
body.serviceline02 .approaches .flex .right h4 + p {
  margin-bottom: 1.5rem;
  font-weight: var(--fw-medium);
  text-align: center;
}
body.serviceline02 .approaches .flex .left figure {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.serviceline02 .approaches .flex .fukidashi {
  position: relative;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--gray);
  border-radius: 1rem;
}
body.serviceline02 .approaches .flex .fukidashi:nth-of-type(3) {
  margin-bottom: 0;
}
body.serviceline02 .approaches .flex .fukidashi h5 {
  margin-bottom: 0.5rem;
  line-height: 1.5em;
  font-weight: var(--fw-semibold);
}
body.serviceline02 .approaches .flex .fukidashi ul {
  margin: 0 0.5rem;
}
body.serviceline02 .approaches .flex .fukidashi ul li {
  font-size: 0.9rem;
  line-height: 1.5em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  body.serviceline02 .approaches .flex {
    display: flex;
    justify-content: space-between;
    width: 80%;
    min-width: 940px;
    margin: 3rem auto 0 auto;
  }
  body.serviceline02 .approaches .flex:after {
    content: "";
    position: absolute;
    top: 4em;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--orange);
    margin-left: -5px;
  }
  body.serviceline02 .approaches .flex .fukidashi:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 18px solid var(--white);
    z-index: 2;
  }
  body.serviceline02 .approaches .flex .fukidashi:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -34px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-right: 20px solid var(--gray);
    z-index: 1;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline02 .approaches h3 .en {
    text-align: center;
  }
  body.serviceline02 .approaches h3 + p {
    text-align: left;
  }
  body.serviceline02 .approaches .flex {
    padding: 2rem;
  }
  body.serviceline02 .approaches .flex .left {
    position: relative;
    margin-bottom: 5rem;
  }
  body.serviceline02 .approaches .flex .left:after {
    content: "▼";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -0.5em;
    font-size: 2rem;
    color: var(--darkgray);
  }
  body.serviceline02 .approaches .flex .left, 
  body.serviceline02 .approaches .flex .right {
    width: 100%;
  }
  body.serviceline02 .approaches .flex .left h4 + p, 
  body.serviceline02 .approaches .flex .right h4 + p {
    text-align: left;
  }
}

/* ----------------------------------------------------------
 SI PMO支援 / page-serviceline03.php
---------------------------------------------------------- */

/* Features
--------------------------------------- */
body.serviceline03 .features-summary {
  padding-bottom: 6rem;
  text-align: center;
}
body.serviceline03 .features-summary h2 + p {
  margin-bottom: 1em;
  font-weight: var(--fw-medium);
  font-size: 1.15rem; 
  line-height: 1.5em;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline03 .features-summary {
    margin-bottom: 6rem;
    padding: 3rem 2rem;
    border: 1px solid var(--gray);
    border-radius: 1rem;
  }
}

/* Issues & Approaches
--------------------------------------- */
body.serviceline03 .approaches {
  padding: 6rem 0 8rem 0;
  background-color: var(--lightgray);
}
body.serviceline03 .approaches h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
body.serviceline03 .approaches h3 .en {
  font-size: 2.25rem;
  line-height: 1.125em;
}
body.serviceline03 .approaches h3 .ja {
  padding-top: 0.25em;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline03 .approaches h3 .en {
    text-align: center;
  }
}

/* こんなお悩みはありませんか？ */
body.serviceline03 .approaches .worries h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}
body.serviceline03 .approaches .worries h4:before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  margin-right: 1rem;
  background: var(--white) url(../images/icon-sier.svg) no-repeat center center / 1.75rem;
  border-radius: 100%;
}
body.serviceline03 .approaches .worries .flex h5 {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  border-radius: 3em;
  color: var(--white);
  text-align: center;
}
body.serviceline03 .approaches .worries .flex h5:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid var(--orange);
  transform: translateY(-1px);
}
body.serviceline03 .approaches .worries .flex h5 span {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
body.serviceline03 .approaches .worries .flex .planning h5 {
  background-color: var(--orange);
}
body.serviceline03 .approaches .worries .flex .planning h5:after {
  border-top: 10px solid var(--orange);
}
body.serviceline03 .approaches .worries .flex .management h5 {
  background-color: var(--black);
}
body.serviceline03 .approaches .worries .flex .management h5:after {
  border-top: 10px solid var(--black);
}
body.serviceline03 .approaches .worries .flex .common h5 {
  background-color: var(--darkgray);
}
body.serviceline03 .approaches .worries .flex .common h5:after {
  border-top: 10px solid var(--darkgray);
}
body.serviceline03 .approaches .worries .flex ul li {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 0.5rem;
  font-weight: var(--fw-medium);
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  body.serviceline03 .approaches .worries {
    padding: 2rem 4rem;
    border-radius: 1rem 1rem 0 0;
    background-color: var(--white);
  }
  body.serviceline03 .approaches .worries .inner {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--lightgray);
  }
  body.serviceline03 .approaches .worries .inner:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid var(--lightgray);
    transform: translateY(-1px);
  }
  body.serviceline03 .approaches .worries .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  body.serviceline03 .approaches .worries .flex .planning,
  body.serviceline03 .approaches .worries .flex .management {
    width: calc((100% - 2rem) / 2);
  }
  body.serviceline03 .approaches .worries .flex .common {
    width: 100%;
  }
  body.serviceline03 .approaches .worries .flex > div {
    display: flex;
    flex-direction: column;
  }
  body.serviceline03 .approaches .worries .flex > div ul {
    display: grid;
    grid-auto-rows: 1fr;
  }
  body.serviceline03 .approaches .worries .flex > div ul li {
    display: block;
    align-content: center;
    text-align: center;
  }
  body.serviceline03 .approaches .worries .flex > div ul li span {
    display: inline !important;
  }
}
@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline03 .approaches .worries h4 {
    flex-direction: column;
  }
  body.serviceline03 .approaches .worries h4:before {
    width: 6rem;
    height: 6rem;
    background: var(--white) url(../images/icon-sier.svg) no-repeat center center / 2rem;
    margin-bottom: 1rem;
    margin-right: 0;
  }
  body.serviceline03 .approaches .worries .flex > div {
    margin-bottom: 2rem;
  }
}

/* 説明 */
body.serviceline03 .approaches .answer {
  padding: 2rem 4rem;
  background-color: var(--white);
}
body.serviceline03 .approaches .answer h4 {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}
body.serviceline03 .approaches .answer figure {
  width: 30em;
  margin: 0 auto;
}
body.serviceline03 .approaches .answer .flex {
  margin: 5rem auto 2rem auto;
}
body.serviceline03 .approaches .answer .flex > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem 1rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 0.5rem;
}
body.serviceline03 .approaches .answer .flex > div h5 {
  position: relative;
  width: 60%;
  padding: 0.5rem;
  border-radius: 3em;
  color: var(--white);
  background-color: var(--orange);
  text-align: center;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  transform: translateY(-50%);
}
body.serviceline03 .approaches .answer .flex .planning h5 {
  background-color: var(--orange);
}
body.serviceline03 .approaches .answer .flex .management h5 {
  background-color: var(--black);
}
body.serviceline03 .approaches .answer .flex > div h6 {
  width: 100%;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
  transform: translateY(-0.5em);
}
body.serviceline03 .approaches .answer .flex > div ul li {
  margin-bottom: 0.25rem;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5em;
}
body.serviceline03 .approaches .answer .flex > div ul li:last-child {
  text-align: right;
}
body.serviceline03 .approaches .answer .flex > div ul li:last-child::before {
  content: none;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  body.serviceline03 .approaches .answer .flex {
    display: flex;
    justify-content: space-between;
  }
  body.serviceline03 .approaches .answer .flex > div {
    width: calc((100% - 2rem) / 2);
  }
  body.serviceline03 .approaches .answer .flex > div h6 {
    text-align: center;
  }
  body.serviceline03 .approaches .answer .flex > div ul {
    display: inline-grid;
    grid-template-columns: repeat(2, auto);
  }
  body.serviceline03 .approaches .answer .flex > div ul li:nth-child(odd) {
    padding-right: 2em;
  }
  body.serviceline03 .approaches .answer .flex > div ul li:last-child {
    grid-column: 1 / 3;
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline03 .approaches .answer {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    border-radius: 1rem;
  }
  body.serviceline03 .approaches .answer:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -25px;
    border: 25px solid transparent;
    border-bottom: 25px solid var(--white);
  }
  body.serviceline03 .approaches .answer h4 {
    order: 2;
    text-align: left;
  }
  body.serviceline03 .approaches .answer figure {
    order: 1;
    width: calc(100% - 2rem);
    margin: 0 auto 1rem auto;
  }
  body.serviceline03 .approaches .answer .flex {
    order: 3;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  body.serviceline03 .approaches .answer .flex > div.planning {
    margin-bottom: 3rem;
  }
  body.serviceline03 .approaches .answer .flex > div h5 {
    width: 80%;
  }
  body.serviceline03 .approaches .answer .flex > div ul {
    width: 100%;
  }
}

/* 連関図 */
body.serviceline03 .approaches .diagram {
  padding: 0 4rem 4rem 4rem;
  border-radius: 0 0 1rem 1rem;
  background-color: var(--white);
}
body.serviceline03 .approaches .diagram h4 {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}
body.serviceline03 .approaches .diagram figure {
  margin: 2rem auto;
  max-width: 1200px;
}
body.serviceline03 .approaches .diagram figure img {
  background-color: var(--white);
}

@media screen and (max-width: 768px) { /* -- sp -- */
  body.serviceline03 .approaches .diagram {
    padding: 2rem 1rem;
    border-radius: 1rem;
  }
  body.serviceline03 .approaches .diagram h4 {
    text-align: left;
  }
}


/* ----------------------------------------------------------
 casestudies / single-casestudies.php
---------------------------------------------------------- */

/* Title
--------------------------------------- */
main.casestudies .title p.title-default {
  margin-bottom: 2rem;
}
main.casestudies .title p.title-default .en:first-letter,
main.casestudies .title p.title-default .ja {
  color: var(--orange);
}

/* Case Studies Post
--------------------------------------- */
main.casestudies .post-wrapper p.title-default {
  align-items: center;
}
main.casestudies .post-wrapper p.title-default .en:first-letter,
main.casestudies .post-wrapper p.title-default .ja {
  color: var(--black);
}
main.casestudies .post-wrapper article {
  margin: 4rem auto;
  border: 1px solid var(--gray);
  border-radius: 2rem;
  overflow: hidden;
}
main.casestudies .post-wrapper article .subtitle {
  position: relative;
}
main.casestudies .post-wrapper article .subtitle p.terms {
  position: absolute;
  top: 3rem;
  right: 0;
  padding: 0.125em 1em;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
}
main.casestudies .post-wrapper article .subtitle h1 {
  position: absolute;
  left: 5%;
  bottom: 2rem;
  margin-bottom: 0;
  color: var(--white);
}
main.casestudies .post-wrapper article .subtitle h1 span {
  display: block;
}
main.casestudies .post-wrapper article .subtitle h1 .en {
  font-size: 2rem;
  line-height: 1.25em;
}
main.casestudies .post-wrapper article .subtitle h1 .en::first-letter {
  color: var(--white);
}
main.casestudies .post-wrapper article .subtitle h1 .ja {
  font-size: 1.125rem;
  line-height: 1.5em;
  color: var(--white);
}
main.casestudies .post-wrapper article figure {
  position: relative;
  aspect-ratio: 3 / 1;
  overflow: hidden;
}
main.casestudies .post-wrapper article figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(255.36deg, rgba(0, 0, 0, 0) 0.79%, rgba(0, 0, 0, 0.4) 47.28%, rgba(0, 0, 0, 0.7) 100%);
}
main.casestudies .post-wrapper article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.casestudies .post-wrapper article .contents {
  padding: 4rem 5% 4rem calc(5% + 3rem);
}
main.casestudies .post-wrapper article .contents dl.casestudies_info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding: 2rem 2rem 1rem 2rem;
  background-color: var(--lightgray);
}
main.casestudies .post-wrapper article .contents dl.casestudies_info dt {
  width: 10rem;
  margin-bottom: 1rem;
  font-weight: var(--fw-semibold);
  font-size: 1.125rem;
}
main.casestudies .post-wrapper article .contents dl.casestudies_info dt::first-letter {
  color: var(--orange);
}
main.casestudies .post-wrapper article .contents dl.casestudies_info dd {
  width: calc(100% - 10rem);
  margin-bottom: 1rem;
}
main.casestudies .post-wrapper article .contents dl.casestudies_contents {
  display: flex;
  flex-wrap: wrap;
}
main.casestudies .post-wrapper article .contents dl.casestudies_contents dt {
  width: 12em;
  margin-bottom: 4rem;
  font-weight: var(--fw-semibold);
}
main.casestudies .post-wrapper article .contents dl.casestudies_contents dt span {
  position: relative;
}
main.casestudies .post-wrapper article .contents dl.casestudies_contents dd {
  width: calc(100% - 12em);
  margin-bottom: 4rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.casestudies .post-wrapper article .contents dl.casestudies_contents dt span:before {
    content: "";
    position: absolute;
    left: -3rem;
    top: 50%;
    display: block;
    width: 2rem;
    height: 1px;
    background-color: var(--gray);
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.casestudies .post-wrapper {
    margin-top: 4rem;
  }
  main.casestudies .post-wrapper article {
    margin: 3rem 0;
    border-radius: 1rem;
  }
  main.casestudies .post-wrapper article figure {
    aspect-ratio: 2 / 1;
  }
  main.casestudies .post-wrapper article .subtitle p.terms {
    top: 2rem;
  }
  main.casestudies .post-wrapper article .subtitle h1 {
    bottom: 1rem;
  }
  main.casestudies .post-wrapper article .contents {
    padding: 2rem;
  }
  main.casestudies .post-wrapper article .contents dl.casestudies_info {
    padding: 1rem;
  }
  main.casestudies .post-wrapper article .contents dl.casestudies_info {
    flex-direction: column;
  }
  main.casestudies .post-wrapper article .contents dl.casestudies_info dt {
    width: 100%;
    margin-bottom: 0;
  }
  main.casestudies .post-wrapper article .contents dl.casestudies_info dd {
    width: 100%;
  }
  main.casestudies .post-wrapper article .contents dl.casestudies_contents {
    flex-direction: column;
  }
  main.casestudies .post-wrapper article .contents dl.casestudies_contents dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  main.casestudies .post-wrapper article .contents dl.casestudies_contents dd {
    width: 100%;
    margin-bottom: 2rem;
  }
}


/* Other Case Studies
--------------------------------------- */
main.casestudies .other {
  margin-top: 8rem;
}
main.casestudies .other .flex {
  margin-bottom: 3rem;
}
main.casestudies .other .flex h2 {
  margin-bottom: 0;
}
main.casestudies .other .flex .button a {
  margin: 0;
}
ul.casestudies-post li {
  height: auto !important;
  border: 1px solid var(--gray);
  border-radius: 1rem;
  overflow: hidden;
}
ul.casestudies-post li:nth-child(3n) {
  margin-right: 0;
}
ul.casestudies-post li .thumb {
  position: relative;
}
ul.casestudies-post li .thumb p.terms {
  position: absolute;
  top: 1.5rem;
  right: 0;
  padding: 0 0.5em;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}
ul.casestudies-post li .thumb p.casestudies-post-title {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
}
ul.casestudies-post li .thumb p.casestudies-post-title span {
  display: block;
}
ul.casestudies-post li .thumb p.casestudies-post-title span.en {
  font-size: 1.25rem;
}
ul.casestudies-post li .thumb p.casestudies-post-title span.ja {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.5em;
}
ul.casestudies-post li .thumb figure {
  position: relative;
  overflow: hidden;
}
ul.casestudies-post li .thumb figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(255.36deg, rgba(0, 0, 0, 0) 0.79%, rgba(0, 0, 0, 0.4) 47.28%, rgba(0, 0, 0, 0.7) 100%);
}
ul.casestudies-post li .thumb figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 1;
  transition: .3s;
}
ul.casestudies-post li:hover .thumb figure img {
  transform: scale(1.1);
  transition: .3s;
}
ul.casestudies-post li p.other-info {
  padding: 1rem 1.5rem;
}
ul.casestudies-post li p.other-info span {
  display: block;
  font-weight: var(--fw-semibold);
}
ul.casestudies-post li p.other-info span::first-letter {
  color: var(--orange);
}
ul.casestudies-post + .button {
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.casestudies .other .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  ul.casestudies-post {
    display: flex;
    flex-wrap: wrap;
    width: 96%;
    margin: 0 auto;
  }
  ul.casestudies-post li {
    width: calc((100% -  4rem) / 3);
    margin: 0 2rem 3rem 0;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.casestudies .other .flex h2 {
    margin-bottom: 2rem;
  }
  ul.casestudies-post li {
    height: auto !important;
  }
  main.casestudies .linkgroup p {
    flex-direction: column;
  }
  main.casestudies .linkgroup p a {
    width: 100% !important;
    margin: 0 0 1rem 0 !important;
  }
}


/* ----------------------------------------------------------
 casestudies / archive-casestudies.php
---------------------------------------------------------- */
main.archive.casestudies .subtitle {
  margin-bottom: 4rem;
  text-align: center;
}
main.archive.casestudies .subtitle p.title-default {
  align-items: center;
}
main.archive.casestudies .subtitle p.title-default .en:first-letter,
main.archive.casestudies .subtitle p.title-default .ja {
  color: var(--black);
}
main.casestudies .linkgroup {
  width: 90%;
  margin: 0 auto;
}
main.casestudies .linkgroup p {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
main.casestudies .linkgroup p a {
  width: 30%;
  margin: 0 1rem;
  padding: 0.75em 3em 0.75em 1.75em;
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.archive.casestudies .casestudies {
    margin-top: 4rem;
  }
  main.archive.casestudies .subtitle {
    margin-bottom: 2rem;
  }
  main.archive.casestudies ul.casestudies-post li {
    margin-bottom: 1rem;
  }
}


/* ----------------------------------------------------------
 Platform / page-platform.php
---------------------------------------------------------- */

/* Title
--------------------------------------- */
main.platform .title {
  position: relative;
  margin-bottom: 8rem;
}
main.platform .title .wrap h1 .en::first-letter,
main.platform .title .wrap .ja {
  color: var(--orange);
}
main.platform .title .wrap h1 + p {
  margin-bottom: 1em;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.platform .title figure {
  border-radius: 30em 0 0 30em;
  box-shadow: var(--shadow);
}
main.platform .title figure img {
  height: 100%;
  object-fit: cover;
  border-radius: 30em 0 0 30em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.platform .title figure {
    position: absolute;
    top: 50%;
    right: 0;
    width: 40%;
    height: auto;
    aspect-ratio: 2 / 1.5;
    overflow: hidden;
    transform: translateY(-50%);
  }
  main.platform .title .wrap {
    padding: 0 30% 8rem 0;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.platform .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
  }
  main.platform .title figure {
    order: 1;
    width: 70%;
    margin-left: 30%;
  }
  main.platform .title figure img {
    aspect-ratio: 3 / 2;
  }
  main.platform .title .wrap {
    order: 2;
    padding: 2rem 0;
  }
}


/* FAVORRIC
--------------------------------------- */
main.platform .favorric {
  padding-top: 4rem;
  text-align: center;
}
main.platform .favorric h2 {
  align-items: center;
}
main.platform .favorric h2 img {
  width: 20vw;
  margin-bottom: 0.5rem;
}
main.platform .favorric h2 + p {
  margin-bottom: 1em;
  font-weight: var(--fw-regular);
}
main.platform .favorric ul li {
  width: calc((100% - 4rem) / 3);
  margin-right: 2rem;
  padding-top: 7rem;
}
main.platform .favorric ul li:nth-child(3n) {
  margin-right: 0;
}
main.platform .favorric ul li div {
  height: 100%;
  padding: 2rem 2.25rem 3rem 2.25rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
}
main.platform .favorric ul li div figure {
  width: 60%;
  margin: -7.5rem auto 0 auto;
}
main.platform .favorric ul li div figure img {
  border-radius: 100%;
}
main.platform .favorric ul li div h3 {
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.platform .favorric ul li div p {
  text-align: left;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.platform .favorric ul {
    display: flex;
    width: 90%;
    min-width: 1036px;
    margin: 3rem auto 2rem auto;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.platform .favorric h2 img {
    width: 60vw;
  }
  main.platform .favorric ul li {
    width: 100%;
    margin: 0 0 2rem 0;
  }
  main.platform .favorric ul li div {
    padding: 2rem 1.5rem 3rem 1.5rem;
  }
}


/* LifeStyleBrand
--------------------------------------- */
main.platform .lifestyle {
  position: relative;
  margin: 10rem 0;
}
main.platform .lifestyle .wrap {
  position: relative;
  padding: 6rem 0;
}
main.platform .lifestyle .flex {
  display: flex;
  align-items: center;
}
main.platform .lifestyle .flex .left {
  width: 48%;
}
main.platform .lifestyle .flex .left iframe {
  width: 100% !important;
}
main.platform .lifestyle .flex .right {
  width: 52%;
  padding-left: 4rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.platform .lifestyle .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 25%;
    display: block;
    width: 200%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 14em 0 0 14em;
    background-color: var(--white);
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.platform .lifestyle {
    margin: 6rem 0 2rem 0;
  }
  main.platform .lifestyle .flex {
    flex-direction: column;
  }
  main.platform .lifestyle .flex .left {
    order: 2;
    width: 100%;
  }
  main.platform .lifestyle .flex .left iframe {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
  main.platform .lifestyle .flex .right {
    order: 1;
    width: 100%;
    margin-bottom: 3rem;
    padding: 0;
  }
  main.platform .lifestyle .flex .right .button {
    text-align: center;
  }
}


/* Collaboration
--------------------------------------- */
main.platform .collabo {
  position: relative;
}
main.platform .collabo .wrap {
  position: relative;
  padding: 8rem 0;
}
main.platform .collabo .flex .right {
  display: flex;
  flex-wrap: wrap;
}
main.platform .collabo .flex .right figure {
  position: relative;
  width: calc((100% - 1rem) / 2 );
  height: auto;
  margin-bottom: 1rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
main.platform .collabo .flex .right figure:nth-of-type(odd) {
  margin-right: 1rem;
}
main.platform .collabo .flex .right figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
main.platform .collabo .flex .right figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.5rem 0;
  border-radius: 0 0 1rem 1rem;
  color: var(--white);
  background-color: rgba(34, 34, 34, 0.7);
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.platform .collabo .wrap {
    padding-right: 6rem;
  }
  main.platform .collabo .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    display: block;
    width: 200%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 0 10em 10em 0;
    background-color: var(--white);
  }
  main.platform .collabo .flex {
    display: flex;
  }
  main.platform .collabo .flex .left {
    width: 60%;
    padding-right: 4rem;
  }
  main.platform .collabo .flex .right {
    width: 40%;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.platform .collabo {
    padding: 4rem 0;
    background-color: var(--lightgray);
  }
  main.platform .collabo .wrap {
    position: initial;
    width: 100%;
    padding: 2rem 0;
  }
  main.platform .collabo .flex {
    width: 80%;
    margin: 0 auto;
  }
  main.platform .collabo .flex .left {
    margin-bottom: 4rem;
  }
  main.platform .collabo .flex .right figure figcaption {
    font-size: 3.25vw;
  }
  main.platform .collabo .casestudies h4 {
    width: 80%;
    margin: 2rem auto;
  }
  main.platform .collabo .swipercontainer {
    position: relative;
  }
  main.platform .collabo .swiper-mobile {
    width: 80%;
    margin: 2rem auto;
  }
}


/* Case Studies
--------------------------------------- */
main.platform .casestudies {
  margin-top: 4rem;
}
main.platform .casestudies h4 {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
main.platform .casestudies h4 .en {
  position: relative;
  font-size: 2rem;
  line-height: 1.125em;
}
main.platform .casestudies h4 .en:before {
  content: "";
  position: absolute;
  left: -3rem;
  top: 50%;
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--gray);
}
main.platform .casestudies ul li {
  width: calc((100% - 4rem) / 3);
  height: auto !important;
  margin-bottom: 2rem;
  background-color: var(--white);
}
main.platform .casestudies ul li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--gray);
  border-radius: 1rem;
  overflow: hidden;
}
main.platform .casestudies ul li a .casestudies-title {
  position: relative;
}
main.platform .casestudies ul li a .casestudies-title figure {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}
main.platform .casestudies ul li a .casestudies-title figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(255.36deg, rgba(0, 0, 0, 0) 0.79%, rgba(0, 0, 0, 0.4) 47.28%, rgba(0, 0, 0, 0.7) 100%);
}
main.platform .casestudies ul li a .casestudies-title figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0 ;
  transition: .3s;
}
main.platform .casestudies ul li a:hover .casestudies-title figure img {
  transform: scale(1.1);
  transition: .3s;
}
main.platform .casestudies ul li a .casestudies-title h5 {
  position: absolute;
  left: 1.5rem;
  bottom: 1rem;
  width: calc(100% - 3rem);
  font-size: 1.15rem;
  line-height: 1.25em;
  color: var(--white);
}
main.platform .casestudies ul li a .casestudies-title h5 .en {
  display: block;
  color: var(--orange);
  font-size: 1rem;
}
main.platform .casestudies ul li a h6 {
  margin: 1.5rem 0 0.5em 0;
  padding: 0 2rem;
}
main.platform .casestudies ul li a p:nth-of-type(1) {
  margin-bottom: 1em;
  padding: 0 2rem;
}
main.platform .casestudies ul li a p:last-of-type {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin: auto 0 1.5rem 0;
  padding: 0 2rem;
  color: var(--darkgray);
  font-size: 0.9rem;
  text-align: right;
}
main.platform .casestudies ul li a p:last-of-type:after {
  content: "";
  display: block;
  margin-left: 0.5em;
  width: 1rem;
  height: 1rem;
  background: url(../images/external-link.svg) no-repeat center center / contain;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.platform .casestudies ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  main.platform .casestudies ul li {
    margin-right: 2rem;
  }
  main.platform .casestudies ul li:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.platform .casestudies {
    margin-top: 8rem;
  }
  main.platform .casestudies ul li {
    width: 100%;
    height: auto !important;
    margin: 0 0 2rem 0 !important;
    border-radius: 1rem;
  }
  main.platform .casestudies .swiper-button-prev:after,
  main.platform .casestudies .swiper-rtl .swiper-button-next:after {
    content: '' !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    background: url(../images/arrow.svg) no-repeat center center / contain !important;
    transform: scale(-1,1);
  }
  main.platform .casestudies .swiper-button-next:after,
  main.platform .casestudies .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    background: url(../images/arrow.svg) no-repeat center center / contain !important;
  }
}


/* Features
--------------------------------------- */
main.platform .features {
  margin: 8rem 0 4rem 0;
}
main.platform .features ul li {
  border: 1px solid var(--gray);
  border-radius: 1rem;
  overflow: hidden;
}
main.platform .features ul li:nth-child(3n) {
  margin-right: 0;
}
main.platform .features ul li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1rem;
}
main.platform .features ul li a figure {
  margin-bottom: 1rem;
  overflow: hidden;
}
main.platform .features ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 1;
  transition: .3s;
}
main.platform .features ul li a:hover figure img {
  transform: scale(1.1);
  transition: .3s;
}
main.platform .features ul li a h5 {
  margin-bottom: 1rem;
  padding: 0 2rem;
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.platform .features ul li a h5 span {
  display: block;
  font-weight: var(--fw-regular);
  font-size: 0.9rem;
  color: var(--darkgray);
}
main.platform .features ul li a p:nth-of-type(1) {
  margin-bottom: 1.5rem;
  padding: 0 2rem;
}
main.platform .features ul li a p:last-of-type {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin: auto 0 1.5rem 0;
  padding: 0 1.5rem;
  color: var(--darkgray);
  font-size: 0.9rem;
  text-align: right;
}
main.platform .features ul li a p:last-of-type:after {
  content: "";
  display: block;
  margin-left: 0.5em;
  width: 1rem;
  height: 1rem;
  background: url(../images/external-link.svg) no-repeat center center / contain;
}
main.platform .link {
  margin-bottom: 4rem;
}
main.platform .link .wrap {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem 2rem 2rem;
  border-radius: 1rem;
  background-color: var(--lightgray);
  text-align: center;
}
main.platform .link .wrap h3 {
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
main.platform .link .wrap h3 img {
  width: 35%;
  max-width: 200px;
  text-align: center;
}
main.platform .link .wrap div h4 {
  margin-bottom: 0.5rem;
  font-weight: var(--fw-regular);
  font-size: 1.125rem;
}
main.platform .link .wrap div h4:before,
main.platform .link .wrap div h4:after {
  content: "-";
}
main.platform .link .wrap div ul {
  display: flex;
  justify-content: center;
}
main.platform .link .wrap div.shop ul li a {
  width: 16em;
  margin: 0 0.5rem;
  padding: 0.85em 2em 0.85em 1.75em;
}
main.platform .link .wrap div.sns ul li {
  margin: 0 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--darkgray);
}
main.platform .link .wrap div.sns ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  transition: .3s;
}
main.platform .link .wrap div.sns ul li a:hover {
  opacity: .5;
  transition: .3s;
}
main.platform .link .wrap div ul li a img {
  width: 1.75rem;
  height: 1.75rem;
}
main.platform .message {
  text-align: center;
}
main.platform .message h4 {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.5em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.platform .features ul {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 3rem auto 5rem auto;
  }
  main.platform .features ul li {
    width: calc((100% - 4rem) /3);
    height: auto !important;
    margin: 0 2rem 3rem 0;
  }
  main.platform .link .wrap div {
    padding: 1rem 2rem;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.platform .features {
    margin-bottom: 0;
  }
  main.platform .features ul li {
    height: auto !important;
  }
  main.platform .link {
    margin: 4rem auto;
  }
  main.platform .link .wrap {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
  }
  main.platform .link .wrap h3 img {
    width: 65%;
  }
  main.platform .link .wrap div {
    margin: 1rem 0;
  }
  main.platform .link .wrap div.shop ul {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  main.platform .link .wrap div.shop ul li a {
    width: 100%;
    margin: 0 auto 0.5rem auto;
  }
  main.platform .message {
    margin-top: 2rem;
  }
}


/* ----------------------------------------------------------
 News / single.php
---------------------------------------------------------- */

/* 記事
--------------------------------------- */
.post-article {
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 4rem 4rem 6rem 4rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
  background-color: var(--white);
}
.post-article .catinfo {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.post-article .cat span {
  padding: 0.125em 1em;
  border-radius: 2em;
  color: var(--white);
  background-color: var(--orange);
}
.post-article .cat span.consulting {
  color: var(--lightblue);
  background-color: var(--blue);
}
.post-article .cat span.platform {
  color: var(--blue);
  background-color: var(--lightblue);
}
.post-article .tag {
  color: var(--darkgray);
  font-weight: 300;
}
.post-article .tag span {
  margin-right: 0.5em;
}
.post-article .tag span:before {
  content: "#";
}
main.news .default-font {
  font-family: "Noto Sans JP", sans-serif;
}
main.news .english-font {
  font-family: "Outfit", sans-serif;
}
.post-article h1 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
  font-size: 1.5rem;
  line-height: 1.5em;
}
.post-article .postcontents {
  position: relative;
}
.post-article .postcontents .posttime span,
.post-article.category-corporate .postcontents .posttime span {
  margin-left: 0.5em;
  color: var(--orange);
}
.post-article.category-consulting .postcontents .posttime span {
  color: var(--blue);
}
.post-article.category-platform .postcontents .posttime span {
  color: var(--lightblue);
}
.post-article + .button {
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  .post-wrapper {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .post-article .postcontents .posttime {
    margin-bottom: 1rem;
  }
  .post-article .postcontents .addtoany_share_save_container {
    margin-top: 0;
    padding-left: 20rem;
    text-align: right;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  .post-article {
    padding: 2rem;
    border-radius: 1rem;
  }
  .post-article .postcontents .addtoany_share_save_container {
    text-align: right;
  }
}


/* ブロックエディタ出力 */
.post-article .postcontents-post * {
  margin-bottom: 1rem;
}
.post-article .postcontents-post a {
  display: inline;;
}
.post-article .postcontents-post h2,
.post-article .postcontents-post h3,
.post-article .postcontents-post h4,
.post-article .postcontents-post h5,
.post-article .postcontents-post h6 {
  margin-top: 1.5em;
}
.post-article .postcontents-post h2 {
  padding: 0.5em;
  font-size: 1.125rem;
  background-color: #efefef;
}
.post-article .postcontents-post h3 {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 700;
  font-size: 1.125rem;
}
.post-article .postcontents-post h3:before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  margin-right: 0.5em;
  background-color: #efefef;
}
.post-article .postcontents-post h4 {
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--gray);
  font-size: 1.15rem;
}
.post-article .postcontents-post h5 {
  padding-bottom: 0.25em;
  border-bottom: 1px dotted var(--gray);
  font-size: 1.15rem;
}
.post-article .postcontents-post h6 {
  font-size: 1rem;
}
.post-article .postcontents-post ul {
  padding-left: 1em;
  list-style-type: disc;
}
.post-article .postcontents-post ol {
  padding-left: 1em;
  list-style-type: decimal;
}
.post-article .postcontents-post ul li,
.post-article .postcontents-post ol li {
  margin-bottom: 0;
}
/* ブロックエディタ用のスタイル */
.has-base-color {
  color: #FFFFFF;
}
.has-contrast-color {
  color: #222222;
}
.has-primary-color {
  color: #EE6C46;
}
.has-secondary-color {
  color: #F8CBAD;
}
.has-tertiary-color {
  color: #FBE5D6;
}
.has-yellow-color {
  color: #FFF2CC;
}
.has-consulting-color {
  color: #003CD8;
}
.has-platform-color {
  color: #6262FA;
}
.has-darkgray-color {
  color: #999999;
}
.has-gray-color {
  color: #CCCCCC;
}
.has-lightgray-color {
  color: #F4F4F4;
}


/* 前後リンク
--------------------------------------- */
.post-link {
  margin: 6rem auto 2rem auto;
}
.post-link ul {
  display: flex;
}
.post-link ul li {
  width: calc((100% - 2rem) / 2);
  border: 1px solid var(--gray);
  border-radius: 1.5rem;
  overflow: hidden;
}
.post-link ul li.post-next {
  margin-left: auto;
}
.post-link ul li a {
  display: flex;
  height: 100%;
}
.post-link ul li a > div {
  width: 75%;
  padding: 1rem;
}
.post-link ul li a > div > div {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.post-link ul li a > div > div time {
  margin-right: 0.5em;
  color: var(--darkgray);
}
.post-link ul li a > div p {
  line-height: 1.5em;
}
.post-link ul li a > div > div p.cat span {
  padding: 0.125em 1em;
  border-radius: 2em;
  color: var(--white);
  background-color: var(--orange);
}
.post-link ul li.consulting a > div > div p.cat span {
  color: var(--lightblue);
  background-color: var(--blue);
}
.post-link ul li.platform a > div > div p.cat span {
  color: var(--blue);
  background-color: var(--lightblue);
}
.post-link ul li a > figure {
  width: 25%;
}
.post-link ul li a > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-link ul li.post-previous a > div {
  position: relative;
  padding-left: 3.5rem;
}
.post-link ul li.post-previous a > div:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/arrow.svg) no-repeat center center / contain;
  transform: translateY(-50%) scale(-1, 1);
}
.post-link ul li.post-previous.consulting a > div:before {
  background: url(../images/arrow-blue.svg) no-repeat center center / contain;
}
.post-link ul li.post-previous.platform a > div:before {
  background: url(../images/arrow-lightblue.svg) no-repeat center center / contain;
}
.post-link ul li.post-next a > figure {
  order: 1;
} 
.post-link ul li.post-next a > div {
  order: 2;
}
.post-link ul li.post-next a > div {
  position: relative;
  padding-right: 3.5rem;
}
.post-link ul li.post-next a > div:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/arrow.svg) no-repeat center center / contain;
  transform: translateY(-50%);
}
.post-link ul li.post-next.consulting a > div:before {
  background: url(../images/arrow-blue.svg) no-repeat center center / contain;
}
.post-link ul li.post-next.platform a > div:before {
  background: url(../images/arrow-lightblue.svg) no-repeat center center / contain;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  .post-link ul {
    flex-direction: column;
  }
  .post-link ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* ----------------------------------------------------------
 News / archive.php
---------------------------------------------------------- */

/* フィルタリング
--------------------------------------- */
.filter-options .flex {
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  border: 1px solid var(--gray);
  border-radius: 3em;
}
.filter-options .flex ul {
  display: flex;
  align-items: center;
  flex: 1
}
.filter-options .flex ul li {
  padding: 0 1em;
}
.filter-options .flex ul li a:hover {
  color: var(--orange);
  transition: .3s;
}
.filter-options .flex ul li.active {
  margin: 0 0.5em;
  border-radius: 2em;
  color: var(--white);
  background-color: var(--orange);
}
.filter-options .flex ul li.active a:hover {
  color: var(--white);
}
.filter-options .flex ul li:first-child.active {
  margin-left: 0;
}
.filter-options .flex ul li:first-child.active a:hover {
  color: var(--white);
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  .filter-options .flex {
    display: inline-flex;
    align-items: center;
  }
  .filter-options .flex h2 {
    position: relative;
    margin-right: 1.5em;
    padding-right: 1.5em;
  }
  .filter-options .flex h2:after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    display: block;
    width: 1px;
    height: 80%;
    background-color: var(--gray);
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  .filter-options .flex {
    padding: 1rem;
    border-radius: 1rem;
  }
  .filter-options .flex h2 {
    margin-bottom: 0.5rem;
    text-align: left;
  }
  .filter-options .flex ul {
    flex-wrap: wrap;
  }
  .filter-category .flex ul {
    justify-content: space-between;
  }
  .filter-category .flex ul li {
    width: 49%;
    margin: 0 0 0.5rem 0 !important;
    text-align: center;
  }
  .filter-year .flex ul li {
    width: 23%;
    margin: 0 1% 0.5rem 0 !important;
    text-align: center;
  }
  .filter-year .flex ul li:nth-child(4n) {
    margin-right: 0;
  }
}


/* 記事一覧
--------------------------------------- */
main.newsarchive .postlist {
  margin: 4rem 0;
}
main.newsarchive .news-post {
  display: flex;
  flex-wrap: wrap;
}
.news-post li {
  width: calc((100% - 3rem) / 4);
  height: auto;
  margin-right: 1rem;
  margin-bottom: 4rem;
  border: 1px solid var(--gray);
  border-radius: 0.5rem;
  background-color: var(--white);
  overflow: hidden;
}
.news-post li:nth-child(4n) {
  margin-right: 0;
}
.news-post li a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-post li .thumb {
  position: relative;
  margin-bottom: 1.5rem;
}
.news-post li .thumb figure {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.news-post li .thumb figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}
.news-post li:hover .thumb img {
  transform: scale(1.1);
  transition: .3s;
}
.news-post li .thumb .category {
  position: absolute;
  right: 1rem;
  bottom: 0;
  transform: translateY(50%);
}
.news-post li .thumb .category span {
  padding: 0.125em 1em;
  border-radius: 2em;
  color: var(--white);
  background-color: var(--orange);
}
.news-post li.category-corporate .thumb .category span {
  background-color: var(--orange);
}
.news-post li.category-consulting .thumb .category span {
  color: var(--lightblue);
  background-color: var(--blue);
}
.news-post li.category-platform .thumb .category span {
  color: var(--blue);
  background-color: var(--lightblue);
}
.news-post .post-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.news-post .post-inner:after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 1.25rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/arrow.svg) no-repeat center center / contain;
}
.news-post li.category-corporate .post-inner:after {
  background: url(../images/arrow.svg) no-repeat center center / contain;
}
.news-post li.category-consulting .post-inner:after {
  background: url(../images/arrow-blue.svg) no-repeat center center / contain;
}
.news-post li.category-platform .post-inner:after {
  background: url(../images/arrow-lightblue.svg) no-repeat center center / contain;
}
.news-post .post-inner .posttime {
  display: flex;
  margin-bottom: 0.5rem;
}
.news-post .post-inner .posttime time {
  color: var(--darkgray);
  font-weight: 300;
}
.news-post .post-inner .posttime span {
  margin-left: 0.5em;
  color: var(--orange);
}
.news-post li.category-corporate .posttime span {
  color: var(--orange);
}
.news-post li.category-consulting .post-inner .posttime span {
  color: var(--blue);
}
.news-post li.category-platform .post-inner .posttime span {
  color: var(--lightblue);
}
.news-post .post-inner h3 {
  margin-bottom: 2rem;
  font-weight: var(--fw-regular);
  line-height: 1.75em;
  word-break: break-all;
}
.news-post .post-inner .tags {
  margin-top: auto;
  padding-right: 1.5rem;
}
.news-post .post-inner .tags span {
  display: inline-flex;
  margin-right: 0.5em;
  color: var(--darkgray);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1em;
}
.news-post .post-inner .tags span:before {
  content: "#";
}
.no-posts {
  text-align: center;
}

@media screen and (max-width: 768px) { /* -- sp -- */
  .news-post li {
    width: 100%;
    margin: 0 0 2rem 0;
    border-radius: 1rem;
  }
}


/* ページネーション
--------------------------------------- */
.pagination {
  margin-top: 2rem;
  text-align: center;
}
.pagination .flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border: 1px solid var(--gray);
  border-radius: 3em;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5em;
}
.pagination ul li a:hover {
  color: var(--orange);
  transition: .3s;
}
.pagination ul li .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  color: var(--white);
  background-color: var(--orange);
}
.pagination ul li.prev-link {
  position: relative;
  padding-right: 1em;
}
.pagination ul li.prev-link:after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  display: block;
  width: 1px;
  height: 80%;
  background-color: var(--gray);
}
.pagination ul li:first-child {
  position: relative;
  margin-left: 1em;
  padding-left: 1em;
}
.pagination ul li.next-link {
  position: relative;
  padding-left: 1em;
}
.pagination ul li:first-child:before,
.pagination ul li.next-link:before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  display: block;
  width: 1px;
  height: 80%;
  background-color: var(--gray);
}

@media screen and (max-width : 768px) { /* -- sp -- */
  .pagination .flex {
    flex-direction: column;
  }
  .pagination .page-info {
    margin-bottom: 0.25em;
  }
  .pagination ul {
    flex-wrap: wrap;
  }
  .pagination ul li.prev-link {
    width: 100%;
    margin-bottom: 0.25rem;
    padding-right: 0;
  }
  .pagination ul li.next-link {
    width: 100%;
    margin-top: 0.25rem;
    padding-left: 0;
  }
  .pagination ul li:first-child {
    margin-left: 0.5em;
    padding-left: 0;
  }
  .pagination ul li:first-child:before, 
  .pagination ul li.next-link:before,
  .pagination ul li.prev-link:after {
    content: none;
  }
}


/* ----------------------------------------------------------
 AUCENT Views 
---------------------------------------------------------- */
main.views .post-wrapper {
  padding-bottom: 4rem;
}
body.aucent-views .postlist p.button {
  text-align: center;
}

/* Other Post
--------------------------------------- */
main.views .otherpost {
  padding: 4rem 0;
  background-color: var(--lightgray);
}
main.views .otherpost .flex h2 {
  margin-bottom: 0;
}
main.views .otherpost .flex .button a {
  margin: 0;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.views .otherpost .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.views .otherpost .button {
    margin: 2rem 0;
  }
  main.views .otherpost .swiper-container {
      width: 80%;
      margin: 0 auto;
  }
}


/* AUCENT Views Post List ※single,archive
--------------------------------------- */
main.views .views-post li {
  height: auto;
  border-radius: 0.5rem;
  background-color: var(--white);
  border: 1px solid var(--gray);
  overflow: hidden;
}
main.views .views-post li a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
main.views .views-post li .thumb {
  position: relative;
  margin-bottom: 1.5rem;
}
main.views .views-post li .thumb figure {
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
}
main.views .views-post li .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}
main.views .views-post li a:hover .thumb img {
  transform: scale(1.1);
  transition: .3s;
}
main.views .views-post .post-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
main.views .views-post .post-inner:after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 1.25rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/arrow.svg) no-repeat center center / contain;
}
main.views .views-post .post-inner .posttime {
  display: flex;
  margin-bottom: 0.5rem;
}
main.views .views-post .post-inner .posttime time {
  color: var(--darkgray);
  font-weight: 300;
}
main.views .views-post .post-inner .posttime span.new-label {
  margin-left: 0.5em;
  color: var(--orange);
}
main.views .views-post .post-inner .posttime span.category {
  margin-left: auto;
  padding: 0 1em;
  border-radius: 2em;
  background-color: var(--lightgray);
  font-weight: var(--fw-regular);
  font-size: 0.8rem;
}
main.views .views-post .post-inner .posttitle {
  margin-bottom: 2rem;
  font-weight: var(--fw-regular);
  line-height: 1.75em;
  word-break: break-all;
}

/* AUCENT Views Post List ※archive
--------------------------------------- */
main.archive.views .pickup {
  margin: 8rem auto;
}
main.archive.views .pickup > p {
  text-align: center;
}
main.archive.views .pickup ul {
  display: flex;
  flex-wrap: wrap;
}
main.archive.views .pickup ul li {
  width: calc((100% - 1rem) / 2);
  margin-right: 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}
main.archive.views .pickup ul li:nth-child(2n) {
  margin-right: 0;
}
main.archive.views .pickup ul li figure {
  position: relative;
  aspect-ratio: 2 / 1;
  height: auto;
  overflow: hidden;
}
main.archive.views .pickup ul li figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(255.36deg, rgba(0, 0, 0, 0) 0.79%, rgba(0, 0, 0, 0.4) 47.28%, rgba(0, 0, 0, 0.7) 100%);
}
main.archive.views .pickup ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}
main.archive.views .pickup ul li a:hover figure img {
  transform: scale(1.1);
  transition: .3s;
}
main.archive.views .pickup ul li a {
  position: relative;
}
main.archive.views .pickup ul li a div {
  position: absolute;
  left: 0;
  bottom: 2rem;
  padding: 0 2rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
}
main.archive.views .pickup ul li a div p {
  margin-bottom: 0.25rem;
  margin-left: -0.25em;
}
main.archive.views .pickup ul li a div p .category {
  padding: 0 1em;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2em;
  font-weight: var(--fw-regular);
}
main.archive.views .pickup ul li a div time {
  font-weight: var(--fw-regular);
}
main.archive.views .pickup ul li a div h3 {
  font-size: 1.125rem;
}
main.archive.views .postlist {
  margin: 4rem auto;
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.archive.views .pickup {
    margin: 4rem 0 2rem 0;
  }
  main.archive.views .pickup ul li:nth-child(2n) {
    display: none;
  }
  main.archive.views .postlist {
    padding-top: 0;
  }
}


/* フィルタリング */
main.views .filter-options .flex ul {
  flex-wrap: wrap;
}
main.views .filter-options .flex ul li {
  margin-top: 0.125em;
  margin-bottom: 0.125em;
}
main.views .filter-options .flex ul li a:hover {
  color: var(--orange);
  transition: .3s;
}
main.views .filter-options .flex ul li.active a:hover {
  color: var(--white);
}
main.archive.views .filter-category {
  margin-bottom: 2rem;
  text-align: center;
}
main.archive.views .views-post {
  display: flex;
  flex-wrap: wrap;
}
main.archive.views .views-post li {
  width: calc((100% - 3rem) / 4);
  margin-right: 1rem;
  margin-bottom: 2rem;
}
main.archive.views .views-post li:nth-child(4n) {
  margin-right: 0;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.views .filter-options .flex {
    max-width: 960px
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.archive.views .pickup ul li {
    width: 100%;
    margin: 0 0 2rem 0;
  }
  main.archive.views .pickup ul li a div {
    bottom: 0;
    padding: 1rem;
  }
  main.archive.views .views-post li {
    width: 100%;
    margin: 0 0 2rem 0;
    border-radius: 1rem;
  }
}


/* ----------------------------------------------------------
 Recruit / page-recruit.php
---------------------------------------------------------- */

/* Title
--------------------------------------- */
main.page.recruit .contents > .title {
  position: relative;
  margin-bottom: 6rem;
}
main.page.recruit .contents > .title figure {
  border-radius: 30em 0 0 30em;
  box-shadow: var(--shadow);
}
main.page.recruit .contents > .title figure img {
  height: 100%;
  object-fit: cover;
  border-radius: 30em 0 0 30em;
}
main.page.recruit .contents > .title .wrap {
  padding: 2rem 0;
}
main.page.recruit .contents > .title .subtitle + div {
  width: 55%;
}
main.page.recruit .contents > .title .subtitle + div h1 {
  font-size: 2rem;
}
main.page.recruit .contents > .title .subtitle + div h1 + p {
  margin-bottom: 1rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.page.recruit .contents > .title figure {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 200%;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.page.recruit .contents > .title {
    display: flex;
    flex-direction: column;
  }
  main.page.recruit .contents > .title figure {
    order: 1;
    width: 70%;
    margin-left: 30%;
  }
  main.page.recruit .contents > .title .wrap {
    order: 2;
  }
}


/* Think Authentic.
--------------------------------------- */
main.page.recruit .think .wrap {
  position: relative;
  padding: 6rem 0;
}
main.page.recruit .think h2 .en:nth-of-type(2) {
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.page.recruit .think h2 .en:nth-of-type(2):before {
  content: none;
}
main.page.recruit .think h3 {
  margin: 1rem 0;
  font-size: 1.15rem;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.page.recruit .think .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 10%;
    display: block;
    width: 200%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 0 10em 10em 0;
    background-color: var(--white);
  }
  main.page.recruit .think h3 + p {
    padding-right: 14em;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.page.recruit .think {
    padding: 4rem 0;
    background-color: var(--lightgray);
  }
  main.page.recruit .think .wrap {
    padding: 0;
  }
}


/* Competency
--------------------------------------- */
main.page.recruit .competency {
  margin: 6rem 0;
}
main.page.recruit .competency .wrap {
  position: relative;
  padding: 4rem 0;
}
main.page.recruit .competency .flex {
  display: flex;
  align-items: center;
}
main.page.recruit .competency figure {
  width: 40%;
}
main.page.recruit .competency .right {
  width: 60%;
  padding-left: 4rem;
}
main.page.recruit .competency .right .button {
  text-align: right;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.page.recruit .competency .flex {
    padding-left: 6rem;
  }
  main.page.recruit .competency .wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 200%;
    height: 100%;
    border: 1px solid var(--gray);
    border-radius: 14em 0 0 14em;
    background-color: var(--white);
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.page.recruit .competency .flex {
    flex-direction: column;
  }
  main.page.recruit .competency .right {
    order: 1;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0;
  }
  main.page.recruit .competency .right .buton {
    text-align: center !important;
  }
  main.page.recruit .competency figure {
    order: 2;
    width: 100%;
  }
}


/* Interview
--------------------------------------- */
main.page.recruit .interview {
  margin: 6rem 0 8rem 0;
}
main.page.recruit .interview .swipercontainer {
  position: relative;
  width: 100%;
  margin: 2rem auto;
}
main.page.recruit .interview .swipercontainer .swiper-project {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}
main.page.recruit .interview .swiper-slide {
  height: initial !important;
}
main.page.recruit .interview .swiper-button-prev:after,
main.page.recruit .interview .swiper-rtl .swiper-button-next:after {
  content: '' !important;
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  background: url(../images/arrow.svg) no-repeat center center / contain !important;
  transform: scale(-1,1);
}
main.page.recruit .interview .swiper-button-next:after,
main.page.recruit .interview .swiper-rtl .swiper-button-prev:after {
  content: '' !important;
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  background: url(../images/arrow.svg) no-repeat center center / contain !important;
}
main.page.recruit .interview ul li {
  padding: 1rem;
}
main.page.recruit .interview ul li .flex {
  display: flex;
  padding: 2rem 3rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
}
main.page.recruit .interview ul li .flex .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 23.5%;
}
main.page.recruit .interview ul li .flex .left figure {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1rem;
}
main.page.recruit .interview ul li .flex .left figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
main.page.recruit .interview ul li .flex .left > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
main.page.recruit .interview ul li .flex .left .cat {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0 1em;
  border-radius: 3em;
  color: var(--white);
  background-color: var(--orange);
}
main.page.recruit .interview ul li .flex .left .cat.corporate {
  color: var(--white);
  background-color: var(--orange);
}
main.page.recruit .interview ul li .flex .left .cat.consulting {
  color: var(--lightblue);
  background-color: var(--blue);
}
main.page.recruit .interview ul li .flex .left .cat.platform {
  color: var(--blue);
  background-color: var(--lightblue);
}
main.page.recruit .interview ul li .flex .left .joining {
  position: relative;
  font-weight: var(--fw-medium);
}
main.page.recruit .interview ul li .flex .left .team {
  font-weight: var(--fw-medium);
}
main.page.recruit .interview ul li .flex .right {
  width: 77.5%;
  padding-left: 2rem;
}
main.page.recruit .interview ul li .flex .right h3 {
  position: relative;
  margin: 2rem 0 0.5rem 0;
  padding: 0.125em 1em;
  font-weight: var(--fw-medium);
  line-height: 1.65em;
  background-color: #efefef;
}
main.page.recruit .interview ul li .flex .right h3:first-of-type {
  margin-top: 0;
}
main.page.recruit .interview ul li .flex .right p.text {
  margin-bottom: 0;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.65em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.page.recruit .interview .swipercontainer {
    min-width: 1000px;
  }
  main.page.recruit .interview .swiper-recruit {
    overflow: hidden;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -24px !important;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -24px !important;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.page.recruit .interview .swipercontainer {
    position: initial;
  }
  main.page.recruit .interview .swiper-recruit {
    overflow: hidden;
  }
  main.page.recruit .interview ul li .flex {
    flex-direction: column;
    padding: 2rem;
  }
  main.page.recruit .interview ul li .flex .left {
    width: 100%;
  }
  main.page.recruit .interview ul li .flex .left figure {
    width: 65%;
  }
  main.page.recruit .interview ul li .flex .right {
    width: 100%;
    padding: 0;
  }
  main.page.recruit .interview ul li .flex .right h3 {
    padding: 0.25rem 0.5rem;
    font-size: 0.95rem;
    line-height: 1.65em;
  }
  main.page.recruit .interview ul li .flex .right p.text {
    padding: 0;
  }
  main.page.recruit .swiper-button-next, 
  main.page.recruit .swiper-rtl .swiper-button-prev,
  main.page.recruit .swiper-button-prev, 
  main.page.recruit .swiper-rtl .swiper-button-next {
    top: 25% !important;
  }
}


/* Jobs
--------------------------------------- */
main.page.recruit .jobs {
  padding: 4rem 0;
  background-color: var(--lightgray);
}
main.page.recruit .jobs h2 {
  margin-bottom: 0;
}
main.page.recruit .jobs .flex {
  margin-bottom: 4rem;
}
main.page.recruit .jobs .flex div {
  display: flex;
  flex-direction: column;
  text-align: center;
}
main.page.recruit .jobs .filter-options {
  padding: 1rem 2rem;
  border: 1px solid var(--gray);
  border-radius: 3em;
  background-color: var(--white);
}
main.page.recruit .jobs .filter-options h2 {
  margin-bottom: 0;
}
main.page.recruit .jobs .filter-options ul {
  display: flex;
  align-items: center;
}
main.page.recruit .jobs .filter-options ul li {
  margin-right: 0.5em;
  padding: 0 1em;
}
main.page.recruit .jobs .filter-options ul li a:hover {
  color: var(--orange);
  transition: .3s;
}
main.page.recruit .jobs .filter-options ul li.active {
  border-radius: 2em;
  color: var(--white);
  background-color: var(--orange);
}
main.page.recruit .jobs .filter-options ul li.active a:hover {
  color: var(--white);
}
main.page.recruit .jobs .filter-options ul li:last-child {
  font-weight: var(--fw-semibold);
}
main.page.recruit .jobs .filter-options ul li:last-child span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 1em;
}
main.page.recruit .jobs .filter-options ul li:last-child span:after {
  content: "";
  display: block;
  margin-left: 2em;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/arrow.svg) no-repeat center center / contain;
}
main.page.recruit .jobs #post-container figure {
  margin-bottom: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
main.page.recruit .jobs #post-container figure img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
main.page.recruit .jobs #post-container h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.5rem;
}
main.page.recruit .jobs #post-container h3 .en {
  text-transform:capitalize;
  font-size: 1.5rem;
}
main.page.recruit .jobs #post-container h3 .en::first-letter,
main.page.recruit .jobs #post-container h3 .ja {
  color: var(--orange);
}
main.page.recruit .jobs #post-container h3 .ja {
  display: block;
  font-size: 0.9rem;
}
main.page.recruit .jobs #post-container ul {
  width: calc(100% - 2rem);
  margin: 0 auto;
}
main.page.recruit .jobs #post-container ul li.button {
  margin-bottom: 1rem;
  text-align: left;
}
main.page.recruit .jobs #post-container ul li.button a {
  width: 100%;
  margin-top: 0;
  padding: 0.75em 3em 0.75em 1.75em;
  font-weight: var(--fw-medium);
}
main.page.recruit .jobs #post-container p {
  padding: 0.75em 3em 0.75em 1.75em;
}
main.page.recruit .jobs #post-container p.button {
  margin-top: auto;
}
main.page.recruit .jobs #post-container p.button a {
  padding: 0.75em 5em 0.75em 1.75em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.page.recruit .jobs .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  main.page.recruit .jobs .filter-options ul li:last-child span:before {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    display: block;
    width: 1px;
    height: 80%;
    background-color: var(--gray);
  }
  main.page.recruit .jobs .flex {
    display: flex;
    justify-content: space-between;
  }
  main.page.recruit .jobs .flex div {
    width: 32%;
  }
  main.page.recruit .jobs #post-container figure {
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.page.recruit .jobs h2 {
    margin-bottom: 2rem;
  }
  main.page.recruit .jobs .filter-options {
    margin-bottom: 2rem;
    border-radius: 1rem;
  }
  main.page.recruit .jobs .filter-options ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main.page.recruit .jobs .filter-options ul li {
    width: 49%;
    margin: 0 0 1rem 0;
    text-align: center;
  }
  main.page.recruit .jobs .filter-options ul li:last-child {
    width: 100%;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray);
    text-align: left;
  }
  main.page.recruit .jobs .filter-options ul li:last-child span {
    width: 100%;
    padding: 0;
  }
  main.page.recruit .jobs .filter-options ul li:last-child span:after {
    margin-left: auto;
  }
  main.page.recruit .jobs .flex div {
    width: 100%;
    margin-bottom: 4rem;
  }
  main.page.recruit .jobs #post-container figure {
    aspect-ratio: 2 / 1;
    overflow: hidden;
  }
  main.page.recruit .jobs #post-container p.button {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 0;
  }
  main.page.recruit .jobs #post-container p.button a {
    width: 80%;
    margin-top: 0;
  }
  main.page.recruit .jobs #post-container h3 + p {
    text-align: center;
  }
}


/* ----------------------------------------------------------
 Recruit / single-recruit.php
---------------------------------------------------------- */

/* Title
--------------------------------------- */
main.recruit.single .title.flex {
  display: flex;
}
main.recruit.single .title.flex .title-default {
  margin-right: 4rem;
}
main.recruit.single .subtitle .title-default .en.en:first-letter,
main.recruit.single .subtitle .title-default .ja {
  color: var(--orange);
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit.single .subtitle {
    margin: 2rem 0 1rem 0;
  }
  main.recruit .recruit-post {
    border-radius: 1rem !important;
  }
  main.recruit .recruit-post .header figure img {
    aspect-ratio: 2 / 1 !important;
  }
}


/* Recruit Post
--------------------------------------- */
main.recruit .recruit-post {
  width: 90%;
  margin: 4rem auto 6rem auto;
  border: 1px solid var(--gray);
  border-radius: 2rem;
  background-color: var(--white);
  overflow: hidden;
}

/* ヘッダ部分 */
main.recruit .recruit-post .header {
  position: relative;
}
main.recruit .recruit-post .header figure img {
  aspect-ratio: 4 / 1;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main.recruit .recruit-post .header .button {
  position: absolute;
  right: 2rem;
  bottom: 0;
  transform: translateY(50%);
}
main.recruit .recruit-post .header .button a {
  margin: 0;
  padding-right: 8em;
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit .recruit-post .header .button {
    right: initial;
    left: 50%;
    width: 90%;
    transform: translate(-50%, 50%);
  }
}


/* 募集詳細 */
main.recruit .recruit-post .inner {
  padding: 6rem;
}
main.recruit .recruit-post h1 {
  margin-bottom: 4rem;
  font-size: 1.25rem;
  line-height: 1.5em;
}
main.recruit .recruit-post section {
  display: flex;
  margin-bottom: 4rem;
}
main.recruit .recruit-post section:last-of-type {
  margin-bottom: 2rem;
}
main.recruit .recruit-post section h2 span {
  display: inline-block;
  position: relative;
}
main.recruit .recruit-post section.recruit-contents {
  display: block;
}
main.recruit .recruit-post section.recruit-contents dl {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem auto;
  border: 1px solid var(--gray);
  border-bottom: 0;
}
main.recruit .recruit-post section.recruit-contents dl dt {
  width: 10em;
  padding: 1em 1.25em;
  border-right: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  background-color: var(--lightgray);
}
main.recruit .recruit-post section.recruit-contents dl dd {
  width: calc(100% - 10em);
  padding: 1em 1.25em;
  border-bottom: 1px solid var(--gray);
}
main.recruit .recruit-post section.recruit-flow h2 {
  width: 8.5em;
  padding-top: 0.75em;
}
main.recruit .recruit-post section.recruit-flow > div ul {
  display: flex;
  margin-bottom: 1rem;
}
main.recruit .recruit-post section.recruit-flow > div ul li {
  position: relative;
  padding: 0.75em 1em;
  border: 2px solid var(--orange);
  border-radius: 0.5rem;
  color: var(--orange);
  font-weight: var(--fw-medium);
}
main.recruit .recruit-post section.recruit-flow > div ul li:last-child {
  color: var(--white);
  background-color: var(--orange);
}
main.recruit .recruit-post section.recruit-flow > div ul li:last-child:after {
  content: none;
}
main.recruit .recruit-post .inner .button {
  font-weight: var(--fw-medium);
  font-size: 1.25rem;
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.recruit .recruit-post section h2 {
    width: 13em;
  }
  main.recruit .recruit-post section h2 span:before {
    content: "";
    position: absolute;
    left: -3rem;
    top: 50%;
    display: block;
    width: 2rem;
    height: 1px;
    background-color: var(--gray);
  }
  main.recruit .recruit-post section p {
    width: calc(100% - 13em);
  }
  main.recruit .recruit-post section.recruit-flow > div {
    width: calc(100% - 8.5em);
  }
  main.recruit .recruit-post section.recruit-flow > div ul li {
    display: flex;
    align-items: center;
    margin-right: 1.75em;
  }
  main.recruit .recruit-post section.recruit-flow > div ul li:after {
    content: "";
    position: absolute;
    right: -1.25em;
    display: block;
    width: 0.5em;
    height: 0.5em;
    transform: rotate(45deg);
    margin-left: 3em;
    border-top: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit .recruit-post {
    width: 100%;
    margin-top: 3rem;
  }
  main.recruit .recruit-post .inner {
    padding: 4rem 2rem;
  }
  main.recruit .recruit-post section {
    flex-direction: column;
    margin-bottom: 4rem;
  }
  main.recruit .recruit-post section h2 { 
    margin-bottom: 1rem;
  }
  main.recruit .recruit-post section.recruit-contents dl {
    flex-direction: column;
  }
  main.recruit .recruit-post section.recruit-contents dl dt {
    width: 100%;
    padding: 0.5rem;
    border-right: 0;
  }
  main.recruit .recruit-post section.recruit-contents dl dd {
    width: 100%;
    padding: 0.5rem;
  }
  main.recruit .recruit-post section.recruit-flow > div ul {
    width: 100%;
    flex-direction: column;
  }
  main.recruit .recruit-post section.recruit-flow > div ul li {
    width: 100%;
    margin: 0 0 2rem 0;
    text-align: center;
  }
  main.recruit .recruit-post section.recruit-flow > div ul li:last-child {
    margin-bottom: 0;
  }
  main.recruit .recruit-post section.recruit-flow > div ul li:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1.25rem;
    display: block;
    width: 0.5em;
    height: 0.5em;
    transform: rotate(135deg);
    border-top: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
  }
}


/* Recruit Other
--------------------------------------- */
main.recruit .recruit-post + .button {
  text-align: center;
}
main.recruit .recruit-other .left h2 {
  margin-bottom: 0;
}
main.recruit .recruit-other .right > div {
  margin-bottom: 2rem;
}
main.recruit .recruit-other .right h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
main.recruit .recruit-other .right h3 .en {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
main.recruit .recruit-other .right h3 .en::first-letter {
  color: var(--orange);
}
main.recruit .recruit-other .right h3 .ja {
  font-size: 0.9rem;
  color: var(--orange);
}
main.recruit .recruit-other .right ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0.5em;
}
main.recruit .recruit-other .right ul li {
  width: calc((100% - 3rem) / 2);
  margin: 0 1.5rem 1rem 0;
}
main.recruit .recruit-other .right ul li a {
  width: 100%;
  margin-top: 0;
  padding: 0.85em 8em 0.85em 1.75em;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.recruit .recruit-other {
    display: flex;
  }
  main.recruit .recruit-other .left {
    width: 30%;
  }
  main.recruit .recruit-other .right {
    width: 70%;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit .recruit-other .right {
    margin-top: 3rem;
  }
  main.recruit .recruit-other .right ul {
    flex-direction: column;
  }
  main.recruit .recruit-other .right ul li {
    width: 100%;
  }
  main.recruit .recruit-other .right ul li a {
    padding-right: 3em !important;
  }
}


/* ----------------------------------------------------------
 Competency / page-competency.php
---------------------------------------------------------- */
main.competency .title.flex {
  margin-bottom: 4rem;
}
main.competency .title.flex figure img {
  width: 80%;
  margin: 0 10%;
}
main.competency section.flex {
  margin-bottom: 8rem;
}
main.competency section.flex h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.competency section.flex h2 .ja {
  font-size: 2rem;
  letter-spacing: 0.5em;
  margin-left: 0.5em;
  margin-bottom: 0.25em;
}
main.competency section.flex ul li {
  display: flex;
  align-items: center;
}
main.competency section.flex ul li:first-child {
  margin-bottom: 2rem;
}
main.competency section.flex ul li h3 {
  position: relative;
  z-index: 1;
  width: 10em;
}
main.competency section.flex ul li h3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main.competency section.flex ul li div {
  width: calc(100% - 10em);
  padding: 3rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
}
main.competency section.flex ul li div h4 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.competency .button {
  text-align: center;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.competency .title.flex {
    display: flex;
    align-items: flex-start;
  }
  main.competency .title.flex .left {
    width: 50%;
  }
  main.competency .title.flex figure {
    width: 50%;
  }
  main.competency section.flex {
    display: flex;
    align-items: center;
  }
  main.competency section.flex h2 {
    width: 12em;
  }
  main.competency section.flex ul {
    width: calc(100% - 12em);
  }
  main.competency section.flex.action ul li h3,
  main.competency section.flex.value ul li h3 {
    margin-right: -3rem;
  }
  main.competency section.flex.action ul li div,
  main.competency section.flex.value ul li div {
    padding-left: 5rem;
  }
  main.competency section.flex.wayofthinking ul {
    order: 1;
  }
  main.competency section.flex.wayofthinking ul div {
    order: 1;
    padding-right: 5rem;
  }
  main.competency section.flex.wayofthinking ul h3 {
    order: 2;
    margin-left: -3rem;
  }
  main.competency section.flex.wayofthinking h2 {
    order: 2;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  main.competency .title.flex figure img {
    width: 100%;
    margin: 2rem 0;
  }
  main.competency section.flex h2 {
    margin-bottom: 1rem;
  }
  main.competency section.flex ul li {
    flex-direction: column;
    align-items: center;
  }
  main.competency section.flex ul li h3 {
    margin-bottom: -4rem;
  }
  main.competency section.flex ul li div {
    width: 100%;
    padding: 6rem 2rem 2rem 2rem;
  }
}


/* ----------------------------------------------------------
 Privacy Policy / page-privacy.php
---------------------------------------------------------- */
main.privacy .wrap section {
  margin: 6rem auto;
  padding: 6rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
  background-color: var(--white);
}
main.privacy .wrap section h2 {
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.75em;
}
main.privacy .wrap section h2:first-of-type {
  margin-top: 0;
}
main.privacy .wrap section ul li > ul,
main.privacy .wrap section ol li > ol {
  margin: 0.5rem auto;
}
main.privacy .wrap section p.button {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
}
main.privacy .wrap section p.button a {
  text-decoration: none !important;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  main.privacy .wrap .editor-contents > p:first-of-type {
    width: 45em;
  }
}

@media screen and (max-width: 768px) { /* -- sp -- */
  main.privacy .wrap section {
    margin-top: 4rem;
    padding: 2rem;
  }
}


/* ----------------------------------------------------------
 Contact / page-contact.php
---------------------------------------------------------- */
.mailform-wrapper h2 + p {
  margin: 2rem auto;
  text-align: center;
}
.mailform-wrapper .mailform {
  margin-bottom: 2rem;
  padding: 4rem 4rem 6rem 4rem;
  border: 1px solid var(--gray);
  border-radius: 2rem;
  background-color: var(--white);
}
.mailform-wrapper dl {
  display: flex;
  flex-wrap: wrap;
}
.mailform-wrapper dl dt {
  width: 10em;
  margin-bottom: 2rem;
  padding: 0.5em;
  font-weight: var(--fw-medium);
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
}
.mailform-wrapper dl dt span {
  color: var(--orange);
}
.mailform-wrapper dl dd {
  width: calc(100% - 10em);
  margin-bottom: 2rem;
}
.confirm .mailform-wrapper dl dd,
.entry-confirm .mailform-wrapper dl dd {
  padding: 0.5em;
}
.mailform-wrapper dl dd input,
.mailform-wrapper dl dd textarea,
.mailform-wrapper dl dd select {
  width: 100%;
  padding: 0.5em 0.75em;
  border: 1px solid var(--gray);
  border-radius: 0.5em;
  resize: vertical;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 175%;
  letter-spacing: 0.05em;
}
.mailform-wrapper dl dd select {
  -webkit-appearance: none;
  appearance: none;
}
.mailform-wrapper dl dd .select {
  position: relative;
}
.mailform-wrapper dl dd .select::after {
  content: "";
  position: absolute;
  top: 1.125em;
  right: 1.5em;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
}
input::placeholder,
textarea::placeholder {
  color: var(--gray);
  opacity: 1;
}
.mailform-wrapper .accept {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.mailform-wrapper .accept .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.mailform-wrapper .accept label {
  display: flex;
  align-items: center;
}
.mailform-wrapper .accept input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5em;
}
.mailform-wrapper .accept a {
  display: inline;
  text-decoration: underline;
  transition: .3s;
}
.mailform-wrapper .accept a:hover {
  color: var(--orange);
  transition: .3s;
}
.mailform-wrapper .submit {
  display: flex;
  justify-content: center;
}
.mailform-wrapper .submit .check {
  display: inline-flex;
  align-items: center;
}
.mailform-wrapper .submit .check > span {
  position: relative;
}
.mailform-wrapper .submit .check span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/arrow.svg) no-repeat center center / contain;
  transform: translateY(-50%);
}
.confirm .mailform-wrapper .submit {
  margin-top: 2rem;
}
.confirm .mailform-wrapper .submit .check span:nth-of-type(1) {
  text-align: right;
}
.confirm .mailform-wrapper .submit .check span:nth-of-type(1):after {
  transform: translateY(-50%) scale(-1, 1);
}
.mailform-wrapper input.wpcf7-submit, 
.mailform-wrapper input.wpcf7-previous {
  position: relative;
  width: 15em;
  margin: 0 0.5rem;
  padding: 1em 1em 1em 1.75em;
  border: 1px solid var(--gray);
  border-radius: 3em;
  background-color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: left;
  transition: .3s;
}
input.wpcf7-submit:not(:disabled):hover,
input.wpcf7-previous:not(:disabled):hover {
  color: var(--orange);
  transition: .3s;
}
.mailform-wrapper .wpcf7-spinner {
  display: none !important;
}
.contact-bottom {
  z-index: -1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 350px;
  background: url(../images/bg-footer.svg) no-repeat center center / 100%;
}
.contact-bottom .background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
}
body.thanks p.button,
body.entry-thanks p.button {
  text-align: center;
}
body.thanks .contact-bottom,
body.entry-thanks .contact-bottom {
  display: none;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */  
  .mailform-wrapper {
    width: 80%;
    margin: 8rem auto 0 auto;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  .mailform-wrapper {
    margin: 4rem auto 0 auto;
  }
  .mailform-wrapper .mailform {
    padding: 2rem;
    border-radius: 1rem;
  }
  .mailform-wrapper dl {
    flex-direction: column;
  }
  .mailform-wrapper dl dt {
    width: 100%;
    margin-bottom: 0;
  }
  .mailform-wrapper dl dd {
    width: 100%;
    margin-bottom: 1rem;
  }
  .wpcf7-list-item {
    margin-left: 0;
  }
}


/* 2025.12追記 Turnstile実装
--------------------------------------- */
.mailform .cloudflare {
  text-align: center;
  margin-bottom: 2rem;
}