@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Klee One", cursive;
  font-weight: 300;
  font-style: normal;
  background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.header.change-color {
  background-color: #555;
  transition: 0.3s;
}

.header.change-color #header_pc .header_logo {
  height: 4.5vw;
  margin-top: 0;
  transition: 1s ease;
}

.header.change-color #header_sp .header_logo {
  width: 10%;
  margin-top: 0;
  transition: 1s ease;
}

.slick-next, .slick-prev {
  display: none !important;
}

p {
  font-size: 1.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.25rem;
  }
}

h1 {
  font-size: 4.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 3.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 2.4rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.8rem;
  }
}

#lower_main {
  position: relative;
  margin-bottom: 6vw;
}
#lower_main .lower_main {
  background-position: center;
  background-size: cover;
  width: 100%;
  margin-left: auto;
  margin-right: 0px;
  height: 50vh;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .lower_main {
    height: 30vh;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main {
    height: 25vh;
  }
}
#lower_main .lower_main .lower_main_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.6);
}
#lower_main .lower_main_title {
  position: absolute;
  top: 60%;
  left: 0%;
  padding: 4.5vw;
  padding-left: 10%;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}
@media screen and (min-width: 1441px) {
  #lower_main .lower_main_title {
    top: 65%;
    left: 0%;
    padding: 2.5vw;
    padding-left: 5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .lower_main_title {
    top: 65%;
  }
}
#lower_main .lower_main_title h3 {
  letter-spacing: 0.5vw;
}
#lower_main .breadcrumbs {
  margin: 2vw 0;
  margin-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .breadcrumbs {
    margin: 3vw 0;
    margin-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .breadcrumbs {
    margin: 5vw 0;
    margin-left: 5vw;
  }
}
#lower_main .breadcrumbs p {
  font-size: 0.8vw;
  letter-spacing: 0.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .breadcrumbs p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .breadcrumbs p {
    font-size: 1.8vw;
  }
}
#lower_main .breadcrumbs p a {
  text-decoration: none;
  color: #c8c8c8;
}
#lower_main .breadcrumbs p span {
  margin: 0 1vw;
}

