@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Oswald:wght@200..700&display=swap");
:root {
  --pc-header: 10rem;
  --sp-header: 7.2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Meiryo", sans-serif;
  color: #000;
  font-size: 1.6rem;
  background: #fff;
  font-weight: 500;
  line-height: 1.5;
  font-feature-settings: "palt";
}

.ft_e {
  font-family: "Montserrat", sans-serif;
}

.ft_m {
  font-family: "Noto Sans JP", sans-serif;
}

.m_ft {
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

em, b, i, span, strong, small {
  letter-spacing: inherit;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.evt {
  visibility: hidden;
}

.c_anchor {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: -10rem;
}

@media screen and (max-width: 767px) {
  .c_anchor {
    margin-top: -6.5rem;
  }
}

.c_btn a {
  text-align: center;
  display: inline-block;
  letter-spacing: .06em;
  font-weight: bold;
  background: #003c8a url(../img/arrow-right01.svg) no-repeat calc(100% - 2.5rem) center/0.9rem;
  color: #fff;
  width: 26rem;
  font-size: 1.8rem;
  line-height: 7rem;
}

@media screen and (max-width: 767px) {
  .c_btn a {
    line-height: 6.5rem;
    width: 21.8rem;
    background-position: calc(100% - 1.5rem);
  }
}

.c_more {
  text-align: right;
}

.c_more a {
  display: inline-block;
  background: url(../img/btn-link01.svg) no-repeat right center/contain;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .06em;
  line-height: 5.2rem;
  color: #003c8a;
  padding-right: 7rem;
}

.c_more a:hover {
  background-image: url(../img/btn-link01b.svg);
  opacity: 1;
}

.c_ttl {
  font-size: 4rem;
  margin-bottom: 4rem;
  font-weight: bold;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .08em;
}

@media screen and (max-width: 767px) {
  .c_ttl {
    font-size: 2.9rem;
    margin-bottom: 3rem;
  }
}

.c_ttl i {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
  color: #003c8a;
  letter-spacing: .14em;
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}

@media screen and (max-width: 767px) {
  .c_ttl i {
    font-size: 1.5rem;
  }
}

.c_ttl i:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003c8a;
  width: .5em;
  height: .5em;
  border-radius: 50%;
  left: 0;
}

.c_ttl em {
  color: #003c8a;
}

.c_ttl b {
  font-size: 1.375em;
  letter-spacing: 0;
  line-height: 1;
  margin-right: .1em;
  font-weight: inherit;
}

.c_ttl .ft_e {
  font-weight: 600;
  margin-bottom: .5em;
}

.c_tbl2 {
  border-top: solid 1px #dcdcdc;
}

.c_tbl2 th {
  text-align: left;
  width: 12em;
  background: #f5f5f5;
}

.c_tbl2 tr > * {
  padding: 2em 1.6em;
  border-bottom: solid 1px #dcdcdc;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .c_tbl2 tr > * {
    float: left;
    width: 100%;
    padding: 1em 1em;
  }
}

.u_inner {
  width: 120rem;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .u_inner {
    width: auto;
    margin: 0 3rem;
  }
}

html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1380px) {
  html {
    font-size: calc(100vw * 10 / 1380);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 545);
  }
}

@media screen and (min-width: 768px) {
  .u_tel {
    pointer-events: none;
  }
}

/*--------------------------------------------------------------
Layout/PageBase
--------------------------------------------------------------*/
:where(#header, #footer) a {
  display: block;
}

#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 66;
  height: 8.5rem;
  transition: background .3s;
}

body.fixed #header {
  background: #fff;
  transition-property: background, height;
}

@media screen and (min-width: 768px) {
  body.fixed #header {
    height: 10rem;
  }
}

@media screen and (max-width: 767px) {
  #header {
    height: 6.5rem;
  }
  body.open #header {
    background: #fff;
  }
}

.h_logo {
  position: absolute;
  top: 1.4rem;
  left: 2.1rem;
}

@media screen and (min-width: 768px) {
  .h_logo {
    left: 5rem;
    top: 3.5rem;
    transition: top .2s;
  }
  body.fixed .h_logo {
    top: 3rem;
  }
}

.h_logo a {
  background: url(../img/h-logo.svg) no-repeat center top/contain;
}

