@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap&subset=japanese");
@import url("https://use.fontawesome.com/releases/v5.6.1/css/all.css");
/* animation -----------------------------------------*/
@-webkit-keyframes nav-action {
  100% {
    height: 0;
  }
}
@keyframes nav-action {
  100% {
    height: 0;
  }
}
/*===============
 Base Style
===============*/
.pc {
  display: block;
}
@media all and (max-width: 992px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}
@media all and (max-width: 992px) {
  .tb {
    display: block;
  }
}

.sp {
  display: none;
}
@media all and (max-width: 520px) {
  .sp {
    display: block;
  }
}

a {
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 1;
}
a:hover {
  opacity: .7;
}
a.tel_link {
  pointer-events: none;
}
@media all and (max-width: 992px) {
  a.tel_link {
    pointer-events: unset;
  }
}

@media all and (max-width: 992px) {
  img {
    width: 100%;
  }
}
/*===============
 Common
===============*/
body {
  width: 100%;
  height: 100%;
  word-wrap: break-word;
  color: #333b3a;
}
@media all and (max-width: 520px) {
  body {
    font-size: 14px;
  }
}

#wrapper {
  position: relative;
  overflow: hidden;
}

main {
  padding-top: 112px;
  position: relative;
}
@media all and (max-width: 992px) {
  main {
    padding-top: 56px;
  }
}

