@charset "UTF-8";
body {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f2f2f2;
  overflow-x: hidden;
  width: 100vw;
}
body .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  body .inner {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  body .inner {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
body section {
  overflow-x: hidden;
}
body .txt_area h3 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  body .txt_area h3 {
    font-size: 30px;
  }
}
body .txt_area .subtxt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body .txt_area .subtxt {
    font-size: 14px;
  }
}

/*----------------------------------------------------
header
----------------------------------------------------*/
header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  opacity: 0;
}
header.js-header {
  background-color: rgba(255, 255, 255, 0);
  transition: color 0.4s ease-out;
}
header.js-header.headerColorScroll {
  background-color: rgba(255, 255, 255, 0.8);
  transition: color 0.4s ease-out;
}
header.js-header.headerColorScroll ul li a {
  color: #000;
}
header .header_inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1024px) {
  header .header_inner {
    width: 100%;
    padding: 15px 0 14px 0;
  }
}
header .header_inner .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_inner .matsumoto_logo {
  width: 380px;
  display: block;
}
header .header_inner .matsumoto_logo a {
  display: flex;
  align-items: center;
}
header .header_inner .matsumoto_logo h1 {
  font-size: 21px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  header .header_inner .matsumoto_logo h1 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
  }
}
header .header_inner .matsumoto_logo h1 span {
  font-size: 14px;
  display: block;
}
@media screen and (max-width: 1024px) {
  header .header_inner .matsumoto_logo h1 span {
    font-size: 9px;
    font-weight: normal;
  }
}
header .header_inner .matsumoto_logo img {
  margin-right: 15px;
}
header .header_inner nav {
  width: 50%;
}
header .header_inner nav ul {
  display: flex;
  justify-content: space-between;
}
header .header_inner nav ul li {
  text-align: center;
}
header .header_inner nav ul li a {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.2s ease;
}
header .header_inner nav ul li a:hover {
  text-shadow: #fff 0 0 4px;
  color: #009187;
}
header .header_inner nav ul li span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 1024px) {
  header .header_inner nav ul li span {
    font-weight: normal;
    text-transform: capitalize;
  }
}
header .header_inner .pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  header .header_inner .pc {
    display: none !important;
  }
}
header .header_inner .sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header_inner .sp #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    display: none;
    pointer-events: none;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100%;
    /*ナビの高さ*/
    background: #009187;
    /*動き*/
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1024px) {
  header .header_inner .sp #g-nav #g-nav-list {
    position: relative;
  }
}
header .header_inner .sp #g-nav #g-nav-list::after {
  content: "";
}
@media screen and (max-width: 1024px) {
  header .header_inner .sp #g-nav #g-nav-list::after {
    position: absolute;
    content: url(../img/common/nav_sp_front.svg);
    right: 0;
    bottom: 90px;
  }
}