body.fixed .h_logo a {
  background-image: url(../img/logo.svg);
}

@media screen and (max-width: 767px) {
  body.open .h_logo a {
    background-image: url(../img/logo.svg);
  }
}

.h_logo img {
  width: 24.1rem;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .h_logo img {
    width: 17.6rem;
  }
}

.h_btn {
  display: flex;
}

@media screen and (min-width: 768px) {
  .h_btn {
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .h_btn {
    flex-direction: column;
    gap: 1rem;
    margin: 10rem 3rem;
  }
}

.h_btn a {
  height: 8.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: height .2s;
}

@media screen and (min-width: 768px) {
  body.fixed .h_btn a {
    height: 10rem;
  }
}

@media screen and (max-width: 767px) {
  .h_btn a {
    height: 7rem;
  }
}

.h_btn .tel {
  background: #fff;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .h_btn .tel {
    width: 24rem;
    display: block;
    text-align: right;
    padding-right: 2em;
    padding-top: 1em;
    transition: padding .2s;
  }
  body.fixed .h_btn .tel {
    padding-top: 1.5em;
  }
}

@media screen and (max-width: 767px) {
  .h_btn .tel {
    gap: .6em;
    color: #003c8a;
    border: solid 1px #003c8a;
  }
}

.h_btn .tel em {
  font-size: 2.8rem;
  letter-spacing: .02em;
  font-weight: 500;
  background: url(../img/h-tel.png) no-repeat left center/1.9rem;
  padding-left: .8em;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 767px) {
  .h_btn .tel em {
    font-size: 2.5rem;
    background-image: url(../img/ico-tel01b.png);
  }
}

.h_btn .tel small {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  text-align: right;
  margin-top: .8em;
}

@media screen and (max-width: 767px) {
  .h_btn .tel small {
    font-size: 1.3rem;
  }
}

.h_btn .mail {
  background: #003c8a;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .12em;
}

@media screen and (min-width: 768px) {
  .h_btn .mail {
    width: 17rem;
  }
}

.h_btn .mail:hover {
  background: #002f6c;
  opacity: 1;
}

.h_nav {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .h_nav {
    color: #fff;
    display: flex;
    font-size: 1.5rem;
    justify-content: flex-end;
    gap: 2.5em;
    margin-right: 46rem;
    line-height: 1;
  }
  body.fixed .h_nav {
    color: #000;
  }
  .h_nav a {
    display: block;
  }
  .h_nav a span {
    display: none;
  }
  .h_nav .sp {
    display: none;
  }
  .h_nav li {
    padding-top: 4rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1500px) {
  .h_nav {
    margin-right: 43rem;
    gap: 1em;
  }
}

@media screen and (max-width: 767px) {
  .h_nav {
    font-weight: bold;
  }
  .h_nav li {
    border-bottom: solid 1px #dcdcdc;
  }
  .h_nav a {
    padding: 1.5em 3rem;
    display: block;
    font-size: 1.9rem;
    background: url(../img/arrow-right02.svg) no-repeat calc(100% - 3rem) center/0.7rem;
  }
  .h_nav i {
    display: none;
  }
}

.h_nav a:hover {
  opacity: 1;
  color: inherit;
}

@media screen and (min-width: 768px) {
  #toggle_menu {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .h_menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 8rem;
    height: 6.5rem;
    cursor: pointer;
  }
  .h_menu i {
    background: url(../img/h-menu.svg) no-repeat 50%/contain;
  }
  body.fixed .h_menu i {
    background-image: url(../img/h-menu-fixed.svg);
  }
  .h_menu > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s;
    width: 3.6rem;
  }
  .h_menu .close {
    opacity: 0;
    width: 3.4rem;
  }
  body.open .h_menu .open {
    opacity: 0;
  }
  body.open .h_menu .close {
    opacity: 1;
  }
  #toggle_menu {
    display: none;
    position: fixed;
    top: 6.5rem;
    left: 0;
    width: 100%;
    overflow-y: auto;
    height: calc(100% - 6.5rem);
    background: #fff;
    padding: 0 0 3rem;
  }
  body.open {
    overflow-y: hidden;
  }
}

.f_contact {
  background: #003c8a;
  color: #fff;
  padding: 7rem 0 8.5rem;
}

