@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  color: #000;
  font-size: 13px;
  scroll-behavior: smooth;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

/*========= 背景動画設定のCSS ===============*/
#video-area {
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video {
  /*天地中央配置*/
  z-index: -1;
  left: 49%;
  /*縦横幅指定*/
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  width: 100%;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  height: auto;
  min-height: 100%;
  min-width: 100%;
}

@media (max-aspect-ratio: 7/10) {
  #video {
    height: auto;
  }
}
/*見出し設定*/
.header-title {
  position: absolute;
  transform: translateY(324%) translateX(22%);
  color: #fff;
  text-shadow: 0 0 15px #666;
  font-size: 14.0625vw;
}

@media (max-aspect-ratio: 7/10) {
  .header-title {
    transform: translateY(140%) translateX(10%);
    font-size: 25.78125vw;
  }
}
.header-subtitle {
  position: absolute;
  transform: translateY(870%) translateX(42%);
  color: #fff;
  text-shadow: 0 0 15px #666;
  background-color: #000;
  font-size: 2.734375vw;
  padding: 1%;
}

@media (max-aspect-ratio: 7/10) {
  .header-subtitle {
    position: absolute;
    transform: translateY(450%) translateX(21%);
    font-size: 4.6875vw;
  }
}
.section-KV {
  height: 54.6875vw;
}

@media (max-aspect-ratio: 7/10) {
  .section-KV {
    height: auto;
  }
}
.fixed-header {
  position: fixed;
  top: -80px;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

.fixed-header.is-show {
  top: 0;
  visibility: visible;
}

.header-logo {
  width: 15.625vw;
  height: 4.6875vw;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 5px 5px;
}
.header-logo-link {
  width: 100%;
}
.header-logo-img {
  width: 6.25vw;
}
.header-logo-title {
  font-size: 4.6875vw;
  color: #fff;
  margin: auto;
  padding-left: 2%;
}

@media (max-aspect-ratio: 7/10) {
  .header-logo-img {
    width: 14.0625vw;
  }
  .header-logo-title {
    font-size: 9.375vw;
    padding-left: 5%;
  }
}
.footerTop {
  height: 18.75vw;
  background-color: #c1c5c7;
  padding: 5% 5% 0 0;
}
.footerTop-links {
  display: flex;
  text-align: center;
  justify-content: space-evenly;
  margin: 0 auto 5%;
}
.footerTop-links_item {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #000;
  padding: 10%;
  width: 31.25vw;
}
.footerTop-links_title {
  font-size: 3.125vw;
  font-weight: bold;
  margin-bottom: 5%;
  font-family: Poppins, -apple-system, BlinkMacSystemFont, Helvetica Neue, Verdana, sans-serif;
}
.footerTop-links_subtitle {
  font-size: 1.25vw;
  font-family: Poppins, -apple-system, BlinkMacSystemFont, Helvetica Neue, Verdana, sans-serif;
  font-weight: 500;
}

@media (max-aspect-ratio: 7/10) {
  .footerTop {
    height: 62.5vw;
    padding: 14% 0 0 0;
  }
  .footerTop-links {
    display: block;
  }
  .footerTop-links_item {
    width: 62.5vw;
    margin: 0 auto 5%;
    padding: 5%;
  }
  .footerTop-links_title {
    font-size: 5.46875vw;
  }
  .footerTop-links_subtitle {
    font-size: 3.125vw;
  }
}
.footerBottom {
  height: 23.4375vw;
  background-color: #4aa1cc;
}
.footerBottom-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 5%;
}
.footerBottom-nav {
  display: flex;
  margin-left: 5%;
}
.footerBottom-links {
  color: #fff;
  margin: auto 10%;
  font-weight: bold;
  font-size: 1.171875vw;
}
.footerBottom-buttons {
  display: flex;
  margin-right: 9%;
}
.footerBottom-button {
  align-items: center;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 99rem;
  color: #000;
  display: flex;
  font-size: 1.09375vw;
  font-weight: 600;
  text-align: center;
  transition: color 0.1s, background-color 0.1s;
  width: 14.0625vw;
  padding: 5%;
}
.footerBottom-button img {
  width: 10%;
}
.footerBottom-button p {
  margin: auto;
}
.footerBottom-button:hover {
  color: #fff;
  background-color: #8f9294;
}

