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

html {
  font-size: 62.5%;
}

body {
  font-family: sans-serif;
  background: #F8F8F8;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 768px) {
  body {
    letter-spacing: 0.2rem;
  }
}

@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;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

.fade-in {
  opacity: 0;
  transition-duration: 1.5s;
  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);
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contents_btn {
  width: 15vw;
}
@media screen and (max-width: 768px) {
  .contents_btn {
    width: 30vw;
  }
}
.contents_btn a {
  text-decoration: none;
}
.contents_btn a p {
  position: relative;
  color: #FF7E2E;
  font-size: 1vw;
  padding-left: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contents_btn a p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  .contents_btn a p {
    font-size: 2vw;
  }
}
.contents_btn a p::before {
  position: absolute;
  content: "";
  width: 5%;
  height: 1px;
  transform: rotate(30deg);
  top: 105%;
  right: -2px;
  background-color: #FF7E2E;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .contents_btn a p::before {
    top: 115%;
    right: 0;
  }
}
.contents_btn a p:hover::before {
  right: 30%;
}
.contents_btn a p::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FF7E2E;
  transition: all 0.4s;
}
.contents_btn a p:hover::after {
  width: 70%;
}

.top_contents_btn02 a {
  text-decoration: none;
}
.top_contents_btn02 a button {
  letter-spacing: 0.3vw;
  border: 1px solid #FF7E2E;
  padding: 0.8vw 0;
  width: 18vw;
  background-color: rgba(0, 0, 0, 0);
  color: #FF7E2E;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .top_contents_btn02 a button {
    width: 40vw;
    font-size: 2.5vw;
    padding: 2vw 0;
  }
}
.top_contents_btn02 a button:hover {
  border: none;
  background-color: #FF7E2E;
  color: #fff;
}

.top_contents_title {
  display: inline-block;
  margin-bottom: 4vw;
}
.top_contents_title .headline {
  color: #FF7E2E;
}
.top_contents_title .title {
  color: #FF7E2E;
  text-align: end;
  position: relative;
}
.top_contents_title .title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -40%;
  transform: translate(0, -50%);
  width: 80%;
  height: 1px;
  background-color: #FF7E2E;
}
@media screen and (max-width: 768px) {
  .top_contents_title .title::after {
    width: 40%;
    left: 5%;
  }
}

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

.lower_bg_color {
  position: absolute;
  top: 0;
  left: 0;
  width: 80vw;
  height: 40vw;
  background: linear-gradient(135deg, #FF7E2E, #FFC19B);
  animation-name: fadeSlideAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeSlideAnime {
  from {
    width: 0;
  }
  to {
    width: 80vw;
  }
}
.lower_logo {
  position: absolute;
  z-index: 10;
  top: 3%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 10%;
}
@media screen and (max-width: 768px) {
  .lower_logo {
    width: 20%;
  }
}
.lower_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#lower_main {
  width: 77vw;
  height: 35vw;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 6vw;
  position: relative;
}
#lower_main .main_bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#lower_main .main_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lower_main .text_block {
  position: absolute;
  overflow: hidden;
}
#lower_main .text_block .text {
  font-size: 6.5vw;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .text_block .text {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .text_block .text {
    font-size: 5.5rem;
  }
}
#lower_main .text_block .textAnime01 {
  animation: textAnime 0.8s 0.3s forwards ease-in-out;
  transform: translateY(100%);
  font-family: "Overpass", sans-serif;
}
@media screen and (max-width: 768px) {
  #lower_main .text_block .textAnime01 {
    font-size: 10vw;
  }
}
#lower_main .text_block .textAnime02 {
  animation: textAnime 0.8s 0.6s forwards ease-in-out;
  transform: translateY(100%);
  font-size: 2vw !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .text_block .textAnime02 {
    font-size: 2.4rem !important;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .text_block .textAnime02 {
    font-size: 1.2rem !important;
  }
}
#lower_main .text_block .textAnime03 {
  animation: textAnime 0.8s 1s forwards ease-in-out;
  transform: translateY(100%);
}
@keyframes textAnime {
  to {
    transform: translateY(0px);
  }
}
#lower_main .text_white .text {
  color: #FF7E2E;
}
#lower_main .text_black .text_inner {
  overflow: hidden;
}
#lower_main .text_black .text_inner .text {
  color: #fff;
}
#lower_main .small {
  font-size: 4rem !important;
}
#lower_main .position01 {
  top: 20vw;
  left: -19.5vw;
}
@media screen and (max-width: 768px) {
  #lower_main .position01 {
    top: 15vw;
  }
}
#lower_main .position02 {
  top: 26vw;
  left: -19.5vw;
}
@media screen and (max-width: 768px) {
  #lower_main .position02 {
    top: 26vw;
  }
}
#lower_main .position03 {
  top: 20vw;
  left: -19.5vw;
}
@media screen and (max-width: 768px) {
  #lower_main .position03 {
    top: 15vw;
  }
}
#lower_main .position04 {
  top: 26vw;
  left: -19.5vw;
}
@media screen and (max-width: 768px) {
  #lower_main .position04 {
    top: 26vw;
  }
}