@media screen and (min-width: 768px) {
  .f_contact {
    padding: 10rem 0;
  }
  .f_contact .u_inner {
    display: flex;
    justify-content: space-between;
  }
  .f_contact .u_inner ul {
    width: 36rem;
  }
}

.f_contact dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 4.4rem;
  white-space: nowrap;
  margin-bottom: .7em;
}

@media screen and (max-width: 767px) {
  .f_contact dt {
    font-size: 3rem;
  }
}

.f_contact dt i {
  background: #fff;
  font-size: 2.5rem;
  letter-spacing: .08em;
  border-radius: 3em;
  padding: .2em 1em .3em;
  color: #003c8a;
  vertical-align: .2em;
  margin-left: .6em;
}

@media screen and (max-width: 767px) {
  .f_contact dt i {
    font-size: 1.7rem;
  }
}

.f_contact dd {
  line-height: 2.125;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .f_contact dd {
    line-height: 1.875;
  }
}

.f_contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .f_contact ul {
    margin-top: 4rem;
  }
}

.f_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 8rem;
  border: solid 1px #fff;
}

.f_contact a:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .f_contact a {
    height: 7.3rem;
  }
}

.f_contact .tel {
  line-height: 1;
  gap: 1em;
}

.f_contact .tel:hover {
  color: #003c8a;
  background: #fff;
}

.f_contact .tel:hover em {
  background-image: url(../img/ico-tel01b.png);
}

.f_contact .tel em {
  font-size: 2.8rem;
  letter-spacing: .02em;
  font-weight: 500;
  background: url(../img/ico-tel01.png) no-repeat left center/1.9rem;
  padding-left: .8em;
  font-family: "Oswald", sans-serif;
  transition: background .2s ease-in;
}

@media screen and (max-width: 767px) {
  .f_contact .tel em {
    font-size: 2.4rem;
  }
}

.f_contact .tel small {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  text-align: right;
  margin-top: .8em;
}

@media screen and (max-width: 767px) {
  .f_contact .tel small {
    font-size: 1.3rem;
  }
}

.f_contact .mail {
  background: #fff;
  color: #003c8a;
  font-size: 1.8rem;
  font-weight: bold;
}

.f_contact .mail:hover {
  color: #fff;
  background: #003c8a;
}

#gototop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 60;
}

#gototop img {
  width: 8rem;
}

@media screen and (max-width: 767px) {
  #gototop img {
    width: 6rem;
  }
}

#footer {
  background: #f5f5f5;
  padding: 9rem 0 10rem;
}

@media screen and (max-width: 767px) {
  #footer {
    padding: 9rem 1.5rem 0;
  }
  #footer .u_inner {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .f_row {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .f_row .right {
    width: 58rem;
  }
}

.f_logo img {
  width: 24.1rem;
}

@media screen and (max-width: 767px) {
  .f_logo img {
    width: 24.9rem;
  }
}

.f_info {
  font-size: 1.5rem;
  line-height: 2.66;
  margin: 3.5rem 0 4rem;
}

@media screen and (max-width: 767px) {
  .f_info {
    font-size: 1.3rem;
    line-height: 1.69;
    margin: 2rem 0 6rem;
  }
}

