@charset "UTF-8";
/* ----------------------------------------
// バレーサイト チーム＆チーム概要 2024CSS
// Sassからコンパイルしています
// ----------------------------------------*/
.volleyMainArea .ttlVolleyLv1 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .volleyMainArea .ttlVolleyLv1 {
    margin-bottom: 6vw;
  }
}
.volleyMainArea .teamLinkArea {
  background-color: #F1F4F3;
  padding: 55px 0 40px;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea {
    padding: 11vw 4vw 5vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList {
  justify-content: center;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li {
    margin-bottom: 5vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li.homeTown {
    margin-bottom: 5vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li.homeTown a {
    flex-direction: column-reverse;
    padding-bottom: 3vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a:hover {
  opacity: 1;
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a:hover .txtName p {
  opacity: 1;
  text-decoration: underline;
  color: #00A273;
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a:hover .txtName span {
  opacity: 1;
  color: #00A273;
}
@media (min-width: 768px) {
  .volleyMainArea .teamLinkArea .teamLinkList li.homeTown a:hover .txtName span::after {
    animation: teamHtLinkArrowBlack 0.3s steps(9) forwards;
  }
  @keyframes teamHtLinkArrowBlack {
    100% {
      background-position: center -270px;
    }
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a:hover .imgTeamImage img {
  opacity: 0.7;
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .txtName {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .txtName {
    width: 100%;
    padding-bottom: 0;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .txtName p {
  color: #171717;
  font-weight: bold;
  font-size: 22px;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .txtName p {
    font-size: 4vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .txtName span {
  color: #171717;
  margin-top: 0px;
  line-height: 2;
  padding-right: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .txtName span {
    line-height: 1.5;
    font-size: 4vw;
    padding-right: 0;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .txtName span::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("/assets/images/icon_anime_arrow_black.png");
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -10px;
  right: 30px;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .txtName span::after {
    width: 7vw;
    height: 7vw;
    right: 2vw;
    bottom: -3vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .imgTeamImage {
    width: 100%;
    margin-bottom: 2vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li.homeTown a .imgTeamImage img {
  clip-path: inset(0px round 10px 10px 10px 10px);
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(5, 103, 64, 0.5), transparent);
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a:hover {
  opacity: 1;
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a:hover::before {
  opacity: 1;
  transition: 0.3s all;
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a:hover .txtName span {
  opacity: 1;
  text-decoration: underline;
  color: #00A273;
}
@media (min-width: 768px) {
  .volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a:hover .txtName::after {
    animation: teamLinkArrowBlack 0.3s steps(9) forwards;
  }
  @keyframes teamLinkArrowBlack {
    100% {
      background-position: center -270px;
    }
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a:hover .imgTeamImage img {
  opacity: 0.7;
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a .txtName {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #E8E8E8;
  position: relative;
  padding-left: 30px;
  box-sizing: border-box;
  border-radius: 10px 0px 0px 10px;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a .txtName {
    padding-left: 5vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a .txtName::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("/assets/images/icon_anime_arrow_black.png");
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: 15px;
  right: 35px;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a .txtName::after {
    width: 7vw;
    height: 7vw;
    right: 4vw;
    bottom: 4vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a .txtName span {
  color: #171717;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a .txtName span {
    font-size: 5vw;
  }
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a .imgTeamImage {
  width: 50%;
  background-color: #E8E8E8;
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown) a .imgTeamImage img {
  clip-path: inset(0px round 0px 10px 10px 0px);
}
.volleyMainArea .teamLinkArea .teamLinkList li:not(.homeTown).about a {
  border: #E8E8E8 1px solid;
}
.volleyMainArea .legendArea {
  background-color: #000000;
  background-image: url(/sports/thunders/team/images/bgTeamLegendPc.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: 50px 0 45px;
}
@media (max-width: 767px) {
  .volleyMainArea .legendArea {
    padding: 6vw 0 8vw;
    background-image: url(/sports/thunders/team/images/bgTeamLegendSp.png);
  }
}
.volleyMainArea .legendArea .ttlVolleyLv2 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .volleyMainArea .legendArea .ttlVolleyLv2 {
    margin-bottom: 4vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .legendArea .volleyInner {
    padding: 0 4vw;
  }
}
.volleyMainArea .legendArea .volleyInner .txtLegend {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .volleyMainArea .legendArea .volleyInner .txtLegend {
    text-align: left;
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}
.volleyMainArea .legendArea .volleyInner .linkBtnArea {
  margin-top: 0;
  text-align: center;
}
.volleyMainArea .faqArea {
  background-color: #00A273;
  padding: 50px 0 60px;
}
@media (max-width: 767px) {
  .volleyMainArea .faqArea {
    padding: 6vw 0 8vw;
  }
}
.volleyMainArea .faqArea .ttlVolleyLv2 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .volleyMainArea .faqArea .ttlVolleyLv2 {
    margin-bottom: 4vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .faqArea .volleyInner {
    padding: 0 4vw;
  }
}
.volleyMainArea .faqArea .volleyInner .txtFaq {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .volleyMainArea .faqArea .volleyInner .txtFaq {
    text-align: left;
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}
.volleyMainArea .faqArea .volleyInner .linkBtnArea {
  margin-top: 0;
  text-align: center;
}
.volleyMainArea .gaiyoArea {
  padding: 55px 0;
  background-color: #F1F4F3;
}
@media (max-width: 767px) {
  .volleyMainArea .gaiyoArea {
    padding: 8vw 0;
  }
}
.volleyMainArea .gaiyoArea .ttlVolleyLv2 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .volleyMainArea .gaiyoArea .ttlVolleyLv2 {
    margin-bottom: 3vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .gaiyoArea .volleyInner {
    padding: 0 4vw;
  }
}
.volleyMainArea .gaiyoArea .volleyInner .txtGaiyo {
  text-align: center;
  color: #171717;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .volleyMainArea .gaiyoArea .volleyInner .txtGaiyo {
    font-size: 3vw;
    margin-bottom: 7vw;
  }
}
.volleyMainArea .gaiyoArea .volleyInner .gaiyoTbArea {
  margin-top: 0;
}
@media (max-width: 767px) {
  .volleyMainArea .gaiyoArea .volleyInner .gaiyoTbArea table th, .volleyMainArea .gaiyoArea .volleyInner .gaiyoTbArea table td, .volleyMainArea .gaiyoArea .volleyInner .gaiyoTbArea table .dotList {
    font-size: 3vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .gaiyoArea .volleyInner .gaiyoTbArea table th {
    width: 30%;
  }
}
.volleyMainArea .gaiyoArea .volleyInner .gaiyoTbArea .txtLinkBox a {
  color: #00A273;
}
.volleyMainArea .gymArea {
  background-color: #F1F4F3;
  padding-bottom: 65px;
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea {
    padding-bottom: 8vw;
  }
}
.volleyMainArea .gymArea .ttlVolleyLv2 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .ttlVolleyLv2 {
    margin-bottom: 6vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .volleyInner {
    padding: 0 4vw;
  }
}
@media (min-width: 768px) {
  .volleyMainArea .gymArea .gymDetail .gymPictureArea {
    order: 1;
  }
  .volleyMainArea .gymArea .gymDetail .gymAddressArea {
    order: 2;
  }
  .volleyMainArea .gymArea .gymDetail .gymMapArea {
    order: 3;
  }
}
.volleyMainArea .gymArea .gymDetail .gymPictureArea figure img {
  clip-path: inset(0px round 10px);
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .gymDetail .gymPictureArea figure img {
    clip-path: inset(0px round 2vw);
  }
}
.volleyMainArea .gymArea .gymDetail .gymPictureArea .komeList {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .gymDetail .gymPictureArea .komeList {
    margin-top: 0;
  }
}
.volleyMainArea .gymArea .gymDetail .gymPictureArea .komeList li {
  font-size: 14px;
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .gymDetail .gymPictureArea .komeList li {
    font-size: 3vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .gymDetail .gymAddressArea {
    margin-bottom: 4vw;
  }
}
.volleyMainArea .gymArea .gymDetail .gymAddressArea table th {
  width: 160px;
  padding: 25px 15px 25px 30px;
}
.volleyMainArea .gymArea .gymDetail .gymAddressArea table td {
  padding: 15px 30px 15px 35px;
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .gymDetail .gymAddressArea table th, .volleyMainArea .gymArea .gymDetail .gymAddressArea table td {
    font-size: 3vw;
  }
  .volleyMainArea .gymArea .gymDetail .gymAddressArea table th {
    width: 30%;
    padding: 3vw 3vw 3vw 3vw;
  }
}
.volleyMainArea .gymArea .gymDetail .gymMapArea {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .gymDetail .gymMapArea {
    margin-top: 4vw;
  }
}
.volleyMainArea .gymArea .gymDetail .gymMapArea .gymMapDetail {
  height: 390px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .gymDetail .gymMapArea .gymMapDetail {
    height: 52vw;
    margin-bottom: 1vw;
  }
}
.volleyMainArea .gymArea .gymDetail .gymMapArea .gymMapDetail iframe {
  width: 100%;
  height: 100%;
}
.volleyMainArea .gymArea .gymDetail .gymMapArea .gymLinkArea {
  text-align: right;
}
.volleyMainArea .gymArea .gymDetail .gymMapArea .gymLinkArea .textLink {
  color: #00A273;
}
@media (max-width: 767px) {
  .volleyMainArea .gymArea .gymDetail .gymMapArea .gymLinkArea .textLink {
    font-size: 3vw;
  }
}
.volleyMainArea .symbolImageArea {
  background-color: #00A273;
  padding: 50px 0 20px;
}
@media (max-width: 767px) {
  .volleyMainArea .symbolImageArea {
    padding: 7vw 0 2vw;
  }
}
.volleyMainArea .symbolImageArea .ttlVolleyLv2 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .volleyMainArea .symbolImageArea .ttlVolleyLv2 {
    margin-bottom: 7vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .symbolImageArea .volleyInner {
    padding: 0 4vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .symbolImageArea .volleyInner .symbolImageList li {
    margin-bottom: 6vw;
  }
}
.volleyMainArea .symbolImageArea .volleyInner .symbolImageList li img {
  clip-path: inset(0px round 10px 10px 10px 10px);
}
@media (max-width: 767px) {
  .volleyMainArea .symbolImageArea .volleyInner .symbolImageList li img {
    clip-path: inset(0px round 2vw);
  }
}
.volleyMainArea .symbolImageArea .volleyInner .symbolImageList li dl {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .volleyMainArea .symbolImageArea .volleyInner .symbolImageList li dl {
    margin-top: 2vw;
  }
}
.volleyMainArea .symbolImageArea .volleyInner .symbolImageList li dl dt,
.volleyMainArea .symbolImageArea .volleyInner .symbolImageList li dl dd {
  color: #ffffff;
}
.volleyMainArea .symbolImageArea .volleyInner .symbolImageList li dl dt {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .volleyMainArea .symbolImageArea .volleyInner .symbolImageList li dl dt {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .symbolImageArea .volleyInner .symbolImageList li dl dd {
    font-size: 3.5vw;
    line-height: 1.5;
  }
}
.volleyMainArea .historyArea {
  background-color: #F1F4F3;
  padding: 50px 0 60px;
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea {
    padding: 7vw 0 10vw;
  }
}
.volleyMainArea .historyArea .ttlVolleyLv2 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea .ttlVolleyLv2 {
    margin-bottom: 6vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea .volleyInner {
    padding: 0 4vw;
  }
}
.volleyMainArea .historyArea .volleyInner .txtHistoryLead {
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea .volleyInner .txtHistoryLead {
    text-align: left;
    font-size: 3vw;
    margin-bottom: 5vw;
  }
}
.volleyMainArea .historyArea .volleyInner .linkArchive {
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea .volleyInner .linkArchive {
    font-size: 3vw;
    margin-bottom: 5vw;
  }
}
.volleyMainArea .historyArea .volleyInner .linkArchive a {
  color: #00A273;
}
.volleyMainArea .historyArea .volleyInner .historyTbArea {
  margin-top: 0;
}
.volleyMainArea .historyArea .volleyInner .historyTbArea.default {
  position: relative;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea .volleyInner .historyTbArea.default {
    height: 110vw;
  }
}
.volleyMainArea .historyArea .volleyInner .historyTbArea::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 300px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 10%, #F1F4F3 70%);
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea .volleyInner .historyTbArea::after {
    height: 70vw;
  }
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea .volleyInner .historyTbArea table th, .volleyMainArea .historyArea .volleyInner .historyTbArea table td {
    font-size: 3vw;
  }
  .volleyMainArea .historyArea .volleyInner .historyTbArea table th {
    width: 30%;
    padding: 3vw 3vw 3vw 3vw;
  }
}
.volleyMainArea .historyArea .volleyInner .moreBtnArea {
  text-align: center;
  margin-top: -45px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .volleyMainArea .historyArea .volleyInner .moreBtnArea {
    margin-top: -10vw;
  }
}
.volleyMainArea .historyArea .volleyInner .moreBtnArea.more {
  display: none;
}

.inquiryArea {
  padding: 50px 0 100px;
  background-color: #F1F4F3;
}
@media (max-width: 767px) {
  .inquiryArea {
    padding: 7vw 0 10vw;
  }
}
.inquiryArea .ttlVolleyLv2 {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .inquiryArea .ttlVolleyLv2 {
    margin-bottom: 3vw;
  }
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner {
    padding: 0 4vw;
  }
}
.inquiryArea .volleyInner .dotList {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .dotList {
    margin-bottom: 4vw;
  }
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .dotList li {
    font-size: 4vw;
    color: #171717;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .inquiryArea .volleyInner .dotList li {
    line-height: 1.5;
  }
}
.inquiryArea .volleyInner .dotList li:not(:first-child) {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .dotList li:not(:first-child) {
    margin-top: 3vw;
  }
}
.inquiryArea .volleyInner .linkBtnArea {
  text-align: center;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .linkBtnArea {
    margin-bottom: 6vw;
  }
}
.inquiryArea .volleyInner .inquiryMail-wrapper {
  margin: 0 auto 50px;
}
.inquiryArea .volleyInner .inquiryMail-wrapper .inquiryMail {
  text-align: center;
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .inquiryMail-wrapper {
    margin-bottom: 6vw;
  }
  .inquiryArea .volleyInner .inquiryMail-wrapper .inquiryMail {
    font-size: 4vw;
  }
}
.inquiryArea .volleyInner .inquiryAddressArea {
  background-color: #ffffff;
  padding: 30px 20px;
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .inquiryAddressArea {
    padding: 5vw 3vw 7vw;
  }
}
.inquiryArea .volleyInner .inquiryAddressArea dl.gym {
  border-top: #F1F4F3 2px solid;
  margin-top: 30px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .inquiryAddressArea dl.gym {
    margin-top: 4vw;
    padding-top: 5vw;
  }
}
.inquiryArea .volleyInner .inquiryAddressArea dl dt,
.inquiryArea .volleyInner .inquiryAddressArea dl dd {
  text-align: center;
  color: #171717;
}
.inquiryArea .volleyInner .inquiryAddressArea dl dt {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .inquiryAddressArea dl dt {
    font-size: 4vw;
  }
}
.inquiryArea .volleyInner .inquiryAddressArea dl dd {
  line-height: 2;
}
@media (max-width: 767px) {
  .inquiryArea .volleyInner .inquiryAddressArea dl dd {
    font-size: 4vw;
    text-align: left;
    padding: 0 1vw;
    line-height: 1.8;
  }
}

.company .ttlVolleyLv1 {
  margin: 0;
}
.company .companyLeadArea {
  padding: 30px 0;
}
.company .txtLead {
  text-align: center;
}
.company .companyMassage {
  background: var(--color-white);
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  max-width: 1050px;
}
.company .companyMassage__img {
  max-width: 600px;
  margin: 30px auto 0;
}
.company .companyMassage__img img {
  width: 100%;
}
@media (max-width: 767px) {
  .company {
    padding-top: 6vw;
  }
  .company .companyLeadArea {
    padding: 4vw 0;
  }
  .company .txtLead {
    padding: 0 4vw;
    text-align: left;
  }
  .company .txtLead p {
    font-size: 4.2666666667vw;
  }
  .company .companyMassage {
    padding: 6.4vw;
    margin: 0 4vw;
  }
  .company .companyMassage__txt {
    font-size: 3.2vw;
  }
  .company .companyMassage__img {
    max-width: 100%;
    margin-top: 6.4vw;
  }
}