* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}
.contact_dots {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.contact_dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.contact_dots span:nth-child(1) {
  background: #0091DB;
}
.contact_dots span:nth-child(2) {
  background: #515152;
}
.contact_dots span:nth-child(3) {
  background: #F08300;
}

section {
  width: 100%;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header .header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 6px 8px 6px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  z-index: 400;
}
.header .header-inner .logo {
  height: 34px;
}
.header .header-inner .logo img {
  width: auto;
  height: 100%;
}
.header .menu-trigger {
  position: relative;
  width: 40px;
  height: 40px;
  background: #515152;
  border: none;
  border-radius: 50%;
  overflow: visible;
  cursor: pointer;
  flex-shrink: 0;
}
.header .menu-trigger span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: #fff;
  left: 50%;
  transition: 0.4s;
  transform: translateX(-50%);
}
.header .menu-trigger span:nth-child(1) {
  top: 16px;
}
.header .menu-trigger span:nth-child(2) {
  top: 24px;
}
.header .menu-trigger.is-active span:nth-child(1) {
  transform: translate(-50%, 5px) rotate(-45deg);
}
.header .menu-trigger.is-active span:nth-child(2) {
  transform: translate(-50%, -5px) rotate(45deg);
}
.header .nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #f0f2f4;
  top: 0;
  padding: 110px 32px 32px;
  right: -100%;
  z-index: 200;
  transition: 0.5s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header .nav.is-open {
  right: 0;
}
.header .nav ul {
  list-style: none;
  margin-bottom: 32px;
}
.header .nav ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
}
.header .nav ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f5a020;
  border-radius: 50%;
}
.header .nav ul li.nav-contact-item {
  display: none;
}
.header .nav ul li a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}
.header .nav ul li a .nav-en {
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  color: #515152;
}
.header .nav ul li a .nav-ja {
  font-size: 14px;
  color: #515152;
}
.header .nav .nav_contact_card {
  position: relative;
  display: block;
  background: #2e3740;
  border-radius: 16px;
  padding: 24px 20px;
  text-decoration: none;
}
.header .nav .nav_contact_card::before, .header .nav .nav_contact_card::after {
  content: "";
  position: absolute;
  top: 50%;
}
.header .nav .nav_contact_card::before {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  right: 10%;
  transform: translateY(-50%);
}
.header .nav .nav_contact_card::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: calc(10% + 22px);
  transform: translateY(-50%) rotate(45deg);
}
.header .nav .nav_contact_card .nav_contact_title {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  margin-bottom: 8px;
}
.header .nav .nav_contact_card .contact_dots {
  margin-bottom: 18px;
}
.header .nav .nav_contact_card .contact_dots span:nth-child(2) {
  background: #fff;
}
.header .nav .nav_contact_card .nav_contact_sub {
  font-size: 16px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .header {
    display: flex;
    align-items: center;
    width: 90%;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 14px 24px;
    margin: 0 auto;
  }
  .header .header-inner {
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    flex-shrink: 0;
    z-index: auto;
  }
  .header .header-inner .logo {
    height: 36px;
  }
  .header .menu-trigger {
    display: none;
  }
  .header .nav {
    position: static;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    background: none;
    flex: 1;
    padding: 0;
    z-index: auto;
  }
  .header .nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
  }
  .header .nav ul li {
    padding: 0;
  }
  .header .nav ul li::before {
    display: none;
  }
  .header .nav ul li.nav-contact-item {
    display: block;
  }
  .header .nav ul li a .nav-ja {
    display: none;
  }
  .header .nav ul li a .nav-en {
    font-size: 22px;
  }
  .header .nav ul li a.nav-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2e3740;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 20px;
    white-space: nowrap;
  }
  .header .nav ul li a.nav-contact-btn::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #f5a020;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .header .nav .nav_contact_card {
    display: none;
  }
}

