@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  word-break: normal;
  word-wrap: break-word;
}

#wrapper {
  opacity: 0;
}

html {
  font-size: 20px;
  line-height: 2;
  color: black;
}

@font-face {
  font-family: "gobold";
  src: url(../fonts/Gobold_Regular.otf);
}
.eigo {
  font-family: "gobold", serif;
}

body {
  background-color: #f0f0f0;
  color: black;
  font-family: "Sawarabi Gothic", sans-serif;
}

a {
  color: black;
}

img {
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 100%;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

table {
  background-color: transparent;
}

table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}

ul li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0px;
  font-weight: normal;
}

.fixedcontainer {
  width: 1006px;
  margin: 0 auto;
  padding: 0px;
}

a:visited,
a:link,
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.red {
  color: #ed1c24;
}

.yellow {
  color: #e58e55;
}

.bkyellow {
  background-color: #fff100;
}

.bold {
  font-weight: bold;
}

.btline {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.visible-sp {
  display: none;
}

.hidden-sp {
  display: block;
}

.visible-xs {
  display: none;
}

.hidden-xs {
  display: block;
}

.visible-500 {
  display: none;
}

.hidden-500 {
  display: block;
}

.flex_part .flex_img_left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.flex_part .flex_img_left > img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flex_part .flex_body {
  flex: 1;
}
.flex_part .flex_multi {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.flex_part .flex_img_right {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.flex_part .flex_img_right > img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* slick */
.slick-next::before {
  content: "";
  background: url(../images/slick_next.png) no-repeat;
}

.slick-prev::after {
  content: "";
  background: url(../images/slick_prev.png) no-repeat;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 100;
}

.slick-prev::after, .slick-next::before {
  font-family: initial;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 1;
}

.slick-dots {
  bottom: -45px;
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 32px;
  line-height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 3px;
  content: "";
  text-align: center;
  opacity: 1;
  color: #c9caca;
  background: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 3px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  opacity: 0.3;
}
.slick-dots li.slick-active {
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #00a0e9;
}

.hover_anim {
  position: relative;
  overflow: hidden;
}

.hover_anim::after {
  background: #fff;
  content: "";
  height: 400px;
  left: -300px;
  opacity: 0.2;
  position: absolute;
  top: -80px;
  transform: rotate(35deg);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 150px;
  z-index: 100;
}

.hover_anim:hover::after {
  left: 120%;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-top {
  opacity: 0.1;
  transform: translate(0, 80px);
  transition: all 1000ms ease-out 0s;
}

.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.custom_checkbox {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.custom_checkbox input[type=checkbox] {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  left: 0;
  top: 0;
}
.custom_checkbox input[type=checkbox]:focus {
  outline: none;
}
.custom_checkbox input[type=checkbox]:checked {
  background: #036eb8;
  z-index: 0;
}
.custom_checkbox input[type=checkbox]:checked + span {
  color: white;
}
.custom_checkbox span {
  z-index: 100;
}

.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s;
}

.inviewfadeInUp2 {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s ease-in-out 0.2s;
}

.inviewfadeInUp3 {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s ease-in-out 0.4s;
}

.inviewfadeInUp4 {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s ease-in-out 0.6s;
}

.inviewfadeInUp5 {
  opacity: 0;
  transform: translate(0, 8px);
  -webkit-transform: translate(0, 8px);
  transition: 0.6s ease-in-out 0.8s;
}

.fadeInUp {
  opacity: 1;
  transform: translate(0, 0);
}

#header .g_nav {
  display: none;
  text-align: center;
}

/* loading
------------------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  background: #f0f0f0;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
}

#loading {
  width: 100%;
  height: 100vh;
  background: #f0f0f0;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
  display: none;
}
#loading img {
  width: 170px;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1s ease;
}
#loading.active img {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.first_icon {
  text-align: center;
}

.second_icon {
  text-align: center;
  padding-top: 20px;
}

.loading_wrap {
  position: fixed;
  top: 50vh;
  left: 50vw;
  text-align: center;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.loading_icon {
  animation: blur 2s ease 0s;
  -webkit-animation: blur 2s ease 0s;
  -moz-animation: blur 2s ease 0s;
}

.loading_icon2 {
  animation: opacity_animation 4s ease 0s;
  -webkit-animation: opacity_animation 4s ease 0s;
  -moz-animation: opacity_animation 4s ease 0s;
}

#line {
  margin: 50vh auto 0;
  width: 100%;
  height: 26px;
  background: white;
  position: relative;
  text-align: center;
}

#line1 {
  margin: 0 auto 0;
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  position: relative;
  text-align: center;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.fullwidth .expand {
  width: 100%;
  height: 26px;
  margin-left: 0;
  text-align: center;
  background: url(./../images/377.gif) no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
}

@-webkit-keyframes fullexpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fullexpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.font16 {
  font-size: 0.8rem;
}
.font17 {
  font-size: 0.85rem;
}
.font18 {
  font-size: 0.9rem;
}
.font19 {
  font-size: 0.95rem;
}
.font20 {
  font-size: 1rem;
}
.font21 {
  font-size: 1.05rem;
}
.font22 {
  font-size: 1.1rem;
}
.font23 {
  font-size: 1.15rem;
}
.font24 {
  font-size: 1.2rem;
}
.font25 {
  font-size: 1.25rem;
}
.font26 {
  font-size: 1.3rem;
}
.font27 {
  font-size: 1.35rem;
}
.font28 {
  font-size: 1.4rem;
}
.font29 {
  font-size: 1.45rem;
}
.font30 {
  font-size: 1.5rem;
}
.font31 {
  font-size: 1.55rem;
}
.font32 {
  font-size: 1.6rem;
}
.font33 {
  font-size: 1.65rem;
}
.font34 {
  font-size: 1.7rem;
}
.font35 {
  font-size: 1.75rem;
}
.font36 {
  font-size: 1.8rem;
}
.font37 {
  font-size: 1.85rem;
}
.font38 {
  font-size: 1.9rem;
}
.font39 {
  font-size: 1.95rem;
}
.font40 {
  font-size: 2rem;
}

#pc_menu1 {
  width: 100%;
  text-align: center;
  background: #fff;
  height: 170px;
  padding-top: 30px;
  top: 0;
  left: 0;
}
#pc_menu1 .logo1 {
  width: 79px;
}
#pc_menu1 .menu_area {
  width: 100%;
  max-width: 656px;
  padding: 0 0 0 5px;
  margin: 15px auto 0;
  text-align: left;
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
#pc_menu1 .menu_area a {
  cursor: pointer;
  color: black;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
}
#pc_menu1 .menu_area a img {
  width: 25px;
}
#pc_menu1 .menu_area a:hover {
  border-bottom: 1px solid black;
}
#pc_menu1 .menu_area a.active {
  border-bottom: 1px solid black;
}
#pc_menu1 .header_logo1 {
  display: inline-block;
  padding-top: 0;
}
#pc_menu1 .header_btnarea1 {
  padding-top: 0;
  display: flex;
  align-items: center;
}
#pc_menu1 .header_tel {
  width: 501px;
}
#pc_menu1 .header_btn1 {
  display: inline-block;
  width: 134px;
}

#pc_menu2 {
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  padding: 35px 0;
  background: #f6f6f6;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}
#pc_menu2 .top_menu_link {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-size: 16px;
  color: #814900;
  padding: 0 30px;
  border-right: 1px solid #ccc;
}
#pc_menu2 .top_menu_link span {
  font-size: 22px;
  font-weight: bold;
  color: #444;
}
#pc_menu2 .top_menu_link:last-child {
  border-right: 0px solid #ccc;
}
#pc_menu2 .top_menu_link:hover {
  opacity: 0.3;
}

#drag_menu {
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 101;
  width: 100%;
  text-align: center;
  height: 78px;
  background: #fff;
  border-bottom: 1px solid #e1e1e2;
}
#drag_menu .menu_area {
  width: 100%;
  max-width: 656px;
  padding: 0 0 0 5px;
  margin: 15px auto 0;
  text-align: left;
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
#drag_menu .menu_area a {
  cursor: pointer;
  color: black;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
}
#drag_menu .menu_area a img {
  width: 25px;
}
#drag_menu .header_logo1 {
  display: inline-block;
  width: 270px;
  padding-top: 15px;
  margin: 0 auto 0;
}

.drag_nav {
  margin: auto;
  width: 1100px;
  padding: 20px 0 0;
  text-align: center;
}
.drag_nav ul {
  width: 100%;
  line-height: 1.2em;
  list-style: none;
  display: inline-block;
  justify-content: space-between;
}
.drag_nav ul > li {
  text-align: left;
}
.drag_nav ul > li a {
  font-size: 14px;
}
.drag_nav .top_menu_link {
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: #814900;
  line-height: 1.4;
}
.drag_nav .top_menu_link span {
  font-size: 16px;
  font-weight: bold;
  color: #444;
}
.drag_nav .top_menu_link:hover {
  opacity: 0.3;
}

#drag_side {
  display: block;
  position: fixed;
  z-index: 101;
  right: -200px;
  top: 200px;
  width: 7%;
  max-width: 140px;
}

.top {
  width: 100%;
  position: relative;
  height: 740px;
}
.top .container {
  text-align: center;
}
.top .top_ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.top .top_txt1 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.top .top_txt1 img {
  width: 100%;
}

.loopSlider1 {
  margin: 0;
  width: 100%;
  height: 740px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.loopSlider1 ul {
  margin: 0;
  width: 100%;
  height: 740px;
  float: left;
  display: inline-block;
  overflow: hidden;
  padding: 0;
}
.loopSlider1 ul li {
  float: left;
  width: 555px;
  height: 740px;
  display: inline;
  overflow: hidden;
}
.loopSlider1 ul li div {
  width: 555px;
  height: 740px;
  padding: 0;
  border: 0px solid #289cdc;
  text-align: center;
  margin: 0;
}
.loopSlider1 ul li img {
  width: 100%;
  height: auto;
  background: white;
}
.loopSlider1:after {
  content: "";
  display: none;
  clear: none;
}

.loopSliderWrap2 {
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.loopSlider2 {
  margin: 40px 0 0;
  width: 100%;
  height: 200px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.loopSlider2 ul {
  margin: 0;
  width: 100%;
  height: 200px;
  float: left;
  display: inline-block;
  overflow: hidden;
  padding: 0;
}
.loopSlider2 ul li {
  float: left;
  width: 300px;
  height: 200px;
  display: inline;
  overflow: hidden;
}
.loopSlider2 ul li div {
  width: 300px;
  height: 200px;
  padding: 0;
  border: 0px solid #289cdc;
  text-align: center;
  margin: 0;
}
.loopSlider2 ul li img {
  width: 100%;
  height: auto;
  background: white;
}

a {
  cursor: pointer;
}

.loopSliderWrap2:after {
  content: "";
  display: none;
  clear: none;
}

.loopSliderWrap1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 740px;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.loopSliderWrap2 {
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  margin: 0;
  overflow: hidden;
  position: absolute;
}

/*-------------header----------------------*/
/*-----------        -----------------*/
body {
  letter-spacing: 1px;
  padding-left: 85px;
}

#header {
  position: fixed;
  z-index: 101;
  background: black;
  top: 0;
  height: 100vh;
  left: 0;
  width: 100px;
}
#header h1 {
  transition: all 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  opacity: 1;
}
#header h1 a {
  display: block;
  line-height: 1;
}
#header h1 a img {
  width: 46px;
}
#header.top_bg h1 {
  transition: all 0.8s ease-in-out;
  opacity: 0;
}
#header .menu-trigger {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 3px;
  width: 40px;
  height: 40px;
  z-index: 1002;
}
#header .menu-trigger p {
  position: absolute;
  bottom: 12px;
  font-size: 2.5vw;
  text-align: center;
  width: 100%;
  color: black;
}
#header .menu-trigger.active ~ h1 {
  opacity: 0;
  transition: all 0.8s ease;
}
#header .menu-trigger:hover {
  opacity: 1;
}
#header .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  float: right;
  position: absolute;
  width: 40px;
  height: 2px;
  left: 0;
  background: white;
  right: 0;
  margin: auto;
}
#header .menu-trigger span:nth-of-type(1) {
  top: 8px;
}
#header .menu-trigger span:nth-of-type(2) {
  top: 20px;
}
#header .menu-trigger span:nth-of-type(3) {
  top: 32px;
}
#header .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12.5px) rotate(-45deg);
}
#header .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
#header .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12.5px) rotate(45deg);
}
#header .shop {
  position: absolute;
  width: 37px;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
}

