img {
  vertical-align: bottom;
}

body {
  color: #000000;
  font-family: "Lexend Zetta", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #fff;
}

html.is-active,
html.is-active body {
  height: 100%;
  overflow: hidden;
}

/* フェードイン用表記 */
.animation {
  opacity: 0;
  transition: all 2s;
}

.fadeIn {
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.button_work {
  position: relative;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  padding: .2em 1em;
  border: none;
  /* border-radius: 5px; */
  box-shadow: 0 7px 10px rgb(0 0 0 / 10%);
  background-color: #fff;
  color: #333;
  font-size: 1em;
  transition: transform .3s, box-shadow .3s;
}

.button_work:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 10px rgb(0 0 0 / 15%);
}



/* ここからローディングアニメーション */
.loader {
   position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgb(105, 185, 168);
  z-index: 600;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
    opacity: 0; 
  transition: opacity 0.5s ease;
  pointer-events: none; 
}

.hidden_lo {
  display: none;
}
.loader.active {
  display: grid;
  opacity: 1;
  transition: opacity 0.5s ease; 
}
/* JS が無効な場合適用 */
@media (scripting: none) {
  .loading {
    display: none;
  }
  .hidden {
    display: block;
  }
}

/* ロードのアニメーション */

@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.line-scale>div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.4s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale>div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.3s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale>div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.2s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale>div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.1s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale>div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0s 6 cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.line-scale>div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}


/* ここからハンバーガーメニュー */
.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}


.active .hamburger-line:nth-child(2) {
  opacity: 0;
}


.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/*スマホ用スタイル*/
/*ハンバーガーメニュークリック前*/
/* クリックエリアと位置を指定 ---------------------- */
.btnHamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s;
  border-left: solid 1px #000;
  z-index: 501;
}

/* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
.btnHamburger .line {
  position: absolute;
  margin-top: 33%;
  display: block;
  width: 30px;
  /* 横幅 */
  height: 1px;
  /* 1本辺りの高さ */
  background: #000;
  /* 線の色 */

  /* 適用するプロパティ、変化する時間、変化する速度 */
  transition: 0.3s;
}

/* 3本線の各線の位置を指定 ---------------------- */
.btnHamburger .line_01 {
  top: 0;
}

.btnHamburger .line_02 {
  top: 8px;
}

.btnHamburger .line_03 {
  top: 16px;
}

/*#coverlayerクリック前*/
#coverlayer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #000;
  width: 1px;
  opacity: 0;
  transition: 0.5s;
  z-index: 100;
}

/*navクリック前*/
nav {
  position: fixed;
  top: 60px;
  left: -180px;
  width: 180px;
  opacity: 0;
  transition: 0.5s;
}


/*ハンバーガメニュークリック後*/
/* 最上部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_01 {
  top: 8px;
  /* 上から2番目の線の位置に変更 */

  /* 線を45度回転 */
  transform: rotate(45deg);
  background: #fff;
}

/* 上から2番目の線のスタイル ---------------------- */
.btnHamburger.is-active .line_02 {
  opacity: 0;
  /* 不透明度を下げて線を消す */
}

/* 最下部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_03 {
  top: 8px;
  /* 上から2番目の線の位置に変更 */

  /* 線を135度回転 */
  transform: rotate(135deg);
  background: #fff;
}

/*#coverlayerクリック後*/
#coverlayer.is-active {
  width: 100%;
  opacity: 0.8;
}

/*navクリック後*/
nav.is-active {
  margin-top: 50%;
  z-index: 502;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}


.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}


.active .hamburger-line:nth-child(2) {
  opacity: 0;
}


.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


nav ul li a {
  color: #fff;
  text-decoration: none;
  line-height: 40px;
  text-align: center;
  display: block;
}



h2 {
  margin-left: 10vw;
  margin-bottom: 50px;
  padding-left: 10px;
  font-size: 2rem;
  padding-top: 100px;
  letter-spacing: -0.2rem;
}

h3 {
  font-size: 1.9rem;
}

/* ファーストビュー設定 */

header {
  height: 60px;
  display: flex;
  justify-content: space-between;
  font-family: "Lexend Zetta", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-weight: 400;
  font-style: normal;
  border: solid 1px #000;
}

header h1 {
  align-items: center;
  font-size: 1.2rem;
  margin: auto;

}



/* .kv{
    height: 100vh;
  } */
.mainvisual {
  position: relative;
}

.bur {
  height: 21px;
  width: 100%;
  background: url(../images/bur.png) no-repeat center center / cover;
  border: 1px solid #000;
  border-top: none;

}

