@charset "UTF-8";
/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */
/* * What follows is the result of much research on cross-browser styling.
* * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* * Kroc Camen, and the H5BP dev community and team. */
/* ==========================================================================
* * Base styles: opinionated defaults
* * ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/* * Remove text-shadow in selection highlight:
* * https://twitter.com/miketaylr/status/12228805301
* *
* * Vendor-prefixed and regular ::selection selectors cannot be combined:
* * https://stackoverflow.com/a/16982510/7133471
* *
* * Customize the background color to match your design. */
::-moz-selection, ::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* * A better looking default horizontal rule */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* * Remove the gap between audio, canvas, iframes,
* * images, videos and the bottom of their containers:
* * https://github.com/h5bp/html5-boilerplate/issues/440 */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

/* * Remove default fieldset styles. */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* * Allow only vertical resizing of textareas. */
textarea {
  resize: vertical;
}

/* ==========================================================================
* * Browser Upgrade Prompt
* * ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
* * Author's custom styles
* * ========================================================================== */
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  padding: 0;
  color: #353436;
  font-family: "dnp-shuei-gothic-gin-std", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
  background-color: #F4F3F5;
}
body * {
  box-sizing: border-box;
}
body *::before, body *::after {
  box-sizing: border-box;
}


body.home::before{
  content: '';
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(/images/img_gradient_fixedBackGroundImage.jpg) 50% 50% no-repeat;
  background-size: cover;
}

#bg{
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #F4F3F5;
}

#wrapper{
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

body.home #wrapper{
  z-index: 2;
}


a {
  color: #222222;
  text-decoration: none;
  opacity: 1;
  transition: all 300ms ease-in;
}
a:hover {
  opacity: 1;
}

input[type=submit], input[type=reset], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 300ms ease-in;
}
input[type=submit]:hover, input[type=reset]:hover, input[type=button]:hover {
  opacity: 0.7;
}

button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 300ms ease-in;
}
button:hover {
  opacity: 1;
}
button::-webkit-search-decoration {
  display: none;
}
button::focus {
  outline-offset: -2px;
}

input[type=submit]::-webkit-search-decoration, input[type=reset]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=reset]::focus, input[type=button]::focus {
  outline-offset: -2px;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #191919;
  letter-spacing: 0.05em;
  font-weight: 400;
}

p {
  line-height: 2;
}

p:empty {
  margin: 0;
}

:focus {
  outline: none;
}


/* ボタン01 */
.link-btn01{
  position: relative;
  display: inline-block;
  padding-bottom: 13px;
  text-decoration: none;
  overflow: hidden;
}
a .link-btn01::before,
a .link-btn01::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  transition: all 300ms ease-in-out 300ms;
}
a .link-btn01::after{
  transform: translate(-100%, 0);
  transition: all 300ms ease-in-out;
}
a .link-btn01 span{
  position: relative;
  display: flex;
  font-weight: 700;
  color: #353436;
  line-height: 1;
  overflow: hidden;
}
a .link-btn01 span::after{
  content: '';
  position: relative;
  top: 3px;
  display: block;
  width: 12px;
  height: 12px;
  margin-left: .4em;
  background: url(/images/btn_arrow.png) 0 0 no-repeat;
  background-size: contain;
  transition: all 300ms ease-in-out 300ms;
}
a .link-btn01 span::before{
  content: '';
  position: absolute;
  right: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  margin-left: .4em;
  background: url(/images/btn_arrow.png) 0 0 no-repeat;
  background-size: contain;
  transform: translate(-150%, 150%);
  transition: all 300ms ease-in-out;
}
a:hover .link-btn01::before{
  transform: translate(100%, 0);
  transition: all 300ms ease-in-out;
}
a:hover .link-btn01::after{
  transform: translate(0, 0);
  transition: all 300ms ease-in-out 300ms;
}
a:hover .link-btn01 span::after{
  opacity: 0;
  transform: translate(150%, -150%);
  transition: all 300ms ease-in-out;
}
a:hover .link-btn01 span::before{
  transform: none;
  transition: all 300ms ease-in-out 300ms;
}

/* ボタン02 */
.link-btn02-wrap{
  display: flex;
  justify-content: center;
  margin: 90px auto 0;
}
.link-btn02{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 48px;
  border: solid 1px transparent;
  border-radius: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 300ms ease-in-out;
}
.link-btn02::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: solid 1px #2B2A2C;
  border-radius: 25px;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-in-out;
}
.link-btn02 span{
  position: relative;
  display: flex;
  color: #353436;
  line-height: 1;
  overflow: hidden;
}
.link-btn02 span::after{
  content: '';
  position: relative;
  top: 3px;
  display: block;
  width: 12px;
  height: 12px;
  margin-left: .4em;
  background: url(/images/btn_arrow.png) 0 0 no-repeat;
  background-size: contain;
  transition: all 300ms ease-in-out 100ms;
}
.link-btn02 span::before{
  content: '';
  position: absolute;
  right: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  margin-left: .4em;
  background: url(/images/btn_arrow_w.png) 0 0 no-repeat;
  background-size: contain;
  transform: translate(-150%, 150%);
}
.link-btn02:hover{
  background-color: #1B1B1B;
}
.link-btn02:hover::before{
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  opacity: 0;
}
.link-btn02:hover span{
  color: #fff;
}
.link-btn02:hover span::after{
  opacity: 0;
  transform: translate(150%, -150%);
  transition: none;
}
.link-btn02:hover span::before{
  transform: none;
  transition: all 300ms ease-in-out 100ms;
}

/* ボタン03 */
.link-btn03{
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  text-decoration: none;
  overflow: hidden;
}
a .link-btn03::after{
  content: '';
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  background: url(/images/btn_arrow.png) 0 0 no-repeat;
  background-size: contain;
  transition: all 300ms ease-in-out 300ms;
}
a .link-btn03::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(/images/btn_arrow.png) 0 0 no-repeat;
  background-size: contain;
  transform: translate(-150%, 150%);
  transition: all 300ms ease-in-out;
}
a:hover .link-btn03::after{
  opacity: 0;
  transform: translate(150%, -150%);
  transition: all 300ms ease-in-out;
}
a:hover .link-btn03::before{
  transform: none;
  transition: all 300ms ease-in-out 300ms;
}

/* コンテンツ */
#content {
  overflow: hidden;
}

#overlay {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: rgba(27,27,27,0.4);
}

/* 英語フォント */
.martel {
  font-family: "Martel Sans", sans-serif;
  font-style: normal;
  letter-spacing: 0.02em;
}

/* ヘッダ－ */
#header {
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 96px;
  margin: 0 auto;
  padding: 0;
  z-index: 1000;
  background-color: #F4F3F5;

  animation: opining 2s 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#header #nav-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 40px 8% 0 8%;
  transition: all 300ms 0s ease;
}
#header #nav-wrap.service-nav {
  width: 98%;
  height: 620px;
  top: 10px !important;
  padding: 30px 7% 0 7%;
  border-radius: 20px;
  background-color: #F4F3F5;
}
#header #nav-wrap.service-nav::before {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: '';
  width: 86%;
  height: 1px;
  background-color: #CCCBCD;
}

#header h1 {
  width: 184px;
  margin: 0;
  line-height: 0;
}
#header #nav {
  display: flex;
  height: 35px;
  margin-top: 8px;
}
#header #nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
#header #nav > ul > li {
  margin-right: 50px;
}
#header #nav > ul > li:nth-of-type(6) {
  margin-right: 96px;
}
#header #nav > ul > li > a {
  position: relative;
  z-index: 2;
  display: block;
  height: 28px;
  font-weight: 600;
  color: #222222;
}
#header #nav > ul > li:not(:last-child) > a::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: '';
  width: 100%;
  height: 2px;
  background: #222222;

  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
#header #nav > ul > li:not(:last-child) > a:hover::after {
  transform: scale(1, 1);
}
#header #nav > ul > li:not(:last-child) > a.on::after {
  transform: scale(1, 1);
}
#header #nav > ul > li.contact {
  margin-right: 0;
}
#header #nav > ul > li.contact > a {
  display: block;
  width: 107px;
  height: 27px;
  font-size: 1.4rem;
  font-weight: 600;
  border: solid 1px #222;
  border-radius: 27px;
  line-height: 2.2;
  text-align: center;
  transition: all 300ms ease-in-out;
}
#header #nav > ul > li.contact > a:hover {
  color: #ffffff;
  background-color: #1B1B1B;
}

/* Service サブメニュー */
#header #nav-sub {
  display: none;
  justify-content: space-between;
  position: absolute;
  z-index: 1000;
  top: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 30px;
  width: 100%;
  max-width: 960px;
}
#header #nav-sub > div:nth-of-type(1) {
  position: relative;
  width: 200px;
}
#header #nav-sub > div:nth-of-type(1) > p:nth-of-type(1) {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
}
#header #nav-sub > div:nth-of-type(1) > p:nth-of-type(2) {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}
#header #nav-sub > div:nth-of-type(1) > div.link-btn02-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
}
#header #nav-sub > div:nth-of-type(1) > div.link-btn02-wrap > a.link-btn02{
  width: 188px;
  height: 36px;
  padding: 2px 0 0 0;
  font-size: 1.2rem;
}
#header #nav-sub > div:nth-of-type(1) > div.link-btn02-wrap > a.link-btn02 span{
  line-height: 1.2;
}
#header #nav-sub > div:nth-of-type(1) > div.link-btn02-wrap > a.link-btn02 span::after{
  top: 2px;
  width: 8px;
  height: 8px;
  background-size: 8px;
}
#header #nav-sub > div:nth-of-type(1) > div.link-btn02-wrap > a.link-btn02 span::before{
  top: 2px;
  width: 8px;
  height: 8px;
  background-size: 8px;
}
#header #nav-sub > div:nth-of-type(1) > div.link-btn02-wrap > a.link-btn02:hover::before{
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  opacity: 0;
}

#header #nav-sub > div:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  width: 456px;
}
#header #nav-sub > div:nth-of-type(2) > a {
  display: block;
  width: 204px;
  margin: 0;
}
#header #nav-sub > div:nth-of-type(2) > a:nth-of-type(2n) {
  margin-left: 48px;
}
#header #nav-sub > div:nth-of-type(2) > a:nth-of-type(3),
#header #nav-sub > div:nth-of-type(2) > a:nth-of-type(4) {
  margin-top: 40px;
}
#header #nav-sub > div:nth-of-type(2) > a > .img {
  margin:0 auto;
  overflow:hidden;
  border-radius: 12px;
}
#header #nav-sub > div:nth-of-type(2) > a > .img > img {
  transition:1s all;
}
#header #nav-sub > div:nth-of-type(2) > a:hover > .img > img {
  transform:scale(1.05,1.05);
  transition:1s all;
}
#header #nav-sub > div:nth-of-type(2) > a > p:nth-of-type(1) {
  margin: 10px 0 0 0;
  font-size: 1.1rem;
  color: #6B6A6C;
}
#header #nav-sub > div:nth-of-type(2) > a > p:nth-of-type(2) {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2B2A2C;
}

/* ヘッダー固定 */
#header.fixed {
  position: fixed;
  top: -96px;
}
#header.fixed.active {
  top: 0;
}

/* フッター */
#footer {
  padding: 110px 0 100px 0;
  background-color: #1B1B1B;
  color: #ffffff;
}
#footer .contact {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 160px 0;
  border-bottom: 1px solid #6B6A6C;
}
#footer .contact > p:nth-of-type(1) {
  margin: 0;
  font-weight: 700;
}
#footer .contact > h2 {
  margin: 0;
  font-size: 4.8rem;
  font-weight: 500;
  color: #ffffff;
}
#footer .contact > p:nth-of-type(2) {
  margin: 0;
  color: #FDFCFE;
}
#footer .contact > a {
  position: absolute;
  top: 0;
  right: 80px;
  display: block;
  width: 280px;
  height: 280px;
  background-color: #ffffff;
  border-radius: 140px;
}
#footer .contact > a > span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 120px;
  height: 20px;
  margin: auto;
  font-size: 2rem;
  font-weight: 500;
  color: #2B2A2C;
  line-height: 1;
  text-align: center;
}
#footer .contact > a:hover {
  animation: footer_contact_bg 0.7s ease;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  opacity: 1;
}
#footer .contact > a:hover > span {
  color: #FDFCFE;
}
@keyframes footer_contact_bg {
  100% {
    background: url(/images/footer_contact_bg.png) center center no-repeat;
    background-size: cover;
  }
}

#footer .nav {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 960px;
  margin: 80px auto 0;
}
#footer .nav > div:nth-of-type(1) {
  display: flex;
  width: 78%;
}
#footer .nav > div:nth-of-type(1) ul {
  width: 30%;
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer .nav > div:nth-of-type(1) ul:nth-of-type(2) {
  width: 40%;
}
#footer .nav > div:nth-of-type(1) ul li {
  margin-top: 20px;
}
#footer .nav > div:nth-of-type(1) ul li a {
  font-size: 1.8rem;
  font-size: 500;
  color: #ffffff;
}
#footer .nav > div:nth-of-type(1) ul li a:hover {
  opacity: 0.7;
}
#footer .nav > div:nth-of-type(1) ul li.service {
  margin: 5px 0 0 0;
  padding: 0 0 0 10px;
}
#footer .nav > div:nth-of-type(1) ul li.service a {
  font-size: 1.4rem;
  font-size: 700;
  letter-spacing: 0.05em;
}
#footer .nav > div:nth-of-type(2) {
  width: 204px;
  margin: 20px 0 0 0;
}
#footer .nav > div:nth-of-type(2) p {
  margin: 0;
  font-size: 1.3rem;
  color: #CCCBCD;
}
#footer .nav > div:nth-of-type(2) ul {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}
#footer .nav > div:nth-of-type(2) ul li {
  width: 204px;
  height: 56px;
  margin: 0 0 10px 0;
}
#footer .nav > div:nth-of-type(2) ul li a {
  display: block;
  width: 204px;
  height: 56px;
  border: 1px solid #6B6A6C;
  border-radius: 2px;
}
#footer .nav > div:nth-of-type(2) ul li a:hover {
  border: 1px solid #ffffff;
  opacity: 1;
}
#footer .nav > div:nth-of-type(2) ul li a > img {
  width: 172px;
  margin: 16px 0 0 16px;
}
#footer .copyright {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: 80px auto 0;
  font-size: 1.2rem;
}
#footer .copyright > p:nth-of-type(1) > a {
  position: absolute;
  top: 0;
  left: 250px;
  color: #ffffff;
}
#footer .copyright > p:nth-of-type(1) > a:hover {
  opacity: 0.7;
}
#footer .copyright > p:nth-of-type(2) {
  color: #939294;
}



/* トップページ */

/* メイン画像 */
.home #mv {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 160px 0 0 0;
}
.home #mv > div.main {
  position: relative;
  z-index: 1;
  display: block;
  padding-bottom: 150px;
  animation: opining 4s 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.home #mv .mv-images div{
  position: absolute;
  left: 0;
  top: 0;
}
.home #mv .mv-images div:nth-last-of-type(1){
  position: relative;
  display: block;
}
.home #mv .mv-images div.off{
  opacity: 0;
  transition: all 500ms ease-in-out;
}
.home #mv .mv-images div.on{
  opacity: 1;
  transition: all 500ms ease-in-out .5s;
}