.g_nav {
  position: fixed;
  width: calc(100% - 100px);
  left: 100px;
  background: black;
  height: 100vh;
  top: 0;
  z-index: 100;
  display: none;
  text-align: center;
}
.g_nav.commercial a, .g_nav.privacy a {
  font-size: 14px;
}

@-webkit-keyframes slideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.g_nav ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  letter-spacing: 0.1em;
  padding-bottom: 5vw;
  padding-top: 100px;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  transform: translateY(-20px);
  -webkit-animation: slideUp 1s ease-in-out;
          animation: slideUp 1s ease-in-out;
  opacity: 0;
}
.g_nav.active ul {
  transform: translateY(0);
  opacity: 1;
  -webkit-animation: slideDown 1s ease-in-out;
          animation: slideDown 1s ease-in-out;
}

.g_nav ul li {
  float: none;
  width: 100%;
  font-size: 16px;
  padding: 15px 0;
  margin: 0;
  text-align: center;
}
.g_nav ul li.commercial {
  padding-top: 30px;
}
.g_nav ul li.privacy {
  padding-top: 0;
}

.g_nav ul li a {
  display: inline-block;
  padding: 0 0;
  color: white;
  text-decoration: none;
  line-height: 1;
  font-size: 15px;
}
.g_nav ul li a .logo {
  max-width: 178px;
  margin-bottom: 35px;
}
.g_nav ul li a .insta {
  width: 18px;
}