@media screen and (max-width: 767px) {
  .f_mark {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.f_mark img {
  width: 13rem;
}

.f_nav {
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .f_nav {
    column-count: 2;
    border-top: solid 1px #dcdcdc;
    padding: 5rem 0 0;
    color: #3c3c3c;
    font-size: 1.5rem;
    padding-right: 8rem;
    margin-bottom: 8rem;
  }
  .f_nav li {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .f_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 0;
  }
  .f_nav li {
    width: 14rem;
  }
  .f_nav li:nth-child(4n + 1) {
    width: 20rem;
  }
  .f_nav li:nth-child(4n + 0) {
    width: 10rem;
  }
}

.f_nav a {
  display: block;
  letter-spacing: .12em;
}

@media screen and (max-width: 767px) {
  .f_nav a {
    padding: .5em 0;
  }
}

.f_nav a:hover {
  color: inherit;
}

.f_copy {
  font-size: 1.2rem;
  color: #a0a0a0;
  letter-spacing: .06em;
}

@media screen and (min-width: 768px) {
  .f_copy {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .f_copy {
    font-size: 1rem;
    background: #e6e6e6;
    line-height: 6rem;
    margin: 0 -4.5rem;
    padding-left: 4.5rem;
  }
}

/*--------------------------------------------------------------
Project
--------------------------------------------------------------*/
.top_main {
  position: relative;
  font-weight: bold;
}

.top_main .slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  min-height: 60rem;
}

@media screen and (max-width: 767px) {
  .top_main .slide img {
    height: 100svh;
  }
}

.top_main dt {
  font-size: 5rem;
  line-height: 1.4;
  margin-bottom: .5em;
}

@media screen and (max-width: 767px) {
  .top_main dt {
    font-size: 3.4rem;
  }
}

.top_main dd {
  font-size: 2rem;
  line-height: 2.1;
  letter-spacing: .14em;
}

@media screen and (max-width: 767px) {
  .top_main dd {
    font-size: 1.7rem;
  }
}

.top_main .row {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 6rem;
  z-index: 2;
  color: #fff;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top_main .row {
    flex-direction: column;
    padding: 0 3rem 6rem;
    gap: 4rem;
  }
}

.top_main .row ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}

@media screen and (min-width: 768px) {
  .top_main .row ul {
    width: 55.8rem;
  }
}

@media screen and (max-width: 767px) {
  .top_main .row ul {
    gap: .7rem;
  }
}

.top_main .row p {
  width: calc(100% - 7rem);
  font-size: 1.8rem;
  letter-spacing: .06em;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .top_main .row p {
    width: calc(100% - 6rem);
    font-size: 1.7rem;
  }
}

.top_main .row p i {
  font-size: 1.9166em;
  letter-spacing: -.02em;
  line-height: 1;
}

.top_main .row p.a {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .top_main .row p.a {
    font-size: 1.1rem;
  }
}

.top_main .row p.b {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .top_main .row p.b {
    font-size: 1.3rem;
  }
}

.top_main .row p small {
  font-size: 1.1rem;
  display: block;
  margin-top: .2em;
}

@media screen and (max-width: 767px) {
  .top_main .row p small {
    font-size: 1rem;
  }
}

.top_main .row li {
  border-radius: 1rem;
  background: #003c8a;
  display: flex;
  height: 9.6rem;
  align-items: center;
  padding-left: 2rem;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top_main .row li {
    padding-left: 1rem;
    height: 8.4rem;
  }
}

.top_main .row figure {
  text-align: center;
  width: 5.8rem;
}

.top_main .row img {
  height: 5.2rem;
}

@media screen and (max-width: 767px) {
  .top_main .row img {
    height: 4.1rem;
  }
}

.top_lead {
  font-size: 2rem;
  font-weight: bold;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #113c72;
  color: #fff;
  gap: 1em;
}

@media screen and (max-width: 767px) {
  .top_lead {
    font-size: 1.7rem;
  }
}

.top_lead i {
  text-decoration: underline;
  text-underline-offset: .2em;
  text-decoration-thickness: 1px;
}

.top_lead img {
  width: 3rem;
}

@media screen and (max-width: 767px) {
  .top_lead img {
    width: 4.4rem;
  }
}

.top_about {
  background: url(../img/about-bg-sp.jpg) no-repeat left top/cover;
  padding: 9rem 0 72rem;
}

