@charset "UTF-8";

/* ------------------------------------- */

/* フォント
/* ------------------------------------- */

/* ------------------------------------- */

/* カラー
/* ------------------------------------- */

/* ------------------------------------- */

/* メディアクエリ
/* ------------------------------------- */

/* ------------------------------------- */

/* z-index
/* ------------------------------------- */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  position: relative;
  height: 100%;
}

body {
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  color: #000;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: #000;
  cursor: pointer;
}

.inner {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}

.en {
  font-family: "Alegreya Sans", sans-serif;
}

main {
  padding-top: 100px;
}

/* ------------------------------------- */

/* footer
/* ------------------------------------- */

.fixed-button {
  -webkit-transform: translateX(-50%);
  display: none;
  z-index: 10;
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: 100%;
  max-width: 600px;
  transform: translateX(-50%);
}

#requirement .fixed-button {
  display: none !important;
}

.fixed-button a {
  -webkit-transition: color 0.3s, border-color 0.3s;
  display: block;
  width: 100%;
  padding: 18px 10px;
  border: double 4px #000;
  border-radius: 100px;
  background-color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: color 0.3s, border-color 0.3s;
}

.fixed-button a span {
  display: block;
  font-style: italic;
  font-size: 60px;
  font-family: "Alegreya Sans", sans-serif;
}

.footer {
  padding: 120px 20px 140px;
  background-color: #666666;
}

.footer-logo {
  max-width: 800px;
  margin: 0 auto;
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  margin: 50px auto 0;
  margin-top: 40px;
  gap: 55px;
}

.footer-head {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.footer-nav {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.footer-nav-item {
  font-size: 14px;
}

.footer-nav-item:not(:first-child) {
  margin-top: 35px;
}

.footer-nav-item a {
  -webkit-transition: opacity 0.3s;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  font-weight: 500;
  transition: opacity 0.3s;
}

.footer-nav-item a svg {
  display: none;
}

.footer-nav-item .en {
  display: block;
  margin-top: 4px;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
}

.footer-nav-item .number {
  margin-left: 30px;
}

.footer-nav-item .number:not(:first-child) {
  margin-left: 10px;
}

/* ------------------------------------- */

/* header
/* ------------------------------------- */

.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
}

.header .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  max-width: 100%;
  height: inherit;
  padding: 0 50px;
}

.header-logo {
  width: 30%;
  max-width: 500px;
}

.header-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: auto;
}

.header-nav-list {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: end;
  gap: 30px;
}

.header-nav-item {
  font-weight: 500;
  font-size: 10px;
}

.header-nav-item a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header-nav-item span {
  display: block;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
}

.header-nav-item.is-corporate span {
  font-weight: 300;
}

.burger {
  display: none;
  z-index: 21;
  position: relative;
  width: 30px;
  height: 22px;
  margin-left: auto;
}

.burger span {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
  background-color: #000;
  transition: all 0.3s ease 0s;
}

.burger .bar2 {
  margin-top: -9px;
}

.burger .bar3 {
  margin-top: 9px;
}

.burger.is-active .bar1 {
  -webkit-transform: translate(-50%, 0px) rotate(45deg);
  -webkit-transition: all 0.3s ease 0s;
  transform: translate(-50%, 0px) rotate(45deg);
  transition: all 0.3s ease 0s;
}

.burger.is-active .bar2 {
  -webkit-transition: opacity 0.3s;
  opacity: 0;
  transition: opacity 0.3s;
}

.burger.is-active .bar3 {
  -webkit-transform: translate(-50%, 0px) rotate(135deg);
  -webkit-transition: all 0.3s ease 0s;
  margin-top: 0;
  transform: translate(-50%, 0px) rotate(135deg);
  transition: all 0.3s ease 0s;
}