.g_nav ul li a:hover {
  opacity: 0.9;
  color: white;
  position: relative;
}
.g_nav ul li a:hover.insta::after {
  content: none;
}

a.left_arrow {
  position: relative;
  width: 160px;
  height: 40px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}

.lightbox {
  position: fixed;
  z-index: 1001;
  width: calc(100% - 100px);
  display: none;
  height: 100vh;
  top: 0;
  right: 0;
}
.lightbox .bg {
  background: rgba(240, 240, 240, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lightbox .boxcontent {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lightbox .boxcontent .close_btn {
  position: absolute;
  right: 0;
  top: -80px;
}
.lightbox .boxcontent .flex_img {
  width: 590px;
  margin: auto;
}
.lightbox .boxcontent .flex_img img {
  width: 100%;
  mix-blend-mode: darken;
}

#lightbox_wrapper {
  position: fixed;
  z-index: 1001;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
#lightbox_wrapper .lightbox {
  display: block;
}

@-webkit-keyframes discoverAnimatin {
  0% {
    background-position: bottom 0 center;
  }
  20% {
    background-position: bottom -50px center;
  }
  60% {
    background-position: bottom -50px center;
  }
  80% {
    background-position: bottom -100px center;
  }
  100% {
    background-position: bottom -100px center;
  }
}

@keyframes discoverAnimatin {
  0% {
    background-position: bottom 0 center;
  }
  20% {
    background-position: bottom -50px center;
  }
  60% {
    background-position: bottom -50px center;
  }
  80% {
    background-position: bottom -100px center;
  }
  100% {
    background-position: bottom -100px center;
  }
}
#sec1 {
  width: 100%;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
#sec1 .part1 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
#sec1 .part1 h1 {
  color: white;
  font-size: 62px;
  line-height: 88px;
}
#sec1 .part1 h2 {
  padding-top: 20px;
  font-size: 17px;
  text-align: center;
  color: white;
  line-height: 1.1;
}
#sec1 .part1 p {
  margin-top: 34px;
}
#sec1 .part1 p img {
  width: 189px;
}
#sec1 .part1 .more_btn {
  text-align: center;
  margin-top: 37px;
}
#sec1 .bg {
  height: 100vh;
  width: 100%;
}
#sec1 .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sec1 .bg img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#sec1 .scroll {
  width: 100%;
  text-align: center;
  position: absolute;
  height: auto;
  bottom: 0;
}
#sec1 .scroll p {
  font-size: 10px;
  color: white;
}
#sec1 .scroll::after {
  margin: auto;
  display: block;
  margin-top: 10px;
  content: "";
  width: 1px;
  background: linear-gradient(to bottom, white, white 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
  background-size: 100% 100px;
  height: 50px;
  -webkit-animation: discoverAnimatin 2s cubic-bezier(0.79, 0, 0.15, 1) infinite;
  animation: discoverAnimatin 2s cubic-bezier(0.79, 0, 0.15, 1) infinite;
}
#sec1 .news_part {
  width: 35%;
  position: absolute;
  bottom: 45px;
  margin-left: 5%;
}
#sec1 .news_part > div {
  max-width: 1200px;
  margin: auto;
  width: 90%;
}
#sec1 .news_part h3 {
  font-size: 13px;
  color: white;
}
#sec1 .news_part p {
  font-size: 12px;
  color: white;
}