.home #mv .news-pickup {
  position: fixed;
  overflow: hidden;
  z-index: 999;
  bottom: 50px;
  right: 20px;
  display: block;
  padding: 9px 30px 0 30px;
  width: 90%;
  max-width: 540px;
  height: 46px;
  background-color: #ffffff;
  border-radius: 29px;
  box-shadow: 0px 4px 10px rgba(43, 42, 44, 0.15);

  animation: opining 4s 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.home #mv .news-pickup.on {
  animation: none;
  transform: none;
  transition: unset;
  opacity: 1;
  transition: all 300ms ease-in;
}
.home #mv .news-pickup.off {
  animation: none;
  transform: none;
  transition: unset;
  opacity: 0;
  transition: all 300ms ease-in;
}

.home #mv .news-pickup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.home #mv .news-pickup ul li {
  margin-right: 30px;
}
.home #mv .news-pickup ul li > span:nth-of-type(1) {
  margin-right: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6B6A6C;
  letter-spacing: 0;
}
.home #mv .news-pickup ul li > span:nth-of-type(2) {
  font-size: 1.4rem;
  font-weight: 400;
}

@keyframes opining {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.home .tagline {
  position: absolute;
  z-index: 2;
  top: 160px;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  width: 33%;
  max-width: 434px;
  height: 160vw;
  max-height: 3080px;
  animation: opining 4s 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.home .tagline > div {
  position: sticky;
  top: 0;
  padding-top: 30%;
}


/* コンテンツ */
.home #content > section {
  width: 95%;
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 0;
}

/* h2 タイトル */
.home #content .h2-title {
  text-align: center;
}
.home #content .h2-title > p:nth-of-type(1) {
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.5;
}
.home #content .h2-title > h2 {
  margin: 0 auto;
  font-size: 4.8rem;
  font-weight: 500;
}
.home #content .h2-title > p:nth-of-type(2) {
  width: 624px;
  margin: 0 auto;
  text-align: left;
}

/* intro */
.home #content > section#intro {
  padding-top: 17%;
  text-align: center;
}
.home #content > section#intro > p {
  margin: 0;
}
.home #content > section#intro > div {
  display: flex;
  justify-content: space-between;
  width: 360px;
  margin: 50px auto 0;
}
.home #content > section#intro > div > a  {
  display: block;
  width: 156px;
  margin: 0;
  text-align: left;
}
.home #content > section#intro > div > a > span.link-btn01  {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* approach */
.home #content > section#approach > .detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 960px;
  margin: 90px auto 0;
}
.home #content > section#approach > .detail > div {
  width: 32.6%;
  margin: 0;
  padding: 10px 24px 25px 24px;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.home #content > section#approach > .detail > div > p:nth-of-type(1) {
  font-size: 2.0rem;
  font-weight: 600;
}
.home #content > section#approach > .detail > div > img {
  width: 240px;
  margin: 0 auto;
}
.home #content > section#approach > .detail > div > p:nth-of-type(2) {
  margin: 0 auto;
  font-size: 2.0rem;
  font-weight: 700;
}
.home #content > section#approach > .detail > div > p:nth-of-type(3) {
  margin: 10px auto 0;
  font-size: 1.4rem;
  text-align: left;
}

/* service */
.home #content > section#service > .service-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  margin: 90px auto 0;
}
.home #content > section#service > .service-list > a {
  position: relative;
  display: block;
}
.home #content > section#service > .service-list > a:nth-of-type(1),
.home #content > section#service > .service-list > a:nth-of-type(2) {
  height: 570px;
  margin: 0 0 100px 0;
}
.home #content > section#service > .service-list > a:nth-of-type(3),
.home #content > section#service > .service-list > a:nth-of-type(4) {
  width: 47%;
}
.home #content > section#service > .service-list > a:nth-of-type(4) {
  margin-left: 6%;
}
.home #content > section#service > .service-list > a > .img {
  margin:0 auto;
  overflow:hidden;
  border-radius: 12px;
}
.home #content > section#service > .service-list > a > .img > img {
  transition:1s all;
}
.home #content > section#service > .service-list > a:hover > .img > img {
  transform:scale(1.05,1.05);
  transition:1s all;
}
.home #content > section#service > .service-list > a > p:nth-of-type(1) {
  margin: 40px 0 0 0;
  font-weight: 600;
  color: #6B6A6C;
}
.home #content > section#service > .service-list > a > p:nth-of-type(2) {
  margin: 0;
  padding: 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.home #content > section#service > .service-list > a:nth-of-type(1) > p:nth-of-type(3),
.home #content > section#service > .service-list > a:nth-of-type(2) > p:nth-of-type(3) {
  width: 456px;
  position: absolute;
  bottom: 30px;
  right: 0;
}
.home #content > section#service > .service-list > a > span.link-btn01 {
  display: block;
  width: 109px;
}
.home #content > section#service > .service-list > a:nth-of-type(1) > span.link-btn01,
.home #content > section#service > .service-list > a:nth-of-type(2) > span.link-btn01 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.home #content > section#service > .service-list > a:nth-of-type(3) > span.link-btn01,
.home #content > section#service > .service-list > a:nth-of-type(4) > span.link-btn01 {
  float: right;
}
.home #content > section#service .link-btn02 {
  width: 270px;
}

/* member */
/* メンバーの情報（.member-info）は、共通（トップページ、Memberページ、Join_Usページ */
.member-info {
  margin: 0;
  text-align: left;
}
.member-info > div.cate {
  margin: 0;
}
.member-info > div.cate > span {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 0 10px;
  font-size: 1.2rem;
  color: #2B2A2C;
  line-height: 1.5;
  border: 1px solid #2B2A2C;
  border-radius: 10px;
}
.member-info > div.cate > span:last-child {
  margin: 0;
}
.member-info > p:nth-of-type(1) {
  margin: 10px 0 0 0;
  font-size: 1.3rem;
  line-height: 1.5;
}
.member-info > p:nth-of-type(2) {
  margin: 5px 0 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.member-info > p:nth-of-type(2) > span {
  margin: 0 0 0 16px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* メンバー一覧は共通（トップページ、メンバー一覧） */
section#member {
  max-width: 1056px;
}
section#member > .member-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 90px 0 0 0;
  padding-right: 5%;
}
section#member > .member-list.list01 {
  padding-left: 5%;
  padding-right: 0;
}
section#member > .member-list > a {
  display: block;
  width: 45%;
  margin-top: 90px;
}
section#member > .member-list > a:nth-of-type(2) {
  margin-top: 0;
  margin-left: 10%;
}
section#member > .member-list.list01 > a:nth-of-type(1) {
  margin-top: 0;
}
section#member > .member-list.list01 > a:nth-of-type(2) {
  margin-top: 90px;
}
section#member > .member-list > a > .img {
  margin:0 auto;
  overflow:hidden;
  border-radius: 12px;
}
section#member > .member-list > a > .img > img {
  transition:1s all;
}
section#member > .member-list > a:hover > .img > img {
  transform:scale(1.05,1.05);
  transition:1s all;
}
section#member > .member-list > a > p {
  margin: 30px 0 0 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
section#member > .member-list > a > .member-info {
  margin: 15px 0 0 0;
}


.home #content > section#member .link-btn02 {
  width: 290px;
}

/* news （.news-listは、News一覧ページと共通） */
.home #content > section#news {
  margin-top: 40px;
  padding-top: 80px;
}

section#news .news-list {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
}
section#news .news-list > a {
  position: relative;
  display: block;
  padding: 20px 0;
}
section#news .news-list > a::before {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #CCCBCD;
  bottom: 0;
}
section#news .news-list > a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #222222;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
section#news .news-list > a:hover::after {
  transform: scale(1, 1);
}
section#news .news-list > a > p:nth-of-type(1) {
  display: inline-block;
  width: 27%;
  font-size: 1.4rem;
  font-weight: 700;
  color: #939294;
  line-height: 1.5;
  vertical-align: top;
  transition: all 300ms ease-in;
}
section#news .news-list > a:hover > p:nth-of-type(1) {
  padding-left: 10px;
}
section#news .news-list > a > p:nth-of-type(1) > span {
  margin-right: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
section#news .news-list > a > p:nth-of-type(2) {
  display: inline-block;
  width: 62%;
  padding: 0 20px 0 0;
  font-weight: 700;
  line-height: 1.5;
  vertical-align: top;
  transition: all 300ms ease-in;
}
section#news .news-list > a:hover > p:nth-of-type(2) {
  padding-left: 10px;
}
section#news .news-list > a > span.jotai {
  position: absolute;
  top: 33px;
  right: 0;
  padding: 6px 13px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  background-color: #1B1B1B;
  border-radius: 4px;
}
section#news .news-list > a > span.jotai.red {
  background-color: #DB333A;
}

/* join us */
.home #content > section#join_us {
  width: 100%;
  max-width: 100%;
}
.home #content > section#join_us .join_us-list01 {
  width: 100%;
  margin: 70px auto 0;
}
.home #content > section#join_us .join_us-list02 {
  width: 100%;
  margin: 30px auto 0;
}
.home #content > section#join_us .join_us-list01 .join_us-content,
.home #content > section#join_us .join_us-list02 .join_us-content {
  margin: 0 1vw;
}


/* 下層ページ */
.sub #content {
  padding-top: 250px;
}

.sub #content > section {
  width: 95%;
  max-width: 960px;
  margin: 0 auto;
}

/* h2 トップタイトル */
.sub #content .h2-title {
  text-align: center;
  margin: 0 auto;
}
.sub #content .h2-title > h2 {
  margin: 0 auto;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.sub #content .h2-title > p {
  margin: 5px auto 0;
  font-weight: 600;
  line-height: 1.5;
}


/* about */
.sub .about p.h3-txt {
  margin: 0;
  color: #6B6A6C;
  line-height: 1.5;
}
.sub .about h3 {
  margin: 5px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .about > #anchor {
  margin: 0 auto;
  width: 90%;
  max-width: 1632px;
  margin: 90px auto 0;
  text-align: center;
  border-bottom: 1px solid #CCCBCD;
}
.sub .about > #anchor > img {
  margin: 0 auto;
  width: 10px;
}
.sub .about > #anchor > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 624px;
  margin: 90px auto 0;
}
.sub .about > #anchor > div > a {
  position: relative;
  display: block;
  width: 204px;
  height: 52px;
  color: #939294;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.sub .about > #anchor > div > a:hover {
  color: #2B2A2C;
}
.sub .about > #anchor > div > a::before {
  content: '';
  position: absolute;
  z-index: 10;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2B2A2C;
}
.sub .about > #anchor > div > a > span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 52px;
}
.sub .about > #anchor > div > a > span::before,
.sub .about > #anchor > div > a > span::after{
  content: '';
  position: absolute;
  z-index: 10;
  bottom: -1px;
  width: 50%;
  height: 1px;
  background-color: #CCCBCD;
  transition: all 200ms ease-in-out;
}
.sub .about > #anchor > div > a > span::before{
  left: 0;
}
.sub .about > #anchor > div > a > span::after{
  right: 0;
}
.sub .about > #anchor > div > a:hover > span::after{
  transform: translate(100%, 0);
  transition: all 200ms ease-in-out;
}
.sub .about > #anchor > div > a:hover > span::before{
  transform: translate(-100%, 0);
  transition: all 200ms ease-in-out;
}
.sub .about > section#philosophy {
  margin: 80px auto 0;
  padding: 70px 0 60px 0;
  text-align: center;
}
.sub .about > section#philosophy > p.txt {
  max-width: 790px;
  margin: 20px auto 0;
  font-weight: 400;
  text-align: left;
}
.sub .about > section#philosophy > p.daihyo {
  max-width: 790px;
  margin: 10px auto 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}
.sub .about > section#philosophy > p.daihyo > span {
  margin: 0 16px 0 0;
  font-size: 1.2rem;
  font-weight: 400;
}
.sub .about > section#philosophy > img {
  margin: 60px auto 0;
}
.sub .about > section.vision {
  margin: 100px auto 0 !important;
}
.sub .about > section.vision > p:nth-of-type(1) {
  margin: 0;
  color: #6B6A6C;
}
.sub .about > section.vision > div {
  position: relative;
  margin: 5px 0 0 0;
  padding-bottom: 35px;
  overflow: hidden;
  cursor: pointer;
}
.sub .about > section.vision > div::before,
.sub .about > section.vision > div::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2B2A2C;
  transition: all 200ms ease-in-out 200ms;
}
.sub .about > section.vision > div::after{
  transform: translate(-100%, 0);
  transition: all 200ms ease-in-out;
}
.sub .about > section.vision > div.close:hover::before{
  transform: translate(100%, 0);
  transition: all 200ms ease-in-out;
}
.sub .about > section.vision > div.close:hover::after{
  transform: translate(0, 0);
  transition: all 200ms ease-in-out 200ms;
}
.sub .about > section.vision > div > p.title {
  position: relative;
  margin: 15px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  transition: all 300ms ease-in;
}
.sub .about > section.vision > div.close:hover > p.title {
  padding-left: 10px;
}
.sub .about > section.vision > div > p.title01::before {
  position: absolute;
  top: 10px;
  right: 0;
  content: '';
  width: 18px;
  height: 2px;
  background-color: #2B2A2C;
}
.sub .about > section.vision > div > p.title01::after {
  position: absolute;
  top: 10px;
  right: 0;
  content: '';
  width: 18px;
  height: 2px;
  background-color: #2B2A2C;
  transform: rotate(-90deg);
  transition: transform 0.5s;
}
.sub .about > section.vision > div > p.title01.show::after {
  transform: rotate(-180deg);
}
.sub .about > section.vision > div > p.txt {
  display: none;
  margin: 30px 0 0 0;
}
.sub .about > section#vi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 160px auto 0;
}
.sub .about > section#vi > div:nth-of-type(1) {
  width: 38%;
}
.sub .about > section#vi > div:nth-of-type(2) {
  width: 57%;
}
.sub .about > section#vi > div:nth-of-type(2) > p:nth-of-type(1) {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6B6A6C;
}
.sub .about > section#vi > div:nth-of-type(2) > p:nth-of-type(2) {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
}
.sub .about > div.fullimage {
  width: 100%;
  margin: 200px auto 0;
}
.sub .about > section#approach {
  margin: 70px auto 0;
  padding: 70px 0 0 0;
  text-align: center;
}
.sub .about > section#approach > p.txt {
  max-width: 790px;
  margin: 20px auto 0;
  font-weight: 400;
  text-align: left;
}
.sub .about > section#approach > .detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 960px;
  margin: 60px auto 0;
}
.sub .about > section#approach > .detail > div {
  width: 32.6%;
  margin: 0;
  padding: 10px 24px 25px 24px;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.sub .about > section#approach > .detail > div > p:nth-of-type(1) {
  font-size: 2.0rem;
  font-weight: 600;
}
.sub .about > section#approach > .detail > div > img {
  width: 240px;
  margin: 0 auto;
}
.sub .about > section#approach > .detail > div > p:nth-of-type(2) {
  margin: 0 auto;
  font-size: 2.0rem;
  font-weight: 700;
}
.sub .about > section#approach > .detail > div > p:nth-of-type(3) {
  margin: 10px auto 0;
  font-size: 1.4rem;
  text-align: left;
}
.sub .about > section#capability {
  margin: 160px auto 0;
}
.sub .about > section#capability > .detail {
  margin: 120px auto 0;
}
.sub .about > section#capability > .detail01 {
  margin-top: 50px;
}
.sub .about > section#capability > .detail > div {
  width: 50%;
  margin: 0;
}
.sub .about > section#capability > .detail > div:nth-of-type(1) {
  float: left;
}
.sub .about > section#capability > .detail02 > div:nth-of-type(1) {
  float: right;
}
.sub .about > section#capability > .detail > div:nth-of-type(2) {
  float: right;
  padding-top: 70px;
  padding-left: 48px;
}
.sub .about > section#capability > .detail02 > div:nth-of-type(2) {
  float: left;
  padding-left: 0;
  padding-right: 48px;
}
.sub .about > section#capability > .detail > div:nth-of-type(2) > p:nth-of-type(1) {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .about > section#capability > .detail > div:nth-of-type(2) > .link-btn02-wrap {
  width: 249px;
  margin: 0;
}