@media screen and (min-width: 768px) {
  .top_about {
    background: #fafafa;
    height: 102.5rem;
    position: relative;
    padding: 15rem 0 0;
  }
  .top_about:before {
    content: '';
    position: absolute;
    background: url(../img/about-bg.jpg) no-repeat left top/cover;
    width: calc(50% + 5rem);
    height: 100%;
    right: 0;
    top: 0;
    clip-path: polygon(38rem 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.top_about p {
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .top_about p {
    line-height: 1.875;
  }
}

.top_about .c_btn {
  margin-top: 6rem;
}

.product_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem 2px;
}

@media screen and (max-width: 767px) {
  .product_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6rem .8rem;
  }
}

.product_list p {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 1em;
}

.product_list p i {
  background: #003c8a;
  font-size: 1.2rem;
  padding: .2em 1em;
  display: inline-block;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: .6em;
}

@media screen and (max-width: 767px) {
  .product_list p i {
    font-size: 1.3rem;
  }
}

.product_list a:hover {
  color: inherit;
}

.top_products {
  background: #f3f3f3;
  padding: 8.5rem 0;
}

@media screen and (min-width: 768px) {
  .top_products {
    height: 104.5rem;
    position: relative;
    z-index: 0;
    padding: 15rem 0;
  }
  .top_products:before {
    content: '';
    position: absolute;
    background: #fafafa;
    width: calc(50% + 53rem);
    height: 100%;
    right: 0;
    top: 0;
    clip-path: polygon(48rem 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
  }
}

.top_products .row {
  display: flex;
  margin-bottom: 7rem;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top_products .row {
    flex-direction: column;
    margin-bottom: 5.5rem;
  }
  .top_products .row br {
    display: none;
  }
}

.top_products .row p {
  line-height: 1.875;
}

@media screen and (min-width: 768px) {
  .top_products .row p {
    line-height: 2.1;
    font-size: 1.5rem;
    text-align: right;
  }
}

.top_products .box {
  padding: 9rem 0 8rem 8rem;
  background: #fff;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .top_products .box {
    padding: 4rem 0 7rem 3.5rem;
  }
}

.top_products .box:before {
  content: '';
  position: absolute;
  width: 50vw;
  height: 100%;
  top: 0;
  left: 50%;
  z-index: -1;
  background: #fff;
}

.top_products .c_more {
  margin-top: 5.5rem;
}

.top_img img {
  width: 100%;
}

.top_strength {
  margin: 15.5rem 0;
}

@media screen and (max-width: 767px) {
  .top_strength {
    margin: 9rem 0;
  }
}

.top_strength .c_ttl {
  text-align: center;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .top_strength .c_ttl {
    margin-bottom: 2rem;
  }
}

.top_strength .c_ttl i {
  padding: 0;
}

.top_strength .c_ttl i:before {
  content: none;
}

.top_strength .lead {
  text-align: center;
  line-height: 2.125;
  margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
  .top_strength .lead {
    margin-bottom: 6rem;
  }
}

.top_strength ul {
  display: flex;
  gap: 1px;
}

@media screen and (max-width: 767px) {
  .top_strength ul {
    flex-direction: column;
    gap: 3rem;
    margin: 0 3rem;
  }
}

.top_strength li {
  background: #f5f5f5;
  flex: 1;
}

.top_strength li img {
  width: 100%;
}

.top_strength li p {
  line-height: 2.125;
}

@media screen and (max-width: 767px) {
  .top_strength li p {
    line-height: 1.875;
  }
}

.top_strength .ttl {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  letter-spacing: .06em;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .top_strength .ttl {
    font-size: 2.7rem;
  }
}

.top_strength .ttl i {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #003c8a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .3em;
  letter-spacing: .06em;
}

.top_strength .box {
  padding: 5rem 6rem 8.5rem;
}

@media screen and (max-width: 767px) {
  .top_strength .box {
    padding: 4rem 3.5rem;
  }
}

.top_equipment {
  margin-bottom: 19rem;
}

@media screen and (max-width: 767px) {
  .top_equipment {
    margin-bottom: 8.5rem;
  }
}

.top_equipment .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
  .top_equipment .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 5rem;
  }
}

.top_equipment .row .c_ttl {
  margin-bottom: 0;
}

.top_equipment .row p {
  line-height: 2.125;
}

.top_equipment li {
  margin: 0 .15rem;
  width: 80rem;
}

@media screen and (max-width: 767px) {
  .top_equipment li {
    width: calc(100vw - 12.2rem);
  }
}

.top_equipment .c_more {
  margin-top: 4rem;
}

.top_equipment .slick-arrow {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 8rem;
  top: 0;
  border: none;
  color: transparent;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .top_equipment .slick-arrow {
    width: 5.8rem;
  }
}

.top_equipment .slick-arrow:active, .top_equipment .slick-arrow:focus {
  outline: 0;
}

.top_equipment .slick-prev {
  background: url(../img/btn-prev01.svg) no-repeat 50%/contain;
  left: calc(50% - 48.3rem);
}

