@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*------------------------------
# 共通項目
-------------------------------*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
  background-color: #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
  }
}

section {
  margin-top: 160px;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  section {
    padding: 0 20px;
    margin-top: 100px;
  }
}

.inner {
  margin: 0 auto;
  max-width: 1170px;
}

img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

.section__title-wrap {
  text-align: center;
  position: relative;
}
.section__title-wrap span {
  font-size: 20px;
  color: #E77341;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}

.section__title {
  font-size: 32px;
  display: inline-block;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section__title {
    letter-spacing: 2px;
    line-height: 1;
    font-size: 20px;
  }
}
.section__title::before {
  position: absolute;
  content: "";
  bottom: 33px;
  width: 72px;
  height: 3px;
  background-color: #E77341;
  left: 50%;
  transform: translateX(-50%);
  top: 42px;
}
@media screen and (max-width: 767px) {
  .section__title::before {
    top: 25px;
    height: 2px;
  }
}
.section__title span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #E77341;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .section__title span {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

.btn {
  max-width: 270px;
  background-color: #E77341;
  text-align: center;
  margin-top: 30px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn {
    margin: 30px auto 0;
  }
}

.btn__link {
  display: block;
  text-align: center;
  padding: 12px 10px;
  color: #fff;
  transition: all 0.3s ease 0s;
  letter-spacing: 1px;
  position: relative;
}
.btn__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transition: 0.5s;
  background: linear-gradient(90deg, rgb(228, 66, 65), rgb(228, 116, 32));
}
.btn__link::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  background-color: #5cd7da;
}
.btn__link:hover {
  transition: all 0.3s ease 0s;
}
.btn__link:hover::before {
  opacity: 0;
}

/*------------------------------
# header
-------------------------------*/
.header {
  height: 80px;
  padding: 0 70px;
  position: fixed;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 1000;
  transition: 0.8s;
  line-height: 80px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header {
    padding: 0 40px;
  }
}

.header__inner {
  display: flex;
  max-width: 1300px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header__inner {
    display: none;
  }
}

.logo__link {
  display: flex;
  align-items: center;
}

.logo__img {
  width: 65px;
}
@media screen and (max-width: 767px) {
  .logo__img {
    width: 67px;
  }
}