.burger-content {
  -webkit-backdrop-filter: blur(50px);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  display: none;
  z-index: 21;
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  height: 100dvh;
  padding-top: 30px;
  backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0.8);
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.burger-content.is-active {
  -webkit-transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transform: translateX(0);
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.burger-nav-item:not(:first-child) {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.burger-nav-item a {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 20px;
  font-weight: 500;
  font-size: 10px;
}

.burger-nav-item a::after {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 12px;
  transform: translateY(-50%);
  background: url(/img/common/arrow_right.svg) no-repeat center center/contain;
  content: "";
}

.burger-nav-item a span.en {
  display: block;
  margin-top: 5px;
  font-style: italic;
  font-size: 20px;
  font-family: "Alegreya Sans", sans-serif;
}

.burger-nav-item a span.number {
  margin-left: 15px;
}

.burger-nav-item.is-corporate a span.en {
  font-weight: 300;
}

/* ------------------------------------- */

/* button
/* ------------------------------------- */

.p_button {
  width: 100%;
  max-width: 400px;
}

.p_button a {
  -webkit-transition: color 0.3s, border-color 0.3s;
  display: block;
  width: 100%;
  padding: 12px 10px;
  border: solid 1px #000;
  border-radius: 100px;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  transition: color 0.3s, border-color 0.3s;
}

/* ------------------------------------- */

/* lower
/* ------------------------------------- */

/* lower-mv */

.lower-mv {
  margin-top: 120px;
}

.lower-mv .inner {
  position: relative;
}

.lower-mv-info {
  z-index: 1;
  position: relative;
}

.lower-mv-title {
  font-weight: 500;
  font-size: 24px;
}

.lower-mv-title span {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 140px;
}

.lower-mv-text {
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
}

.lower-mv-button {
  margin-top: 40px;
}

.lower-mv-image {
  position: absolute;
  top: 0;
  right: 15px;
  max-width: 550px;
}

/* lower-section-title */

.lower-section-title {
  font-weight: 500;
  font-size: 14px;
}

.lower-section-title span {
  display: block;
  margin-top: 5px;
  font-style: italic;
  font-size: 80px;
}

/* ------------------------------------- */

/* swiper-button
/* ------------------------------------- */

.swiper-button-next,
.swiper-button-prev {
  -webkit-transition: border-color 0.3s;
  width: 60px;
  height: 30px;
  border: solid 1px #000;
  border-radius: 100px;
  background-color: #fff;
  transition: border-color 0.3s;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  -webkit-transition: fill 0.3s;
  width: 20px;
  transition: fill 0.3s;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  right: 80px;
  left: initial;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}

/* ------------------------------------- */

/* environment
/* ------------------------------------- */

/* message */

.message {
  margin-top: 145px;
}

.message .lower-section-title {
  position: relative;
}

.message-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 164px;
}

.message-text {
  font-size: 16px;
  line-height: 2.5;
}

.message-text br.sp {
  display: none;
}

.message-text:first-of-type {
  margin-top: 50px;
}

.message-text:not(:first-of-type) {
  margin-top: 30px;
}

.message-name {
  margin-top: 60px;
  font-weight: 700;
  font-size: 18px;
  text-align: right;
}

.message-name br {
  display: none;
}

/* vision */

.vision {
  margin-top: 145px;
}

.vision-text {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.vision-program {
  margin-top: 40px;
}

.vision-position {
  margin-top: 20px;
}

/* work-style */

.work-style {
  margin-top: 145px;
  padding-bottom: 240px;
}

.work-style-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.work-style-title {
  margin-top: 60px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

.work-style-list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: 35px auto 0;
  gap: 45px 20px;
  max-width: 900px;
}

.work-style-item {
  width: calc((100% / 3) - 14px);
}

.work-style-item figure {
  padding: 30px 30px 20px;
  background-color: #ddffff;
}

.work-style-item figcaption {
  margin-top: 40px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}

.work-style-item-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.work-style-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  gap: 20px;
}

.work-style-box {
  width: calc(50% - 10px);
  padding: 20px 15px;
  border: solid 2px #0033cc;
}

.work-style-box-title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.work-style-box-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

/* 20240401_修正追加 */
.work-style-table {
  flex-direction: column;
  overflow-y: hidden !important;
}

.work-style-table table {
  border-collapse: collapse;
}

.work-style-th,
.work-style-sub-th,
.work-style-td {
  border-collapse: collapse;
  border: solid 1px #000;
}

.work-style-th {
  background-color: #ddffff;
  font-weight: 700;
  padding: 20px;
  text-align: center;
}

.work-style-sub-th {
  background-color: #ddffff;
  font-weight: 700;
  padding: 25px;
  text-align: center;
  width: 240px;
  line-height: 1.4;
}

.work-style-td {
  padding: 25px;
  text-align: right;
  vertical-align: middle;
}

.work-style-caution {
  font-size: 12px;
}

/* ------------------------------------- */
/* requirement
/* ------------------------------------- */

.requirement-lower-mv .lower-mv-text {
  margin-top: 160px;
}

.requirement {
  margin-top: 145px;
  padding-bottom: 240px;
}

.requirement-item-head {
  padding-bottom: 15px;
  border-bottom: solid 1px #000;
  pointer-events: none;
}

.requirement-item-head.is-open .requirement-title span.main::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s;
  transform: translateY(-50%) rotate(0deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.requirement-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}

.requirement-title span.main {
  display: block;
  position: relative;
  font-weight: 700;
}

.requirement-title span.main::before,
.requirement-title span.main::after {
  display: none;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 14px;
  height: 1px;
  background-color: #000;
  content: "";
}

.requirement-title span.main::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.requirement-title span.main::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transform: translateY(-50%) rotate(90deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.requirement-title span.new {
  margin-left: auto;
  color: #0033cc;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
}

.requirement-item:not(:first-child) {
  margin-top: 50px;
}

.requirement-item-body {
  padding-top: 30px;
}

.requirement-text {
  line-height: 1.3;
}

.requirement-wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

.requirement-detail-list {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  width: 54.5%;
  max-width: 600px;
  gap: 15px;
}

.requirement-detail-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.requirement-detail-item:not(:last-child) {
  width: calc(33.33% - 10px);
}

.requirement-detail-item:last-child {
  width: 100%;
}

.requirement-detail-title {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
}

.requirement-detail-text {
  font-size: 16px;
  line-height: 1.5;
}

.requirement-button-area {
  width: 36.5%;
  min-width: 300px;
  max-width: 400px;
}

.requirement-button {
  width: 100%;
}

.requirement-button a {
  display: block;
  width: 100%;
  padding: 12px 10px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

.requirement-button.is-file a {
  border: solid 1px #000;
  background-color: #dcfbfb;
  color: #000;
}

.requirement-button.is-file a span {
  font-weight: 500;
  font-size: 16px;
}

.requirement-button.is-form {
  margin-top: 20px;
}

.requirement-button.is-form a {
  border: solid 1px #0033cc;
  border-color: #0033cc;
  background-color: #0033cc;
  color: #fff;
}

/* ------------------------------------- */

/* top
/* ------------------------------------- */

/* common */

.top section {
  margin-top: 150px;
}

.top .header-logo {
  display: none;
}

.top-logo {
  z-index: 21;
  position: absolute;
  top: 0;
  left: 0;
  width: 15.6vw;
  max-width: 300px;
  text-align: center;
}

.top-logo img {
  max-width: 178px;
  height: 100%;
}

/* section-title */

.section-title {
  font-weight: 500;
  font-size: 14px;
}

.section-title span {
  display: block;
  margin-top: 5px;
  font-style: italic;
  font-size: 80px;
}

/* mv */

.top section.mv {
  margin-top: 40px;
}

.mv {
  width: 100%;
  overflow: hidden;
}

.mv-copy {
  padding: 0 50px;
  font-weight: 300;
  font-size: 50px;
  text-align: right;
}

.mv-copy span {
  font-style: italic;
  font-weight: 500;
}

.mv-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 850px;
  margin-top: 40px;
}

.mv-title {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 16%;
  min-width: 200px;
  max-width: 300px;
  padding-top: 80px;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.6;
  font-family: "Shippori Mincho B1", serif;
  writing-mode: vertical-rl;
}

.mv-title br.lg {
  display: none;
}

.mv-slide {
  width: 85%;
  height: 100%;
}

.mv-swiper {
  height: 100%;
}

.mv .slide-image {
  height: 100%;
}

.mv .slide-image img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/* about */

.about .inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.about-info {
  width: 43%;
  max-width: 450px;
}

.about-text {
  margin-top: 40px;
  line-height: 1.8;
  text-align: justify;
}

.about-image {
  width: 56%;
  max-width: 616px;
}

/* personality */

.personality .inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.personality-info {
  width: 55%;
  max-width: 600px;
}

.personality-image {
  width: 41%;
  max-width: 450px;
}

.personality-list {
  margin-top: 20px;
}

.personality-item {
  width: 100%;
  padding: 10px;
  border-radius: 100px;
  background-color: #dcfbfb;
  font-size: 20px;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
  line-height: 1.3;
}

.personality-item br {
  display: none;
}

.personality-item:not(:first-child) {
  margin-top: 10px;
}

.personality-message {
  margin-top: 30px;
}

.personality-message-title {
  color: #0033cc;
  font-weight: 700;
  font-size: 20px;
}

.personality-message-text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.personality-name {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 20px;
  gap: 25px;
}

.personality-name span {
  font-size: 15px;
}

.personality-name img {
  max-width: 200px;
}

/* project */

.project .inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.project-info {
  position: relative;
  width: 41%;
  max-width: 450px;
}

.project-info-wrap {
  width: 100%;
}

.project-button {
  position: absolute;
  bottom: 0;
  left: 0;
}

.project-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: initial;
  right: 30px;
  bottom: 180px;
  gap: 10px;
}

.project-image {
  position: relative;
  width: 57%;
  max-width: 650px;
}

.project-image::after {
  z-index: 1;
  position: absolute;
  top: 0;
  right: -2px;
  width: 100px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%);
  content: "";
}

