@charset "UTF-8";
/*default*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.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;
}

.cross_title {
  text-align: center;
  margin: 5rem 0 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;
  }
}

p.shozoku {
  position: relative;
  z-index: 3;
  margin: 0 0 3rem 0;
  font-size: 1.2rem;
  text-align: right;
}

#map {
  position: relative;
  max-width: 1225px;
  margin: 0px auto 0;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  #map {
    padding: 0 5%;
    margin-bottom: 15px;
  }
}
#map ul li {
  position: absolute;
  max-width: 58px;
  width: 5%;
}
#map ul #pin1 {
  top: 57%;
  left: 29.7%;
}
#map ul #pin2 {
  top: 23%;
  left: 73%;
}
#map ul #pin3 {
  top: 19%;
  left: 3.7%;
}
#map ul #pin4 {
  top: 23%;
  left: 34%;
}
#map ul #pin5 {
  top: 38%;
  left: 23.5%;
}
#map ul #pin6 {
  top: 41%;
  left: 29.5%;
}

#data {
  padding: 0 5%;
}

@media only screen and (max-width: 768px) {
  #message {
    margin-bottom: 50px;
  }
}
#message .inner {
  padding: 5%;
  text-align: center;
  position: relative;
  max-width: calc(1200px + 10%);
  margin: auto;
}
@media only screen and (max-width: 768px) {
  #message .inner {
    text-align: left;
  }
}
#message p {
  font-size: 1.5rem;
  font-weight: 400;
}

#voice-wrap {
  background: #F5F5F5;
}
#voice-wrap .voice-head {
  text-align: center;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  #voice-wrap .voice-head {
    padding: 50px 0;
  }
}
#voice-wrap .voice-head h2 {
  font-size: 3.2rem;
}
@media only screen and (max-width: 768px) {
  #voice-wrap .voice-head h2 {
    font-size: 3rem;
  }
}
#voice-wrap .voice-head p {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #voice-wrap .voice-head p {
    font-size: 1.8rem;
  }
}

#tab-container {
  margin: 0 0 5rem 0;
}
#tab-container .ccont {
  padding: 2rem;
}
#tab-container .ccont .inner {
  max-width: 1200px;
  margin: auto;
  padding: 8vw;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner {
    background: #ffffff;
    padding: 5vw;
  }
}
#tab-container .ccont .inner .bgb {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 35rem);
  top: 25rem;
  left: 0;
  content: "";
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .bgb {
    display: none;
  }
}
#tab-container .ccont .inner .visual {
  position: relative;
  z-index: 1;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .visual {
    margin: 0 0 2rem 0;
  }
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .visual img {
    margin: 0 0 1rem 0;
  }
}
#tab-container .ccont .inner .prof {
  position: absolute;
  bottom: 0;
  right: -3vw;
  width: 300px;
  background: #ffffff;
  font-size: 1.4rem;
  padding: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .prof {
    position: static;
    width: 100%;
    font-size: 1.2rem;
    padding: 0;
    text-align: left;
  }
}
#tab-container .ccont .inner .copys {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .copys {
    display: block;
    margin: 0 0 3rem 0;
    border-top: 5px solid #FEE200;
    padding: 2rem 0 0 0;
  }
}
#tab-container .ccont .inner .copys h2 {
  width: 60%;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.72;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .copys h2 {
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 2rem 0;
  }
}
#tab-container .ccont .inner .copys .profile {
  flex: 1;
  border-left: 10px solid #FEE200;
  padding: 0 0 0 2rem;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .copys .profile {
    border-left: none;
    border-top: 5px solid #FEE200;
    padding: 2rem 0 0 0;
  }
}
#tab-container .ccont .inner .copys .profile .name {
  display: flex;
  align-items: baseline;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .copys .profile .name {
    justify-content: center;
    margin: 0 0 1rem 0;
  }
}
#tab-container .ccont .inner .copys .profile .name p.jp {
  font-weight: bold;
  font-size: 2rem;
  margin: 0 1rem 0 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .copys .profile .name p.jp {
    font-size: 1.6rem;
  }
}
#tab-container .ccont .inner .copys .profile .profs {
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .copys .profile .profs {
    font-size: 1.2rem;
  }
}
#tab-container .ccont .inner .copys .profile .profs p {
  margin: 0 0 1em 0;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .copys .profile .profs p {
    text-align: left;
  }
}
#tab-container .ccont .inner .copys .profile .profs p:last-child {
  margin: 0;
}
#tab-container .ccont .inner .report_main {
  position: relative;
  z-index: 3;
  margin: 0 0 10rem 0;
}
#tab-container .ccont .inner .report_main .txt_flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .report_main .txt_flex {
    display: block;
  }
}
#tab-container .ccont .inner .report_main .txt_flex .txt {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .report_main .txt_flex .txt {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
#tab-container .ccont .inner .report_main .txt.wide {
  width: 100%;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .report_main .txt.wide {
    margin: 0 0 3rem 0;
  }
}
#tab-container .ccont .inner .report_main .txt h3 {
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 2rem 0;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .report_main .txt h3 {
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
  }
}
#tab-container .ccont .inner .report_main .txt h3::before {
  border-radius: 50%;
  width: 20px;
  margin: 0 1rem 0 0;
  height: 20px;
  background: #FEE200;
  content: "";
  display: block;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .report_main .txt h3::before {
    width: 16px;
    height: 16px;
  }
}
#tab-container .ccont .inner .report_main .txt p {
  margin: 0 0 1em 0;
  text-align: left;
}
#tab-container .ccont .inner .work_flex {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .work_flex {
    display: block;
    margin: 0 0 3rem 0;
  }
}
#tab-container .ccont .inner .work_flex .box {
  width: 44%;
  position: relative;
  margin: 0 0 7rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .work_flex .box {
    width: 100%;
    margin: 0 0 5rem 0;
  }
}
#tab-container .ccont .inner .work_flex .box .icon {
  width: 74px;
  height: 74px;
  background: #FEE200;
  text-align: center;
  line-height: 74px;
  border-radius: 50%;
  position: absolute;
  top: -32px;
  left: -32px;
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .work_flex .box .icon {
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    line-height: 44px;
    left: 10px;
    top: -22px;
  }
}
#tab-container .ccont .inner .work_flex .box .icon.off {
  background: #F2874E;
}
#tab-container .ccont .inner .work_flex .box .image {
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .work_flex .box .image {
    margin: 0 0 1rem 0;
  }
}
#tab-container .ccont .inner .work_flex .box .txt p {
  text-align: left;
}
#tab-container .ccont .inner .schedule {
  position: relative;
  z-index: 3;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .schedule {
    margin: 0 0 3rem 0;
  }
}
#tab-container .ccont .inner .schedule .in {
  position: relative;
  z-index: 9;
}
#tab-container .ccont .inner .schedule .in .inf {
  position: relative;
  z-index: 3;
  background: #F2F1F0;
  padding: 8vw 10vw;
}
#tab-container .ccont .inner .schedule .in::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 3;
  background: #FEE200;
  transform: rotate(3deg);
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .schedule .in::before {
    transform: rotate(1deg);
  }
}
#tab-container .ccont .inner .schedule .in h4 {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .schedule .in h4 {
    font-size: 1.6rem;
    margin: 0 0 2rem 0;
  }
}
#tab-container .ccont .inner .schedule .in .sche dl {
  display: flex;
  justify-content: space-between;
  padding: 0 0 1rem 0;
  margin: 0 0 1rem 0;
  border-bottom: 1px dotted #ccc;
}
#tab-container .ccont .inner .schedule .in .sche dl:last-child {
  border-bottom: none;
}
#tab-container .ccont .inner .schedule .in .sche dl dt {
  width: 5em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .schedule .in .sche dl dt {
    width: 4em;
  }
}
#tab-container .ccont .inner .schedule .in .sche dl dd {
  flex: 1;
  padding: 0 0 0 3rem;
}
@media only screen and (max-width: 768px) {
  #tab-container .ccont .inner .schedule .in .sche dl dd {
    padding: 0 0 0 1rem;
    font-size: 1.3rem;
  }
}
#tab-container ul.etabs {
  display: flex;
  justify-content: center;
  gap: 1%;
  align-items: center;
  margin: 0 0 5rem 0;
  max-width: 1200px;
  margin: 0 auto 5rem auto;
  padding: 0 8vw;
}
#tab-container ul.etabs.under {
  margin: 5rem auto;
}
@media screen and (max-width: 1024px) {
  #tab-container ul.etabs {
    flex-wrap: wrap;
    margin: 0 0 2rem 0;
  }
}
@media only screen and (max-width: 768px) {
  #tab-container ul.etabs {
    flex-wrap: wrap;
    margin: 0 0 2rem 0;
  }
}
#tab-container ul.etabs li {
  width: 16.666%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  #tab-container ul.etabs li {
    width: 30.333%;
  }
}
@media only screen and (max-width: 768px) {
  #tab-container ul.etabs li {
    width: 48%;
    margin: 0 0 2rem 0;
    letter-spacing: 0;
    font-size: 1.2rem;
  }
}
#tab-container ul.etabs li a.active .cpanel {
  background: #000;
  color: #ffffff;
}
#tab-container ul.etabs li a.active .cpanel .images {
  border: 3px solid #FEE200;
  border-radius: 50%;
}
#tab-container ul.etabs li .cpanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 0.5rem;
  border-radius: 100px;
  line-height: 1;
  background: #ffffff;
  transition: all 0.3s ease;
}
#tab-container ul.etabs li .cpanel:hover {
  background: #eee;
}
@media only screen and (max-width: 768px) {
  #tab-container ul.etabs li .cpanel:hover {
    background: #ffffff;
  }
}
#tab-container ul.etabs li .images {
  width: 30%;
  width: 42px;
  border: 3px solid #fff;
  border-radius: 50%;
}
#tab-container ul.etabs li .txt {
  flex: 1;
  text-align: center;
  font-size: 1.3rem;
}

.ccont {
  background: #F2F1F0;
}