@media (max-aspect-ratio: 7/10) {
  .footerBottom {
    height: 113.28125vw;
  }
  .footerBottom-inner {
    display: block;
    padding-top: 14%;
  }
  .footerBottom-nav {
    display: flex;
    margin-bottom: 5%;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .footerBottom-links {
    font-size: 6.25vw;
    margin-bottom: 5%;
    width: 30%;
  }
  .footerBottom-buttons {
    display: block;
    margin-right: 0;
  }
  .footerBottom-button {
    width: 39.0625vw;
    margin: 0 auto 5% !important;
    padding: 2% 5%;
  }
  .footerBottom-button img {
    width: 15%;
  }
  .footerBottom-button p {
    margin: auto;
    font-size: 3.4375vw;
  }
}
.mr2 {
  margin-right: 3%;
}

.yellow {
  background-color: #fdf300 !important;
  border: 1px solid #fdf300 !important;
}

.yellow:hover {
  background-color: #8f9294 !important;
}

.footerBottom-sns ul {
  display: flex;
  margin: 4% 10% 0;
  justify-content: flex-end;
}
.footerBottom-sns_item {
  margin-left: 1%;
  background-color: #fafafa;
  border-radius: 30px;
  padding: 1%;
  width: 1.5625vw;
  height: 1.5625vw;
}
.footerBottom-sns_item img {
  width: 100%;
  opacity: 0.6;
}

@media (max-aspect-ratio: 7/10) {
  .footerBottom-sns ul {
    margin: 7% 10%;
    justify-content: space-around;
  }
  .footerBottom-sns_item {
    width: 6.25vw;
    height: 6.25vw;
    padding: 3%;
  }
}
.copyright {
  font-size: 0.9375vw;
  color: #fff;
  margin-left: 8%;
  font-weight: 100;
}

@media (max-aspect-ratio: 7/10) {
  .copyright {
    font-size: 2.34375vw;
    text-align: center;
    margin-left: 0;
    margin-top: 10%;
  }
}
/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slideup_wrap {
  display: block;
  overflow: hidden;
}

.slideup {
  transition: 0.8s !important;
  opacity: 0;
  transition-delay: 0.3s !important;
  transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  transform-origin: bottom;
}

.slideup_af {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.fadein {
  transition: 0.8s !important;
  opacity: 0;
  transition-delay: 0.3s !important;
  transform: translate(0, 10px);
  -webkit-transform: translate(0, 10px);
}

.fadein_af {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/* ↓ ニュースここから　↓ */
.section-News {
  height: 74.21875vw;
  width: 100%;
  margin: 0;
  padding: 18% 0 10%;
  position: relative;
  overflow: hidden;
}
.section-News_title {
  text-shadow: 0 0 15px #666;
  margin: 0 auto 0 10%;
  font-size: 6.25vw;
}
.section-News-shape {
  position: absolute;
  top: 8%;
  left: -4%;
  z-index: -1;
}
.section-News-shape img {
  width: 23.4375vw;
}
.section-News-shape2 {
  position: absolute;
  top: 75%;
  right: -4%;
}
.section-News-shape2 img {
  width: 23.4375vw;
}

@media (max-aspect-ratio: 8/10) {
  .section-News {
    height: 93.75vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  .section-News {
    height: 203.125vw;
    padding: 18% 0 0 0;
  }
  .section-News_title {
    font-size: 9.375vw;
  }
}
.section-News::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #c1c5c7;
  transform: skewY(-7deg) translateY(-120px);
  z-index: -1;
}

.news-list_item {
  margin: 1%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  width: 48%;
}

@media (max-aspect-ratio: 7/10) {
  .news-list_item {
    margin: 3% auto;
    height: 30.625vw;
    width: 98%;
  }
}
.news-list_item:hover {
  opacity: 0.7;
}

.news-list {
  display: flex;
  margin: 1% 4%;
}
.news-list_left {
  width: 40%;
}
.news-list_left img {
  width: 100%;
  height: 100%;
  border-radius: 6px 0 0 6px;
}
.news-list_right {
  color: #444546;
  margin-left: 2%;
  width: 58%;
  padding: 1%;
}
.news-list_date {
  margin-bottom: 4%;
  margin-left: 3%;
  margin-top: 4%;
  font-size: 1.09375vw;
}
.news-list_title {
  margin-bottom: 2%;
  font-weight: 100;
  font-size: 1.25vw;
}
.news-list_text {
  line-height: 120%;
  font-size: 1.09375vw;
}

@media (max-aspect-ratio: 7/10) {
  .news-list {
    display: block;
  }
  .news-list_left {
    width: 49%;
  }
  .news-list_right {
    line-height: 120%;
    width: 50%;
  }
  .news-list_date {
    font-size: 2.8125vw;
    margin-bottom: 0;
    margin-top: 2%;
  }
  .news-list_title {
    font-size: 3.125vw;
  }
  .news-list_text {
    font-size: 3.125vw;
  }
}
.news-list a {
  display: flex;
}

/* ↑ ニュースここまで　↑ */
/* ↓ Aboutここから　↓ */
.section-About {
  height: 113vw;
  width: 100%;
  margin: 0 0 5%;
  padding: 7% 0 9%;
  position: relative;
  overflow: hidden;
}
.section-About_title {
  margin: 0 auto 6% 10%;
  font-size: 6.25vw;
  text-shadow: 0 0 15px #666;
}

@media (max-aspect-ratio: 7/10) {
  .section-About {
    height: 375vw;
    padding: 0;
  }
  .section-About_title {
    font-size: 9.375vw;
  }
}
.section-About::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fafafa;
  transform: skewY(-7deg);
  z-index: -1;
}

.section-About_img1 img {
  left: 17%;
  top: 46%;
  position: absolute;
  width: 30%;
}
.section-About_img2 img {
  left: 56%;
  top: 25%;
  position: absolute;
  width: 34%;
}
.section-About_img3 img {
  left: 56%;
  top: 64%;
  position: absolute;
  width: 34%;
}
.section-About_subtitle span {
  background-color: #000;
  color: #fafafa;
  display: inline-block;
  margin-left: 10%;
  margin-bottom: 1%;
  padding: 1%;
  font-size: 4vw;
  width: 80%;
  text-align: center;
}
.section-About_text {
  color: #555;
  margin-top: 4%;
  margin-left: 10%;
  margin-bottom: 10%;
  font-size: 1.5625vw;
  line-height: 140%;
  width: 80%;
}
.section-About_text2 {
  width: 36%;
  margin-left: 60%;
}
.section-About_textBottom {
  color: #555;
  margin: 0 auto;
  font-size: 1.953125vw;
  font-weight: bold;
  line-height: 116%;
  display: table;
}

@media (max-aspect-ratio: 7/10) {
  .section-About_inner {
    display: block;
  }
  .section-About_left {
    width: 100%;
  }
  .section-About_right {
    width: 100%;
  }
  .section-About_right img {
    left: 12%;
    top: 72%;
    width: 70%;
  }
  .section-About_subtitle span {
    margin-left: 10%;
    font-size: 7vw;
  }
  .section-About_text {
    font-size: 3.90625vw;
    margin-top: 5%;
    margin-left: 4%;
    width: 90%;
  }
  .section-About_text2 {
    margin-left: 0;
    margin-top: 30%;
    margin-bottom: 40%;
    width: 100%;
  }
  .section-About_text3 {
    margin-bottom: 70%;
  }
  .section-About_textBottom {
    font-size: 3.90625vw;
    margin-top: 5%;
    margin-left: 4%;
    width: 90%;
  }
  .section-About_img1 img {
    left: 21%;
    top: 45.5%;
    width: 58%;
  }
  .section-About_img2 img {
    left: 17%;
    top: 25%;
    width: 64%;
  }
  .section-About_img3 img {
    left: 21%;
    top: 77%;
    width: 58%;
  }
}
/* ↑ Aboutここまで　↑ */
/* ↓ Historyここから　↓ */
.width60 {
  width: 60%;
}

.width35 {
  width: 35%;
}

.d-flex {
  display: flex;
}

@media (max-aspect-ratio: 7/10) {
  .width60 {
    width: 100%;
  }
  .width35 {
    width: 0;
  }
}
.section-History {
  height: 109.375vw;
  -webkit-clip-path: polygon(0 calc(0% + 12vw), 100% 0, 100% calc(100% - 12vw), 0 100%);
          clip-path: polygon(0 calc(0% + 12vw), 100% 0, 100% calc(100% - 12vw), 0 100%);
  background: linear-gradient(90deg, #239ac2, #7cd8fd);
  width: 100%;
  margin: 0;
  padding: 18% 0 5%;
  position: relative;
  overflow: hidden;
}
.section-History_title {
  color: #fff;
  margin: 3% auto 0% 10%;
  font-size: 6.25vw;
  text-shadow: 0 0 15px #bcbcbc;
}
.section-History_text {
  color: #fff;
  margin-top: 10%;
  margin-left: 10%;
  margin-bottom: 10%;
  font-size: 1.71875vw;
  line-height: 130%;
}
.section-History_textBottom {
  color: #fff;
  margin: 0 auto;
  font-size: 1.71875vw;
  line-height: 130%;
  display: table;
  width: 90%;
}
.section-History-shape {
  position: absolute;
  top: 3%;
  left: 73%;
}
.section-History-shape img {
  width: 23.4375vw;
}

@media (max-aspect-ratio: 9/10) {
  .section-History {
    padding: 30% 0 0;
  }
}
@media (max-aspect-ratio: 7/10) {
  .section-History {
    height: 281.25vw;
    padding: 28% 0 0;
  }
  .section-History_title {
    font-size: 9.375vw;
  }
  .section-History_text {
    font-size: 3.90625vw;
    margin-top: 5%;
    margin-left: 4%;
    width: 90%;
  }
  .section-History_textBottom {
    font-size: 3.90625vw;
    margin-top: -4%;
    margin-left: 4%;
    width: 90%;
  }
}
/* ↑ Historyここまで　↑ */
/* ↓ Projectsここから　↓ */
.section-Projects {
  height: 125vw;
  width: 100%;
  padding: 24% 0 0%;
  position: relative;
}
.section-Projects_title {
  color: #fff;
  margin: 0 0 7% 10%;
  font-size: 6.25vw;
  text-shadow: 0 0 15px #868686;
}
.section-Projects-shape {
  position: absolute;
  top: -3%;
  right: -2%;
  z-index: -1;
}
.section-Projects-shape img {
  width: 31.25vw;
}

.section-Projects::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #239ac2, #7cd8fd);
  transform: skewY(-7deg) translateY(120px);
  z-index: -1;
}

@media (max-aspect-ratio: 9/10) {
  .section-Projects_title {
    margin: 15% 0 10% 10%;
  }
}
@media (max-aspect-ratio: 9/10) {
  .section-Projects {
    height: 133vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  .section-Projects {
    height: 359.375vw;
  }
  .section-Projects_title {
    color: #fff;
    margin: 30% 0 10% 10%;
    font-size: 9.375vw;
    text-shadow: 0 0 15px #868686;
  }
}
.Projects-list {
  display: flex;
  justify-content: center;
  margin-bottom: 3%;
}
.Projects-list_item {
  width: 25%;
  background-color: #fafafa;
  border-radius: 6px;
  box-shadow: 0 0 10px #fafafa;
  height: 37vw;
  margin: 0 2%;
}
.Projects-list_item:hover {
  opacity: 0.7;
}
.Projects-list_top {
  background-color: #b8b7b7;
  border-radius: 6px 6px 0 0;
}
.Projects-list_top img {
  border-radius: 6px 6px 0 0;
  width: 100%;
  margin: auto;
  display: block;
}
.Projects-list_title {
  color: #000;
  text-align: center;
  font-size: 1.71875vw;
  margin: 5% auto;
}
.Projects-list_text {
  color: #000;
  text-align: center;
  font-size: 1.40625vw;
  padding: 5%;
}

@media (max-aspect-ratio: 7/10) {
  .Projects-list {
    display: block;
  }
  .Projects-list_item {
    width: 75%;
    margin: 0 auto 7%;
    height: 89.84375vw;
  }
  .Projects-list_top {
    height: auto;
  }
  .Projects-list_top img {
    width: 100%;
  }
  .Projects-list_title {
    font-size: 5.078125vw;
  }
  .Projects-list_text {
    font-size: 3.90625vw;
  }
}
.mt5 {
  margin-top: 5%;
}

/* ↑ Projectsここまで　↑ */
/* ↓ Worksここから　↓ */
.section-Works {
  height: 93.75vw;
  position: relative;
}
.section-Works_title {
  margin: 10% 0 6% 10%;
  font-size: 6.25vw;
  text-shadow: 0 0 15px #666;
  color: #313131;
}
.section-Works-shape {
  position: absolute;
  top: -4%;
  left: -6%;
  z-index: -10;
}
.section-Works-shape img {
  width: 31.25vw;
}

@media (max-aspect-ratio: 7/10) {
  .section-Works {
    height: 326vw;
  }
  .section-Works_title {
    font-size: 9.375vw;
    margin: 20% 0 6% 10%;
  }
}
.Works-list {
  display: flex;
  justify-content: center;
  margin-bottom: 3%;
}
.Works-list_item {
  width: 22%;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px #666;
  height: 31.25vw;
  margin: 0 2%;
}
.Works-list_item:hover {
  opacity: 0.7;
}
.Works-list_top {
  border-radius: 6px 6px 0 0;
  height: 15.625vw;
}
.Works-list_top img {
  width: 100%;
  margin: auto;
  display: block;
  border-radius: 6px 6px 0 0;
}
.Works-list_title {
  color: #000;
  text-align: center;
  font-size: 1.71875vw;
  margin: 3% auto 4%;
  line-height: 120%;
}
.Works-list_text {
  color: #000;
  font-size: 1.25vw;
  padding: 0 5% 5%;
  line-height: 120%;
}

@media (max-aspect-ratio: 7/10) {
  .Works-list {
    display: block;
  }
  .Works-list_item {
    width: 75%;
    height: 101vw;
    margin: 0 auto 7%;
  }
  .Works-list_top {
    height: auto;
  }
  .Works-list_top img {
    width: 100%;
  }
  .Works-list_title {
    font-size: 5.078125vw;
  }
  .Works-list_text {
    font-size: 3.90625vw;
  }
}
/* ↑ Worksここまで　↑ */
@media (max-aspect-ratio: 7/10) {
  .display-n {
    display: none;
  }
}
.header-member-logo-img {
  width: 15.625vw;
  padding: 3%;
}

@media (max-aspect-ratio: 7/10) {
  .header-member-logo-img {
    width: 25.78125vw;
  }
}
.about-top {
  margin-left: 15%;
  margin-bottom: 15%;
  position: relative;
}
.about-top-shape {
  position: absolute;
  top: -22%;
  left: 50%;
  z-index: -1;
}
.about-top-shape img {
  width: 23.4375vw;
}
.about-top-shape_1 {
  position: absolute;
  top: 0%;
  left: -12%;
  z-index: -1;
}
.about-top-shape_1 img {
  width: 15.625vw;
}
.about-top-inner {
  margin: 15% 0 10%;
}
.about-title {
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 7.8125vw;
}
.about-subtitle {
  font-weight: 700;
  font-size: 1.5625vw;
  margin-bottom: 2%;
}
.about-h2 {
  font-weight: 700;
  font-size: 3.90625vw;
  margin-bottom: 5%;
}
.about-text {
  font-weight: 550;
  font-size: 1.5625vw;
  margin-bottom: 5%;
  line-height: 160%;
  width: 80%;
}

@media (max-aspect-ratio: 7/10) {
  .about-top {
    margin-left: 10%;
  }
  .about-top-shape img {
    width: 27.34375vw;
  }
  .about-top-shape_1 {
    left: -10%;
  }
  .about-top-shape_1 img {
    width: 24.21875vw;
  }
  .about-top-inner {
    margin: 15% 0 10%;
  }
  .about-title {
    font-size: 10.9375vw;
  }
  .about-subtitle {
    font-size: 3.125vw;
  }
  .about-h2 {
    font-size: 6.25vw;
    width: 80%;
  }
  .about-text {
    font-size: 3.125vw;
    width: 91%;
  }
}
.aboutMain {
  margin-left: 15%;
}

@media (max-aspect-ratio: 7/10) {
  .aboutMain {
    margin-left: 8%;
  }
}
.aboutMain-item {
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  margin-bottom: 7%;
  padding-bottom: 5%;
  width: 80%;
}
.aboutMain-item-h2 {
  font-weight: 700;
  font-size: 3.515625vw;
  width: 34%;
}
.aboutMain-item-right {
  width: 100%;
}
.aboutMain-item-right table tr {
  height: 3.125vw;
  font-size: 1.328125vw;
  text-align: left;
}
.aboutMain-item-right table tr th {
  width: 30%;
}
.aboutMain-item-li {
  display: flex;
  align-items: center;
  margin-bottom: 2%;
}
.aboutMain-item-li img {
  width: 1.5625vw;
  margin-right: 1%;
}
.aboutMain-item-txt {
  font-size: 1.09375vw;
  line-height: 140%;
}

@media (max-aspect-ratio: 7/10) {
  .aboutMain-item {
    display: block;
    width: 92%;
  }
  .aboutMain-item-h2 {
    font-size: 7.03125vw;
    margin-bottom: 5%;
  }
  .aboutMain-item-right table tr {
    font-size: 2.65625vw;
  }
  .aboutMain-item-right table tr th {
    width: 35%;
    line-height: 170%;
  }
  .aboutMain-item-li img {
    width: 3.125vw;
  }
  .aboutMain-item-txt {
    font-size: 2.8125vw;
    font-weight: 600;
    line-height: 155%;
    letter-spacing: 0.1em;
  }
}
.member-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5%;
  margin-bottom: 5%;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-aspect-ratio: 7/10) {
  .member-items {
    display: block;
    margin-top: 5%;
    margin-bottom: 5%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.member-item {
  width: 30%;
}
.member-item-body {
  position: relative;
  margin-top: 8%;
  overflow: hidden;
  font-size: 1.171875vw;
  line-height: 200%;
  transition: height 0.75s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.member-item-body.is-active::before {
  height: 0;
}
.member-item-img img {
  border-radius: 6px;
  box-shadow: 0 0 10px #666;
  width: 19.53125vw;
  margin-bottom: 8%;
  height: 19.53125vw;
}
.member-item-post {
  font-size: 1.015625vw;
  margin-bottom: 4%;
}
.member-item-name {
  display: inline-block;
  font-size: 1.71875vw;
}
.member-item-name-en {
  display: inline-block;
  font-weight: 100;
  font-size: 1.09375vw;
  margin-left: 4%;
}

@media (max-aspect-ratio: 7/10) {
  .member-item {
    width: 82%;
    margin: 0 auto 10%;
  }
  .member-item-img {
    text-align: center;
  }
  .member-item-img img {
    height: 82.03125vw;
    width: 82.03125vw;
  }
  .member-item-post {
    font-size: 3.515625vw;
  }
  .member-item-name {
    font-size: 4.6875vw;
  }
  .member-item-name-en {
    font-size: 3.90625vw;
  }
}
.about-members {
  position: relative;
}
.about-members-shape {
  position: absolute;
  top: -11%;
  left: 80%;
}
.about-members-shape img {
  width: 15.625vw;
}
.about-members-inner {
  margin-bottom: 5%;
}

@media (max-aspect-ratio: 7/10) {
  .about-members-shape {
    top: -1.5%;
    left: 73%;
  }
  .about-members-shape img {
    width: 25.78125vw;
  }
}
.about-member-h2 {
  margin-left: 15%;
  font-weight: 700;
  font-size: 3.90625vw;
  margin-bottom: 5%;
}

@media (max-aspect-ratio: 7/10) {
  .about-member-h2 {
    margin-left: 10%;
    margin-top: 20%;
    font-size: 6.25vw;
  }
}
.accordion__accordionMoreContent {
  display: none;
}

.accordion__text {
  color: #333333;
  font-size: 1.015625vw;
  line-height: 1.6;
}

@media (max-aspect-ratio: 7/10) {
  .accordion__text {
    font-size: 2.65625vw;
  }
}
.accordion__button {
  position: relative;
  display: block;
  width: 70%;
  height: auto;
  margin: 0 auto;
  cursor: pointer;
  z-index: 10;
}

.accordion__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 0.625vw;
  height: 0.625vw;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(135deg);
  margin-top: -3%;
}

@media (max-aspect-ratio: 7/10) {
  .accordion__button::before {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}
.accordion__buttonText {
  display: none;
  color: #ffffff;
  font-size: 1.015625vw;
  line-height: 140%;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(90deg, #7cd8fd, #239ac2);
  border-radius: 10px;
  transition: opacity 0.3s ease 0s;
  padding: 5% 12%;
  box-sizing: border-box;
  margin-top: 10%;
}

@media (max-aspect-ratio: 7/10) {
  .accordion__buttonText {
    font-size: 2.65625vw;
  }
}
.accordion__buttonText:hover {
  opacity: 0.8;
}

/* is-active時（展開時）の切り替え */
.accordion__button.is-active::before {
  transform: rotate(-45deg);
  margin-top: -2px;
}

.accordion__buttonText.is-active {
  display: block;
}

#breadcrumb {
  margin-top: 9%;
  padding: 2% 4%;
}

.breadcrumb_list {
  display: ruby;
}

.breadcrumb_item {
  font-size: 1.25vw;
  color: #666666;
}

.breadcrumb_item a {
  color: #666666;
  position: relative;
  font-size: 1.25vw;
}

.breadcrumb_item a span {
  text-decoration: underline;
  margin: 0 1%;
}

.breadcrumb_item a::after {
  content: "／";
  padding-left: 2%;
  padding-right: 2%;
  display: contents;
}

#news_detail_contents {
  padding-top: 5%;
  text-align: left;
}

.inner {
  width: 70%;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.news_detail_ttlarea {
  text-align: left;
}

.news_detail_date {
  font-size: 1.25vw;
}

.common_news_icon {
  margin-left: 1%;
}

.new {
  border: 1px solid #E23838;
  color: #E23838;
}

.news_detail_ttl {
  font-size: 2.5vw;
  padding-top: 2%;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #848484;
  padding-bottom: 1.5%;
  margin-bottom: 3%;
}

.news_detail_normal_txt {
  text-align: left;
  font-size: 1.40625vw;
  font-weight: 100;
  line-height: 140%;
  color: #555;
}

.news_detail_img {
  width: 60%;
  margin: auto;
}

.news_detail_back_btn {
  margin-top: 3%;
  margin-bottom: 10%;
}

.common_back_btn {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  color: #555;
  font-size: 1.5625vw;
  letter-spacing: 0.1em;
  padding: 2% 5%;
}

@media (max-aspect-ratio: 7/10) {
  .inner {
    width: 84%;
  }
  #breadcrumb {
    margin-top: 18%;
  }
  .breadcrumb_item {
    font-size: 2.65625vw;
  }
  .breadcrumb_item a {
    font-size: 2.65625vw;
  }
  .news_detail_date {
    font-size: 2.96875vw;
  }
  .news_detail_ttl {
    font-size: 4.53125vw;
  }
  .news_detail_normal_txt {
    font-size: 2.96875vw;
  }
  .common_back_btn {
    font-size: 3.125vw;
  }
}

@media (max-aspect-ratio: 7/10) {
  .br-sp { display:none; }
}
.mt0 {
  margin-top: 0!important;
}
@media (max-aspect-ratio: 7/10) {
  .mt0 { 
    margin-top: 55%!important;
  }
}
/*# sourceMappingURL=style.css.map */