@media screen and (max-width: 767px) {
  .top_equipment .slick-prev {
    left: 0;
  }
}

.top_equipment .slick-next {
  background: url(../img/btn-next01.svg) no-repeat 50%/contain;
  right: calc(50% - 48.3rem);
}

@media screen and (max-width: 767px) {
  .top_equipment .slick-next {
    right: 0;
  }
}

.top_nav {
  display: flex;
  gap: 1px;
}

@media screen and (max-width: 767px) {
  .top_nav {
    flex-direction: column;
  }
}

.top_nav li {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50rem;
}

@media screen and (min-width: 768px) {
  .top_nav li {
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .top_nav li {
    height: 34rem;
  }
}

.top_nav li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.top_nav dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: .12em;
  font-size: 3.2rem;
  margin-bottom: .9em;
}

@media screen and (max-width: 767px) {
  .top_nav dt {
    font-size: 2.7rem;
  }
}

.top_nav p {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .top_nav p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .top_nav p {
    height: 13.5rem;
  }
}

.top_nav a {
  display: inline-block;
  width: 24rem;
  border: solid 1px #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 6rem;
  background: url(../img/arrow-right01.svg) no-repeat calc(100% - 2.4rem) center/0.9rem;
}

@media screen and (max-width: 767px) {
  .top_nav a {
    line-height: 5.4rem;
    width: 24.7rem;
  }
}

.top_nav a:hover {
  opacity: 1;
  color: #003c8a;
  background-color: #fff;
  background-image: url(../img/arrow-right02.svg);
}

@media screen and (min-width: 768px) {
  .top_news {
    padding: 14rem 0;
  }
  .top_news .head {
    position: absolute;
    left: 0;
  }
  .top_news .u_inner {
    position: relative;
    padding-left: 34rem;
  }
}

@media screen and (max-width: 767px) {
  .top_news {
    padding: 8.5rem 0;
  }
  .top_news .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
  }
  .top_news .c_ttl {
    margin-bottom: 0;
  }
}

.top_news .btn a {
  display: inline-block;
  background: #003c8a;
  color: #fff;
  font-weight: bold;
  color: #fff;
  text-align: center;
  width: 16rem;
  line-height: 5rem;
}

.top_news ul {
  border-top: solid 1px #dcdcdc;
}

.top_news li {
  border-bottom: solid 1px #dcdcdc;
}

.top_news li:nth-child(1) {
  padding-top: 0;
}

.top_news li a {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 3.5rem 3rem;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .top_news li a {
    font-size: 1.6rem;
    padding: 2.5rem 1.5rem;
  }
}

.top_news li a:after {
  content: '';
  position: absolute;
  background: url(../img/arrow-right03.svg) no-repeat 50%/contain;
  width: .8rem;
  height: 100%;
  top: 0;
  right: 3rem;
}

@media screen and (max-width: 767px) {
  .top_news li a:after {
    right: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .top_news li a {
    gap: 1.5rem;
  }
}

.top_news li a:hover {
  color: inherit;
}

.top_news li small {
  font-weight: 400;
  letter-spacing: .06em;
  font-family: "Montserrat", sans-serif;
}

.top_news li span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: .06em;
  width: calc(100% - 14.4rem);
}

@media screen and (max-width: 767px) {
  .top_news li span {
    width: calc(100% - 11.5rem);
  }
}

.low_header {
  background: #003c8a;
}

.low_header .ttl {
  color: #fff;
}

.low_header2 {
  height: 54rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
}

@media screen and (max-width: 767px) {
  .low_header2 {
    height: 30rem;
  }
}

.low_header2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
}

.low_header2 .ttl {
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: .12em;
}

@media screen and (max-width: 767px) {
  .low_header2 .ttl {
    font-size: 3.6rem;
  }
}

.low_header2 .ttl i {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: .14em;
  font-size: 1.6rem;
  margin-bottom: 1em;
}

.com_nav {
  display: flex;
  margin: 10rem 0;
}

@media screen and (max-width: 767px) {
  .com_nav {
    margin: 8rem 0;
    flex-direction: column;
  }
}

.com_nav li {
  flex: 1;
  border: solid 1px #003c8a;
}

@media screen and (min-width: 768px) {
  .com_nav li + li {
    border-left: none;
  }
}