.project-slide-wrap {
  position: absolute;
  bottom: 80px;
  width: 100%;
}

.project .slide-text {
  -webkit-transition: opacity 0.3s;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  transition: opacity 0.3s;
}

.project .slide-text span {
  display: block;
  font-weight: 500;
}

.project .swiper.is-image {
  padding-right: 31%;
}

.project .slide-image a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.project .swiper-button-next,
.project .swiper-button-prev {
  position: static;
}

/* environment */

.environment .inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.environment-info {
  width: 41%;
  max-width: 450px;
}

.environment-text {
  margin-top: 30px;
  line-height: 1.8;
  text-align: justify;
}

.environment-button {
  margin-top: 20px;
}

.environment-image {
  width: 55%;
  max-width: 600px;
}

/* voice */

.top .voice {
  display: block;
  padding-bottom: 150px;
}

.top .voice .voice-slide {
  position: relative;
  margin-top: 50px;
}

.top .voice .voice-slide::before,
.top .voice .voice-slide::after {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  content: "";
}

.top .voice .voice-slide::before {
  left: -2px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%);
}

.top .voice .voice-slide::after {
  right: -2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 100%);
}

.top .voice .slide-wrap {
  width: 100%;
  max-width: 400px;
}

.top .voice .slide-wrap a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.top .voice .slide-head {
  aspect-ratio: 400/460;
}