/* company */
.sub .company  {
  line-height: 1.5;
}
.sub .company p  {
  line-height: 1.5;
}
.sub .company > .mv  {
  width: 90%;
  max-width: 1632px;
  margin: 90px auto 0;
}
.sub .company .h3-txt {
  margin: 0;
  letter-spacing: 0.02em;
}
.sub .company h3 {
  margin: 5px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
}
.sub .company > section#outline {
  margin: 160px auto 0;
}
.sub .company > section#outline > table {
  width: 100%;
  margin: 60px auto 0;
  text-align: left;
  border-top: 1px solid #CCCBCD;
  border-spacing: 0;
}
.sub .company > section#outline > table th {
  width: 26%;
  padding: 40px 0;
  font-weight: 700;
  color: #6B6A6C;
  line-height: 2;
  vertical-align: top;
  border-bottom: 1px solid #CCCBCD;
}
.sub .company > section#outline > table td {
  padding: 40px 0;
  font-weight: 700;
  line-height: 2;
  border-bottom: 1px solid #CCCBCD;
}
.sub .company > section#outline > table td a.map {
  position: relative;
  color: #939294;
  text-decoration: underline;
}
.sub .company > section#outline > table td a.map::before {
  position: absolute;
  bottom: 7px;
  right: -22px;
  content: '';
  width: 12px;
  height: 12px;
  background: url(/images/icon_pagejump.png) top center no-repeat;
  background-size: 12px;
}
.sub .company > section#outline > table td ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub .company > section#outline > table td ul li {
  width: 250px;
  margin: 0;
  padding: 0;
}
.sub .company > section#outline > table td ul li:nth-of-type(3),
.sub .company > section#outline > table td ul li:nth-of-type(4) {
  margin-top: 50px;
}
.sub .company > section#outline > table td ul li > p {
  margin: 0 0 20px 0;
}
.sub .company > section#outline > p.update {
  margin: 30px 0 0 0;
  font-size: 1.4rem;
  text-align: right;
}
.sub .company > section#history {
  margin: 200px auto 0;
}
.sub .company > section#history > table {
  width: 100%;
  margin: 60px auto 0;
  text-align: left;
  border-top: 1px solid #CCCBCD;
  border-spacing: 0;
}
.sub .company > section#history > table th {
  width: 14%;
  padding: 40px 0;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  background-color: #E6E5E7;
  border-bottom: 1px solid #CCCBCD;
}
.sub .company > section#history > table td {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid #CCCBCD;
}
.sub .company > section#history > table td > p {
  margin: 30px 0 0 0;
}
.sub .company > section#history > table td > p:first-child {
  margin: 0;
}
.sub .company > section#history > table td > p > span:nth-of-type(1) {
  display: inline-block;
  width: 15%;
  padding-left: 5%;
  font-weight: 700;
  vertical-align: top;
}
.sub .company > section#history > table td > p > span:nth-of-type(2) {
  display: inline-block;
  width: 85%;
}
.sub .company > section#location {
  margin: 200px auto 0;
}
.sub .company > section#location > p.txt {
  margin: 30px auto 0;
  line-height: 2;
}
.sub .company > section#location > .photo {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.sub .company > section#location > .photo > img {
  width: 47%;
  margin-top: 50px;
}
.sub .company > section#location > .photo > img:nth-of-type(2n) {
  margin-left: 6%;
}
.sub .company > section#location > .address {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 60px auto 0;
  padding: 24px 0;
  background-color: #FDFCFE;
  border-radius: 8px;
}
.sub .company > section#location > .address > p:nth-of-type(1) {
  width: 180px;
  height: 56px;
  margin: 0;
  padding-top: 17px;
  padding-left: 64px;
  border-right: 1px solid #E6E5E7;
}
.sub .company > section#location > .address > p:nth-of-type(1) > span {
  padding-bottom: 1px;
  border-bottom: 1px solid #2B2A2C;
}
.sub .company > section#location > .address > p:nth-of-type(2) {
  margin: 0;
  padding-top: 17px;
  padding-left: 64px;
}
.sub .company > section#location > .address > p:nth-of-type(2) > span {
  margin-right: 10px;
}
.sub .company > section#location > .address > a {
  display: block;
  position: absolute;
  top: 36px;
  right: 36px;
  width: 135px;
  height: 32px;
  padding-top: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  background-color: #1B1B1B;
  border-radius: 8px;
}
.sub .company > section#location > .access {
  margin: 60px auto 0;
  padding: 55px 64px 45px 64px;
  background-color: #FDFCFE;
  border-radius: 8px;
}
.sub .company > section#location > .access > p.title {
  position: relative;
  margin: 0;
  padding-left: 16px;
  font-weight: 700;
}
.sub .company > section#location > .access > p.title::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: '';
  width: 4px;
  height: 16px;
  background-color: #353436;
}
.sub .company > section#location > .access > p.txt01 {
  margin: 40px 0 0 0;
  font-size: 2rem;
  font-weight: 700;
}
.sub .company > section#location > .access > p.txt02 {
  margin: 10px 0 0 0;
  font-size: 1.5rem;
  line-height: 2.4;
}
.sub .company > section#location > .access > p.line {
  margin: 30px 0 0 0;
  height: 1px;
  background-color: #E6E5E7;
}

/* Service */
.sub .service > section#outline {
  position: relative;
  margin: 90px auto 0;
}
.sub .service > section#outline > img {
  position: absolute;
  top: 0;
  right: 0;
  width: 47.5%;
}
.sub .service > section#outline > h2 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .service > section#outline > p {
  width: 47.5%;
  margin: 30px 0 0 0;
}

.sub .service > section#detail {
  margin: 250px auto 0;
  border-top: 1px solid #CCCBCD;
}
.sub .service > section#detail.work {
  margin: 350px auto 0;
}
.sub .service > section#detail > p:nth-of-type(1) {
  position: relative;
  padding-left: 17px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6B6A6C;
}
.sub .service > section#detail > p:nth-of-type(1)::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #B99ED0;
  border-radius: 8px;
}
.sub .service > section#detail > h2 {
  margin: 40px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .service > section#detail > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 90px 0 0 0;
}
.sub .service > section#detail > a > .img {
  width: 47.5%;
  overflow:hidden;
  border-radius: 12px;
}
.sub .service > section#detail > a > .img > img {
  transition:1s all;
}
.sub .service > section#detail > a:hover > .img > img {
  transform:scale(1.05,1.05);
  transition:1s all;
}
.sub .service > section#detail > a > div:nth-of-type(2) {
  width: 47.5%;
}
.sub .service > section#detail.work > a > div:nth-of-type(2) {
  padding-top: 25px;
}
.sub .service > section#detail > a > div:nth-of-type(2) > p:nth-of-type(1) {
  margin: 0;
  font-weight: 500;
  color: #6B6A6C;
  line-height: 1.5;
}
.sub .service > section#detail > a > div:nth-of-type(2) > p:nth-of-type(2) {
  margin: 10px 0 0 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .service > section#detail > a > div:nth-of-type(2) > p:nth-of-type(4) {
  margin: 20px 0 0 0;
  padding: 30px 0 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  border-top: 1px solid #CCCBCD;
}
.sub .service > section#detail > a > div:nth-of-type(2) > ul {
  margin: 10px 0 0 0;
  list-style: none;
  padding: 0;
  font-size: 0;
}
.sub .service > section#detail > a > div:nth-of-type(2) > ul > li {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 7px 12px;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #E6E5E7;
  border-radius: 4px;
}
.sub .service > section#detail > a > div:nth-of-type(2) > div {
  margin: 30px 0 0 0;
  text-align: right;
}

/* consulting */
.sub .consulting p.h3-txt {
  margin: 0;
  color: #6B6A6C;
  line-height: 1.5;
}
.sub .consulting h3 {
  margin: 5px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .consulting > .mv  {
  width: 90%;
  max-width: 1632px;
  margin: 90px auto 0;
}
.sub .consulting > .content-wrap  {
  display: flex;
  flex-wrap: nowrap;
  justify-content:space-between;
  width: 90%;
  max-width: 1632px;
  margin: 0 auto;
  padding-right: 15%;
}
.sub .consulting > .content-wrap > .sidebar  {
  position: relative;
  width: 20%;
  margin-top: 145px;
}
.sub .consulting > .content-wrap .sidebar > ul  {
  position: relative;
  top: 0;
  list-style: none;
  padding: 0;
  transition: all 400ms linear ;
}
.sub .consulting > .content-wrap .sidebar > ul.is_fixed  {
  position: fixed;
  top: 90px;
}
.sub .consulting > .content-wrap .sidebar > ul.is_absolute  {
  position: absolute;
  top: auto;
  bottom: 0;
}
.sub .consulting > .content-wrap .sidebar > ul > li {
  margin-bottom: 5px;
}
.sub .consulting > .content-wrap .sidebar > ul > li > a {
  display: block;
  position: relative;
  padding-left: 20px;
}
.sub .consulting > .content-wrap .sidebar > ul > li > a.action::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #B99ED0;
  border-radius: 8px;
}
.sub .consulting > .content-wrap > div:nth-of-type(2)  {
  width: 80%;
}
.sub .consulting section {
  width: 100%;
  max-width: 960px;
}
.sub .consulting section#overview {
  padding-top: 160px;
}
.sub .consulting section#overview > div:nth-of-type(1) {
  width: 50%;
}
.sub .consulting section#overview > div:nth-of-type(2) {
  width: 48%;
  padding-top: 10px;
}
.sub .consulting section#overview {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.sub .consulting section#overview > div:nth-of-type(1) {
  width: 48%;
}
.sub .consulting section#overview > div:nth-of-type(2) {
  width: 48%;
  padding-top: 10px;
}
.sub .consulting section#needs {
  margin: 100px auto 0;
  padding-top: 100px;
}
.sub .consulting section#needs > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub .consulting section#needs > div > div {
  width: 30%;
  margin: 50px 0 0 0;
}
.sub .consulting section#needs > div > div > img {
  width: 64px;
  margin: 0;
}
.sub .consulting section#needs > div > div > p:nth-of-type(1) {
  margin: 20px 0 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .consulting section#needs > div > div > p:nth-of-type(2) {
  margin: 10px 0 0 0;
}
.sub .consulting section#focus {
  margin: 100px auto 0;
  padding-top: 100px;
}
.sub .consulting section#focus > div {
  position: relative;
  margin: 0;
  padding: 50px 0 40px  84px;
  border-bottom: 1px solid #CCCBCD;
}
.sub .consulting section#focus > div:nth-of-type(1) {
  margin: 60px 0 0 0;
  border-top: 1px solid #CCCBCD;
}
.sub .consulting section#focus > div > img {
  position: absolute;
  top: 47px;
  left: 0;
  width: 36px;
}
.sub .consulting section#focus > div > p:nth-of-type(1) {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .consulting section#focus > div > p:nth-of-type(2) {
  margin: 10px 0 0 0;
}
.sub .consulting section#solutions {
  margin: 100px auto 0;
  padding-top: 100px;
}
.sub .consulting section#solutions > img {
  margin: 60px auto 0;
}
.sub .consulting section#solutions > div {
  margin: 140px auto 0;
  padding: 15px 0 0 0;
  border-top: 1px solid #CCCBCD;
}
.sub .consulting section#solutions > div:nth-of-type(1) {
  margin: 60px auto 0;
}
.sub .consulting section#solutions > div > p {
  margin: 0 0 40px 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .consulting section#solutions > div > p > span {
  display: inline-block;
  width: 41px;
  height: 25px;
  margin: 0 15px 0 0;
  padding: 7px 0 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  border-radius: 13px;
  background-color: #1B1B1B;
}
.sub .consulting section#solutions ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub .consulting section#solutions ul > li {
  position: relative;
  width: 47%;
  min-height: 126px;
  margin: 48px 0 0 0;
  padding-left: 20%;
}
.sub .consulting section#solutions ul > li:nth-of-type(2n) {
  margin-left: 6%;
}
.sub .consulting section#solutions ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 39%;
}
.sub .consulting section#solutions ul > li > p:nth-of-type(1) {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .consulting section#solutions ul > li > p:nth-of-type(2) {
  margin: 10px 0 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
.sub .consulting section#process {
  margin: 100px auto 0;
  padding-top: 100px;
}
.sub .consulting section#process > div {
  position: relative;
  margin: 0;
  padding: 50px 0 40px  0;
  border-bottom: 1px solid #CCCBCD;
}
.sub .consulting section#process > div:nth-of-type(1) {
  margin: 40px 0 0 0;
}
.sub .consulting section#process > div > p:nth-of-type(1) {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .consulting section#process > div > p:nth-of-type(1) > span {
  display: inline-block;
  width: 73px;
  height: 27px;
  margin: 0 15px 0 0;
  padding: 7px 0 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  border-radius: 13px;
  background-color: #1B1B1B;
}
.sub .consulting section#process > div > p:nth-of-type(2) {
  margin: 20px 0 0 0;
}


/* #supportは、各サービスのページで共通 */
.sub section#support {
  margin: 160px auto 0;
  padding: 60px 0 64px 0;
  text-align: center;
  background-color: #2B2A2C;
  border-radius: 12px;
}
.sub section#support > p {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}
.sub section#support > .link-btn02-wrap {
  margin: 40px auto 0;
}
.sub section#support > .link-btn02-wrap > .link-btn02 {
  background-color: #ffffff;
}
.sub section#support > .link-btn02-wrap > .link-btn02::before{
  border: solid 1px #ffffff;
}
.sub section#support > .link-btn02-wrap > .link-btn02 span::after{
  background: url(/images/btn_arrow.png) 0 0 no-repeat;
  background-size: contain;
}
.sub section#support > .link-btn02-wrap > .link-btn02:hover{
  background: url(/images/support_btn_bg.png) top center no-repeat;
  background-size: cover;
}

/* #otherは、各サービスのページで共通 */
.sub section#other {
  margin: 160px auto 0;
  text-align: center;
}
.sub section#other > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub section#other > div > a {
  display: block;
  width: 30%;
  margin: 50px 0 0 0;
  text-align: left;
}
.sub section#other > div > a > .img {
  margin:0 auto;
  overflow:hidden;
  border-radius: 12px;
}
.sub section#other > div > a > .img > img {
  transition:1s all;
}
.sub .consulting section#other > div > a:hover > .img > img {
  transform:scale(1.05,1.05);
  transition:1s all;
}
.sub section#other > div > a > p:nth-of-type(1) {
  margin: 25px 0 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #6B6A6C;
}
.sub section#other > div > a > p:nth-of-type(2) {
  margin: 10px 0 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}


