@charset "UTF-8";
/* ==============================================
            変数
============================================== */
/* ==============================================
            共通
============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  color: #398C83;
  background-color: #fff;
}

body {
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  text-align: left;
  letter-spacing: 0.1em;
  background-color: #B2DCD7;
}
body .fade-in {
  opacity: 0;
  transition-duration: 700ms;
  transition-property: opacity, transform;
}
body .fade-in-up {
  transform: translate(0, 50px);
}
body .fade-in-down {
  transform: translate(0, -50px);
}
body .fade-in-left {
  transform: translate(-50px, 0);
}
body .fade-in-right {
  transform: translate(50px, 0);
}
body .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
body a {
  text-decoration: none;
}
body ul {
  list-style: none;
}
body button {
  outline: none;
}
body .sp {
  display: none;
}
@media (max-width: 768px) {
  body .sp {
    display: block;
  }
}
body .pc {
  display: block;
}
@media (max-width: 768px) {
  body .pc {
    display: none;
  }
}
body .tab {
  display: none;
}
@media (max-width: 1025px) {
  body .tab {
    display: block;
  }
}
@media (max-width: 768px) {
  body .tab {
    display: none;
  }
}

/* ==============================================
            ローディング
============================================== */
#loadingWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #B2DCD7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.1s;
  z-index: 9999;
}
#loadingWrap .svg_wrap {
  width: 80%;
  position: relative;
}
#loadingWrap .svg_wrap #svg {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #loadingWrap .svg_wrap #svg {
    width: 50%;
  }
}
#loadingWrap .svg_wrap #svg .cls-1 {
  animation: 3s lineAnim;
  stroke: #00484A;
  fill: #00484A;
}
@keyframes lineAnim {
  0% {
    fill: transparent;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
  }
  80% {
    fill: transparent;
    stroke-dashoffset: 0;
  }
  100% {
    fill: #00484A;
  }
}
#loadingWrap .svg_wrap .bg {
  width: 35%;
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  animation: bgAnim 3s ease-in;
}
@media (max-width: 768px) {
  #loadingWrap .svg_wrap .bg {
    width: 80%;
  }
}
@keyframes bgAnim {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ==============================================
            コンテンツ
============================================== */
#myCanvas {
  width: 36vw;
  height: 11vw;
  position: fixed;
  top: 17vw;
  left: 2vw;
}
@media (max-width: 1025px) {
  #myCanvas {
    display: none;
  }
}
@media (max-width: 768px) {
  #myCanvas {
    display: none;
  }
}

.wrap {
  width: 100%;
  background-color: #B2DCD7;
}

.bg_area .logo_wrap {
  position: fixed;
  width: 35%;
}
.bg_area .logo_wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
.bg_area .logo_wrap a .logo_main {
  width: 100%;
}
.bg_area .nav_wrap {
  position: fixed;
  right: 0;
  top: 14%;
  min-width: 30%;
  width: calc(100% - (464px + 35vw));
}
.bg_area .nav_wrap .nav {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 15%;
}
.bg_area .nav_wrap .nav li {
  height: 2vw;
  width: auto;
  margin-bottom: 6%;
}
.bg_area .nav_wrap .nav li:hover img {
  transform: scale(1.1);
}
.bg_area .nav_wrap .nav_img {
  width: 30%;
  margin: 0 auto;
}
.bg_area .nav_wrap .nav_img .img2 {
  margin: -5% auto;
  animation: kuru 7s infinite;
}
@keyframes kuru {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotateY(360deg);
  }
  20% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

