@charset "UTF-8";
/* -----------------------------
   リセットCSS
------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  text-align: center;
  font-size: 1.3vw;
  color: #000;
  font-weight: bold;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -----------------------------
   基本レイアウト用クラス
------------------------------- */
.wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 3rem 0;
}

html {
  scroll-behavior: smooth;
}

.anchor-target {
  scroll-margin-top: 7rem;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.bold {
  font-weight: bold;
}

.img_hover {
  overflow: hidden;
}

.img_hover img {
  transition: 0.4s ease-in-out;
}

.img_hover img:hover {
  transform: scale(1.1, 1.1);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.site_nav {
  border-top: #000 solid 10px;
}

.site_nav .nav_wrap {
  max-width: 95vw;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.site_nav .nav_wrap nav {
  font-weight: bold;
}

.site_nav .nav_wrap h1 {
  width: 25%;
  margin: 0 auto;
}

.main_visual {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/main.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.main_visual h2 {
  font-size: 150%;
  color: #fff;
  margin: 0;
}

.main_visual_under {
  background-color: #000;
  color: #fff;
}
.main_visual_under h3 {
  font-size: 150%;
  margin-bottom: 1rem;
}

.section_about .about_con span {
  font-size: 120%;
  margin-bottom: 1rem;
}
.section_about .about_con h3 {
  font-size: 150%;
  line-height: 1.3;
}

.section_service {
  background-color: #000;
  color: #fff;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.section_service .wrap {
  max-width: 70vw;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 15rem;
}
.section_service .wrap h2 {
  margin-bottom: 3rem;
}
.section_service .wrap .service_box {
  text-align: left;
  margin-bottom: 3rem;
}
.section_service .wrap .service_box .service_ttl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: solid 1px #fff;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.section_service .wrap .service_box .service_ttl h3 span {
  font-size: 180%;
  padding-right: 0.5rem;
}
.section_service .wrap .service_box .service_ttl p {
  font-size: 110%;
}
.section_service .wrap .service_box h4 {
  margin-bottom: 1rem;
}
.section_service .wrap .service_box ul {
  line-height: 2;
}
.section_service .wrap .service_box ul li {
  border-bottom: 1.5px solid transparent;
  border-image: repeating-linear-gradient(to right, #fff 0, #fff 2px, transparent 1px, transparent 4px) 1;
}

.section_arsenal .arsenal_ttl h3 {
  font-size: 150%;
  border-bottom: #000 solid 1px;
  margin-bottom: 0.5rem;
}
.section_arsenal .arsenal_ttl p {
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.section_arsenal .arsenal_ttl ul {
  margin-bottom: 1.5rem;
}
.section_arsenal .arsenal_ttl ul li {
  position: relative;
  border: 1px solid #000;
  width: 40%;
  margin: 0 auto 0.5rem;
  font-weight: normal;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 5rem;
}
.section_arsenal .arsenal_ttl ul li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 4rem;
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-48%);
}
.section_arsenal .arsenal_ttl .arsenal_text span {
  font-weight: bold;
  margin-bottom: 2rem;
}
.section_arsenal .arsenal_box {
  margin: 0 auto;
  display: flex;
  border: #000 solid 1px;
  width: 82%;
}
.section_arsenal .arsenal_box figure {
  flex: 0 1 33%;
  box-sizing: border-box;
}
.section_arsenal .arsenal_box .arsenal_con {
  text-align: left;
  flex: 1;
  box-sizing: border-box;
}
.section_arsenal .arsenal_box .arsenal_con .arsenal_con_main {
  padding: 1.5rem;
  line-height: 1.35;
}
.section_arsenal .arsenal_box .arsenal_con .arsenal_con_main h4 {
  font-size: 130%;
  margin-bottom: 1rem;
}
.section_arsenal .arsenal_box .arsenal_con .arsenal_con_main p {
  font-weight: normal;
  margin-bottom: 1rem;
}
.section_arsenal .arsenal_box .arsenal_con .arsenal_con_main p span {
  font-weight: bold;
}
.section_arsenal .arsenal_box .arsenal_con .arsenal_con_collabo {
  background-color: #9e9e9e;
  padding: 1.5rem;
}
.section_arsenal .arsenal_partner {
  background: #fff;
  color: #000;
  margin-bottom: 1.5rem;
  /* ===== レスポンシブ ===== */
}
.section_arsenal .arsenal_partner .partner_wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 70vw;
  margin: 0 auto;
  border: 1px solid #000;
}
.section_arsenal .arsenal_partner .partner_img {
  flex: 1;
}
.section_arsenal .arsenal_partner .partner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section_arsenal .arsenal_partner .partner_text {
  flex: 1 1 30%;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.section_arsenal .arsenal_partner .partner_text .partner_text_ttl {
  padding: 2rem 2rem 1rem 2rem;
}
.section_arsenal .arsenal_partner .partner_text .partner_text_ttl h3 {
  font-size: 150%;
  font-weight: bold;
  margin-bottom: 1rem;
}
.section_arsenal .arsenal_partner .partner_text .partner_text_ttl h4 {
  font-weight: normal;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.section_arsenal .arsenal_partner .partner_text .partner_text_ttl h4 a {
  text-decoration: underline;
}
.section_arsenal .arsenal_partner .partner_text .partner_text_ttl p {
  line-height: 1.8;
  font-weight: normal;
}
.section_arsenal .arsenal_partner .partner_text .partner_detail {
  background: #f3f3f3;
  padding: 1.5rem;
  border-radius: 0.3rem;
}
.section_arsenal .arsenal_partner .partner_text .partner_detail p {
  margin-bottom: 0.5rem;
  font-weight: normal;
}
.section_arsenal .arsenal_partner .partner_text .partner_detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
}
.section_arsenal .arsenal_partner .partner_text .partner_detail ul li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.8;
}
.section_arsenal .arsenal_partner .partner_text .partner_detail ul li::before {
  content: "–";
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .section_arsenal .arsenal_partner .partner_wrap {
    flex-direction: column;
    max-width: 90vw;
  }
  .section_arsenal .arsenal_partner .partner_img,
  .section_arsenal .arsenal_partner .partner_text {
    flex: 1 1 100%;
    padding: 0;
  }
  .section_arsenal .arsenal_partner .partner_text {
    padding-top: 0rem;
  }
  .section_arsenal .arsenal_partner .partner_detail {
    padding: 1rem;
  }
}

.section_between .wrap {
  padding: 0rem 0;
}
.section_between p {
  font-size: 150%;
}

.section_business {
  background: #000;
  color: #fff;
  position: relative;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}
.section_business .wrap {
  padding: 3rem 0;
  max-width: 70vw;
  margin-top: 5rem;
}
.section_business .business_business .business_ttl {
  margin-top: 10rem;
}
.section_business .business_ttl {
  text-align: left;
  margin-bottom: 4rem;
}
.section_business .business_ttl span {
  font-size: 250%;
  display: block;
  position: relative;
  padding: 0 1rem 0.1rem 1rem;
  border-bottom: 1px solid #fff;
  line-height: 1.2;
}
.section_business .business_ttl span::before,
.section_business .business_ttl span::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 90%;
}
.section_business .business_ttl span::before {
  left: -0.75rem;
}
.section_business .business_ttl span::after {
  right: -0.75rem;
}
.section_business .business_ttl h2 {
  font-weight: normal;
  padding: 0 1rem;
  font-size: 120%;
}
.section_business .business_point {
  margin-bottom: 3rem;
}
.section_business .business_point h3 {
  font-size: 150%;
  border-bottom: #fff solid 1px;
  margin-bottom: 0.5rem;
}
.section_business .business_point p {
  font-weight: normal;
}
.section_business .business_contents {
  margin-bottom: 5rem;
}
.section_business .business_box {
  display: flex;
  gap: 2rem;
}
.section_business .business_box .business_box_photo {
  flex: 0 1 45%;
  box-sizing: border-box;
}
.section_business .business_box .business_box_photo figure {
  margin-bottom: 2.5rem;
}
.section_business .business_box .business_box_text {
  flex: 1;
  box-sizing: border-box;
  text-align: left;
}
.section_business .business_box .business_box_text .business_box_ditail {
  margin-bottom: 1.5rem;
}
.section_business .business_box .business_box_text .business_box_ditail h4 {
  font-size: 120%;
  color: #707070;
  margin-top: -0.8rem;
}
.section_business .business_box .business_box_text .business_box_ditail h4 span {
  font-size: 150%;
  margin-right: 0.5rem;
}
.section_business .business_box .business_box_text .business_box_ditail p {
  font-weight: normal;
}

.section_philosophy {
  background: #000;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/philosophy.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-top: -0.1rem;
}
.section_philosophy h3 {
  font-size: 150%;
  margin-bottom: 2rem;
}
.section_philosophy p {
  font-weight: normal;
  line-height: 2.5;
  margin-bottom: 10rem;
}
.section_philosophy h4 {
  font-size: 120%;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.section_company .wrap {
  padding: 8rem 0;
  max-width: 70vw;
}
.section_company .wrap .company_ttl {
  text-align: left;
  margin-bottom: 4rem;
}
.section_company .wrap .company_ttl span {
  font-size: 250%;
  display: block;
  position: relative;
  padding: 0 1rem 0.1rem 1rem;
  border-bottom: 1px solid #000;
  line-height: 1.2;
}
.section_company .wrap .company_ttl span::before,
.section_company .wrap .company_ttl span::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 90%;
}
.section_company .wrap .company_ttl span::before {
  left: -0.75rem;
}
.section_company .wrap .company_ttl span::after {
  right: -0.75rem;
}
.section_company .wrap .company_ttl h2 {
  font-weight: normal;
  padding: 0 1rem;
  font-size: 120%;
}
.section_company .wrap .company_con {
  margin-bottom: 5rem;
  text-align: center;
}
.section_company .wrap .company_con figure {
  width: 50%;
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
}
.section_company .wrap .company_con figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.5s ease-in-out;
}
.section_company .wrap .company_con figure img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.section_company .wrap .company_con figure:hover img:nth-of-type(1) {
  opacity: 0;
}
.section_company .wrap .company_con figure:hover img:nth-of-type(2) {
  opacity: 1;
}
.section_company .wrap .company_con .ceo {
  font-weight: normal;
  margin-bottom: 3rem;
}
.section_company .wrap .company_con h4 {
  font-size: 130%;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.section_company .wrap .company_biography,
.section_company .wrap .company_qualification {
  text-align: left;
}
.section_company .wrap .company_biography h4,
.section_company .wrap .company_qualification h4 {
  font-weight: normal;
  font-size: 120%;
  margin-bottom: 0.5rem;
}
.section_company .wrap .company_biography p,
.section_company .wrap .company_qualification p {
  font-weight: normal;
  margin-bottom: 2rem;
}
.section_company .wrap .company_biography p span,
.section_company .wrap .company_qualification p span {
  font-weight: bold;
  display: block;
  margin-left: 0;
  text-align: left;
}
.section_company .wrap .company_biography ul li,
.section_company .wrap .company_qualification ul li {
  display: flex; /* 横並びにする */
  align-items: flex-start; /* 上端をそろえる */
  border-bottom: #000 solid 1px;
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  gap: 1rem; /* 年と説明の間の余白 */
  justify-content: space-between;
}
.section_company .wrap .company_biography ul li::before,
.section_company .wrap .company_qualification ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 0.3em;
  height: 0.3em;
  background-color: #000;
  transform: rotate(45deg);
}
.section_company .wrap .company_biography ul li::first-line,
.section_company .wrap .company_qualification ul li::first-line {
  font-weight: bold;
}
.section_company .wrap .company_biography ul li span,
.section_company .wrap .company_qualification ul li span {
  flex: 0 1 63%;
  display: block;
  margin-left: 0;
  text-align: left;
  font-weight: normal;
}
.section_company .wrap .company_biography .company_biography_text,
.section_company .wrap .company_qualification .company_biography_text {
  font-weight: bold;
  margin-bottom: 4rem;
}
.section_company .wrap .company_qualification ul {
  font-weight: normal;
}