/* work */
.sub .work p.h3-txt {
  margin: 0;
  color: #6B6A6C;
  line-height: 1.5;
}
.sub .work h3 {
  margin: 5px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .work > .mv  {
  width: 90%;
  max-width: 1632px;
  margin: 90px auto 0;
}
.sub .work > .content-wrap  {
  display: flex;
  flex-wrap: nowrap;
  justify-content:space-between;
  width: 90%;
  max-width: 1632px;
  margin: 0 auto;
  padding-right: 15%;
}
.sub .work > .content-wrap > .sidebar  {
  position: relative;
  width: 20%;
  margin-top: 145px;
}
.sub .work > .content-wrap .sidebar > ul  {
  position: relative;
  top: 0;
  list-style: none;
  padding: 0;
  transition: all 400ms linear ;
}
.sub .work > .content-wrap .sidebar > ul.is_fixed  {
  position: fixed;
  top: 90px;
}
.sub .work > .content-wrap .sidebar > ul.is_absolute  {
  position: absolute;
  top: auto;
  bottom: 0;
}
.sub .work > .content-wrap .sidebar > ul > li {
  margin-bottom: 5px;
}
.sub .work > .content-wrap .sidebar > ul > li > a {
  display: block;
  position: relative;
  padding-left: 20px;
}
.sub .work > .content-wrap .sidebar > ul > li > a.action::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #B99ED0;
  border-radius: 8px;
}
.sub .work > .content-wrap > div:nth-of-type(2)  {
  width: 80%;
}
.sub .work section {
  width: 100%;
  max-width: 960px;
}
.sub .work section#overview {
  position: relative;
  padding-top: 160px;
}
.sub .work section#overview > img {
  position: absolute;
  top: 160px;
  right: 0;
  width: 48%;
}
.sub .work section#overview > div {
  width: 46%;
}
.sub .work section#overview > div > a {
  position: relative;
  display: block;
  width: 252px;
  height: 48px;
  margin: 40px 0 0 0;
  padding: 15px 0 0 48px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid #939294;
  border-radius: 27px;
}
.sub .work section#overview > div > a::before {
  content: '';
  position: absolute;
  top: 17px;
  right: 48px;
  width: 12px;
  height: 12px;
  background: url(/images/icon_link_b.png) top center no-repeat;
  background-size: 12px;
}
.sub .work section#overview > div > a:hover {
  color: #ffffff;
  background-color: #2B2A2C;
}
.sub .work section#overview > div > a:hover::before {
  background: url(/images/icon_link_w.png) top center no-repeat;
  background-size: 12px;
}
.sub .work p.background-line {
  margin: 140px auto 0;
  border-top: 1px solid #CCCBCD;
}
.sub .work section#background {
  margin: 20px auto 0;
  padding: 100px 0 0 0;
}
.sub .work section#background > p.txt {
  margin: 30px 0 0 0;
}
.sub .work section#background > img {
  margin: 50px auto 0;
}
.sub .work section#style {
  margin: 60px auto 0;
  padding-top: 100px;
}
.sub .work section#style > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0 0 0;
}
.sub .work section#style > div > div {
  width: 47%;
}
.sub .work section#style > div > div > p:nth-of-type(1) {
  margin: 30px 0 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .work section#style > div > div > p:nth-of-type(2) {
  margin: 15px 0 0 0;
}
.sub .work section#detail {
  margin: 60px auto 0;
  padding-top: 100px;
}
.sub .work section#detail > img {
  margin: 50px 0 0 0;
}
.sub .work section#faq {
  margin: 60px auto 0;
  padding-top: 100px;
}

/* ビジネススクール事業 */
.sub .work section#school-site {
  margin: 160px auto 0;
  padding: 60px 0 64px 0;
  text-align: center;
  background: url(/images/school_site_bg.png) center center no-repeat;
  background-size: cover;
  border-radius: 12px;
}
.sub .work section#school-site > p {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}
.sub .work section#school-site > a {
  position: relative;
  display: block;
  width: 268px;
  height: 50px;
  margin: 30px auto 0;
  padding: 15px 0 0 48px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid #ffffff;
  border-radius: 27px;
}
.sub .work section#school-site > a::before {
  content: '';
  position: absolute;
  top: 19px;
  right: 48px;
  width: 14px;
  height: 14px;
  background: url(/images/icon_link_w.png) top center no-repeat;
  background-size: 14px;
}
.sub .work section#school-site > a:hover {
  color: #353436;
  background-color: #ffffff;
}
.sub .work section#school-site > a:hover::before {
  background: url(/images/icon_link_b.png) top center no-repeat;
  background-size: 12px;
}

/* member 詳細 */
.sub .member > .mv  {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1632px;
  margin: 0 auto;
}
.sub .member > .mv > div  {
  width: 50%;
  margin: 0 auto;
}
.sub .member > .mv > div:nth-of-type(1)  {
  margin-top: 15%;
  padding: 0 110px 0 0;
}
.sub .member > .mv > div:nth-of-type(1) > p:nth-of-type(1) {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .member > .mv > div:nth-of-type(1) > div.member-info {
  margin: 40px 0 0 0;
}
.sub .member > .mv > div:nth-of-type(1) > p:nth-of-type(3) > span {
  margin: 0 0 0 16px;
  font-size: 1.2rem;
  font-weight: 600;
}
.sub .member > .mv > div:nth-of-type(2) {
  margin: 0;
}
.sub .member > section#profile {
  margin: 160px auto 0;
  padding: 50px 0 30px 0;
  border-top: 1px solid #2B2A2C;
  border-bottom: 1px solid #2B2A2C;
}
.sub .member > section#profile > div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 83%;
  margin: 0 auto;
}
.sub .member > section#profile > div > div:nth-of-type(1) {
  width: 26%;
}
.sub .member > section#profile > div > div:nth-of-type(1) > p {
  position: absolute;
  top: -20px;
  left: 32.1%;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .member > section#profile > div > div:nth-of-type(1) > p > span {
  margin: 0 0 0 16px;
  font-size: 1.2rem;
  font-weight: 600;
}
.sub .member > section#profile > div > div:nth-of-type(2) {
  width: 68%;
  padding: 25px 0 0 0;
}
.sub .member > section#profile > div > div:nth-of-type(2) > p {
  font-size: 1.4rem;
}
.sub .member > section#article {
  margin: 140px auto 0;
}
.sub .member > section#article > h2 {
  width: 95%;
  max-width: 790px;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .member > section#article > h3 {
  position: relative;
  width: 95%;
  max-width: 790px;
  margin: 80px auto 0;
  padding: 0 0 0 48px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.sub .member > section#article > h3::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  width: 36px;
  height: 1px;
  background-color: #2B2A2C;
}
.sub .member > section#article > p {
  width: 95%;
  max-width: 790px;
  margin: 30px auto 0;
}
.sub .member > section#article > p > span {
  font-weight: 700;
}
.sub .member > section#article > img {
  margin: 80px auto 0;
}
.sub .member > .fullimg {
  margin: 140px auto 0;
}
.sub .member > .interview {
  width: 95%;
  max-width: 960px;
  margin: 40px auto 0;
  font-size: 1.3rem;
  color: #6B6A6C;
  line-height: 1.5;
  text-align: right;
}
.sub .member > section#character {
  margin: 160px auto 0;
  text-align: center;
}
.sub .member > section#character > p:nth-of-type(1) {
  margin: 0;
  font-size: 500;
  color: #6B6A6C;
  line-height: 1.5;
}
.sub .member > section#character > p:nth-of-type(2) {
  margin: 5px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .member > section#character .character-list {
  display: inline-block;
  list-style: none;
  margin: 60px auto 0;
  padding: 0;
  font-size: 0;
}
.sub .member > section#character .character-list .item {
  display: inline-block;
  position: relative;
  width: 30%;
  margin-left: 4.9%;
  padding: 30px 0 150px 0;
  text-align: left;
  background-color: #FDFCFE;
  border-radius: 8px;
}
.sub .member > section#character .character-list > .item:nth-of-type(1) {
  margin-left: 0;
}
.sub .member > section#character .character-list .item > img {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 24px;
}
.sub .member > section#character .character-list .item > p {
  margin: 0 24px 0 70px;
  font-size: 1.6rem;
  font-weight: 700;
}
.sub .member > section#character .character-list .item > div {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 0 24px;
}
.sub .member > section#character .character-list .item > div > p:nth-of-type(2) {
  font-size: 1.6rem;
}
.sub .member > section#next {
  margin: 200px auto 0;
  background-color: #E6E5E7;
  border-radius: 12px;
}
.sub .member > section#next > a {
  display: block;
  padding: 90px 0;
}
.sub .member > section#next > a > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 630px;
  margin: 0 auto;
}
.sub .member > section#next > a > div > div:nth-of-type(1) {
  width: 204px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}
.sub .member > section#next > a > div > div:nth-of-type(1) > img {
  transition:1s all;
}
.sub .member > section#next > a:hover > div > div:nth-of-type(1) > img {
  transform:scale(1.05,1.05);
  transition:1s all;
}
.sub .member > section#next > a > div > div:nth-of-type(2) {
  width: 370px;
  margin: 0;
}
.sub .member > section#next > a > div > div:nth-of-type(2) > p:nth-of-type(1) {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #939294;
  line-height: 1.5;
}
.sub .member > section#next > a > div > div:nth-of-type(2) > p:nth-of-type(2) {
  margin: 20px 0 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .member > section#next > a > div > div:nth-of-type(2) > div.member-info {
  margin: 20px 0 0 0;
}
.sub .member > .link-box {
  margin-top: 150px !important;
}


/* news */
.sub .news > section#news {
  margin: 100px auto 200px auto;
}
/* news ページネーション */
.sub .news > section#news .pagination {
  margin: 70px auto 0;
  text-align: center;
}
.sub .news > section#news .pagination > ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 0;
}
.sub .news > section#news .pagination > ul > li {
  display: inline-block;
  margin: 0 12px;
  width: 44px;
  font-size: 1.8rem;
  line-height: 2.5;
  text-align: center;
}
.sub .news > section#news .pagination > ul > li > a {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 1px solid #CCCBCD;
}
.sub .news > section#news .pagination > ul > li > a.active {
  color: #ffffff;
  background-color: #1B1B1B;
  border: 1px solid #1B1B1B;
}
.sub .news > section#news .pagination > ul > li > a:hover {
  border: 1px solid #1B1B1B;
}
.sub .news > section#news .pagination > ul > li.ten {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  position: relative;
  border: none;
}
.sub .news > section#news .pagination > ul > li.ten::before {
  content: '…';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sub .news > section#news .pagination > ul >li.ten > span {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* news-detail */
.sub .news-detail {
  margin: 0 auto 200px;
}
.sub .news-detail > section#title {
  position: relative;
  padding-top: 40px;
}
.sub .news-detail > section#title > span.jotai {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 13px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  background-color: #1B1B1B;
  border-radius: 4px;
}
.sub .news-detail > section#title > span.jotai.red {
  background-color: #DB333A;
}
.sub .news-detail > section#title > span.date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.4rem;
  color: #2B2A2C;
}
.sub .news-detail > section#title > h2 {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .news-detail > section#detail {
  margin-top: 50px;
  padding: 60px 80px;
  border-top: 1px solid #CCCBCD;
  border-bottom: 1px solid #CCCBCD;
}
.sub .news-detail > section#detail a {
  color: #9C3324;
  text-decoration: underline;
}
.sub .news-detail > section#detail img {
  margin: 40px 0;
  width: 100%;
}
.sub .news-detail > section#link {
  margin: 60px auto 0;
}
.sub .news-detail > section#link > ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub .news-detail > section#link > ul li:nth-of-type(1) {
  width: 30%;
  text-align: left;
}
.sub .news-detail > section#link > ul li:nth-of-type(2) {
  width: 40%;
  text-align: center;
}
.sub .news-detail > section#link > ul li:nth-of-type(3) {
  width: 30%;
  text-align: right;
}
.sub .news-detail > section#link > ul > li > a {
  position: relative;
}
.sub .news-detail > section#link > ul > li:nth-of-type(1) > a {
  padding-left: 21px;
}
.sub .news-detail > section#link > ul > li:nth-of-type(1) > a::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: '';
  width: 12px;
  height: 12px;
  background: url(/images/icon_arrow_prev.png) top center no-repeat;
  background-size: 12px;
}
.sub .news-detail > section#link > ul > li:nth-of-type(3) > a {
  padding-right: 21px;
}
.sub .news-detail > section#link > ul > li:nth-of-type(3) > a::before {
  position: absolute;
  top: 5px;
  right: 0;
  content: '';
  width: 12px;
  height: 12px;
  background: url(/images/icon_arrow_next.png) top center no-repeat;
  background-size: 12px;
}
.sub .news-detail > section#link > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: #000000;
  animation: link-box-off 0.5s 0s ease-in-out;
}
.sub .news-detail > section#link > ul > li > a:hover::after {
  animation: link-box-on 0.5s 0s ease-in-out;
}

/* join_us */
.sub .join_us p.h3-txt {
  margin: 0;
  color: #6B6A6C;
  line-height: 1.5;
}
.sub .join_us h3 {
  margin: 5px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .join_us > section#photo {
  width: 100%;
  max-width: 100%;
  margin: 160px auto 0;
}
.sub .join_us > section#photo .join_us-list01 {
  width: 100%;
  margin: 0 auto;
}
.sub .join_us > section#photo .join_us-list02 {
  width: 100%;
  margin: 30px auto 0;
}
.sub .join_us > section#photo .join_us-list01 .join_us-content,
.sub .join_us > section#photo .join_us-list02 .join_us-content {
  margin: 0 1vw;
}
.sub .join_us > section#intro {
  width: 790px;
  margin: 240px auto 0;
}
.sub .join_us > section#intro > p:nth-of-type(1) {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}
.sub .join_us > section#intro > p:nth-of-type(2) {
  margin: 40px 0 0 0;
  font-size: 1.8rem;
}
.sub .join_us > .fullimage {
  width: 100%;
  margin: 240px auto 0;
}
.sub .join_us > section#spirit {
  margin: 140px auto 0;
}
.sub .join_us > section#spirit > div {
  display: flex;
  flex-wrap: wrap;
  padding: 45px 0;
  border-bottom: 1px solid #1B1B1B;
}
.sub .join_us > section#spirit > div:nth-of-type(1) {
  margin: 50px auto 0;
  border-top: 1px solid #1B1B1B;
}
.sub .join_us > section#spirit > div > p {
  display: inline-block;
  margin: 0;
  line-height: 1.5;
}
.sub .join_us > section#spirit > div > p:nth-of-type(1) {
  width: 10%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #939294;
  line-height: 1.5;
}
.sub .join_us > section#spirit > div > p:nth-of-type(2) {
  width: 25%;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .join_us > section#spirit > div > p:nth-of-type(3) {
  width: 57%;
  margin-left: 8%;
  font-size: 1.5rem;
}
.sub .join_us > section#voices {
  margin: 200px auto 0;
}
.sub .join_us > section#voices > .detail {
  margin: 100px auto 0;
}
.sub .join_us > section#voices > .detail01 {
  margin-top: 50px;
}
.sub .join_us > section#voices > .detail01 > a {
  display: block;
  height: 100%;
}
.sub .join_us > section#voices > .detail > a > div:nth-of-type(1) {
  float: left;
  width: 48%;
  margin: 0;
  overflow:hidden;
  border-radius: 12px;
}
.sub .join_us > section#voices > .detail > a > div:nth-of-type(1) > img {
  transition:1s all;
}
.sub .join_us > section#voices > .detail > a:hover > div:nth-of-type(1) > img {
  transform:scale(1.05,1.05);
  transition:1s all;
}
.sub .join_us > section#voices > .detail02 > a > div:nth-of-type(1) {
  float: right;
}
.sub .join_us > section#voices > .detail > a > div:nth-of-type(2) {
  float: right;
  width: 52%;
  margin: 0;
  padding: 60px 90px 0 48px;
}
.sub .join_us > section#voices > .detail02 > a > div:nth-of-type(2) {
  float: left;
  padding: 60px 48px 0 90px;
}
.sub .join_us > section#voices > .detail > a > div:nth-of-type(2) > p:nth-of-type(1) {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}
.sub .join_us > section#voices > .detail > a > div:nth-of-type(2) > p:nth-of-type(2) {
  margin: 15px 0 0 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .join_us > section#voices > .detail > a > div:nth-of-type(2) > .member-info {
  margin: 15px 0 0 0;
}
.sub .join_us > section#voices > .detail > a > div:nth-of-type(2) > .member-info > p:nth-of-type(2) {
  font-size: 1.6rem;
}