#sec2 {
  position: relative;
}
#sec2 .part2 .block1 {
  align-items: stretch;
}
#sec2 .part2 .block1 .flex_body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 144px 0 124px;
}
#sec2 .part2 .block1 .flex_body > img {
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#sec2 .part2 .block1 .flex_body h3 {
  font-size: 26px;
  line-height: 1.4;
  padding-top: 0;
  padding-bottom: 22px;
  text-align: center;
  color: white;
}
#sec2 .part2 .block1 .flex_body p {
  color: white;
  text-align: center;
  font-size: 16px;
  padding: 0 40px 10px;
  line-height: 2;
}
#sec2 .part2 .block1 .flex_body a {
  margin-top: 15px;
}

#sec3 {
  position: relative;
  z-index: 3;
  padding: 85px 0 82px;
}
#sec3 .bg {
  position: absolute;
  z-index: 1;
  line-height: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sec3 .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sec3 .bg video {
  height: auto !important;
  width: 100%;
}
#sec3 .part1 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#sec3 .part1 h2 {
  padding-bottom: 40px;
  color: white;
  font-size: 26px;
  line-height: 1.4;
}
#sec3 .part1 p {
  font-size: 16px;
  color: white;
  text-align: center;
  line-height: 2;
}
#sec3 .part1 .btn_group {
  text-align: center;
  margin-top: 50px;
}