.breadcrumbs {
  margin-left: 2vw;
  margin-bottom: 2vw;
}
.breadcrumbs p {
  font-size: 0.6vw;
  color: #FF7E2E;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .breadcrumbs p {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs p {
    font-size: 1.5vw;
  }
}
.breadcrumbs p a {
  text-decoration: none;
  color: #999;
  font-weight: 300;
}
.breadcrumbs p span {
  margin: 0 2vw;
  color: #333;
}

p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 2.5vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

header {
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
}

.header_scroll {
  display: none;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
  background-color: #FF7E2E;
  padding-left: 2vw;
}
@media screen and (max-width: 768px) {
  .header_scroll {
    height: 6rem;
  }
}
.header_scroll .header_logo {
  height: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_scroll .header_logo {
    height: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header_scroll .header_logo {
    height: 5vw;
  }
}
.header_scroll .header_logo img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header_scroll .hamburger {
    top: 2px;
  }
}
.header_scroll .hamburger span {
  background-color: #fff;
}
.header_scroll .hamburger p {
  color: #fff;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 30px;
  top: 15px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .hamburger {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  left: 6px;
  background: #FF7E2E;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    height: 1px;
  }
}

.hamburger p {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 0.8vw;
  color: #FF7E2E;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  .hamburger p {
    font-size: 1.8vw;
    top: 32px;
  }
}

.hamburger span:nth-child(1) {
  width: 35px;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(1) {
    width: 20px;
    top: 35%;
  }
}

.hamburger span:nth-child(2) {
  width: 25px;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    width: 10px;
    top: 50%;
  }
}

.hamburger span:nth-child(3) {
  width: 30px;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    width: 15px;
    top: 65%;
  }
}

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

.hamburger.active span:nth-child(2) {
  background-color: #fff;
  display: none;
}

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

.hamburger.active p {
  color: #fff;
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 126, 46, 0.7);
  text-align: center;
  width: 30%;
  height: 100vh;
  transform: translate(334%);
  transition: all 0.8s;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  text-align: end;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp {
    width: 100%;
    transform: translate(100%);
  }
}
nav.globalMenuSp .header_logo {
  width: 30%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 12em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp .header_logo {
    margin-top: 10rem;
  }
}
nav.globalMenuSp .header_logo img {
  width: 100%;
}

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

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}
nav.globalMenuSp ul li::after {
  position: absolute;
  right: 0;
  content: "";
  width: 50%;
  height: 2px;
  background-color: #fff;
  bottom: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
nav.globalMenuSp ul li:hover::after {
  visibility: visible;
  bottom: 12px;
  opacity: 1;
}

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

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a {
    font-size: 3vw;
  }
}
nav.globalMenuSp ul li a span {
  font-size: 0.8rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a span {
    font-size: 2vw;
  }
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translate(234%);
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp.active {
    transform: translate(0%);
  }
}

.header_menu_right .pc {
  font-size: 1.2rem;
}
.header_menu_right .sp a {
  text-decoration: none;
  color: #fff;
}

.top_main_bg_color {
  position: absolute;
  top: 0;
  left: 0;
  width: 80vw;
  height: 50vw;
  background: linear-gradient(135deg, #FF7E2E, #FFC19B);
  animation-name: fadeSlideAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .top_main_bg_color {
    height: 65vw;
  }
}

@keyframes fadeSlideAnime {
  from {
    width: 0;
  }
  to {
    width: 80vw;
  }
}
.top_main_logo {
  position: absolute;
  z-index: 10;
  top: 3%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 10%;
}
@media screen and (max-width: 768px) {
  .top_main_logo {
    width: 20%;
  }
}
.top_main_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_main_scroll {
  position: absolute;
  top: 40vw;
  left: 0%;
  transform: rotate(90deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_main_scroll {
    left: -2%;
  }
}
@media screen and (max-width: 768px) {
  .top_main_scroll {
    top: 15vw;
    left: -3%;
  }
}
.top_main_scroll p {
  color: #fff;
  font-size: 1vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_main_scroll p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  .top_main_scroll p {
    font-size: 0.5vw;
  }
}
.top_main_scroll p::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
  background-color: #fff;
  width: 300px;
  height: 1px;
  animation: arrowlong01 2s ease infinite;
}

@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 0%;
    opacity: 0;
  }
}
#top_main {
  width: 77vw;
  height: 50vw;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  #top_main {
    margin-top: 20vw;
  }
}
#top_main .main_bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#top_main .main_bg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_main #top_news {
  display: none;
  position: absolute;
  z-index: 10;
  bottom: 5%;
  right: 1%;
  width: 30%;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news {
    width: 60%;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_news {
    display: none;
  }
}
#top_main #top_news .top_news_title {
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news_title {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_news .top_news_title {
    margin-bottom: 1rem;
  }
}
#top_main #top_news .top_news_title .headline {
  color: #FFEDE6;
  font-size: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news_title .headline {
    font-size: 5vw;
  }
}
#top_main #top_news .top_news_title .title {
  color: #FF7E2E;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