@media screen and (max-width: 768px) and (max-height: 680px) {
  .header .nav {
    padding-top: 86px;
  }
  .header .nav ul {
    margin-bottom: 20px;
  }
  .header .nav ul li {
    padding: 10px 0;
  }
  .header .nav ul li a .nav-en {
    font-size: 28px;
  }
  .header .nav .nav_contact_card {
    padding: 18px 20px;
  }
  .header .nav .nav_contact_card .nav_contact_title {
    font-size: 34px;
  }
  .header .nav .nav_contact_card .contact_dots {
    margin-bottom: 12px;
  }
}
.fv {
  display: block;
  width: 100%;
}
.fv img {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  padding: 60px 0 20px;
}
.about .about_inner {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}
.about .about_inner .about_label {
  margin-bottom: 40px;
}
.about .about_inner .about_label .about_en {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  color: #515152;
  margin-bottom: 8px;
}
.about .about_inner .about_label .about_ja {
  font-size: 14px;
  color: #515152;
  margin-bottom: 24px;
}
.about .about_inner .about_label h2 {
  font-size: 34px;
  color: #333;
  line-height: 1.4;
}
.about .about_inner .about_text {
  margin-top: 32px;
  line-height: 2;
}
.about .about_inner .about_text p {
  font-size: 16px;
  margin-bottom: 16px;
}
.about .about_inner .about_text p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .about {
    padding: 100px 0 40px;
  }
  .about .about_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .about .about_inner .about_label {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .about .about_inner .about_label .about_en {
    font-size: 40px;
  }
  .about .about_inner .about_label .contact_dots {
    margin-bottom: 12px;
  }
  .about .about_inner .about_label .about_ja {
    font-size: 16px;
  }
  .about .about_inner .about_label h2 {
    font-size: 50px;
  }
  .about .about_inner .about_text {
    margin-top: 0;
  }
  .about .about_inner .about_text p {
    font-size: 18px;
    margin-bottom: 18px;
  }
}

.link_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 12px;
  background: #fff;
  border: 1px solid #cfd6dd;
  border-radius: 999px;
  color: #2e3740;
  text-decoration: none;
  margin: auto;
  padding: 0.3em 1em;
}
.link_btn .btn_arrow {
  width: 40px;
  height: 8px;
  display: block;
}

.about_sub {
  padding: 30px 0;
}
.about_sub .about_sub_inner {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
  background: #f0f2f4;
  border-radius: 24px;
  padding: 48px 16px;
}
.about_sub .about_sub_label {
  margin-bottom: 20px;
}
.about_sub .about_sub_label p {
  color: #515152;
  font-size: 20px;
  margin-bottom: 8px;
}
.about_sub h2 {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.about_sub h2 span {
  color: #F08300;
}
.about_sub .about_sub_text {
  font-size: 16px;
  line-height: 1.8;
  color: #2D2C2C;
}
.about_sub .about_sub_image {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .about_sub {
    padding-bottom: 60px;
  }
  .about_sub .about_sub_inner {
    display: flex;
    align-items: center;
    padding-inline: 60px;
  }
  .about_sub .about_sub_label p {
    font-size: 26px;
  }
  .about_sub .about_sub_body {
    flex: 1;
  }
  .about_sub .about_sub_image {
    flex: 1;
    margin-top: 0;
  }
  .about_sub h2 {
    font-size: 46px;
  }
  .about_sub .about_sub_text {
    font-size: 18px;
  }
}

.service .service_inner {
  background: url(../images/service_bg_sp.png) center/cover no-repeat;
  border-radius: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1em 0;
}
.service .service_inner .service_head {
  text-align: center;
  margin-bottom: 36px;
}
.service .service_inner .service_head h2 {
  font-family: "Outfit", sans-serif;
  font-size: 60px;
  color: #515152;
  font-weight: 300;
}
.service .service_inner .service_head .contact_dots {
  justify-content: center;
}
.service .service_inner .service_head .service_ja {
  font-size: 18px;
  font-weight: 500;
  color: #515152;
}
.service .service_inner .service_grid {
  width: 94%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  margin: 0 auto;
  padding: 0 0.8em 2.5em;
}
.service .service_inner .service_grid .service_card {
  padding: 5em 0 1em;
}
.service .service_inner .service_grid .service_card .service_image {
  position: relative;
  margin-bottom: 24px;
}
.service .service_inner .service_grid .service_card .service_image .service_num {
  position: absolute;
  line-height: 1;
  background: linear-gradient(to bottom, #FF8B00 0%, #FFFFFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 100px;
  font-weight: 300;
  top: -50px;
}
.service .service_inner .service_grid .service_card .service_image img {
  display: block;
  border-radius: 8px;
}
.service .service_inner .service_grid .service_card h3 {
  color: #2D2C2C;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service .service_inner .service_grid .service_card .service_text {
  color: #2D2C2C;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .service {
    padding: 40px 0;
  }
  .service .service_inner {
    background-image: url(../images/service_bg.png);
    padding: 50px 0 60px;
  }
  .service .service_inner .service_head h2 {
    font-size: 88px;
  }
  .service .service_inner .service_head .contact_dots {
    margin-bottom: 20px;
  }
  .service .service_inner .service_head .service_ja {
    font-size: 20px;
  }
  .service .service_inner .service_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: 2em;
  }
  .service .service_inner .service_grid .service_card h3 {
    font-size: 32px;
  }
  .service .service_inner .service_grid .service_card .service_text {
    font-size: 16px;
  }
  .service .service_inner .service_grid .service_card .service_image img {
    margin: 0 auto;
  }
}

.news {
  padding: 60px 0;
}
.news .news_inner {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}
.news .news_inner .news_head {
  margin-bottom: 32px;
}
.news .news_inner .news_head h2 {
  color: #515152;
  font-family: "Outfit", sans-serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}
.news .news_inner .news_head .news_ja {
  font-size: 18px;
  color: #515152;
}
.news .news_inner .news_tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.news .news_inner .news_tab {
  background: #fff;
  color: #515152;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  border: 1px solid #cfd6dd;
  border-radius: 999px;
  padding: 6px 20px;
  cursor: pointer;
}
.news .news_inner .news_tab.is-active {
  border-color: #515152;
  font-weight: 600;
}
.news .news_inner .tag_all {
  color: #997DFF;
}
.news .news_inner .tag_service {
  color: #0091DB;
}
.news .news_inner .tag_new {
  color: #F08300;
}
.news .news_inner .news_list {
  list-style: none;
  margin-bottom: 32px;
}
.news .news_inner .news_list .news_item {
  position: relative;
  background: #F6F8F9;
  border-radius: 10px;
  margin-bottom: 0.8em;
  padding: 15px 20px;
}
.news .news_inner .news_list .news_item::before, .news .news_inner .news_list .news_item::after {
  content: "";
  position: absolute;
  top: 50%;
}
.news .news_inner .news_list .news_item::before {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  right: 4%;
  transform: translateY(-50%);
}
.news .news_inner .news_list .news_item::after {
  width: 5px;
  height: 5px;
  border-top: 2px solid #515152;
  border-right: 2px solid #515152;
  right: calc(4% + 15px);
  transform: translateY(-50%) rotate(45deg);
}
.news .news_inner .news_list .news_item .news_item_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.news .news_inner .news_list .news_item .news_item_meta .news_date {
  font-family: "Outfit", sans-serif;
  color: #515152;
  font-size: 16px;
}
.news .news_inner .news_list .news_item .news_item_meta .news_tag {
  min-width: 60px;
  background: #fff;
  font-size: 11px;
  text-align: center;
  border-radius: 999px;
  padding: 2px 10px;
}
.news .news_inner .news_list .news_item .news_item_link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news .news_inner .news_list .news_item .news_text {
  width: calc(100% - 42px);
  color: #2D2C2C;
  font-size: 16px;
  font-weight: 500;
}
.news .news_inner .news_more_btn {
  position: relative;
  display: block;
  width: fit-content;
  background: #515152;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  text-decoration: none;
  border-radius: 999px;
  margin-left: auto;
  padding: 15px 24px 15px 44px;
}
.news .news_inner .news_more_btn::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #F08300;
  border-radius: 50%;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .news {
    padding: 80px 0;
  }
  .news .news_inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-areas: "head list" "tabs list" "btn  list";
    gap: 0 60px;
    align-items: start;
  }
  .news .news_inner .news_head {
    grid-area: head;
    margin-bottom: 24px;
  }
  .news .news_inner .news_head h2 {
    font-size: 88px;
  }
  .news .news_inner .news_head .contact_dots {
    margin: 20px 0;
  }
  .news .news_inner .news_head .news_ja {
    font-size: 20px;
  }
  .news .news_inner .news_tabs {
    grid-area: tabs;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .news .news_inner .news_tabs .news_tab {
    min-width: 90px;
    text-align: center;
  }
  .news .news_inner .news_list {
    grid-area: list;
    margin-bottom: 0;
  }
  .news .news_inner .news_list .news_item {
    padding: 25px 35px;
  }
  .news .news_inner .news_list .news_item .news_item_meta {
    margin-bottom: 10px;
  }
  .news .news_inner .news_list .news_item .news_item_meta .news_date {
    font-size: 18px;
  }
  .news .news_inner .news_list .news_item .news_item_meta .news_tag {
    font-size: 14px;
  }
  .news .news_inner .news_list .news_item .news_text {
    font-size: 20px;
  }
  .news .news_inner .news_more_btn {
    grid-area: btn;
    margin-left: 0;
  }
}

.company {
  padding-bottom: 20px;
}
.company .company_inner {
  width: 92%;
  max-width: 1400px;
  background-color: #F6F8F9;
  background-image: url("../images/company_logo_sp.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  border-radius: 20px;
  margin: 0 auto;
  padding: 40px 14px 30px;
}
.company .company_head {
  max-width: 1180px;
  margin: 0 auto 32px;
}
.company .company_head h2 {
  font-family: "Outfit", sans-serif;
  font-size: 60px;
  font-weight: 300;
  color: #515152;
  line-height: 1;
  margin-bottom: 16px;
}
.company .company_head .company_ja {
  font-size: 18px;
  color: #515152;
}
.company .company_table {
  width: 100%;
  max-width: 1180px;
  border-collapse: collapse;
  margin: 0 auto;
}
.company .company_table th, .company .company_table td {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #e5e9ed;
  vertical-align: top;
  padding: 18px 0;
}
.company .company_table th {
  width: 90px;
  color: #515152;
  white-space: nowrap;
}
.company .company_table td {
  color: #2D2C2C;
}
.company .company_table tr:last-child th,
.company .company_table tr:last-child td {
  border-bottom: none;
}
@media screen and (min-width: 769px) {
  .company {
    padding: 80px 0;
  }
  .company .company_inner {
    width: 100%;
    background-image: url("../images/company_logo.webp");
    background-size: auto 100%;
    padding: 60px 0;
  }
  .company .company_head h2 {
    font-size: 88px;
  }
  .company .company_head .contact_dots {
    margin: 20px 0;
  }
  .company .company_head .company_ja {
    font-size: 20px;
  }
  .company .company_table th {
    width: 480px;
    font-size: 18px;
  }
  .company .company_table td {
    width: 700px;
    font-size: 18px;
  }
}

.contact {
  background-image: url("../images/contact_bg_sp.png");
  background-size: cover;
  background-position: center;
  border-radius: 14px 14px 0 0;
  padding: 40px 0;
}
.contact .contact_inner {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact .contact_inner h2 {
  font-family: "Outfit", sans-serif;
  font-size: 60px;
  font-weight: 300;
  color: #515152;
  line-height: 1;
  margin-bottom: 12px;
}
.contact .contact_inner .contact_dots {
  justify-content: center;
  margin-bottom: 16px;
}
.contact .contact_inner .contact_lead {
  font-size: 18px;
  color: #515152;
  margin-bottom: 30px;
}
.contact .contact_inner .contact_sub {
  font-size: 14px;
  color: #2D2C2C;
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact .contact_inner .form_section {
  background: #fff;
  text-align: left;
  border-radius: 20px;
  margin: 0 auto;
  padding: 20px 0 40px;
}
.contact .contact_inner .form_section dl {
  width: 90%;
  margin: 0 auto;
}
.contact .contact_inner .form_section dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2D2C2C;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact .contact_inner .form_section dt i {
  display: inline-flex;
  align-items: center;
  background: #F08300;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  padding: 2px 8px;
  border-radius: 999px;
}
.contact .contact_inner .form_section dd {
  margin: 0 0 20px;
}
.contact .contact_inner .form_section dd input, .contact .contact_inner .form_section dd textarea {
  width: 100%;
  background: #F6F8F9;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  color: #2D2C2C;
}
.contact .contact_inner .form_section dd input::placeholder, .contact .contact_inner .form_section dd textarea::placeholder {
  color: #aaa;
}
.contact .contact_inner .form_section dd textarea {
  height: 180px;
  resize: vertical;
}
.contact .contact_inner .form_submit {
  text-align: center;
  margin-top: 32px;
}
.contact .contact_inner .form_submit_button {
  position: relative;
  display: inline-block;
  background: #515152;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 15px 36px 15px 56px;
  cursor: pointer;
}
.contact .contact_inner .form_submit_button::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #F08300;
  border-radius: 50%;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .contact {
    background-image: url("../images/contact_bg.webp");
    padding: 80px 0;
  }
  .contact .contact_inner h2 {
    font-size: 88px;
  }
  .contact .contact_inner .contact_dots {
    margin: 20px 0;
  }
  .contact .contact_inner .contact_lead {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .contact .contact_inner .contact_sub {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .contact .contact_inner .form_section {
    border-radius: 50px;
    padding: 40px 20px;
  }
  .contact .contact_inner .form_section dt {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact .contact_inner .form_section dd {
    margin-bottom: 28px;
  }
  .contact .contact_inner .form_section dd input, .contact .contact_inner .form_section dd textarea {
    font-size: 16px;
    padding: 16px 20px;
  }
  .contact .contact_inner .form_submit_button {
    font-size: 18px;
    padding: 18px 48px 18px 72px;
  }
  .contact .contact_inner .form_submit_button::before {
    left: 40px;
  }
}

.news_page {
  padding-top: 100px;
}
.news_page .news_head {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .news_page {
    padding-top: 140px;
  }
  .news_page .news_inner {
    display: block;
  }
  .news_page .news_inner .news_head {
    margin-bottom: 50px;
  }
  .news_page .news_inner .news_tabs {
    flex-direction: row;
  }
  .news_page .news_inner .news_tabs .news_tab {
    min-width: auto;
  }
}

.footer {
  background: #515152;
  padding: 40px 0 0;
}
.footer .footer_inner {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}
.footer .footer_logo {
  margin-bottom: 20px;
}
.footer .footer_logo img {
  width: 150px;
}
.footer .footer_address {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer .footer_tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.footer .footer_tel .contact_dots {
  margin-bottom: 0;
}
.footer .footer_tel .contact_dots span {
  width: 4px;
  height: 4px;
}
.footer .footer_tel .contact_dots span:nth-child(2) {
  background: #fff;
}
.footer .footer_tel a {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
}
.footer .footer_map_btn {
  position: relative;
  display: inline-block;
  background: #404040;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 999px;
  padding: 10px 20px 10px 40px;
  margin-bottom: 24px;
  cursor: pointer;
}
.footer .footer_map_btn::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #F08300;
  border-radius: 50%;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.footer .footer_map {
  display: none;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.footer .footer_map.is-open {
  display: block;
}
.footer .footer_map iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}
.footer .footer_nav {
  margin-bottom: 32px;
}
.footer .footer_nav ul {
  list-style: none;
}
.footer .footer_nav li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer_nav li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #F08300;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer .footer_nav li a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}
.footer .footer_nav li a .nav-en {
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  color: #fff;
}
.footer .footer_nav li a .nav-ja {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer_contact_card {
  position: relative;
  display: block;
  background: #404040;
  border-radius: 16px;
  padding: 24px 20px;
  text-decoration: none;
  margin-bottom: 32px;
}
.footer .footer_contact_card::before, .footer .footer_contact_card::after {
  content: "";
  position: absolute;
  top: 50%;
}
.footer .footer_contact_card::before {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  right: 20px;
  transform: translateY(-50%);
}
.footer .footer_contact_card::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 42px;
  transform: translateY(-50%) rotate(45deg);
}
.footer .footer_contact_card .footer_contact_title {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}
.footer .footer_contact_card .contact_dots {
  margin-bottom: 20px;
}
.footer .footer_contact_card .contact_dots span:nth-child(2) {
  background: #fff;
}
.footer .footer_contact_card .footer_contact_sub {
  font-size: 16px;
  color: #fff;
}
.footer .footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  text-align: center;
}
.footer .footer_bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 60px 0 0;
  }
  .footer .footer_inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    padding-bottom: 40px;
  }
  .footer .footer_left {
    flex: 0 0 45%;
  }
  .footer .footer_right {
    flex: 1;
  }
  .footer .footer_address {
    font-size: 15px;
  }
  .footer .footer_map_btn {
    font-size: 20px;
    padding: 14px 20px 14px 40px;
  }
  .footer .footer_nav {
    margin-bottom: 16px;
  }
  .footer .footer_nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer .footer_nav li {
    border-bottom: none;
    padding: 12px 0;
  }
  .footer .footer_contact_card {
    padding: 30px;
  }
  .footer .footer_contact_card .footer_contact_title {
    font-size: 50px;
  }
}

.page-content {
  width: 94%;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}
.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #003477;
  margin-bottom: 16px;
}
.page-content p {
  font-size: 14px;
  text-align: left;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .page-content p {
    font-size: 18px;
    text-align: center;
  }
}

.page-service {
  background: #f2fbff;
  margin: 0 auto;
  padding: 20px 0;
}
.page-service .page-service-content {
  max-width: 800px;
  margin: 0 auto;
}
.page-service h2 {
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1em;
}
.page-service h2 .sub-title {
  display: inline-block;
  background: #005dd6;
  color: #fff;
  font-size: 14px;
  margin-bottom: 0.2em;
  padding: 0.2em 1.2em;
  border-radius: 999px;
}
.page-service h2 .main-title {
  color: #333c4e;
  font-size: 36px;
}
@media screen and (min-width: 769px) {
  .page-service {
    padding: 40px 0;
  }
}

.page-service-block {
  width: 94%;
  background-color: #fff;
  border-radius: 12px;
  margin: 0 auto 1.6em;
  padding: 0.7em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.page-service-block .service-text {
  display: flex;
  margin-bottom: 0.6em;
}
.page-service-block .service-text .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 0.4em;
}
.page-service-block .service-text .icon img {
  width: 50%;
}
.page-service-block .service-text .main-block {
  width: calc(100% - 45px);
}
.page-service-block .service-text h3 {
  font-size: 1.1em;
  margin-bottom: 0.1em;
}
.page-service-block .service-text .catch {
  margin-bottom: 0.3em;
}
.page-service-block .service-text .description {
  font-size: 0.9em;
  margin-bottom: 0.5rem;
}
.page-service-block .service-text ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.page-service-block .service-text ul li {
  position: relative;
  padding: 0.1em 0 0.1em 20px;
}
.page-service-block .service-text ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-service-block .service-text.service-data .icon {
  background: #f5f4ff;
}
.page-service-block .service-text.service-data .catch {
  color: #6050DC;
}
.page-service-block .service-text.service-data ul li::before {
  background-image: url(../images/data-icon.svg);
}
.page-service-block .service-text.service-strategy .icon {
  background: #ebfff6;
}
.page-service-block .service-text.service-strategy .icon img {
  width: 60%;
}
.page-service-block .service-text.service-strategy .catch {
  color: #2b7c5a;
}
.page-service-block .service-text.service-strategy ul li::before {
  background-image: url(../images/strategy-icon.svg);
}
.page-service-block .service-text.service-creative .icon {
  background: #ffefef;
}
.page-service-block .service-text.service-creative .catch {
  color: #f94f50;
}
.page-service-block .service-text.service-creative ul li::before {
  background-image: url(../images/creative-icon.svg);
}
.page-service-block .service-text.service-consulting .icon {
  background: #fffcf6;
}
.page-service-block .service-text.service-consulting .icon img {
  width: 70%;
}
.page-service-block .service-text.service-consulting .catch {
  color: #efa016;
}
.page-service-block .service-text.service-consulting ul li::before {
  background-image: url(../images/consulting-icon.svg);
}
.page-service-block .service-image {
  width: 94%;
  margin: 0 auto 0.6em;
}
.page-service-block .service-image img {
  border-radius: 6px;
}
@media screen and (min-width: 769px) {
  .page-service-block {
    display: flex;
    align-items: center;
  }
  .page-service-block .service-text {
    width: 55%;
  }
  .page-service-block .service-text .icon {
    width: 50px;
    height: 50px;
  }
  .page-service-block .service-text .main-block {
    width: calc(100% - 60px);
  }
  .page-service-block .service-image {
    width: 40%;
  }
}

.news_pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.news_pagination .page {
  padding: 6px 10px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: inherit;
}
.news_pagination .current {
  font-weight: bold;
}

.news-detail .news-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}
@media screen and (min-width: 769px) {
  .news-detail .news-inner {
    padding: 140px 20px 80px;
  }
}
.news-detail .news-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  display: block;
}
.news-detail .news-heading {
  font-size: 22px;
  margin-bottom: 20px;
}
.news-detail .news-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.news-detail .news-back {
  margin-top: 40px;
  text-align: center;
}
.news-detail .news-back a {
  text-decoration: none;
  color: inherit;
}

.thanks .thanks-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}
.thanks .thanks-heading {
  font-size: 24px;
  margin-bottom: 20px;
}
.thanks .thanks-text {
  line-height: 1.7;
  margin-bottom: 40px;
}
.thanks .thanks-back a {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #333;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 769px) {
  .thanks .thanks-inner {
    padding: 40px 15px;
  }
  .thanks .thanks-heading {
    font-size: 20px;
  }
}