@charset "UTF-8";
/* 変数
**************************************************/
/* MIX IN
**************************************************/
/* ファンクション
**************************************************/
/* gallery
**************************************************/
.fadeGallery-enter {
  opacity: 0;
}

.fadeGallery-enter-active {
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}

.fadeGallery-enter-to {
  opacity: 1;
}

.fadeGallery-leave-active {
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}

.fadeGallery-leave-to {
  opacity: 0;
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-filter: opacity(0%);
    filter: opacity(0%);
  }
  1% {
    -webkit-transform: translate(-50%, -50%) scale(40%);
    transform: translate(-50%, -50%) scale(40%);
  }
  100% {
    -webkit-filter: opacity(100%);
    filter: opacity(100%);
    -webkit-transform: translate(-50%, -50%) scale(100%);
    transform: translate(-50%, -50%) scale(100%);
  }
}

@keyframes scaleUp {
  0% {
    -webkit-filter: opacity(0%);
    filter: opacity(0%);
  }
  1% {
    -webkit-transform: translate(-50%, -50%) scale(40%);
    transform: translate(-50%, -50%) scale(40%);
  }
  100% {
    -webkit-filter: opacity(100%);
    filter: opacity(100%);
    -webkit-transform: translate(-50%, -50%) scale(100%);
    transform: translate(-50%, -50%) scale(100%);
  }
}

@-webkit-keyframes change {
  0% {
    -webkit-filter: opacity(0%);
    filter: opacity(0%);
  }
  100% {
    -webkit-filter: opacity(100%);
    filter: opacity(100%);
  }
}

@keyframes change {
  0% {
    -webkit-filter: opacity(0%);
    filter: opacity(0%);
  }
  100% {
    -webkit-filter: opacity(100%);
    filter: opacity(100%);
  }
}

