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

img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.pc-b {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-b {
    display: none;
  }
}

.sp-b {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-b {
    display: block;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  color: #20459e;
  z-index: 999;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  header {
    background-color: #fff;
  }
}
header.scrollDown {
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  transform: translate(0, 0);
}
header .header_area {
  width: 96%;
  margin: 0 auto;
  height: 120px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1200px) {
  header .header_area {
    align-items: center;
    height: 70px;
    width: 90%;
  }
}
header .header_area .header_left {
  display: flex;
  align-items: flex-end;
}
header .header_area .header_left .img_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_left .img_box {
    gap: 5px;
    padding-bottom: 0;
  }
}
header .header_area .header_left .img_box .unicon {
  width: 191px;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_left .img_box .unicon {
    width: 150px;
  }
}
header .header_area .header_left .img_box .svg_box {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_left .img_box .svg_box {
    gap: 5px;
  }
}
header .header_area .header_left .img_box .svg_box svg {
  fill: #fff;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_left .img_box .svg_box svg {
    fill: #000;
  }
}
header .header_area .header_left .img_box .svg_box svg.is_active {
  fill: #000;
}
header .header_area .header_left .img_box .svg_box .svg-item {
  width: 92px;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_left .img_box .svg_box .svg-item {
    width: 60px;
  }
}
header .header_area .header_left .img_box .svg_box .company-name {
  color: #fff;
  width: 100%;
  font-size: 24px;
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_left .img_box .svg_box .company-name {
    font-size: 16px;
    width: calc(100% - 60px);
  }
}
header .header_area .header_left .img_box .svg_box .company-name--small {
  margin-right: 0.3em;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_left .img_box .svg_box .company-name {
    color: #000;
  }
}
header .header_area .header_left .img_box .svg_box .company-name.is-active {
  color: #000;
}
header .header_area .hamburger_button {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  header .header_area .hamburger_button {
    display: block;
  }
}
header .header_area .hamburger_button.is_active {
  padding-right: var(--scrollbar-width);
}
header .header_area .hamburger_button .hamburger_lines {
  position: relative;
  width: 26px;
  height: 18px;
}
header .header_area .hamburger_button .hamburger_lines span.line {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #20459e;
  transform: translateY(-50%);
  transition: all 0.3s;
}
header .header_area .hamburger_button .hamburger_lines span.line:nth-child(1) {
  top: 0;
}
header .header_area .hamburger_button .hamburger_lines span.line:nth-child(2) {
  top: 50%;
}
header .header_area .hamburger_button .hamburger_lines span.line:nth-child(3) {
  top: 100%;
}
header .header_area .hamburger_button .hamburger_lines span.line.is_click:nth-last-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
header .header_area .hamburger_button .hamburger_lines span.line.is_click:nth-last-child(2) {
  opacity: 0;
}
header .header_area .hamburger_button .hamburger_lines span.line.is_click:nth-last-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
header .header_area .header_right {
  width: calc(100% - 275px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    overflow: auto;
    background: #fff;
    bottom: 0;
    padding-bottom: 30px;
    height: calc(100dvh - 70px);
    display: none;
  }
}
header .header_area .header_right.is_active {
  opacity: 1;
  visibility: visible;
  display: block;
  overflow: auto;
}
header .header_area .header_right .nav_menu {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0 35px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu {
    align-items: center;
    flex-flow: column-reverse nowrap;
    width: 100%;
    gap: 0;
    height: auto;
  }
}
header .header_area .header_right .nav_menu ul.menu_list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list {
    height: 100%;
    flex-direction: column;
    width: 90%;
    gap: 20px;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item a.mega_menu_button {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-block: 10px 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item a.mega_menu_button:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item a.mega_menu_button {
    color: #20459e;
    width: 100%;
    padding-right: 10%;
    padding-bottom: 10px;
    border-bottom: 2px solid #f6f6f8;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item a.mega_menu_button .sp_arrow {
  display: none;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item a.mega_menu_button .sp_arrow {
    display: block;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item a.mega_menu_button.is_active {
  color: #20459e;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item a.mega_menu_button {
    font-size: 18px;
    padding: 10px 0;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu {
  background: rgba(15, 29, 91, 0.7);
  width: 100%;
  position: fixed;
  top: 120px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  padding-bottom: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu {
    position: relative;
    visibility: visible;
    opacity: 1;
    height: auto;
    background: none;
    top: 0;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu.is_active {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner {
    max-width: 100%;
    width: 100%;
    padding-left: 1.4rem;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box {
  display: flex;
  gap: 20px;
  padding: 30px 0;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box {
    padding: 0;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .img_box {
  width: 35vw;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .img_box {
    display: none;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .img_box img {
  width: 100%;
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box {
  width: 100%;
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .title {
  color: #fff;
  font-size: 16px;
  padding-left: 10px;
  border-left: 2px solid #fff;
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .title:is(a) {
  transition: opacity 0.3s;
}
@media (hover) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .title:is(a):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .title {
    display: none;
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .mega_menu_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
  margin-top: 15px;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .mega_menu_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .mega_menu_list .mega_menu_item {
  border-bottom: 1px dashed #fff;
  padding: 10px 0;
}
header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .mega_menu_list .mega_menu_item a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
  transition: opacity 0.3s;
}
@media (hover) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .mega_menu_list .mega_menu_item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu ul.menu_list li.menu_item .mega_nav_menu .inner .mega_menu_box .text_box .mega_menu_list .mega_menu_item a {
    width: 100%;
    color: #000;
    font-size: 16px;
  }
}
header .header_area .header_right .nav_menu .contact_box {
  display: flex;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu .contact_box {
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 10px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 600px) {
  header .header_area .header_right .nav_menu .contact_box {
    flex-direction: column;
  }
}
header .header_area .header_right .nav_menu .contact_box .tel {
  display: none;
  height: 100%;
  color: #000;
  padding: 25px 20px;
  font-size: 18px;
  background: #f6f6f8;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu .contact_box .tel {
    display: block;
    text-align: center;
    padding: 15px 20px;
    width: 200px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 600px) {
  header .header_area .header_right .nav_menu .contact_box .tel {
    width: 100%;
  }
}
header .header_area .header_right .nav_menu .contact_box .contact_button {
  padding: 15px 35px;
  background: #ff9000;
  border: none;
  box-sizing: border-box;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  outline: 1px solid #ff9000;
  transition: background 0.5s, color 0.5s;
  margin-bottom: 10px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  header .header_area .header_right .nav_menu .contact_box .contact_button {
    width: 200px;
    margin-bottom: 0;
    margin-top: 10px;
    margin-top: 0;
    padding: 15px 20px;
    text-align: center;
  }
}
@media screen and (max-width: 1200px) and (max-width: 600px) {
  header .header_area .header_right .nav_menu .contact_box .contact_button {
    width: 100%;
  }
}
@media (hover) {
  header .header_area .header_right .nav_menu .contact_box .contact_button:hover {
    background: #fff;
    color: #ff9000;
  }
}
header .header_area .header_right .nav_menu .contact_box .contact_button .sp_text {
  display: none;
}
@media screen and (max-width: 1000px) {
  header .header_area .header_right .nav_menu .contact_box .contact_button .sp_text {
    display: inline;
  }
}

.pagePath_area {
  position: relative;
  width: 100%;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
.pagePath_area .pagePath_item {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 1.33% 0 4.33%;
}
.pagePath_area .pagePath_item p {
  display: flex;
  justify-content: flex-start;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}
.pagePath_area .pagePath_item p span {
  color: #20459e;
  padding-right: 25px;
}
.pagePath_area .pagePath_item p span a {
  font-weight: 500;
  text-decoration: none;
  color: #20459e;
}
.pagePath_area .pagePath_item p span.arrow {
  position: relative;
}
.pagePath_area .pagePath_item p span.arrow:last-child {
  color: #000;
}
.pagePath_area .pagePath_item p span.arrow::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 5px;
  height: 5px;
  content: "";
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid #20459e;
  border-bottom: 1px solid #20459e;
}
.pagePath_area .mainTitle {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 200px;
  transform: translateY(-50%);
  background: #f6f6f8;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-left: 35px;
}
@media screen and (max-width: 1000px) {
  .pagePath_area .mainTitle {
    width: 50vw;
    height: 15vw;
    padding-left: 4vw;
    transform: translateY(-100%);
    top: -10%;
  }
}
.pagePath_area .mainTitle h1 {
  font-family: "zen Old Mincho", sans-serif;
  font-weight: 500;
  font-size: 42px;
  color: #20459e;
}
@media screen and (max-width: 1000px) {
  .pagePath_area .mainTitle h1 {
    font-size: 5vw;
  }
}
.pagePath_area .mainTitle p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .pagePath_area .mainTitle p {
    font-size: 16px;
    font-size: 2.8vw;
  }
}

.section_title h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #20459e;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .section_title h2 {
    font-size: 24px;
  }
}
.section_title p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .section_title p {
    font-size: 16px;
  }
}

.button_link {
  mask-image: url(/common/img/link_icon.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  background: #fff;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  display: inline-block;
  margin-left: 5px;
}

.button_arrow {
  text-decoration: none;
  padding: 20px;
  background: #20459e;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  border: 1px solid #20459e;
}
@media (hover) {
  .button_arrow:hover {
    background: #fff;
  }
  .button_arrow:hover p {
    color: #20459e;
  }
  .button_arrow:hover .button_link {
    background: #20459e;
  }
  .button_arrow:hover .arrow_right {
    color: #20459e;
  }
  .button_arrow:hover .arrow_right::after {
    border: 1px solid #20459e;
  }
}
.button_arrow--small {
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .button_arrow--small {
    padding: 0 10px;
  }
}
.button_arrow p {
  color: #fff;
  font-size: 16px;
  display: inline-block;
}
.button_arrow .arrow_right {
  display: inline-block;
  font-size: 15px;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .button_arrow .arrow_right {
    font-size: 12px;
  }
}
.button_arrow .arrow_right::after {
  content: "";
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .button_arrow .arrow_right::after {
    width: 22px;
    height: 22px;
  }
}

.contact_button {
  padding: 15px 35px;
  background: #ff9000;
  border: none;
  box-sizing: border-box;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  height: 100%;
  outline: 1px solid #ff9000;
  transition: 0.3s;
}
@media (hover) {
  .contact_button:hover {
    background: #fff;
    color: #ff9000;
  }
}

section.contact {
  margin-top: 150px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  section.contact {
    margin-top: 75px;
    margin-bottom: 60px;
  }
}
section.contact .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
section.contact .inner .bg_area {
  width: 18.75%;
  position: absolute;
  top: -80px;
  right: 33px;
  color: #000;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  section.contact .inner .bg_area {
    right: 0;
  }
}
section.contact .inner .bg_area:nth-child(2) {
  width: 18.33%;
  left: -30px;
  top: 180px;
}
@media screen and (max-width: 768px) {
  section.contact .inner .bg_area:nth-child(2) {
    left: 0;
  }
}
section.contact .inner .bg_area img {
  width: 100%;
}
section.contact .inner .contact_box {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 60px;
  background: #f6f6f8;
}
@media screen and (max-width: 768px) {
  section.contact .inner .contact_box {
    padding: 30px;
  }
}
section.contact .inner .contact_box .contact_item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.contact .inner .contact_box .contact_item .text_box {
  font-size: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  section.contact .inner .contact_box .contact_item .text_box {
    margin-top: 20px;
  }
}
section.contact .inner .contact_box .contact_item .button_box {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  section.contact .inner .contact_box .contact_item .button_box {
    flex-direction: column;
    width: 100%;
  }
}
section.contact .inner .contact_box .contact_item .button_box .tel {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  section.contact .inner .contact_box .contact_item .button_box .tel {
    width: 100%;
    justify-content: center;
  }
}
section.contact .inner .contact_box .contact_item .button_box .tel img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  section.contact .inner .contact_box .contact_item .button_box .tel img {
    width: 25px;
    height: 25px;
  }
}
section.contact .inner .contact_box .contact_item .button_box .tel p {
  color: #20459e;
  font-size: 36px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section.contact .inner .contact_box .contact_item .button_box .tel p {
    font-size: 28px;
  }
}
section.contact .inner .contact_box .contact_item .button_box a.contact_button {
  width: 240px;
}
@media screen and (max-width: 600px) {
  section.contact .inner .contact_box .contact_item .button_box a.contact_button {
    width: 100%;
  }
}

footer {
  width: 100%;
  background: #20459e;
  height: 177px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  footer {
    height: auto;
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
footer .inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
footer .inner .footer_area {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer .inner .footer_area .footer_left {
  width: 100%;
}
footer .inner .footer_area .footer_left .text_box {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  footer .inner .footer_area .footer_left .text_box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
footer .inner .footer_area .footer_left .text_box ul {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  footer .inner .footer_area .footer_left .text_box ul {
    padding-top: 15px;
  }
}
footer .inner .footer_area .footer_left .text_box ul li {
  list-style: none;
}
footer .inner .footer_area .footer_left .text_box ul li a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover) {
  footer .inner .footer_area .footer_left .text_box ul li a:hover {
    opacity: 0.5;
  }
}
footer .inner .footer_area .footer_navi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  footer .inner .footer_area .footer_navi {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
footer .inner .footer_area .footer_navi .img_box {
  width: 210px;
}
footer .inner .footer_area .footer_navi .img_box img {
  width: 100%;
}
footer .inner .footer_area .footer_navi .nav_list ul {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  gap: 30px;
}
@media screen and (max-width: 1000px) {
  footer .inner .footer_area .footer_navi .nav_list ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
footer .inner .footer_area .footer_navi .nav_list ul li {
  font-size: 14px;
  color: #fff;
  list-style: none;
}
footer .inner .footer_area .footer_navi .nav_list ul li a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}
@media (hover) {
  footer .inner .footer_area .footer_navi .nav_list ul li a:hover {
    opacity: 0.5;
  }
}
footer .inner .footer_area .copyright {
  font-size: 10px;
  color: #fff;
}

.nf {
  margin-block: 100px 200px;
}
.nf .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nf .inner h2 {
  font-family: "Zen Old Mincho", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #4c4c4c;
}
.nf .inner .nf_text {
  font-size: 16px;
  margin-top: 50px;
  line-height: 1.8;
}
.nf .inner .nf_button {
  margin-top: 50px;
  margin-inline: auto;
  max-width: 245px;
  width: 100%;
}

.nf__wrapper {
  margin-top: 120px;
}
@media screen and (max-width: 1200px) {
  .nf__wrapper {
    margin-top: 70px;
  }
}

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