/* ===============================================
# ハンバーガーメニュー
=============================================== */
@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .header_inner {
    width: 100%;
    padding: 12px 0;
  }
  .header_inner .matsumoto_logo h1 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
  }
  .header_inner .matsumoto_logo h1 span {
    font-size: 9px;
    font-weight: normal;
  }
  .header_inner #g-nav #g-nav-list {
    position: relative;
  }
  .header_inner #g-nav #g-nav-list::after {
    position: absolute;
    content: url(../img/common/nav_sp_front.svg);
    right: 0;
    bottom: 90px;
  }
  .header_inner nav ul li span {
    font-weight: normal;
    text-transform: capitalize;
  }
  #g-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    display: none;
    pointer-events: none;
    top: 0;
    width: 100%;
    height: 100%;
    background: #009187;
    transition: all 0.3s;
  }
  #g-nav .matsumoto_logo h1 {
    color: #ffffff;
  }
  #g-nav ul {
    display: none;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #g-nav li {
    list-style: none;
    text-align: center;
    border-top: solid 1px #ffffff;
  }
  #g-nav li:last-child {
    border-bottom: solid 1px #ffffff;
  }
  #g-nav li a {
    color: #ffffff;
    text-decoration: none;
    padding: 20px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 16px;
    font-weight: bold;
  }
  #g-nav li a span {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  #g-nav.panelactive {
    pointer-events: all;
    opacity: 1;
    z-index: 5;
  }
  #g-nav.panelactive .matsumoto_logo a {
    padding: 12px 0 12px 5%;
  }
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive ul {
    display: block;
    width: 260px;
  }
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #009187;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 16px;
    height: 1px;
    border-radius: 2px;
    background-color: #ffffff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 22px;
  }
  .openbtn span:nth-of-type(2) {
    top: 30px;
  }
  .openbtn span:nth-of-type(3) {
    top: 38px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 35px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
  }
}
.top_container {
  position: relative;
}
.top_container::after {
  content: "";
  display: block;
  width: 803px;
  height: 1256px;
  background-image: url(../img/common/philosophy_front_right.png);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top_container::after {
    width: 452px;
    height: 640px;
  }
}
.top_container .mv_area {
  position: relative;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
.top_container .mv_area .mainvis .slider-item01 {
  background: url(../img/mv/mv01.jpg);
}
.top_container .mv_area .mainvis .slider-item02 {
  background: url(../img/mv/mv02.jpg);
}
.top_container .mv_area .mainvis .slider-item03 {
  background: url(../img/mv/mv03.jpg);
}
.top_container .mv_area .mainvis .slider-item {
  position: relative;
  width: 100%;
  height: 90vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top_container .mv_area .mainvis .slider-item {
    height: 90vh;
  }
}
.top_container .mv_area .mainvis .slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 640px;
  height: 100%;
  background-image: url(../img/common/mv_front_left.svg);
  background-size: cover;
}
@media screen and (max-width: 1240px) {
  .top_container .mv_area .mainvis .slider-item::before {
    width: 300px;
    height: 439px;
  }
}
@media screen and (max-width: 767px) {
  .top_container .mv_area .mainvis .slider-item::before {
    width: 152px;
    height: 222px;
  }
}
.top_container .mv_area .mainvis .slider-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 374px;
  height: 100%;
  background-image: url(../img/common/mv_front_right.svg);
  background-size: cover;
  z-index: -10;
}
@media screen and (max-width: 1240px) {
  .top_container .mv_area .mainvis .slider-item::after {
    width: 300px;
    height: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top_container .mv_area .mainvis .slider-item::after {
    width: 82px;
    height: 17%;
  }
}
.top_container .mv_area .mv_copy {
  position: absolute;
  left: 14%;
  bottom: 97px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  row-gap: 8px;
  text-shadow: rgba(0, 0, 0, 0.6) 1px 0 10px;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .top_container .mv_area .mv_copy {
    row-gap: 15px;
    left: 5%;
    bottom: 92px;
  }
}
.top_container .mv_area .mv_copy .copy {
  font-size: 92px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top_container .mv_area .mv_copy .copy {
    font-size: 42px;
  }
}
.top_container .mv_area .mv_copy .en {
  display: block;
  font-size: 25px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .top_container .mv_area .mv_copy .en {
    font-size: 13px;
  }
}
.top_container .scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 40px;
  bottom: 180px;
  /*全体の高さ*/
  height: 140px;
}
.top_container .scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.6s ease-in-out infinite;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .top_container .scrolldown::after {
    background-color: #fff;
  }
}
.top_container .scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -26px;
  top: -40px;
  /*テキストの形状*/
  color: #000;
  font-size: 16px;
  letter-spacing: 0.1em;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .top_container .scrolldown span {
    text-shadow: rgba(0, 0, 0, 0.8) 1px 0 10px;
    color: #fff;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.slick-dots {
  position: absolute;
  bottom: -56px;
  right: 45px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 6px;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    flex-direction: row;
    align-items: flex-end;
    -moz-column-gap: 6px;
         column-gap: 6px;
    bottom: 50px;
    left: 5%;
  }
}
.slick-dots li {
  display: inline-block;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 3px;
  /*ドットボタンのサイズ*/
  height: 68px;
  /*ドットボタンのサイズ*/
  display: block;
  background: rgba(255, 255, 255, 0.4);
  /*ドットボタンの色*/
}
@media screen and (max-width: 767px) {
  .slick-dots button {
    width: 68px;
    /*ドットボタンのサイズ*/
    height: 3px;
    /*ドットボタンのサイズ*/
  }
}
.slick-dots .slick-active button {
  background: #fff;
  /*ドットボタンの現在地表示の色*/
}