.section_other {
  background: #000;
  color: #fff;
  position: relative;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}
.section_other .wrap {
  padding-top: 10rem;
  padding-bottom: 8rem;
}
.section_other .wrap .ohter_ttl {
  margin-bottom: 3rem;
  display: inline-block;
}
.section_other .wrap .ohter_ttl h3 {
  font-size: 1000%;
  color: #a8a8a8;
}
.section_other .wrap .ohter_ttl h4 {
  font-size: 150%;
  margin-bottom: 2rem;
  font-weight: normal;
}
.section_other .wrap .ohter_ttl p {
  font-size: 130%;
  font-weight: normal;
}
.section_other .wrap .ohter_ttl p span {
  font-weight: bold;
}
.section_other .wrap .ohter_ttl ul {
  text-align: left;
  font-weight: normal;
  line-height: 2;
}
.section_other .wrap .ohter_ttl ul li {
  font-size: 150%;
  display: flex;
  align-items: center;
}
.section_other .wrap .ohter_ttl ul li span {
  font-size: 90%;
  margin-left: 4rem;
}
.section_other .biography {
  text-align: left;
  /* ===== レスポンシブ対応 ===== */
}
.section_other .biography .wrap {
  max-width: 70vw;
  margin: 0 auto;
  padding-top: 1rem;
}
.section_other .biography table {
  width: 100%;
  border-collapse: collapse;
}
.section_other .biography th,
.section_other .biography td {
  border-bottom: 1px solid #444;
  padding-top: 1.5rem;
  vertical-align: top;
  padding-bottom: 0.2rem;
}
.section_other .biography th {
  width: 20%;
  white-space: nowrap;
  font-weight: normal;
}
.section_other .biography td {
  line-height: 2;
  font-weight: normal;
}
.section_other .biography td a {
  text-decoration: underline;
}
.section_other .biography span {
  font-weight: normal;
}
@media (max-width: 768px) {
  .section_other .biography th,
  .section_other .biography td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 0.5rem 0;
  }
  .section_other .biography tr {
    border-bottom: 1px solid #444;
    padding: 0.5rem 0;
    display: block;
  }
  .section_other .biography th {
    font-size: 100%;
    color: #ccc;
  }
  .section_other .biography td {
    font-size: 100%;
  }
}

.section_line .wrap {
  padding-bottom: 10rem;
}
.section_line .wrap h3 {
  font-size: 300%;
}
.section_line .wrap p {
  font-weight: normal;
  font-size: 130%;
  margin-bottom: 1rem;
}
.section_line .wrap p span {
  font-weight: bold;
}
.section_line .wrap .line_button {
  width: 35%;
  margin: 0 auto;
}

.section_contact .wrap {
  max-width: 70vw;
}
.section_contact .wrap .contact_ttl {
  text-align: left;
  margin-bottom: 4rem;
}
.section_contact .wrap .contact_ttl span {
  font-size: 250%;
  display: block;
  position: relative;
  padding: 0 1rem 0.1rem 1rem;
  border-bottom: 1px solid #000;
  line-height: 1.2;
}
.section_contact .wrap .contact_ttl span::before,
.section_contact .wrap .contact_ttl span::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 88%;
}
.section_contact .wrap .contact_ttl span::before {
  left: -0.75rem;
}
.section_contact .wrap .contact_ttl span::after {
  right: -0.75rem;
}
.section_contact .wrap .contact_ttl h2 {
  font-weight: normal;
  padding: 0 1rem;
  font-size: 120%;
}

footer .footer_con {
  display: flex;
  gap: 3rem;
  background: #000;
  color: #fff;
  padding: 3rem 7rem;
}
footer .footer_con .footer_logo {
  flex: 0 1 35%;
  box-sizing: border-box;
}
footer .footer_con .footer_logo img {
  margin-bottom: 1.5rem;
}
footer .footer_con .footer_logo .security {
  text-align: left;
  font-weight: normal;
}
footer .footer_con .footer_logo .security a {
  text-decoration: underline;
}
footer .footer_con .footer_text {
  flex: 1;
  box-sizing: border-box;
  text-align: right;
  font-weight: normal;
}
footer .footer_con .footer_text span {
  font-size: 140%;
}
footer .copyright {
  font-size: 80%;
  padding: 1rem 0;
  font-weight: bold;
  letter-spacing: 0.05rem;
}

/* -----------------------------
   セキュリティページ
------------------------------- */
.security_policy {
  border-top: 1px solid #000;
  text-align: left;
}
.security_policy .wrap {
  max-width: 70vw;
  margin: 0 auto;
  padding: 4rem 0;
  line-height: 1.8;
}
.security_policy .wrap .policy_title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border-bottom: #b8b8b8 solid 1px;
  padding-bottom: 0.5rem;
}
.security_policy .wrap p {
  font-weight: normal;
  font-size: 90%;
}
.security_policy .wrap .policy_item {
  margin-top: 3rem;
}
.security_policy .wrap .policy_item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.security_policy .wrap .office_info,
.security_policy .wrap .footer_info {
  margin-top: 3rem;
  line-height: 1.7;
  font-size: 80%;
}
.security_policy .wrap .office_info a,
.security_policy .wrap .footer_info a {
  text-decoration: underline;
}

/* -----------------------------
   レスポンシブ対応
------------------------------- */
/*PCのみ*/
@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
@media (max-width: 1024px) {
  html,
  body {
    font-size: 2.5vw;
  }
  .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .br_pc {
    display: none;
  }
  .site_nav .nav_wrap {
    padding: 1rem 0;
  }
  .site_nav .nav_wrap h1 {
    width: 40%;
  }
  .section_service .wrap {
    max-width: 90vw;
  }
  .section_arsenal .arsenal_ttl ul li {
    width: 65%;
  }
  .section_arsenal .arsenal_partner .partner_wrap {
    max-width: 90vw;
  }
  .section_business .wrap {
    max-width: 90vw;
  }
  .section_business .business_ttl span::before,
  .section_business .business_ttl span::after {
    top: 87%;
  }
  .section_company .wrap {
    padding: 5rem 0;
    max-width: 90vw;
  }
  .section_other .wrap .ohter_ttl h3 {
    font-size: 600%;
  }
  .section_other .wrap .ohter_ttl ul li {
    font-size: 125%;
  }
  .section_other .biography .wrap {
    max-width: 90vw;
    padding-bottom: 4rem;
  }
  .section_company .wrap .company_biography ul li span,
  .section_company .wrap .company_qualification ul li span {
    flex: 0 1 45%;
  }
  .section_line .wrap {
    padding-bottom: 5rem;
  }
  .section_contact .wrap {
    max-width: 90vw;
  }
  footer .footer_con {
    padding: 2rem;
  }
  footer .footer_con .footer_text p {
    font-size: 55%;
  }
  footer .footer_con .footer_text span {
    font-size: 150%;
  }
  footer .footer_con .footer_logo .security {
    font-size: 70%;
  }
  footer .footer_con .footer_logo img {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  html,
  body {
    font-size: 4.5vw;
    line-height: 1.5;
  }
  .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .site_nav {
    border-top: #000 solid 6px;
  }
  .site_nav .nav_wrap h1 {
    width: 65%;
  }
  .site_nav .nav_wrap {
    padding: 1rem 0;
  }
  .main_visual {
    height: 70vh;
  }
  .main_visual h2 {
    font-size: 135%;
  }
  .section_about .about_con span {
    font-size: 100%;
    margin-bottom: 0.5rem;
    display: block;
  }
  .section_about .about_con h3 {
    font-size: 120%;
    line-height: 1.5;
  }
  .section_service .wrap {
    max-width: 90vw;
    padding-bottom: 5rem;
  }
  .section_service .wrap h2 {
    margin-bottom: 2rem;
  }
  .section_service .wrap .service_box .service_ttl {
    flex-direction: column;
    align-items: flex-start;
  }
  .section_service .wrap .service_box .service_ttl h3 {
    order: 1;
  }
  .section_service .wrap .service_box .service_ttl p {
    order: 2;
    margin-top: 0.3rem;
    font-size: 100%;
  }
  .section_service .wrap .service_box ul {
    line-height: 1.5;
  }
  .section_service .wrap .service_box ul li {
    padding: 0.5rem 0;
  }
  .section_service {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
  .section_arsenal .arsenal_ttl ul li {
    width: 100%;
    padding-left: 3rem;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
  }
  .section_arsenal .arsenal_ttl ul li::before {
    left: 1rem;
  }
  .section_arsenal .arsenal_partner .partner_text .partner_text_ttl {
    padding: 1.5rem;
  }
  .section_arsenal .arsenal_partner .partner_text .partner_text_ttl p {
    line-height: 1.5;
  }
  .section_arsenal .arsenal_partner .partner_text .partner_text_ttl h3 {
    margin-bottom: 0.5rem;
  }
  .section_between p {
    font-size: 110%;
  }
  .section_business {
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%);
  }
  .section_business .wrap {
    padding: 1rem 0;
    max-width: 90vw;
    margin-top: 1rem;
  }
  .section_business .business_ttl span {
    padding: 4rem 1rem 0.1rem 1rem;
    font-size: 200%;
  }
  .section_business .business_ttl h2 {
    padding: 0.2rem 1rem;
    font-size: 110%;
  }
  .section_business .business_business .business_ttl {
    margin-top: 1rem;
  }
  .section_business .business_ttl {
    margin-bottom: 2rem;
  }
  .section_business .business_ttl span::before,
  .section_business .business_ttl span::after {
    width: 0.6rem;
    height: 0.6rem;
    top: 97%;
  }
  .section_business .business_ttl span::before {
    left: -0.5rem;
  }
  .section_business .business_ttl span::after {
    right: -0.5rem;
  }
  .section_business .business_box {
    flex-direction: column;
  }
  .section_business .business_point h3 {
    font-size: 130%;
  }
  .section_business .business_point {
    margin-bottom: 2rem;
  }
  .section_business .business_box .business_box_photo figure {
    margin-bottom: 0rem;
  }
  .section_business .business_contents {
    margin-bottom: 0rem;
  }
  .section_philosophy h3 {
    font-size: 140%;
    margin-bottom: 1rem;
  }
  .section_philosophy {
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
  }
  .section_philosophy p {
    margin-bottom: 4rem;
    line-height: 2;
    font-size: 95%;
  }
  .section_company .wrap {
    padding: 3rem 0;
    max-width: 90vw;
  }
  .section_company .wrap .company_ttl span::before {
    left: -0.5rem;
  }
  .section_company .wrap .company_ttl span::after {
    right: -0.5rem;
  }
  .section_company .wrap .company_ttl span {
    padding: 0rem 1rem 0.1rem 1rem;
    font-size: 200%;
  }
  .section_company .wrap .company_ttl h2 {
    padding: 0.2rem 1rem;
    font-size: 110%;
  }
  .section_company .wrap .company_ttl span::before,
  .section_company .wrap .company_ttl span::after {
    width: 0.6rem;
    height: 0.6rem;
    top: 90%;
  }
  .section_company .wrap .company_ttl {
    margin-bottom: 2rem;
  }
  .section_company .wrap .company_con figure {
    width: 70%;
    margin: 0 auto 0.5rem;
  }
  .section_company .wrap .company_con .ceo {
    margin-bottom: 1rem;
  }
  .section_company .wrap .company_con h4 {
    font-size: 105%;
    line-height: 1.8;
  }
  .section_company .wrap .company_con {
    margin-bottom: 3rem;
  }
  .section_company .wrap .company_biography ul li,
  .section_company .wrap .company_qualification ul li {
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .section_company .wrap .company_biography ul li span,
  .section_company .wrap .company_qualification ul li span {
    margin-bottom: 0.5rem;
  }
  .section_company .wrap .company_biography p,
  .section_company .wrap .company_qualification p {
    margin-bottom: 1rem;
  }
  .section_company .wrap .company_biography .company_biography_text,
  .section_company .wrap .company_qualification .company_biography_text {
    margin-bottom: 2rem;
  }
  .section_company .wrap .company_biography ul li::before,
  .section_company .wrap .company_qualification ul li::before {
    top: 0.5em;
    width: 0.5em;
    height: 0.5em;
  }
  .section_other {
    clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%);
  }
  .section_other .wrap {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .section_other .wrap .ohter_ttl {
    display: block;
  }
  .section_other .wrap .ohter_ttl h3 {
    font-size: 350%;
  }
  .section_other .wrap .ohter_ttl h4 {
    font-size: 130%;
    margin-bottom: 1rem;
  }
  .section_other .wrap .ohter_ttl p {
    font-size: 93%;
  }
  .section_other .wrap .ohter_ttl ul li {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 140%;
  }
  .section_other .wrap .ohter_ttl ul li span {
    font-size: 80%;
    margin-left: 0rem;
    display: block;
  }
  .section_other .wrap .ohter_ttl ul {
    line-height: 1.5;
  }
  .section_other .biography .wrap {
    max-width: unset;
  }
  .section_line .wrap {
    padding-bottom: 2rem;
    padding: 1rem 0;
  }
  .section_line .wrap p {
    font-size: 100%;
  }
  .section_line .wrap h3 {
    font-size: 230%;
  }
  .section_contact .wrap {
    max-width: 90vw;
  }
  .section_line .wrap .line_button {
    width: 80%;
  }
  .section_contact .wrap .contact_ttl span {
    padding: 0rem 1rem 0.1rem 1rem;
    font-size: 200%;
  }
  .section_contact .wrap .contact_ttl h2 {
    padding: 0.2rem 1rem;
    font-size: 110%;
  }
  .section_contact .wrap .contact_ttl span::before {
    left: -0.5rem;
  }
  .section_contact .wrap .contact_ttl span::after {
    right: -0.5rem;
  }
  .section_contact .wrap .contact_ttl {
    margin-bottom: 2rem;
  }
  .section_contact .wrap .contact_ttl span::before,
  .section_contact .wrap .contact_ttl span::after {
    width: 0.6rem;
    height: 0.6rem;
    top: 90%;
  }
  footer .footer_con {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  footer .footer_con .footer_logo {
    width: 95%;
    margin: 0 auto;
    margin-top: 1rem;
  }
  footer .footer_con .footer_logo .security {
    text-align: center;
  }
  footer .footer_con .footer_text {
    text-align: center;
  }
  footer .footer_con .footer_text p {
    font-size: 80%;
  }
  footer .footer_con .footer_text span {
    font-size: 130%;
  }
  .security_policy .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .security_policy .wrap .policy_title {
    font-size: 1.6rem;
  }
  .security_policy .wrap .policy_item h3 {
    font-size: 1.2rem;
  }
  .security_policy .wrap p {
    font-size: 0.95rem;
  }
}
/*# sourceMappingURL=style.css.map */
