html,
body {
  background-color: #fff;
  font-family: neuzeit-grotesk, "Helvetica Neue", Arial, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 62.5%;
  line-height: 2;
  letter-spacing: 0.1rem;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

/*html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}*/

body.hidden {
  overflow: hidden;
}

::selection
{
    background: #fff;
    color: #333;
}

/*共通css*/
.pc-hide {
  display: none;
}

p {
  font-size: 1.5rem;
}

a {
  color: #008fe2;
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: #008fe2;
  opacity: 0.5;
  text-decoration: none;
}

h2,
h3,
h4,
h5 {
  line-height: 1.5;
}

h2 {
  font-size: 8.6rem;
  font-weight: 700;
  margin-bottom: 30px;
}

h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

h4 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

h5 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

 img {
  width: 100%;
}

.neuzeit-gro-cond {
  font-family: neuzeit-grotesk-condensed, sans-serif;
  font-weight: 900;
}

.front-page h2 {
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 0 auto 25px;
  line-height: 1;
}

.sq-btn {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-right: 20px;
  padding: 0 50px;
  border: 2px solid #fff;
  transition: .2s ease-out;
  overflow: hidden;
  position: relative;
}

.sq-btn:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.sq-btn:hover {
  color: #333;
  opacity: 1;
}

.sq-btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.inview {
  transition: .3s ease-in-out;
}

.inview.fade {
  opacity: 0;
}

.inview.fade.is-show {
  opacity: 1;
}

/*個別css*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

.menu-trg {
  width: 40px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.menu-trg span {
  width: 30px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 5px;
  transition: .3s cubic-bezier(0, 0.315, 0.155, 0.995);
}

.menu-trg span:nth-of-type(1) {
  top: 10px;
}

.menu-trg span:nth-of-type(2) {
  bottom: 10px;
}

.menu-trg.active span:nth-of-type(1) {
  top: 14px;
  transform: rotate(-20deg);
}

.menu-trg.active span:nth-of-type(2) {
  bottom: 14px;
  transform: rotate(20deg);
}

.menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: .3s cubic-bezier(0, 0.315, 0.155, 0.995);
  background-color: #fff;
}

.menu.active {
  opacity: 1;
  pointer-events: auto;
}

.menu .menu-container {
	width: 100%;
  height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu .logo {
  width: 25%;
  margin: 0 5% 0 20%;
}

.menu .logo a {
  display: block;
  width: 65%;
  margin: 50px auto 0;
}

.menu .link-list {
  width: 40%;
  margin: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.menu .link-list a {
  display: inline-block;
  color: #000;
  font-size: 5.6rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
}

.menu .link-list a.right-arrow {
  position: relative;
  padding-right: 35px;
}

.menu .link-list a.right-arrow:after {
  content: '';
  width: 25px;
  height: 25px;
  background: no-repeat center center / contain url(../img/svg/menu_arrow.svg);
  position: absolute;
  top: 23px;
  right: 0;
}

content {
  width: 100%;
}

.section {
  width: calc(100% - 80px);
  max-width: 960px;
  margin: 0 auto 90px;
  padding-top: 30px;
}

.section.fullw {
  width: 100%;
  max-width: 100%;
}

.top {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
  margin-bottom: 90px;
}

.top-logo {
  width: 50%;
  height: 80%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 20;
}

.top-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-1em);
}

.top .main-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.top .main-slide:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0,0,0,0.5);
  mix-blend-mode: overlay;
}

.top .main-slide .swiper-container {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.top .main-slide .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top .main-slide .swiper-slide:after {
  content: '';
  width: 100%;
  height: 100%;
  background: no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.top .main-slide .swiper-slide.swiper-slide-active:after,
.top .main-slide .swiper-slide-duplicate-active:after,
.top .main-slide .swiper-slide-prev:after {  
  animation: zoomUp 12s linear 0s 1 normal both;
  background: no-repeat center center / cover;
  will-change: transform;
}

.top .main-slide .swiper-slide.bg1:after {
  background-image: url(../img/top/main-cover-1.jpg);
}

.top .main-slide .swiper-slide.bg2:after {
  background-image: url(../img/top/main-cover-2.jpg);
}

.top .main-slide .swiper-slide.bg3:after {
  background-image: url(../img/top/main-cover-3.jpg);
}

.top .fv-menu {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  left: 70px;
  bottom: 10%;
}

.top .fv-menu a {
  color: #fff;
  font-size: 6.5rem;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 40px;
  font-weight: 700;
  position: relative;
}

.top .fv-menu a:hover {
  opacity: 1;
}

.top .fv-menu a:hover:before {
  content: '';
  width: 100%;
  height: 1em;
  background-color: rgb(200,200,200);
  mix-blend-mode: overlay;
  position: absolute;
  left: 0;
  bottom: 0;
}

.top .powered-credit {
  top: 30px;
  left: 35px;
  position: absolute;
  z-index: 20;
  display: flex;
}

.top .powered-credit p {
  font-size: 1.2rem;
  font-weight: 700;
}

.top .powered-credit img {
  width: 150px;
  margin-left: 20px;
}

/*top-about*/
.top-about-container {
  background-color: #e3e1e1;
  padding: 140px 0;
  overflow: hidden;
  position: relative;
}

.bktogy {
  background-color: #000;
  transition: .4s cubic-bezier(0, 0.315, 0.155, 0.995) .5s;
}

.inview.bktogy.is-show {
  background-color: #e3e1e1;
}

.top-about-container:before {
  content: '';
  width: 65vw;
  height: 65vw;
  background: no-repeat center center / cover url(../img/svg/logomark-wh.svg);
  position: absolute;
  top: 50px;
  left: -20vw;
}

.top-about-container .info-container {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
  padding-top: 0;
}

.top-about-container .info-container h3 {
  width: 50%;
  font-size: 4.6rem;
}

.top-about-container .info-container h3 span {
  font-size: 0.85em;
}

.top-about-container .info-container p {
  font-size: 1.8rem;
  line-height: 2;
  width: 50%;
}

/*top active report*/
.top-active-report-container .box {
  width: 100%;
  background: no-repeat center center / cover;
  padding: 100px 0;
  position: relative;
}

.top-active-report-container .box:after {
  content: '';
  width: 100%;
  height:100%;
  background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/*.top-active-report-container .box:after {
  content: '';
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px solid #fff;
  box-sizing: border-box;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}*/

.top-active-report-container .box.report1 {
  background-image: url(../img/top/ar-cover1.jpg);
}

.top-active-report-container .box.report2 {
  background-image: url(../img/top/ar-cover2.jpg);
}

.top-active-report-container .box.report3 {
  background-image: url(../img/top/ar-cover3.jpg);
}

.top-active-report-container .box .info-container {
  width: calc(100% - 240px);
  position: relative;
  margin-bottom: 0;
  z-index: 5;
  padding-top: 0;
}

.top-active-report-container .box .info-container .num-item {
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 700;
  transform: rotate(-90deg);
  position: absolute;
  top: 45px;
  left: -120px;
  color: #fff;
}

.top-active-report-container .box .info-container .num-item span {
  display: inline-block;
  transform: translateY(-.15em) scale(0.8, 1);
}

.top-active-report-container .box .info-container h3,
.top-active-report-container .box .info-container p {
  color: #fff;
}

.top-active-report-container .box .info-container h3 {
  font-size: 5.6rem;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 30px
}

.top-active-report-container .box.inview .info-container h3 span {
  position: relative;
  display: inline-block;
  transition: .5s ease-in-out;
  overflow: hidden;
}

.top-active-report-container .box.inview .info-container h3 span .report-title {
  opacity: 0;
  transition: opacity .1s ease-out .8s;
}

.top-active-report-container .box.inview.is-show .info-container h3 span:nth-of-type(2) .report-title {
  transition: opacity .1s ease-out 1.2s;
}

.top-active-report-container .box.is-show .info-container h3 span .report-title {
  opacity: 1;
}

.top-active-report-container .box.inview .info-container h3 span:before {
  content: '';
  width: 100%;
  height:100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: translateX(-100%);
}

.top-active-report-container .box.inview.is-show .info-container h3 span:nth-of-type(1):before {
  animation: textFb 1.2s ease-in-out .3s forwards;
}

.top-active-report-container .box.inview.is-show .info-container h3 span:nth-of-type(2):before {
  animation: textFb 1.2s ease-in-out .5s forwards;
}

@keyframes textFb {
  0% {
    transform: translateX(-100%);
  }

  35% {
    transform: translateX(0);
  }

  75% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

/*.top-active-report-container .box .info-container h3:after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
*/
.top-active-report-container .box .info-container p {
  width: 60%;
}

.link-btn-list {
  display: flex;
  justify-content: flex-start;
  margin-top: 35px;
}

/*ADVISOR&PARTNER*/
.top-ad-pa {
	padding-top: 30px;
}

.ad-pa-slide {
  width: calc(100% - 100px);
  margin-top: 40px;
  position: relative;
}

.swiper-button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background-size: 48px 48px;
  margin-top: -48px;
}

.swiper-button-next {
  background-image: url(../img/svg/slide-arrow.svg);
  right: -50px;
}

.swiper-button-prev {
  background-image: url(../img/svg/slide-arrow.svg);
  transform: scale(-1, 1); /* 左右反転 */
  left: -50px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
 display: none;
}

.ad-pa-slide .swiper-slide {
  width: calc((100% / 3) - 50px);
  margin: 0 25px;
  text-align: center;
}

.ad-pa-slide .swiper-slide img {
  width: 100%;
  max-width: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 5px;
}

.ad-pa-slide .swiper-slide .info-box h4 {
  font-size: 2.4rem;
  margin-bottom: 0;
}

.ad-pa-slide .swiper-slide .info-box .role-name {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.ad-pa-slide .swiper-slide .info-box p {
  font-size: 1.3rem;
  line-height: 1.75;
  text-align: justify;
}

footer {
  text-align: center;
  padding: 0 0 80px;
}

.contact-us-wrapper {
  width: 100%;
  height: 250px;
  background: no-repeat center center / cover url(../img/contact-us.jpg);
  position: relative;
  margin-bottom: 80px;
  display: block;
}

.contact-us-wrapper:hover {
  opacity: 1;
}

.contact-us-wrapper:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0,0,0,0.8);
}

.contact-us-wrapper .section {
  width: calc(100% - 140px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding-top: 0;
}

.contact-us-wrapper .section h2 {
  color: #fff;
  position: relative;
  display: inline-block;
  padding-right: 35px;
  margin-bottom: 0;
}

.contact-us-wrapper .section h2:after {
  content: '';
  width: 23px;
  height: 23px;
  background: no-repeat center center / contain url(../img/svg/menu_arrow-wh.svg);
  position: absolute;
  top: 35px;
  right: 0;
  transform:rotate3d(1,-1,0,0deg);
}

.contact-us-wrapper:hover .section h2:after {
  animation: rotateArrow 3s ease-in-out forwards;
}

@keyframes rotateArrow {
  0% {
    transform:rotate3d(1,-1,0,0deg);
  }

  25% {
    transform:rotate3d(1,-1,0,-60deg);
  }

  60% {
    transform:rotate3d(1,-1,0,800deg);
  }

  100% {
    transform:rotate3d(1,-1,0,720deg);
  }
}

.logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.logo-list img {
  width: auto;
  height: 40px;
  object-fit: contain;
  margin: 0 30px;
}

.logo-list img:nth-of-type(1) {
  height: 30px;
  transform: translateY(0.75em);
}

.membranemark {
  width: 170px;
  margin: 0 auto 40px;
}

.copyright {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  text-indent: -1em;
  font-weight: 700;
}


/*active report*/
.caption {
  width: calc(100% - 140px);
  max-width: 960px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caption img {
  width: 80px;
  margin-right: 20px;
}

.caption p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.active-report-page h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

.active-report-page p,
.active-report-page img {
  margin-bottom: 1em;
}

.index-list a {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.25;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.side-index {
  width: 350px;
  height: calc(100vh - 90px);
  background-color: #000;
  padding: 40px 50px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateX(-420px);
  transition: transform .3s ease-in-out, background-color .3s ease-in-out;
  overflow-y: scroll;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
}

.side-index.yellow {
  background-color: #fff100;
}

.side-index.gray {
  background-color: #eb6d45;
}

.side-index.yellow  .ar-num {
  color: #333;
}

.side-index.yellow h3 {
  color: #333;
}

.side-index.yellow .index-list a {
  color: #333;
  border-bottom: 1px solid #333;
}

.side-index.yellow .index-trg {
  color: #333;
}

.side-index.yellow .index-trg:before {
  background: no-repeat center center / contain url(../img/svg/index-arrow-bk.svg);
}

.side-index::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}

.side-index.active {
  transform: translateX(0);
}

.side-index .index-trg {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  position: absolute;
  top: 10px;
  right: -17px;
  transform: rotate(90deg) translateX(20px);
  padding-right: 20px;
  cursor: pointer;
}

.side-index .index-trg:before {
  content: '';
  width: 10px;
  height: 15px;
  background: no-repeat center center / contain url(../img/svg/index-arrow.svg);
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  position: absolute;
  transform: rotate(-90deg);
  transition: transform .3s ease-in-out;
}

.side-index .index-trg.active:before {
  transform: rotate(90deg);
}

.side-index .ar-num {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  margin-left: 3px;
}

.side-index h3 {
  color: #fff;
  margin-bottom: 40px;
}

.side-index .index-list a {
  font-size: 1.5rem;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.side-index .index-list .workshop-link-list {
  padding: 10px 0 5px 10px;
  margin: 20px 0 20px 10px;
  border-left: 1px solid #808080;
}

.side-index .index-list .workshop-link-list a {
  font-size: 1.2rem;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.side-index .index-list .workshop-link-list a .num {
  width: 50px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 2.4rem;
  line-height: 0.7;
  font-style: italic;
  margin-right: 15px;
}

.side-index .index-list .workshop-link-list a .num:before {
  content: 'Session';
  font-size: 1rem;
  color: #fff;
  font-style: normal;
  margin-right: 5px;
}

.side-index.yellow .index-list .workshop-link-list a .num:before {
  color: #000;
}

.side-index .index-list .workshop-link-list a.last {
  margin-bottom: 0;
}

.side-index .index-list .workshop-link-list a.last .num {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  justify-content: center;  margin-bottom: 0;
}

.side-index .index-list .workshop-link-list a.last .num:before {
  display: none;
}

.wide-col2 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.wide-col2 .left-col,
.wide-col2 .right-col {
  width: calc(50% - 100px);
  padding: 0 30px 0 60px;
}

.wide-col2 .right-col {
  width: calc(50% - 100px);
  padding: 0 60px 0 30px;
}

.wide-col2 .full-col {
  width: calc(100% - 140px);
  height: auto;
  padding: 0 70px;
}

.wide-col2 .left-col img,
.wide-col2 .right-col img {
  width: 100%;
}

.start-index.wide-col2 {
  max-width: 100%;
  min-height: 100vh;
}

.start-index .ar-num {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  margin-left: 4px;
  margin-bottom: 15px;
  display: inline-block;
}

.start-index h1 {
  font-size: 5.2rem;
  line-height: 1.25;
  margin-bottom: 40px;
}

.start-index h4.neuzeit-gro-cond {
  letter-spacing: 0;
  font-size: 2.6rem;
}

.start-index.wide-col2 .left-col {
  width: calc(50% - 200px);
  padding: 60px 120px 80px 80px;
}

.start-index.wide-col2 .right-col {
  width: 50%;
  height: auto;
  padding: 0;
}

.wide-col2 .right-col.hero-cover {
  background: no-repeat center center / cover;
  position: relative;
}

.vol1 .wide-col2 .right-col.hero-cover {
  background-image: url(../img/top/ar-cover1.jpg);
}

.vol2 .wide-col2 .right-col.hero-cover{
  background-image: url(../img/top/ar-cover2.jpg);
}

.vol3 .wide-col2 .right-col.hero-cover{
  background-image: url(../img/top/ar-cover3.jpg);
}

.vol4 .wide-col2 .right-col.hero-cover{
  background-image: url(../img/top/ar-cover4.jpg);
}

.wide-col2 .right-col.hero-cover::before,
.wide-col2 .right-col.hero-cover::after {
  content: "";
  display: block;
  width: 100%;
  background: no-repeat center center / contain;
  position: absolute;
}

.wide-col2 .right-col.hero-cover::before {
  aspect-ratio: 191 / 281;
  max-width: 191px;
  background-image: url(../img/svg/logo_min_w.svg);
  top: 25px;
  right: 20px;
}

.wide-col2 .right-col.hero-cover::after {
  aspect-ratio: 312 / 222;
  max-width: 312px;
  background-image: url(../img/svg/logotype_wrap.svg);
  bottom: 30px;
  left: 27px;
}

.image-conatiner {
  width: 100%;
  position: relative;
}

.image-conatiner h4 {
  letter-spacing: 0.2rem;
  padding: 5px 10px;
  background-color: #fff;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.concept-wrapper {
  padding-top: 80px;
}

.concept-wrapper .right-col img {
  display: block;
  max-width: 350px;
  margin: 0 auto 50px;
}

.concept-wrapper .right-col .concept-text p {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1em;
}

.interview-wrapper {
  position: relative;
}

.interview-wrapper .main-image {
  width: calc(50% - 30px);
  height: 400px;
  background: no-repeat center center / cover;
  position: absolute;
  right: 0;
}

.interview-wrapper.yellow .main-image {
  bottom: -370px;
  z-index: 10;
}

.interview-wrapper.yellow .title-wrapper {
  position: relative;
  margin-bottom: 60px;
}

.interview-wrapper.yellow .title-wrapper:before {
  content: '';
  width: 80%;
  height: 100%;
  background-color: #fff100;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.interview-wrapper.yellow .title-wrapper .title-container {
  width: calc(100% - 140px);
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 70px;
  position: relative;
  z-index: 20;
}

.interview-wrapper.yellow .title-wrapper .title-container p {
  width: calc(100% - 140px);
  max-width: 640px; 
  margin-bottom: 0;
}

.main-image.tasaki {
  background-image: url(../img/ar-no1/main-image-tasaki.jpg);
}

.main-image.shioura {
  background-image: url(../img/ar-no1/main-image-shioura.jpg);
}

.main-image.toyonaga {
  background-image: url(../img/ar-no1/main-image-toyonaga.jpg);
}

.interview-wrapper .title-container .cat {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  display: inline-block;
  padding: 3px 30px;
  background-color: #000;
  margin-bottom: 20px;
}

.interview-wrapper .name {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}

.interview-wrapper .wide-col2 img {
  width: 100%;
}

.interview-wrapper .wide-col2 .right-col .profile-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 380px;
}

.interview-wrapper .wide-col2 .right-col .profile-container .info-box,
.interview-wrapper .wide-col2 .right-col .profile-container img {
  width: calc(100% - 240px);
}

.interview-wrapper .wide-col2 .right-col .profile-container img {
  width: 200px;
  object-fit: contain;
}

.interview-wrapper .wide-col2 .right-col .profile-container h5 {
  color: #000;
  position: static;
  padding-left: 0;
  line-height: 0.7;
}

.interview-wrapper .wide-col2 .right-col .profile-container h5 span {
  font-size: 0.7em;
  display: block;
  line-height: 1.5;
}

.interview-wrapper .wide-col2 .right-col .profile-container p {
  font-size: 1.2rem;
  line-height: 1.75;
}

.interview-wrapper .wide-col2 .image-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 20px;
}

.interview-wrapper .wide-col2 .image-list img {
  width: auto;
  height: 250px;
  margin-right: 20px;
}

.issue-wrapper {
  margin-top: 80px;
  padding-top: 80px;
}

.issue-wrapper .left-col p {
  font-weight: 700; 
}

.issue-wrapper .left-col h2 {
  font-size: 5.6rem;
}

.issue-wrapper .left-col h3 {
  margin-bottom: 5px;
}

.issue-wrapper .left-col h3 {
  margin-bottom: 5px;
}

.issue-wrapper .left-col h3.question-text {
  margin-bottom: 30px;
}

.issue-wrapper .right-col .caption {
  width: 100%;
}

.issue-wrapper .right-col .caption img {
  width: 80px;
}

.development-wrapper {
  margin-top: 80px;
  background-color: #f9f9f9;
  padding-top: 80px;
}

.development-wrapper .wide-col2 {
  max-width: 1100px;
}

.development-wrapper .full-col {
  text-align: center;
}

.development-wrapper .full-col h2 {
  font-size: 10rem;
  line-height: 1;
  letter-spacing: 0;
}

.development-wrapper .full-col h3 {
  letter-spacing: 0;
  margin-bottom: 0;
}

.development-wrapper .full-col img {
  margin-bottom: 80px;
}

.development-wrapper .full-col h4 {
  font-size: 1.8rem;
  margin-bottom: 80px;
}

.development-wrapper .full-col p {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 80px;
}

.development-wrapper .right-col p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.voice-in-saga {
  margin-top: 40px;
  padding-top: 40px;
}

.voice-in-saga .main-title {
  width: calc(100% - 140px);
  max-width: 1140px;
  margin: 0 auto 80px;
  padding: 0 70px;
}

.voice-in-saga .main-title h2 {
  font-size: 8rem;
  line-height: 1.25;
}

.voice-in-saga .main-title p {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.75;
  margin-left:15px;
}

.interview-wrapper.white .title-wrapper {
  position: relative;
}

.interview-wrapper.white .title-wrapper .title-container {
  width: calc(50% - 40px);
  max-width: 1140px;
  margin: 0 0 80px;
  padding: 40px 70px 0;
  position: relative;
  top: 0;
  left: 0;
}

.interview-wrapper.white .title-wrapper .title-container .num {
  display: block;
  transform: rotate(90deg);
  position: absolute;
  top: 56px;
  left: 50px;
  font-size: 2.1rem;
  font-weight: 700;
}

.interview-wrapper.white .title-wrapper .title-container .name-contianer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 60px;
}

.interview-wrapper.white .title-wrapper .title-container .name-contianer .box {
  position: relative;
}

.interview-wrapper.white .title-wrapper .title-container .name-contianer .box:nth-of-type(2) {
  padding-left: 50px;
}

.interview-wrapper.white .title-wrapper .title-container .name-contianer .box:nth-of-type(2):before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  left: 35px;
  bottom: 0;
  margin: auto 0;
  background: no-repeat center center / contain url(../img/svg/batsu.svg);
}

.interview-wrapper.white .title-wrapper .title-container .name-contianer .role {
  display: block;
  padding-left: 50px;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}

.interview-wrapper.white .title-wrapper .title-container .name-contianer .name {
  display: block;
  padding-left: 50px;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0;
}

.interview-wrapper.white .title-wrapper .main-image {
  width: calc(50% - 80px);
  height: 350px;
  top: 0;
}

.main-image.voice1 {
  background-image: url(../img/ar-no1/main-image-voice1.jpg);
}

.main-image.voice2 {
  background-image: url(../img/ar-no1/main-image-voice2.jpg);
}

.interview-wrapper .wide-col2 h5 {
  color: #969696;
  padding-left: 35px;
  position: relative;
  margin-bottom: 1.5em;
}

.interview-wrapper .wide-col2 h5:before {
  content: '';
  width: 25px;
  height: 1px;
  background-color: #969696;
  position: absolute;
  top: 0.65em;
  left: 0;
}

.interview-wrapper.white .wide-col2 p {
  margin-bottom: 1em;
}

.interview-wrapper .wide-col2 p.last {
  margin-bottom: 3em;
}

.interview-wrapper.white .wide-col2 .col2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.interview-wrapper.white .wide-col2 .col2 img,
.interview-wrapper.white .wide-col2 .col2 .profile-box {
  width: calc(50% - 20px);
  margin-bottom: 40px;
}

.interview-wrapper.white .wide-col2 .col2 .profile-box {
  padding-top: 20px;
}

.interview-wrapper.white .wide-col2 .col2 .profile-box p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}