#top_main #top_news .top_news_contents ul {
  list-style: none;
}
#top_main #top_news .top_news_contents ul a {
  text-decoration: none;
  color: #777;
  cursor: pointer;
}
#top_main #top_news .top_news_contents ul a li {
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news_contents ul a li {
    margin-bottom: 1rem;
  }
}
#top_main #top_news .top_news_contents ul a li::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  transition: all 0.4s;
  background-color: #777;
}
#top_main #top_news .top_news_contents ul a li:hover::after {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news_contents ul a li .date {
    font-size: 1vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_news .top_news_contents ul a li .title p {
    font-size: 3.8vw;
  }
}
#top_main #top_news .contents_btn {
  margin-left: auto;
  margin-right: 0;
}

.text_block {
  position: absolute;
  overflow: hidden;
}
.text_block .text {
  font-size: 6.5vw;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .text_block .text {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .text_block .text {
    font-size: 5.5rem;
  }
}
.text_block .textAnime01 {
  animation: textAnime 0.8s 0.3s forwards ease-in-out;
  transform: translateY(100%);
  font-family: "Overpass", sans-serif;
  font-variation-settings: "wght" 400;
}
@media screen and (max-width: 768px) {
  .text_block .textAnime01 {
    font-size: 10vw;
  }
}
.text_block .textAnime02 {
  animation: textAnime 0.8s 0.6s forwards ease-in-out;
  transform: translateY(100%);
  font-size: 2vw !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .text_block .textAnime02 {
    font-size: 2.4rem !important;
  }
}
@media screen and (max-width: 768px) {
  .text_block .textAnime02 {
    font-size: 1.2rem !important;
  }
}
.text_block .textAnime03 {
  animation: textAnime 0.8s 1s forwards ease-in-out;
  transform: translateY(100%);
}
@keyframes textAnime {
  to {
    transform: translateY(0px);
  }
}

.text_white .text {
  color: #FF7E2E;
}

.text_black .text_inner {
  overflow: hidden;
}
.text_black .text_inner .text {
  color: #fff;
}

.small {
  font-size: 4rem !important;
}

.position01 {
  top: 20vw;
  left: -19.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .position01 {
    left: -16vw;
  }
}
@media screen and (max-width: 768px) {
  .position01 {
    top: 6vw;
  }
}

.position02 {
  top: 27vw;
  left: -19.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .position02 {
    left: -15vw;
    top: 28vw;
  }
}
@media screen and (max-width: 768px) {
  .position02 {
    top: 35vw;
  }
}

.position03 {
  top: 20vw;
  left: -19.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .position03 {
    left: -16vw;
  }
}
@media screen and (max-width: 768px) {
  .position03 {
    top: 6vw;
  }
}

.position04 {
  top: 27vw;
  left: -19.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .position04 {
    left: -15vw;
    top: 28vw;
  }
}
@media screen and (max-width: 768px) {
  .position04 {
    top: 35vw;
  }
}

#top_news_sp {
  display: none;
  width: 95vw;
  margin: auto;
  margin-top: 10vw;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1441px) {
  #top_news_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_news_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news_sp {
    display: none;
  }
}
#top_news_sp .top_news_title {
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news_sp .top_news_title {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #top_news_sp .top_news_title {
    margin-bottom: 1rem;
  }
}
#top_news_sp .top_news_title .headline {
  color: #FFEDE6;
  font-size: 7vw;
}
#top_news_sp .top_news_title .title {
  color: #FF7E2E;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
#top_news_sp .top_news_contents ul {
  list-style: none;
}
#top_news_sp .top_news_contents ul a {
  text-decoration: none;
  color: #777;
  cursor: pointer;
}
#top_news_sp .top_news_contents ul a li {
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news_sp .top_news_contents ul a li {
    margin-bottom: 1rem;
  }
}
#top_news_sp .top_news_contents ul a li::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  transition: all 0.4s;
  background-color: #777;
}
#top_news_sp .top_news_contents ul a li:hover::after {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news_sp .top_news_contents ul a li .date {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #top_news_sp .top_news_contents ul a li .date {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news_sp .top_news_contents ul a li .title p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_news_sp .top_news_contents ul a li .title p {
    font-size: 1rem;
  }
}
#top_news_sp .contents_btn {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #top_news_sp .contents_btn {
    width: 40%;
  }
}