.top .voice .slide-text {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
}

.top .voice .slide-text span {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.top .voice .swiper-slide {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

.top .voice-button-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transform: translateX(-50%);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: relative;
  top: 0;
  top: 15px;
  left: 50%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}

.top .voice .swiper-button-next,
.top .voice .swiper-button-prev {
  position: static;
  top: 0;
  bottom: 0;
}

.top .voice-title {
  max-width: 480px;
  margin: 45px auto 0;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.6;
  font-family: "Shippori Mincho B1", serif;
}

/* ------------------------------------- */

/* voice
/* ------------------------------------- */

main#voice {
  padding-bottom: 240px;
}

.voice-tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 150px;
  gap: 40px;
}

.voice-tab-item {
  width: calc(25% - 30px);
}

.voice-tab-item a {
  -webkit-transition: opacity 0.3s;
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}

.voice-tab-item-head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 30px;
}

.voice-tab-item-head span {
  color: #dcfbfb;
  font-style: italic;
  font-weight: 500;
  font-size: 80px;
}

#voice .voice {
  margin-top: 140px;
  padding-top: 60px;
  overflow-x: hidden;
}

#voice .voice-catch {
  z-index: 1;
  position: relative;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.7;
  font-family: "Shippori Mincho B1", serif;
}

#voice .voice-catch br.sp {
  display: none;
}

#voice .voice-catch span {
  z-index: -1;
  position: absolute;
  top: -160px;
  right: 0;
  color: #dcfbfb;
  font-style: italic;
  font-weight: 500;
  font-size: 200px;
}

#voice .voice-main-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 30px;
}

#voice .voice-main-image picture {
  max-width: 900px;
  margin-left: auto;
}

#voice .voice-position {
  position: absolute;
  bottom: 20px;
  left: 0;
  border-bottom: solid 2px #0033cc;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