#philosophy {
  width: 100vw;
  position: relative;
  padding: 314px 0 128px 0;
}
@media screen and (max-width: 767px) {
  #philosophy {
    padding: 214px 0 370px 0;
  }
}
#philosophy::before {
  content: "";
  width: 294px;
  height: 565px;
  background-image: url(../img/common/philosophy_front_left.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 70px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #philosophy::before {
    top: 0;
    width: 120px;
    height: 230px;
  }
}
#philosophy::after {
  content: "";
  position: absolute;
  mix-blend-mode: luminosity;
  background: url(../img/common/philosophy_front_word.svg) no-repeat;
  top: 125px;
  right: 100px;
  z-index: 100;
  width: 828px;
  height: 193px;
  background-size: contain;
  animation: fadeHereAnime 3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  #philosophy::after {
    right: auto;
    left: 20%;
  }
}
@media screen and (max-width: 767px) {
  #philosophy::after {
    top: 80px;
    width: 435px;
    height: 104px;
  }
}
#philosophy .inner .txt_area {
  position: relative;
  z-index: 100;
  width: 480px;
  text-align: justify;
  margin-left: 60px;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #philosophy .inner .txt_area {
    width: 90%;
    margin: 0 auto;
  }
}
#philosophy .inner .txt_area h3 {
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #philosophy .inner .txt_area h3 {
    font-size: 30px;
  }
}
#philosophy .inner .txt_area .subtxt {
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  #philosophy .inner .txt_area .subtxt {
    font-size: 14px;
    margin-bottom: 35px;
  }
}
#philosophy .inner .txt_area .bodytxt {
  line-height: 1.928;
  font-size: 14px;
}
#philosophy .inner .txt_area .bodytxt br {
  margin-bottom: 2rem;
}

#product .txt_area {
  padding: 120px 0 240px 0;
  background-color: #fff;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #product .txt_area {
    padding: 78px 0 198px 0;
  }
}
#product .txt_area h3 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
#product .txt_area .subtxt {
  font-size: 16px;
  margin-bottom: 60px;
}
#product .txt_area .bodytxt {
  font-size: 14px;
  line-height: 1.5882352941;
}
#product .txt_area .bodytxt .spbr {
  display: none;
}
@media screen and (max-width: 1024px) {
  #product .txt_area .bodytxt .spbr {
    display: block;
  }
}
#product .txt_area .bodytxt.ja {
  margin-bottom: 20px;
}
#product .content {
  margin-top: -160px;
  margin-bottom: 68px;
  background-image: url(../img/common/product_bg_01.png);
  background-size: 1421px 644px;
  background-repeat: no-repeat;
  background-position: top 30px left;
  position: relative;
  left: 0;
}
@media screen and (max-width: 767px) {
  #product .content {
    background-position: top 0 right 32%;
    background-size: 951px 465px;
  }
}
#product .content:nth-child(4), #product .content:nth-child(8) {
  background-position: top 30px right;
  background-image: url(../img/common/product_bg_02.png);
  right: 0;
}
@media screen and (max-width: 767px) {
  #product .content:nth-child(4), #product .content:nth-child(8) {
    background-position: top 0 left 38%;
  }
}
#product .content .content_inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 1024px) {
  #product .content .content_inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  #product .content .content_inner::after {
    position: absolute;
    left: 2%;
    bottom: -32px;
    content: "※右側にスクロールするとボードの全体が読めます。";
    font-size: 13px;
  }
}
#product .content .content_inner .green_block {
  width: 600px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