header {
  position: fixed;
  width: 100%;
  z-index: 999999;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  height: 5vw;
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  height: 9.5vw;
  margin-top: 10%;
  transition: 1s ease;
}
header #header_pc .header_logo img {
  height: 100%;
}
header #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #header_pc .header_menu ul li {
  text-align: center;
  width: 8vw;
  position: relative;
}
header #header_pc .header_menu ul li::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  height: 1px;
  background-color: #fff;
  bottom: -12px;
  opacity: 0;
  visibility: visible;
  transition: all 0.4s;
}
header #header_pc .header_menu ul li:hover::after {
  visibility: visible;
  bottom: -4px;
  opacity: 1;
}
header #header_pc .header_menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1vw;
}
header #header_pc .header_menu ul li a span {
  font-size: 0.8vw;
}
header #header_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  header #header_sp {
    height: 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6vw;
  }
  header #header_sp .header_logo {
    width: 20%;
    margin-top: 10%;
    transition: 1s ease;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  header #header_sp .header_logo {
    margin-top: 15%;
  }
}
@media screen and (max-width: 768px) {
  header #header_sp .header_logo img {
    width: 100%;
    vertical-align: top;
  }
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 0px;
  top: 0px;
  width: 10vw;
  height: 10vw;
  cursor: pointer;
  text-align: center;
  background-color: #333;
}
@media screen and (min-width: 1441px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 30%;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: 70%;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 50%;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li {
    margin-bottom: 20px;
  }
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 3vw;
}
nav.globalMenuSp ul li a span {
  font-size: 1.5vw;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#top_main {
  position: relative;
}
#top_main .slide-images {
  width: 100%;
  height: 90vh;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .slide-images {
    height: 90vh;
  }
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    height: 80vh;
  }
}
#top_main .slide-images::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.3);
}
#top_main .slide-images .slick-list {
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track {
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#top_main .top_main_writing {
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing {
    top: 40%;
  }
}
#top_main .top_main_writing .top_main_text_en {
  margin-bottom: 2vw;
  overflow: hidden;
}
#top_main .top_main_writing .top_main_text_en p {
  font-size: 6vw;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.4vw;
  animation: textAnime 1.5s 0.5s forwards ease-in-out;
  transform: translateY(100%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_en p {
    font-size: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_en p {
    font-size: 10vw;
  }
}
#top_main .top_main_writing .top_main_text_en .sub_en {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_en .sub_en {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_en .sub_en {
    font-size: 2vw;
  }
}
#top_main .top_main_writing .top_main_text_ja {
  overflow: hidden;
}
#top_main .top_main_writing .top_main_text_ja p {
  font-size: 1.4vw;
  color: #fff;
  line-height: 3vw;
  animation: textAnime 1.5s 0.5s forwards ease-in-out;
  transform: translateY(100%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_ja p {
    font-size: 2vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja p {
    font-size: 2.5vw;
    line-height: 5vw;
  }
}
#top_main #top_news {
  position: absolute;
  bottom: -10%;
  right: 0;
  background-color: #555;
  width: 40%;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news {
    width: 60%;
    padding: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_news {
    position: relative;
    bottom: 0;
    top: 100%;
    width: 100%;
    padding: 18vw 8vw;
  }
}
#top_main #top_news .top_news {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top_main #top_news .top_news .top_news_left .top_news_title {
  color: #fff;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_main #top_news .top_news .top_news_left .top_news_title {
    margin-bottom: 6vw;
  }
}
#top_main #top_news .top_news .top_news_left .top_news_title h4 {
  letter-spacing: 0.3vw;
}
@media screen and (max-width: 768px) {
  #top_main #top_news .top_news .top_news_left .top_news_title h4 {
    letter-spacing: 0.6vw;
  }
}
#top_main #top_news .top_news .top_news_left .top_news_title p {
  font-size: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news .top_news_left .top_news_title p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_news .top_news .top_news_left .top_news_title p {
    font-size: 2vw;
  }
}
#top_main #top_news .top_news .top_news_left .top_news_contents ul {
  list-style: none;
}
#top_main #top_news .top_news .top_news_left .top_news_contents ul a {
  color: #fff;
  text-decoration: none;
}
#top_main #top_news .top_news .top_news_left .top_news_contents ul a li {
  border-bottom: 1px solid #fff;
  padding: 0 1vw;
}
#top_main #top_news .top_news .top_news_left .top_news_contents ul a li .outline {
  font-size: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news .top_news_left .top_news_contents ul a li .outline {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_news .top_news .top_news_left .top_news_contents ul a li .outline {
    font-size: 2vw;
  }
}
#top_main #top_news .top_news .top_news_left .top_news_contents ul a li .outline .date {
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  #top_main #top_news .top_news .top_news_left .top_news_contents ul a li .outline .date {
    letter-spacing: 0.6vw;
  }
}
#top_main #top_news .top_news .top_news_left .top_news_contents ul a li .outline .title {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news .top_news_left .top_news_contents ul a li .outline .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_news .top_news .top_news_left .top_news_contents ul a li .outline .title {
    font-size: 3vw;
  }
}
#top_main #top_news .top_news .top_news_btn a {
  color: #555;
  text-decoration: none;
}
#top_main #top_news .top_news .top_news_btn a button {
  background-color: #fff;
  padding: 1vw 4vw;
  letter-spacing: 0.15vw;
  border: none;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news .top_news_btn a button {
    padding: 1.4vw 5vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_news .top_news .top_news_btn a button {
    padding: 2vw 8vw;
    letter-spacing: 0.3vw;
  }
}
#top_main #top_news .top_news .top_news_btn a button:hover {
  background-color: #555;
  color: #fff;
  border: 1px solid #fff;
}

@keyframes textAnime {
  to {
    transform: translateY(0px);
  }
}
.slide-images {
  overflow: hidden;
  margin: 0 auto;
}
.slide-images .slider-item {
  font-size: 0;
  height: 100%;
}
.slide-images .slider-item img {
  width: 100%;
}
.slide-images .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
#about {
  position: relative;
  margin-top: 15vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about {
    margin-top: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #about {
    margin-top: 25vw;
  }
}
#about .about {
  width: 100%;
  background-size: cover;
  padding: 8vw 0;
}
#about .about .about_title {
  width: 50%;
  margin-left: auto;
  margin-right: 2vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_title {
    width: 90%;
    margin: auto;
    margin-bottom: 6vw;
    text-align: end;
  }
}
#about .about .about_title h4 {
  font-size: 2vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_title h4 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_title h4 {
    font-size: 5vw;
  }
}
#about .about .about_title h4 span {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_title h4 span {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_title h4 span {
    font-size: 2vw;
  }
}
#about .about .about_text {
  width: 50%;
  margin-left: auto;
  margin-right: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_text {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_text {
    width: 90%;
    margin: auto;
  }
}
#about .about .about_text p {
  color: #fff;
  font-size: 1vw;
  line-height: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_text p {
    font-size: 1.6vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_text p {
    font-size: 2.6vw;
    line-height: 6vw;
  }
}
#about .about .about_text .about_text02 {
  line-height: 1.5vw;
  margin-top: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_text .about_text02 {
    line-height: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_text .about_text02 {
    line-height: 3.5vw;
  }
}
#about .about .about_image {
  position: absolute;
  top: -20%;
  left: 0;
  height: 40vw;
}
#about .about .about_image img {
  height: 100%;
}