#voice .voice-position span {
  font-weight: 700;
  font-size: 16px;
}

#voice .voice-wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
}

#voice .voice-wrap.-second {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

#voice .voice-info {
  width: 50%;
  max-width: 550px;
}

#voice .voice-info-title {
  font-weight: 700;
  font-size: 25px;
}

#voice .voice-info-title:nth-of-type(2) {
  margin-top: 60px;
}

#voice .voice-info-text {
  margin-top: 45px;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

#voice .voice-image {
  width: 45%;
  max-width: 500px;
}

#voice .voice-message-title {
  color: #0033cc;
  font-weight: 700;
  font-size: 20px;
  text-align: right;
}

@media screen and (max-width: 1400px) {
  .header-nav-item span {
    font-size: 18px;
  }
}

@media screen and (max-width: 1280px) {
  .header .inner {
    padding: 0 30px;
  }

  .mv-copy {
    padding: 0 30px;
    font-size: 38px;
  }

  .mv-title {
    font-size: 45px;
  }

  .voice-tab-item-head {
    font-size: 26px;
  }

  .voice-tab-item-head span {
    font-size: 75px;
  }
}

@media screen and (max-width: 1024px) {
  main {
    padding-top: 60px;
  }

  .header {
    height: 60px;
  }

  .header-wrap {
    display: none;
  }

  .header-nav-list {
    gap: 20px;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  .lower-mv .inner {
    padding: 0;
  }

  .lower-mv-info {
    padding-left: 8%;
  }

  .lower-mv-title span {
    margin-top: 10px;
    font-size: 120px;
  }

  .lower-mv-title span br {
    display: none;
  }

  .lower-mv-text br.pc {
    display: none;
  }

  .lower-mv-image {
    position: static;
    max-width: 91.7%;
    margin: 40px 0 0 auto;
  }

  .work-style-item figure {
    padding: 20px 14px 20px;
  }

  .work-style-item figcaption {
    font-size: 14px;
    white-space: initial;
  }

  .work-style-item-text {
    font-size: 12px;
  }

  .requirement-lower-mv .lower-mv-text {
    margin-top: 80px;
  }

  .top .header-logo {
    display: block;
  }

  .top-logo {
    display: none;
  }

  .section-title span {
    font-size: 60px;
  }

  .section-title br {
    display: none;
  }

  .top section.mv {
    margin-top: 45px;
  }

  .mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }

  .mv-copy {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 17px;
    padding: 0 0 0 8%;
    line-height: 1.625;
    text-align: left;
  }

  .mv-copy span {
    display: block;
  }

  .mv-wrap {
    display: contents;
  }

  .mv-title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    order: 1;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    padding-left: 8%;
    line-height: 1.6666666667;
    writing-mode: horizontal-tb;
  }

  .mv-title br.lg {
    display: block;
  }

  .mv-slide {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 92%;
    margin-top: 50px;
    margin-left: auto;
  }

  .about-text {
    margin-top: 30px;
    font-size: 14px;
  }

  .personality-item {
    font-size: 20px;
  }

  .personality-message-title {
    font-size: 16px;
  }

  .personality-message-text {
    font-size: 16px;
  }

  .project-button-wrap {
    right: 15px;
    bottom: 150px;
  }

  .project .slide-text {
    font-size: 14px;
  }

  .project .swiper.is-image {
    padding-right: 25%;
  }

  .environment-text {
    font-size: 14px;
  }

  .voice-tab-list {
    gap: 20px;
  }

  .voice-tab-item {
    width: calc(25% - 15px);
  }

  .voice-tab-item-head {
    font-size: 20px;
  }

  .voice-tab-item-head span {
    font-size: 46px;
  }

  #voice .voice-catch {
    font-size: 36px;
  }

  #voice .voice-catch br.sp {
    display: block;
  }

  #voice .voice-catch span {
    top: -80px;
    font-size: 160px;
  }

  #voice .voice-main-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #voice .voice-main-image picture {
    width: 100vw;
    max-width: 100vw;
    margin: 30px calc(50% - 50vw) 0;
    padding-left: 15px;
  }

  #voice .voice-position {
    position: static;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 18px;
  }

  #voice .voice-info-title {
    font-size: 20px;
  }

  #voice .voice-info-text {
    margin-top: 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 30px;
  }

  .fixed-button {
    max-width: 75%;
  }

  .fixed-button a {
    padding: 6px 10px;
  }

  .fixed-button a span {
    font-size: 50px;
  }

  .footer-head {
    font-size: 18px;
  }

  .footer-nav-item {
    font-size: 12px;
  }

  .footer-nav-item .en {
    font-size: 24px;
  }

  .header-logo {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .lower-mv {
    margin-top: 60px;
  }

  .lower-mv-title {
    font-size: 20px;
  }

  .lower-mv-title span {
    font-size: 80px;
  }

  .lower-mv-text {
    font-size: 18px;
  }

  .lower-section-title span {
    margin-top: 10px;
    font-size: 64px;
  }

  .message {
    margin-top: 100px;
  }

  .message .lower-section-title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 100px;
  }

  .message-logo {
    -webkit-transform: translateY(-50%);
    top: 50%;
    max-width: 80px;
    transform: translateY(-50%);
  }

  .message-text {
    font-size: 14px;
    line-height: 2;
  }

  .message-text br.pc {
    display: none;
  }

  .message-text br.sp {
    display: block;
  }

  .message-name {
    margin-top: 50px;
    font-size: 14px;
    line-height: 1.8;
  }

  .message-name br {
    display: block;
  }

  .vision {
    top: 100px;
  }

  .vision-text {
    margin-top: 30px;
    font-size: 14px;
  }

  .work-style {
    margin-top: 100px;
    padding-bottom: 125px;
  }

  .work-style-text {
    font-size: 14px;
  }

  .work-style-title {
    margin-top: 30px;
    font-size: 24px;
  }

  .work-style-list {
    gap: 25px 18px;
  }

  .work-style-item {
    width: calc(50% - 9px);
  }

  .work-style-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .work-style-box {
    width: 100%;
  }

  /* 20240401_修正 */
  .work-style-table table {
    width: 500px;
  }

  .work-style-th,
  .work-style-td,
  .work-style-sub-th {
    padding: 20px 10px;
    font-size: 14px;
  }

  .work-style-sub-th {
    width: 150px;
  }

  .requirement-item-head {
    pointer-events: initial;
  }

  .requirement-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column-reverse;
    align-items: start;
    font-size: 20px;
  }

  .requirement-title span.main {
    width: 100%;
    padding-right: 30px;
  }

  .requirement-title span.main::before,
  .requirement-title span.main::after {
    display: block;
  }

  .requirement-title span.new {
    margin-left: 0;
    font-size: 20px;
  }

  .requirement-item-body {
    display: none;
  }

  .requirement-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .requirement-detail-list {
    width: 100%;
    max-width: 100%;
    gap: 0;
  }

  .requirement-detail-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    border-top: solid 1px #e4e4e4;
  }

  .requirement-detail-item:not(:last-child) {
    width: 100%;
  }

  .requirement-detail-item:last-child {
    border-bottom: solid 1px #e4e4e4;
  }

  .requirement-detail-title {
    width: 33%;
    font-size: 16px;
  }

  .requirement-detail-text {
    width: 66%;
  }

  .requirement-button-area {
    width: 100%;
    min-width: 0;
    max-width: 275px;
    margin: 0 auto;
  }

  .requirement-button a {
    font-size: 16px;
  }

  .requirement-button.is-file a span {
    font-size: 12px;
  }

  .requirement-button.is-form {
    margin-top: 10px;
  }

  .mv-copy {
    font-size: 30px;
  }

  .mv-title {
    font-size: 42px;
  }

  .about .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-info {
    width: 100%;
    max-width: 100%;
  }

  .about-image {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  .personality .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .personality-info {
    width: 100%;
    max-width: 100%;
  }

  .personality-image {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  .project .section-title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .project .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .project-info {
    display: contents;
  }

  .project-info-wrap {
    display: contents;
  }

  .project-button {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    position: static;
    order: 5;
    margin: 20px auto 0;
  }

  .project-button-wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    position: static;
    order: 2;
    margin-top: 60px;
  }

  .project-image {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    max-width: 100%;
  }

  .project-image::after {
    display: none;
  }

  .project-slide-wrap {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    position: static;
    order: 4;
    margin-top: 20px;
  }

  .project .slide-text span {
    display: inline-block;
  }

  .project .swiper.is-image {
    margin-top: 20px;
    padding-right: 0;
  }

  .environment .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .environment-info {
    width: 100%;
    max-width: 100%;
  }

  .environment-button {
    margin: 30px auto 0;
  }

  .environment-image {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  .top .voice .voice-slide::before,
  .top .voice .voice-slide::after {
    display: none;
  }

  .top .voice .slide-wrap {
    max-width: 100%;
  }

  .top .voice .slide-text {
    margin-top: 20px;
    text-align: left;
  }

  .top .voice .slide-text span {
    display: inline-block;
    margin-right: 1em;
  }

  .top .voice .swiper-slide {
    width: 100% !important;
  }

  .top .voice-button-wrap {
    -webkit-transform: initial;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    top: 0;
    left: 0;
    justify-content: start;
    margin-bottom: 20px;
    transform: initial;
  }

  .top .voice-title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-top: 10px;
    font-size: 26px;
  }

  main#voice {
    padding-bottom: 140px;
  }

  .voice-tab-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  .voice-tab-item {
    width: calc(50% - 5px);
    border-top: solid 1px #e4e4e4;
    cursor: pointer;
  }

  .voice-tab-item:nth-child(3),
  .voice-tab-item:nth-child(4) {
    border-bottom: solid 1px #e4e4e4;
  }

  .voice-tab-item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: start;
    padding: 15px 10px;
    pointer-events: none;
  }

  .voice-tab-item-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column-reverse;
    align-items: start;
    margin-left: 10px;
  }

  .voice-tab-item-head span {
    font-size: 24px;
  }

  .voice-tab .inner {
    padding: 0;
  }

  .voice-tab-item-image {
    width: 27%;
    min-width: 44px;
  }

  #voice .voice {
    display: none;
    margin-top: 80px;
    padding-top: 0;
  }

  #voice .voice.voice01 {
    display: block;
  }

  #voice .voice-catch {
    font-size: 30px;
  }

  #voice .voice-catch span {
    top: -70px;
    font-size: 130px;
  }

  #voice .voice-main-image picture {
    padding-left: 30px;
  }

  #voice .voice-position span {
    font-size: 14px;
  }

  #voice .voice-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
  }

  #voice .voice-wrap.-second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #voice .voice-info {
    width: 100%;
    max-width: 100%;
  }

  #voice .voice-image {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  #voice .voice-image.-message {
    width: 100vw;
    max-width: 100vw;
    margin: 30px calc(50% - 50vw) 0;
  }

  #voice .voice-message-title {
    text-align: left;
  }
}