.bur p {
  font-size: 1.23rem;
  background-color: #fff;

}

/* .mainvisual div:nth-of-type(1) {
  animation-name: bgcountAnime;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;} */


@keyframes bgcountAnime {
  0% {
    background-color: #A9D2BE;

  }

  100% {
    background-color: #4b7561;
  }
}

.mainvisual .kv_02 {
  animation-name: bgcountAnime2;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
-webkit-backface-visibility:hidden;
backface-visibility:hidden;
overflow:hidden;
}

@keyframes bgcountAnime2 {
  0% {
    background-color: #4b7561;
    opacity: 1;
    
  }

  100% {
    background-color: #A9D2BE;
    opacity: 1;
  }
}

.mainvisual .kv_03 {
  animation-name: bgcountAnime3;
  animation-duration: 5s;
  animation-delay: 0s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
-webkit-backface-visibility:hidden;
backface-visibility:hidden;
overflow:hidden;
}

@keyframes bgcountAnime3 {
  0% {
    background-color: #4b7561;
    opacity: 1;
  }

  100% {
    background-color: #A9D2BE;
    opacity: 1;
  }
}

.mainvisual .kv_04 {
  animation-name: bgcountAnime4;
  animation-duration: 10s;
  animation-delay: 0s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
backface-visibility: hidden;
}

@keyframes bgcountAnime4 {
  0% {
    background-color: #4b7561;
    opacity: 1;
  }

  100% {
    background-color: #A9D2BE;
    opacity: 1;
  }
}

.mainvisual .kv_05 {
  animation-name: bgcountAnime5;
  animation-duration: 6s;
  animation-delay: 0s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
backface-visibility: hidden;
}

@keyframes bgcountAnime5 {
  0% {
    background-color: #A9D2BE;
    opacity: 1;
  }

  100% {
    background-color: #4b7561;
    opacity: 1;
  }
}



.mainvisual .kv_01 {
  /* background: url(../images/mainimage.png) no-repeat center center / cover; */
  width: 100%;
  height: 90vh;


}

.mainvisual .kv_01 div:first-child {
  background: url(../images/mainimage.png) no-repeat center center / cover;
  width: 100%;
  height: 100%;


}

.mainvisual .kv_01 div:last-child {
  background: url(../images/mainimage2.jpg) no-repeat center center / cover;
  display: block;
  width: 100%;
  height: 100%;
}



.mainvisual .kv_02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 10vw;
  height: 100%;
  background-color: #A9D2BE;
  border: solid #333 1px;
  border-top: none;
}

.mainvisual .kv_02 p {
  margin-top: 10px;
  margin-left: 10px;
  font-family: "Lexend Zetta", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: #fff;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 12px;
  opacity: .7;
}


.mainvisual .kv_03 {
  position: absolute;
  top: 0;
  right: 0;
  width: 2vw;
  height: 100%;
  background-color: #A9D2BE;
  border: solid #333 1px;
  border-top: none;
  cursor: pointer;
}



.mainvisual .kv_04 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #A9D2BE;
  border: solid #333 1px;

}



.mainvisual .kv_05 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60vw;
  max-width: 300px;
  height: 150px;
  background-color: #A9D2BE;
  border: solid #333 1px;
}

.mainvisual .kv_05 img {
  width: 40vw;
  margin: 0 auto;
  display: block;
}

#introduce {
  background-color: #353535;
  padding-bottom: 200px;
  position: relative;
}

#introduce div:first-of-type {
  background-color: #fff;
  height: 1px;
  width: 60%;
  top: 3%;
  right: 0;
  left: auto;
  position: absolute;
}

#introduce div:nth-of-type(2) {
  background-color: #fff;
  height: 1px;
  width: 100%;
  top: 32%;
  left: 0;
  position: absolute;
}

#introduce div:nth-of-type(3) {
  background-color: #fff;
  height: 1px;
  width: 79%;
  top: 69%;
  left: auto;
  right: 0;
  position: absolute;
}

#introduce div:nth-of-type(4) {
  background-color: #fff;
  height: 1px;
  width: 50%;
  top: 50%;
  left: 0;
  position: absolute;
}

#introduce div:nth-of-type(5) {
  background-color: #fff;
  height: 1px;
  width: 100%;
  top: 88%;
  left: auto;
  right: 0;
  position: absolute;
}


#introduce div:nth-of-type(6) {
  background-color: #fff;
  height: 100%;
  width: 1px;
  top: 0px;
  left: 10vw;
  position: absolute;
}