#sec4 {
  position: relative;
  z-index: 3;
}
#sec4 h2 {
  margin-bottom: 40px;
  padding-top: 75px;
  position: relative;
  padding-bottom: 0;
  font-size: 26px;
}
#sec4 .part1 {
  display: flex;
  justify-content: space-between;
  gap: 51px;
}
#sec4 .part1 .block {
  width: 300px;
  margin-bottom: 40px;
  display: block;
  position: relative;
}
#sec4 .part1 .block .category_name {
  position: absolute;
  background: black;
  padding: 5px 18px;
  color: white;
  font-size: 12px;
  top: 0;
  left: 0;
}
#sec4 .part1 .block img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#sec4 .part1 .block h3 {
  font-size: 14px;
  color: #2d2d2d;
  position: relative;
  padding-top: 5px;
}
#sec4 .part1 .block h3::after {
  content: "";
  width: 35px;
  height: 2px;
  position: absolute;
  background: black;
  top: 0;
  left: 0;
}
#sec4 .part1 .block p {
  font-size: 12px;
  padding-bottom: 5px;
  color: #2d2d2d;
  padding-top: 15px;
}
#sec4 .part1 .block:nth-child(3n) {
  margin-right: 0;
}
#sec4 .part2 {
  padding-bottom: 70px;
  text-align: center;
}
#sec4 .part2 a {
  margin: auto;
  margin-top: 50px;
  width: 248px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  position: relative;
  background: black;
}
#sec4 .part2 a::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  right: 15px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  border-bottom: 1px solid white;
  border-right: 1px solid white;
}

#sec5 {
  position: relative;
  z-index: 3;
  padding-bottom: 96px;
}
#sec5 h2 {
  margin-bottom: 45px;
  padding-top: 68px;
  position: relative;
  padding-bottom: 0;
  font-size: 26px;
  text-align: center;
}
#sec5 .part1 .slicker_parts1 .slicker_part {
  padding: 0 25px;
  width: 590px;
}
#sec5 .part1 .slicker_parts1 .slicker_part img {
  height: 385px;
  width: 546px;
  -o-object-fit: cover;
     object-fit: cover;
}
#sec5 .part1 .slicker_parts1 .slicker_part p {
  font-size: 14px;
  padding-top: 20px;
}

footer {
  position: relative;
  z-index: 3;
  background: black;
}
footer .part1 {
  padding: 70px 0 50px;
}
footer .part1 ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
footer .part1 ul li {
  padding: 0 11px;
}
footer .part1 ul li a {
  color: white;
  font-size: 12px;
}
footer .part1 a {
  display: block;
  margin-right: 45px;
  font-size: 11px;
  margin: auto;
}
footer .part1 a .logo {
  width: 120px;
}
footer .part1 a.insta {
  margin-left: auto;
  margin-right: 0;
}
footer .part1 a.insta img {
  width: 16px;
}
footer .part2 {
  padding-top: 0;
  padding-bottom: 60px;
  padding-right: 0;
  font-size: 10px;
  color: white;
  text-align: center;
}

.semi_fixedcontainer {
  max-width: 830px;
  margin: auto;
  width: 100%;
}

#profile_sec1 {
  background: url(./../images/profile_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 532px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#profile_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#profile_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#profile_sec1 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
}

#profile_sec2 {
  padding-top: 88px;
  position: relative;
  z-index: 3;
}
#profile_sec2 .part1 h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "游明朝体", serif;
  font-size: 33px;
  text-align: center;
  line-height: 1.8;
}
#profile_sec2 .part1 > p {
  font-size: 16px;
  padding-bottom: 60px;
  line-height: 2;
  text-align: left;
}
#profile_sec2 .part1 > p.subtitle {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "游明朝体", serif;
  line-height: 1.5;
  font-size: 16px;
  text-align: center;
  padding-bottom: 40px;
}
#profile_sec2 .part1 .video {
  width: 100%;
}

#profile_sec3 {
  padding-top: 90px;
  position: relative;
  z-index: 3;
}
#profile_sec3 .part1 .block {
  align-items: stretch;
}
#profile_sec3 .part1 .block .flex_img {
  width: 50%;
}
#profile_sec3 .part1 .block .flex_img img {
  width: 100%;
}
#profile_sec3 .part1 .block .flex_body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
#profile_sec3 .part1 .block .flex_body .piece {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 435px;
  margin: 0 0;
}
#profile_sec3 .part1 .block .flex_body .piece h2 {
  text-align: center;
  font-size: 26px;
  padding-bottom: 30px;
}
#profile_sec3 .part1 .block .flex_body .piece p {
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
#profile_sec3 .part1 .block .flex_body .piece .sign {
  margin-top: 40px;
  margin-left: 0;
  width: 209px;
}
#profile_sec3 .part1 .block .flex_body .map_piece {
  line-height: 0;
  width: 100%;
}
#profile_sec3 .part1 .block .profile_img {
  display: none;
}
#profile_sec3 .part2 {
  text-align: left;
  padding-top: 105px;
}
#profile_sec3 .part2 h2 {
  font-size: 26px;
}
#profile_sec3 .part2 p {
  padding-top: 40px;
  font-size: 16px;
  line-height: 2;
}
#profile_sec3 .part2 img {
  width: 100%;
  margin-top: 95px;
}