#top_about {
  position: relative;
  padding-top: 7vw;
}
@media screen and (max-width: 768px) {
  #top_about {
    margin-top: 8vw;
  }
}
#top_about .top_about_bg {
  position: absolute;
  z-index: -1;
  top: 15vw;
  right: 10vw;
  font-size: 10vw;
  color: rgba(255, 126, 46, 0.1);
  font-weight: 800;
}
#top_about .top_about_contents {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents {
    width: 95%;
    flex-flow: column-reverse;
  }
}
#top_about .top_about_contents .top_about_images {
  width: 50%;
  height: 60vw;
  position: relative;
}
#top_about .top_about_contents .top_about_images::after {
  position: absolute;
  content: "";
  width: 15vw;
  height: 1px;
  background-color: #FF7E2E;
  top: 5vw;
  right: 5vw;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_images::after {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_about_images {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_images {
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#top_about .top_about_contents .top_about_images .top_about_image01 {
  width: 25vw;
  height: 30vw;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_images .top_about_image01 {
    position: static;
    width: 50%;
  }
}
#top_about .top_about_contents .top_about_images .top_about_image01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_about .top_about_contents .top_about_images .top_about_image02 {
  width: 25vw;
  height: 30vw;
  position: absolute;
  top: 40%;
  left: 20%;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_images .top_about_image02 {
    position: static;
    width: 50%;
  }
}
#top_about .top_about_contents .top_about_images .top_about_image02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_about .top_about_contents .top_about_writing {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_about_writing {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_writing {
    width: 100%;
    margin-bottom: 5vw;
  }
}
#top_about .top_about_contents .top_about_writing .top_about_headline {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_about_writing .top_about_headline {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_writing .top_about_headline {
    line-height: 3vw;
    margin-bottom: 3vw;
  }
}
#top_about .top_about_contents .top_about_writing .top_about_headline span {
  font-size: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_about_writing .top_about_headline span {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_writing .top_about_headline span {
    font-size: 4vw;
    line-height: 6vw;
  }
}
#top_about .top_about_contents .top_about_writing .top_about_headline span:first-child {
  font-size: 2vw;
  color: #EB3600;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_writing .top_about_headline span:first-child {
    font-size: 6vw;
  }
}
#top_about .top_about_contents .top_about_writing .top_about_text {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_about_writing .top_about_text {
    line-height: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_writing .top_about_text {
    line-height: 2.8vw;
    line-height: 4vw;
  }
}

#horizon {
  margin: 6vw 0;
  overflow: hidden;
}
#horizon .txt_anime {
  width: 100vw;
  height: 10vw;
  line-height: 10vw;
  display: flex;
}
#horizon .txt_anime h1 {
  color: #000;
  font-size: 10vw;
  opacity: 0.4;
  font-family: "Futura";
  flex: 0 0 auto;
  white-space: nowrap;
}
#horizon .txt_anime h1:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}
#horizon .txt_anime h1:nth-child(even) {
  animation: loop2 50s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
#top_service {
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_service {
    margin: 8vw 0;
  }
}
#top_service .top_service_bg {
  transition: all 1s;
  position: absolute;
  width: 0;
  height: 50vw;
  top: 10%;
  right: 0;
  background: linear-gradient(-135deg, #FF7E2E, #FFC19B);
}
@media screen and (max-width: 768px) {
  #top_service .top_service_bg {
    height: 100vw;
  }
}
#top_service .top_service_bg_slide {
  width: 80vw;
}
#top_service .top_service {
  width: 85%;
  height: 50vw;
  position: relative;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #top_service .top_service {
    height: 75vw;
  }
}
#top_service .top_service .top_service_gradient {
  display: flex;
  justify-content: center;
  flex-flow: column;
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 8vw;
  padding-right: 2vw;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), 85%, rgba(255, 255, 255, 0));
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_gradient {
    padding: 6vw;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_gradient {
    width: 100%;
    padding-right: 8vw;
  }
}
#top_service .top_service .top_service_gradient .top_contents_title {
  width: 200px;
}
#top_service .top_service .top_service_gradient .top_service_writing {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_gradient .top_service_writing {
    width: 100%;
  }
}
#top_service .top_service .top_service_gradient .top_service_writing .headline {
  margin-bottom: 2vw;
}
#top_service .top_service .top_service_gradient .top_service_writing .text {
  margin-bottom: 4vw;
}
#top_service .top_service .top_service_gradient .top_contents_btn02 {
  width: 70%;
}
#top_service .top_service_contents {
  position: absolute;
  width: 50vw;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_contents {
    width: 45vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_contents {
    position: static;
    padding: 0 8vw;
    width: 100%;
    transform: translate(0, 0);
  }
}
#top_service .top_service_contents ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#top_service .top_service_contents ul li {
  width: 50%;
  height: 15vw;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_contents ul li {
    height: 30vw;
  }
}
#top_service .top_service_contents ul li::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #FF7E2E transparent transparent transparent;
  border-width: 4vw 4vw 0px 0px;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_contents ul li::after {
    border-width: 8vw 8vw 0 0;
  }
}
#top_service .top_service_contents ul li a {
  text-decoration: none;
}
#top_service .top_service_contents ul li a .top_service_content {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 15vw;
  position: relative;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_contents ul li a .top_service_content {
    height: 30vw;
  }
}
#top_service .top_service_contents ul li a .top_service_content .top_service_content_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(90, 90, 90, 0.5);
}
#top_service .top_service_contents ul li a .top_service_content_hover {
  transform: scale(1.1);
}
#top_service .top_service_contents ul li a .top_service_text {
  position: absolute;
  left: 1vw;
  bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_contents ul li a .top_service_text {
    bottom: 8vw;
  }
}
#top_service .top_service_contents ul li a .top_service_text p {
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_contents ul li a .top_service_text p {
    font-size: 1.2vw;
  }
}
#top_service .top_service_contents ul li a .top_service_text h5 {
  color: #fff;
}
#top_service .top_service_contents ul li a .top_service_contents_btn {
  position: absolute;
  bottom: 2vw;
  right: 1vw;
  width: 4vw;
  height: 4vw;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_contents ul li a .top_service_contents_btn {
    width: 8vw;
    height: 8vw;
  }
}
#top_service .top_service_contents ul li a .top_service_contents_btn .top_service_contents_btn_position {
  position: relative;
  width: 100%;
  height: 100%;
}
#top_service .top_service_contents ul li a .top_service_contents_btn .top_service_contents_btn_position::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 1vw;
  width: 1.5vw;
  height: 2px;
  transform: translate(0, -50%);
  background: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_contents ul li a .top_service_contents_btn .top_service_contents_btn_position::before {
    left: 1.5vw;
    width: 3.5vw;
  }
}
#top_service .top_service_contents ul li a .top_service_contents_btn .top_service_contents_btn_position::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 1.7vw;
  width: 0.7vw;
  height: 0.7vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(0, -50%) rotate(45deg);
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_contents ul li a .top_service_contents_btn .top_service_contents_btn_position::after {
    left: 3.2vw;
    width: 1.7vw;
    height: 1.7vw;
  }
}
#top_service .top_service_contents ul li a .top_service_contents_btn_hover {
  border: 1px solid #FF7E2E;
  background-color: #FF7E2E;
}