#top_contents {
  margin-bottom: 8vw;
}
#top_contents .top_contents {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents {
    width: 100%;
  }
}
#top_contents .top_contents ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents ul {
    flex-flow: column;
  }
}
#top_contents .top_contents ul li {
  overflow: hidden;
  width: 33.3333333333%;
  height: 80vh;
  position: relative;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents ul li {
    height: 70vw;
  }
}
@media screen and (max-width: 768px) {
  #top_contents .top_contents ul li {
    width: 100%;
    height: 50vw;
  }
}
#top_contents .top_contents ul li a {
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
}
#top_contents .top_contents ul li a .top_content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.4s;
}
#top_contents .top_contents ul li a .top_content:hover {
  transform: scale(1.1);
}
#top_contents .top_contents ul li a .top_content .top_content_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
#top_contents .top_contents ul li a .top_content .top_content_bg:hover {
  background: rgba(51, 51, 51, 0.6);
}
#top_contents .top_contents ul li a .bg-pl {
  background-position: left;
}
#top_contents .top_contents ul li a .top_content_title {
  position: absolute;
  top: 2vw;
  left: 2vw;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contents .top_contents ul li a .top_content_title {
    font-size: 3vw;
  }
  #top_contents .top_contents ul li a .top_content_title span {
    font-size: 2vw;
  }
}
#top_contents .top_contents ul li a .top_content_title h4 {
  text-shadow: 1px 0px 10px #adadad;
}

#partner {
  margin: 8vw 0;
}
#partner .partner_title {
  text-align: center;
  margin-bottom: 4vw;
}
#partner ul {
  width: 90%;
  margin: auto;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 2vw;
  background-color: #fff;
}
#partner ul li {
  width: 23%;
}
@media screen and (max-width: 768px) {
  #partner ul li {
    width: 45%;
  }
}
#partner ul li a {
  position: relative;
  transition: all 1s ease;
}
#partner ul li a:hover {
  opacity: 0.6;
}
#partner ul li a img {
  width: 100%;
}

/* 強みセクション デザイン修正版：左右分割 */
#advantage {
  padding: 10vw 0 5vw;
  background-position: 0% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 5vw;
  overflow-x: hidden;
}
#advantage .advantage_inner {
  display: flex;
  align-items: center; /* 垂直方向の中央揃え */
  width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #advantage .advantage_inner {
    flex-direction: column; /* SPでは縦並び */
    width: 90%;
    margin: auto;
  }
}
#advantage .advantage_inner {
  /* ---------------------- */
  /* 左側：テキストエリア */
  /* ---------------------- */
}
#advantage .advantage_inner .advantage_text_area {
  width: 45%; /* 左側を狭めに設定 */
  padding-right: 5%; /* 右側に余白 */
}
@media screen and (max-width: 768px) {
  #advantage .advantage_inner .advantage_text_area {
    width: 100%;
    padding: 0;
  }
}
#advantage .advantage_inner .advantage_text_area .section_title {
  text-align: left; /* タイトルを左寄せに */
  margin-bottom: 2vw;
}
#advantage .advantage_inner .advantage_text_area .section_lead {
  font-size: 1vw;
  color: #555;
  margin-bottom: 4vw;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #advantage .advantage_inner .advantage_text_area .section_lead {
    font-size: 3vw;
    margin-bottom: 8vw;
  }
}
#advantage .advantage_inner .advantage_text_area .advantage_list {
  list-style: none;
}
#advantage .advantage_inner .advantage_text_area .advantage_list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3vw;
  border-left: 3px solid #333; /* 縦ラインでシャープな印象 */
  padding-left: 1.5vw;
}
#advantage .advantage_inner .advantage_text_area .advantage_list .advantage_number {
  font-size: 1.5vw;
  font-weight: 200;
  color: #999; /* グレーで控えめに */
  margin-right: 1.5vw;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #advantage .advantage_inner .advantage_text_area .advantage_list .advantage_number {
    font-size: 4vw;
    margin-right: 4vw;
  }
}
#advantage .advantage_inner .advantage_text_area .advantage_list .list_content h5 {
  font-size: 1.2vw;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.2vw;
}
@media screen and (max-width: 768px) {
  #advantage .advantage_inner .advantage_text_area .advantage_list .list_content h5 {
    font-size: 3.5vw;
  }
}
#advantage .advantage_inner .advantage_text_area .advantage_list .list_content p {
  font-size: 0.8vw;
  color: #777;
}
@media screen and (max-width: 768px) {
  #advantage .advantage_inner .advantage_text_area .advantage_list .list_content p {
    font-size: 2.5vw;
  }
}
#advantage .advantage_inner {
  /* ---------------------- */
  /* 右側：画像エリア */
  /* ---------------------- */
}
#advantage .advantage_inner .advantage_image_area {
  width: 55%; /* 右側を広めに設定 */
  height: 60vh; /* 縦長でダイナミックに */
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  #advantage .advantage_inner .advantage_image_area {
    margin-left: 0%;
    height: 40vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #advantage .advantage_inner .advantage_image_area {
    height: 30vh;
  }
}
@media screen and (max-width: 768px) {
  #advantage .advantage_inner .advantage_image_area {
    width: 100%;
    height: 50vw;
    margin-top: 8vw;
    margin-left: 45%;
  }
}
#advantage .advantage_inner .advantage_image_area img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tokusho-footer {
  margin-top: 15px;
  text-align: center;
}