#profile_sec4 {
  padding-top: 85px;
  position: relative;
  z-index: 3;
  padding-bottom: 10px;
}
#profile_sec4 .block {
  margin-bottom: 70px;
}
#profile_sec4 .block h3 {
  text-align: center;
  font-size: 26px;
  color: #333333;
  position: relative;
  line-height: 1.5;
  padding-bottom: 10px;
}
#profile_sec4 .block h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 108px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: #333333;
  bottom: 0;
}
#profile_sec4 .block p {
  padding-top: 20px;
  font-size: 16px;
  text-align: left;
  color: #333333;
}
#profile_sec4 .block .img_wrapper {
  margin-top: 70px;
  display: flex;
  align-items: stretch;
}
#profile_sec4 .block .img_wrapper img {
  flex: 1;
}

#profile_sec5 .part1 {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 45px;
}
#profile_sec5 .part1 .block {
  position: relative;
  margin: 0 18px;
}
#profile_sec5 .part1 .block h3 {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#profile_sec5 .part1 .block h3 .eigo {
  font-size: 31px;
  line-height: 1.4;
  color: white;
  text-align: center;
}
#profile_sec5 .part1 .block h3 .nihongo {
  text-align: center;
  color: white;
  font-size: 13px;
}
#profile_sec5 .part2 {
  padding-bottom: 60px;
}
#profile_sec5 .part2 a {
  display: block;
  width: 700px;
  margin: auto;
  font-size: 12px;
  background: #6a9ebe;
  color: white;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#works_sec1 {
  background: url(./../images/works_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 532px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#works_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#works_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#works_sec1 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
  letter-spacing: 4px;
}

#works_sec2 {
  margin-top: 0px;
  z-index: 3;
  position: relative;
  padding-top: 94px;
}
#works_sec2 .part1 {
  display: grid;
  grid-gap: 50px;
  margin-bottom: 50px;
  grid-template-columns: repeat(3, 1fr);
}
#works_sec2 .part1 .block {
  width: 300px;
}
#works_sec2 .part1 .block a {
  display: block;
}
#works_sec2 .part1 .block a img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#works_sec2 .part1 .block a .block_body {
  text-align: left;
  padding-top: 0;
}
#works_sec2 .part1 .block a .block_body p {
  padding-top: 20px;
  font-size: 12px;
  color: #2d2d2d;
  position: relative;
  line-height: 1.5;
}
#works_sec2 .part1 .block a .block_body p.title {
  font-size: 14px;
  display: inline-block;
  line-height: 1.5;
  color: #2d2d2d;
  padding-top: 8px;
}
#works_sec2 .part1 .block a .block_body p.title::after {
  content: "";
  width: 35px;
  height: 1px;
  background: #2d2d2d;
  position: absolute;
  top: 0;
  left: 0;
}
#works_sec2 .part1 .block:nth-child(3n) {
  margin-right: 0;
}
#works_sec2 .part2 {
  padding-bottom: 75px;
}

#informations_sec1 {
  background: url(./../images/information_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 532px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#informations_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#informations_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#informations_sec1 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
  letter-spacing: 4px;
}

#informations_sec2 {
  margin-top: 0px;
  z-index: 3;
  position: relative;
  padding-top: 94px;
}
#informations_sec2 .part1 {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: repeat(3, 1fr);
}
#informations_sec2 .part1 .block {
  width: 300px;
}
#informations_sec2 .part1 .block a {
  display: block;
}
#informations_sec2 .part1 .block a img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#informations_sec2 .part1 .block a .block_body {
  text-align: left;
  padding-top: 0;
}
#informations_sec2 .part1 .block a .block_body p {
  padding-top: 20px;
  font-size: 12px;
  color: #2d2d2d;
  position: relative;
  line-height: 1.5;
  padding-bottom: 4px;
}
#informations_sec2 .part1 .block a .block_body p.title {
  font-size: 14px;
  display: inline-block;
  line-height: 1.5;
  color: #2d2d2d;
  padding-top: 8px;
}
#informations_sec2 .part1 .block a .block_body p.title::after {
  content: "";
  width: 35px;
  height: 1px;
  background: #2d2d2d;
  position: absolute;
  top: 0;
  left: 0;
}
#informations_sec2 .part1 .block:nth-child(3n) {
  margin-right: 0;
}
#informations_sec2 .part2 {
  padding-bottom: 75px;
}

#feature_sec1 {
  background: url(./../images/feature_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 532px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#feature_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#feature_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#feature_sec1 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
  letter-spacing: 4px;
}

#feature_sec2 {
  margin-top: 0px;
  z-index: 3;
  position: relative;
  padding-top: 94px;
}
#feature_sec2 .part1 {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: repeat(1, 1fr);
}
#feature_sec2 .part1 .block {
  width: 100%;
}
#feature_sec2 .part1 .block a {
  position: relative;
  display: block;
}
#feature_sec2 .part1 .block a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#feature_sec2 .part1 .block a .block_body {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 0;
}
#feature_sec2 .part1 .block a .block_body h2 {
  font-size: 26px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#feature_sec2 .part1 .block a .block_body p {
  padding-top: 20px;
  font-size: 16px;
  color: #2d2d2d;
  position: relative;
  line-height: 1.5;
  padding-bottom: 4px;
}
#feature_sec2 .part1 .block a .block_body p.title {
  font-size: 16px;
  display: inline-block;
  line-height: 1.5;
  padding-top: 20px;
  color: white;
}
#feature_sec2 .part1 .block a .block_body .btn_wrapper {
  margin-top: 15px;
}
#feature_sec2 .part1 .block a .block_body .btn_wrapper .left_arrow {
  width: 160px;
  height: 40px;
  display: flex;
  background: white;
  align-items: center;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