#product .content .content_inner .green_block .title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  -moz-column-gap: 46px;
       column-gap: 46px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #product .content .content_inner .green_block .title {
    -moz-column-gap: 16px;
         column-gap: 16px;
    margin-bottom: 70px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  #product .content .content_inner .green_block .title .num img {
    width: 60px;
    height: 40px;
  }
}
#product .content .content_inner .green_block .title .txt {
  font-size: 46px;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  #product .content .content_inner .green_block .title .txt {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  #product .content .content_inner .green_block .title .txt {
    font-size: 24px;
  }
}
#product .content .content_inner .green_block .img {
  display: inline-block;
}
#product .content .content_inner .green_block .img img {
  width: 100%;
  height: auto;
}
#product .content .content_inner .table_block {
  font-size: 14px;
  margin-top: 160px;
  border-radius: 0 0 20px 20px;
  overflow-x: scroll;
  max-width: 629px;
  scrollbar-width: none;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 6px 17px;
}
@media screen and (max-width: 1024px) {
  #product .content .content_inner .table_block {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  #product .content .content_inner .table_block {
    scrollbar-width: auto;
  }
}
@media (min-width: 1280px) {
  #product .content .content_inner .table_block::-webkit-scrollbar {
    display: none;
  }
}
#product .content .content_inner .table_block .comparison {
  border-top: #3b3b3b 4px solid;
  border-radius: 0 0 20px 20px;
  height: 589px;
  table-layout: auto;
  background-clip: padding-box;
}
#product .content .content_inner .table_block .comparison tr {
  display: table-row-group;
}
#product .content .content_inner .table_block .comparison tr th {
  background-color: #fff;
  width: 171px;
  border-bottom: #d5d5d5 1px solid;
  background-clip: padding-box;
}
#product .content .content_inner .table_block .comparison tr .p-name {
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-weight: normal;
}
#product .content .content_inner .table_block .comparison tr .p-name span {
  white-space: nowrap;
  border-radius: 18px;
  background-color: #009187;
  margin: 0 4px;
}
#product .content .content_inner .table_block .comparison tr .p-name .ymp01 {
  padding: 4px 25px;
}
#product .content .content_inner .table_block .comparison tr .p-name .ymp02 {
  padding: 4px 10px;
}
#product .content .content_inner .table_block .comparison tr .p-name .ymp03 {
  padding: 4px 6px;
}
#product .content .content_inner .table_block .comparison tr .p-name .ymp04 {
  padding: 4px 41px;
  margin: 0 27px;
}
#product .content .content_inner .table_block .comparison tr .class {
  position: sticky;
  left: 0;
  z-index: 10;
  font-weight: normal;
  background-color: #def5f4;
  white-space: nowrap;
  padding: 8px 10px 8px 20px;
}
#product .content .content_inner .table_block .comparison tr .class.first {
  padding: 0;
  background-color: #e0e0e0;
}
#product .content .content_inner .table_block .comparison tr .class.first p {
  position: relative;
  display: inline;
  top: 28px;
  left: 16px;
}
#product .content .content_inner .table_block .comparison tr .class.first p .model {
  position: absolute;
  top: -16px;
}
#product .content .content_inner .table_block .comparison tr .class.first p .model::before {
  content: "";
  position: absolute;
  top: 21px;
  left: -20px;
  display: block;
  width: 52px;
  height: 1px;
  background-color: #bebebe;
  transform: rotate(26deg);
}
#product .content .content_inner .table_block .comparison tr .class p {
  padding-bottom: 4px;
}
#product .content .content_inner .table_block .comparison tr td {
  position: relative;
  background-color: #fff;
  padding: 16px 0;
  line-height: 1.5;
  text-align: center;
  border-bottom: #d5d5d5 1px solid;
  background-clip: padding-box;
}
#product .content .content_inner .table_block .comparison tr td::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  background-color: #d5d5d5;
  top: 30%;
  right: 0;
}
#product .content .content_inner .table_block .comparison tr td:last-child::after {
  display: none;
}
#product .content .content_inner .table_block .comparison tr:last-child {
  border: none;
}
#product .content .content_inner .table_block .comparison tr:last-child .class {
  border-radius: 0 0 0 20px;
}
#product .content .content_inner .table_block .comparison tr:last-child td {
  letter-spacing: -0.1em;
}
#product .content .content_inner .table_block .comparison tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
}
#product .content:nth-child(4) .content_inner, #product .content:nth-child(8) .content_inner {
  display: flex;
  flex-direction: row-reverse;
}
#product .content:nth-child(4) .content_inner .green_block .title, #product .content:nth-child(8) .content_inner .green_block .title {
  display: flex;
  flex-direction: row-reverse;
}