/* #faqは、共通（Join Usページ、CAREER BASEページ、Business Schoolページ） */
.sub section#faq {
  margin: 200px auto 0;
}
.sub section#faq > div.qa {
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid #CCCBCD;
  border-bottom: 1px solid #CCCBCD;
}
.sub section#faq > div.qa:nth-of-type(1) {
  margin-top: 50px;
}
.sub section#faq > div.qa > div:nth-of-type(1) {
  position: relative;
  padding: 45px 84px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  cursor: pointer;
}
.sub section#faq > div.qa > div:nth-of-type(1) > span {
  position: absolute;
  top: 45px;
  left: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub section#faq > div.qa > div:nth-of-type(1)::before {
  position: absolute;
  top: 55px;
  right: 0;
  content: '';
  width: 18px;
  height: 2px;
  background-color: #2B2A2C;
}
.sub section#faq > div.qa > div:nth-of-type(1)::after {
  position: absolute;
  top: 55px;
  right: 0;
  content: '';
  width: 18px;
  height: 2px;
  background-color: #2B2A2C;
  transform: rotate(-90deg);
  transition: transform 0.5s;
}
.sub section#faq > div.qa > div:nth-of-type(1).open::after {
  transform: rotate(-180deg);
}
.sub section#faq > div.qa > div:nth-of-type(2) {
  display: none;
  position: relative;
  padding: 0 60px 45px 84px;
  font-size: 1.6rem;
  line-height: 2;
}
.sub section#faq > div.qa > div:nth-of-type(2) > a {
  text-decoration: underline;
}
.sub section#faq > div.qa-btm {
  height: 50px;
}


.sub .join_us > section#entry {
  margin: 200px auto 0;
}
.sub .join_us > section#entry > p.txt {
  margin: 40px 0 0 0;
}
.sub .join_us > section#entry > div {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0 0 0;
}
.sub .join_us > section#entry > div > a {
  position: relative;
  display: block;
  width: 48.5%;
  padding: 20px 120px 20px 25px;
  font-size: 1.5rem;
  letter-spacing: 0;
  background-color: #ffffff;
  border: 1px solid #E6E5E7;
  border-radius: 8px;
}
.sub .join_us > section#entry > div > a:nth-of-type(2n) {
  margin-left: 3%;
}
.sub .join_us > section#entry > div > a > span {
  display: inline-block;
  position: absolute;
  top: 22px;
  right: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  padding: 8px 15px;
  background-color: #1B1B1B;
  border-radius: 20px;
}
.sub .join_us > section.entry-detail {
  margin-top: 120px !important;
  padding-top: 30px;
  border-top: 1px solid #CCCBCD;
}
.sub .join_us > section#creative {
  margin-top: 160px !important;
}
.sub .join_us > section.entry-detail > p:nth-of-type(1) {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .join_us > section.entry-detail > p:nth-of-type(1) > span {
  display: inline-block;
  margin-right: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1B1B1B;
  text-align: center;
  line-height: 1;
  padding: 8px 15px;
  border: 1px solid #1B1B1B;
  border-radius: 20px;
}
.sub .join_us > section.entry-detail > p:nth-of-type(1) > span.on {
  color: #ffffff;
  background-color: #1B1B1B;
}
.sub .join_us > section.entry-detail > p:nth-of-type(2) {
  margin: 60px 0 0 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.sub .join_us > section.entry-detail > p:nth-of-type(3) {
  margin: 20px 0 0 0;
}

.sub .join_us > section.entry-detail > div {
  margin: 30px 0 0 0;
  border-top: 1px solid #1B1B1B;
  border-bottom: 1px solid #1B1B1B;
}
.sub .join_us > section.entry-detail > div > p {
  position: relative;
  margin: 0;
  padding: 50px 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.sub .join_us > section.entry-detail > div > p.close:hover {
  padding-left: 20px;
  background-color: #E6E5E7;
}
.sub .join_us > section.entry-detail > div > p::before {
  position: absolute;
  top: 60px;
  right: 24px;
  content: '';
  width: 18px;
  height: 2px;
  background-color: #2B2A2C;
}
.sub .join_us > section.entry-detail > div > p::after {
  position: absolute;
  top: 60px;
  right: 24px;
  content: '';
  width: 18px;
  height: 2px;
  background-color: #2B2A2C;
  transform: rotate(-90deg);
  transition: transform 0.5s;
}
.sub .join_us > section.entry-detail > div > p.open::after {
  transform: rotate(-180deg);
}
.sub .join_us > section.entry-detail > div > div {
  display: none;
}
.sub .join_us > section.entry-detail table {
  width: 100%;
  margin: 0;
  border-top: 1px solid #CCCBCD;
  border-spacing: 0;
}
.sub .join_us > section.entry-detail table th {
  width: 170px;
  padding: 40px 0;
  font-weight: 700;
  color: #6B6A6C;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #CCCBCD;
}
.sub .join_us > section.entry-detail table td {
  padding: 40px 0 24px 0;
  line-height: 1.5;
  border-bottom: 1px solid #CCCBCD;
}
.sub .join_us > section.entry-detail table td p {
  margin: 0 0 16px 0;
  line-height: 1.5;
}
.sub .join_us > section.entry-detail .link-btn02-wrap {
  margin: 50px auto;
}
.sub .join_us > section.entry-detail .link-btn02-wrap > .link-btn02 {
  background-color: #2B2A2C;
}
.sub .join_us > section.entry-detail .link-btn02-wrap > .link-btn02::before{
  border: solid 1px #2B2A2C;
}
.sub .join_us > section.entry-detail .link-btn02-wrap > .link-btn02 span{
  color: #ffffff;
}
.sub .join_us > section.entry-detail .link-btn02-wrap > .link-btn02 span::after{
  background: url(/images/btn_arrow_w.png) 0 0 no-repeat;
  background-size: contain;
}
.sub .join_us > section.entry-detail .link-btn02-wrap > .link-btn02:hover{
  background: url(/images/entry-btn_bg.png) top center no-repeat;
  background-size: cover;
}


/* サブページ共通　フッター上のリンク */
.sub .link-box {
  width: 90%;
  max-width: 1632px;
  height: 530px;
  margin: 200px auto 0;
  text-align: center;
  border-top: 1px solid #CCCBCD;
}
.sub .link-box > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 180px 0 0 0;
}
.sub .link-box > a > p:nth-of-type(1) {
  margin: 0 auto;
  font-weight: 700;
}
.sub .link-box > a > p:nth-of-type(2) {
  display: inline-block;
  position: relative;
  margin: 15px auto 0;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.sub .link-box > a > p:nth-of-type(2)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 4px;
  background: #2B2A2C;
  animation: link-box-off 0.5s 0s ease-in-out;
}
.sub .link-box > a:hover > p:nth-of-type(2)::after {
  animation: link-box-on 0.5s 0s ease-in-out;
}

@keyframes link-box-on {
  0% {
    left: 0%;
    transform: scale(1,1);
  }
  35% {
    left: 50%;
    transform: scale(0,1);
  }
  70% {
    left: -50%;
    transform: scale(0,1);
  }
  100% {
    left: 0%;
    transform: scale(1,1);
  }
}

@keyframes link-box-off {
  0% {
    left: 0%;
    transform: scale(1,1);
  }
  35% {
    left: -50%;
    transform: scale(0,1);
  }
  70% {
    left: 50%;
    transform: scale(0,1);
  }
  100% {
    left: 0%;
    transform: scale(1,1);
  }
}


/* contact */
.sub .contact  {
  margin-bottom: 170px;
}
.sub .contact .must  {
  color: #DB333A;
}
.sub .contact > section#intro  {
  max-width: 790px;
  margin: 90px auto 0;
  text-align: center;
}
.sub .contact > section#form {
  max-width: 790px;
  margin: 90px auto 0;
}
.sub .contact > section#form > p.caution {
  margin: 0 auto;
  text-align: right;
}
.sub .contact > section#form .box {
  margin: 60px 0 0 0;
}
.sub .contact > section#form .box > p {
  position: relative;
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}
.sub .contact > section#form .box > p > .txt {
  display: inline-block;
  margin-left: 20px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #2B2A2C;
  line-height: 1.5;
}
.sub .contact > section#form .input-error {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #DB333A;
  line-height: 1;
}
.sub .contact > section#form .error-privacy {
  position: relative;
  top: auto;
  right: auto;
}
.sub .contact > section#form .error-disp {
  display: block !important;
}

.sub .contact > section#form .box > ul {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
}
.sub .contact > section#form .box > ul > li {
  position: relative;
  margin: 15px 0 0 0;
  padding-left: 35px;
  line-height: 1.5;
}

/* ラジオボタン */
input[type="radio"] {
  position: absolute;
  top: 13px;
  left: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"]::before,
input[type="radio"]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type="radio"]::before {
  background-color: #ffffff;
  border: 2px solid #CCCBCD;
  width: 20px;
  height: 20px;
  border-radius: 18px;
  top: -1px;
  left: 5px;
  transform: translateY(-50%);
}

input[type="radio"]:checked::after {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  top: -5px;
  left: 11px;
  margin: auto;
  background-color: #1B1B1B;
}

/* チェックボックス */
input[type="checkbox"] {
  position: relative;
  margin: 17.5px 10px 0 0;
  padding-left: 25px;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  vertical-align: top;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type="checkbox"]::before {
  background-color: #ffffff;
  border: 1px solid #CCCBCD;
  width: 20px;
  height: 20px;
  top: -2px;
  left: 5px;
  transform: translateY(-50%);
  border-radius: 4px;
}

input[type="checkbox"]:checked::after {
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  height: 7px;
  width: 12px;
  top: -7px;
  left: 9px;
  transform: rotate(-45deg);
}

input[type="checkbox"]:checked::before {
  border: 1px solid #1B1B1B;
  background-color: #1B1B1B;
}

/* 添付ファイル */
input[type="file"] {
  margin: 10px 0 0 0;
}
input[type="file"]::file-selector-button {
  padding: 8px 16px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #2B2A2C;
  border-radius: 4px;
  cursor: pointer;
}
input[type="file"]:hover::file-selector-button {
  color: #ffffff;
  background-color: #2B2A2C;
}

/* テキストボックス */
.sub .contact > section#form .box > input[type="text"] {
  margin: 10px 0 0 0;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  font-size: 1.6rem;
  border: none;
  background-color: #ffffff;
  -webkit-appearance: none;
  border-radius: 8px;
  box-shadow: 0 0 0px 1000px #fff inset;
}
.sub .contact > section#form .box > textarea {
  margin: 10px 0 0 0;
  width: 100%;
  height: 190px;
  padding: 20px;
  font-size: 1.6rem;
  border: none;
  background-color: #ffffff !important;
  -webkit-appearance: none;
  border-radius: 8px;
  box-shadow: 0 0 0px 1000px #fff inset;
}
.sub .contact > section#form .box > input[type="text"].error,
.sub .contact > section#form .box > textarea.error {
  border: 1px solid #DB333A;
}
.sub .contact > section#form .box > input::placeholder,
.sub .contact > section#form .box > textarea::placeholder {
  color: #AFA9B1;
}
.sub .contact > section#form .box > input:-ms-input-placeholder,
.sub .contact > section#form .box > textarea:-ms-input-placeholder {
  color: #AFA9B1;
}
.sub .contact > section#form .box > input::-ms-input-placeholder,
.sub .contact > section#form .box > textarea::-ms-input-placeholder {
  color: #AFA9B1;
}
.sub .contact > section#form p.policy {
  margin: 80px 0 0 0;
}
.sub .contact > section#form p.policy a {
  text-decoration: underline;
}
.sub .contact > section#form .policy-check {
  margin: 80px 0 0 0;
  text-align: center;
}
.sub .contact > section#form .btn-box {
  margin: 80px 0 0 0;
  text-align: center;
}
.sub .contact > section#form .btn-box > span {
  display: block;
  width: 292px;
  height: 48px;
  margin: 0 auto;
  padding-top: 11px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  background-color: #CCCBCD;
  border-radius: 27px;
  cursor: pointer;
  transition: all 300ms ease-in-out 100ms;
}
.sub .contact > section#form .btn-box > span:hover {
  background-color: #2B2A2C;
}

.sub .contact > section#form .error-msg {
  display: none;
  max-width: 500px;
  margin: 50px auto 0;
  padding: 20px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #DB333A;
  line-height: 1.5;
  text-align: center;
  border: 1px solid #DB333A;
}

/* contact 完了画面 */
.sub .contact > section#comp  {
  max-width: 960px;
  margin: 90px auto 0;
  padding: 100px 0 90px 0;
  text-align: center;
  background-color: #FDFCFE;
  border-radius: 8px;
}
.sub .contact > section#comp > img {
  display: block;
  width: 36px;
  margin: 0 auto;
}
.sub .contact > section#comp > p:nth-of-type(1) {
  margin-top: 25px;
  font-size: 2.8rem;
  font-weight: 700;
}
.sub .contact > section#comp > a {
  display: block;
  width: 292px;
  height: 48px;
  margin: 50px auto 0;
  padding-top: 11px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  background-color: #CCCBCD;
  border-radius: 27px;
  cursor: pointer;
  transition: all 300ms ease-in-out 100ms;
}
.sub .contact > section#comp > a:hover {
  background-color: #2B2A2C;
}


/* privacy */
.sub .privacy > section#intro  {
  max-width: 790px;
  margin: 90px auto 0;
}
.sub .privacy > section#privacy {
  max-width: 790px;
  margin-bottom: 200px;
}
.sub .privacy > section#privacy > h3 {
  margin: 80px auto 0;
  font-size: 2rem;
  font-weight: 700;
}
.sub .privacy > section#privacy > p {
  margin: 10px auto 0;
}






/* ==========================================================================
* * Helper classes
* * ========================================================================== */
/* * Hide visually and from screen readers */
.hidden {
  display: none !important;
}

/* * Hide only visually, but have it available for screen readers:
* * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
* *
* * 1. For long content, line feeds are not interpreted as spaces and small width
* *    causes content to wrap 1 word per line:
* *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/* * Extends the .visuallyhidden class to allow the element
* * to be focusable when navigated to via the keyboard:
* * https://www.drupal.org/node/897638 */
/* * Hide visually and from screen readers, but maintain layout */
.invisible {
  visibility: hidden;
}

/* * Clearfix: contain floats
* *
* * For modern browsers
* * 1. The space content is one way to avoid an Opera bug when the
* *    `contenteditable` attribute is included anywhere else in the document.
* *    Otherwise it causes space to appear at the top and bottom of elements
* *    that receive the `clearfix` class.
* * 2. The use of `table` rather than `block` is only necessary if using
* *    `:before` to contain the top-margins of child elements. */
.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

/* ==========================================================================
* * EXAMPLE Media Queries for Responsive Design.
* * These examples override the primary ('mobile first') styles.
* * Modify as content requires.
* * ========================================================================== */
@media only screen and (min-width: 1167px) {

}

