/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}

@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}

@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}

@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}

/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}

.oneTxt.is-ready {
  visibility: visible;
}

.oneTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: calc(100% - 100px);
  height: 70px;
  padding: 0 50px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
}

.header .logo {
  width: 175px;
  position: relative;
}

.header .logo .link {
  position: absolute;
  inset: 0;
}

.header .navi_wrap .hamburger_icon {
  display: none;
  position: relative;
  z-index: 99;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.header .navi_wrap .hamburger_icon.active span:nth-of-type(1) {
  top: 18px;
  left: 10px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 60%;
}

.header .navi_wrap .hamburger_icon.active span:nth-of-type(2) {
  opacity: 0;
}

.header .navi_wrap .hamburger_icon.active span:nth-of-type(3) {
  top: 30px;
  left: 10px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

.header .navi_wrap .hamburger_icon span {
  display: inline-block;
  width: 60%;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: #333;
}

.header .navi_wrap .hamburger_icon span:nth-last-of-type(1) {
  top: 15px;
}

.header .navi_wrap .hamburger_icon span:nth-last-of-type(2) {
  top: 23px;
}

.header .navi_wrap .hamburger_icon span:nth-last-of-type(3) {
  top: 31px;
}

.header .navi_wrap .navi .navi_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navi_wrap .navi .navi_container .navi_container_item {
  margin-right: 30px;
}

.header .navi_wrap .navi .navi_container .navi_container_item:last-child {
  margin-right: 0;
}

.header .navi_wrap .navi .navi_container .navi_container_item:last-child .link {
  display: block;
}

.header .navi_wrap .navi .navi_container .navi_container_item .link {
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.header .navi_wrap .navi .navi_container .navi_container_item.navi_container_contact .link {
  color: #fff;
  background: #FF9300;
  padding: 10px 25px;
  border: 2px solid #FF9300;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header .navi_wrap .navi .navi_container .navi_container_item.navi_container_contact .link:hover {
  background: #fff;
  color: #FF9300;
}

@media (max-width: 767px) {
  .header {
    width: calc(100% - 30px);
    padding: 0 15px;
  }
  .header .navi_wrap .hamburger_icon {
    display: block;
  }
  .header .navi_wrap .navi {
    width: 100%;
    height: 50vh;
    background-color: #fff;
    position: fixed;
    z-index: 98;
    top: 70px;
    right: -150%;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .header .navi_wrap .navi.panelactive {
    right: 0;
  }
  .header .navi_wrap .navi .navi_container {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .header .navi_wrap .navi .navi_container .navi_container_item {
    margin-right: 0;
  }
  .header .navi_wrap .navi .navi_container .navi_container_item.navi_container_contact .link {
    color: #333;
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  background: #00895E;
  padding: 80px 0 20px;
}

.footer .f_inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.footer .f_inner .logo {
  width: 340px;
  margin: auto;
}

.footer .f_inner .f_content {
  margin-top: 65px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}

.footer .f_inner .f_content .left_content {
  color: #fff;
}

.footer .f_inner .f_content .left_content .address {
  line-height: 1.4rem;
}

.footer .f_inner .f_content .left_content .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.footer .f_inner .f_content .left_content .tel:last-child {
  margin-top: 5px;
}

.footer .f_inner .f_content .left_content .tel span {
  display: block;
  font-size: 14px;
  color: #00784A;
  font-weight: 300;
  padding: 1.5px 6px;
  border-radius: 30px;
  background: #fff;
}

.footer .f_inner .f_content .right_content {
  position: relative;
}

.footer .f_inner .f_content .right_content::before {
  content: '';
  width: 1px;
  height: calc(100% + 20px);
  background: #fff;
  position: absolute;
  top: -10px;
  left: -50px;
}

.footer .f_inner .f_content .right_content .btns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(min(100%, 340px), 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 10px 20px;
}

.footer .f_inner .f_content .right_content .btns .btn {
  max-width: 350px;
  padding: 10px 30px;
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
}

.footer .f_inner .f_content .right_content .btns .btn .link {
  position: absolute;
  inset: 0;
}

.footer .f_inner .f_content .right_content .btns .btn .icon {
  width: 25px;
}

.footer .f_inner .f_content .right_content .btns .btn .text {
  color: #fff;
}

.footer .f_inner .copyRight {
  text-align: center;
  color: #fff;
  margin-top: 80px;
  font-size: 10px;
}

@media (max-width: 767px) {
  .footer {
    padding: 50px 0 20px;
  }
  .footer .f_inner .logo {
    width: 240px;
  }
  .footer .f_inner .f_content {
    margin-top: 45px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
  .footer .f_inner .f_content .right_content::before {
    display: none;
  }
  .footer .f_inner .f_content .right_content .btns .btn {
    padding: 10px 20px;
  }
  .footer .f_inner .copyRight {
    margin-top: 50px;
  }
}

/* ---------------------------------------------------------
    sidebar
--------------------------------------------------------- */
.sidebar {
  width: 330px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  -webkit-transition: right 0.35s ease;
  transition: right 0.35s ease;
}

.sidebar .link {
  position: absolute;
  inset: 0;
}

.sidebar.hide {
  right: -330px;
}

main {
  margin-bottom: 160px;
}

@media (max-width: 767px) {
  main {
    margin-bottom: 100px;
  }
}

/* ---------------------------------------------------------
    mainvisual
--------------------------------------------------------- */
.sect_mainVisual {
  width: 100%;
  height: 100vh;
}

.sect_mainVisual .mainVisual {
  width: calc(100% - 100px);
  height: calc(100% - 115px);
  background: url(../images/top/main_visual.jpg) no-repeat center/cover;
  position: absolute;
  top: 75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sect_mainVisual .mainVisual .page_title {
  width: 185px;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .sect_mainVisual .mainVisual {
    width: calc(100% - 40px);
    height: calc(100% - 95px);
  }
  .sect_mainVisual .mainVisual .page_title {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

/* ---------------------------------------------------------
    introduction
--------------------------------------------------------- */
.sect_introduction {
  padding: 110px 0 80px;
  background: url(../images/top/introduction_bg.png) no-repeat center/cover;
  position: relative;
}

.sect_introduction .introduction .sect_title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.sect_introduction .introduction .sect_title .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sect_introduction .introduction .sect_title .bottom span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 2px 30px;
  background: #fff;
  color: #00784a;
}

.sect_introduction .introduction .sentence {
  font-size: 16px;
  color: #fff;
  line-height: 2.5rem;
  margin-top: 50px;
}

.sect_introduction .introduction .btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  width: 185px;
  height: 35px;
  margin-top: 50px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sect_introduction .introduction .btn:hover {
  background: #fff;
  color: #333;
}

.sect_introduction .introduction .btn .link {
  position: absolute;
  inset: 0;
}

.sect_introduction .photos {
  position: absolute;
  top: 120px;
  right: 0;
  z-index: 2;
}

.sect_introduction .photos .photo_1 {
  width: 35vw;
}

.sect_introduction .photos .photo_2 {
  width: 19vw;
  position: absolute;
  bottom: -30%;
  left: -20%;
}

.sect_introduction .company_name {
  width: 840px;
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 1;
}

@media (max-width: 1023px) {
  .sect_introduction {
    padding: 75px 0 55px;
  }
  .sect_introduction .introduction .sect_title {
    font-size: 32px;
    color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .sect_introduction .introduction .sect_title .bottom span {
    padding: 1px 20px;
  }
  .sect_introduction .introduction .sentence {
    font-size: 14px;
    line-height: 2rem;
    margin-top: 35px;
    text-align: center;
  }
  .sect_introduction .introduction .btn {
    display: block;
    margin: 35px auto 0;
  }
  .sect_introduction .photos {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    margin: 50px 0 0 auto;
    top: 0;
  }
  .sect_introduction .photos .photo_1 {
    width: 60vw;
  }
  .sect_introduction .photos .photo_2 {
    width: 50vw;
    position: static;
    margin: -5vw 0 0 -30vw;
  }
  .sect_introduction .company_name {
    width: 90%;
    right: 0;
    top: 10px;
    z-index: 1;
  }
}

/* ---------------------------------------------------------
    business
--------------------------------------------------------- */
.sect_business {
  margin-top: 80px;
}

.sect_business .business .sect_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
}

.sect_business .business .sect_title::before {
  content: '';
  width: 100%;
  height: 2px;
  background: #00784a;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: -1;
}

.sect_business .business .sect_title .en {
  font-size: 72px;
  font-weight: 600;
  color: #00895e;
}

.sect_business .business .sect_title .ja {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  padding: 0 5px;
  margin-left: 45px;
  background: #fff;
}

.sect_business .business .contents {
  margin-top: 70px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(min(100%, 280px), 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 40px;
}

.sect_business .business .contents .card .photo {
  width: 100%;
  position: relative;
  z-index: -1;
}

.sect_business .business .contents .card .business_name h3 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  width: 230px;
  padding: 10px 0 0 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  margin-top: -20px;
}

.sect_business .business .contents .card .business_name h3 .en {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #00784a;
}

.sect_business .business .contents .card .sentence {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5rem;
  padding-left: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .sect_business {
    margin-top: 50px;
  }
  .sect_business .business .sect_title {
    gap: 10px;
  }
  .sect_business .business .sect_title .en {
    font-size: 52px;
  }
  .sect_business .business .sect_title .ja {
    font-size: 14px;
  }
  .sect_business .business .contents {
    margin-top: 50px;
  }
  .sect_business .business .contents .card .business_name h3 {
    padding: 10px 0 0 20px;
  }
  .sect_business .business .contents .card .sentence {
    padding-left: 20px;
  }
}

/* ---------------------------------------------------------
    recruit
--------------------------------------------------------- */
.sect_recruit {
  margin-top: 80px;
  position: relative;
}

.sect_recruit::before {
  content: '';
  width: 85vw;
  height: 515px;
  background: url(../images/top/recruit_bg.jpg) no-repeat center/cover;
  position: absolute;
  top: 160px;
  left: 0;
  z-index: -2;
}

.sect_recruit .inner .recruit .sect_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
}

.sect_recruit .inner .recruit .sect_title::before {
  content: '';
  width: 100%;
  height: 2px;
  background: #00784a;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: -1;
}

.sect_recruit .inner .recruit .sect_title .en {
  font-size: 72px;
  font-weight: 600;
  color: #00895e;
}

.sect_recruit .inner .recruit .sect_title .ja {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  padding: 0 5px;
  margin-left: 45px;
  background: #fff;
}

.sect_recruit .inner .recruit .content {
  padding: 150px 0 160px;
  margin-top: 60px;
}

.sect_recruit .inner .recruit .content .photo_sp {
  display: none;
}

.sect_recruit .inner .recruit .content .copy_sp {
  display: none;
}

.sect_recruit .inner .recruit .content .sentence {
  color: #fff;
  line-height: 2.5rem;
}

.sect_recruit .inner .recruit .content .btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  width: 185px;
  height: 35px;
  margin-top: 50px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sect_recruit .inner .recruit .content .btn:hover {
  background: #fff;
  color: #333;
}

.sect_recruit .inner .recruit .content .btn .link {
  position: absolute;
  inset: 0;
}

.sect_recruit .photo {
  width: 48vw;
  max-width: 655px;
  position: absolute;
  bottom: 4vw;
  right: 0;
}

.sect_recruit .copy {
  width: 100px;
  position: absolute;
  top: 55px;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 1023px) {
  .sect_recruit::before {
    display: none;
  }
  .sect_recruit .inner .recruit .content {
    padding: 0 0 80px;
    margin-top: 60px;
    position: relative;
  }
  .sect_recruit .inner .recruit .content::before {
    content: '';
    width: calc(100% + 20px);
    height: 100%;
    background: url(../images/top/recruit_bg.jpg) no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .sect_recruit .inner .recruit .content .photo_sp {
    display: block;
    width: calc(100% + 20px);
    margin: 0 -20px 0 auto;
  }
  .sect_recruit .inner .recruit .content .copy_sp {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 24px;
    color: #fff;
    line-height: 2rem;
    text-align: center;
    margin-top: 40px;
  }
  .sect_recruit .inner .recruit .content .sentence {
    margin-top: 20px;
    text-align: center;
  }
  .sect_recruit .inner .recruit .content .btn {
    display: block;
    margin: 50px auto 0;
  }
  .sect_recruit .photo {
    display: none;
  }
  .sect_recruit .copy {
    display: none;
  }
}

@media (max-width: 767px) {
  .sect_recruit {
    margin-top: 50px;
  }
  .sect_recruit .inner .recruit .sect_title {
    gap: 10px;
  }
  .sect_recruit .inner .recruit .sect_title .en {
    font-size: 52px;
  }
  .sect_recruit .inner .recruit .sect_title .ja {
    font-size: 14px;
  }
  .sect_recruit .inner .recruit .content {
    padding: 0 0 50px;
    margin-top: 40px;
  }
  .sect_recruit .inner .recruit .content .sentence {
    font-size: 14px;
    line-height: 2rem;
    padding: 0 10px;
  }
  .sect_recruit .inner .recruit .content .btn {
    margin-top: 30px;
  }
}

/* ---------------------------------------------------------
    map
--------------------------------------------------------- */
.map {
  margin-top: 80px;
}

.map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 110 / 45;
}

@media (max-width: 767px) {
  .map {
    margin-top: 50px;
  }
}

/* ---------------------------------------------------------
    map
--------------------------------------------------------- */
.sect_contact {
  margin-top: 200px;
}

.sect_contact .contact {
  width: 100%;
  padding: 130px 20px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../images/top/contact_bg.jpg) no-repeat center/cover;
  position: relative;
}

.sect_contact .contact .sect_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sect_contact .contact .sect_title::before {
  content: '';
  width: 110px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 1;
}

.sect_contact .contact .sect_title::after {
  content: '';
  width: 110px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 5px;
  z-index: 1;
}

.sect_contact .contact .sect_title .en {
  font-size: 72px;
  font-weight: 600;
  color: #00895e;
}

.sect_contact .contact .sect_title .ja {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.sect_contact .contact .sentence {
  color: #fff;
  line-height: 2rem;
  text-align: center;
}

.sect_contact .contact .btn {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  color: #fff;
  border: 1px solid #FF9300;
  background: #FF9300;
  width: 265px;
  height: 45px;
  margin: 30px auto 0;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sect_contact .contact .btn:hover {
  background: #fff;
  color: #FF9300;
}

.sect_contact .contact .btn .link {
  position: absolute;
  inset: 0;
}

@media (max-width: 767px) {
  .sect_contact {
    margin-top: 200px;
  }
  .sect_contact .contact {
    width: 100%;
    padding: 90px 15px 50px;
  }
  .sect_contact .contact .sect_title {
    top: -35px;
    gap: 10px;
  }
  .sect_contact .contact .sect_title::before {
    width: 70px;
  }
  .sect_contact .contact .sect_title::after {
    width: 70px;
  }
  .sect_contact .contact .sect_title .en {
    font-size: 52px;
  }
  .sect_contact .contact .sect_title .ja {
    font-size: 14px;
  }
  .sect_contact .contact .sentence {
    line-height: 2rem;
    text-align: center;
  }
}
/*# sourceMappingURL=top.css.map */