#top_blog {
  display: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 8vw;
}
#top_blog .top_blog_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  width: 100vw;
  height: 22vw;
  background-color: #FFEDE6;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog_bg {
    top: 30%;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog_bg {
    top: 34%;
  }
}
#top_blog .top_blog_bg02 {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 70%;
  width: 100vw;
  height: 22vw;
  background-color: #FFEDE6;
}
@media screen and (min-width: 1441px) {
  #top_blog .top_blog_bg02 {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_blog .top_blog_bg02 {
    display: none;
  }
}
#top_blog .top_blog {
  width: 85%;
  margin: 8vw auto;
  text-align: end;
}
#top_blog .top_blog .top_blog_contents {
  text-align: start;
}
#top_blog .top_blog .top_blog_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul {
    flex-wrap: wrap;
  }
}
#top_blog .top_blog .top_blog_contents ul a {
  text-decoration: none;
  width: 22%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a {
    width: 45%;
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a {
    width: 45%;
    margin-bottom: 8vw;
  }
}
#top_blog .top_blog .top_blog_contents ul a:nth-child(1) {
  transition-delay: 0.2s;
}
#top_blog .top_blog .top_blog_contents ul a:nth-child(2) {
  transition-delay: 0.4s;
}
#top_blog .top_blog .top_blog_contents ul a:nth-child(3) {
  transition-delay: 0.6s;
}
#top_blog .top_blog .top_blog_contents ul a:nth-child(4) {
  transition-delay: 0.8s;
}
#top_blog .top_blog .top_blog_contents ul a li {
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_contents ul a li .thumb {
  height: 15vw;
  margin-bottom: 1vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .thumb {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .thumb {
    height: 30vw;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .thumb .thumb_bg {
  position: absolute;
  z-index: 30;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_contents ul a li .thumb .thumb_bg:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#top_blog .top_blog .top_blog_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_blog .top_blog .top_blog_contents ul a li .blog_hover {
  position: relative;
}
#top_blog .top_blog .top_blog_contents ul a li .blog_hover::before {
  position: absolute;
  content: "";
  z-index: 50;
  top: 85%;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #FF7E2E;
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_contents ul a li .blog_hover:hover::before {
  width: 100%;
}
#top_blog .top_blog .top_blog_contents ul a li .blog_hover::after {
  position: absolute;
  content: "";
  z-index: 50;
  top: 0%;
  left: 15%;
  width: 2px;
  height: 0%;
  background-color: #FF7E2E;
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_contents ul a li .blog_hover:hover::after {
  height: 100%;
}
#top_blog .top_blog .top_blog_contents ul a li .outline {
  width: 90%;
  margin: auto;
}
#top_blog .top_blog .top_blog_contents ul a li .outline .date {
  color: #777;
  font-size: 0.6vw;
  margin-bottom: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .date {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .date {
    font-size: 1.6vw;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline .title {
  color: #FF7E2E;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .title {
    font-size: 3vw;
  }
}
#top_blog .contents_btn {
  margin-left: auto;
  margin-right: 0;
  text-align: start;
}

/*=== アニメーション ===*/
.inview_fi {
  opacity: 0;
  transition: 1.5s;
}
.inview_fi.show {
  opacity: 1;
}

.inview_fiU {
  transform: translate(0, 20%);
  opacity: 0;
  transition: 1s;
}
.inview_fiU.show {
  transform: translate(0, 0);
  opacity: 1;
}

#top_works {
  position: relative;
  overflow: hidden;
  margin: 8vw 0;
}
#top_works .top_works_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  width: 100vw;
  height: 22vw;
  background-color: #FFEDE6;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works_bg {
    top: 30%;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works_bg {
    top: 34%;
  }
}
#top_works .top_works_bg02 {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 70%;
  width: 100vw;
  height: 22vw;
  background-color: #FFEDE6;
}
@media screen and (min-width: 1441px) {
  #top_works .top_works_bg02 {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_works .top_works_bg02 {
    display: none;
  }
}
#top_works .top_works {
  width: 85%;
  margin: 8vw auto;
}
#top_works .top_works .top_works_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents ul {
    flex-wrap: wrap;
  }
}
#top_works .top_works .top_works_contents ul a {
  text-decoration: none;
  width: 22%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents ul a {
    width: 45%;
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents ul a {
    width: 45%;
    margin-bottom: 8vw;
  }
}
#top_works .top_works .top_works_contents ul a:nth-child(1) {
  transition-delay: 0.2s;
}
#top_works .top_works .top_works_contents ul a:nth-child(2) {
  transition-delay: 0.4s;
}
#top_works .top_works .top_works_contents ul a:nth-child(3) {
  transition-delay: 0.6s;
}
#top_works .top_works .top_works_contents ul a:nth-child(4) {
  transition-delay: 0.8s;
}
#top_works .top_works .top_works_contents ul a li {
  transition: all 0.4s;
}
#top_works .top_works .top_works_contents ul a li .thumb {
  height: 15vw;
  margin-bottom: 1vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents ul a li .thumb {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents ul a li .thumb {
    height: 30vw;
  }
}
#top_works .top_works .top_works_contents ul a li .thumb .thumb_bg {
  position: absolute;
  z-index: 30;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.4s;
}
#top_works .top_works .top_works_contents ul a li .thumb .thumb_bg:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#top_works .top_works .top_works_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_works .top_works .top_works_contents ul a li .works_hover {
  position: relative;
}
#top_works .top_works .top_works_contents ul a li .works_hover::before {
  position: absolute;
  content: "";
  z-index: 50;
  top: 85%;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #FF7E2E;
  transition: all 0.4s;
}
#top_works .top_works .top_works_contents ul a li .works_hover:hover::before {
  width: 100%;
}
#top_works .top_works .top_works_contents ul a li .works_hover::after {
  position: absolute;
  content: "";
  z-index: 50;
  top: 0%;
  left: 15%;
  width: 2px;
  height: 0%;
  background-color: #FF7E2E;
  transition: all 0.4s;
}
#top_works .top_works .top_works_contents ul a li .works_hover:hover::after {
  height: 100%;
}
#top_works .top_works .top_works_contents ul a li .outline {
  width: 90%;
  margin: auto;
}
#top_works .top_works .top_works_contents ul a li .outline .date {
  color: #777;
  font-size: 0.6vw;
  margin-bottom: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents ul a li .outline .date {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents ul a li .outline .date {
    font-size: 1.6vw;
  }
}
#top_works .top_works .top_works_contents ul a li .outline .title {
  color: #FF7E2E;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents ul a li .outline .title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents ul a li .outline .title {
    font-size: 3vw;
  }
}
#top_works .contents_btn {
  margin-left: auto;
  margin-right: 0;
}