#feature_sec2 .works-interview-items {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  gap: 9px;
  padding-bottom: 60px;
}
#feature_sec2 .works-interview-items .block {
  width: 329px;
}
#feature_sec2 .works-interview-items .block a {
  display: block;
}
#feature_sec2 .works-interview-items .block a img {
  width: 100%;
  height: 226px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-size: 13px;
}
#feature_sec2 .works-interview-items .block a .block_body {
  text-align: left;
  padding-top: 0;
}
#feature_sec2 .works-interview-items .block a .block_body p {
  padding-top: 20px;
  font-size: 16px;
  color: #2d2d2d;
  position: relative;
  line-height: 1.5;
  padding-bottom: 10px;
}
#feature_sec2 .works-interview-items .block a .block_body p.title {
  font-size: 16px;
  display: inline-block;
  line-height: 1.5;
  color: #2d2d2d;
  padding-top: 8px;
}
#feature_sec2 .works-interview-items .block:nth-child(3n) {
  margin-right: 0;
}
#feature_sec2 .part2 {
  padding-bottom: 75px;
}

#news_detail_sec1 h2 {
  font-size: 28px;
  text-align: left;
  position: relative;
  padding-top: 75px;
  margin: auto;
  margin-bottom: 30px;
  width: 930px;
}
#news_detail_sec1 .date {
  font-size: 12px;
  color: #2d2d2d;
  text-align: left;
  position: relative;
  padding-bottom: 10px;
}
#news_detail_sec1 .date::after {
  content: "";
  width: 35px;
  height: 1px;
  background: #2d2d2d;
  position: absolute;
  bottom: 0;
  left: 0;
}
#news_detail_sec1 .part1 .block1 {
  text-align: center;
  width: 930px;
  margin: auto;
}
#news_detail_sec1 .part1 .block1 > img {
  width: 100%;
  margin-bottom: 40px;
}
#news_detail_sec1 .part1 .block1 p {
  text-align: left;
  color: black;
  font-size: 16px;
  line-height: 2;
}
#news_detail_sec1 .part1 .block1 img {
  display: block;
  margin: auto;
  height: auto;
}
#news_detail_sec1 .part1 .block1 a {
  text-decoration: underline;
}
#news_detail_sec1 .part1 .bottom_btn {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
#news_detail_sec1 .part1 .bottom_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 223px;
  height: 40px;
  color: white;
  font-size: 14px;
  background: black;
}

#works_detail_sec1 h2 {
  font-size: 28px;
  text-align: left;
  position: relative;
  padding-top: 75px;
  margin: auto;
  margin-bottom: 30px;
  width: 840px;
}
#works_detail_sec1 .date {
  padding-bottom: 40px;
  font-size: 12px;
  line-height: 1.8;
  padding-bottom: 10px;
  color: #2d2d2d;
  text-align: center;
  position: relative;
}
#works_detail_sec1 .date::after {
  content: "";
  width: 35px;
  height: 1px;
  position: absolute;
  background: black;
  bottom: 0;
  left: 0;
}
#works_detail_sec1 .part1 .block1 {
  text-align: center;
  width: 840px;
  margin: auto;
}
#works_detail_sec1 .part1 .block1 > img {
  width: 100%;
  margin-bottom: 40px;
}
#works_detail_sec1 .part1 .block1 p {
  text-align: left;
  color: black;
  font-size: 16px;
  line-height: 2;
}
#works_detail_sec1 .part1 .block1 img {
  width: 100%;
  height: auto;
}
#works_detail_sec1 .part1 .block1 a {
  text-decoration: underline;
}
#works_detail_sec1 .part1 .bottom_btn {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
#works_detail_sec1 .part1 .bottom_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 223px;
  height: 40px;
  color: white;
  font-size: 14px;
  background: black;
}