#introduce div:nth-of-type(7) {
  background-color: #fff;
  height: 69%;
  width: 1px;
  top: 0px;
  right: 10vw;
  position: absolute;
}

#introduce div:nth-of-type(8) {
  background-color: #fff;
  height: 14%;
  width: 1px;
  /* top: 0px; */
  bottom: 0;
  right: 10vw;
  position: absolute;
}





#introduce h2 {
  color: #fff;
  border-bottom: solid 1px #fff;
}

/* 
  #introduce section:first-of-type{
    width: 300px;
    height: 300px;
    margin: 0 auto;
    margin-bottom: 100px;
    border: solid #fff 1px;
  } */
#introduce section:first-of-type figure {
  border: 1px solid #fff;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 100px;
}

#introduce section:first-of-type img {
  padding: 30px;
  position: relative;
  z-index: 10;
}

#introduce section h3 {
  margin: 20px 0;
}


#introduce section:last-of-type {
  position: relative;
  background-color: #D6E7DF;
  padding: 30px;
  text-align: center;
  width: 80%;
  height: auto;
  margin: 0 auto;
  z-index: 10;
}

#introduce section p {
  font-family: "Hiragino Kaku Gothic ProN";
}


#introduce section:last-of-type figure {
  max-width: 400px;
  width: 80%;
}


#introduce section:last-of-type p {
  width: 90%;
  margin: 0 auto;
  overflow-wrap: anywhere;
  text-align: left;

}

#skill section {
  line-height: 1.8;
  text-align: center;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 100px;
}

#skill section h3 {
  font-size: 1.7rem;
  /* border-bottom: 1px solid #000; */
  margin-bottom: 20px;
}

#skill section {
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}



#skill section p {
  padding: 10px;
}

#skill h2 {
  position: relative;
}

#skill h2::after {
  content: "";
  height: 1px;
  width: 80%;
  position: absolute;
  bottom: 0;
  left: -10vw;
  background-color: #000;
}






/* タブ切り替え */
.tab-3 {
  display: flex;
  flex-wrap: wrap;
  /* max-width: 700px; */
  /* margin-right: 10px; */
  margin-left: auto;
}

.tab-3>label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: .7em 1em .5em;
  /* background-color: #f2f2f2; */
  font-weight: 600;
  font-size: .8em;
  text-align: center;
  cursor: pointer;
}

.tab-3>label:hover {
  opacity: .5;
}

.tab-3 input {
  display: none;
}

.tab-3>div {
  display: none;
  width: 100%;
  /* padding: 1.5em 1em; */
  background-color: #fff;
  margin: 0 auto;
}

.tab-3 label:has(:checked) {
  border-bottom: 1px solid #222;
}

.tab-3 label:has(:checked)+div {
  display: block;
}

.work_tab_images {
  max-width: 350px;
  margin: 10px auto;
}

.work_tab_images img {
  object-fit: cover;
}

/* .all .work_tab_inner .work_tab_images:last-child::after{
  display: block;
content:"";
width: 250px;
  margin: 10px auto;
}
.website .work_tab_images:last-of-type:after{
   display: block;
content:"";
width: 250px;
  margin: 10px auto;
} */


#work .work_tab {
  position: relative;
  margin: 1px auto -1px;
  width: 90%;
  max-width: 1500px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  background-color: #000;
}

#work h4 {
  font-size: 16px;
  text-align: center;
  padding: 20px 0;
}

#work .work_tab_line {
  background-color: #fff;
  padding-top: 1px;
  border-radius: 10px;
  padding-bottom: 1px;
}

/* #work .work_tab{
  overflow: hidden;
} */

#work .work_ol {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
}


#work .work_ol::before {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}

#work .work_ol::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}

footer {
  background-color: #4E6D6D;
}

footer .rogo img {
  width: 70px;
  display: block;
  margin: 0 auto;
}

footer small {
  font-size: 0.9rem;
  display: block;
  color: #fff;
  text-align: center;
}

/* モーダル */
/* Compornents - ModalWindow */

.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;

}

.c-modal_content {
  background: #b7c4b7;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 98%;
  max-width: 700px;
  height: auto;
}

/* .md_inner{
  display: flex;
} */
.md_inner h5 {
  font-size: 25px;
  text-align: center;
}

.md_inner_p {
  margin: 30px;
}

.md_inner_p p {
  margin-bottom: 10px;
  font-family: "Hiragino Kaku Gothic ProN";
}

.md_inner img {
  margin-top: 20px;
  width: 100%;
}