.tokusho-footer a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  color: #333 !important;
  background: #ffffff;
  border-radius: 5px;
  text-decoration: none !important;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.tokusho-footer a:hover {
  background: #f5f5f5;
  color: #000 !important;
}

#service .service_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents {
    width: 95%;
  }
}
#service .service_contents .service_head {
  max-width: 70%;
  margin: 10vw auto;
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_head {
    max-width: 90%;
  }
}
#service .service_contents .service_head .service_content_writing .headline {
  margin-bottom: 1.4vw;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_head .service_content_writing .headline {
    font-size: 3.5vw;
    margin-bottom: 3vw;
  }
}
#service .service_contents .service_head .service_content_writing .text {
  font-size: 1vw;
  line-height: 1.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents .service_head .service_content_writing .text {
    font-size: 1.6vw;
    line-height: 2.2vw;
    letter-spacing: 0.3vw;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_head .service_content_writing .text {
    font-size: 2.5vw;
    line-height: 4vw;
  }
}
#service .service_contents ul {
  list-style: none;
}
#service .service_contents ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3vw 1vw;
  border-top: 1px solid #d7bd48;
  border-bottom: 1px solid #d7bd48;
}
@media screen and (max-width: 768px) {
  #service .service_contents ul li {
    flex-flow: column;
    padding: 6vw 2vw;
  }
}
#service .service_contents ul li .service_content_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #service .service_contents ul li .service_content_image {
    width: 80%;
    margin-bottom: 4vw;
  }
}
#service .service_contents ul li .service_content_image img {
  border-radius: 10px;
  width: 100%;
}
#service .service_contents ul li .service_content_writing {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #service .service_contents ul li .service_content_writing {
    width: 100%;
  }
}
#service .service_contents ul li .service_content_writing .headline {
  margin-bottom: 1.4vw;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #service .service_contents ul li .service_content_writing .headline {
    font-size: 3.5vw;
    margin-bottom: 3vw;
  }
}
#service .service_contents ul li .service_content_writing .text {
  font-size: 1vw;
  line-height: 1.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents ul li .service_content_writing .text {
    font-size: 1.6vw;
    line-height: 2.2vw;
    letter-spacing: 0.3vw;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents ul li .service_content_writing .text {
    font-size: 2.5vw;
    line-height: 4vw;
  }
}
#service .service_contents ul li:nth-child(even) {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #service .service_contents ul li:nth-child(even) {
    flex-flow: column;
  }
}

