@charset "UTF-8";
section.kv .kv_wrap {
  margin-top: 82px;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
section.kv .kv_wrap #gi1 {
  grid-column: 1/5;
  grid-row: 1/6;
}
section.kv .kv_wrap #gi1 img {
  object-position: top;
}
section.kv .kv_wrap #gi2 {
  grid-column: 1/3;
  grid-row: 6/9;
}
section.kv .kv_wrap #gi3 {
  grid-column: 1/3;
  grid-row: 9/12;
}
section.kv .kv_wrap #gi4 {
  grid-column: 3/6;
  grid-row: 6/8;
}
section.kv .kv_wrap #gi5 {
  grid-column: 3/4;
  grid-row: 8/10;
}
section.kv .kv_wrap #gi5 img {
  object-position: top;
}
section.kv .kv_wrap #gi6 {
  grid-column: 4/5;
  grid-row: 8/10;
}
section.kv .kv_wrap #gi6 img {
  object-position: top;
}
section.kv .kv_wrap #gi7 {
  grid-column: 3/5;
  grid-row: 10/12;
}
section.kv .kv_wrap .grid_item {
  position: relative;
}
section.kv .kv_wrap .grid_item .kv_text {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  max-width: calc(100% - 70px);
  width: 60%;
}

header .header_navi .logo img {
  max-width: 270px;
}

/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn1 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 70px;
  height: 80px;
  z-index: 100;
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  background: #000000;
  width: 71.428%;
}

.openbtn1 span:nth-of-type(1) {
  top: 33px;
}

.openbtn1 span:nth-of-type(2) {
  top: 45px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 33px;
  left: 15px;
  transform: translateY(6px) rotate(-20deg);
  width: 71.428%;
}

.openbtn1.active span:nth-of-type(2) {
  top: 45px;
  left: 15px;
  transform: translateY(-6px) rotate(20deg);
  width: 71.428%;
  /*真ん中の線は透過*/
}

header .header_navi nav.active {
  background-color: #EFEFEF;
  transform: translateX(0);
}

header .header_navi nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: all 0.5s;
  padding-top: 80px;
  overflow: scroll;
}
header .header_navi nav ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #707070;
}
header .header_navi nav ul li {
  width: 100%;
  text-align: center;
  margin-top: 5.5045vh;
}
header .header_navi nav ul li a {
  font-size: 24px;
}
header .header_navi nav ul li.contact a {
  width: 200px;
  height: 80px;
  border-radius: 38px;
  border: 2px solid #707070;
  margin: 0 auto;
}
header .header_navi nav ul li.logo img {
  margin: 0 auto;
  max-width: 177px;
}

section.title .section_container .title_box .title_cards {
  flex-wrap: wrap;
  justify-content: center;
}
section.title .section_container .title_box .title_cards .title_card {
  margin-bottom: 40px;
}

section.message .section_container {
  background-image: url(../images/greeting_tab.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

section.message .section_container .message_cards .message_card {
  width: 100%;
}

section.message .section_container .message_cards .message_card p {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: calc(100% - 40px);
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  padding: 20px;
}

section.title .section_container .title_box .title_cards .title_card:first-child {
  margin-right: 0;
}

section.title .section_container .title_box .title_cards .title_card:last-child {
  margin-left: 0;
}/*# sourceMappingURL=tab.css.map */