@media screen and (max-width: 576px) {
  .fixed-button {
    max-width: 82%;
  }

  .fixed-button a {
    font-size: 12px;
  }

  .fixed-button a span {
    font-size: 30px;
  }

  .footer {
    padding: 80px 0;
  }

  .footer-logo {
    max-width: 83%;
  }

  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 25px;
    gap: 40px;
  }

  .footer-head {
    font-size: 14px;
    text-align: center;
  }

  .footer-nav {
    border-bottom: solid 1px #9d9d9d;
  }

  .footer-nav-item {
    border-top: solid 1px #9d9d9d;
    font-size: 10px;
  }

  .footer-nav-item:not(:first-child) {
    margin-top: 0;
  }

  .footer-nav-item a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
  }

  .footer-nav-item a svg {
    fill: #fff;
    display: block;
    width: 14px;
    height: 12px;
  }

  .footer-nav-item .en {
    font-size: 20px;
  }

  .footer-nav-item .number {
    margin-left: 15px;
  }

  .footer-nav-item .number:not(:first-child) {
    margin-left: 15px;
  }

  .header .inner {
    padding: 0 20px;
  }

  .p_button {
    max-width: 73%;
  }

  .p_button a {
    font-size: 16px;
  }

  .lower-mv-info {
    padding: 0 30px;
  }

  .lower-mv-title {
    font-size: 12px;
  }

  .lower-mv-title span {
    font-size: 45px;
  }

  .lower-mv-text {
    font-size: 10px;
  }

  .lower-mv-button {
    max-width: 315px;
  }

  .lower-mv-button a {
    font-size: 12px;
  }

  .lower-mv-image {
    max-width: 100%;
    padding-left: 30px;
  }

  .lower-section-title {
    font-size: 12px;
  }

  .lower-section-title span {
    font-size: 38px;
  }

  .message .lower-section-title {
    padding-right: 90px;
  }

  .message-logo {
    max-width: 56px;
  }

  .vision-program img {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 630px;
    padding-bottom: 1em;
  }

  .vision-position img {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 630px;
    padding-bottom: 1em;
  }

  .work-style-title {
    font-size: 18px;
  }

  .work-style-item figure {
    padding: 17px 10px 17px;
  }

  .work-style-item figcaption {
    margin-top: 20px;
    font-size: 12px;
  }

  .work-style-item-text {
    font-size: 10px;
  }

  .work-style-item-text br.pc {
    display: none;
  }

  .work-style-box-title {
    font-size: 16px;
  }

  .work-style-box-text {
    margin-top: 10px;
    font-size: 12px;
  }

  .work-style-box-text br.pc {
    display: none;
  }

  .requirement-lower-mv .lower-mv-text {
    margin-top: 20px;
  }

  .requirement {
    margin-top: 90px;
    padding-bottom: 120px;
  }

  .requirement-title {
    font-size: 16px;
  }

  .requirement-title span.main::before,
  .requirement-title span.main::after {
    width: 10px;
  }

  .requirement-title span.new {
    font-size: 12px;
  }

  .requirement-item-body {
    padding-top: 20px;
  }

  .requirement-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .requirement-wrap {
    margin-top: 20px;
  }

  .requirement-detail-title {
    font-size: 12px;
  }

  .requirement-detail-text {
    font-size: 12px;
  }

  .top section {
    margin-top: 100px;
  }

  .section-title {
    font-size: 12px;
  }

  .section-title span {
    font-size: 38px;
  }

  .mv-copy {
    font-size: 16px;
  }

  .mv-title {
    font-size: 30px;
  }

  .personality-item {
    font-size: 18px;
  }

  .personality-item br {
    display: block;
  }

  .personality-message-text {
    font-size: 14px;
  }

  .personality-message-text br {
    display: none;
  }

  .personality-name span {
    font-size: 12px;
  }

  .personality-name img {
    max-width: 132px;
  }

  .top .voice {
    padding-bottom: 100px;
  }

  .top .voice-title {
    font-size: 18px;
  }

  .voice-tab-list {
    margin-top: 100px;
  }

  .voice-tab-item-head {
    font-size: 16px;
  }

  .voice-tab-item-head span {
    font-size: 16px;
  }

  #voice .voice-catch {
    font-size: 18px;
  }

  #voice .voice-catch span {
    top: -45px;
    font-size: 90px;
  }

  #voice .voice-main-image {
    margin-top: 10px;
  }

  #voice .voice-position {
    font-size: 12px;
  }

  #voice .voice-position span {
    font-size: 10px;
  }

  #voice .voice-info-title {
    font-size: 16px;
  }

  #voice .voice-message-title {
    font-size: 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .fixed-button a:hover {
    -webkit-transition: color 0.3s, border-color 0.3s;
    border-color: #0033cc;
    color: #0033cc;
    transition: color 0.3s, border-color 0.3s;
  }

  .footer-nav-item a:hover {
    -webkit-transition: opacity 0.3s;
    opacity: 0.7;
    transition: opacity 0.3s;
  }

  .header-nav-item a:hover {
    -webkit-transition: color 0.3s;
    color: #0033cc;
    transition: color 0.3s;
  }

  .p_button a:hover {
    -webkit-transition: color 0.3s, border-color 0.3s;
    border-color: #0033cc;
    color: #0033cc;
    transition: color 0.3s, border-color 0.3s;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    -webkit-transition: border-color 0.3s;
    border-color: #0033cc;
    transition: border-color 0.3s;
  }

  .swiper-button-next:hover svg,
  .swiper-button-prev:hover svg {
    fill: #0033cc;
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }

  .project .slide-text:hover {
    -webkit-transition: opacity 0.3s;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  .project .slide-image a:hover {
    -webkit-transition: opacity 0.3s;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  .top .voice .slide-wrap a:hover {
    -webkit-transition: opacity 0.3s;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  .voice-tab-item a:hover {
    -webkit-transition: opacity 0.3s;
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
/*# sourceMappingURL=style.css.map */