#news .news .news_contents {
  width: 50%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents {
    width: 80%;
  }
}
#news .news .news_contents ul {
  list-style: none;
}
#news .news .news_contents ul a {
  color: #555;
  text-decoration: none;
}
#news .news .news_contents ul a li {
  border-bottom: 1px solid #555;
  padding: 0 1vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a li {
    margin-bottom: 6vw;
  }
}
#news .news .news_contents ul a li .thumb {
  width: 100%;
  height: 40vw;
  margin-bottom: 2vw;
}
#news .news .news_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
}
#news .news .news_contents ul a li .outline .date {
  font-size: 1vw;
  margin-bottom: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul a li .outline .date {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a li .outline .date {
    font-size: 3vw;
  }
}
#news .news .news_contents ul a li .outline .title {
  font-size: 1.2vw;
  margin-bottom: 0.3vw;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul a li .outline .title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul a li .outline .title {
    font-size: 3.5vw;
  }
}
#news .news .news_contents ul a li .outline .descn {
  font-size: 0.8vw;
}

#news_single .news_contents {
  width: 50%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents {
    width: 90%;
  }
}
#news_single .news_contents ul {
  list-style: none;
  color: #555;
  text-decoration: none;
}
#news_single .news_contents ul li .thumb {
  width: 100%;
  height: 40vw;
  margin-bottom: 2vw;
}
#news_single .news_contents ul li .thumb img {
  width: 100%;
  height: 100%;
}
#news_single .news_contents ul li .outline .date {
  font-size: 1vw;
  margin-bottom: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents ul li .outline .date {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul li .outline .date {
    font-size: 3vw;
  }
}
#news_single .news_contents ul li .outline .title {
  font-size: 1.6vw;
  margin-bottom: 2vw;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents ul li .outline .title {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul li .outline .title {
    font-size: 4vw;
  }
}
#news_single .news_contents ul li .outline .descn {
  font-size: 0.8vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul li .outline .descn {
    margin-bottom: 8vw;
  }
}
#news_single .news_contents ul li .outline img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.no_image {
  display: none;
}

#company .company {
  width: 65%;
  margin: auto;
  margin-bottom: 6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #company .company {
    width: 95%;
    margin-bottom: 10vw;
  }
}
#company .company table {
  width: 100%;
  border-collapse: collapse;
}
#company .company table tr {
  border-bottom: 1px solid #d7bd48;
}
#company .company table tr th, #company .company table tr td {
  padding: 1.4vw;
  font-size: 1vw;
  letter-spacing: 0.3vw;
  line-height: 1.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company table tr th, #company .company table tr td {
    font-size: 1.6vw;
    line-height: 2.4vw;
    padding: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company table tr th, #company .company table tr td {
    font-size: 2.2vw;
    line-height: 4vw;
    letter-spacing: 0.6vw;
    padding: 3vw;
  }
}
#company .company table tr th {
  width: 30%;
}

#contact .contact {
  width: 80%;
  margin: auto;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact {
    width: 95%;
  }
}
#contact .contact .contact_text {
  margin: 3rem 0;
}
#contact .contact .form {
  width: 100%;
  margin-bottom: 8vw;
}
#contact .contact .form .wpcf7 {
  color: #333;
  background-color: #f0f0f0;
  padding: 5rem;
  border-radius: 10px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .wpcf7 {
    padding: 5rem 1rem;
  }
}
#contact .contact .form .wpcf7 label {
  display: block;
  margin-bottom: 2rem;
  font-size: 100%;
  font-weight: 600;
  color: #333333;
}
#contact .contact .form .wpcf7 label .red {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .blue {
  background-color: #2986ff;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .wpcf7-form-control-wrap input {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
}
#contact .contact .form .wpcf7 label textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  height: 250px;
  resize: vertical;
}
#contact .contact .form .wpcf7 label.policy {
  text-align: center;
}
#contact .contact .form .wpcf7 label.policy input {
  width: auto;
}
#contact .contact .form .wpcf7 .wpcf7 input[type=url], #contact .contact .form .wpcf7 .wpcf7 input[type=email], #contact .contact .form .wpcf7 .wpcf7 input[type=tel] {
  padding: 2rem;
  margin-bottom: 2rem;
  height: 20px;
}
#contact .contact .form .wpcf7 input[type=submit] {
  color: #fff;
  background-color: #bf0707;
  cursor: pointer;
  transition: background-color 0.4s ease;
  border: none;
  width: 80%;
  margin: auto 10%;
  font-size: 120%;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
}
#contact .contact .form .wpcf7 input[type=submit]:hover {
  opacity: 0.7;
}
#contact .contact .form .wpcf7 .wpcf7-response-output {
  font-size: 160%;
  text-align: center;
  padding: 1rem;
  color: #333;
  font-weight: 600;
}
#contact .contact .form .wpcf7 .wpcf7-form-control {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
#contact .contact .form .thanks {
  text-align: center;
  font-size: 140%;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .thanks {
    text-align: left;
    font-size: 100%;
  }
}