@media only screen and (min-width: 815px) {
  .sp-only {
    display: none !important;
  }


  body{
    overflow-x: hidden;
  }

  #footer{
    position: relative;
  }
  #footer > div{
    position: relative;
    z-index: 1;
  }

  #footer::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 99999px;
    height: 100%;
    background: #1B1B1B;
    transform: translate(-50%, 0);
  }

}

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

  /* header */
  #header #nav-wrap {
    padding: 50px 3% 0 3%;
  }
  #header #nav-wrap.service-nav {
    padding: 40px 2% 0 2%;
  }
  #header #nav-wrap.service-nav::before {
    width: 96%;
  }
  #header h1 {
    width: 150px;
  }
  #header #nav > ul > li {
    margin-right: 20px;
  }
  #header #nav > ul > li:nth-of-type(6) {
    margin-right: 20px;
  }
  #header #nav-sub {
    padding-left: 2%;
    padding-right: 2%;
  }

  /* footer */
  #footer .contact > a {
    right: 10px;
  }

  /* tagline */
  .home .tagline {
    height: 164vw;
  }

  /* about */
  .sub .about > section#capability > .detail > div:nth-of-type(2) {
    padding-top: 40px;
  }

  /* consulting */
  .sub .consulting > .content-wrap  {
    padding-right: 0;
  }

  /* work */
  .sub .work > .content-wrap  {
    padding-right: 0;
  }

  /* member詳細 */
  .sub .member > .mv > div:nth-of-type(1)  {
    margin-top: 10%;
    padding-right: 50px;
  }
  .sub .member > .mv > div:nth-of-type(1) > p:nth-of-type(1) {
    font-size: 2.4rem;
  }
  .sub .member > .mv > div:nth-of-type(1) > div.member-info {
    margin-top: 20px;
  }

}