.button_md {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 30px auto 10px;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  box-shadow: 0 7px 10px rgb(0 0 0 / 10%);
  background-color: #fff;
  color: #333;
  font-size: 1em;
  transition: transform .3s, box-shadow .3s;
}

.button_md:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 10px rgb(0 0 0 / 15%);
}

/* 
	&._sm {
		width: 30%;
	}

	&._md {
		width: 50%;
	}

	&._lg {
		width: 70%;
	}
} */

.c-modal_content_inner {
  position: relative;
  padding: 24px;
}

.c-modal_close {
  position: absolute;
  top: 13px;
  right: 10px;
}

.kara {
  display: none;
}

@media screen and (min-width:600px) {

  .mainvisual .kv_05 {
    position: absolute;
    top: 0;
    left: 0;
    width: 33vw;
    max-width: 250px;
    height: 90vh;
    background-color: #A9D2BE;
    border: solid #333 1px;
  }

  .mainvisual .kv_05 img {
    width: 20vw;
    margin: 0;
    display: block;
  }

  .mainvisual .kv_04 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #A9D2BE;
    border: solid #333 1px;
  }

  .mainvisual .kv_02 {
    z-index: 10;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 32.5vw;
    height: 16%;
    background-color: #A9D2BE;
    border: solid #333 1px;
  }

  .mainvisual .kv_02 p {
    writing-mode: horizontal-tb;
  }

  .mainvisual .kv_03 {
    position: absolute;
    top: 0;
    right: 0;
    width: 5vw;
    height: 100%;
    background-color: #A9D2BE;
    border: solid #333 1px;
    border-top: none;
  }

  #work .work_tab_inner {
    display: flex;
    flex-wrap: wrap;

  }

  .work_tab_images {
    /* max-width: 250px;
    width: 25%; */
    /* width: 250px; */
    margin: 40px auto;
  }

  #skill .skill_inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  #skill .skill_inner::after {
    content: "";
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
  }

  #skill .skill_inner::before {
    content: "";
    height: 100px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 1px;
  }

  .md_inner {
    display: flex;
  }

  .md_inner img {
    width: 50%;
    max-width: 500px;
    object-fit: contain;
  }
}

@media screen and (min-width:978px) {
  header h1 {
    padding-left: 14vw;
  }

  .mainvisual {
    height: 100vh;
  }

  .mainvisual .kv_01 {
    height: 100%;
  }

  .mainvisual .kv_05 {
    position: absolute;
    max-width: initial;
    bottom: 0;
    left: 0;
    width: 14vw;
    background-color: #A9D2BE;
    border: solid #333 1px;
    height: 100%;
    z-index: 4;
    top: -12vh;
  }

  header {
    margin-right: 0px;
    margin-left: auto;
    /* width: 86vw; */
  }

  nav.is-active {
    margin-top: 200px;
  }

  .bur {
    margin-right: 0px;
    margin-left: auto;
    height: 21px;
    width: 85vw;
  }



  .mainvisual .kv_05 img {
    width: 10vw;
    margin: 0;
    display: block;
  }

  .mainvisual .kv_04 {
    height: 56px;
  }

  .introduce_block {
    display: flex;
    width: 70vw;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
  }

  #introduce {
    background-color: #353535;
    padding-bottom: 100px;
    position: relative;
  }

  #introduce section {
    width: 100%;
  }

  #introduce section:first-of-type figure {
    margin: 0;
  }

  #introduce section:last-of-type {
    position: relative;
    padding: 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    z-index: 10;
  }

  #introduce section:last-of-type {
    margin-left: 20px;
  }

  #introduce div:nth-of-type(3) {
    background-color: #fff;
    height: 1px;
    width: 79%;
    top: 81%;
    left: auto;
    right: 0;
    position: absolute;
  }

  #introduce div:nth-of-type(7) {
    background-color: #fff;
    height: 81%;
    width: 1px;
    top: 0px;
    right: 10vw;
    position: absolute;
  }

  #introduce div:nth-of-type(8) {
    background-color: #fff;
    height: 85%;
    width: 1px;
    bottom: 0;
    right: 33vw;
    position: absolute;
  }



}

@media screen and (min-width:1170px) {
  #introduce section:last-of-type {
    height: 400px;
  }

  #introduce section:last-of-type {
    margin: 0 auto;
    /* margin-left: 20px; */
  }

  #introduce div:nth-of-type(2) {
    background-color: #fff;
    height: 1px;
    width: 100%;
    top: 15%;
    left: 0;
    position: absolute;
  }

  .work_tab_images {
    width: 30%;
  }

  #work .work_tab_inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .kara {
    display: block;
  }


}