#works #reform {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #works #reform {
    width: 95%;
    margin-bottom: 12vw;
  }
}
#works #reform h2 {
  width: 80%;
  margin: auto;
  padding: 1vw 0;
  background-color: #333;
  color: #fff;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works #reform h2 {
    width: 100%;
    padding: 2vw 0;
  }
}
#works #reform ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 2vw;
  padding: 2vw;
  background-color: #555;
  color: #fff;
}
#works #reform ul li a {
  text-decoration: none;
  display: block;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #works #reform ul li a {
    width: 70%;
  }
}
#works #reform ul li a .works_image {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 12vw;
}
@media screen and (max-width: 768px) {
  #works #reform ul li a .works_image {
    flex-wrap: wrap;
    height: 30vw;
  }
}
#works #reform ul li a .works_image img {
  width: 18%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works #reform ul li a .works_image img {
    width: 30%;
    height: 45%;
  }
}
#works #reform ul li .works_text {
  width: 15%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works #reform ul li .works_text {
    width: 30%;
  }
}
#works #reform ul li .works_text h4 {
  font-size: 1.2vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works #reform ul li .works_text h4 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #works #reform ul li .works_text h4 {
    font-size: 3vw;
  }
}
#works #reform ul li .works_text p {
  color: #fff;
  font-size: 0.9vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works #reform ul li .works_text p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #works #reform ul li .works_text p {
    font-size: 2.4vw;
  }
}
#works #new {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #works #new {
    width: 95%;
  }
}
#works #new h2 {
  width: 80%;
  margin: auto;
  padding: 1vw 0;
  background-color: #333;
  color: #fff;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works #new h2 {
    width: 100%;
    padding: 2vw 0;
  }
}
#works #new ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 2vw;
  padding: 2vw;
  background-color: #555;
  color: #fff;
}
#works #new ul li a {
  text-decoration: none;
  display: block;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #works #new ul li a {
    width: 70%;
  }
}
#works #new ul li a .works_image {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 12vw;
}
@media screen and (max-width: 768px) {
  #works #new ul li a .works_image {
    height: 30vw;
    flex-wrap: wrap;
  }
}
#works #new ul li a .works_image img {
  width: 18%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works #new ul li a .works_image img {
    width: 30%;
    height: 45%;
  }
}
#works #new ul li .works_text {
  width: 15%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works #new ul li .works_text {
    width: 30%;
  }
}
#works #new ul li .works_text h4 {
  font-size: 1.2vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works #new ul li .works_text h4 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #works #new ul li .works_text h4 {
    font-size: 3vw;
  }
}
#works #new ul li .works_text p {
  color: #fff;
  font-size: 0.9vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works #new ul li .works_text p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #works #new ul li .works_text p {
    font-size: 2.4vw;
  }
}

#works_single {
  width: 90%;
  margin: auto;
  padding: 4vw;
  background-color: #555;
  color: #fff;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #works_single {
    width: 100%;
  }
}
#works_single .date {
  font-size: 0.7vw;
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  #works_single .date {
    font-size: 1.4vw;
  }
}
#works_single .title {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #works_single .title {
    margin-bottom: 2vw;
  }
}
#works_single .descn {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #works_single .descn {
    font-size: 3vw;
  }
}
#works_single .works_image_ba {
  margin-top: 4vw;
}
#works_single .works_image_ba .before_after {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
#works_single .works_image_ba .before_after .before {
  width: 32vw;
  height: 25vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works_single .works_image_ba .before_after .before {
    width: 37vw;
  }
}
#works_single .works_image_ba .before_after .before::after {
  position: absolute;
  width: 50%;
  height: 4vw;
  background-color: rgba(51, 51, 51, 0.8);
  content: "Before";
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  padding: 0.5vw 0;
  font-size: 1.2vw;
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_image_ba .before_after .before::after {
    font-size: 2vw;
    padding: 1vw 0;
  }
}
#works_single .works_image_ba .before_after .before img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works_single .works_image_ba .before_after .after {
  width: 32vw;
  height: 25vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works_single .works_image_ba .before_after .after {
    width: 37vw;
  }
}
#works_single .works_image_ba .before_after .after::after {
  position: absolute;
  width: 50%;
  height: 4vw;
  background-color: rgba(51, 51, 51, 0.8);
  content: "After";
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  padding: 0.5vw 0;
  font-size: 1.2vw;
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_image_ba .before_after .after::after {
    font-size: 2vw;
    padding: 1vw 0;
  }
}
#works_single .works_image_ba .before_after .after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .works_image {
    width: 90%;
  }
}
.works_image img {
  width: 45%;
  margin-bottom: 4vw;
}