.space {
  width: 100vw;
  height: 186px;
  background-color: #fff;
  margin-bottom: 60px;
}
.space:last-child {
  margin-bottom: 0;
}

.fadeHere {
  animation-name: fadeHereAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fadeHere.head {
  animation-fill-mode: forwards;
  animation-name: fadeHereAnime;
  animation-duration: 1s;
  animation-delay: 1.5s;
}

@keyframes fadeHereAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeTop {
  animation-name: fadeHereAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-1000px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(2000px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

#access {
  overflow-y: hidden;
}
#access .img_area {
  position: relative;
  width: 100vw;
  height: 482px;
  background-image: url(../img/common/access_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  #access .img_area {
    height: 214px;
  }
}
#access .img_area::after {
  content: url(../img/common/access_front01.svg);
  position: absolute;
  top: 112px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  #access .img_area::after {
    transform-origin: top right;
    transform: scale(0.4);
    top: 30px;
  }
}
#access .map {
  position: relative;
}
#access .map::before {
  content: url(../img/common/access_front02.svg);
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #access .map::before {
    left: -270px;
  }
}
@media screen and (max-width: 767px) {
  #access .map::before {
    left: -320px;
  }
}
#access .map iframe {
  width: 100%;
  height: 351px;
  border: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #access .map iframe {
    height: 171px;
  }
}
#access .map .txt_box {
  position: absolute;
  top: 100px;
  left: 100px;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  #access .map .txt_box {
    top: 60px;
    left: 30px;
  }
}
@media screen and (max-width: 767px) {
  #access .map .txt_box {
    left: 16px;
  }
}
#access .map .txt_box h3 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  #access .map .txt_box h3 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  #access .map .txt_box h3 {
    font-size: 16px;
  }
}
#access .map .txt_box .subtxt {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  #access .map .txt_box .subtxt {
    display: none;
  }
}

#company {
  padding: 100px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #company {
    padding: 171px 0 289px 0;
  }
}
#company .txt_area {
  position: relative;
  margin: 0 auto 50px auto;
  width: 100%;
  max-width: 600px;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #company .txt_area {
    margin: 0 auto;
    max-width: 80%;
  }
}
#company .txt_area::before {
  content: url(../img/common/company_front01.svg);
  position: absolute;
  left: -360px;
  top: 77px;
}
@media screen and (max-width: 767px) {
  #company .txt_area::before {
    transform: scale(0.5215946844);
    transform-origin: top left;
    top: -150px;
    left: -116px;
  }
}
#company .txt_area::after {
  content: "";
  width: 400px;
  height: 257px;
  background-image: url(../img/common/company_front02.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -355px;
  bottom: -66px;
}
@media screen and (max-width: 767px) {
  #company .txt_area::after {
    width: 312px;
    height: 200px;
    right: -67px;
    bottom: -226px;
  }
}
#company .txt_area .subtxt {
  margin-bottom: 50px;
}
#company .txt_area .company-overview .pcnone {
  display: none;
}
@media screen and (max-width: 767px) {
  #company .txt_area .company-overview .pcnone {
    display: block;
  }
}
#company .txt_area .company-overview .list {
  display: flex;
  align-items: center;
  border-top: #d5d5d5 1px solid;
}
@media screen and (max-width: 767px) {
  #company .txt_area .company-overview .list {
    flex-direction: column;
    align-items: flex-start;
  }
}
#company .txt_area .company-overview .list:last-child {
  border-bottom: #d5d5d5 1px solid;
  margin-bottom: 170px;
}
@media screen and (max-width: 767px) {
  #company .txt_area .company-overview .list:last-child {
    margin-bottom: 0;
  }
}
#company .txt_area .company-overview .list dt {
  font-size: 16px;
  font-weight: bold;
  width: 160px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #company .txt_area .company-overview .list dt {
    padding: 20px 0;
    font-size: 14px;
    letter-spacing: -0.02em;
  }
}
#company .txt_area .company-overview .list dt span {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #company .txt_area .company-overview .list dt span {
    font-size: 13px;
    letter-spacing: -0.02em;
  }
}
#company .txt_area .company-overview .list dd {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 4px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #company .txt_area .company-overview .list dd {
    padding: 0 0 20px 0;
    font-size: 16px;
    letter-spacing: 0;
  }
}
#company .txt_area .company-overview .list dd span {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #company .txt_area .company-overview .list dd span {
    font-size: 13px;
    letter-spacing: 0;
  }
}