#feature_detail_sec1 .part_header {
  height: 412px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#feature_detail_sec1 .part_header .bg {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 0;
  left: 0;
}
#feature_detail_sec1 h2 {
  text-align: center;
  color: white;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.05em;
}
#feature_detail_sec1 .subtitle {
  padding-top: 10px;
  color: white;
  text-align: center;
  font-size: 14px;
}
#feature_detail_sec1 .date {
  padding-bottom: 40px;
  font-size: 12px;
  color: #2d2d2d;
  text-align: center;
  position: relative;
}
#feature_detail_sec1 .date::after {
  content: "";
}
#feature_detail_sec1 .part1 {
  padding-top: 70px;
}
#feature_detail_sec1 .part1 .block1 {
  text-align: left;
  width: 840px;
  margin: auto;
}
#feature_detail_sec1 .part1 .block1 > img {
  width: 100%;
  margin-bottom: 40px;
}
#feature_detail_sec1 .part1 .block1 h1, #feature_detail_sec1 .part1 .block1 h2 {
  padding: 0 30px 10px;
}
#feature_detail_sec1 .part1 .block1 h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "游明朝体", serif;
  font-size: 26px;
  text-align: left;
  margin-top: 50px;
  padding: 0 30px 10px;
  line-height: 1.5;
  font-weight: bold;
}
#feature_detail_sec1 .part1 .block1 h5 {
  font-size: 16px;
  color: #00a0e9;
  padding: 0 30px;
  margin-bottom: 20px;
}
#feature_detail_sec1 .part1 .block1 p {
  text-align: left;
  color: black;
  font-size: 16px;
  padding: 0 30px;
  line-height: 2;
}
#feature_detail_sec1 .part1 .block1 p > img {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
}
#feature_detail_sec1 .part1 .block1 img {
  width: 100%;
  height: auto;
}
#feature_detail_sec1 .part1 .block1 a {
  text-decoration: underline;
}
#feature_detail_sec1 .part1 .bottom_btn {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
#feature_detail_sec1 .part1 .bottom_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 223px;
  height: 40px;
  color: white;
  font-size: 14px;
  background: black;
}

#contact_sec1 {
  background: url(./../images/contact_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 532px;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#contact_sec1 .part1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#contact_sec1 .part1 h2 {
  font-size: 39px;
  color: white;
  text-align: center;
  line-height: 1.4;
}
#contact_sec1 .part1 p {
  font-size: 13px;
  color: white;
  text-align: center;
}

label.error {
  color: red !important;
  padding-top: 10px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
}

.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #edeeee;
  display: block;
  font-size: 12px;
  text-align: center;
}

#contact_sec2 {
  padding-top: 75px;
  position: relative;
  z-index: 2;
}
#contact_sec2 .part1 {
  padding-bottom: 105px;
  width: 720px;
  margin: auto;
}

.right_bar .banner {
  margin-bottom: 20px;
  display: block;
}

.content {
  max-width: 100%;
  margin: auto;
}
.content .form-group {
  flex: 1;
  margin: 0 0;
  padding-bottom: 20px;
}
.content .form-group label {
  font-size: 14px;
  margin-bottom: 10px;
}
.content .form-group .wpcf7-list-item {
  margin-left: 0;
}
.content .form-group > label {
  display: flex;
  width: 288px;
  font-size: 14px;
  /* margin-bottom: 20px; */
  position: relative;
  align-items: flex-start;
  padding-top: 15px;
}
.content .form-group > label .essential {
  color: red;
}
.content .form-group .wpcf7-list-item.last {
  font-size: 13px;
  align-self: center;
}
.content .form-group .wpcf7-list-item .wpcf7-list-item-label {
  padding-right: 20px;
}
.content .form-group .wpcf7-list-item.first {
  padding-top: 7px;
}
.content .form-group .wpcf7-list-item.first label input {
  display: none;
}
.content .form-group .wpcf7-list-item.first label .wpcf7-list-item-label {
  color: #e58e55;
  font-size: 0.6rem;
}
.content .form-group .wpcf7-form-control-wrap {
  flex: 1;
}
.content .form-group input[type=text], .content .form-group input[type=email], .content .form-group input[type=tel], .content .form-group select, .content .form-group textarea {
  height: 50px;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  padding-left: 20px;
  color: #363636;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  font-size: 15px;
  box-shadow: none;
}
.content .form-group input[type=checkbox] {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #c5c5c5;
  outline: none;
}
.content .form-group textarea {
  height: 120px;
  padding: 20px;
  resize: vertical;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
}
.content .flex_multi .form-group:first-child {
  margin-right: 20px;
}
.content .flex_multi .form-group:last-child {
  margin-left: 20px;
}
.content .wpcf7-list-item.first.last {
  font-size: 13px;
  align-self: center;
  width: 100%;
  text-align: center;
  margin-left: 0;
}
.content .wpcf7-not-valid-tip {
  font-size: 0.7rem;
}
.content .submit_btn {
  text-align: center;
  margin-top: 0;
  padding: 0 0;
}
.content .submit_btn .ajax-loader {
  display: none;
}
.content .submit_btn input {
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  color: white;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  -webkit-appearance: none;
}
.content .submit_btn input:hover {
  opacity: 0.8;
}
.content .wpcf7-spinner {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination a, .pagination span {
  font-size: 12px;
  border-right: 1px solid black;
  padding: 0 5px;
  line-height: 1;
}
.pagination a:last-child, .pagination span:last-child {
  border-right: none;
}
.pagination a {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */