@charset "UTF-8";
/*default*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

a.txtlinks {
  text-decoration: underline;
}

.cross_title {
  text-align: center;
  margin: 5rem 0;
}
@media only screen and (max-width: 768px) {
  .cross_title {
    margin: 3rem 0;
  }
}
.cross_title h1 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .cross_title h1 {
    font-size: 2rem;
  }
}

.rookie_visual {
  position: relative;
}
.rookie_visual .bgb {
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 20rem);
  top: 30rem;
  left: 0;
  content: "";
  z-index: 0;
  background: #FEE200;
}
@media only screen and (max-width: 768px) {
  .rookie_visual .bgb {
    display: none;
  }
}
.rookie_visual .image {
  width: 1000px;
  margin: auto;
  position: relative;
  z-index: 4;
  margin: 0 auto 10rem auto;
}
@media only screen and (max-width: 992px) {
  .rookie_visual .image {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .rookie_visual .image {
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .rookie_visual .cpwrap {
    padding: 8vw 5vw 5vw 5vw;
    background: #FEE200;
  }
}
.rookie_visual .copy {
  max-width: 1100px;
  margin: auto;
  z-index: 5;
  position: relative;
  padding: 2rem 0;
  margin: 0 auto 15rem auto;
}
@media only screen and (max-width: 768px) {
  .rookie_visual .copy {
    width: 100%;
    margin: 0 0 10rem 0;
    padding: 8vw;
  }
}
.rookie_visual .copy .in {
  position: relative;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .rookie_visual .copy .in {
    padding: 5vw;
  }
}
.rookie_visual .copy .in::before, .rookie_visual .copy .in::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
}
.rookie_visual .copy .in::before {
  border-right: solid 1px #000000;
  border-top: solid 1px #000000;
  top: 0;
  right: 0;
}
.rookie_visual .copy .in::after {
  border-left: solid 1px #000000;
  border-bottom: solid 1px #000000;
  bottom: 0;
  left: 0;
}
.rookie_visual .copy h2 {
  font-weight: 500;
  font-size: 2.6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .rookie_visual .copy h2 {
    font-size: 1.6rem;
    text-align: left;
  }
  .rookie_visual .copy h2 br {
    display: none;
  }
}
.rookie_visual .copy::before, .rookie_visual .copy::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
}
.rookie_visual .copy::before {
  border-left: solid 2px #000000;
  border-top: solid 2px #000000;
  top: 0;
  left: 0;
}
.rookie_visual .copy::after {
  border-right: solid 2px #000000;
  border-bottom: solid 2px #000000;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .prwra {
    padding: 0 8vw 1rem 8vw;
    background: #FEE200;
  }
}

.prof_flex {
  display: flex;
  z-index: 5;
  position: relative;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 10rem auto;
}
@media only screen and (max-width: 768px) {
  .prof_flex {
    display: block;
    margin: 0 0 3rem 0;
  }
}
.prof_flex .box {
  width: 30%;
  background: #ffffff;
  padding: 3rem;
}
@media only screen and (max-width: 768px) {
  .prof_flex .box {
    width: 100%;
    padding: 2rem;
    margin: 0 0 7rem 0;
  }
}
.prof_flex .box .imagee {
  width: 70%;
  transform: translateY(-50%);
  margin: auto;
  border-radius: 50%;
  margin-bottom: -20%;
}
@media only screen and (max-width: 768px) {
  .prof_flex .box .imagee {
    width: 120px;
    transform: none;
    margin-bottom: 1rem;
  }
}
.prof_flex .box .imagee.c01 {
  border: 10px solid #27659B;
}
.prof_flex .box .imagee.c02 {
  border: 10px solid #338666;
}
.prof_flex .box .imagee.c03 {
  border: 10px solid #A88024;
}
.prof_flex .box .name {
  text-align: center;
  margin: 0 0 2rem 0;
}
.prof_flex .box .name p.jp {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .prof_flex .box .name p.jp {
    font-size: 2rem;
  }
}
.prof_flex .box .profile {
  text-align: center;
  position: relative;
}
.prof_flex .box .profile:after {
  content: "";
  width: 3rem;
  background: #333;
  height: 1px;
  display: block;
  margin: 2rem auto;
}
.prof_flex .box .txts {
  font-size: 1.4rem;
}

section.under_nav {
  padding: 5rem 0;
}
@media only screen and (max-width: 768px) {
  section.under_nav {
    padding: 3rem 0;
  }
}
section.under_nav .inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 8vw;
}
section.under_nav ul {
  display: flex;
  justify-content: space-between;
}
section.under_nav ul li {
  width: 30%;
}
section.under_nav ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #555;
  color: #555;
  transition: all 0.3s ease;
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  section.under_nav ul li a {
    font-size: 1.6rem;
  }
}
section.under_nav ul li a:after {
  position: absolute;
  font-family: "Flaticon";
  top: 45%;
  right: 0;
  line-height: 1;
  content: "\f104";
  font-size: 20px;
  font-size: 2rem;
  z-index: 999;
  color: #555;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}
section.under_nav ul li a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}
section.under_nav ul li a:hover:after {
  color: #000;
}

section.eyemain .maintitle {
  text-align: center;
  font-size: 7rem;
  color: #000;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  section.eyemain .maintitle {
    font-size: 3.6rem;
    margin: 0 0 3rem 0;
  }
}
section.eyemain .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 8vw;
}
section.eyemain .eye_flex {
  display: flex;
  justify-content: space-between;
  padding: 0 0 3rem 0;
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex {
    display: block;
  }
}
section.eyemain .eye_flex.under {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 6rem 0 3rem 0;
  margin: 0 0 6rem 0;
  display: block;
}
section.eyemain .eye_flex.under .box {
  width: 60%;
  margin: auto;
  padding: 0 !important;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex.under .box {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex.under {
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
}
section.eyemain .eye_flex.under .box:first-child {
  border-right: none;
  padding: 0 5rem 0 0;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex.under .box:first-child {
    padding: 0;
  }
}
section.eyemain .eye_flex .box {
  width: 50%;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex .box {
    width: 100%;
    padding: 0;
  }
}
section.eyemain .eye_flex .box:first-child {
  border-right: 1px solid #000;
  padding: 0 5rem 0 0;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex .box:first-child {
    padding: 0;
    border-right: 0;
  }
}
section.eyemain .eye_flex .box .title {
  display: flex;
  align-items: baseline;
  margin: 0 0 2rem 0;
  justify-content: space-between;
  color: #000;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex .box .title {
    margin: 0 0 1rem 0;
    display: block;
    text-align: center;
  }
}
section.eyemain .eye_flex .box .title p.jp {
  font-weight: bold;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex .box .title p.jp {
    font-size: 2rem;
  }
}
section.eyemain .eye_flex .box .title p.jp sup {
  font-size: 75%;
}
section.eyemain .eye_flex .box .title p.name {
  font-weight: 500;
}
section.eyemain .eye_flex .box .photo {
  background-size: cover;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex .box .photo {
    margin: 0 0 2rem 0;
  }
}
section.eyemain .eye_flex .box .cross dl {
  display: flex;
  justify-content: space-between;
  margin: 0 0 2rem 0;
}
section.eyemain .eye_flex .box .cross dl.single {
  align-items: center;
}
section.eyemain .eye_flex .box .cross dl.single dd {
  margin-top: -1em;
}
section.eyemain .eye_flex .box .cross dl dt {
  width: 3em;
}
section.eyemain .eye_flex .box .cross dl dt p {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
section.eyemain .eye_flex .box .cross dl dd {
  flex: 1;
  padding: 0 0 0 3rem;
}
@media only screen and (max-width: 768px) {
  section.eyemain .eye_flex .box .cross dl dd {
    padding: 0 0 0 2rem;
  }
}

section.eyemain2 .maintitle {
  text-align: center;
  color: #000;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  section.eyemain2 .maintitle {
    font-size: 3.6rem;
    margin: 0 0 3rem 0;
  }
}
section.eyemain2 .maintitle .num {
  font-size: 2rem;
  line-height: 1;
}
section.eyemain2 .maintitle .tit {
  font-size: 7rem;
  line-height: 1.2;
}
section.eyemain2 .maintitle .jp {
  font-size: 1.6rem;
  line-height: 1;
}
section.eyemain2 .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 8vw;
}
section.eyemain2 .title {
  display: flex;
  align-items: center;
  margin: 0 0 2rem 0;
  color: #000;
}
@media only screen and (max-width: 768px) {
  section.eyemain2 .title {
    margin: 0 0 1rem 0;
  }
}
section.eyemain2 .title p.jp {
  font-weight: bold;
  font-size: 2.4rem;
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  section.eyemain2 .title p.jp {
    font-size: 2rem;
  }
}
section.eyemain2 .title p.jp sup {
  font-size: 75%;
}
section.eyemain2 .title p.name {
  font-weight: 500;
  width: 48px;
}
section.eyemain2 .title p.name img {
  vertical-align: middle;
}
section.eyemain2 .title p.name span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}
section.eyemain2 .eye_flex {
  display: flex;
  justify-content: space-between;
  padding: 0 0 3rem 0;
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  section.eyemain2 .eye_flex {
    display: block;
    border-bottom: 1px solid #000;
  }
}
section.eyemain2 .eye_flex .box {
  width: 50%;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  section.eyemain2 .eye_flex .box {
    width: 100%;
    padding: 0;
  }
}
section.eyemain2 .eye_flex .box:first-child {
  padding: 0 5rem 0 0;
}
@media only screen and (max-width: 768px) {
  section.eyemain2 .eye_flex .box:first-child {
    padding: 0;
    border-right: 0;
  }
}
section.eyemain2 .eye_flex .box .photo {
  background-size: cover;
}
section.eyemain2 .eye_flex .talk {
  width: 50%;
  padding-left: 5rem;
}
@media only screen and (max-width: 768px) {
  section.eyemain2 .eye_flex .talk {
    width: 100%;
    padding: 30px 0 0;
  }
}
section.eyemain2 .eye_flex .talk .cross dl {
  display: flex;
  justify-content: space-between;
  margin: 0 0 2rem 0;
}
section.eyemain2 .eye_flex .talk .cross dl.single {
  align-items: center;
}
section.eyemain2 .eye_flex .talk .cross dl.single dd {
  margin-top: -1em;
}
section.eyemain2 .eye_flex .talk .cross dl dt {
  width: 3em;
}
section.eyemain2 .eye_flex .talk .cross dl dt p {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
section.eyemain2 .eye_flex .talk .cross dl dd {
  flex: 1;
  padding: 0 0 0 3rem;
}
@media only screen and (max-width: 768px) {
  section.eyemain2 .eye_flex .talk .cross dl dd {
    padding: 0 0 0 2rem;
  }
}

.photos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 5rem 0;
}
.photos .box {
  width: 30%;
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  .photos .box {
    width: 48%;
    margin: 0 0 2rem 0;
  }
}
.photos .box .image {
  margin: 0 0 1rem 0;
}
.photos .box p {
  font-size: 1.2rem;
  line-height: 1.6;
}

#work {
  background: #F7F2F2;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  #work {
    padding: 5rem 0 1rem 0;
  }
}
#work p.note {
  font-size: 1.2rem;
}

#people {
  background: #F0F4E9;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  #people {
    padding: 5rem 0 1rem 0;
  }
}

#place {
  background: #E9F0F4;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  #place {
    padding: 5rem 0 1rem 0;
  }
}

.lastphoto {
  width: 900px;
  margin: 5rem auto;
}
@media only screen and (max-width: 768px) {
  .lastphoto {
    width: 100%;
    margin: 3rem auto;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .lastphoto {
    padding: 0 8vw;
  }
}

.shuzai {
  text-align: right;
  font-size: 1.2rem;
}