@media only screen and (max-width: 814px) {
  .pc-only {
    display: none !important;
  }

  body {
    font-size: 1.5rem;
  }

  h2 {
    line-height: 1.75;
  }

  /* ボタン02 */
  .link-btn02-wrap {
    margin: 60px auto 0;
  }
  .link-btn02 {
    height: 48px;
    font-size: 1.6rem;
  }

  /* ヘッダ－ */
  #header {
    width: 100%;
    height: 74px;
  }
  #header #nav-wrap {
    height: 74px;
    padding: 25px;
  }
  #header.fixed {
    position: fixed;
    top: -74px;
    height: 74px;
    background: #F4F3F5;
  }
  #header.fixed.active {
    top: 0;
    transition: top 300ms ease-in-out;
  }

  #header h1 {
    width: 140px;
  }
  #header #nav {
    margin-top: 0;
  }
  #header #nav #nav-btn a {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
  }
  #header #nav #nav-btn a span {
    position: absolute;
    top: 7px;
    left: 0;
    width: 24px;
    height: 1px;
    background: #2B2A2C;
    transition: all 300ms ease-in-out;
  }
  #header #nav #nav-btn a span:nth-of-type(2) {
    top: 13px;
  }
  #header #nav #nav-btn a.active span:nth-of-type(1) {
    top: 10px;
    background: #FFFFFF;
    transform: rotate(45deg);
  }
  #header #nav #nav-btn a.active span:nth-of-type(2) {
    top: 10px;
    background: #FFFFFF;
    transform: rotate(-45deg);
  }

  #header #nav .nav {
    position: fixed;
    top: -100dvh;
    left: 0;
    width: 100%;
    height: 100dvh;
    padding: 60px 25px 25px 25px;
    background: #1B1B1B;
    color: #fff;
    opacity: 0;
    overflow: auto;
    transition: all 800ms ease-in-out;
  }
  #header #nav .nav > .menu {
    padding: 0 0 20px 0;
    border-bottom: 1px solid #6B6A6C;
  }

  #header #nav .nav > .menu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #header #nav .nav .menu > ul > li {
    position: relative;
  }
  #header #nav .nav .menu > ul > li > a {
    font-size: 2.4rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  #header #nav .nav .menu > ul > li > span.btn {
    position: absolute;
    top: 15px;
    left: 110px;
    width: 14px;
    height: 14px;
    cursor: pointer;
  }
  #header #nav .nav .menu > ul > li > span.btn:before {
    display: block;
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    width: 14px;
    height: 2px;
    background-color: #ffffff;
    transition: .2s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  #header #nav .nav .menu > ul > li > span.btn:after {
    display: block;
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    width: 14px;
    height: 2px;
    background-color: #ffffff;
    transition: .3s;
  }
  #header #nav .nav .menu > ul > li > span.btn.active:before{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  #header #nav .nav .menu > ul > li > span.btn.active:after{
    background-color: transparent;
  }
  #header #nav .nav .menu > ul > li > ul.service {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #header #nav .nav .menu > ul > li > ul.service > li {
    margin: 5px 0 0 0;
    padding: 0 0 0 15px;
  }
  #header #nav .nav .menu > ul > li > ul.service > li > a {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
  }

  #header #nav .nav > .link {
    margin: 30px 0 0 0;
  }
  #header #nav .nav > .link p {
    margin: 0;
    font-size: 1.3rem;
    color: #CCCBCD;
    letter-spacing: 0.02em;
  }
  #header #nav .nav > .link ul {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
  }
  #header #nav .nav > .link ul li {
    width: 204px;
    height: 56px;
    margin: 0 0 10px 0;
  }
  #header #nav .nav > .link ul li a {
    display: block;
    width: 204px;
    height: 56px;
    border: 1px solid #6B6A6C;
    border-radius: 2px;
  }
  #header #nav .nav > .link ul li a > img {
    width: 172px;
    margin: 16px 0 0 16px;
  }
  #header #nav .nav > .copyright {
    margin: 40px 0 0 0;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
  }
  #header #nav .nav > .copyright > p:nth-of-type(1) > a {
    color: #ffffff;
  }
  #header #nav .nav > .copyright > p:nth-of-type(2) {
    color: #939294;
  }

  #header #nav.active .nav {
    top: 0;
    opacity: 1;
  }

  /* フッター */
  #footer {
    padding: 80px 0;
  }
  #footer .contact {
    padding: 0 0 60px 0;
  }
  #footer .contact > p:nth-of-type(1) {
    font-size: 1.5rem;
  }
  #footer .contact > h2 {
    font-size: 3.6rem;
  }
  #footer .contact > p:nth-of-type(2) {
    font-size: 1.5rem;
  }
  #footer .contact > a {
    position: relative;
    top: auto;
    right: auto;
    margin: 40px auto 0;
    background: url(/images/footer_contact_bg.png) center center no-repeat;
    background-size: cover;
  }
  #footer .contact > a > span {
    color: #FDFCFE;
  }

  #footer .nav {
    position: relative;
    display: block;
    margin: 60px auto 0;
  }
  #footer .nav > div:nth-of-type(1) {
    display: block;
    width: 100%;
  }
  #footer .nav > div:nth-of-type(1) ul {
    width: 60%;
  }
  #footer .nav > div:nth-of-type(1) ul:nth-of-type(2) {
    width: 60%;
  }
  #footer .nav > div:nth-of-type(1) ul:nth-of-type(3) {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
  }
  #footer .nav > div:nth-of-type(1) ul li {
    margin-top: 0;
    margin-bottom: 10px;
  }
  #footer .nav > div:nth-of-type(1) ul:nth-of-type(2) li {
    margin-bottom: 0;
  }
  #footer .nav > div:nth-of-type(1) ul li a {
    font-size: 1.6rem;
  }

  #footer .nav > div:nth-of-type(1) ul li.service {
    margin: 5px 0 0 0;
    padding: 0;
  }
  #footer .nav > div:nth-of-type(1) ul li.service a {
    font-size: 1.3rem;
  }
  #footer .nav > div:nth-of-type(2) {
    margin: 50px 0 0 0;
  }
  #footer .nav > div:nth-of-type(2) ul {
    margin: 10px 0 0 0;
  }
  #footer .nav > div:nth-of-type(2) ul li {
    margin: 0 0 8px 0;
  }

  #footer .copyright {
    margin: 50px auto 0;
  }
  #footer .copyright > p:nth-of-type(1) > a {
    position: relative;
    top: auto;
    left: auto;
    margin: 0;
  }


  /* コンテンツ */
  .home #wrapper {
    padding-top: 110px;
  }
  .home #content > section {
    width: 90%;
    padding: 60px 0;
  }

  /* h2 タイトル */
  .home #content .h2-title > h2 {
    font-size: 3.6rem;
  }
  .home #content .h2-title > p:nth-of-type(2) {
    width: 100%;
    margin: 10px auto 0;
  }
  .home #content > section {
    padding: 160px 0 0 0;
  }

  /* メイン画像 */
  .home #mv {
    padding: 0 0 0 0;
  }

  .home #mv > div.main {
    padding-bottom: 70px;
  }

  .home #mv .news-pickup {
    width: 85%;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .home #mv > div.tagline {
    top: 0;
    width: 80%;
    height: 460vw;
  }

  .home #mv > div.tagline > div {
    position: sticky;
    top: 0;
    padding-top: 53%;
  }

  /* intro */
  .home #content > section#intro {
    padding-top: 50%;
  }

  .home #content > section#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    text-align: left;
  }
  .home #content > section#intro > div {
    width: 100%;
    max-width: 360px;
  }
  .home #content > section#intro > div > a  {
    width: 142px;
  }
  .home #content > section#intro > div > a > span.link-btn01  {
    font-size: 1.6rem;
  }

  /* approach */
  .home #content > section#approach > .detail {
    display: block;
    flex-wrap: nowrap;
    margin: 60px auto 0;
  }
  .home #content > section#approach > .detail > div {
    width: 100%;
    margin: 0 auto;
  }
  .home #content > section#approach > .detail > div:nth-of-type(2) {
    margin: 6px auto;
  }
  .home #content > section#approach > .detail > div > p:nth-of-type(1) {
    font-size: 1.8rem;
  }
  .home #content > section#approach > .detail > div > img {
    width: 90%;
  }
  .home #content > section#approach > .detail > div > p:nth-of-type(2) {
    font-size: 1.8rem;
  }
  .home #content > section#approach > .detail > div > p:nth-of-type(3) {
    font-size: 1.3rem;
  }

  /* service */
  .home #content > section#service > .service-list {
    display: block;
    flex-wrap: nowrap;
    margin: 60px auto 0;
  }
  .home #content > section#service > .service-list > a {
    position: relative;
    display: block;
    width: 100% !important;
    height: auto !important;
    margin: 70px auto 0 !important;
  }
  .home #content > section#service > .service-list > a:nth-of-type(1) {
    margin: 0 auto !important;
  }
  .home #content > section#service > .service-list > a > .img {
    margin:0 auto;
    overflow:hidden;
    border-radius: 12px;
  }
  .home #content > section#service > .service-list > a > .img > img {
    transition:1s all;
  }
  .home #content > section#service > .service-list > a:hover > .img > img {
    transform:scale(1.05,1.05);
    transition:1s all;
  }
  .home #content > section#service > .service-list > a > p:nth-of-type(1) {
    margin: 20px 0 0 0;
    font-size: 1.3rem;
  }
  .home #content > section#service > .service-list > a > p:nth-of-type(2) {
    font-size: 2rem;
  }
  .home #content > section#service > .service-list > a > p:nth-of-type(3) {
    margin-bottom: 5px;
  }
  .home #content > section#service > .service-list > a:nth-of-type(1) > p:nth-of-type(3),
  .home #content > section#service > .service-list > a:nth-of-type(2) > p:nth-of-type(3) {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
  }
  .home #content > section#service > .service-list > a > span.link-btn01 {
    float: right;
    width: 100px;
    margin-top: 10px;
  }
  .home #content > section#service > .service-list > a:nth-of-type(1) > span.link-btn01,
  .home #content > section#service > .service-list > a:nth-of-type(2) > span.link-btn01 {
    position: relative;
    bottom: auto;
    right: auto;
  }

  /* member */
  /* メンバーの情報（.member-info）は、共通（トップページ、Memberページ、Join_Usページ */
  .member-info {
    margin: 0;
  }
  .member-info > div.cate {
    margin: 0;
  }
  .member-info > div.cate > span {
    padding-top: 1px;
    font-size: 1.1rem;
  }
  .member-info > p:nth-of-type(1) {
    font-size: 1.2rem;
  }
  .member-info > p:nth-of-type(2) {
    font-size: 1.6rem;
  }
  .member-info > p:nth-of-type(2) > span {
    font-size: 1.1rem;
  }

  /* メンバー一覧は共通 （トップページ、メンバー一覧ページ） */
  section#member > .member-list {
    display: block;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  section#member > .member-list > a {
    width: 94% !important;
    margin-top: 60px !important;
  }
  section#member > .member-list > a:nth-of-type(2) {
    margin-left: 6% !important;
  }
  section#member > .member-list > a > p:nth-of-type(1) {
    margin: 20px 0 0 0;
    font-size: 2rem;
  }
  section#member > .member-list > a > .member-info {
    margin: 10px 0 0 0;
  }

  /* news （.news-listは、News一覧ページと共通） */
  .home #content > section#news {
    margin-top: 100px;
    padding-top: 60px;
  }

  section#news .news-list {
    margin: 40px auto 0;
  }
  section#news .news-list > a {
    position: relative;
    display: block;
    padding: 15px 0 10px 0;
    border-bottom: 1px solid #CCCBCD;
  }
  section#news .news-list > a > p:nth-of-type(1) {
    display: block;
    width: 100%;
    font-size: 1.3rem;
  }
  section#news .news-list > a > p:nth-of-type(2) {
    display: block;
    width: 100%;
    padding: 0;
  }
  section#news .news-list > a > span.jotai {
    top: 22px;
    font-size: 1.3rem;
  }

  /* join us */
  .home #content > section#join_us {
    margin-bottom: 160px;
  }
  .home #content > section#join_us .join_us-list01 {
    margin: 60px auto 0;
  }
  .home #content > section#join_us .join_us-list02 {
    margin: 25px auto 0;
  }
  .home #content > section#join_us .join_us-list01 .join_us-content,
  .home #content > section#join_us .join_us-list02 .join_us-content {
    margin: 0 4vw;
  }



  /* 下層ページ */
  .sub #content {
    padding-top: 200px;
  }

  /* コンテンツ */
  .sub #content > section {
    width: 90%;
  }

  /* h2 タイトル */
  .sub #content .h2-title {
    text-align: center;
    margin: 0 auto;
  }
  .sub #content .h2-title > h2 {
    font-size: 2.8rem;
  }


  /* about */
  .sub .about p.h3-txt {
    font-size: 1.3rem;
  }
  .sub .about h3 {
    margin: 10px 0 0 0;
    font-size: 2rem;
  }
  .sub .about > #anchor {
    width: 100%;
    margin: 40px auto 0;
    border-bottom: 1px solid #CCCBCD;
  }
  .sub .about > #anchor > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 400px;
    margin: 50px auto 0;
  }
  .sub .about > #anchor > div > a {
    position: relative;
    display: block;
    width: 144px;
    height: 37px;
    font-size: 1.2rem;
    border-bottom: 1px solid #2B2A2C;
  }
  .sub .about > section#philosophy {
    margin: 70px auto 0;
    padding: 30px 0 20px 0;
  }
  .sub .about > section#philosophy > p.daihyo {
    font-size: 1.6rem;
  }
  .sub .about > section#philosophy > p.daihyo > span {
    font-size: 1.2rem;
  }
  .sub .about > section#philosophy > img {
    margin: 40px auto 0;
  }
  .sub .about > section.vision {
    margin: 80px auto 0 !important;
  }
  .sub .about > section.vision > p:nth-of-type(1) {
    font-size: 1.3rem;
  }
  .sub .about > section.vision > div {
    padding-bottom: 30px;
  }
  .sub .about > section.vision > div > p.title {
    margin: 10px 0 0 0;
    padding-right: 50px;
    font-size: 2rem;
  }
  .sub .about > section.vision > div > p.txt {
    display: none;
    margin: 20px 0 0 0;
  }
  .sub .about > section#vi {
    display: block;
    flex-wrap: nowrap;
    margin: 100px auto 0;
  }
  .sub .about > section#vi > div:nth-of-type(1) {
    width: 100%;
  }
  .sub .about > section#vi > div:nth-of-type(2) {
    width: 100%;
    margin: 30px auto 0;
  }
  .sub .about > section#vi > div:nth-of-type(2) > p:nth-of-type(1) {
    font-size: 1.3rem;
  }
  .sub .about > section#vi > div:nth-of-type(2) > p:nth-of-type(2) {
    font-size: 1.8rem;
  }
  .sub .about > div.fullimage {
    margin: 80px auto 0;
  }
  .sub .about > section#approach {
    margin: 70px auto 0;
    padding: 30px 0 0 0;
  }
  .sub .about > section#approach > .detail {
    display: block;
    flex-wrap: nowrap;
    margin: 40px auto 0;
  }
  .sub .about > section#approach > .detail > div {
    width: 100%;
    margin: 0 auto;
  }
  .sub .about > section#approach > .detail > div:nth-of-type(2) {
    margin: 6px auto;
  }
  .sub .about > section#approach > .detail > div > p:nth-of-type(1) {
    font-size: 1.8rem;
  }
  .sub .about > section#approach > .detail > div > img {
    width: 90%;
  }
  .sub .about > section#approach > .detail > div > p:nth-of-type(2) {
    font-size: 1.8rem;
  }
  .sub .about > section#approach > .detail > div > p:nth-of-type(3) {
    font-size: 1.3rem;
  }
  .sub .about > section#capability {
    margin: 100px auto 0;
  }
  .sub .about > section#capability > .detail {
    margin: 60px auto 0;
  }
  .sub .about > section#capability > .detail01 {
    margin-top: 40px;
  }
  .sub .about > section#capability > .detail > div {
    width: 100%;
    margin: 0 auto;
  }
  .sub .about > section#capability > .detail > div:nth-of-type(1) {
    float: none;
  }
  .sub .about > section#capability > .detail02 > div:nth-of-type(1) {
    float: none;
  }
  .sub .about > section#capability > .detail > div:nth-of-type(2) {
    float: none;
    padding-top: 0;
    padding-left: 0;
  }
  .sub .about > section#capability > .detail02 > div:nth-of-type(2) {
    float: none;
    padding-left: 0;
    padding-right: 0;
  }
  .sub .about > section#capability > .detail > div:nth-of-type(2) > p:nth-of-type(1) {
    margin: 40px 0 0 0;
    font-size: 2rem;
  }









  /* company */
  .sub .company > .mv  {
    width: 100%;
    margin: 40px auto 0;
  }
  .sub .company .h3-txt {
    font-size: 1.3rem;
  }
  .sub .company h3 {
    font-size: 2rem;
  }
  .sub .company > section#outline {
    margin: 100px auto 0;
  }
  .sub .company > section#outline > table {
    width: 100%;
    margin: 40px auto 0;
  }
  .sub .company > section#outline > table th {
    display: block;
    width: 100%;
    padding: 30px 0 0 0;
    font-size: 1.4rem;
    border-bottom: none;
  }
  .sub .company > section#outline > table td {
    display: block;
    width: 100%;
    padding: 10px 0 30px 0;
    font-size: 1.4rem;
  }
  .sub .company > section#outline > table td a.map::before {
    bottom: 4px;
    right: -20px;
  }
  .sub .company > section#outline > table td ul {
    display: block;
    flex-wrap: nowrap;
  }
  .sub .company > section#outline > table td ul li {
    width: 100%;
    margin-top: 40px;
  }
  .sub .company > section#outline > table td ul li:nth-of-type(1) {
    margin-top: 10px;
  }
  .sub .company > section#outline > table td ul li > p {
    margin: 0 0 5px 0;
  }
  .sub .company > section#outline > p.update {
    font-size: 1.3rem;
  }
  .sub .company > section#history {
    margin: 140px auto 0;
  }
  .sub .company > section#history > table {
    margin: 40px auto 0;
  }
  .sub .company > section#history > table th {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.4rem;
    text-align: left;
  }
  .sub .company > section#history > table td {
    display: block;
    width: 100%;
    padding: 30px 0;
    font-size: 1.4rem;
  }
  .sub .company > section#history > table td > p {
    margin: 20px 0 0 0;
  }
  .sub .company > section#history > table td > p:first-child {
    margin: 0;
  }
  .sub .company > section#history > table td > p > span:nth-of-type(1) {
    display: inline-block;
    width: 25%;
    padding-left: 10%;
  }
  .sub .company > section#history > table td > p > span:nth-of-type(2) {
    width: 75%;
  }
  .sub .company > section#location {
    margin: 140px auto 0;
  }
  .sub .company > section#location > p.txt {
    font-size: 1.5rem;
  }
  .sub .company > section#location > .photo {
    display: block;
    flex-wrap: nowrap;
    margin: 25px auto 0;
  }
  .sub .company > section#location > .photo > img {
    width: 100%;
    margin-top: 15px;
  }
  .sub .company > section#location > .photo > img:nth-of-type(2n) {
    margin-left: 0;
  }
  .sub .company > section#location > .address {
    display: block;
    flex-wrap: nowrap;
    margin: 40px auto 0;
    padding: 30px 0;
    text-align: center;
  }
  .sub .company > section#location > .address > p:nth-of-type(1) {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    border-right: none;
  }
  .sub .company > section#location > .address > p:nth-of-type(1) > span {
    padding-bottom: 1px;
    border-bottom: 1px solid #2B2A2C;
  }
  .sub .company > section#location > .address > p:nth-of-type(2) {
    margin: 30px auto 0;
    padding: 0;
    line-height: 2;
  }
  .sub .company > section#location > .address > p:nth-of-type(2) > span {
    display: block;
    margin: 0 auto;
  }
  .sub .company > section#location > .address > a {
    position: relative;
    top: auto;
    right: auto;
    margin: 25px auto 0;
  }
  .sub .company > section#location > .access {
    margin: 60px auto 0;
    padding: 55px 64px 45px 64px;
    background-color: #FDFCFE;
    border-radius: 8px;
  }
  .sub .company > section#location > .access > p.title {
    position: relative;
    margin: 0;
    padding-left: 16px;
    font-weight: 700;
  }
  .sub .company > section#location > .access > p.title::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: '';
    width: 4px;
    height: 16px;
    background-color: #353436;
  }
  .sub .company > section#location > .access > p.txt01 {
    margin: 40px 0 0 0;
    font-size: 2rem;
    font-weight: 700;
  }
  .sub .company > section#location > .access > p.txt02 {
    margin: 10px 0 0 0;
    font-size: 1.5rem;
    line-height: 2.4;
  }
  .sub .company > section#location > .access > p.line {
    margin: 30px 0 0 0;
    height: 1px;
    background-color: #E6E5E7;
  }
  .sub .company > section#location > .access {
    margin: 10px auto 0;
    padding: 30px 25px 30px 25px;
  }
  .sub .company > section#location > .access > p.title {
    padding-left: 14px;
  }
  .sub .company > section#location > .access > p.title::before {
    height: 15px;
  }
  .sub .company > section#location > .access > p.txt01 {
    margin: 30px 0 0 0;
    font-size: 1.6rem;
  }
  .sub .company > section#location > .access > p.txt02 {
    margin: 10px 0 0 0;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  /* Service */
  .sub .service > section#outline {
    margin: 50px auto 0;
  }
  .sub .service > section#outline > img {
    position:static ;
    top: auto;
    right: auto;
    width: 100%;
  }
  .sub .service > section#outline > h2 {
    margin: 60px auto 0;
    font-size: 2rem;
  }
  .sub .service > section#outline > p {
    width: 100%;
    margin: 20px 0 0 0;
  }
  .sub .service > section#detail {
    margin: 100px auto 0;
  }
  .sub .service > section#detail.work {
    margin: 120px auto 0;
  }
  .sub .service > section#detail > h2 {
    margin: 30px 0 0 0;
    font-size: 2rem;
  }
  .sub .service > section#detail > a {
    display: block;
    flex-wrap: nowrap;
    margin: 60px 0 0 0;
  }
  .sub .service > section#detail > a > .img {
    width: 100%;
  }
  .sub .service > section#detail > a > div:nth-of-type(2) {
    width: 100%;
  }
  .sub .service > section#detail > a > div:nth-of-type(2) > p:nth-of-type(1) {
    margin: 30px 0 0 0;
    font-size: 1.2rem;
  }
  .sub .service > section#detail > a > div:nth-of-type(2) > p:nth-of-type(2) {
    margin: 10px 0 0 0;
    font-size: 1.8rem;
  }
  .sub .service > section#detail > a > div:nth-of-type(2) > p:nth-of-type(4) {
    margin: 15px 0 0 0;
    padding: 20px 0 0 0;
  }
  .sub .service > section#detail > a > div:nth-of-type(2) > div {
    margin: 20px 0 0 0;
  }

  /* Consulting */
  .sub .consulting p.h3-txt {
    font-size: 1.3rem;
  }
  .sub .consulting h3 {
    font-size: 2rem;
  }
  .sub .consulting > .mv  {
    width: 100%;
    margin: 40px auto 0;
  }
  .sub .consulting > .content-wrap  {
    display: block;
    margin: 90px auto 0;
    padding-right: 0;
  }
  .sub .consulting > .content-wrap > div:nth-of-type(2)  {
    width: 100%;
  }
  .sub .consulting section#overview {
    padding-top: 0;
  }
  .sub .consulting section#overview > div:nth-of-type(1) {
    width: 100%;
  }
  .sub .consulting section#overview > div:nth-of-type(2) {
    width: 100%;
    padding-top: 0;
  }
  .sub .consulting section#overview {
    display: block;
    margin: 0 auto;
  }
  .sub .consulting section#overview > div:nth-of-type(1) {
    width: 100%;
  }
  .sub .consulting section#overview > div:nth-of-type(2) {
    width: 100%;
    padding-top: 0;
  }
  .sub .consulting section#needs {
    margin: 120px auto 0;
    padding-top: 0;
  }
  .sub .consulting section#needs > div {
    display: block;
  }
  .sub .consulting section#needs > div > div {
    width: 100%;
    margin: 50px 0 0 0;
  }
  .sub .consulting section#needs > div > div > img {
    width: 64px;
    margin: 0;
  }
  .sub .consulting section#needs > div > div > p:nth-of-type(1) {
    font-size: 1.8rem;
  }
  .sub .consulting section#focus {
    margin: 120px auto 0;
    padding-top: 0;
  }
  .sub .consulting section#focus > div {
    padding: 50px 0 30px  0;
  }
  .sub .consulting section#focus > div:nth-of-type(1) {
    margin: 40px 0 0 0;
  }
  .sub .consulting section#focus > div > img {
    position: absolute;
    top: 45px;
    left: 0;
    width: 36px;
  }
  .sub .consulting section#focus > div > p:nth-of-type(1) {
    padding-left: 50px;
    font-size: 1.8rem;
  }
  .sub .consulting section#focus > div > p:nth-of-type(2) {
    margin: 30px 0 0 0;
  }
  .sub .consulting section#solutions {
    margin: 120px auto 0;
    padding-top: 0;
  }
  .sub .consulting section#solutions > img {
    margin: 30px auto 0;
  }
  .sub .consulting section#solutions > div {
    margin: 80px auto 0;
  }
  .sub .consulting section#solutions > div:nth-of-type(1) {
    margin: 60px auto 0;
  }
  .sub .consulting section#solutions ul {
    display: block;
  }
  .sub .consulting section#solutions ul > li {
    min-height: auto;
    width: 100%;
    margin: 40px 0 0 0;
    padding-left: 0;
  }
  .sub .consulting section#solutions ul > li:nth-of-type(2n) {
    margin-left: 0;
  }
  .sub .consulting section#solutions ul > li > img {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
  }
  .sub .consulting section#solutions ul > li > p:nth-of-type(1) {
    margin: 20px 0 0 0;
    font-size: 1.8rem;
  }
  .sub .consulting section#solutions ul > li > p:nth-of-type(2) {
    font-size: 1.3rem;
  }

  .sub .consulting section#process {
    margin: 120px auto 0;
    padding-top: 0;
  }
  .sub .consulting section#process > div {
    padding: 40px 0 30px  0;
  }
  .sub .consulting section#process > div:nth-of-type(1) {
    margin: 10px 0 0 0;
  }
  .sub .consulting section#process > div > p:nth-of-type(1) {
    font-size: 1.8rem;
  }
  .sub .consulting section#process > div > p:nth-of-type(1) > span {
    display: block;
    width: 66px;
    height: 24px;
    margin: 0 0 15px 0;
    padding: 6px 0 0 0;
    font-size: 1.2rem;
  }
  .sub .consulting section#process > div > p:nth-of-type(2) {
    margin: 10px 0 0 0;
  }

  /* #supportは、各サービスのページで共通 */
  .sub section#support {
    margin: 120px auto 0;
    padding: 70px 0 80px 0;
  }
  .sub section#support > p {
    font-size: 2rem;
  }
  .sub section#support > .link-btn02-wrap {
    margin: 30px auto 0;
  }
  .sub section#support > .link-btn02-wrap > .link-btn02 {
    padding: 0 20px;
    background: url(/images/support_btn_bg.png) top center no-repeat;
    background-size: cover;
  }
  .sub section#support > .link-btn02-wrap > .link-btn02::before{
    border: none;
  }
  .sub section#support > .link-btn02-wrap > .link-btn02 span {
    color: #ffffff;
  }
  .sub section#support > .link-btn02-wrap > .link-btn02 span::after{
    background: url(/images/btn_arrow_w.png) 0 0 no-repeat;
    background-size: contain;
  }

  /* #otherは、各サービスのページで共通 */
  .sub section#other {
    margin: 140px auto 0;
  }
  .sub section#other > div {
    display: block;
  }
  .sub section#other > div > a {
    display: block;
    width: 100%;
    margin: 40px 0 0 0;
  }
  .sub section#other > div > a > p:nth-of-type(1) {
    margin: 20px 0 0 0;
    font-size: 1.3rem;
  }
  .sub section#other > div > a > p:nth-of-type(2) {
    font-size: 1.6rem;
  }

  /* work */
  .sub .work p.h3-txt {
    font-size: 1.3rem;
  }
  .sub .work h3 {
    font-size: 2rem;
  }
  .sub .work > .mv  {
    width: 100%;
    margin: 40px auto 0;
  }


  .sub .work > .content-wrap  {
    display: block;
    margin: 90px auto 0;
    padding-right: 0;
  }
  .sub .work > .content-wrap > div:nth-of-type(2)  {
    width: 100%;
  }
  .sub .work section#overview {
    padding-top: 0;
  }
  .sub .work section#overview > img {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
  }
  .sub .work section#overview > div {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .sub .work section#overview > div > a {
    margin: 20px 0 0 0;
  }
  .sub .work p.background-line {
    margin: 60px auto 0;
  }
  .sub .work section#background {
    margin: 60px auto 0;
    padding: 0;
  }
  .sub .work section#background > p.txt {
    margin: 20px 0 0 0;
  }
  .sub .work section#background > img {
    margin: 30px auto 0;
  }

  .sub .work section#style {
    margin: 120px auto 0;
    padding-top: 0;
  }
  .sub .work section#style > div {
    display: block;
    margin: 30px 0 0 0;
  }
  .sub .work section#style > div > div {
    width: 100%;
    margin: 0;
  }
  .sub .work section#style > div > div:nth-of-type(2) {
    margin: 40px 0 0 0;
  }
  .sub .work section#style > div > div > p:nth-of-type(1) {
    font-size: 1.8rem;
  }
  .sub .work section#detail {
    margin: 120px auto 0;
    padding-top: 0;
  }
  .sub .work section#detail > img {
    margin: 30px 0 0 0;
  }
  .sub .work section#faq {
    margin: 120px auto 0;
    padding-top: 0;
  }

  /* ビジネススクール事業 */
  .sub .work section#school-site {
    margin: 120px auto 0;
    padding: 70px 0 80px 0;
    background: url(/images/school_site_bg_sp.png) center center no-repeat;
    background-size: cover;
  }
  .sub .work section#school-site > p {
    font-size: 2rem;
  }


  /* member 詳細 */
  .sub .member > .mv  {
    margin: 0 auto;
  }
  .sub .member > .mv > div {
    width: 100%;
    margin: 0 auto;
  }
  .sub .member > .mv > div:nth-of-type(1)  {
    margin-top: 0;
    padding: 0;
  }
  .sub .member > .mv > div:nth-of-type(1) > p:nth-of-type(1) {
    font-size: 2rem;
  }
  .sub .member > .mv > div:nth-of-type(1) > div.member-info {
    margin: 20px 0 0 0;
  }
  .sub .member > .mv > div:nth-of-type(2) {
    margin: 50px auto 0;
  }
  .sub .member > section#profile {
    margin: 100px auto 0;
    padding: 35px 0 15px 0;
  }
  .sub .member > section#profile > div {
    display: block;
    flex-wrap: nowrap;
    width: 100%;
  }
  .sub .member > section#profile > div > div:nth-of-type(1) {
    position: relative;
    width: 100%;
  }
  .sub .member > section#profile > div > div:nth-of-type(1) > img {
    width: 50%;
  }
  .sub .member > section#profile > div > div:nth-of-type(1) > p {
    position: absolute;
    top: 30%;
    left: auto;
    right: 0;
    width: 50%;
    padding-left: 30px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .sub .member > section#profile > div > div:nth-of-type(1) > p > span {
    display: block;
    margin: 5px 0 0 0;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .sub .member > section#profile > div > div:nth-of-type(2) {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .sub .member > section#profile > div > div:nth-of-type(2) > p {
    font-size: 1.3rem;
  }
  .sub .member > section#article {
    margin: 80px auto 0;
  }
  .sub .member > section#article > h2 {
    font-size: 1.8rem;
  }
  .sub .member > section#article > h3 {
    margin: 50px auto 0;
  }
  .sub .member > section#article > p {
    margin: 20px auto 0;
  }
  .sub .member > section#article > img {
    margin: 50px auto 0;
  }
  .sub .member > .fullimg {
    margin: 70px auto 0;
  }
  .sub .member > .interview {
    font-size: 1.2rem;
  }


  .sub .member > section#character {
    width: 100% !important;
    margin: 120px auto 0;
    text-align: left;
  }
  .sub .member > section#character > p:nth-of-type(1) {
    width: 90%;
    margin: 0 auto;
    font-size: 1.3rem;
  }
  .sub .member > section#character > p:nth-of-type(2) {
    width: 90%;
    margin: 5px auto 0;
    font-size: 2rem;
  }
  .sub .member > section#character .character-list {
    display: block;
    margin: 40px auto 0;
    padding-left: 5%;
  }
  .sub .member > section#character .character-list .item {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .sub .member > section#character .character-list .item > img {
    width: 20px;
  }
  .sub .member > section#character .slick-list {
    padding: 0 10% 0 0 !important;
  }
  .sub .member > section#character .slick-slide {
    margin-right: 15px;
  }
  .sub .member > section#next {
    margin: 120px auto 0;
  }
  .sub .member > section#next > a {
    position: relative;
    padding: 30px 0 30px 0;
  }
  .sub .member > section#next > a > div {
    display: block;
    flex-wrap: nowrap;
    position: relative;
    width: 90%;
    padding-top: 50px;
    text-align: center;
  }
  .sub .member > section#next > a > div > div:nth-of-type(1) {
    width: 60%;
    margin: 0 auto;
  }
  .sub .member > section#next > a > div > div:nth-of-type(2) {
    width: 100%;
    margin: 0 auto;
  }
  .sub .member > section#next > a > div > div:nth-of-type(2) > p:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 1.3rem;
  }
  .sub .member > section#next > a > div > div:nth-of-type(2) > p:nth-of-type(2) {
    margin: 30px 0 0 0;
    font-size: 1.8rem;
    text-align: left;
  }
  .sub .member > section#next > a > div > div:nth-of-type(2) > div.member-info {
    margin: 15px 0 0 0;
    text-align: left;
  }
  .sub .member > .link-box {
    margin-top: 80px !important;
  }

  /* news */
  .sub .news > section#news {
    margin: 50px auto 120px;
  }
  .sub .news > section#news .news-list {
    margin: 0 auto;
  }
  /* news ページネーション */
  .sub .news > section#news .pagination {
    margin: 50px auto 0;
  }
  .sub .news > section#news .pagination > ul > li {
    margin: 0 6px;
  }

  /* news-detail */
  .sub .news-detail {
    margin: 0 auto 120px;
  }
  .sub .news-detail > section#title > span.jotai {
    font-size: 1.3rem;
  }
  .sub .news-detail > section#title > span.date {
    font-size: 1.3rem;
  }
  .sub .news-detail > section#title > h2 {
    font-size: 2rem;
  }
  .sub .news-detail > section#detail {
    margin-top: 30px;
    padding: 30px 0;
  }
  .sub .news-detail > section#detail img {
    margin: 20px 0;
  }
  .sub .news-detail > section#link {
    margin: 40px auto 0;
  }
  .sub .news-detail > section#link > ul > li > a {
    font-size: 1.4rem;
  }
  .sub .news-detail > section#link > ul > li:nth-of-type(1) > a {
    padding-left: 15px;
  }
  .sub .news-detail > section#link > ul > li:nth-of-type(1) > a::before {
    top: 4px;
  }
  .sub .news-detail > section#link > ul > li:nth-of-type(3) > a {
    padding-right: 15px;
  }
  .sub .news-detail > section#link > ul > li:nth-of-type(3) > a::before {
    top: 4px;
  }

  /* join_us */
  .sub .join_us p.h3-txt {
    font-size: 1.3rem;
  }
  .sub .join_us h3 {
    font-size: 2rem;
  }
  .sub .join_us > section#photo {
    margin: 40px auto 0;
  }
  .sub .join_us > section#photo .join_us-list02 {
    margin: 25px auto 0;
  }
  .sub .join_us > section#photo .join_us-list01 .join_us-content,
  .sub .join_us > section#photo .join_us-list02 .join_us-content {
    margin: 0 4vw;
  }
  .sub .join_us > section#intro {
    width: 90%;
    margin: 100px auto 0;
  }
  .sub .join_us > section#intro > p:nth-of-type(1) {
    font-size: 2rem;
    text-align: left;
  }
  .sub .join_us > section#intro > p:nth-of-type(2) {
    margin: 30px 0 0 0;
    font-size: 1.5rem;
  }
  .sub .join_us > .fullimage {
    margin: 80px auto 0;
  }
  .sub .join_us > section#spirit {
    margin: 100px auto 0;
  }
  .sub .join_us > section#spirit > div {
    display: block;
    flex-wrap: nowrap;
    padding: 35px 0;
  }
  .sub .join_us > section#spirit > div:nth-of-type(1) {
    margin: 40px auto 0;
  }
  .sub .join_us > section#spirit > div > p {
    display: block;
    margin: 0;
    line-height: 1.5;
  }
  .sub .join_us > section#spirit > div > p:nth-of-type(1) {
    width: 100%;
    font-size: 1.1rem;
  }
  .sub .join_us > section#spirit > div > p:nth-of-type(2) {
    margin-top: 10px;
    width: 100%;
    font-size: 1.8rem;
  }
  .sub .join_us > section#spirit > div > p:nth-of-type(3) {
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
    font-size: 1.4rem;
    line-height: 2;
  }
  .sub .join_us > section#voices {
    margin: 140px auto 0;
  }
  .sub .join_us > section#voices > .detail {
    margin: 60px auto 0;
  }
  .sub .join_us > section#voices > .detail01 {
    margin-top: 40px;
  }
  .sub .join_us > section#voices > .detail > a > div:nth-of-type(1) {
    float: none;
    width: 100%;
    margin: 0 auto;
  }
  .sub .join_us > section#voices > .detail02 > a > div:nth-of-type(1) {
    float: none;
  }
  .sub .join_us > section#voices > .detail > a > div:nth-of-type(2) {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .sub .join_us > section#voices > .detail02 > a > div:nth-of-type(2) {
    float: none;
    padding: 0;
  }
  .sub .join_us > section#voices > .detail > a > div:nth-of-type(2) > p:nth-of-type(1) {
    margin: 20px 0 0 0;
    font-size: 1.3rem;
  }
  .sub .join_us > section#voices > .detail > a > div:nth-of-type(2) > p:nth-of-type(2) {
    margin: 10px 0 0 0;
    font-size: 1.8rem;
  }
  .sub .join_us > section#voices > .detail > a > div:nth-of-type(2) > .member-info {
    margin: 10px 0 0 0;
  }

  /* #faqは、共通（Join Usページ、CAREER BASEページ、Business Schoolページ） */
  .sub section#faq {
    margin: 140px auto 0;
  }
  .sub section#faq > div.qa {
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid #CCCBCD;
    border-bottom: 1px solid #CCCBCD;
  }
  .sub section#faq > div.qa:nth-of-type(1) {
    margin-top: 50px;
  }
  .sub section#faq > div.qa > div:nth-of-type(1) {
    padding: 30px 40px;
    font-size: 1.6rem;
  }
  .sub section#faq > div.qa > div:nth-of-type(1) > span {
    top: 30px;
    font-size: 1.6rem;
  }
  .sub section#faq > div.qa > div:nth-of-type(1)::before {
    top: 40px;
  }
  .sub section#faq > div.qa > div:nth-of-type(1)::after {
    top: 40px;
  }
  .sub section#faq > div.qa > div:nth-of-type(2) {
    padding: 0 40px 30px 40px;
    font-size: 1.4rem;
    line-height: 2;
  }
  .sub section#faq > div.qa-btm {
    height: 30px;
  }


  .sub .join_us > section#entry {
    margin: 140px auto 0;
  }
  .sub .join_us > section#entry > p.txt {
    margin: 30px 0 0 0;
  }
  .sub .join_us > section#entry > div {
    display: block;
    flex-wrap: nowrap;
    margin: 40px 0 0 0;
  }
  .sub .join_us > section#entry > div > a {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 68px 20px 15px;
    font-size: 1.2rem;
  }
  .sub .join_us > section#entry > div > a:nth-of-type(2n) {
    margin-top: 15px;
    margin-left: 0;
  }
  .sub .join_us > section#entry > div > a > span {
    top: 22px;
    right: 15px;
    font-size: 1.2rem;
    padding: 8px 10px;
  }
  .sub .join_us > section.entry-detail {
    margin-top: 80px !important;
    padding-top: 20px;
  }
  .sub .join_us > section#creative {
    margin-top: 100px !important;
  }
  .sub .join_us > section.entry-detail > p:nth-of-type(1) {
    font-size: 1.3rem;
  }
  .sub .join_us > section.entry-detail > p:nth-of-type(1) > span {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    padding: 8px 10px;
  }
  .sub .join_us > section.entry-detail > p:nth-of-type(2) {
    margin: 40px 0 0 0;
    font-size: 1.8rem;
  }
  .sub .join_us > section.entry-detail > div > p {
    padding: 40px 0;
    font-size: 1.6rem;
  }
  .sub .join_us > section.entry-detail > div > p::before {
    top: 50px;
    right: 0;
  }
  .sub .join_us > section.entry-detail > div > p::after {
    top: 50px;
    right: 0;
  }
  .sub .join_us > section.entry-detail table th {
    display: block;
    width: 100%;
    padding: 35px 0 0 0;
    font-size: 1.4rem;
    border-bottom: none;
  }
  .sub .join_us > section.entry-detail table td {
    display: block;
    width: 100%;
    padding: 15px 0 10px 0;
    font-size: 1.4rem;
  }
  .sub .join_us > section.entry-detail table td p {
    margin: 0 0 14px 0;
  }
  .sub .join_us > section.entry-detail .link-btn02-wrap {
    margin: 40px auto;
  }



  /* サブページ共通　フッター上のリンク */
  .sub .link-box {
    height: 300px;
    margin: 100px auto 0;
  }
  .sub .link-box > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 100px 0 0 0;
  }
  .sub .link-box > a > p:nth-of-type(2) {
    margin: 10px auto 0;
    font-size: 3.6rem;
  }


  /* contact */
  .sub .contact  {
    margin-bottom: 120px;
  }
  .sub .contact > section#intro  {
    margin: 40px auto 0;
    font-size: 1.4rem;
    text-align: left;
  }
  .sub .contact > section#form {
    margin: 70px auto 0;
  }
  .sub .contact > section#form > p.caution {
    font-size: 1.4rem;
  }
  .sub .contact > section#form .box {
    margin: 40px 0 0 0;
  }
  .sub .contact > section#form .box > p {
    font-size: 1.4rem;
  }
  .sub .contact > section#form .box > p > .txt {
    display: block;
    margin: 5px 0 0 0;
    font-size: 1.2rem;
  }
  .sub .contact > section#form .input-error {
    top: 5px;
    font-size: 1.1rem;
  }
  .sub .contact > section#form .box > ul > li {
    font-size: 1.4rem;
  }

  /* ラジオボタン */
  input[type="radio"] {
    top: 12px;
  }

  /* チェックボックス */
  input[type="checkbox"] {
    margin: 16px 9px 0 0;
  }

  .sub .contact > section#form p.policy {
    margin: 40px 0 0 0;
    font-size: 1.4rem;
  }
  .sub .contact > section#form .policy-check {
    margin: 40px 0 0 0;
    font-size: 1.4rem;
  }

  .sub .contact > section#form .btn-box {
    margin: 30px 0 0 0;
  }
  .sub .contact > section#form .btn-box > span {
    background-color: #2B2A2C;
  }

  .sub .contact > section#form .error-msg {
    margin: 35px auto 0;
    padding: 15px 0;
    font-size: 1.4rem;
  }

  /* contact 完了画面 */
  .sub .contact > section#comp  {
    margin: 40px auto 0;
    padding: 50px 0 40px 0;
  }
  .sub .contact > section#comp > p:nth-of-type(1) {
    font-size: 1.8rem;
  }
  .sub .contact > section#comp > p:nth-of-type(2) {
    width: 90%;
    margin: 20px auto 0;
    font-size: 1.4rem;
    text-align: left;
  }
  .sub .contact > section#comp > a {
    margin: 50px auto 0;
  }


  /* privacy */
  .sub .privacy > section#intro  {
    margin: 40px auto 0;
  }
  .sub .privacy > section#privacy {
    margin-bottom: 110px;
  }
  .sub .privacy > section#privacy > h3 {
    margin: 60px auto 0;
    font-size: 1.8rem;
  }
  .sub .privacy > section#privacy > p {
    margin: 10px auto 0;
  }

  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
* * Print styles.
* * Inlined to avoid the additional HTTP request:
* * http://www.phpied.com/delay-loading-your-print-css/
* * ========================================================================== */



/* added */
section#member > .member-list.list01.v2 > a:nth-of-type(1) > .img > img:nth-of-type(2){
  display: none;
}
section#member > .member-list.list01.v2 > a:nth-of-type(2) > .img > img:nth-of-type(1){
  display: none;
}
section#member > .member-list.v2:not(.list01) > a:nth-of-type(1) > .img > img:nth-of-type(1){
  display: none;
}
section#member > .member-list.v2:not(.list01) > a:nth-of-type(2) > .img > img:nth-of-type(2){
  display: none;
}
section#member > .member-list.v2 .member-info > div.cate > span{
  margin-right: 2px;
}

#overlay{
  left: 0;
  top: 0;
}