/*active report no2*/
.start-index.wide-col2 .left-col p {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.idea-wrapper {
  padding-top: 80px;
  margin-bottom: 80px;
}

.idea-wrapper .full-col h4 {
  margin-bottom: 10px;
}

.idea-wrapper .idea-list {
  background-color: #ebeaea;
  padding: 40px 0 60px;
  margin-top: 20px;
  margin-bottom: 80px;
}

.idea-wrapper .wide-col2 {
  margin-bottom: 0;
}

.idea-wrapper .idea-list .left-col,
.idea-wrapper .idea-list .right-col {
  display: flex; 
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.idea-wrapper .idea-list .left-col.last,
.idea-wrapper .idea-list .right-col.last {
  margin-bottom: 0;
}

.idea-wrapper .idea-list .image-box,
.idea-wrapper .idea-list .info-box {
  text-align: center;
  width: calc(50% - 10px);
}

.idea-wrapper .idea-list .right-col {
  flex-direction: row-reverse;
}

.idea-wrapper .idea-list .image-box img {
  mix-blend-mode: multiply;
}

.idea-wrapper .idea-list .image-box p {
  font-size: 1.2rem;
  font-weight: 700;
}

.idea-wrapper .idea-list .info-box .num {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 700;
}

.idea-wrapper .idea-list .info-box h4 {
  margin-bottom: 10px;
}

.idea-wrapper .idea-list .info-box p {
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: justify;
  margin-bottom: 30px;
}

.idea-wrapper .idea-list .info-box img {
  width: 60%;
}

.idea-wrapper .idea-pict-wrapper.full-col {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list {
  width: calc(65% - 100px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .box {
  width: calc((100% / 3) - 50px);
  position: relative;
}

.idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .box:nth-of-type(2):before,
.idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .box:nth-of-type(3):before {
  content: '';
  width: 30px;
  height: 30px;
  background: no-repeat center center / contain url(../img/svg/plus.svg);
  position: absolute;
  top: 0;
  left: -53px;
  bottom: 30px;
  margin: auto 0;
}

.idea-wrapper .idea-pict-wrapper.full-col img {
  width: 35%;
}

.idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list img {
  width: 100%;
}

.idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .box p {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

.vol2 .main-image.shioura {
  background-image: url(../img/ar-no2/main-image-shioura.jpg);
}

.interview-wrapper .full-col.top-margin {
  margin-top: 40px;
}

.vol2 #interview2 .wide-col2 .right-col .profile-container {
  margin-top: 55px;
}

/*WORKSHOP*/
.workshop-intro-wrrapper {
  padding: 80px 0 0;
}

.workshop-intro-wrrapper .wide-col2 {
  margin-bottom: 40px;
}

.workshop-intro-wrrapper .intro-container {
  margin: 40px 0 0;
  padding: 40px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.full-col.session-container {
  display: flex;
  justify-content: space-between;
}

.full-col .main-col {
  width: calc(100% - 390px);
}

.full-col .main-col h3 {
  margin-top: 60px;
}

.full-col .side-col {
  width: 340px;
}

.full-col .side-col .profile-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.full-col .side-col .profile-box img {
  width: 130px;
}

.full-col .side-col .profile-box .info-box {
  margin-left: 20px;
}

.full-col .side-col .profile-box .info-box .role {
  font-size: 1rem;
  line-height: 1;
}

.full-col .side-col .profile-box .info-box h5 {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

.full-col .side-col .profile-box .info-box p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.session-index .full-col {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.session-index .session-link-box {
  width: calc((100% / 3) - 80px);
  margin: 0 40px 20px;
  border-bottom: 1px solid #000;
}

.session-index .session-link-box h4 {
  color: #000;
  font-size: 8rem;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.session-index .session-link-box h4 span {
  display: inline-block;
  font-size: 0.2em;
  margin-right: 10px;
}

.session-index .session-link-box p {
  color: #000;
  font-size: 2.1rem;
  line-height: 1.25;
  font-weight: 700;
  position: relative;
}

.session-index .session-link-box p:before {
  content: '';
  width: 25px;
  height: 25px;
  background: no-repeat center center / contain url(../img/svg/session-arrow.svg);
  position: absolute;
  top: 5px;
  right: 0;
}

.workshop-session-wrapper .wide-col2 .full-col h2 span {
  font-size: 0.6em;
  padding-left: 90px;
  display: inline-block;
  position: relative;
  transform: translateY(-5px);
}

.workshop-session-wrapper .wide-col2 .full-col h2 span:before {
  content: '';
  width: 70px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto 0;
}

.workshop-session-wrapper {
  padding: 80px 0 0;
}

.workshop-session-wrapper .wide-col2 {
  margin-bottom: 40px;
}

.workshop-session-wrapper .session-container {
  margin-top: 40px;
  padding: 0 0 40px;
  border-bottom: 1px solid #000;
}

.workshop-session-wrapper h2 {
  line-height: 1.5;
}

.workshop-session-wrapper .session-container .main-col {
  width: calc(100% - 350px);
}

.workshop-session-wrapper .session-container .side-col {
  width: 260px;
}
 
.workshop-session-wrapper .session-container .side-col h4 {
  color: #000;
  font-size: 8rem;
  line-height: 1;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.workshop-session-wrapper .session-container .side-col h4 span {
  display: inline-block;
  font-size: 0.3em;
  margin-right: 10px;
}

.workshop-session-wrapper .session-container .side-col h3 {
  margin-bottom: 80px;
}

.workshop-session-wrapper .session-container .side-col h5 {
  margin-top: 30px;
}

.workshop-session-wrapper .session-container .side-col p {
  font-size: 1.2rem;
  letter-spacing: 0;
}

.workshop-session-wrapper .session-container .min-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom:3em;
}

.workshop-session-wrapper .session-container .image-col2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.workshop-session-wrapper .session-container .image-col2 img {
  width: calc(50% - 10px);
}

.workshop-last-wrrapper {
  margin-top: 40px;
  padding: 80px 0 40px;
  position: relative;
}

.workshop-last-wrrapper .session-container .main-col h2{
  margin-bottom: 60px;
}

.workshop-last-wrrapper .float-side {
  width: calc(((100% - 1280px) / 2) + 400px);
  min-width: 400px;
  position: absolute;
  top: 180px;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
}

.workshop-last-wrrapper .float-side .vertical {
  width: 30%;
  min-width: 150px;
  margin-bottom: 5em;
}


@media screen and (max-width: 1000px) {
  .pc-hide {
    display: block;
  }

  h2 {
    font-size: 7.2rem;
  }

  .caption {
    margin-top: 0;
  }

  .top {
    height: auto;
  }

  .top .top-logo {
    position: relative;
    right: 0;
    bottom: auto;
    margin: 0 auto;
    padding: 20% 0 10%;
  }

  .top .fv-menu {
    width: calc(100% - 70px);
    position: relative;
    bottom: auto;
    padding: 0 0 10%;
  }

  .top-about-container {
    padding: 80px 0;
  }

  .top-about-container .info-container {
    position: relative;
    z-index: 10;
    opacity: 0;
  }

  .top-about-container.is-show .info-container {
    opacity: 1;
    transition: opacity .4s cubic-bezier(0, 0.315, 0.155, 0.995) .5s;
  }

  .top-about-container .info-container h3,
  .top-about-container .info-container p {
    width: 100%;
  }

  .top-active-report-container .box .info-container p {
    width: 100%;
  }

  .wide-col2 {
    margin-bottom: 0;
  }

  .wide-col2 .left-col, 
  .wide-col2 .right-col,
  .wide-col2 .full-col {
    width: calc(100% - 100px);
    padding: 0 40px 0 60px;
    margin-bottom: 40px;
  }

  .start-index.wide-col2 {
    flex-direction: column-reverse;
  }

  .start-index.wide-col2 .left-col {
    width: calc(100% - 100px);
    padding: 0 40px 0 60px;
  }

  .start-index.wide-col2 .left-col .index-list {
    display: inline-block;
  }

  .start-index.wide-col2 .right-col {
    width: 100%;
    height: 70vh;
    margin-bottom: 40px;
  }

  .vol4 .wide-col2 .right-col.hero-cover{
    background-image: url(../img/top/ar-cover4_sp.jpg);
  }

  .wide-col2 .right-col.hero-cover::before {
    width: calc(191vw / 10);
    min-width: 100px;
    max-width: 100%;
    top: 45px;
    right: 40px;
  }
  
  .wide-col2 .right-col.hero-cover::after {
    width: calc(312vw / 10);
    min-width: 150px;
    max-width: 100%;
    bottom: 30px;
    left: 47px;
  }

  .interview-wrapper {
    margin-top: 40px;
  }

  .interview-wrapper .wide-col2 .left-col, 
  .interview-wrapper .wide-col2 .right-col,
  .interview-wrapper .wide-col2 .full-col {
    margin-bottom: 0;
  }

  .interview-wrapper.yellow .title-wrapper .title-container {
    width: calc(100% - 120px);
    padding: 40px 60px 10px;
  }

  .interview-wrapper.yellow .main-image {
    width: calc(100% - 60px);
    position: relative;
  }

  .interview-wrapper.yellow .main-image {
    bottom: -20px;
    left: 60px;
  }

  .interview-wrapper .wide-col2 .right-col.profile-wrapper {
    order: 3;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .interview-wrapper .wide-col2 .right-col .profile-container {
    margin-top: 0;
  }

  .active-report-page img {
    margin-bottom: 0;
  }

  .interview-wrapper .wide-col2 .image-list img {
    margin-bottom: 20px;
  }

  .issue-wrapper {
    margin-top: 0;
  }

  .development-wrapper {
    margin-top: 0;
  }

  .development-wrapper .full-col p {
    margin-bottom: 0;
  }

  .development-wrapper .full-col img {
    margin-bottom: 20px;
  }

  .development-wrapper .wide-col2 .right-col img {
    display: block;
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .voice-in-saga {
    margin-top: 0;
  }

  .interview-wrapper.white {
    margin-top: 0;
  }

  .interview-wrapper.white .title-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .interview-wrapper.white .title-wrapper .title-container {
    width: calc(100% - 40px);
    margin-bottom: 20px;
  }

  .interview-wrapper.white .title-wrapper .title-container .name-contianer {
    margin-bottom: 30px;
  }

  .interview-wrapper.white .title-wrapper .main-image {
    width: 100%;
    position: relative;
  }

  .interview-wrapper .full-col.top-margin {
    margin-top: 0;
  }

  .interview-wrapper .wide-col2 p.last {
    margin-bottom: 2em;
  }

  .idea-wrapper .full-col,
  .idea-wrapper .full-col h2 {
    margin-bottom: 0;
  }

  .idea-wrapper .idea-list {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .idea-wrapper .idea-list .info-box {
    text-align: left;
  }

  .idea-wrapper .idea-list .info-box .num,
  .idea-wrapper .idea-list .info-box h4 {
    display: inline-block;
  }

  .idea-wrapper .idea-list .info-box .num {
    transform: translateY(0.12em);
    margin-right: 5px;
  }

  .idea-wrapper .idea-list .info-box img {
    width: 40%;
  }

  .idea-case-wrapper .left-col,
  .idea-case-wrapper .right-col {
    margin-bottom: 20px;
  }

  .idea-wrapper .idea-pict-wrapper.full-col {
    margin-top: 0;
    flex-wrap: wrap;
  }

  .idea-wrapper .idea-pict-wrapper.full-col img {
    width: 50%;
    display: block;
    margin: 0 auto 40px;
  }

  .idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list {
    width: 100%;
    order: 3;
  }

  .workshop-intro-wrrapper {
    padding-top: 40px;
  }

  .workshop-intro-wrrapper .full-col {
    margin-bottom: 0;
  }

  .wide-col2 .session-container {
    width: calc(100% - 100px);
    padding: 0px 0 40px;
    margin-left: 20px;
  }

  .workshop-intro-wrrapper .wide-col2 .session-container {
    padding-top: 40px;
  }

  .wide-col2 .session-container .main-col {
    width: calc(100% - 250px);
  }
  
  .wide-col2 .session-container .side-col {
    width: 220px;
  }

  .full-col .side-col .profile-box {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .full-col .side-col .profile-box .info-box {
    margin-left: 0;
    margin-top: 5px;
  }

  .full-col .side-col .profile-box img {
    width: 100%;
    margin-bottom: 1em;
  }

  .full-col .main-col h3 {
    margin-top: 30px;
  }

  .session-index .session-link-box {
    width: calc((100% / 2) - 80px);
  }

  .workshop-session-wrapper {
    padding-top: 40px;
  }

  .workshop-session-wrapper .wide-col2 .full-col {
    margin-bottom: 0;
  }

  .workshop-session-wrapper h2 br {
    display: none;
  }

  .workshop-session-wrapper .session-container .side-col h3 {
    margin-bottom: 30px;
  }

  .workshop-session-wrapper .session-container .side-col h3 br {
    display: none;
  }

  .workshop-session-wrapper .session-container .side-col img {
    margin-bottom: 1em;
  }

  .workshop-last-wrrapper {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .workshop-last-wrrapper .session-container {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .workshop-last-wrrapper .float-side {
    min-width: 250px;
  }

  .workshop-last-wrrapper .session-container .main-col h2 {
    margin-bottom: 30px;
  }

  .vol2 #interview2 .title-container {
    padding-bottom: 40px;
  }

  .vol2 #interview2 .wide-col2 .right-col .profile-container {
    margin-top: 0;
  }
}

@media screen and (max-width: 834px) {
  .logo-list {
    flex-wrap: wrap;
    padding: 0 40px 0 60px;
    margin-bottom: 20px;
  }

  .logo-list img {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .pc-hide {
    display: block;
  }

  .caption {
    width: calc(100% - 80px);
    flex-wrap: wrap;
  }

  .caption img {
    margin: 20px 0 20px;
  }

  .caption p {
    font-size: 1rem;
  }

  .section {
    margin-bottom: 30px;
  }

  h2 {
    font-size: 5.2rem;
  }

  h3 {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }

  h3 br {
    display: none;
  }

  h4 {
    margin-bottom: 10px;
  }

  .menu {
  	overflow-y: scroll;
  }

  .menu .menu-container {
  	height: auto;
		flex-direction: column-reverse;
    justify-content: flex-end;
	}

  .menu .logo,
  .menu .link-list {
    width: calc(100% - 80px);
    margin: 0 auto;
  }

  .menu .logo {
  	padding-bottom: 120px;
  }

  .menu .logo img {
    width: 170px;
    margin: 0 auto;
    display: block;
  }

  .menu .link-list {
    margin: 50px 0 50px;
  }

  .menu .link-list a {
    font-size: 3.2rem;
    margin-top: 15px;
    margin-bottom: 0;
  }

  .menu .link-list a.right-arrow {
    padding-right: 22px;
  }

  .menu .link-list a.right-arrow:after {
    width: 14px;
    height: 14px;
    top: 13px;
  }

  .menu .logo a {
    margin-top: 30px;
  }

  .top {
    margin-bottom: 30px;
  }

  .top .powered-credit {
    top: 19px;
    left: 25px;
  }

  .top .top-logo {
    width: 70%;
    padding: 30% 0 10%;
  }

  .top .fv-menu {
    width: calc(100% - 30px);
    left: 30px;
    padding-bottom: 15%; 
  }

  .top .fv-menu a {
    font-size: 4.2rem;
    margin-top: 20px;
  }

  .start-index .index-list a {
    font-size: 1.5rem;
  }

  .wide-col2 .right-col.hero-cover::before {
    top: 55px;
    right: 20px;
  }
  
  .wide-col2 .right-col.hero-cover::after {
    bottom: 20px;
    left: 36px;
  }

  .front-page h2 {
    width: calc(100% - 40px);
    margin-bottom: 10px;
  }

  .top-about-container {
    padding: 40px 0;
  }

  .top-about-container:before {
    width: 115vw;
    height: 100%;
    background-size: contain;
    left: -30vw;
  }

  .top-about-container.is-show .info-container {
    width: calc(100% - 40px);
  }

  .top-about-container .info-container h3 {
    font-size: 3.2rem;
    line-height: 1.25;
  }

  .top-about-container .info-container p {
    font-size: 1.4rem;
  }

  .top-active-report-container .box {
    padding: 50px 0;
  }

  .top-active-report-container .box .info-container {
    width: calc(100% - 90px);
    margin: 0 0 0 60px;
  }

  .top-active-report-container .box .info-container .num-item {
    top: 29px;
    left: -75px;
    font-size: 2.8rem;
  }

  .top-active-report-container .box .info-container h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .top-active-report-container .box .info-container p {
    text-align: justify;
  }

  .top-active-report-container .box .info-container p br {
    display: none;
  }

  .sq-btn {
    padding: 0 40px;
  }

  .ad-pa-slide {
  	margin-top: 10px;
  }

  .ad-pa-slide .swiper-slide {
    width: calc(100% - 50px);
  }

  .swiper-button-prev {
    left: -45px;
  }

  .swiper-button-next {
    right: -45px;
  }

  footer {
    padding-bottom: 40px;
  }

  .contact-us-wrapper {
    height: 170px;
    margin-bottom: 40px;
  }

  .contact-us-wrapper .section {
    width: calc(100% - 60px);
  }

  .contact-us-wrapper .section h2 {
    font-size: 4.8rem;
    padding-right: 26px;
  }

  .contact-us-wrapper .section h2:after {
    width: 19px;
    height: 19px;
    top: 20px;
  }

  .logo-list {
    padding: 0 20px 0 40px;
  }

  .wide-col2 .left-col,
  .wide-col2 .right-col,
  .wide-col2 .full-col,
  .start-index.wide-col2 .left-col {
    width: calc(100% - 60px);
    padding: 0 20px 0 40px;
    margin-bottom: 20px;
  }

  .side-index {
    width: calc(100% - 40px);
 	height: 100vh;
    transform: translateX(calc(-100% + 20px));
    padding: 0 20px;
  }

  .side-index .index-trg {
    font-size: 1.1rem;
    transition: .3s ease-in-out;
  }

  .side-index .index-trg:before {
    width: 20px;
    height: 12px;
  }

  .side-index.active .index-trg {
    top: 55px;
    right: 1px;
  }

  .side-index .ar-num {
  	margin-top: 50px;
  }

  .side-index h3 {
    font-size: 2.8rem;
  }

  .side-index h3 br {
    display: block;
  }

  .side-index .index-list {
  	padding-bottom: 120px;
  }

  .side-index .index-list .workshop-link-list a {
    font-size: 1.1rem;
  }

  .start-index.wide-col2 .right-col {
    height: 50vh;
    margin-bottom: 30px;
  }

  .start-index h1 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }

  .concept-wrapper {
    padding-top: 40px;
  }

  .concept-wrapper .right-col img {
    margin-bottom: 20px;
  }

  .interview-wrapper.yellow .title-wrapper:before {
    width: 100%;
  }

  .interview-wrapper.yellow .title-wrapper .title-container {
    width: calc(100% - 60px);
    padding: 40px 20px 0 40px;
  }

  .active-report-page h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .active-report-page h2 br {
    display: none;
  }

  .interview-wrapper.yellow .title-wrapper {
    margin-bottom: 45px;
  }

  .interview-wrapper.yellow .title-wrapper .title-container p {
    width: 100%;
  }

  .interview-wrapper.yellow .main-image {
    width: calc(100% - 40px);
    height: 60vw;
    left: 40px;
  }

  .interview-wrapper .wide-col2 .right-col.profile-wrapper {
    margin-bottom: 0;
  }

  .interview-wrapper .wide-col2 .right-col .profile-container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
  }

  .interview-wrapper .wide-col2 .right-col .profile-container .info-box {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .interview-wrapper .wide-col2 .right-col .profile-container .info-box h5 {
    margin-bottom: 20px;
    line-height: 0.5;
  }

  .interview-wrapper .wide-col2 .right-col .profile-container .info-box p {
    text-align: justify;
  }

  .interview-wrapper .wide-col2 .right-col .profile-container img {
    width: 150px;
  }

  .interview-wrapper .wide-col2 h5 {
    margin-bottom: 0.5em;
  }

  .interview-wrapper .wide-col2 .image-list img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .issue-wrapper .left-col h2 {
    font-size: 3.6rem;
  }

  .development-wrapper {
    margin-top: 40px;
    padding-top: 40px;
  }

  .development-wrapper .full-col h2 {
    font-size: 5rem;
  }

  .development-wrapper .full-col h4 {
    margin-bottom: 20px;
  }

  .development-wrapper .full-col p {
    font-size: 2.4rem;
    text-align: left;
  }

  .development-wrapper .full-col p br {
    display: none;
  } 

  .voice-in-saga .main-title {
    width: calc(100% - 60px);
    padding: 0 20px 0 40px;
    margin-bottom: 40px;
  }

  .voice-in-saga .main-title h2 {
    font-size: 4.8rem;
    letter-spacing: 0;
  }

  .voice-in-saga .main-title p {
    margin-left: 0;
  }

  .voice-in-saga .main-title p br {
    display: none;
  }

  .interview-wrapper.white {
    margin-top: 40px;
  }

  .interview-wrapper.white .title-wrapper .title-container {
    width: calc(100% - 60px);
    padding: 0 20px 0 40px;
    margin-bottom: 0;
  }

  .interview-wrapper.white .title-wrapper .title-container .name-contianer {
    flex-wrap: wrap;
  }

  .interview-wrapper.white .title-wrapper .title-container .name-contianer .box {
    width: 100%;
  }

  .interview-wrapper.white .title-wrapper .title-container .name-contianer .box:nth-of-type(2) {
    padding-left: 0;
    padding-top: 70px;
  }

  .interview-wrapper.white .title-wrapper .title-container .name-contianer .box:nth-of-type(2):before {
    top: -90px;
    left: 40px;
  }

  .interview-wrapper.white .title-wrapper .title-container .num {
    top: 18px;
    left: 15px;
  }

  .interview-wrapper.white .title-wrapper .title-container .name-contianer .role,
  .interview-wrapper.white .title-wrapper .title-container .name-contianer .name {
    padding-left: 40px;
  }

  .interview-wrapper.white .title-wrapper .title-container .name-contianer .role {
    font-size: 1.3rem;
  }

  .interview-wrapper.white .title-wrapper .main-image {
    height: 250px;
  }

  .interview-wrapper.white .wide-col2 .col2 {
    flex-wrap: wrap;
  }

  .interview-wrapper.white .wide-col2 .col2 img,
  .interview-wrapper.white .wide-col2 .col2 .profile-box {
    width: 100%;
    margin-bottom: 10px;
  }

  .interview-wrapper.white .wide-col2 .col2 .profile-box {
    order: 3;
  }

  .interview-wrapper.white .wide-col2 .col2 .profile-box h4 {
    margin-bottom: 0;
  }

  .start-index.wide-col2 .left-col p br {
    display: none;
  }

  .start-index.wide-col2 .left-col p {
    line-height: 1.75;
    text-align: justify;
  }

  .idea-wrapper {
    padding-top: 40px;
    margin-bottom: 40px;
  }

  .idea-wrapper .full-col h4 {
    font-size: 1.6rem;
  }

  .idea-wrapper .full-col {
    margin-bottom: 0;
  }

  .idea-wrapper .idea-list {
    padding: 20px 0;
  }

  .idea-wrapper .idea-list .left-col,
  .idea-wrapper .idea-list .right-col {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }

  .idea-wrapper .idea-list .image-box {
    width: 70%;
  }

  .idea-wrapper .idea-list .info-box {
    width: 100%;
  }

  .idea-wrapper .idea-list .info-box {
    position: relative;
  }

  .idea-wrapper .idea-list .info-box img {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .idea-wrapper .idea-list .info-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .idea-wrapper .idea-list .info-box p {
    margin-bottom: 15px;
  }

  .idea-case-wrapper .right-col {
    margin-bottom: 0;
  }

  .idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .right-col {
    margin-bottom: 0;
  }

  .idea-wrapper .idea-pict-wrapper.full-col img {
    width: 100%;
    margin-bottom: 20px;
  }

  .idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .box {
    width: 100px;
    margin: 0 10px;
  }

  .idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .box:nth-of-type(2):before,
  .idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .box:nth-of-type(3):before {
    display: none;
  }

  .idea-wrapper .idea-pict-wrapper.full-col .idea-pict-list .box img {
    margin-bottom: 10px;
  }

  .wide-col2 .session-container {
    width: calc(100% - 60px);
    padding: 0 0 40px;
    flex-wrap: wrap;
    margin-top: 0;
  }

  .wide-col2 .session-container .main-col,
  .wide-col2 .session-container .side-col {
    width: 100%;
  }
  .workshop-intro-wrrapper .wide-col2 {
    margin-bottom: 0;
  }

  .workshop-intro-wrrapper .wide-col2 .session-container {
    flex-direction: column-reverse;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .workshop-intro-wrrapper .wide-col2 .session-container .side-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
  }

  .workshop-intro-wrrapper .wide-col2 .session-container .side-col .profile-box {
    width: calc(50% - 10px);
    align-content: flex-start;
  }

  .workshop-intro-wrrapper .wide-col2 .session-container .side-col h4 {
    margin-bottom: 15px;
  }

  .session-index .session-link-box {
    width: calc(50% - 20px);
    margin: 0 10px;
  }

  .session-index .session-link-box h4 {
    font-size: 5rem;
  }

  .session-index .session-link-box h4 span {
    margin-right: 5px;
  }

  .session-index .session-link-box p {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .session-index .session-link-box p:before {
    width: 20px;
    height: 20px;
    top: -48px;
  }

  .workshop-session-wrapper .wide-col2 {
    margin-bottom: 20px;
  }

  .workshop-session-wrapper .session-container .side-col {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .workshop-session-wrapper .session-container .side-col h4 {
    margin-bottom: 0px;
  }

  .workshop-session-wrapper .session-container .side-col h4 span {
    margin-right: 5px;
  }

  .workshop-session-wrapper .session-container .side-col h3 {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .workshop-session-wrapper .session-container .side-col h5 {
    width: calc(100% - 30px);
    font-size: 1.6rem;
    margin: 15px auto 5px;
  }

  .workshop-session-wrapper .session-container .side-col p {
    width: calc(100% - 30px);
    margin: 0 auto 1em;
  }

  .workshop-session-wrapper .session-container .side-col img {
    display: block;
    width: calc(100% - 30px);
    margin: 0 auto 1em;
  }

  .workshop-session-wrapper .session-container .min-text {
    margin-bottom: 1em;
  }

  .workshop-last-wrrapper {
    margin-top: 0;
  }

  .workshop-last-wrrapper .float-side {
    position: relative;
    width: calc(100% - 20px);
    top: 0;
    left: 20px;
  }

  .workshop-last-wrrapper .float-side .vertical {
    min-width: 100px;
  }

  .interview-wrapper .wide-col2 .right-col.profile-wrapper {
    margin-bottom: 0;
    margin-top: 30px;
  }

  .vol2 #interview2 {
    margin-bottom: 40px;
  }

  .vol2 .interview-wrapper .wide-col2 .right-col.profile-wrapper {
    margin-top: 0;
  }

}