.full_image {
  max-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.full_image .overlay_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.full_image .image {
  margin: 0 auto;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  text-align: center;
  z-index: 15;
  -webkit-animation-name: scaleUp;
  animation-name: scaleUp;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.full_image .image .image_group {
  background-color: #fff;
  outline: 10px solid #fff;
  z-index: 15;
}

@media (max-width: 640px) {
  .full_image .image .image_group {
    outline: 5px solid #fff;
  }
}

.full_image .image img {
  position: relative;
  opacity: 0;
  z-index: 1500;
}

.full_image .image img.active {
  max-height: 90vh;
  max-width: 75vw;
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  cursor: default;
  -webkit-animation-name: change;
  animation-name: change;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.full_image .image img:not(.active) {
  display: none;
}

.full_image a:hover .icon, .full_image a:focus .icon {
  opacity: .5;
}

.btn_close {
  position: fixed;
  right: 0;
  z-index: 20;
  color: #fff;
  cursor: pointer;
}

.btn_close .icon {
  display: block;
  position: relative;
  width: 100px;
  height: 100px;
}

@media (max-width: 640px) {
  .btn_close .icon {
    width: 50px;
    height: 50px;
  }
}

.btn_close .icon::before, .btn_close .icon::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  /* 棒の幅（太さ） */
  height: 50px;
  /* 棒の高さ */
  background: #fff;
}

@media (max-width: 640px) {
  .btn_close .icon::before, .btn_close .icon::after {
    height: 30px;
  }
}

.btn_close .icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn_close .icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn_prev, .btn_next {
  position: fixed;
  top: 45%;
  width: 100px;
  height: 100px;
  z-index: 20;
  cursor: pointer;
}

@media (max-width: 640px) {
  .btn_prev, .btn_next {
    top: 49%;
    width: 25px;
    height: 25px;
  }
}

.btn_prev.disabled, .btn_next.disabled {
  display: none;
}

.btn_prev .icon, .btn_next .icon {
  width: 100%;
  height: 100%;
}

.btn_prev .icon::before, .btn_next .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 640px) {
  .btn_prev .icon::before, .btn_next .icon::before {
    width: 15px;
    height: 15px;
  }
}

.btn_prev {
  left: 0;
}

.btn_prev .icon::before {
  left: 30px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

@media (max-width: 640px) {
  .btn_prev .icon::before {
    left: 15px;
  }
}

.btn_next {
  right: 0;
}

.btn_next .icon::before {
  right: 30px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media (max-width: 640px) {
  .btn_next .icon::before {
    right: 15px;
  }
}

.gallery_list {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}

.gallery_list > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
}

.gallery_list > div:hover img, .gallery_list > div:focus img {
  opacity: .7;
}

.gallery_list img {
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content-visibility: hidden;
}

.page_title::after {
  background: url("/img/kiwaki/pagetitle_gallery_en.png") no-repeat;
  left: -5%;
}

.company_info .info {
  padding-top: 90px;
  margin-top: -90px;
}

@media (max-width: 640px) {
  .company_info .info {
    padding-top: 60px;
    margin-top: -60px;
  }
}

.company_info .info:first-child, .company_info .info + .info {
  margin-bottom: 90px;
}

@media (max-width: 640px) {
  .company_info .info:first-child, .company_info .info + .info {
    margin-bottom: 60px;
  }
}

.company_info .name {
  margin-bottom: 20px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #94C465;
  color: #fff;
  -webkit-box-shadow: 0 4px 5px #e1e1e1;
  box-shadow: 0 4px 5px #e1e1e1;
}

@media (max-width: 640px) {
  .company_info .name {
    height: 50px;
  }
}

.company_info .name span {
  padding-left: 20px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: bold;
  font-size: 34px;
  line-height: 1;
}

@media (min-width: 640px) and (max-width: 1080px) {
  .company_info .name span {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .company_info .name span {
    padding-left: 5px;
    font-size: 18px;
  }
}

.company_info .name .logo {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background-color: #fff;
}

.company_info .name .logo img {
  max-height: 50px;
}

@media (min-width: 640px) and (max-width: 1080px) {
  .company_info .name .logo img {
    max-height: 36px;
  }
}

@media (max-width: 640px) {
  .company_info .name .logo img {
    max-height: 20px;
    max-width: 70px;
  }
}

@media (min-width: 640px) and (max-width: 1080px) {
  .company_info .name + table {
    font-size: 16px;
  }
}

.company_info table th {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .company_info .contact span {
    display: block;
  }
}

.company_info .contact span + span {
  padding-left: 2em;
}

@media (max-width: 640px) {
  .company_info .contact span + span {
    padding-left: 0;
  }
}

.company_info .copy {
  margin: 40px 0 10px;
  font-weight: bold;
  font-size: 28px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #007F41;
}

@media (max-width: 640px) {
  .company_info .copy {
    margin-top: 25px;
    font-size: 20px;
  }
}

.image_gallery {
  padding: 60px 120px;
  background-color: #f0f6ea;
}

@media (min-width: 640px) and (max-width: 1080px) {
  .image_gallery {
    padding: 50px 80px;
  }
}

@media (max-width: 640px) {
  .image_gallery {
    padding: 15px 10px;
  }
}

.image_gallery .tab_group {
  margin: 0 auto;
}

.image_gallery .tab {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
}

@media (max-width: 640px) {
  .image_gallery .tab {
    margin-bottom: 10px;
  }
}

.image_gallery .tab li {
  padding: 5px 20px;
  border-radius: 20px;
  background-color: #9FA0A0;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 640px) and (max-width: 1080px) {
  .image_gallery .tab li {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .image_gallery .tab li {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.image_gallery .tab li:hover, .image_gallery .tab li:focus, .image_gallery .tab li.active {
  -webkit-transition: background-color .6s ease;
  transition: background-color .6s ease;
  background-color: #007F41;
}

.gallery > div {
  float: none;
  display: none;
}

.gallery > div.active {
  display: block;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.gallery > div img {
  cursor: pointer;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.gallery > div img:hover, .gallery > div img:focus {
  opacity: .7;
}

.gallery .gallery_title {
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 127, 65, 0.5);
  font-weight: bold;
  font-size: 18px;
  color: #525252;
}

@media (max-width: 640px) {
  .gallery .gallery_title {
    margin-top: 10px;
    font-size: 14px;
  }
}

.gallery .gallery_text {
  margin-top: 10px;
  font-size: 14px;
  color: #525252;
  white-space: pre-line;
}

@media (max-width: 640px) {
  .gallery .gallery_text {
    font-size: 12px;
  }
}

.gallery .gallery_table {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 640px) {
  .gallery .gallery_table table:nth-child(2) tbody tr:first-child {
    border-top: none;
  }
}

.gallery .gallery_table tbody tr {
  width: 50%;
  height: 32px;
}

@media (max-width: 640px) {
  .gallery .gallery_table tbody tr {
    height: auto;
  }
}

.gallery .gallery_table tbody tr th, .gallery .gallery_table tbody tr td {
  padding: 0 20px;
  font-size: 14px;
  white-space: initial;
}

@media (min-width: 640px) and (max-width: 1080px) {
  .gallery .gallery_table tbody tr th, .gallery .gallery_table tbody tr td {
    padding: 0 5px 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .gallery .gallery_table tbody tr th, .gallery .gallery_table tbody tr td {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .gallery .gallery_table tbody tr th {
    width: 30%;
  }
}

.gallery .gallery_table tbody tr td {
  background-color: #fff;
}

@media (max-width: 640px) {
  .gallery .gallery_table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.image_example {
  margin-top: 30px;
}

@media (max-width: 640px) {
  .image_example {
    margin-top: 15px;
  }
}

.image_example .gallery_list img {
  height: 130px;
}

@media (max-width: 640px) {
  .image_example .gallery_list img {
    height: 60px;
  }
}

.image_example .gallery_list .image_none {
  cursor: default;
}

.image_example .tit {
  margin-bottom: 8px;
}

.image_example span:not(.comment) {
  font-weight: bold;
}

@media (max-width: 640px) {
  .image_example span:not(.comment) {
    font-size: 14px;
  }
}

.image_example .comment {
  font-size: 12px;
  display: inline-block;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: .8;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: .8;
  }
  to {
    opacity: 1;
  }
}

.preparation {
  font-size: 26px;
  color: #999;
  border: 1px solid #bbb;
  padding: 26px 10px;
  text-align: center;
}