@media (max-width: 1025px) {
  .bg_area .logo_wrap {
    position: fixed;
  }
  .bg_area .logo_wrap .logo_main {
    width: 45vw;
    height: 45vw;
  }
  .bg_area .logo_wrap .logo_ribbon {
    position: absolute;
    width: 100%;
    top: 22%;
    left: 20%;
  }
  .bg_area .nav_wrap {
    position: fixed;
    right: auto;
    left: 0;
    top: auto;
    bottom: 80px;
    width: 50%;
  }
  .bg_area .nav_wrap .nav {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15%;
  }
  .bg_area .nav_wrap .nav li {
    height: 2vw;
    width: auto;
    margin-bottom: 6%;
  }
  .bg_area .nav_wrap .nav li:hover img {
    transform: scale(1.1);
  }
  .bg_area .nav_wrap .nav_img {
    width: 30%;
    margin: 0 auto;
  }
  .bg_area .nav_wrap .nav_img .img2 {
    margin: -5% auto;
    animation: kuru 7s infinite;
  }
  @keyframes kuru {
    0% {
      transform: rotate(0);
    }
    10% {
      transform: rotateY(360deg);
    }
    20% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(0);
    }
  }
}
@media (max-width: 768px) {
  .bg_area {
    display: none;
  }
}
.nav_sp {
  height: 60px;
  background-color: #fff;
  position: relative;
}
.nav_sp .logo {
  display: block;
  max-width: 100px;
  width: 25%;
  position: absolute;
  top: 15px;
  left: 20px;
}
.nav_sp .nav_circle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.nav_sp .nav_circle span {
  display: block;
  width: 36px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nav_sp .nav_circle span:nth-of-type(1) {
  top: 35%;
  transition: 0.4s;
}
.nav_sp .nav_circle span:nth-of-type(3) {
  top: 65%;
  transition: 0.4s;
}
.nav_sp .nav_wrap {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100dvh;
  background-color: #B2DCD7;
}
.nav_sp.active .nav_circle {
  z-index: 10000;
}
.nav_sp.active .nav_circle span:nth-of-type(1), .nav_sp.active .nav_circle span:nth-of-type(3) {
  top: 50%;
  transition: 0.4s;
}
.nav_sp.active .nav_wrap {
  display: block;
  background-color: #B2DCD7;
}
.nav_sp.active .nav_wrap .nav_list {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 15px;
}
.nav_sp.active .nav_wrap .nav_list li {
  margin-bottom: 6vw;
  height: 8vw;
}

.main_area {
  max-width: 464px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0 auto;
  box-shadow: 0 5px 60px #505050;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
  animation: fadein 2s forwards;
  z-index: 999;
}
.main_area::-webkit-scrollbar {
  display: none;
}
.main_area video {
  object-fit: contain;
  width: 100%;
  vertical-align: bottom;
}

@media (max-width: 1025px) {
  .main_area {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .main_area {
    max-width: 768px;
    width: 100%;
    position: initial;
    box-shadow: none;
  }
}
.top_about {
  background: url(../img/aboutbg.png) no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}
.top_about figure {
  width: 70%;
  margin: 0px auto;
}
.top_about p {
  text-align: center;
  color: #fff;
  line-height: 2;
  margin: 0 auto 32px;
  font-size: 14px;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .top_about p {
    font-size: 13px;
    padding: 0 20px;
  }
}
.top_about .bold {
  font-weight: bold;
}
.top_about .bold .lineanimation {
  font-size: 18px;
  position: relative;
  margin-bottom: 14px;
  display: inline-block;
}
.top_about .bold .lineanimation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0%;
  height: 3px;
  background: #ae8056;
  transition: all 1.3s;
}
.top_about .bold .lineanimation.isActive::after {
  width: 100%;
}
.top_about a {
  display: block;
  width: 40%;
  margin: 60px auto 20px;
}
.top_about a:hover {
  transform: scale(1.1);
}

.ttl {
  width: 50%;
  margin: 40px auto 10px;
}

.ttl_down {
  text-align: center;
}

.project_wrap {
  background-color: #DBEAE9;
  padding: 20px 0;
}
.project_wrap .project {
  margin: 40px auto 100px;
}
.project_wrap .project a {
  text-align: center;
  color: #398C83;
}
.project_wrap .project a:hover .project_img .ryutai {
  animation-play-state: paused;
  filter: blur(5px);
}
.project_wrap .project a .project_img {
  position: relative;
  height: 280px;
  margin-bottom: 20px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .project_wrap .project a .project_img {
    height: 60vw;
    transition: 0s;
  }
}
.project_wrap .project a .project_img .ryutai {
  width: 85%;
  overflow: hidden;
  position: absolute;
  left: 0;
  animation: fluidrotate 20s ease 0s infinite;
  transform: scale(1.1);
  transition: 0.4s;
}
@keyframes fluidrotate {
  0% {
    border-radius: 38% 62% 33% 67%/38% 73% 27% 62%;
  }
  12.5% {
    border-radius: 70% 30% 33% 67%/54% 53% 47% 46%;
  }
  25% {
    border-radius: 66% 34% 72% 28%/31% 11% 89% 69%;
  }
  37.5% {
    border-radius: 30% 70% 91% 9%/57% 58% 42% 43%;
  }
  50% {
    border-radius: 52% 48% 72% 28%/43% 58% 42% 57%;
  }
  62.5% {
    border-radius: 66% 34% 37% 63%/43% 85% 15% 57%;
  }
  75% {
    border-radius: 60% 75% 40% 80%/70% 70% 60% 65%;
  }
  87.5% {
    border-radius: 40% 60% 55% 45%/50% 60% 40% 50%;
  }
  100% {
    border-radius: 65% 35% 55% 45%/55% 50% 55% 45%;
  }
}
.project_wrap .project a .project_img .ryutai2 {
  width: 80%;
  left: auto;
  right: 0;
  animation: fluidrotate2 20s ease 0s infinite;
}
@keyframes fluidrotate2 {
  0% {
    border-radius: 50% 40% 70% 30%/60% 40% 50% 50%;
  }
  12.5% {
    border-radius: 65% 80% 45% 55%/40% 60% 50% 70%;
  }
  25% {
    border-radius: 55% 85% 70% 30%/70% 50% 60% 40%;
  }
  37.5% {
    border-radius: 40% 60% 50% 50%/55% 45% 75% 25%;
  }
  50% {
    border-radius: 55% 85% 70% 30%/70% 50% 60% 40%;
  }
  62.5% {
    border-radius: 40% 60% 50% 50%/55% 45% 75% 25%;
  }
  75% {
    border-radius: 65% 80% 45% 55%/40% 60% 50% 70%;
  }
  87.5% {
    border-radius: 50% 40% 70% 30%/60% 40% 50% 50%;
  }
  100% {
    border-radius: 50% 40% 70% 30%/60% 40% 50% 50%;
  }
}
.project_wrap .project a .project_img .ryutai3 {
  width: 85%;
  animation: fluidrotate3 20s ease 0s infinite;
}
@keyframes fluidrotate3 {
  0% {
    border-radius: 45% 55% 60% 40%/70% 30% 70% 30%;
  }
  12.5% {
    border-radius: 80% 20% 75% 25%/65% 35% 55% 45%;
  }
  25% {
    border-radius: 60% 40% 65% 35%/50% 50% 40% 60%;
  }
  37.5% {
    border-radius: 30% 70% 45% 55%/75% 25% 70% 30%;
  }
  50% {
    border-radius: 60% 40% 65% 35%/50% 50% 40% 60%;
  }
  62.5% {
    border-radius: 30% 70% 45% 55%/75% 25% 70% 30%;
  }
  75% {
    border-radius: 80% 20% 75% 25%/65% 35% 55% 45%;
  }
  87.5% {
    border-radius: 45% 55% 60% 40%/70% 30% 70% 30%;
  }
  100% {
    border-radius: 45% 55% 60% 40%/70% 30% 70% 30%;
  }
}
.project_wrap .project a .project_img .ryutai4 {
  width: 75%;
  right: 60px;
  left: auto;
  animation: fluidrotate4 20s ease 0s infinite;
}
@keyframes fluidrotate4 {
  0% {
    border-radius: 70% 30% 55% 45%/40% 60% 60% 40%;
  }
  12.5% {
    border-radius: 45% 55% 65% 35%/50% 50% 40% 60%;
  }
  25% {
    border-radius: 60% 40% 50% 50%/75% 25% 70% 30%;
  }
  37.5% {
    border-radius: 80% 20% 45% 55%/65% 35% 55% 45%;
  }
  50% {
    border-radius: 60% 40% 50% 50%/75% 25% 70% 30%;
  }
  62.5% {
    border-radius: 80% 20% 45% 55%/65% 35% 55% 45%;
  }
  75% {
    border-radius: 45% 55% 65% 35%/50% 50% 40% 60%;
  }
  87.5% {
    border-radius: 70% 30% 55% 45%/40% 60% 60% 40%;
  }
  100% {
    border-radius: 70% 30% 55% 45%/40% 60% 60% 40%;
  }
}
.project_wrap .project a .project_img .ryutai5 {
  width: 85%;
  left: -30px;
  animation: fluidrotate5 20s ease 0s infinite;
}
@keyframes fluidrotate5 {
  0% {
    border-radius: 65% 40% 50% 35%/55% 45% 50% 50%;
  }
  12.5% {
    border-radius: 40% 60% 70% 30%/60% 40% 60% 40%;
  }
  25% {
    border-radius: 50% 50% 60% 40%/70% 30% 70% 30%;
  }
  37.5% {
    border-radius: 60% 40% 70% 30%/40% 60% 50% 50%;
  }
  50% {
    border-radius: 50% 50% 60% 40%/70% 30% 70% 30%;
  }
  62.5% {
    border-radius: 60% 40% 70% 30%/40% 60% 50% 50%;
  }
  75% {
    border-radius: 40% 60% 70% 30%/60% 40% 60% 40%;
  }
  87.5% {
    border-radius: 65% 40% 50% 35%/55% 45% 50% 50%;
  }
  100% {
    border-radius: 65% 40% 50% 35%/55% 45% 50% 50%;
  }
}
.project_wrap .project a .project_img .ryutai6 {
  width: 85%;
  left: 0;
  animation: fluidrotate6 20s ease 0s infinite;
}
@keyframes fluidrotate6 {
  0% {
    border-radius: 55% 45% 50% 50%/70% 30% 70% 30%;
  }
  12.5% {
    border-radius: 75% 25% 70% 30%/60% 40% 60% 40%;
  }
  25% {
    border-radius: 60% 40% 70% 30%/40% 60% 50% 50%;
  }
  37.5% {
    border-radius: 50% 50% 60% 40%/70% 30% 70% 30%;
  }
  50% {
    border-radius: 60% 40% 70% 30%/40% 60% 50% 50%;
  }
  62.5% {
    border-radius: 50% 50% 60% 40%/70% 30% 70% 30%;
  }
  75% {
    border-radius: 75% 25% 70% 30%/60% 40% 60% 40%;
  }
  87.5% {
    border-radius: 55% 45% 50% 50%/70% 30% 70% 30%;
  }
  100% {
    border-radius: 55% 45% 50% 50%/70% 30% 70% 30%;
  }
}
.project_wrap .project a .project_img .ryutai7 {
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  animation: fluidrotate7 20s ease 0s infinite;
}
@keyframes fluidrotate7 {
  0% {
    border-radius: 60% 40% 60% 40%/60% 40% 60% 40%;
  }
  12.5% {
    border-radius: 70% 30% 50% 50%/50% 50% 50% 50%;
  }
  25% {
    border-radius: 45% 55% 70% 30%/70% 30% 70% 30%;
  }
  37.5% {
    border-radius: 60% 40% 60% 40%/60% 40% 60% 40%;
  }
  50% {
    border-radius: 45% 55% 70% 30%/70% 30% 70% 30%;
  }
  62.5% {
    border-radius: 60% 40% 60% 40%/60% 40% 60% 40%;
  }
  75% {
    border-radius: 70% 30% 50% 50%/50% 50% 50% 50%;
  }
  87.5% {
    border-radius: 45% 55% 70% 30%/70% 30% 70% 30%;
  }
  100% {
    border-radius: 60% 40% 60% 40%/60% 40% 60% 40%;
  }
}
.project_wrap .project a .project_img .ryutai8 {
  width: 90%;
  left: auto;
  right: -40px;
  animation: fluidrotate8 20s ease 0s infinite;
}
@keyframes fluidrotate8 {
  0% {
    border-radius: 55% 45% 50% 50%/70% 30% 70% 30%;
  }
  12.5% {
    border-radius: 75% 25% 70% 30%/60% 40% 60% 40%;
  }
  25% {
    border-radius: 70% 30% 50% 50%/50% 50% 50% 50%;
  }
  37.5% {
    border-radius: 60% 40% 60% 40%/60% 40% 60% 40%;
  }
  50% {
    border-radius: 70% 30% 50% 50%/50% 50% 50% 50%;
  }
  62.5% {
    border-radius: 60% 40% 60% 40%/60% 40% 60% 40%;
  }
  75% {
    border-radius: 75% 25% 70% 30%/60% 40% 60% 40%;
  }
  87.5% {
    border-radius: 55% 45% 50% 50%/70% 30% 70% 30%;
  }
  100% {
    border-radius: 55% 45% 50% 50%/70% 30% 70% 30%;
  }
}
.project_wrap .project a .project_img .num {
  width: 20%;
  position: absolute;
  top: 0px;
  right: 40px;
}
.project_wrap .project a .project_img .num2 {
  right: auto;
  left: 60px;
  top: 40px;
}
.project_wrap .project a .project_img .num3 {
  right: 20px;
  top: auto;
  bottom: 0;
}
.project_wrap .project a .project_img .num4 {
  right: auto;
  left: 40px;
  top: 30px;
}
.project_wrap .project a .project_img .num5 {
  right: 50px;
  top: 50px;
}
.project_wrap .project a .project_img .num6 {
  right: auto;
  left: 40px;
  top: 0;
}
.project_wrap .project a .project_img .num7 {
  right: 60px;
  top: 0;
}
.project_wrap .project a .h2_up {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: -10px;
}
.project_wrap .project a h2 {
  font-size: 22px;
  margin: 20px auto;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .project_wrap .project a h2 {
    font-size: 18px;
  }
}
.project_wrap .project a .sdg_wrap {
  width: 70%;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}
.project_wrap .project a .sdg_wrap figure {
  width: 23%;
  margin-left: 1%;
  margin-right: 1%;
}
.project_wrap .project p {
  padding: 0 25px;
  margin-bottom: 32px;
  line-height: 1.8;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.project_wrap .project p span {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.project_wrap .project p span span {
  font-size: 12px;
}

.talkroom_wrap {
  background-color: #F9F9F9;
  padding: 60px 15px;
}
.talkroom_wrap .talk_ttl {
  background: url(../img/fukidashi.svg) no-repeat center center;
  background-size: contain;
  width: 350px;
  height: 270px;
  margin: 0 auto 40px;
  padding: 70px 0;
}
.talkroom_wrap .talk_ttl figure {
  width: 65%;
  margin: 0 auto 20px;
}
.talkroom_wrap .talk_ttl p {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.talkroom_wrap .talk_contents {
  width: 90%;
  margin: 0 auto;
}
.talkroom_wrap .talk_contents .talk {
  margin-bottom: 40px;
}
.talkroom_wrap .talk_contents .talk a {
  color: #398C83;
  font-weight: bold;
}
.talkroom_wrap .talk_contents .talk a figure {
  margin-bottom: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.talkroom_wrap .talk_contents .talk a figure img {
  object-fit: cover;
  transition: 0.4s;
}
.talkroom_wrap .talk_contents .talk a .day {
  font-size: 12px;
  margin-bottom: 10px;
}
.talkroom_wrap .talk_contents .talk a .ttl {
  width: 100%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
}
.talkroom_wrap .talk_contents .talk a:hover figure img {
  transform: scale(1.1);
}

.topic_wrap {
  background-color: #F9F9F9;
  overflow-x: hidden;
}
.topic_wrap .topic_ttl {
  width: 60%;
  margin: 0 auto;
}
.topic_wrap .topics_btn {
  display: block;
  width: 60%;
  margin: 20px auto 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00484A;
  border: solid 2px #00484A;
  color: #fff;
  padding: 3%;
  border-radius: 60px;
  position: relative;
  transition: 0.3s;
}
.topic_wrap .topics_btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
}
.topic_wrap .topics_btn:hover {
  background-color: #fff;
  color: #00484A;
}
.topic_wrap .topics_btn:hover::after {
  border-color: #00484A;
}
.topic_wrap .slider {
  width: 100%;
  margin: 40px auto;
}
.topic_wrap .slider li {
  width: 300px;
  margin: 0 10px;
}
.topic_wrap .slider li a {
  width: 100%;
  color: #000;
}
.topic_wrap .slider li a figure {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #fff;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 10px;
  border: solid 3px #F9F9F9;
  transition: 0.4s;
}
.topic_wrap .slider li a figure img {
  object-fit: cover;
}
.topic_wrap .slider li a .day {
  font-size: 12px;
  margin-bottom: 10px;
}
.topic_wrap .slider li a .ttl {
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
}
.topic_wrap .slider li a:hover figure {
  border: solid 3px #ae8056;
}

.topic_wrap_all {
  padding: 0 20px;
  padding-bottom: 40px;
  background-color: #fff;
}
.topic_wrap_all h1 {
  width: 40%;
  margin: 80px auto;
}
.topic_wrap_all .news_list {
  width: 100%;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
}
.topic_wrap_all .news_list li {
  width: 48%;
  margin: 0 1% 10%;
}
.topic_wrap_all .news_list li a {
  width: 100%;
  color: #000;
}
.topic_wrap_all .news_list li a figure {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  border: solid 3px #F9F9F9;
  transition: 0.4s;
}
.topic_wrap_all .news_list li a figure img {
  object-fit: cover;
}
.topic_wrap_all .news_list li a .day {
  font-size: 10px;
  margin-bottom: 10px;
}
.topic_wrap_all .news_list li a .ttl {
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
}
.topic_wrap_all .news_list li a:hover figure {
  border: solid 3px #ae8056;
}
.topic_wrap_all #load_more {
  display: block;
  width: 60%;
  margin: 0 auto;
  border: solid 2px #00484A;
  background-color: #00484A;
  color: #fff;
  padding: 2%;
  font-size: 16px;
  font-weight: bold;
  border-radius: 60px;
  cursor: pointer;
  transition: 0.3s;
}
.topic_wrap_all #load_more:hover {
  background-color: #fff;
  color: #00484A;
}

.footer_wrap .logo {
  display: block;
  width: 60%;
  margin: 40px auto;
}
.footer_wrap footer {
  color: #000;
  background-color: #F9F9F9;
  font-size: 10px;
  padding: 20px;
  text-align: center;
}

.footer_wrap2 {
  background-color: #fff;
  padding: 40px 0 0;
}

/* ==============================================
            about.html
============================================== */
.about_wrap {
  background-color: #fff;
}
.about_wrap .about_top .ttl {
  width: 30%;
  margin: 80px auto 40px;
}
.about_wrap .about_top h1 {
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}
.about_wrap .about_top .logo_wrap {
  margin: 40px auto 0;
  position: relative;
}
.about_wrap .about_top .logo_wrap .bg {
  width: 100%;
}
.about_wrap .about_top .logo_wrap .logo {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about_wrap .fashion {
  background-color: #DBEAE9;
  padding: 40px 15px;
  text-align: center;
}
.about_wrap .fashion h2 {
  color: #15574E;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.5;
}
.about_wrap .fashion p {
  font-size: 14px;
  line-height: 2;
  margin: 24px auto;
  font-weight: bold;
}
.about_wrap .earth_wrap {
  padding: 40px 15px;
  text-align: center;
}
.about_wrap .earth_wrap figure {
  width: 50%;
  margin: 40px auto;
}
.about_wrap .earth_wrap h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}
.about_wrap .earth_wrap p {
  font-size: 14px;
  line-height: 2;
  font-weight: bold;
}
.about_wrap .earth_wrap p span {
  font-weight: bold;
  font-size: 16px;
  color: #ae8056;
  display: block;
  margin: 10px auto -10px;
}
.about_wrap .info {
  padding: 0 15px;
}
.about_wrap .info figure {
  width: 60%;
  margin: 40px auto;
}
.about_wrap .info table {
  font-size: 12px;
  width: 90%;
  margin: 0 auto 60px;
}
.about_wrap .info table tr {
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
}
.about_wrap .info table tr th {
  width: 80px;
}
.about_wrap .info table tr td {
  width: calc(100% - 200px);
}

/* ==============================================
            project_area
============================================== */
.project_area {
  background-color: #fff;
  letter-spacing: 0.05em;
}
.project_area .ttl_area {
  background: url(../project01/img/bg.png) no-repeat center center;
  background-size: cover;
  animation: fluidrotate 20s ease 0s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  width: 200%;
  margin-left: -50%;
  margin-top: -40px;
}
.project_area .ttl_area .ttl_text {
  text-align: center;
}
.project_area .ttl_area .ttl_text .ttl_no {
  width: 30%;
  margin: 0 auto;
}
.project_area .ttl_area .ttl_text h1 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  margin: 40px auto;
}
.project_area .ttl_area .ttl_text h1 span {
  font-size: 36px;
}
.project_area .ttl_area .ttl_text p {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
.project_area .project_text_area {
  width: 100%;
  padding: 0 15px;
  margin: 60px auto;
}
.project_area .project_text_area figure {
  width: 50%;
  margin: 0 auto;
}
.project_area .project_text_area p {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin: 30px auto;
}
.project_area .link {
  display: flex;
  width: 100%;
  padding: 0 15px;
}
.project_area .link li {
  width: 50%;
  text-align: center;
}
.project_area .link li a {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.project_area .link li a::after {
  content: "";
  display: block;
  border-width: 8px 0 8px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #000;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.3s;
}
.project_area .link li a:hover::after {
  bottom: -35px;
}
.project_area .link li:nth-of-type(2) {
  border-left: solid 1px #000;
  height: 40px;
}
.project_area .h2_area {
  padding: 20px 15px;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .project_area .h2_area {
    padding: 8% 15px;
  }
}
.project_area .h2_area h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.project_area .h2_area h2::after {
  content: "";
  display: block;
  background: url(../img/line.svg) no-repeat center center;
  width: 200px;
  height: 6px;
  margin: 10px auto;
}
.project_area .h2_area .project_text_area2 {
  margin: 24px auto;
  padding: 0;
}
.project_area .h2_area .project_text_area2 .logo {
  width: 30%;
}
.project_area .h2_area .project_text_area2 h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: normal;
  margin: 40px auto 20px;
}
.project_area .h2_area .project_text_area2 p {
  text-align: left;
  margin: 0 auto;
}
.project_area .h2_area .project_text_area2 p span {
  font-size: 11px;
}
.project_area .h2_area .project_text_area2 figure {
  width: 100%;
  margin: 20px auto;
}
.project_area .bg_green_area {
  background-color: #DBEAE9;
  padding: 60px 0;
}
.project_area .bg_green_area h3 {
  color: #00484A;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 24px;
}
.project_area .bg_green_area .graph_area {
  margin: 0 0 60px 15px;
  background-color: #fff;
  padding: 20px;
  border-radius: 40px 0 0 40px;
  overflow-x: scroll;
}
.project_area .bg_green_area .graph_area figure {
  width: 660px;
}
.project_area .bg_green_area .btn {
  display: block;
  width: 80%;
  height: auto;
  padding: 3.5%;
  border: solid 1px #00484A;
  border-radius: 50px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00484A;
  font-size: 14px;
  position: relative;
  transition: 0.4s;
}
.project_area .bg_green_area .btn::after {
  content: "";
  display: block;
  background: url(../img/siter.svg) no-repeat center center;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20px;
}
.project_area .bg_green_area .btn:hover {
  transform: scale(1.05);
}

.project_area2 .ttl_area {
  background: url(../project02/img/bg.png) no-repeat center center;
}
.project_area2 .project_text_area {
  width: 100%;
  padding: 0 15px;
  margin: 60px auto;
}
.project_area2 .project_text_area figure {
  width: 50%;
  margin: 0 auto;
}
.project_area2 .project_text_area p {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin: 30px auto;
}
.project_area2 .h2_area .project_text_area2 h3 {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project_area2 .h2_area .project_text_area2 h3::after, .project_area2 .h2_area .project_text_area2 h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #ae8056;
  margin: 0 10px;
}
.project_area2 .h2_area .project_text_area2 .kome {
  text-align: center;
  font-size: 13px;
}
.project_area2 .h2_area .project_text_area2 .list_wrap .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.project_area2 .h2_area .project_text_area2 .list_wrap .list li {
  width: 30%;
  margin: 0 1% 2%;
  font-size: 13px;
  border: solid 1px #398C83;
  padding: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
  border-radius: 10px;
  background-color: #398C83;
  color: #fff;
  font-weight: bold;
}
.project_area2 .h2_area .project_text_area2 .list_wrap p {
  text-align: center;
  color: #398C83;
}
.project_area2 .h2_area .project_text_area2 .logo_df {
  display: flex;
  justify-content: center;
}
.project_area2 .h2_area .project_text_area2 .logo_df .logo {
  width: 25%;
  margin: 0 5%;
}
.project_area2 .bg_green_area {
  padding: 60px 15px;
}
.project_area2 .bg_green_area h2 {
  color: #00484A;
}
.project_area2 .bg_green_area p {
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
}
.project_area2 .bg_green_area .flow {
  margin: 40px auto;
}
.project_area2 .bg_green_area .flow li {
  width: 90%;
  margin: 0 auto 40px;
  border: solid 2px #00484A;
  padding: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  border-radius: 0 0 20px 0;
  position: relative;
  color: #00484A;
  font-size: 14px;
  font-weight: bold;
}
.project_area2 .bg_green_area .flow li::before {
  content: "1";
  display: block;
  width: 40px;
  height: 40px !important;
  background-color: #ae8056;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: -20px;
  height: 1px;
}
.project_area2 .bg_green_area .flow li:nth-of-type(2)::before {
  content: "2";
}
.project_area2 .bg_green_area .flow li:nth-of-type(3)::before {
  content: "3";
}

.project_area3 .ttl_area {
  background: url(../project03/img/bg.png) no-repeat center center;
}
.project_area3 .project_text_area figure {
  width: 100%;
  margin: 0 auto;
}
.project_area3 .project_text_area p {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin: 30px auto;
}
.project_area3 .project_text_area .project_text_df {
  display: flex;
  align-items: flex-start;
  margin: 40px auto;
}
.project_area3 .project_text_area .project_text_df figure {
  width: 40%;
  height: 190px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.project_area3 .project_text_area .project_text_df figure img {
  object-fit: cover;
}
.project_area3 .project_text_area .project_text_df p {
  width: 60%;
  height: 190px;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  background-color: #398C83;
  color: #fff;
  margin: 0;
  font-size: 11px;
  border-radius: 0 20px 20px 0;
}
.project_area3 .h2_area h2 {
  line-height: 1.5;
}
.project_area3 .h2_area .project_text_area2 figure {
  width: 90%;
  margin: 0 auto 20px;
}
.project_area3 .h2_area .project_text_area2 p {
  text-align: center;
  margin: 30px autp;
}
.project_area3 .h2_area .project_text_area2 .btn {
  display: block;
  width: 80%;
  padding: 5%;
  background-color: #00484A;
  color: #fff;
  border-radius: 50px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 14px;
  transition: 0.4s;
}
.project_area3 .h2_area .project_text_area2 .btn::after {
  content: "";
  display: block;
  background: url(../project03/img/site.svg) no-repeat center center;
  background-size: contain;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 20px;
  color: #fff;
}
.project_area3 .h2_area .project_text_area2 .btn:hover {
  transform: scale(1.05);
}

.project_area4 .ttl_area {
  background: url(../project04/img/bg.png) no-repeat center center;
}
.project_area4 .ttl_area .ttl_text h1 {
  font-size: 20px;
  line-height: 1.8;
}
.project_area4 .ttl_area .ttl_text h1 span {
  font-size: 32px;
}
.project_area4 .project_text_area figure {
  width: 100%;
  margin: 0 auto;
}
.project_area4 .project_text_area p {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin: 30px auto;
}
.project_area4 .bg_green_area {
  padding: 60px 15px;
}
.project_area4 .bg_green_area p {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}
.project_area4 .bg_green_area .flow {
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.project_area4 .bg_green_area .flow li {
  width: 48%;
  border: solid 2px #00484A;
  border-radius: 10px;
  padding: 30px 10px;
  margin-bottom: 20px;
}
.project_area4 .bg_green_area .flow li .bold {
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  color: #ae8056;
}
.project_area4 .bg_green_area .flow li .list {
  display: block;
  margin: 20px auto;
  list-style: square;
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
}
.project_area4 .bg_green_area .flow li .list li {
  border: none;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  font-size: 12px;
  padding: 0;
  line-height: 1.4;
}

.project_area5 .ttl_area {
  background: url(../project05/img/bg.png) no-repeat center center;
}
.project_area5 .ttl_area .ttl_text h1 {
  font-size: 20px;
}
.project_area5 .project_text_area {
  width: 100%;
  padding: 0 15px;
  margin: 60px auto 0;
}
.project_area5 .project_text_area figure {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}
.project_area5 .project_text_area p {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin: 30px auto;
}
.project_area5 .h2_area {
  margin: 0px auto;
}
.project_area5 .h2_area .project_text_area2 .btn {
  display: block;
  width: 80%;
  padding: 4%;
  border: solid 2px #00484A;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 80px;
  color: #00484A;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .project_area5 .h2_area .project_text_area2 .btn {
    margin: 30px auto 60px;
    width: 90%;
  }
}
.project_area5 .h2_area .project_text_area2 .btn::after {
  content: "";
  display: block;
  background: url(../img/siter.svg) no-repeat center center;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 20px;
}
.project_area5 .h2_area .project_text_area2 .btn:hover {
  transform: scale(1.05);
}

.project_area6 .ttl_area {
  background: url(../project06/img/bg.png) no-repeat center center;
}
.project_area6 .project_text_area {
  width: 100%;
  padding: 0 15px;
  margin: 0px auto;
}
.project_area6 .project_text_area figure {
  width: 100%;
  margin: 0 auto;
}
.project_area6 .project_text_area p {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin: 30px auto;
}
.project_area6 .h2_area {
  margin: 0 auto;
}
.project_area6 .h2_area .project_text_area2 h3 {
  line-height: 1.4;
}
.project_area6 .h2_area .project_text_area2 .flow {
  margin: 40px auto;
}
.project_area6 .h2_area .project_text_area2 .flow li {
  width: 90%;
  height: 120px;
  margin: 0 auto 20px;
  border: solid 2px #00484A;
  padding: 5%;
  text-align: center;
  line-height: 1.4;
  border-radius: 0 0 20px 0;
  position: relative;
  color: #00484A;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.project_area6 .h2_area .project_text_area2 .flow li span {
  font-size: 13px;
  font-weight: normal;
  display: block;
  margin-top: 10px;
}
.project_area6 .bg_green_area {
  padding: 60px 15px;
}
.project_area6 .bg_green_area h2 {
  color: #00484A;
}
.project_area6 .bg_green_area .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px auto;
}
.project_area6 .bg_green_area .list li {
  width: 48%;
  margin: 0 1% 2%;
  font-size: 14px;
  border: solid 1px #398C83;
  padding: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  border-radius: 10px;
  background-color: #398C83;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .project_area6 .bg_green_area .list li {
    font-size: 12px;
  }
}

.project_area7 .ttl_area {
  background: url(../project07/img/bg.png) no-repeat center center;
}
.project_area7 .ttl_area .ttl_text h1 {
  font-size: 20px;
}
.project_area7 .project_text_area {
  width: 100%;
  padding: 0 15px;
  margin: 60px auto;
}
.project_area7 .project_text_area figure {
  width: 100%;
  margin: 0 auto;
}
.project_area7 .project_text_area p {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin: 30px auto;
}
.project_area7 .h2_area h2 {
  line-height: 1.5;
}
.project_area7 .h2_area .project_text_area2 .area {
  margin: 40px auto;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.project_area7 .h2_area .project_text_area2 .area li {
  margin: 10px;
}
.project_area7 .h2_area .project_text_area2 .area li a {
  display: block;
  width: 180px;
  height: 180px;
  border: solid 1px #00484A;
  color: #00484A;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding-top: 20px;
  position: relative;
  transition: 0.4s;
}
.project_area7 .h2_area .project_text_area2 .area li a span {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.project_area7 .h2_area .project_text_area2 .area li a::before {
  content: "";
  display: block;
  background: url(../img/map_icon.svg) no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 40px;
  position: absolute;
  top: 10px;
}
.project_area7 .h2_area .project_text_area2 .area li a:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .project_area7 .h2_area .project_text_area2 .area {
    margin: 24px auto;
  }
  .project_area7 .h2_area .project_text_area2 .area li {
    margin: 2%;
    width: 46%;
    height: 46vw;
  }
  .project_area7 .h2_area .project_text_area2 .area li a {
    width: 100%;
    height: 100%;
    transition: 0s;
    font-size: 3vw;
  }
  .project_area7 .h2_area .project_text_area2 .area li a span {
    font-size: 4vw;
  }
  .project_area7 .h2_area .project_text_area2 .area li a::before {
    width: 20%;
    height: 20%;
  }
}

.project_area8 .ttl_area {
  background: url(../project08/img/bg.png) no-repeat center center;
}
.project_area8 .ttl_area .ttl_text h1 {
  font-size: 20px;
}
.project_area8 .h2_area .project_text_area2 details summary {
  width: 100%;
  padding: 10px;
  background-color: #00484A;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.project_area8 .h2_area .project_text_area2 details summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg) translateY(50%);
  position: absolute;
  right: 20px;
  top: 40%;
  transition: 0.2s;
}
.project_area8 .h2_area .project_text_area2 details summary::-webkit-details-marker {
  display: none;
}
.project_area8 .h2_area .project_text_area2 details[open] summary::after {
  transition: 0.2s;
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
}
.project_area8 .h2_area .project_text_area2 details .area {
  justify-content: flex-start;
}
.project_area8 .h2_area .project_text_area2 details .area li {
  width: 46%;
  margin: 0 2% 4%;
  height: auto;
  aspect-ratio: 1;
}
.project_area8 .h2_area .project_text_area2 details .area li a {
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.project_area8 .h2_area .project_text_area2 details .area li a span {
  font-size: 20px;
}
@media (max-width: 768px) {
  .project_area8 .h2_area .project_text_area2 details .area li a {
    font-size: 3.4vw;
  }
  .project_area8 .h2_area .project_text_area2 details .area li a span {
    font-size: 4vw;
  }
}

.project_area9 .ttl_area {
  background: url(../project09/img/bg.png) no-repeat center center;
}
.project_area9 .ttl_area .ttl_text .ttl_no {
  width: 28%;
}
.project_area9 .ttl_area .ttl_text .ttl_no img {
  object-fit: contain;
}
.project_area9 .ttl_area .ttl_text h1 {
  font-size: 20px;
}
.project_area9 .project_text_area p {
  text-align: left;
}

/* ==============================================
            crosstalk_area
============================================== */
.crosstalk_area {
  background-color: #fff;
}
.crosstalk_area .ttl_df {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.crosstalk_area .ttl_df .crosstalk {
  width: 60%;
  margin: -30px 0 0 -40px;
  aspect-ratio: 3/2;
  background-color: #398C83;
  border-radius: 61% 39% 16% 84%/57% 72% 28% 43%;
  animation: fluidAnimCross 20s infinite;
  position: relative;
}
@keyframes fluidAnimCross {
  0% {
    border-radius: 65% 35% 55% 45%/55% 50% 55% 45%;
  }
  12.5% {
    border-radius: 60% 75% 40% 80%/70% 70% 60% 65%;
  }
  25% {
    border-radius: 55% 95% 65% 90%/75% 65% 85% 70%;
  }
  37.5% {
    border-radius: 60% 40% 50% 45%/60% 40% 60% 40%;
  }
  50% {
    border-radius: 55% 95% 65% 90%/75% 65% 85% 70%;
  }
  62.5% {
    border-radius: 60% 40% 50% 45%/60% 40% 60% 40%;
  }
  75% {
    border-radius: 60% 75% 40% 80%/70% 70% 60% 65%;
  }
  87.5% {
    border-radius: 40% 60% 55% 45%/50% 60% 40% 50%;
  }
  100% {
    border-radius: 65% 35% 55% 45%/55% 50% 55% 45%;
  }
}
.crosstalk_area .ttl_df .crosstalk img {
  width: 45%;
  position: absolute;
  right: 70px;
  top: 10px;
}
.crosstalk_area .ttl_df .crosstalk::after {
  content: "";
  display: block;
  background: url(../crosstalk01/img/fukidashi_after.svg) no-repeat center center;
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: -20px;
  right: 20px;
  transform: rotate(15deg);
  z-index: -1;
}
.crosstalk_area .ttl_df .number {
  width: 20%;
  margin-right: 20px;
  margin-top: 20px;
}
.crosstalk_area .top_area {
  padding: 0 15px;
  position: relative;
  z-index: -2;
}
.crosstalk_area .top_area figure {
  width: 100%;
}
.crosstalk_area .top_area h1 {
  text-align: center;
  font-size: 24px;
  margin: 40px auto;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
.crosstalk_area .contents_df {
  padding: 0 40px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.crosstalk_area .contents_df .ttl_green {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #398C83;
  width: 24px auto;
  font-weight: bold;
}
.crosstalk_area .contents_df .ttl_green li {
  width: 15%;
}
.crosstalk_area .contents_df .ttl_green li span {
  display: block;
  width: 80%;
  height: 1px;
  background-color: #398C83;
  margin-top: 8px;
}
.crosstalk_area .contents_df .ttl_green li:nth-of-type(2) {
  width: 85%;
}
.crosstalk_area .contents_df .contents_black {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 24px auto;
}
.crosstalk_area .contents_df .contents_black .name {
  width: 15%;
  font-weight: bold;
}
.crosstalk_area .contents_df .contents_black li {
  width: 85%;
}
.crosstalk_area .contents_df .contents_black li .profile {
  margin: 24px auto;
  width: 100%;
  aspect-ratio: 2/1;
  position: relative;
}
.crosstalk_area .contents_df .contents_black li .profile .text_wrap {
  width: 60%;
  aspect-ratio: 4/3;
  background-color: #DBEAE9;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}
.crosstalk_area .contents_df .contents_black li .profile .text_wrap p {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  position: absolute;
  top: 20px;
  left: 20px;
}
.crosstalk_area .contents_df .contents_black li .profile .text_wrap p span {
  display: block;
  font-size: 10px;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 5px;
  letter-spacing: 0.1em;
}
.crosstalk_area .contents_df .contents_black li .profile figure {
  width: 60%;
  aspect-ratio: 4/3;
  position: absolute;
  right: 0;
  top: 24px;
}
.crosstalk_area .contents_df .contents_black li .profile2 .text_wrap {
  top: 24px;
  right: 0;
  left: auto;
}
.crosstalk_area .contents_df .contents_black li .profile2 .text_wrap p {
  position: absolute;
  bottom: 20px;
  right: 20px;
  top: auto;
  left: auto;
}
.crosstalk_area .contents_df .contents_black li .profile2 figure {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.crosstalk_area .contents_df .contents_black li .profile3 .text_wrap {
  top: 24px;
}
.crosstalk_area .contents_df .contents_black li .profile3 .text_wrap p {
  bottom: 20px;
  top: auto;
}
.crosstalk_area .contents_df .contents_black li .profile3 figure {
  top: 0;
}
.crosstalk_area .contents_df .contents_black li .profile4 .text_wrap {
  top: 0;
  right: 0;
  left: auto;
}
.crosstalk_area .contents_df .contents_black li .profile4 .text_wrap p {
  position: absolute;
  top: 20px;
  left: auto;
  right: 20px;
}
.crosstalk_area .contents_df .contents_black li .profile4 figure {
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 1;
}
.crosstalk_area .contents_df .contents_black li .pic {
  width: 100%;
  margin: 24px auto;
}

@media (max-width: 1025px) {
  .crosstalk_area .ttl_df .crosstalk img {
    left: 30%;
  }
  .crosstalk_area .ttl_df .crosstalk::after {
    right: 30%;
    bottom: -10%;
  }
  .crosstalk_area .ttl_df .number {
    width: 20%;
    margin-right: 20px;
    margin-top: 20px;
  }
  .crosstalk_area .top_area {
    padding: 0 15px;
    position: relative;
    z-index: -2;
  }
  .crosstalk_area .top_area figure {
    width: 100%;
  }
  .crosstalk_area .top_area h1 {
    text-align: center;
    font-size: 24px;
    margin: 40px auto;
    line-height: 1.5;
    letter-spacing: 0.09em;
  }
  .crosstalk_area .contents_df {
    padding: 0 40px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
  .crosstalk_area .contents_df .ttl_green {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #398C83;
    width: 24px auto;
    font-weight: bold;
  }
  .crosstalk_area .contents_df .ttl_green li {
    width: 15%;
  }
  .crosstalk_area .contents_df .ttl_green li span {
    display: block;
    width: 80%;
    height: 1px;
    background-color: #398C83;
    margin-top: 8px;
  }
  .crosstalk_area .contents_df .ttl_green li:nth-of-type(2) {
    width: 85%;
  }
  .crosstalk_area .contents_df .contents_black {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 24px auto;
  }
  .crosstalk_area .contents_df .contents_black .name {
    width: 15%;
    font-weight: bold;
  }
  .crosstalk_area .contents_df .contents_black li {
    width: 85%;
  }
  .crosstalk_area .contents_df .contents_black li .profile {
    margin: 24px auto;
    width: 100%;
    aspect-ratio: 2/1;
    position: relative;
  }
  .crosstalk_area .contents_df .contents_black li .profile .text_wrap {
    width: 60%;
    aspect-ratio: 4/3;
    background-color: #DBEAE9;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
  }
  .crosstalk_area .contents_df .contents_black li .profile .text_wrap p {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.15em;
    line-height: 1.4;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .crosstalk_area .contents_df .contents_black li .profile .text_wrap p span {
    display: block;
    font-size: 10px;
    font-weight: normal;
    line-height: 1.3;
    margin-top: 5px;
    letter-spacing: 0.1em;
  }
  .crosstalk_area .contents_df .contents_black li .profile figure {
    width: 60%;
    aspect-ratio: 4/3;
    position: absolute;
    right: 0;
    top: 24px;
  }
  .crosstalk_area .contents_df .contents_black li .profile2 .text_wrap {
    top: 24px;
    right: 0;
    left: auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile2 .text_wrap p {
    position: absolute;
    bottom: 20px;
    right: 20px;
    top: auto;
    left: auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile2 figure {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .crosstalk_area .contents_df .contents_black li .profile3 .text_wrap {
    top: 24px;
  }
  .crosstalk_area .contents_df .contents_black li .profile3 .text_wrap p {
    bottom: 20px;
    top: auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile3 figure {
    top: 0;
  }
  .crosstalk_area .contents_df .contents_black li .profile4 .text_wrap {
    top: 0;
    right: 0;
    left: auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile4 .text_wrap p {
    position: absolute;
    top: 20px;
    left: auto;
    right: 20px;
  }
  .crosstalk_area .contents_df .contents_black li .profile4 figure {
    position: absolute;
    left: 0;
    top: 24px;
    z-index: 1;
  }
  .crosstalk_area .contents_df .contents_black li .pic {
    width: 100%;
    margin: 24px auto;
  }
}
@media (max-width: 768px) {
  .crosstalk_area .ttl_df .crosstalk {
    width: 70%;
  }
  .crosstalk_area .ttl_df .crosstalk img {
    width: 40%;
    left: 35%;
  }
  .crosstalk_area .ttl_df .crosstalk::after {
    bottom: -10%;
    transform: rotate(35deg);
  }
  .crosstalk_area .contents_df {
    padding: 0 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
  .crosstalk_area .contents_df .contents_black li {
    width: 85%;
  }
  .crosstalk_area .contents_df .contents_black li .profile {
    margin: 24px auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile .text_wrap {
    padding: 10px;
    border-radius: 15px;
  }
  .crosstalk_area .contents_df .contents_black li .profile .text_wrap p {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .crosstalk_area .contents_df .contents_black li .profile .text_wrap p span {
    display: block;
    font-size: 9px;
    font-weight: normal;
    line-height: 1.3;
    margin-top: 5px;
    letter-spacing: 0.08em;
  }
  .crosstalk_area .contents_df .contents_black li .profile2 .text_wrap {
    top: 24px;
    right: 0;
    left: auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile2 .text_wrap p {
    position: absolute;
    bottom: 15px;
    right: 15px;
    top: auto;
    left: auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile2 figure {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .crosstalk_area .contents_df .contents_black li .profile3 .text_wrap {
    top: 24px;
  }
  .crosstalk_area .contents_df .contents_black li .profile3 .text_wrap p {
    bottom: 15px;
    top: auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile3 figure {
    top: 0;
  }
  .crosstalk_area .contents_df .contents_black li .profile4 .text_wrap {
    top: 0;
    right: 0;
    left: auto;
  }
  .crosstalk_area .contents_df .contents_black li .profile4 .text_wrap p {
    position: absolute;
    top: 15px;
    left: auto;
    right: 15px;
  }
  .crosstalk_area .contents_df .contents_black li .profile4 figure {
    position: absolute;
    left: 0;
    top: 24px;
    z-index: 1;
  }
  .crosstalk_area .contents_df .contents_black li .pic {
    width: 100%;
    margin: 24px auto;
  }
}

/*# sourceMappingURL=style.css.map */