.company__name {
  font-size: 32px;
  font-weight: 600;
  margin-left: 10px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .company__name {
    flex: 0 0 172px;
    font-size: 21px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .company__name {
    flex: 0 0 172px;
    font-size: 21px;
  }
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
}

.nav__item {
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .nav__item {
    margin-left: 0;
    text-align: center;
    border-bottom: dotted 1px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .nav__item {
    margin-left: 0;
    text-align: center;
    border-bottom: dotted 1px;
  }
}
.nav__item:first-child {
  margin-left: 0;
}

.nav__link {
  font-weight: 400;
}

/*------------ハンバーガーメニュー----------------*/
.sp__header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__header__inner {
    height: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .sp__header__inner {
    display: none;
  }
}

.drawer-icon {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 30px;
  transition: transform 0.5s ease 0s;
  z-index: 150;
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer-icon {
    top: 30px;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
  background-color: #000;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
  background-color: #000;
}

.drawer-icon__bars {
  height: 20px;
  width: 26px;
  position: relative;
}

.drawer-icon__bar1 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.drawer-icon__bar2 {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.drawer-icon__bar3 {
  position: absolute;
  top: 16px;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.top-sp-nav {
  background-color: #fff;
  z-index: 200;
  width: 225px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(230px);
  transition: transform 0.5s ease 0s;
  margin-top: 64px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top-sp-nav {
    width: 350px;
    transform: translateX(355px);
    padding: 30px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .top-sp-nav {
    padding: 30px 10px 0;
  }
}
.top-sp-nav.is-active {
  transform: translateX(0);
}

.nav-logo {
  text-align: center;
  margin-top: 13px;
}

.sp__tab-nav-logo {
  padding-top: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sp__tab-nav-logo {
    padding-top: 70px;
    margin-top: 13px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__tab-nav-logo a img {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .sp__tab-nav-logo a img {
    max-width: 180px;
  }
}

.drawer-background {
  margin-top: 80px;
}
.drawer-background.is-active {
  opacity: 0.6;
  background-color: #353434;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.8;
}

/*------------ハンバーガーメニュー----------------*/
/*------------------------------
# cover
-------------------------------*/
.cover {
  margin-top: 0;
  height: calc(100vh - 70px);
  padding: 0;
  margin-top: 80px;
  position: relative;
}

.cover__inner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: inherit;
}

.cover__img {
  height: calc(100vh - 70px);
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1200px) {
  .pc__tab-none {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pc__tab-none {
    display: none;
  }
}

.cover__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 40px;
  color: #fff;
  width: 100%;
  padding: 0 70px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cover__catch {
    width: 100%;
    padding: 0 20px;
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .cover__catch {
    width: 100%;
    padding: 0 20px;
  }
}
.cover__catch h2 {
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .cover__catch h2 {
    font-size: 24px;
  }
}

/*------------------------------
# message
-------------------------------*/
.message {
  padding: 160px 70px 60px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 0 20px;
    padding-top: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .message {
    padding: 0 20px;
    padding-top: 120px;
  }
}

.message__img {
  width: 205px;
  height: 205px;
  margin: 60px auto 0;
}
.message__img img {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
}

.message__text {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: left;
  letter-spacing: 1.1px;
}

/*------------------------------
# service
-------------------------------*/
.service {
  background: #f5f5f5;
  margin-top: 60px;
  padding: 60px 70px;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 60px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service {
    padding: 60px 20px;
  }
}

.service__item-container {
  margin-top: 60px;
}

.service__item {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
.service__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .service__item {
    display: block;
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service__item {
    margin-top: 30px;
  }
}

.service__item-left,
.service__item-right {
  width: 47.863%;
}
@media screen and (max-width: 767px) {
  .service__item-left,
.service__item-right {
    width: 100%;
    margin-right: 0;
  }
}

.service__item-left {
  margin-right: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__item-left {
    height: 220px;
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service__item-left {
    height: 260px;
    margin-right: 30px;
  }
}
.service__item-left .service__item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service__item-left img {
  height: 348px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .service__item-left img {
    height: 220px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service__item-left img {
    height: 260px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .service__item-left-tab {
    width: 100%;
    margin-right: 0;
  }
}

.service__item-title {
  display: inline-block;
  position: relative;
}
.service__item-title h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .service__item-title h3 {
    font-size: 18px;
  }
}
.service__item-title h3::before {
  position: absolute;
  content: "";
  bottom: 33px;
  width: 100%;
  height: 3px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
}

.service__item-right {
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__item-right {
    margin-top: 30px;
  }
}
.service__item-right img {
  height: 348px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__item-right h3 {
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__item-right h3 {
    font-size: 18px;
  }
}
.service__item-right h3::before {
  position: absolute;
  content: "";
  bottom: 33px;
  width: 100%;
  height: 3px;
  background-color: #E77341;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
}
.service__item-right p {
  margin-top: 30px;
}

.service__item-title-right {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service__item-title-right h3 {
  color: #fff;
}
.service__item-title-right h3::before {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .service__item-right-sp {
    height: 220px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service__item-right-sp {
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-right-sp img {
    height: 220px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service__item-right-sp img {
    height: 260px;
  }
}

@media screen and (max-width: 767px) {
  .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .sp__service__item-right {
    margin-top: 0;
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .tab__service__item-right {
    width: 100%;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .tab__service__item-right {
    line-height: 1.4;
  }
}

/*------------------------------
# company
-------------------------------*/
.company {
  margin-top: 0;
  padding-top: 60px;
}

.company__inner {
  max-width: 900px;
}

.company__list-container {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .company__list-container {
    margin-top: 50px;
  }
}

.company__list-item {
  display: flex;
  align-items: center;
  position: relative;
}
.company__list-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 165px;
  background-color: #E77341;
  z-index: 10;
}
.company__list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #D4D5D4;
}
@media screen and (max-width: 767px) {
  .company__list-item {
    display: block;
  }
}

.company__list-item-left {
  flex: 0 0 165px;
  padding: 33px 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .company__list-item-left {
    padding: 10px 0 0 0;
    border-bottom: none;
    font-weight: 600;
    font-size: 18px;
  }
}

.company__list-item-right {
  width: 100%;
  padding: 33px 30px 33px 30px;
}
@media screen and (max-width: 767px) {
  .company__list-item-right {
    padding: 5px 0 10px 0;
    font-size: 18px;
  }
}

/*------------------------------
# contact
-------------------------------*/
.contact {
  background-color: #F5F5F5;
  margin-top: 60px;
  padding: 60px 70px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 20px;
  }
}

.contact__inner {
  max-width: 750px;
}

.sub__contact-text {
  margin-top: 20px;
}

.sub__contact-text-inner {
  max-width: 750px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.sub__contact-text-inner p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .sub__contact-text-inner p {
    font-size: 18px;
  }
}

.form__title {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .form__title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .sp__form__title {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__form__title {
    display: none;
  }
}

.contact__form_inner {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.-submit {
  cursor: pointer;
  font-size: 20px;
}

.contact__item {
  margin-top: 40px;
}
.contact__item:first-child {
  margin-top: 0;
}

.contact__item-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 17px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__item-title {
    font-size: 18px;
  }
}

.contact__list {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .contact__list {
    margin-top: 60px;
  }
}

input[type=text],
input[type=radio],
input[type=checkbox],
input[type=submit],
input[type=tel],
input[type=email],
textarea,
select:focus {
  border: 1px solid #000;
}

input[type=text],
input[type=radio],
input[type=checkbox],
input[type=submit],
input[type=tel],
input[type=email],
textarea,
select {
  border: 1px solid #000;
  padding: 12px 16px;
  background-color: #fff;
}

.contact__item-inline {
  width: 46px;
  display: inline-block;
  text-align: center;
  background-color: #E77341;
  color: #fff;
  padding-bottom: 2px;
  margin-left: 20px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

textarea {
  height: 180px;
}

.submit__btn {
  text-align: center;
  margin: 65px auto 0;
}
.submit__btn::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .submit__btn {
    margin-top: 25px;
  }
}

.-submit {
  width: 100%;
  background-color: transparent;
  text-align: center;
  margin-top: 30px;
  position: relative;
  border: none;
}

/*------------------------------
# footer
-------------------------------*/
.footer {
  padding: 20px 70px;
}

.copyright {
  font-size: 16px;
  text-align: center;
}