/*=== アニメーション ===*/
.inview_fi {
  opacity: 0;
  transition: 1.5s;
}
.inview_fi.show {
  opacity: 1;
}

.inview_fiU {
  transform: translate(0, 20%);
  opacity: 0;
  transition: 1s;
}
.inview_fiU.show {
  transform: translate(0, 0);
  opacity: 1;
}

#top_company {
  margin-bottom: 16vw;
}
#top_company .top_company {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 30vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company {
    width: 100%;
    height: 90vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company {
    width: 100%;
    height: 100vw;
  }
}
#top_company .top_company .top_company_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
}
#top_company .top_company .top_company_bg .top_company_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row-reverse;
  width: 80%;
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_top {
    width: 90%;
  }
}
#top_company .top_company .top_company_bg .top_company_contents ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents ul {
    flex-wrap: wrap;
  }
}
#top_company .top_company .top_company_bg .top_company_contents ul li {
  width: 22%;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li {
    width: 45%;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li {
    width: 45%;
    margin-bottom: 6vw;
  }
}
#top_company .top_company .top_company_bg .top_company_contents ul li a {
  text-decoration: none;
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_image {
  width: 100%;
  height: 15vw;
  position: relative;
  background-position: center;
  background-size: cover;
  margin-bottom: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_image {
    height: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_image {
    height: 20vw;
    margin-bottom: 6vw;
  }
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_image .top_company_image_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 0.4s;
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_hover {
  position: relative;
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_hover::before {
  position: absolute;
  content: "";
  z-index: 50;
  top: 65%;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #FF7E2E;
  transition: all 0.4s;
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_hover:hover::before {
  width: 100%;
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_hover::after {
  position: absolute;
  content: "";
  z-index: 50;
  top: 0%;
  left: 15%;
  width: 2px;
  height: 0%;
  background-color: #FF7E2E;
  transition: all 0.4s;
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_hover:hover::after {
  height: 100%;
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline {
  position: absolute;
  bottom: 4vw;
  left: -1vw;
  width: 80%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline {
    bottom: 12vw;
  }
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline .headline_position {
  position: relative;
  width: 100%;
  z-index: 20;
  padding: 0.6vw 1vw;
  color: #fff;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline .headline_position {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline .headline_position {
    font-size: 3vw;
    padding: 1vw;
  }
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline .headline_position::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #FF7E2E;
  transform: scaleY(1.2) perspective(1vw) rotateX(-5deg);
  transform-origin: top left;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline .headline_position::before {
    transform: scaleY(1.1) perspective(3vw) rotateX(-5deg);
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .headline .headline_position::before {
    transform: scaleY(1.1) perspective(6vw) rotateX(-5deg);
  }
}
#top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .text {
  height: 3vw;
  color: #777;
  font-size: 0.8vw;
  width: 95%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .text {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_bg .top_company_contents ul li a .top_company_contents_headline .text {
    font-size: 2vw;
    height: 8vw;
  }
}

#top_recruit {
  position: relative;
  margin-bottom: 8vw;
}
#top_recruit .top_recruit_contents {
  position: relative;
  width: 40%;
  height: 40vw;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents {
    width: 100%;
  }
}
#top_recruit .top_recruit_contents .top_recruit_contents_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 126, 46, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#top_recruit .top_recruit_contents .top_recruit_contents_bg .top_contents_title .headline {
  color: #fff;
}
#top_recruit .top_recruit_contents .top_recruit_contents_bg .top_contents_title .title {
  color: #fff;
}
#top_recruit .top_recruit_contents .top_recruit_contents_bg .top_contents_title .title::after {
  background-color: #fff;
}
#top_recruit .top_recruit_contents .top_recruit_contents_bg .top_contents_btn02 button {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  border: 1px solid #fff;
}
#top_recruit .top_recruit_contents .top_recruit_contents_bg .top_contents_btn02 button:hover {
  background-color: #fff;
  color: #FF7E2E;
}
#top_recruit .top_recruit_image {
  position: absolute;
  right: 0%;
  top: 0%;
  width: 60%;
  height: 40vw;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_image {
    display: none;
  }
}
#top_recruit .top_recruit_image .top_recruit_image_position {
  width: 100%;
  height: 100%;
}
#top_recruit .top_recruit_image .top_recruit_image_position img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact {
  margin-bottom: 4vw;
}
#contact .contact .contact_title {
  text-align: center;
  margin-bottom: 4vw;
  color: #FF7E2E;
}
#contact .contact .contact_title h2 {
  font-family: "Futura";
}
#contact .contact .contact_text {
  text-align: center;
  margin-bottom: 6vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text {
    width: 95%;
    margin: auto;
    margin-bottom: 10vw;
  }
}
#contact .contact .contact_form {
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form {
    width: 95%;
  }
}
#contact .contact .contact_form table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-top: 1px solid #FF7E2E;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form table tr {
    display: flex;
    flex-flow: column;
  }
}
#contact .contact .contact_form table tr th {
  padding: 40px 0;
  width: 35%;
  text-align: end;
  padding-right: 80px;
  border-bottom: 1px solid #FF7E2E;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form table tr th {
    width: 45%;
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
    font-size: 3vw;
  }
}
#contact .contact .contact_form table tr th span {
  padding: 10px;
  background-color: red;
  color: #fff;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form table tr th span {
    padding: 5px;
    font-size: 10px;
  }
}
#contact .contact .contact_form table tr td {
  padding: 40px 0;
  width: 65%;
  border-bottom: 1px solid #FF7E2E;
  padding-right: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form table tr td {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
#contact .contact .contact_form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form table tr td input {
    width: 100%;
  }
}
#contact .contact .contact_form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form table tr td textarea {
    width: 100%;
  }
}
#contact .contact .contact_form table tr:nth-child(4) th span {
  background-color: blue;
}
#contact .contact .contact_form table tr:nth-child(4) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form table tr:nth-child(4) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form table tr:nth-child(4) td input {
    width: 29% !important;
  }
}
#contact .contact .contact_form .agree {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form .agree {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .agree {
    font-size: 3vw;
  }
}
#contact .contact .contact_form .submit {
  text-align: center;
}
#contact .contact .contact_form .submit input {
  padding: 20px 180px;
  font-size: 1vw;
  border: none;
  background-color: #FF7E2E;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .submit input {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .submit input {
    padding: 10px 90px;
    font-size: 3vw;
  }
}
#contact .contact .contact_form .submit input:hover {
  background-color: #FFEDE6;
}
#contact .contact .contact_form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#contact .contact .contact_form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#contact .contact .contact_form #mw_wp_form_mw-wp-form-197 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form #mw_wp_form_mw-wp-form-197 {
    font-size: 12.5px;
  }
}