@media screen and (max-width: 767px) {
  .com_nav li + li {
    border-top: none;
  }
}

.com_nav a {
  line-height: 7rem;
  display: block;
  text-align: center;
  color: #003c8a;
  font-weight: bold;
  font-size: 1.8rem;
  background: url(../img/arrow-down01.svg) no-repeat calc(100% - 2rem)/1.4rem;
}

@media screen and (max-width: 767px) {
  .com_nav a {
    line-height: 5.5rem;
  }
}

.com_sec {
  padding: 16rem 0;
}

@media screen and (max-width: 767px) {
  .com_sec {
    padding: 10rem 0;
  }
}

.com_sec.bg {
  background: #f5f5f5;
}

.com_sec .line {
  border-top: solid 1px #dcdcdc;
  padding-top: 7rem;
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .com_sec .line {
    padding-top: 5rem;
    margin-top: 6rem;
  }
}

.com_sec .line.b {
  padding: 0;
}

.com_sec .row {
  display: flex;
}

.com_sec .row p {
  line-height: 2.125;
}

@media screen and (max-width: 767px) {
  .com_sec .row p {
    line-height: 1.875;
  }
}

@media screen and (max-width: 767px) {
  .com_sec .row {
    flex-direction: column;
    margin: 0 3rem;
    gap: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .com_sec .row.a {
    margin-left: calc(50% - 60rem);
  }
  .com_sec .row.a .desc {
    padding-right: 12rem;
  }
  .com_sec .row.b {
    flex-direction: row-reverse;
    margin-right: calc(50% - 60rem);
  }
  .com_sec .row.b .desc {
    padding-left: 12rem;
  }
  .com_sec .row .desc {
    margin-top: 10rem;
    width: 50rem;
  }
  .com_sec .row figure {
    width: calc(50vw + 10rem);
  }
  .com_sec .row figure img {
    width: 90rem;
  }
}

.com_info dl {
  border: solid 1px #000;
}

@media screen and (min-width: 768px) {
  .com_info dl {
    display: flex;
    flex-wrap: wrap;
  }
}

.com_info dt, .com_info dd {
  padding: 2em;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .com_info dt, .com_info dd {
    padding: .6em 1.2em;
  }
}

.com_info dt:nth-last-of-type(1), .com_info dd:nth-last-of-type(1) {
  border: none;
}

.com_info dt {
  background: #003c8a;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .com_info dt {
    width: 30rem;
    border-bottom: solid 1px #fff;
  }
}

.com_info dd {
  border-bottom: solid 1px #000;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .com_info dd {
    width: calc(100% - 30rem);
  }
}

.com_info dd a {
  color: #003c8a;
  text-decoration: underline;
}

.com_access .map {
  height: 46rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .com_access .map {
    height: 30rem;
  }
}

.com_access iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.com_access .row {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .com_access .row {
    flex-direction: column;
    gap: 3rem;
  }
}

.com_access .row p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.1;
  letter-spacing: .06em;
}

.com_access .list {
  background: #ecf0f5;
  padding: 4rem 0;
}