header {
  width: 100%;
  height: 112px;
  background: #fff;
  position: fixed;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px #ffc0cb solid;
}
@media all and (max-width: 992px) {
  header {
    height: 56px;
  }
}
header h1 {
  padding-left: 1rem;
}
@media all and (max-width: 992px) {
  header h1 {
    padding-left: 0.75rem;
  }
}
header h1 .logo {
  width: 320px;
}
@media all and (max-width: 1024px) {
  header h1 .logo {
    width: 270px;
  }
}
@media all and (max-width: 992px) {
  header h1 .logo {
    width: 216px;
  }
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  height: 100%;
}
nav .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav .navbar-nav li {
  font-size: 1.1111111111vw;
  white-space: nowrap;
}
@media all and (min-width: 1200px) {
  nav .navbar-nav li {
    font-size: 1rem;
  }
}
nav .navbar-nav li:not(:last-child) a:first-line {
  color: #ffc0cb;
}
nav .navbar-nav li.nav_company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav .navbar-nav li.nav_company span {
  position: relative;
  padding-right: 30px;
}
nav .navbar-nav li.nav_company span::before {
  content: '';
  background: url(../img/icon_blank.svg) no-repeat top left;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
nav .navbar-nav li a {
  padding: 10px 30px;
}
nav .nav_contact {
  background: #333b3a;
  color: #fff;
  padding: 10px 30px;
  font-size: 1.1111111111vw;
}
@media all and (min-width: 1200px) {
  nav .nav_contact {
    font-size: 1rem;
  }
}
nav .nav_contact span {
  position: relative;
  padding-right: 30px;
}
nav .nav_contact span::before {
  content: '';
  background: url(../img/icon_blank_w.svg) no-repeat top left;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 992px) {
  nav {
    position: fixed;
    width: 100vw;
    top: 56px;
    left: 0;
    background: #fff;
    background-image: radial-gradient(#f1f1f1 10%, transparent 11%), radial-gradient(#f1f1f1 10%, transparent 11%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    height: calc(100vh - 56px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 1rem;
    display: none;
    overflow-y: auto;
  }
  nav .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  nav .navbar-nav li {
    font-size: 1rem;
  }
  nav .navbar-nav li:not(:last-child) a:first-line {
    font-size: .7rem;
  }
  nav .navbar-nav li.nav_company a {
    padding: 1.5rem 0;
  }
  nav .navbar-nav li.nav_company span {
    position: relative;
    padding-right: 30px;
  }
  nav .navbar-nav li.nav_company span::before {
    content: '';
    background: url(../img/icon_blank.svg) no-repeat top left;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  nav .navbar-nav li a {
    width: 100%;
    padding: 1rem 0;
  }
  nav .nav_contact {
    background: transparent;
    color: #333b3a;
    width: 100%;
    padding: 1.5rem 0;
    font-size: 1rem;
  }
  nav .nav_contact span {
    position: relative;
    padding-right: 30px;
  }
  nav .nav_contact span::before {
    content: '';
    background: url(../img/icon_blank.svg) no-repeat top left;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.navbar-btn {
  display: none;
}
@media all and (max-width: 992px) {
  .navbar-btn {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    -webkit-transition: all .4s;
    transition: all .4s;
    height: 100%;
    width: 56px;
  }
  .navbar-btn a {
    display: block;
    margin: 17px auto;
    position: relative;
    width: 25px;
    height: 20px;
  }
  .navbar-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333b3a;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  .navbar-btn span:nth-of-type(1) {
    top: 0;
  }
  .navbar-btn span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .navbar-btn span:nth-of-type(3) {
    bottom: 0;
  }
  .navbar-btn.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .navbar-btn.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: nav-action .8s forwards;
            animation: nav-action .8s forwards;
  }
  .navbar-btn.active span:nth-of-type(3) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}

footer {
  background: #333b3a;
  position: relative;
  color: #fff;
}
@media all and (max-width: 992px) {
  footer {
    text-align: center;
  }
}
footer a {
  color: #fff;
}

.ft_group {
  max-width: 1440px;
  padding: 2rem 1rem;
  margin: 0 auto;
}
.ft_group .ft_logo {
  max-width: 144px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
@media all and (max-width: 992px) {
  .ft_group .ft_logo {
    margin: 0 auto 20px;
  }
}
.ft_group .ft_logo img {
  width: 100%;
}
.ft_group .totec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
@media all and (max-width: 992px) {
  .ft_group .totec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
.ft_group .company_name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  border-bottom: 1px #666 solid;
  padding-bottom: 30px;
}
@media all and (max-width: 992px) {
  .ft_group .company_name {
    padding-bottom: 20px;
  }
}
.ft_group .company_name dt {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.ft_group .company_name dd {
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 992px) {
  .ft_group .company_name dd {
    display: none;
  }
}
.ft_group .company_name dd .area {
  margin-right: 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11%;
          flex: 0 0 11%;
}
.ft_group .totec_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 992px) {
  .ft_group .totec_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ft_group .totec_group dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}
@media all and (max-width: 992px) {
  .ft_group .totec_group dt {
    margin-bottom: 20px;
  }
}
.ft_group .totec_group dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
}
.ft_group .totec_group .group_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 992px) {
  .ft_group .totec_group .group_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ft_group .totec_group .group_list li {
  text-align: center;
  font-size: 11px;
  margin: 5px 5px 16px 5px;
}
@media all and (max-width: 992px) {
  .ft_group .totec_group .group_list li {
    margin: 0 auto 20px;
    width: 100%;
  }
}
.ft_group .totec_group .group_list li figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ft_group .totec_group .group_list li img {
  max-height: 32px;
  width: auto;
}
.ft_group .totec_group .group_list li.jc img {
  max-height: 26px;
}
.ft_group .totec_group .group_list span {
  display: block;
}
.ft_group .totec_group .group_list span.kerning {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.ft_policy {
  background: #333;
}
.ft_policy .ft_policy_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 992px) {
  .ft_policy .ft_policy_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
  }
}
.ft_policy .ft_policy_list li {
  text-align: center;
  border-left: 1px solid #666;
}
@media all and (max-width: 992px) {
  .ft_policy .ft_policy_list li {
    width: 50%;
    font-size: .7rem;
    border: none;
  }
  .ft_policy .ft_policy_list li:last-child {
    width: 100%;
  }
}
.ft_policy .ft_policy_list li a {
  padding: 0 50px;
}
@media all and (max-width: 992px) {
  .ft_policy .ft_policy_list li a {
    padding: 10px 0;
  }
}
.ft_policy .ft_policy_list li:first-child {
  border: none;
}

.ft_policy_in {
  max-width: 1440px;
  padding: 1rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 12px;
}
@media all and (max-width: 992px) {
  .ft_policy_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ft_policy_in .copyright {
    font-size: .65rem;
    padding: 10px 0 0;
    border-top: 1px solid #666;
  }
}

.page_top {
  width: 56px;
  height: 56px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #ffc0cb;
  z-index: 9;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
.page_top.show {
  opacity: 0.75;
  pointer-events: auto;
}
.page_top.fix {
  position: absolute;
  top: 0;
}
.page_top img {
  width: 40px;
}