#top_contact {
  width: 100%;
  height: 30vw;
}
@media screen and (max-width: 768px) {
  #top_contact {
    height: 85vw;
  }
}
#top_contact .top_contact {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}
#top_contact .top_contact .top_contact_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 70, 70, 0.5);
  padding: 6vw 0;
}
#top_contact .top_contact .top_contact_bg .top_contact_text {
  text-align: center;
  margin-bottom: 4vw;
  color: #fff;
}
#top_contact .top_contact .top_contact_bg .top_contact_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact .top_contact_bg .top_contact_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_bg .top_contact_contents {
    width: 90%;
    flex-flow: column;
  }
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel {
  width: 50%;
  padding: 0 4vw;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 8vw 0;
    padding-top: 2vw;
  }
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel .top_contact_title {
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel .top_contact_title {
    margin-bottom: 1vw;
  }
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel .top_contact_title h4 {
  color: #fff;
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel .tel_number {
  text-align: center;
  color: #fff;
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel .tel_number i {
  margin-right: 1vw;
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_tel .tel_number a {
  text-decoration: none;
  color: #fff;
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form {
  width: 50%;
  padding: 0 4vw;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form {
    width: 100%;
    padding: 8vw 0;
  }
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form .top_contact_title {
  text-align: center;
  margin-bottom: 4vw;
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form .top_contact_title h4 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form .top_contact_form_btn {
    text-align: center;
  }
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form .top_contact_form_btn a {
  text-decoration: none;
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form .top_contact_form_btn a button {
  border: none;
  background-color: #FF7E2E;
  color: #fff;
  padding: 1vw 0;
  width: 100%;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form .top_contact_form_btn a button {
    width: 60%;
    margin: auto;
    padding: 2vw 0;
  }
}
#top_contact .top_contact .top_contact_bg .top_contact_contents .top_contact_form .top_contact_form_btn a button:hover {
  background: #fff;
  color: #FF7E2E;
}

footer {
  background-color: #FF7E2E;
  padding-top: 8vw;
}
footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer {
    width: 100%;
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_left {
    width: 100%;
    text-align: center;
    margin-bottom: 8vw;
  }
}
footer .footer .footer_left .footer_logo {
  width: 60%;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_left .footer_logo {
    margin: auto;
    margin-bottom: 4vw;
  }
}
footer .footer .footer_left .footer_logo img {
  width: 100%;
}
footer .footer .footer_left .footer_company {
  color: #fff;
}
footer .footer .footer_left .footer_company p {
  font-size: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_left .footer_company p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_left .footer_company p {
    font-size: 2vw;
  }
}
footer .footer .footer_right {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_right {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right {
    width: 90%;
    margin: auto;
  }
}
footer .footer .footer_right .footer_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4vw;
  }
}
footer .footer .footer_right .footer_menu ul .footer_menu_left li {
  margin-bottom: 2vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_left li {
    width: 22%;
    text-align: center;
  }
}
footer .footer .footer_right .footer_menu ul .footer_menu_left li::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: -7px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
footer .footer .footer_right .footer_menu ul .footer_menu_left li:hover::after {
  visibility: visible;
  bottom: -2px;
  opacity: 1;
}
footer .footer .footer_right .footer_menu ul .footer_menu_left li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_left li a {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_left li a {
    font-size: 2.2vw;
  }
}
footer .footer .footer_right .footer_menu ul .footer_menu_left li a span {
  font-size: 0.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_left li a span {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_left li a span {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
  }
}
footer .footer .footer_right .footer_menu ul .footer_menu_right li {
  margin-bottom: 2vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_right li {
    width: 22%;
    text-align: center;
  }
}
footer .footer .footer_right .footer_menu ul .footer_menu_right li::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: -7px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
footer .footer .footer_right .footer_menu ul .footer_menu_right li:hover::after {
  visibility: visible;
  bottom: -2px;
  opacity: 1;
}
footer .footer .footer_right .footer_menu ul .footer_menu_right li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_right li a {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_right li a {
    font-size: 2.2vw;
  }
}
footer .footer .footer_right .footer_menu ul .footer_menu_right li a span {
  font-size: 0.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_right li a span {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_right .footer_menu ul .footer_menu_right li a span {
    font-size: 1.4vw;
  }
}
footer .footer .footer_right .footer_menu ul .footer_menu_right li .insta, footer .footer .footer_right .footer_menu ul .footer_menu_right li .x, footer .footer .footer_right .footer_menu ul .footer_menu_right li .facebook, footer .footer .footer_right .footer_menu ul .footer_menu_right li .tiktok, footer .footer .footer_right .footer_menu ul .footer_menu_right li .youtube {
  color: #fff;
  font-size: 1.2vw;
}
footer .copyright {
  padding-top: 4vw;
  padding-bottom: 1vw;
  text-align: center;
}
footer .copyright p {
  color: #fff;
  font-size: 0.5vw;
}
@media screen and (max-width: 768px) {
  footer .copyright p {
    font-size: 1.2vw;
  }
}/*# sourceMappingURL=style.css.map */