#contact {
  background-color: #009187;
  background-image: url(../img/common/contact_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100vw;
  height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 1240px) {
  #contact {
    height: auto;
    padding: 95px 0 91px 0;
  }
}
#contact .contact_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1240px) {
  #contact .contact_inner {
    align-items: center;
    flex-direction: column;
    row-gap: 0;
  }
}
#contact .contact_inner .txt_area {
  margin-right: 100px;
}
@media screen and (max-width: 1240px) {
  #contact .contact_inner .txt_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 67px 0;
  }
}
#contact .contact_inner .tell {
  margin-bottom: 13px;
}
@media screen and (max-width: 1240px) {
  #contact .contact_inner .tell {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}
#contact .contact_inner .tell .asterisk {
  font-weight: normal;
  font-size: 14px;
}
@media screen and (max-width: 1240px) {
  #contact .contact_inner .tell .asterisk {
    justify-content: center;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  #contact .contact_inner .tell .asterisk {
    font-size: 14px;
  }
}
#contact .contact_inner .tell .item img {
  margin-bottom: -6px;
}
#contact .contact_inner .mail {
  margin-bottom: 30px;
}
#contact .contact_inner .mail p {
  display: block;
  font-weight: bold;
  font-size: 16px;
}
#contact .contact_inner .item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
#contact .contact_inner .item img {
  margin-bottom: -2px;
}
@media screen and (max-width: 1240px) {
  #contact .contact_inner .item {
    justify-content: center;
    gap: 12px;
  }
}
#contact .contact_inner .item .number {
  display: inline-block;
  font-size: 38px;
}
@media screen and (max-width: 1240px) {
  #contact .contact_inner .item .number {
    font-size: 33px;
  }
}
#contact .contact_inner .slash {
  display: block;
  height: 1px;
  width: 60px;
  background-color: #fff;
  transform: rotate(120deg);
  margin-top: -18px;
}
@media screen and (max-width: 1240px) {
  #contact .contact_inner .slash {
    transform: rotate(0deg);
    margin-top: 8px;
    margin-bottom: 30px;
  }
}

footer {
  background-color: #2e2e2e;
}
footer .footer_inner {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  footer .footer_inner {
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_inner {
    align-items: center;
    row-gap: 20px;
  }
}
footer .footer_inner .matsumoto_logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .matsumoto_logo a {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
}
footer .footer_inner .matsumoto_logo a h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  font-size: 21px;
  font-weight: bold;
}
footer .footer_inner .matsumoto_logo a h1 span {
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: normal;
}
footer .footer_inner nav ul {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  footer .footer_inner nav ul {
    width: 214px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
footer .footer_inner nav ul li a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 16px;
  font-weight: bold;
}
footer .footer_inner nav ul li a span {
  font-size: 14px;
  font-weight: normal;
}
footer .copy {
  color: #fff;
  padding: 12px 0 11px 0;
  font-size: 12px;
  background-color: #1f1f1f;
  text-align: center;
}/*# sourceMappingURL=styles.css.map */