@charset "UTF-8";
@media (min-width: 769px) {
  .mv {
    display: none !important;
  }
  .ipad {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .ipad {
    display: none;
  }
  .mv {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .pc {
    display: none;
  }
  .mv {
    display: none;
  }
  .ipad {
    display: block !important;
  }
}
@media (min-width: 769px) {
  .wrap {
    width: calc(100% - 120px);
    margin: auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .wrap {
    width: 90%;
  }
}
@media (min-width: 769px) {
  .wrap_min {
    width: 1100px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .wrap_min {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .wrap_min {
    width: 85%;
  }
  .about_wrap {
    width: 85%;
  }
}
iframe {
  width: 100%;
}
@media (min-width: 1026px) and (max-width: 1200px) {
  .wrap_min {
    width: calc(100% - 200px);
  }
}
body {
  position: relative;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  background-size: contain;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
  padding: 0;
  margin: 0;
}
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-start {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
}
.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-strech {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 769px) {
  .flex-container-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-between-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-start-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
  }
  .flex-strech-pc {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex-end-pc {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-align-center-pc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-space-between-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-center-pc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-row-reverse-pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.element {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}
.element.is-fadein {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.fadein_content {
  opacity: 0;
  bottom: -100px;
  transition: 3s;
}
.fadein_content.fadein {
  opacity: 1;
  bottom: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.active::-webkit-scrollbar {
  display: none;
}
body.active {
  -ms-overflow-style: none;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  margin: 0;
  line-height: 1.8;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  height: auto;
  border: none;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
img {
  object-fit: cover;
}
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
table {
  border-collapse: collapse;
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: 0;
  padding: 0;
  appearance: none;
}
button,
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: 0;
  padding: 0.5rem 1rem;
  width: 100%;
  font-size: 1rem;
}
button,
input[type="button"],
input[type="submit"],
label,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
a {
  color: #202042;
}
a:link,
a:visited {
  text-decoration: none;
  word-wrap: break-word;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:active,
a:hover {
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  body {
    line-height: 1.8;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.font-Jp {
  font-family: "Noto Sans JP", sans-serif;
}
.font-En {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}
.fo-Light {
  font-weight: 300;
}
.fo-Regular {
  font-weight: 400;
}
.fo-Medium {
  font-weight: 500;
}
.fo-Bold {
  font-weight: 700;
}
.fo-80 {
  font-size: 80px;
  font-size: 8rem;
}
.fo-40 {
  font-size: 32px;
  font-size: 3.2rem;
}
.fo-32 {
  font-size: 32px;
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .fo-32 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.fo-27 {
  font-size: 27px;
  font-size: 2.7rem;
}
.fo-20 {
  font-size: 20px;
  font-size: 2rem;
}
.fo-18 {
  font-size: 18px;
  font-size: 1.8rem;
}
.fo-16 {
  font-size: 16px;
  font-size: 1.6rem;
}
.fo-15 {
  font-size: 15px;
  font-size: 1.5rem;
}
.fo-13 {
  font-size: 13px;
  font-size: 1.3rem;
}
.fo-12 {
  font-size: 12px;
  font-size: 1.2rem;
}
.sec8 {
  padding: 8rem 0;
  position: relative;
}
@media (min-width: 769px) {
  .sec8 {
    margin: 8rem auto;
    background: rgba(46, 181, 221, 0.1);
  }
  .sec8::after {
    content: "";
    position: absolute;
    right: 5rem;
    bottom: 0;
    background: url(../images/sec8_bg.svg);
    width: 400px;
    top: 4rem;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -1;
  }
}
@media (max-width: 768px) {
  .sec8 {
    padding: 0 2rem 5rem;
  }
  .sec8 h2 {
    font-size: 14px;
    font-size: 1.4rem;
    position: relative;
  }
  .sec8 h2::after {
    content: "";
    position: absolute;
    background: url(../images/sec8_bg.svg);
    background-size: cover;
    top: -1rem;
    right: 0;
    bottom: -1rem;
    width: 50px;
  }
}
@media (min-width: 769px) {
  .sec8 .sec8_content,
  .sec8 h2 {
    width: 700px;
    margin: auto;
  }
}
.sec8 .sec8_content {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .sec8 .sec8_content {
    padding: 3rem 2.5rem;
    text-align: center;
    margin-top: 1rem;
    background: #f3f6fa;
  }
}
@media (min-width: 769px) {
  .sec8 .sec8_content .sec8_item {
    width: calc(50% - 2rem);
  }
}
.sec8 .sec8_content .sec8_item.tell {
  line-height: normal;
}
.sec8 .sec8_content .sec8_item.tell span {
  display: block;
}
@media (max-width: 768px) {
  .sec8 .sec8_content .sec8_item.tell span {
    margin-bottom: 2rem;
  }
}
.sec8 .sec8_content .sec8_item.form {
  background: #202042;
  border-radius: 10px;
  text-align: center;
}
.sec8 .sec8_content .sec8_item.form a {
  padding: 1rem 0;
  color: #fff;
  display: block;
  font-weight: 700;
}
.sec8 .sec8_content .sec8_item.form a svg {
  width: 25px;
  vertical-align: -9px;
  margin-right: 1rem;
}
.sec8 .sec8_content .sec8_item.form:hover {
  background: #fff;
}
.footer {
  background: rgba(46, 181, 221, 0.1);
  padding: 8rem 0 2rem;
}
.footer a .logo-main {
  width: 150px;
}
.footer .footer_address {
  border-top: 1px solid #707070;
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer .footer_address h3 {
  margin-bottom: 0.5rem;
}
.footer .footer_address p {
  color: #4d4d4d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: normal;
  margin: 0;
}
.footer .address_under {
  position: relative;
/*   margin-bottom: 5rem; */
}
@media (min-width: 769px) {
}
@media (min-width: 769px) {
  .footer .address_under ul {
    width: calc(50% - 2rem);
  }
}
.footer .address_under ul .address_item {
  border-top: 1px solid #707070;
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer .address_under ul .address_item h3 {
  margin-bottom: 0.5rem;
}
.footer .address_under ul .address_item p {
  color: #4d4d4d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: normal;
}
@media (min-width: 769px) {
  .footer .address_under ul:nth-child(2) .address_item:first-child {
    padding: 3rem 0 1.2rem;
  }
}
.footer .policy_block {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.footer .policy_block p {
	display: inline-block;
	text-decoration:underline;
	padding-right: 1rem;
}
.footer .copyright {
  display: block;
  color: #4d4d4d;
  opacity: 0.5;
}
.header {
  padding: 2rem 4rem;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header .wrap {
  align-items: end;
}
.header .left_logo {
  width: 100px;
  display: inline-block;
}
.header .header_nav {
  width: calc(100% - 150px);
  display: inline-block;
  text-align: right;
  vertical-align: middle;
}
.header .header_nav .ul_list li {
  display: inline-block;
  margin: 0 1.5rem;
  line-height: normal;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header .header_nav .ul_list li a {
  position: relative;
  z-index: 2;
  font-weight: 500;
}
@media (min-width: 769px) {
  .header .header_nav .ul_list li::after {
    content: "";
    background: rgba(52, 127, 128, 0.1);
    opacity: 0;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 1;
    -ms-filter: blur(3px);
    filter: blur(3px);
  }
}
.header .header_nav .ul_list li span {
  display: block;
  text-align: left;
  opacity: 0.5;
}
.header .header_nav .ul_list li:hover::after {
  opacity: 1;
}
.header .header_nav .ul_list li.header_btn {
  vertical-align: top;
  background: #202042;
  margin-top: -0.4rem;
  border-radius: 30px;
  font-weight: 700;
}
.header .header_nav .ul_list li.header_btn a {
  color: #fff;
  padding: 0.7rem 2rem 0.8rem;
  display: inline-block;
}
.header .header_nav .ul_list li.header_btn::after {
  display: none;
}
.header .header_nav .ul_list li.header_btn:hover {
  background: #fff;
}
@media (min-width: 768px) and (max-width: 1025px) {
  .header {
    position: fixed;
    padding: 1rem 2rem;
  }
  .header .pc {
    display: none;
  }
  .header .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 20px;
    top: 6px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .header .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .header .hamburger span:first-child {
    top: 10px;
  }
  .header .hamburger span:nth-child(2) {
    top: 20px;
  }
  .header .hamburger span:nth-child(3) {
    top: 30px;
  }
  .header .hamburger.active span:first-child {
    top: 23px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header .hamburger.active span:nth-child(2),
  .header .hamburger.active span:nth-child(3) {
    top: 23px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header #g-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    color: #000;
    transform: translateX(100%);
    width: 100%;
    transition: all 0.6s;
    overflow: scroll;
  }
  .header #g-nav .header_bg {
    background: rgba(255, 255, 255, 0.5);
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
  }
  .header #g-nav .ul_list {
    width: 50%;
    margin: 0 0 0 auto;
    height: 100%;
    background: #fff;
  }
  .header #g-nav ul {
    padding: 5rem 4rem 4rem;
    height: calc(100vh - 6rem);
    margin: 6rem 0 0 0;
    overflow: scroll;
  }
  .header #g-nav li {
    width: 100%;
    display: inline-block;
    margin: 0;
    padding: 1.5rem 0;
    text-align: left;
  }
  .header #g-nav li::after,
  .header #g-nav li::before {
    display: none;
  }
  .header #g-nav li a {
    font-size: 1.5rem;
    display: block;
    padding: 0.3em 0;
    text-decoration: none;
  }
  .header #g-nav li.header_btn {
    text-align: center;
  }
  .header #g-nav li.header_btn a {
    color: #fff;
  }
  .header #g-nav.active {
    transform: translateX(0);
  }
  .header #g-nav .ul_list {
    padding: 9rem 11rem;
  }
  .header #g-nav .nav_under {
    border-top: 1px solid #fff;
    color: #fff;
    margin-top: 4rem;
    padding-top: 6rem;
    display: flex;
    justify-content: space-between;
  }
  .header #g-nav .nav_under .nav_under_logo {
    height: 50px;
    margin-bottom: 2rem;
  }
  .header #g-nav .nav_under a {
    color: #fff;
  }
  .header #g-nav .nav_under .nav_under_sns {
    margin: 0 0 6vh 0;
  }
  .header #g-nav .nav_under .nav_under_sns a:first-child {
    margin-right: 2rem;
  }
  .header #g-nav .nav_under .nav_under_left,
  .header #g-nav .nav_under .nav_under_right {
    width: calc(50% - 1rem);
  }
  .header #g-nav .nav_under .nav_under_right {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    padding: 1rem 0;
  }
  .header .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 20px;
    top: 17px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .header .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .header .hamburger span:first-child {
    top: 10px;
  }
  .header .hamburger span:nth-child(2) {
    top: 20px;
  }
  .header .hamburger span:nth-child(3) {
    top: 30px;
  }
  .header .hamburger.active span:first-child {
    top: 23px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header .hamburger.active span:nth-child(2),
  .header .hamburger.active span:nth-child(3) {
    top: 23px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header .ul_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header #g-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    color: #000;
    background: #fff;
    transform: translateX(100%);
    transition: all 0.6s;
    overflow: scroll;
  }
  .header #g-nav .ul_list {
    padding: 5rem 3rem 4rem;
    height: calc(100vh - 6rem);
    margin: 6rem 0 0 0;
    overflow: hidden;
    text-align: left;
  }
  .header #g-nav li {
    width: 100%;
    display: inline-block;
    padding: 0;
  }
  .header #g-nav li a {
    display: block;
    padding: 0.5em 0;
    text-decoration: none;
  }
  .header #g-nav li.header_btn {
    text-align: center;
    background: 0 0;
    border: 0;
    border-radius: 0;
  }
  .header #g-nav li.header_btn a {
    padding: 1rem 0;
    margin-top: -0.4rem;
    border-radius: 30px;
  }
  .header #g-nav.active {
    transform: translateX(0);
  }
}
.loading_top .omj-awre-loading {
  position: absolute;
  z-index: 99999;
  width: 100%;
  opacity: 0;
  top: -90px;
  transition: 1s;
  background: #f3f6fa;
  text-align: center;
}
.loading_top .omj-awre-loading-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading_top .omj-awre-loading-logo-container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 50%;
  background: #fff;
  justify-content: center;
  align-items: center;
  width: 60vw;
  height: 60vw;
  margin: 0 0 4vw;
}
.loading_top .omj-awre-loading-logo-container p {
  width: 100%;
  font-weight: 700;
  font-size: 3.2vw;
}
.loading_top .omj-awre-loading .vh {
  position: relative;
}
.loading_top .omj-awre-loading.omj-awre-show {
  opacity: 1;
}
.loading_top .omj-awre-loading.omj-awre-close {
  display: none;
}
.loading_top .omj-awre-loading.omj-awre-hidden {
  opacity: 0;
  transition: 0.5s;
}
.loading_top .omj-awre-loadingBack.show {
  background-position: 94% 50%;
}
.loading_top .omj-awre-loading-logo {
  width: 37vw;
  margin: 0 auto;
}
.loading_top .omj-awre-loading-en {
  font-family: Caveat, cursive;
  font-weight: 700;
  opacity: 0;
  font-size: 8vw;
}
.loading_top .omj-awre-loading.omj-awre-animation-start .omj-awre-loading-en {
  opacity: 1;
}
@media (min-width: 769px) {
  .loading_top .omj-awre-loading .omj-awre-vh {
    height: 100vh !important;
  }
  .loading_top .omj-awre-loading-logo {
    width: 150px;
  }
  .loading_top .omj-awre-loading-logo-container {
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
  }
  .loading_top .omj-awre-loading-content {
    display: block;
  }
  .loading_top .omj-awre-loading-logo-container p {
    font-size: 15px;
  }
  .loading_top .omj-awre-loading-logo-inner {
    transform: translateY(-10px);
  }
  .loading_top .omj-awre-loading-en {
    font-size: 50px;
  }
}
.middle {
  line-height: 2;
}
.middle section h2 {
  color: #202042;
}
.middle section .bg_text {
  position: relative;
  z-index: -1;
}
.middle section .bg_text::after {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  opacity: 0.1;
  position: absolute;
  line-height: 0.8;
  font-size: 22rem;
}
.sec1 {
  margin-top: 86px;
  margin-bottom: 5rem;
  height: calc(100vh - 10rem);
  width: calc(100% - 150px);
  position: relative;
}
@media (min-width: 769px) {
  .sec1 {
    margin-left: 6rem;
    border-radius: 0 10px 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec1 {
    margin-left: 0;
    width: calc(100% - 90px);
  }
}
@media (max-width: 768px) {
  .sec1 {
    height: 100vh;
    width: 100%;
    margin: 6.6rem 0 5rem 0;
    background-position-x: -50%;
  }
}
.sec1 .sec1_text {
  position: absolute;
  line-height: normal;
  color: #fff;
  left: 3rem;
}
@media (min-width: 769px) {
  .sec1 .sec1_text {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .sec1 .sec1_text {
    font-size: 31px;
    font-size: 3.1rem;
    top: 2rem;
  }
}
.sec2 {
  padding: 8rem 0 10rem;
  margin: 10rem 0 0;
  position: relative;
}
@media (max-width: 768px) {
  .sec2 {
    margin: 5rem 0 0;
  }
}
.sec2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(46, 181, 221, 0.1);
  width: calc(50% - 5rem);
  z-index: -1;
}
@media (max-width: 768px) {
  .sec2::before {
    width: calc(50% + 10rem);
    bottom: -40rem;
  }
}
.sec2 .sec2_content {
  position: relative;
}
.sec2 .sec2_content .sec2_content_bg {
  background: url(../images/sec2_img.jpg);
  background-size: cover;
  display: inline-block;
  position: absolute;
}
@media (min-width: 769px) {
  .sec2 .sec2_content .sec2_content_bg {
    width: calc(50% - 9rem);
    height: 450px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec2 .sec2_content .sec2_content_bg {
    height: 270px;
  }
}
.sec2 .sec2_content .wrap_min .sec2_content_text {
  margin: 0 0 0 auto;
}
@media (min-width: 769px) {
  .sec2 .sec2_content .wrap_min .sec2_content_text {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec2 .sec2_content .wrap_min .sec2_content_text {
    width: 57%;
  }
}
.sec2 .sec2_content .wrap_min .sec2_content_text h2 {
  line-height: 2;
}
@media (max-width: 768px) {
  .sec2 .sec2_content .wrap_min .sec2_content_text h2 {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
.sec2 .sec2_content .wrap_min .sec2_content_text p {
  margin-top: 3rem;
}
.sec2 .sec2_content .wrap_min .btn_main {
  margin: 8rem 0 0 auto;
}
@media (max-width: 768px) {
  .sec2 .sec2_content .wrap_min .btn_main {
    margin: 5rem auto 0;
  }
}
.sec3 {
  padding: 13rem 0 8rem;
  position: relative;
  overflow: hidden;
}
.sec3::after {
  content: "Service";
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10rem;
  line-height: 0.8;
  font-size: 22rem;
  z-index: -1;
}
.sec3 .sec2_under {
  text-align: center;
  color: #202042;
}
.sec3 .sec2_under span {
  position: relative;
}
.sec3 .sec2_under span::after {
  content: "";
  background: rgba(255, 193, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 2rem;
  left: 1rem;
  right: 1rem;
  z-index: -1;
}
.sec3 h2 {
  text-align: center;
}
.sec3 .sec3_content {
  margin-top: 8rem;
}
.sec3 .sec3_content a {
  position: relative;
}
@media (min-width: 769px) {
  .sec3 .sec3_content a {
    width: calc(33.3333333333% - 2rem);
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec3 .sec3_content a {
    width: 100%;
  }
}
.sec3 .sec3_content a .hover_text {
  position: absolute;
  top: -1rem;
  right: 0;
  bottom: 5rem;
  background: #fff;
  left: 0;
  border-radius: 70px 10px;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec3 .sec3_content a .hover_text {
    position: absolute;
    width: calc(100% - 200px);
    opacity: 1;
    background: 0 0;
    right: 0;
    top: 60px;
    left: auto;
  }
}
.sec3 .sec3_content a .hover_text .hover_text_content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (min-width: 769px) {
  .sec3 .sec3_content a .hover_text .hover_text_content {
    width: calc(100% - 10rem);
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec3 .sec3_content a .hover_text .hover_text_content {
    position: relative;
    width: calc(100% - 200px);
    display: inline-block;
  }
}
.sec3 .sec3_content a .hover_text .hover_text_content h4 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.sec3 .sec3_content a .hover_text .hover_text_content p {
  text-align: left;
}
@media (min-width: 769px) {
  .sec3 .sec3_content a:hover .sec3_content_box {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5rem);
    border-radius: 70px 10px;
  }
  .sec3 .sec3_content a:hover .hover_text {
    opacity: 1;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec3 .sec3_content a:hover .sec3_content_box {
    transform: none;
    border-radius: 70px 10px 10px 10px;
    text-align: left;
  }
  .sec3 .sec3_content a:hover .sec3_content_box p {
    text-align: center;
  }
}
.sec3 .sec3_content .sec3_content_box {
  background: #fff;
  box-shadow: 3px 3px 25px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media (min-width: 769px) {
  .sec3 .sec3_content .sec3_content_box {
    border-radius: 70px 10px 10px 10px;
    padding: 1rem 2rem 3rem;
    text-align: center;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec3 .sec3_content .sec3_content_box {
    padding: 2rem 8rem 3rem;
  }
}
.sec3 .sec3_content .sec3_content_box h3 {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-left: -1.5rem;
}
.sec3 .sec3_content .sec3_content_box h3 span {
  background: #2eb5dd;
  color: #fff;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec3 .sec3_content .sec3_content_box h3 {
    margin-left: -8.5rem;
  }
}
.sec3 .sec3_content .sec3_content_box img {
  width: 70%;
  margin: auto;
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec3 .sec3_content .sec3_content_box img {
    width: 150px;
    display: block;
    margin: 0;
  }
}
.sec3 .sec3_content .sec3_content_box p span {
  display: block;
  opacity: 0.3;
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec3 .sec3_content .sec3_content_box p {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .sec3 .sec3_content .sec3_content_box {
    padding: 1rem 2rem;
    border-radius: 20px;
  }
  .sec3 .sec3_content .sec3_content_box.item2 {
    margin: 2rem 0;
  }
  .sec3 .sec3_content .sec3_content_box .hover_text_content,
  .sec3 .sec3_content .sec3_content_box h3 {
    display: none;
  }
  .sec3 .sec3_content .sec3_content_box img {
    width: 100px;
  }
  .sec3 .sec3_content .sec3_content_box p {
    width: calc(100% - 110px);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
  }
  .sec3 .sec3_content .sec3_content_box p span {
    display: none;
  }
}
.sec4 {
  margin: 8rem 0 0 0;
  padding-bottom: 8rem;
  position: relative;
}
@media (max-width: 768px) {
  .sec4 {
    margin-top: 5rem;
  }
}
.sec4::before {
  content: "";
  top: 3rem;
  background: rgba(46, 181, 221, 0.1);
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .sec4::before {
    width: calc(50% + 10rem);
  }
}
.sec4 .bg_text {
  width: 100%;
  margin: 0 0 0 auto;
}
@media (min-width: 769px) {
  .sec4 .bg_text {
    position: absolute !important;
    top: 3rem;
    bottom: 0;
    z-index: -1;
  }
}
.sec4 .bg_text::after {
  content: "Work";
  top: -5rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.sec4 .sec4_tit {
  margin-bottom: 8rem;
}
.sec4 .coustom_main {
  position: relative;
}
@media (min-width: 769px) {
  .sec4 .coustom_main {
    width: calc(33.3333333333% - 2rem);
    display: inline-block;
    margin: 0 1rem;
    vertical-align: top;
  }
  .sec4 .coustom_main:first-child {
    margin-left: 0;
  }
  .sec4 .coustom_main:nth-child(3) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .sec4 .coustom_main {
    padding: 0 2rem;
    margin-bottom: 3rem;
    display: block;
  }
}
.sec4 .coustom_main .post-thumb {
  position: relative;
  height: 200px;
}
.sec4 .coustom_main .post-thumb div {
  border-radius: 10px;
  height: 200px;
  background-size: cover;
  object-fit: contain;
}
.sec4 .coustom_main .custom_text {
  margin-top: 1rem;
  line-height: normal;
}
.sec4 .coustom_main .custom_text p {
  font-weight: 500;
}
.sec4 .btn_main {
  margin: 5rem auto 0;
}
.sec5 {
  position: relative;
}
@media (min-width: 769px) {
  .sec5 {
    padding: 8rem 0 10rem;
    margin: 10rem 0 0;
  }
}
.sec5::after {
  content: "Member";
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  opacity: 0.1;
  position: absolute;
  right: 60px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: -4rem;
  line-height: 0.8;
  font-size: 22rem;
  z-index: -1;
}
.sec5 .sec5_content {
  position: relative;
}
.sec5 .sec5_content .sec5_content_bg {
  background: url(../images/sec5_img.jpg);
  background-size: cover;
  display: inline-block;
  position: absolute;
}
@media (min-width: 769px) {
  .sec5 .sec5_content .sec5_content_bg {
    width: calc(50% - 9rem);
    height: 450px;
  }
}
.sec5 .sec5_content .wrap_min .sec5_content_text {
  width: 50%;
  margin: 0 0 0 auto;
  display: block;
}
.sec5 .sec5_content .wrap_min .sec5_content_text h2 {
  line-height: 2;
}
.sec5 .sec5_content .wrap_min .sec5_content_text p {
  margin-top: 3rem;
}
.sec5 .sec5_content .wrap_min .btn_main {
  margin: 8rem 0 0 auto;
}
@media (max-width: 768px) {
  .sec5 .sec5_content .wrap_min .btn_main {
    margin: 5rem auto 0;
    background: url(../images/member_btn_sp.jpg);
    border-radius: 10px;
    width: 100%;
    background-size: cover;
    border: 0;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
  }
  .sec5 .sec5_content .wrap_min .btn_main::after {
    content: "";
    background: #000;
    opacity: 0.2;
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
.sec6 {
  position: relative;
}
@media (min-width: 769px) {
  .sec6 {
    padding: 8rem 0 10rem;
    margin: 10rem 0 0;
  }
}
.sec6::after {
  content: "Recruit";
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  opacity: 0.1;
  position: absolute;
  left: 60px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: -5rem;
  line-height: 0.8;
  font-size: 22rem;
  z-index: -1;
}
.sec6 .sec6_content {
  position: relative;
}
.sec6 .sec6_content .sec6_content_bg {
  background: url(../images/sec6_img.jpg);
  background-size: cover;
  display: inline-block;
  position: absolute;
  right: 0;
}
@media (min-width: 769px) {
  .sec6 .sec6_content .sec6_content_bg {
    width: calc(50% - 9rem);
    height: 450px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec6 .sec6_content .sec6_content_bg {
    height: 330px;
  }
}
.sec6 .sec6_content .wrap_min .sec6_content_text {
  width: 50%;
  margin: 0 auto 0 0;
}
.sec6 .sec6_content .wrap_min .sec6_content_text h2 {
  line-height: 2;
}
.sec6 .sec6_content .wrap_min .sec6_content_text p {
  margin-top: 3rem;
}
.sec6 .sec6_content .wrap_min .btn_main {
  margin: 5rem auto 0 0;
}
@media (max-width: 768px) {
  .sec6 .sec6_content .wrap_min .btn_main {
    margin: 3rem auto 0;
    background: url(../images/recruit_btn_sp.jpg);
    border-radius: 10px;
    width: 100%;
    background-size: cover;
    border: 0;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
  }
  .sec6 .sec6_content .wrap_min .btn_main::after {
    content: "";
    border-radius: 10px;
    background: #000;
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
.sec7 {
  padding: 8rem 0 10rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .sec7 {
    margin: 10rem 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .sec7 {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .sec7 {
    padding: 5rem 0;
  }
}
.sec7 .sec7_tit {
  margin-bottom: 3rem;
}
.sec7 .sec7_tit h2 {
  text-align: center;
}
@media (min-width: 769px) {
  .sec7 .wrap_min {
    width: 800px;
  }
}
.sec7 .bg_text {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .sec7 .bg_text {
    position: absolute !important;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 170px;
    width: 1100px;
  }
}
.sec7 .bg_text::after {
  content: "News";
  right: 0;
  top: 0;
}
.sec7 .coustom_main .custom_text {
  padding: 0 2rem;
}
.sec7 .coustom_main .custom_text span {
  width: 100px;
  display: inline-block;
}
.sec7 .coustom_main .custom_text .custom_tit {
  width: calc(100% - 100px - 2rem);
  margin-left: 1rem;
  display: inline-block;
}
.sec7 .btn_main {
  margin: 8rem auto 0;
}
.under {
  margin-top: 8.6rem;
  position: relative;
}
.under .scrolldown1 {
  right: 4rem;
}
@media (max-width: 768px) {
  .under .scrolldown1 {
    right: 2rem;
    bottom: 0;
  }
}
.under .under_tit {
  padding: 0 4rem 0 0;
  position: relative;
}
@media (max-width: 768px) {
  .under .under_tit .wrap {
    padding-left: 0;
  }
}
.under .under_tit h1 {
  color: #fff;
  line-height: normal;
  border-radius: 0 5px 5px 0;
}
@media (min-width: 769px) {
  .under .under_tit h1 {
    padding: 15rem 4rem 4rem;
  }
  .under_tit h2{
    padding: 15rem 4rem 4rem;
  }
}
@media (max-width: 768px) {
  .under .under_tit h1 {
    height: 80vh;
    padding: 3rem 2rem 0;
    font-size: 12vw;
  }
}
.under .under_tit h1 span {
  display: block;
}
.under .under_tit .scrolldown1 span {
  left: -25px;
}
.under .under_tit .scrolldown1 span::after {
  left: 18px;
}
.under section {
  margin: 10rem auto;
}
@media (max-width: 768px) {
  .under section {
    margin: 5rem auto;
    padding-bottom: 0.3rem;
  }
}
.under section .sec_tit {
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .under section .sec_tit {
    margin-bottom: 3rem;
  }
}
.under section .sec_tit h2 {
  color: #202042;
}
@media (max-width: 768px) {
  .under section .sec_tit h2 {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
@media (min-width: 769px) {
  .about {
    line-height: 1.8;
  }
}
.about .under_tit h1 {
  background: url(../images/under/service_main.jpg);
  background-size: cover;
}
@media (max-width: 768px) {
  .about .under_tit h1 {
    background-position: center;
  }
}
.about .about_sec1 {
  position: relative;
  overflow: hidden;
}
.about .about_sec1 .about_sec1_bg {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.about .about_sec1 .about_sec1_bg .wrap {
  position: relative;
}
.about .about_sec1 .about_sec1_bg .wrap::after {
  content: "";
  position: absolute;
  background: url(../images/under/about_sec1.jpg);
  top: 50%;
  transform: translateY(-50%);
  background-size: cover;
  right: 0;
}
@media (min-width: 769px) {
  .about .about_sec1 .about_sec1_bg .wrap::after {
    width: calc(50% - 2rem);
    height: 400px;
  }
}
@media (min-width: 769px) {
  .about_wrap {
    width: 900px;
    margin: 0 auto;
    display: block;
  }
  .about .about_sec1 .about_sec1_main {
    width: 100%;
  }
  .about .about_sec1 .about_sec1_main::before {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    opacity: 0.07;
    position: absolute;
    margin-left: -10rem;
    line-height: 0.8;
    font-size: 22rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: -1;
    content: "About";
  }
  .text_center {
    text-align: center;
  }
  .txt_50 {
    font-size: 50px;
  }
  .pd_80 {
    padding-top: 80px;
  }
  .about_center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 100px;
  }
  .about_center2{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 100px;
  }
  .about_secpadding {
    padding-top: 100px;
  }
  .about_info2 {
    text-align: center;
  }
  .sec1_item h2{
    padding-bottom: 10px;
  }
  .about_info h1 {
    font-size: 34px;
    font-weight: bold;
  }
  .about_info p {
    padding-top: 20px;
  }
  .about_batu {
    width: 50px;
    height: 50px;
  }
  .about_flex img {
    width: 120px;
  }
  .about_batu::before {
    margin-top: 30px;
    transform: rotate(45deg) translateY(1px);
    content: '';
    width: 48px;
    display: block;
    height: 1px;
    background-color: black;
  }
  .about_batu::after {
    transform: rotate(-45deg) translateY(-1px);
    content: '';
    width: 48px;
    display: block;
    height: 1px;
    background-color: black;
  }
  .about_flex {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .about_tslogo{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
  }
  .about_tslogo img {
    width: 500px;
    padding-top: 30px;
  }
  .about_omjlogo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
  }
  .about_logosize {
    width: 500px;
  }
  .about_omjlogo img {
    width: 100%;
    display:block;
  }
  .about_go {
    float: right;
    color: rgba(46, 181, 221);
  }
  .about_sec02_flex {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }
  .about_sec02_flex h1 {
    font-weight: bold;
    font-size: 32px;
  }
  .txt_padding {
    padding-top: 30px;
  }
  .about_sec2_pro {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 30px;
  }
  .about_sec2_pro img {
    width: 150px;
    height: 170px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .about_omjlogo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    padding-top: 30px;
  }
  .about_logosize {
    width: 100px;
  }
  .about_omjlogo img {
    width: 100%;
    display:block;
  }
  .about_info p{
    padding-top: 10px;
  }
  .about_secpadding {
    padding-top: 15px;
  }
  .about_wrap {
    width: 85%;
    margin: 0 auto;
  }
  .about .about_sec1 .about_sec1_main {
    width: 100%;
  }
  .about .about_sec1 .about_sec1_main::before {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    opacity: 0.07;
    position: absolute;
    margin-left: -10rem;
    line-height: 0.8;
    font-size: 22rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: -1;
    content: "About";
  }
  .about_center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
  .about_tslogo{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
  }
  .about_tslogo img {
    width: 100px;
  }
  .about_batu {
    height: 13px;
  }
  .about_flex {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .about_flex img {
    width: 60px;
  }
  .about_batu::before {
    margin-top: 10px;
    transform: rotate(45deg) translateY(1px);
    content: '';
    width: 24px;
    display: block;
    height: 1px;
    background-color: black;
  }
  .about_batu::after {
    transform: rotate(-45deg) translateY(-1px);
    content: '';
    width: 24px;
    display: block;
    height: 1px;
    background-color: black;
  }
}
.about .about_sec1 .about_sec1_main .sec1_item {
  margin-bottom: 5rem;
}
.about .about_sec1 .about_sec1_main .sec1_item h2 {
  color: #202042;
}
.about .about_sec1 .about_sec1_main .sec1_item p {
  margin: 0;
}
.about .about_sec1 .about_sec1_main .sec1_item:last-child {
  margin-bottom: 0;
  padding: 5rem 0;
}
.about .about_sec1 .about_sec1_main .sec1_item:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  background: rgba(46, 181, 221, 0.1);
  height: 100%;
  margin-top: -5rem;
  z-index: -1;
}
@media (min-width: 769px) {
  .about .about_sec1 .about_sec1_main .sec1_item:last-child::before {
    width: calc(50% + 15rem);
  }
}
@media (max-width: 768px) {
  .about .about_sec1 .about_sec1_main .sec1_item:last-child::before {
    right: 0;
  }
}
@media (min-width: 769px) {

}
.about .about_sec2 h2 {
  color: #202042;
  margin-bottom: 3rem;
}
.about .about_sec2 .sec2_content {
  align-items: center;
  position: relative;
}
@media (min-width: 769px) {
  .about .about_sec2 .sec2_content::before {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    opacity: 0.07;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 0.8;
    font-size: 22rem;
    z-index: -1;
    content: "Message";
  }
}
@media (min-width: 769px) {
  .about .about_sec2 .sec2_content p {
    width: calc(50% + 5rem);
  }
}
.about .about_sec2 .sec2_content .sec2_content_name {
  text-align: center;
}
@media (min-width: 769px) {
  .about .about_sec2 .sec2_content .sec2_content_name {
    width: calc(50% - 25rem);
  }
}
@media (max-width: 768px) {
  .about .about_sec2 .sec2_content .sec2_content_name {
    width: 60%;
    margin: 2rem auto 0;
  }
  .about .about_sec2 .sec2_content .sec2_content_name img {
    border-radius: 10px;
  }
}
.about .about_sec2 .sec2_content .sec2_content_name .name_text {
  line-height: normal;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .about .about_sec2 .sec2_content .sec2_content_name .name_text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.about .about_sec3 p {
  margin: 0;
}
.about .about_sec3 table {
  width: 100%;
}
@media (max-width: 768px) {
  .about .about_sec3 table {
    line-height: 1.8;
  }
}
.about .about_sec3 table tr {
  border-bottom: 1px solid #707070;
  padding: 2rem 1rem;
}
@media (min-width: 769px) {
  .about .about_sec3 table tr {
    display: flex;
  }
}
@media (max-width: 768px) {
  .about .about_sec3 table tr {
    display: block;
    padding: 1rem;
  }
}
@media (min-width: 769px) {
  .about .about_sec3 table tr th {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .about .about_sec3 table tr th {
    margin-bottom: 0.5rem;
  }
  .about .about_sec3 table tr th,
  .about .about_sec3 table tr th td {
    display: block;
    width: 100%;
  }
}
.about .about_sec3 iframe {
  width: 100%;
  margin-top: 8rem;
}
.service .under_tit h1 {
  background: url(../images/under/service_main.jpg);
  background-size: cover;
}
.service .service_sec2 .sec2_tit p {
  margin: 0;
}
.service .service_sec2 .sec2_content #group1,
.service .service_sec2 .sec2_content #group2,
.service .service_sec2 .sec2_content #group3 {
  padding: 5rem 0;
}
.service .service_sec2 .sec2_content .sec2_content_item {
  position: relative;
  background: #fff;
  box-shadow: 3px 3px 25px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 769px) {
  .service .service_sec2 .sec2_content .sec2_content_item {
    width: calc(900px - 10rem);
    padding: 5rem;
    margin: 0 auto;
  }
  .service .service_sec2 .sec2_content .sec2_content_item::after {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    opacity: 0.07;
    position: absolute;
    line-height: 0.8;
    font-size: 22rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: -1;
  }
}
@media (max-width: 768px) {
  .service .service_sec2 .sec2_content .sec2_content_item {
    padding: 2rem;
  }
  .service .service_sec2 .sec2_content .sec2_content_item img {
    width: 50%;
    display: block;
    margin: 2rem auto 0;
  }
  .service .service_sec2 .sec2_content .sec2_content_item.group2 {
    margin: 4rem 0;
  }
}
.service .service_sec2 .sec2_content .sec2_content_item .item_tit {
  margin-bottom: 2rem;
}
.service .service_sec2 .sec2_content .sec2_content_item .item_tit h3 {
  line-height: normal;
  color: #202042;
}
.service .service_sec2 .sec2_content .sec2_content_item .item_tit h3 span {
  display: block;
  opacity: 0.3;
}
.service
  .service_sec2
  .sec2_content
  .sec2_content_item
  .sec2_content_item_under {
  margin-top: 3rem;
}
.service
  .service_sec2
  .sec2_content
  .sec2_content_item
  .sec2_content_item_under
  h4 {
  color: #202042;
}
@media (max-width: 768px) {
  .service
    .service_sec2
    .sec2_content
    .sec2_content_item
    .sec2_content_item_under
    h4 {
    margin-bottom: 2rem;
  }
}
@media (min-width: 769px) {
  .service
    .service_sec2
    .sec2_content
    .sec2_content_item
    .sec2_content_item_under
    .coustom_main {
    display: inline-block;
    width: calc(50% - 2rem);
    vertical-align: text-top;
  }
  .service
    .service_sec2
    .sec2_content
    .sec2_content_item
    .sec2_content_item_under
    .coustom_main:nth-child(2) {
    margin-left: 1.5rem;
  }
}
@media (max-width: 768px) {
  .service
    .service_sec2
    .sec2_content
    .sec2_content_item
    .sec2_content_item_under
    .coustom_main:nth-child(2) {
    margin: 1.5rem 0;
  }
  .service
    .service_sec2
    .sec2_content
    .sec2_content_item
    .sec2_content_item_under
    .coustom_main
    img {
    width: 100%;
  }
}
.service
  .service_sec2
  .sec2_content
  .sec2_content_item
  .sec2_content_item_under
  .coustom_main
  p {
  width: 100%;
  margin: 0.5rem 0;
}
@media (min-width: 769px) {
  .service
    .service_sec2
    .sec2_content
    .sec2_content_item
    .sec2_content_item_under
    .item_content {
    width: calc(100% - 8rem);
    margin: 2rem auto 0;
  }
}

.service .service_sec2 .sec2_content .sec2_content_item .btn_main {
  margin: 5rem auto 0;
}
.service .service_sec3 {
  background: #f3f6fa;
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .service .service_sec3 {
    padding: 5rem 0;
  }
}
.service .service_sec3 .sec3_content {
  position: relative;
}
@media (min-width: 769px) {
  .service .service_sec3 .sec3_content {
    align-items: stretch;
  }
  .service .service_sec3 .sec3_content::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 3rem;
    width: 100%;
    background: #ffc100;
  }
}
.service .service_sec3 .sec3_content .sec3_item {
  background: #fff;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 3px 3px 14px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 769px) {
  .service .service_sec3 .sec3_content .sec3_item {
    width: calc(20% - 3rem);
  }
}
@media (max-width: 768px) {
  .service .service_sec3 .sec3_content .sec3_item {
    padding: 2rem 1rem;
    width: calc(50% - 1rem);
    margin: 2rem 0;
  }
}
.service .service_sec3 .sec3_content .sec3_item h3 {
  color: #202042;
  border-bottom: 1px solid #347f80;
  display: inline-block;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .service .service_sec3 .sec3_content .sec3_item h3 {
    padding: 0 1rem 0.5rem 1rem;
  }
}
.service .service_sec3 .sec3_content .sec3_item p {
  line-height: normal;
  margin-top: 1.5rem;
  color: #4d4d4d;
}
.service .service_sec3 .sec3_content .sec3_item:last-child,
.service .service_sec3 .sec3_content .sec3_item:nth-child(4) {
  padding: 5rem 2rem;
}
@media (max-width: 768px) {
  .service .service_sec3 .sec3_content .sec3_item:last-child,
  .service .service_sec3 .sec3_content .sec3_item:nth-child(4) {
    padding: 5rem 2rem;
  }
}

.member {
  line-height: 38px;
}
.member .under_tit h1 {
  background: url(../images/under/service_main.jpg);
  background-size: cover;
}
.member .member_sec1 h2 {
  color: #202042;
  text-align: center;
}
@media (max-width: 768px) {
  .member .member_sec1 h2 {
    margin-bottom: 2rem;
  }
}
@media (min-width: 769px) {
  .member .member_sec1 li {
    width: calc(25% - 3rem);
    margin-right: 4rem;
  }
  .member .member_sec1 li:nth-child(4n) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .member .member_sec1 li {
    width: calc(50% - 2rem);
    margin-right: 1rem;
  }
  .member .member_sec1 li:nth-child(2n) {
    margin-right: 0;
  }
}
.member .member_sec1 li .post-thumb {
  position: relative;
  padding-top: 100%;
  height: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 769px) {
  .member .member_sec1 li .post-thumb div,
  .member .member_sec1 li .post-thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: unset;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .member .member_sec1 li .post-thumb {
    position: relative;
    padding-top: 100%;
    height: 0;
    border-radius: 50%;
    overflow: hidden;
  }
  .member .member_sec1 li .post-thumb div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
  }
  .member .member_sec1 li .post-thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: unset;
    height: 100%;
  }
}
.member .member_sec1 li .custom_text {
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .member .member_sec1 li .custom_text {
    line-height: normal;
  }
}
.member .member_sec1 li .custom_text .date {
  color: #707070;
  opacity: 0.63;
  line-height: normal;
  display: block;
}
@media (max-width: 768px) {
  .member .member_sec1 li .custom_text .date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.member .member_sec1 li .custom_text .custom_tit {
  margin: 0;
}
@media (max-width: 768px) {
  .member .member_sec1 li .custom_text .custom_tit {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.recruit {
  line-height: 38px;
}
.recruit .under_tit h1 {
  background: url(../images/under/recruit_main.jpg);
  background-size: cover;
}
.recruit .recruit_sec1 {
  position: relative;
}
.recruit .recruit_sec1::after {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  opacity: 0.07;
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0.8;
  font-size: 22rem;
  z-index: -1;
  content: "Recruit";
}
.recruit .recruit_sec1 h2 {
  color: #202042;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}
.recruit .recruit_sec1 h2 span {
  display: inline-block;
  padding: 0 2rem;
}
.recruit .recruit_sec2 {
  position: relative;
}
@media (min-width: 769px) {
  .recruit .recruit_sec2 .recruit_sec2_content .content_text {
    width: calc(50% + 8rem);
  }
}
.recruit .recruit_sec2 .recruit_sec2_content .content_text h3 {
  color: #202042;
  line-height: normal;
  margin-bottom: 2rem;
}
.recruit .recruit_sec2 .recruit_sec2_content .content_text h3 span {
  display: block;
  opacity: 0.4;
}
@media (min-width: 769px) {
  .recruit .recruit_sec2 .recruit_sec2_content img {
    width: calc(50% - 20rem);
  }
}
.recruit .recruit_sec2 .recruit_sec2_content table {
  width: 100%;
  margin: 10rem 0;
}
.recruit .recruit_sec2 .recruit_sec2_content table tr {
  border-top: 1px solid #707070;
  display: block;
  padding: 2rem 1rem;
}
@media (min-width: 769px) {
  .recruit .recruit_sec2 .recruit_sec2_content table tr th {
    width: 200px;
  }
}
.privacy .under_tit h1 {
  background: url(../images/under/service_main.jpg);
  background-size: cover;
}
.privacy h3 {
  margin: 5rem 0 3rem;
}
.contact .under_tit h1 {
  background: url(../images/under/service_main.jpg);
  background-size: cover;
}
.contact .contact_content .form_table {
  margin: auto;
  font-weight: 500;
}
@media (min-width: 769px) {
  .contact .contact_content .form_table {
    width: 80%;
  }
}
.contact .contact_content .form_table dt {
  vertical-align: top;
  display: inline-block;
  position: relative;
}
@media (min-width: 769px) {
  .contact .contact_content .form_table dt {
    width: 230px;
  }
}
@media (max-width: 768px) {
  .contact .contact_content .form_table dt {
    display: block;
    text-align: left;
  }
}
.contact .contact_content .form_table dt .note {
  position: absolute;
  right: -1rem;
  top: 0.5rem;
  background: red;
  border-radius: 5px;
  color: #fff;
  padding: 0.1rem 1rem;
  display: inline-block;
}
.contact .contact_content .form_table dd {
  margin-bottom: 2rem;
  display: inline-block;
}
@media (min-width: 769px) {
  .contact .contact_content .form_table dd {
    margin-left: 2rem;
    width: calc(100% - 260px);
  }
}
.contact .contact_content .form_table dd input,
.contact .contact_content .form_table dd select,
.contact .contact_content .form_table dd textarea {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border-radius: 5px;
}
@media (min-width: 769px) {
  .contact .contact_content .form_table dd input,
  .contact .contact_content .form_table dd select,
  .contact .contact_content .form_table dd textarea {
    width: calc(100% - 2rem);
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contact .contact_content .form_table dd input,
  .contact .contact_content .form_table dd select,
  .contact .contact_content .form_table dd textarea {
    font-size: 16px;
    width: calc(100% - 2rem);
  }
}
.contact .contact_content .form_table dd .your-message textarea {
  padding: 0.7rem 1.2rem !important;
  width: calc(100% - 2.4rem);
}
.contact .contact_content .form_table dd.select {
  position: relative;
}
.contact .contact_content .form_table dd.select::after {
  content: "";
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 1.3rem;
}
.contact .contact_content .form_table dd.select select {
  width: 100%;
}
.contact .contact_content .check {
  text-align: center;
}
.contact .contact_content .check input[type="checkbox"] {
  display: none;
}
.contact
  .contact_content
  .check
  input[type="checkbox"]:checked
  + .mwform-checkbox-field-text::after {
  opacity: 1;
}
.contact .contact_content .check .mwform-checkbox-field-text {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}
.contact .contact_content .check .mwform-checkbox-field-text::after,
.contact .contact_content .check .mwform-checkbox-field-text::before {
  content: "";
  display: block;
  position: absolute;
}
.contact .contact_content .check .mwform-checkbox-field-text::before {
  background-color: #fff;
  border-radius: 0;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.contact .contact_content .check .mwform-checkbox-field-text::after {
  opacity: 0;
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
  top: 7px;
  left: 5px;
}
.contact .contact_content .btnWrap {
  text-align: center;
  margin: 5rem 0 0;
}
.contact .contact_content .btnWrap input[type="submit"] {
  width: auto;
  display: inline-block;
  background: #202042;
  border-radius: 30px;
  padding: 0.3rem 1.5rem 0.4rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact .contact_content .btnWrap input[type="submit"]:hover {
  background: #fff;
}
.contact .contact_content .mw_wp_form_preview dl {
  margin: 0;
}
.contact .contact_content .mw_wp_form_preview dt {
  border-right: 1px solid #707070;
  padding: 1rem 0;
}
.contact .contact_content .mw_wp_form_preview dt .note {
  display: none;
}
.contact .contact_content .mw_wp_form_preview .check {
  display: none;
}
.contact .contact_content .mw_wp_form_preview .btnWrap .back {
  background: #fff;
  margin-right: 2rem;
}
.contact .contact_content .mw_wp_form_preview .btnWrap .back:hover {
  color: #fff;
}
.list {
  position: relative;
}
.list .coustom_main {
  margin: 2rem 1rem;
}
@media (min-width: 769px) {
  .list .coustom_main {
    width: calc(25% - 2rem);
  }
}
@media (max-width: 768px) {
  .list .coustom_main {
    margin: 4rem 0;
    display: block;
  }
}
.list .coustom_main .post-thumb {
  height: 150px;
}
@media (max-width: 768px) {
  .list .coustom_main .post-thumb {
    height: 200px;
  }
}
.list .coustom_main .post-thumb div,
.list .coustom_main .post-thumb img {
  height: 150px;
}
@media (max-width: 768px) {
  .list .coustom_main .post-thumb div,
  .list .coustom_main .post-thumb img {
    height: 200px;
  }
}
@media (min-width: 769px) {
  .list .coustom_main:nth-child(4n + 1) {
    margin-right: 0;
  }
  .list .coustom_main:nth-child(4n) {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .list .coustom_main:first-child {
    margin-top: 0;
  }
  .list .coustom_main:last-child {
    margin-bottom: 0;
  }
}
.list.works .under_tit h1 {
  background: url(../images/under/service_main.jpg);
  background-size: cover;
}
.list.works .work_category {
  text-align: center;
}
.list.works .work_category ul {
  margin: 0;
}
.list.works .work_category li {
  display: inline-block;
  margin: 0 1.5rem;
}
.list.works .work_category li a {
  font-weight: 600;
  padding: 0.5rem 2rem 0.6rem;
  display: inline-block;
  border-radius: 30px;
  letter-spacing: 3px;
}
.list.works .work_category li a.current {
  color: #fff;
}
.list.works .work_category li.web a {
  border-color: #e3c627;
  color: #e3c627;
}
.list.works .work_category li.web a.current {
  background: #e3c627;
  color: #fff;
}
.list.works .work_category li.event a {
  border-color: #1d7f00;
  color: #1d7f00;
}
.list.works .work_category li.event a.current {
  background: #1d7f00;
  color: #fff;
}
.single .under_tit {
  padding: 5rem 0;
}
.single .under_tit h1 {
  padding: 0 0 2rem 0;
}
.single .under_tit h1 span {
  margin-bottom: 2rem;
}
.single.work_single .work_single_main {
  position: relative;
  margin-top: 15rem;
}
.single.work_single .work_single_main .work_single_main_pc {
  background: url(../images/pc_img.png);
  background-size: cover;
  padding: 2.8rem 3.2rem 17.3rem 3.2rem;
  position: relative;
}
@media (min-width: 769px) {
  .single.work_single .work_single_main .work_single_main_pc {
    width: 696px;
    height: 575px;
  }
}
@media (min-width: 769px) {
  .single.work_single .work_single_main .work_single_main_pc img {
    width: 633px;
    position: absolute;
    z-index: -1;
  }
}
.single.work_single .work_single_main .work_single_main_mv_position {
  position: absolute;
  right: 0;
  bottom: 0;
}
.single.work_single
  .work_single_main
  .work_single_main_mv_position
  .work_single_main_mv {
  background: url(../images/mv_img.png);
  background-size: cover;
  padding: 6.9rem 3.1rem 5.8rem 2.8rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .single.work_single
    .work_single_main
    .work_single_main_mv_position
    .work_single_main_mv {
    width: 260px;
    height: 488px;
  }
}
@media (min-width: 769px) {
  .single.work_single
    .work_single_main
    .work_single_main_mv_position
    .work_single_main_mv
    img {
    width: 202px;
    position: absolute;
    z-index: -1;
  }
}
@media (min-width: 1071px) and (max-width: 1300px) {
  .single.work_single .work_single_main .work_single_main_pc {
    padding: 2.8rem 3.2rem 17.3rem 3.2rem;
    width: 636px;
    height: 523px;
  }
  .single.work_single .work_single_main .work_single_main_pc img {
    width: 573px;
  }
}
@media (min-width: 769px) and (max-width: 1070px) {
  .single.work_single .work_single_main .work_single_main_pc {
    width: 550px;
    height: 455px;
    padding: 2.3rem 2.6rem 15.2rem 2.9rem;
  }
  .single.work_single .work_single_main .work_single_main_pc img {
    width: 496px;
  }
  .single.work_single
    .work_single_main
    .work_single_main_mv_position
    .work_single_main_mv {
    width: 230px;
    height: 433px;
    padding: 6rem 2.5rem 5.3rem 2.3rem;
  }
  .single.work_single
    .work_single_main
    .work_single_main_mv_position
    .work_single_main_mv
    img {
    width: 181px;
  }
}
.single.work_single .single_pan .web {
  color: #e3c627;
}
.single.work_single .single_pan .event {
  color: #1d7f00;
}
.single.work_single .under_tit .wrap_min {
  align-items: center;
}
.single.work_single .under_tit .wrap_min .work_web_btn {
  padding: 1.5rem 4rem;
  border-radius: 30px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.single.work_single .under_tit .wrap_min .work_web_btn a {
  color: #fff;
}
.single.work_single .under_tit .wrap_min .work_web_btn:hover {
  background: #fff;
}
.single.work_single .work_single_content .content_item .sec_tit {
  margin-bottom: 5rem;
}
.single.work_single .work_single_content .content_item h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.single .news_single .under_tit h1 {
  padding-bottom: 0;
}
.single .news_single .single_under {
  text-align: center;
}
.btn_main {
  background: #202042;
  border-radius: 30px;
  width: 250px;
  text-align: center;
  font-weight: 700;
  padding: 1rem 0;
  margin-top: 8rem;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.2);
}
.btn_main a {
  color: #fff;
}
.btn_main:hover {
  background: #fff;
}
.post-thumb {
  display: grid;
  overflow: hidden;
  position: relative;
  height: 200px;
}
.post-thumb::after,
.post-thumb::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  margin: auto;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  opacity: 0;
}
.post-thumb::before {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post-thumb::after {
  color: #fff;
  content: "Learn more";
  font-size: 22px;
  font-weight: 700;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.post-thumb div {
  display: inline-block;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 200px;
}
.post-thumb img {
  object-fit: cover;
  position: absolute;
  height: 200px;
  width: 100%;
}
.coustom_main,
.top_post_content {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
.coustom_main div,
.coustom_main img,
.top_post_content div,
.top_post_content img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -moz-transform: scale(1);
}
.coustom_main .custom_text,
.top_post_content .custom_text {
  line-height: normal;
  padding: 0 1rem;
  margin-top: 1rem;
}
.coustom_main .custom_text .division,
.top_post_content .custom_text .division {
  font-size: 14px;
  font-size: 1.4rem;
}
.coustom_main .custom_text p,
.top_post_content .custom_text p {
  margin: 0;
  font-weight: 500;
}
.coustom_main:hover .post-thumb,
.top_post_content:hover .post-thumb {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
}
.coustom_main:hover .post-thumb::after,
.coustom_main:hover .post-thumb::before,
.top_post_content:hover .post-thumb::after,
.top_post_content:hover .post-thumb::before {
  opacity: 1;
}
.coustom_main:hover .post-thumb div,
.coustom_main:hover .post-thumb img,
.top_post_content:hover .post-thumb div,
.top_post_content:hover .post-thumb img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.coustom_main .top_category,
.top_post_content .top_category {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0 0.8rem 0.1rem 0.8rem;
  border-radius: 0 0 8px 0;
  background: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
}
.coustom_main .top_category.web,
.top_post_content .top_category.web {
  border-color: #e3c627;
  color: #e3c627;
}
.coustom_main .top_category.event,
.top_post_content .top_category.event {
  border-color: #1d7f00;
  color: #1d7f00;
}
@media (max-width: 768px) {
  .custom_text .ttl,
  .top_post_text_content .ttl {
    font-size: 1.5rem;
  }
}
.scrolldown1 {
  position: absolute;
  right: -4rem;
  bottom: 10px;
  height: 100px;
}
@media (max-width: 768px) {
  .scrolldown1 {
    right: 3rem;
    bottom: 70px;
  }
}
.scrolldown1 span {
  position: absolute;
  left: -15px;
  top: -15px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .scrolldown1 span {
    color: #fff;
  }
}
.scrolldown1 span::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 15px;
  width: 1px;
  height: 30px;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@media (max-width: 768px) {
  .scrolldown1 span::after {
    background: #fff;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 60px;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}