#works .works {
  width: 90%;
  margin: auto;
}
#works .works .works_contents ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul {
    flex-flow: column;
  }
}
#works .works .works_contents ul li {
  width: 30%;
  margin: 1%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#works .works .works_contents ul li .thumb {
  width: 100%;
  margin-bottom: 1vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .thumb {
    height: 50vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents ul li .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents ul li .thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents ul li .thumb img {
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .thumb img {
    height: 50vw;
  }
}
#works .works .works_contents ul li .thumb .search {
  position: absolute;
  top: 4%;
  right: 1%;
  z-index: 10;
}
#works .works .works_contents ul li .thumb .search i {
  transition: all 0.4s;
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul li .thumb .search i {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .thumb .search i {
    font-size: 6vw;
  }
}
#works .works .works_contents ul li .title h4 {
  font-weight: 600;
  margin-bottom: 0.5vw;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul li .title h4 {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .title h4 {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents ul li .text p {
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .text p {
    font-size: 3.3vw;
  }
}
#works .works .works_contents .ba li {
  width: 45%;
  padding: 1vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li {
    width: 100%;
    padding: 3vw;
    margin-bottom: 8vw;
  }
}
#works .works .works_contents .ba li .thumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li .thumb {
    height: 35vw;
  }
}
#works .works .works_contents .ba li .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0% !important;
  height: 0% !important;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .ba li .thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .ba li .thumb .img-before {
  width: 40%;
  position: relative;
}
#works .works .works_contents .ba li .thumb .img-before::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .ba li .thumb .img-before:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .ba li .thumb .img-before img {
  width: 100%;
  height: 15vw;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works .works_contents .ba li .thumb .img-after {
  width: 50%;
  position: relative;
}
#works .works .works_contents .ba li .thumb .img-after::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .ba li .thumb .img-after:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .ba li .thumb .img-after img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works .works_contents .ba li .thumb p {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}
#works .works .works_contents .ba li .thumb p i {
  font-size: 3vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li .thumb p i {
    font-size: 6vw;
  }
}
#works .works .b_a ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works .works .b_a ul {
    flex-flow: column;
  }
}

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#modal-container > div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
#modal-container > div > img {
  width: auto;
  height: auto;
}
@media screen and (max-width: 768px) {
  #modal-container > div > img {
    width: 300px;
    height: 180px;
  }
}
#modal-container .close {
  position: absolute;
  top: 20%;
  right: 20%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #modal-container .close {
    top: 32%;
    right: 22%;
  }
}
@media screen and (max-width: 768px) {
  #modal-container .close {
    top: 33%;
    right: 15%;
  }
}
#modal-container .close span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:first-child {
    width: 25px;
  }
}
#modal-container .close span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:last-child {
    width: 25px;
  }
}

img.popup {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#modal-container {
  display: none;
}
#modal-container > .modal-body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
#modal-container > .modal-body > #modal-image {
  max-width: 80%;
  max-height: 80vh;
  width: auto;
  height: auto;
}

.policy_contents {
  width: 80%;
  margin: auto;
  margin-top: 120px;
  margin-bottom: 300px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .policy_contents {
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
    margin-top: 100px;
    margin-bottom: 150px;
  }
}
.policy_contents h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .policy_contents h2 {
    font-size: 15px;
  }
}
.policy_contents p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .policy_contents p {
    font-size: 10px;
  }
}

footer #top_contact .top_contact {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 50vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact {
    height: 60vw;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact {
    height: 130vw;
  }
}
footer #top_contact .top_contact .top_contact_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.6);
  padding: 2vw;
}
footer #top_contact .top_contact .top_contact_bg .map {
  width: 80%;
  margin: auto;
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .map {
    width: 90%;
  }
}
footer #top_contact .top_contact .top_contact_bg .map iframe {
  width: 100%;
  height: 25vw;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .map iframe {
    height: 35vw;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_title {
  color: #fff;
  margin-bottom: 4vw;
  padding-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_title {
    font-size: 3vw;
  }
  footer #top_contact .top_contact .top_contact_bg .top_contact_title span {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_title {
    font-size: 5vw;
  }
  footer #top_contact .top_contact .top_contact_bg .top_contact_title span {
    font-size: 3vw;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents {
    width: 95%;
    flex-flow: column;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel {
  width: 50%;
  text-align: center;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel {
    border-right: none;
    border-bottom: 1px solid #fff;
    padding: 6vw 0;
    width: 70%;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel h5 {
  font-size: 1.2vw;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel h5 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel h5 {
    font-size: 3.8vw;
    margin-bottom: 5vw;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel p {
  font-size: 2vw;
  letter-spacing: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel p {
    font-size: 3vw;
    letter-spacing: 0.7vw;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel p {
    font-size: 4vw;
    letter-spacing: 0.7vw;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form {
    padding: 6vw 0;
    width: 70%;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form h5 {
  font-size: 1.2vw;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form h5 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form h5 {
    font-size: 3.8vw;
    margin-bottom: 4vw;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form a {
  text-decoration: none;
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form a button {
  border: none;
  background-color: #fff;
  padding: 1vw 0;
  width: 65%;
  margin: auto;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form a button {
    font-size: 2.2vw;
    padding: 3vw 0;
    width: 80%;
  }
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form a button:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  border: 1px solid #fff;
}
footer #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form a button i {
  margin-left: 1vw;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #555;
  padding: 4vw 8vw;
}
@media screen and (max-width: 768px) {
  .footer {
    flex-flow: column;
    padding: 8vw 4vw;
  }
}
.footer .footer_left {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .footer .footer_left {
    width: 95%;
    text-align: center;
    margin-bottom: 6vw;
  }
}
.footer .footer_left .footer_logo {
  width: 40%;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer_left .footer_logo {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_left .footer_logo {
    width: 40%;
    margin: auto;
  }
}
.footer .footer_left .footer_logo img {
  width: 100%;
}
.footer .footer_left .footer_text {
  color: #fff;
  letter-spacing: 0.2vw;
}
.footer .footer_left .footer_text .sns {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .footer .footer_left .footer_text .sns {
    margin-bottom: 4vw;
  }
}
.footer .footer_left .footer_text .sns a {
  text-decoration: none;
  color: #fff;
  margin: 0 1vw;
}
@media screen and (max-width: 768px) {
  .footer .footer_left .footer_text .sns a {
    margin: 0 2.5vw;
  }
}
.footer .footer_left .footer_text .sns a img {
  width: 15px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer_left .footer_text .sns a img {
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_left .footer_text .sns a img {
    width: 10px;
  }
}
.footer .footer_left .footer_text .address {
  margin-bottom: 1vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer_left .footer_text .address {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_left .footer_text .address {
    font-size: 2vw;
  }
}
.footer .footer_left .footer_text .tel {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer_left .footer_text .tel {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_left .footer_text .tel {
    font-size: 2vw;
  }
}
.footer .footer_right {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer_right {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_right {
    width: 100%;
    margin: auto;
  }
}
.footer .footer_right .footer_menu ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .footer .footer_right .footer_menu ul {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_right .footer_menu ul .footer_menu_left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_right .footer_menu ul .footer_menu_right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.footer .footer_right .footer_menu ul li {
  margin-bottom: 1vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer_right .footer_menu ul li {
    width: 18vw;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_right .footer_menu ul li {
    width: 50%;
    text-align: center;
  }
}
.footer .footer_right .footer_menu ul li::after {
  position: absolute;
  content: "";
  left: 0%;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: -12px;
  opacity: 0;
  visibility: visible;
  transition: all 0.4s;
}
.footer .footer_right .footer_menu ul li:hover::after {
  visibility: visible;
  bottom: -4px;
  opacity: 1;
}
.footer .footer_right .footer_menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer_right .footer_menu ul li a {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_right .footer_menu ul li a {
    font-size: 2.6vw;
  }
}
.footer .footer_right .footer_menu ul li a span {
  font-size: 0.8vw;
  margin-bottom: 0.1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer_right .footer_menu ul li a span {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_right .footer_menu ul li a span {
    font-size: 1.6vw;
  }
}

.copy_right {
  background-color: #555;
  text-align: center;
  padding: 1vw 0;
}
.copy_right p {
  font-size: 0.7vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .copy_right p {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .copy_right p {
    font-size: 2vw;
  }
}/*# sourceMappingURL=style.css.map */