@media screen and (max-width: 767px) {
  .com_access .list {
    padding: 4rem;
  }
  .com_access .list dl + dl {
    border-top: solid 1px #dcdcdc;
    padding-top: 2rem;
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .com_access .list {
    width: 74rem;
    display: flex;
  }
  .com_access .list dl {
    flex: 1;
    padding: 0 5rem;
  }
  .com_access .list dl + dl {
    border-left: solid 1px #dcdcdc;
  }
}

.com_access dt {
  color: #003c8a;
  font-weight: bold;
  letter-spacing: .14em;
  margin-bottom: .3em;
}

.com_access dt img {
  height: 2.1rem;
  margin-right: .5em;
  vertical-align: -.3em;
}

.com_access dd {
  letter-spacing: .14em;
  line-height: 1.875;
}

.com_history dl {
  background: #fff;
  border-top: solid 2px #003c8a;
  border-bottom: solid 2px #003c8a;
  display: flex;
  flex-wrap: wrap;
  padding: 7rem 6.5rem;
}

@media screen and (max-width: 767px) {
  .com_history dl {
    padding: 5rem 3rem;
  }
}

.com_history dt {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  width: 16rem;
  padding-bottom: 7rem;
  position: relative;
  color: #003c8a;
}

.com_history dt:before {
  content: '';
  position: absolute;
  height: 100%;
  background: #b8cce5;
  width: .3rem;
  left: 10rem;
  top: .5em;
}

@media screen and (max-width: 767px) {
  .com_history dt:before {
    left: 7rem;
  }
}

.com_history dt:after {
  content: '';
  position: absolute;
  border: solid 2px #003c8a;
  border-radius: 50%;
  width: .9rem;
  height: .9rem;
  background: #fff;
  left: 9.7rem;
  top: .3em;
}

@media screen and (max-width: 767px) {
  .com_history dt:after {
    left: 6.7rem;
  }
}

.com_history dt:nth-last-of-type(1) {
  padding-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .com_history dt {
    width: 10rem;
  }
}

.com_history dd {
  width: calc(100% - 16rem);
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .com_history dd {
    width: calc(100% - 10rem);
  }
}

.c_ttl2 {
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: .06em;
  border-left: solid 0.4rem #003c8a;
  padding-left: .5em;
  color: #003c8a;
  line-height: 1;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .c_ttl2 {
    font-size: 2.8rem;
  }
}

.serv_equip figure {
  margin-bottom: 7.5rem;
}

.serv_equip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 767px) {
  .serv_equip ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.serv_equip li {
  border: solid 1px #dcdcdc;
  height: 8rem;
  display: flex;
  align-items: center;
  margin-top: -1px;
  margin-left: -1px;
  justify-content: space-between;
  padding: 0 .8em;
}

@media screen and (min-width: 768px) {
  .serv_equip li {
    font-size: 1.7rem;
    padding: 0 1.5em;
  }
}

.serv_equip .etc {
  text-align: right;
  margin: 1rem 0 3.5rem;
}

@media screen and (min-width: 768px) {
  .serv_equip .etc {
    font-size: 1.7rem;
  }
}

.flow_list ul {
  border-top: solid 1px #dcdcdc;
  margin-top: 9.5rem;
  padding-top: 1rem;
}

@media screen and (max-width: 767px) {
  .flow_list ul {
    margin-top: 6rem;
    padding: 0;
  }
}

.flow_list li {
  position: relative;
  margin-left: 12rem;
  padding: 7rem 0;
  border-bottom: solid 1px #dcdcdc;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .flow_list li {
    padding: 5rem 0;
  }
}

.flow_list li:last-child:before {
  height: calc(100% - 17rem);
}

.flow_list li:before {
  content: '';
  position: absolute;
  width: 1rem;
  background: #b8cce5;
  height: calc(100% - 15rem);
  top: 17rem;
  left: -8.5rem;
}

@media screen and (max-width: 767px) {
  .flow_list li {
    flex-direction: column;
    gap: 2rem;
  }
}

.flow_list li i {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  font-weight: 600;
  color: #003c8a;
  font-size: 6rem;
  letter-spacing: .06em;
  left: -12rem;
  line-height: 1;
  margin-top: -.1em;
}

.flow_list dt {
  font-weight: bold;
  font-size: 3.3rem;
  letter-spacing: .06em;
  color: #003c8a;
  margin-bottom: .7em;
}

@media screen and (max-width: 767px) {
  .flow_list dt {
    font-size: 2.6rem;
  }
}

.flow_list dd {
  line-height: 2.125;
}

@media screen and (max-width: 767px) {
  .flow_list dd {
    line-height: 1.875;
  }
}

.flow_list figure img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .flow_list figure {
    width: 34rem;
  }
}

.flow_faq dl {
  background: #fff;
  padding: 3rem 9rem 4rem;
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .flow_faq dl {
    padding: 3rem 3rem 4rem 8rem;
  }
}

.flow_faq dt {
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  color: #003c8a;
  padding: .3em 0;
  margin-bottom: 1.2em;
}

.flow_faq dt:before {
  content: 'Q';
  font-family: "Montserrat", sans-serif;
  background: #003c8a;
  color: #fff;
  line-height: 2;
  width: 2em;
  height: 2em;
  position: absolute;
  text-align: center;
  border-radius: 50%;
  left: -6rem;
  top: 0;
}

/*# sourceMappingURL=style.css.map */