@charset "UTF-8";
.border {
  max-width: 1000px;
  margin: 0 auto;
  border: 0;
  height: 1px;
  background-color: #4C4C4C;
}
@media screen and (max-width: 767px) {
  .border {
    max-width: 315px;
  }
}

@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

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

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

html {
  scroll-behavior: smooth;
}

html.is-fixed {
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #4C4C4C;
}
body.is-fixed {
  overflow: hidden;
}

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

header a, footer a {
  transition: all 0.3s ease;
}
header a:hover, footer a:hover {
  opacity: 0.5;
}

.btn-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 250px;
  padding: 16px 0;
  background-color: #15A8CB;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.btn:hover {
  opacity: 0.5;
}

.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 45px;
  height: 45px;
  margin-right: 15px;
  border: #006B8F 1px solid;
  border-radius: 5px;
  background: #FFFFFF;
  cursor: pointer;
  z-index: 300;
}
.hamburger.blue {
  border: #006B8F 1px solid;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  width: 33%;
  height: 1px;
  background: #006B8F;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 768px) {
  .menu_contents {
    display: none;
  }
}
.menu_list {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  background: #006B8F;
  list-style: none;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 200;
}
.menu_list.active {
  transform: translateX(0);
}
.menu_item {
  margin-left: 30px;
}
.menu_item_about, .menu_item_information, .menu_item_contact {
  margin-top: 10px;
}

.header {
  width: 100%;
  min-height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  box-sizing: border-box;
  z-index: 300;
}
@media screen and (max-width: 767px) {
  .header {
    min-height: 75px;
  }
}
.header.blue {
  color: #006B8F;
}
.header_logo img {
  width: auto;
  display: block;
  margin-left: 20px;
  height: 45px;
}
@media screen and (max-width: 767px) {
  .header_logo img {
    margin-left: 15px;
  }
}
.header .nav_list {
  display: flex;
  gap: 20px;
  list-style: none;
}
@media (min-width: 768px) {
  .header .nav_list {
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header .nav_list {
    display: none;
  }
}
.header .nav_list li {
  font-size: 15px;
}

.footer {
  background-color: #006B8F;
  color: #FFFFFF;
  padding: 50px 0 45px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px;
  }
}
.footer_container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 66px;
}
@media screen and (max-width: 767px) {
  .footer_container {
    flex-direction: column;
  }
}
.footer_logo {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    height: 40px;
  }
}
.footer_list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(3, auto);
  gap: 3px 50px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .footer_list {
    margin-top: 30px;
    grid-template-columns: repeat(1, auto);
    grid-template-rows: repeat(4, auto);
    gap: 5px;
  }
}
.footer_item {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.footer_item span {
  padding-left: 9px;
}
.footer_item_home {
  grid-column: 1;
  grid-row: 1;
}
.footer_item_about {
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .footer_item_about {
    grid-column: 1;
    grid-row: 2;
    margin-top: 15px;
  }
}
.footer_item_service {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 767px) {
  .footer_item_service {
    grid-column: 1;
    grid-row: 3;
  }
}
.footer_item_profile {
  grid-column: 2;
  grid-row: 3;
}
@media screen and (max-width: 767px) {
  .footer_item_profile {
    grid-column: 1;
    grid-row: 4;
  }
}
.footer_item_information {
  grid-column: 3;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .footer_item_information {
    grid-column: 1;
    grid-row: 5;
    margin-top: 15px;
  }
}
.footer_item_contact {
  grid-column: 4;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .footer_item_contact {
    grid-column: 1;
    grid-row: 6;
    margin-top: 15px;
  }
}
.footer .copy {
  color: rgba(225, 225, 225, 0.5);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer .copy {
    width: 1000px;
  }
}

.contents_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents_title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }
}

.contents_text {
  margin-top: 35px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents_text {
    margin-top: 20px;
  }
}

.top_title {
  margin: 80px 0 45px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_title {
    margin: 80px 0 40px;
  }
}
.top_title span::before {
  content: "\a";
  white-space: pre-line;
}

.top_section_bottom {
  padding-bottom: 20px;
}

.fv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #FFFFFF;
  font-weight: 500;
  background-color: #006B8F;
  overflow: hidden;
}
.fv .fv_content {
  text-align: center;
}
.fv .copy {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fv .copy {
    font-size: 30px;
    line-height: 1.7;
  }
}
.fv .sub-copy {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fv .sub-copy {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.7;
  }
}

.slider {
  overflow: hidden;
  z-index: 10;
  width: 100%;
}
.slider__track {
  display: flex;
  gap: 0;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 110s linear infinite;
  will-change: transform;
}
.slider_top {
  position: absolute;
  top: -23px;
}
@media screen and (max-width: 767px) {
  .slider_top {
    top: 0;
  }
}
.slider_bottom {
  position: absolute;
  bottom: -26px;
}
@media screen and (max-width: 767px) {
  .slider_bottom {
    bottom: -20px;
  }
}
.slider img {
  width: auto;
  height: clamp(60px, 38vh, 304px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .slider img {
    height: clamp(60px, 34vh, 225px);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.issues .issues__list {
  box-sizing: border-box;
  max-width: 760px;
  padding: 35px 65px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 70px;
  list-style: none;
  border: #E1E1E1 1px solid;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .issues .issues__list {
    max-width: 315px;
    padding: 30px 28px 30px 44px;
    margin: 0 auto 30px;
    grid-template-columns: inherit;
    gap: 15px 0;
  }
}
.issues .issues__list li {
  position: relative;
  padding-left: 8px; /* アイコン分の余白 */
  line-height: 1.4;
}
.issues .issues__list li::before {
  position: absolute;
  content: "";
  top: 0.2em;
  left: -16px;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_checkbox.svg);
  background-size: contain;
}
.issues p {
  text-align: center;
}

.top_about .top_about_contents {
  display: flex;
  gap: 45px;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_about .top_about_contents {
    max-width: 315px;
    flex-direction: column;
    margin: 0 auto 40px;
  }
}
.top_about .top_about_contents .top_about_article {
  max-width: 400px;
}
.top_about .top_about_contents .top_about_article img {
  width: 100%;
  height: auto;
  border: #E1E1E1 1px solid;
  border-radius: 5px;
}
.top_about .top_about_contents .top_about_article dt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top_about .top_about_contents .top_about_article dt {
    letter-spacing: 0;
  }
}
.top_about .top_about_contents .top_about_article dd {
  margin-top: 5px;
}

.top_service_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 840px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_service_list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 315px;
  }
}
.top_service_item {
  position: relative;
  transition: all 0.3s ease;
}
.top_service_item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: auto;
  height: 100%;
  padding: 74px 0;
  box-sizing: border-box;
}
.top_service_item a::before, .top_service_item a::after {
  width: 25px;
  height: 25px;
  position: absolute;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.top_service_item:hover {
  background-color: rgba(150, 216, 231, 0.5);
}
.top_service_item:hover::before, .top_service_item:hover::after,
.top_service_item:hover a::before,
.top_service_item:hover a::after {
  transform: scale(2);
}
.top_service_item::before, .top_service_item::after {
  position: absolute;
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.top_service_item_advice {
  border-radius: 10px 0 0 0;
}
.top_service_item_advice::before {
  content: "";
  background: url(../images/r_left_top.svg) no-repeat;
  transform-origin: left top;
}
.top_service_item_advice a::before {
  top: 0;
  right: 0;
  content: "";
  background: url(../images/right_top.svg) no-repeat;
  transform-origin: right top;
}
.top_service_item_advice a::after {
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/right_bottom.svg) no-repeat;
  transform-origin: right bottom;
}
.top_service_item_advice::after {
  bottom: 0;
  content: "";
  background: url(../images/left_bottom.svg) no-repeat;
  transform-origin: left bottom;
}
@media screen and (max-width: 767px) {
  .top_service_item_seminar {
    border-radius: 0 10px 0 0;
  }
}
.top_service_item_seminar::before {
  left: -1px;
  content: "";
  background: url(../images/left_top.svg) no-repeat;
  transform-origin: left top;
}
.top_service_item_seminar a::before {
  top: 0;
  right: 0;
  content: "";
  background: url(../images/right_top.svg) no-repeat;
  transform-origin: right top;
}
@media screen and (max-width: 767px) {
  .top_service_item_seminar a::before {
    background: url(../images/r_right_top.svg) no-repeat;
  }
}
.top_service_item_seminar a::after {
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/right_bottom.svg) no-repeat;
  transform-origin: right bottom;
}
.top_service_item_seminar::after {
  left: -1px;
  bottom: 0;
  content: "";
  background: url(../images/left_bottom.svg) no-repeat;
  transform-origin: left bottom;
}
.top_service_item_audit {
  border-radius: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  .top_service_item_audit {
    border-radius: 0;
  }
}
.top_service_item_audit::before {
  left: -1px;
  content: "";
  background: url(../images/left_top.svg) no-repeat;
  transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .top_service_item_audit::before {
    top: -1px;
    left: 0;
  }
}
.top_service_item_audit a::before {
  top: 0;
  right: 0;
  content: "";
  background: url(../images/r_right_top.svg) no-repeat;
  transform-origin: right top;
}
@media screen and (max-width: 767px) {
  .top_service_item_audit a::before {
    top: -1px;
    background: url(../images/right_top.svg) no-repeat;
  }
}
.top_service_item_audit a::after {
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/right_bottom.svg) no-repeat;
  transform-origin: right bottom;
}
.top_service_item_audit::after {
  left: -1px;
  bottom: 0;
  content: "";
  background: url(../images/left_bottom.svg) no-repeat;
  transform-origin: left bottom;
}
@media screen and (max-width: 767px) {
  .top_service_item_audit::after {
    left: 0;
  }
}
.top_service_item_compliance {
  border-radius: 0 0 0 10px;
}
@media screen and (max-width: 767px) {
  .top_service_item_compliance {
    border-radius: 0;
  }
}
.top_service_item_compliance::before {
  top: -1px;
  left: 0;
  content: "";
  background: url(../images/left_top.svg) no-repeat;
  transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .top_service_item_compliance::before {
    left: -1px;
  }
}
.top_service_item_compliance a::before {
  top: -1px;
  right: 0;
  content: "";
  background: url(../images/right_top.svg) no-repeat;
  transform-origin: right top;
}
.top_service_item_compliance a::after {
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/right_bottom.svg) no-repeat;
  transform-origin: right bottom;
}
.top_service_item_compliance::after {
  left: 0;
  bottom: 0;
  content: "";
  background: url(../images/r_left_bottom.svg) no-repeat;
  transform-origin: left bottom;
}
@media screen and (max-width: 767px) {
  .top_service_item_compliance::after {
    left: -1px;
    background: url(../images/left_bottom.svg) no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .top_service_item_risk {
    border-radius: 0 0 0 10px;
  }
}
.top_service_item_risk::before {
  top: -1px;
  left: -1px;
  content: "";
  background: url(../images/left_top.svg) no-repeat;
  transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .top_service_item_risk::before {
    top: -1px;
    left: 0;
  }
}
.top_service_item_risk a::before {
  top: -1px;
  right: 0;
  content: "";
  background: url(../images/right_top.svg) no-repeat;
  transform-origin: right top;
}
.top_service_item_risk a::after {
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/right_bottom.svg) no-repeat;
  transform-origin: right bottom;
}
.top_service_item_risk::after {
  left: -1px;
  bottom: 0;
  content: "";
  background: url(../images/left_bottom.svg) no-repeat;
  transform-origin: left bottom;
}
@media screen and (max-width: 767px) {
  .top_service_item_risk::after {
    left: 0;
    background: url(../images/r_left_bottom.svg) no-repeat;
  }
}
.top_service_item_governance {
  border-radius: 0 0 10px 0;
}
.top_service_item_governance::before {
  top: -1px;
  left: -1px;
  content: "";
  background: url(../images/left_top.svg) no-repeat;
  transform-origin: left top;
}
.top_service_item_governance a::before {
  top: -1px;
  right: 0;
  content: "";
  background: url(../images/right_top.svg) no-repeat;
  transform-origin: right top;
}
.top_service_item_governance a::after {
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/r_right_bottom.svg) no-repeat;
  transform-origin: right bottom;
}
.top_service_item_governance::after {
  left: -1px;
  bottom: 0;
  content: "";
  background: url(../images/left_bottom.svg) no-repeat;
  transform-origin: left bottom;
}
.top_service_item p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .top_service_item p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
.top_service_icon {
  display: inline-block;
  width: 55px;
  height: 55px;
}

.top_information .top_information_list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .top_information .top_information_list {
    max-width: 315px;
  }
}
.top_information .top_information_list .top_information_item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
@media screen and (max-width: 767px) {
  .top_information .top_information_list .top_information_item {
    flex-direction: column;
    gap: 5px;
  }
}
.top_information .top_information_list .top_information_item time {
  flex-shrink: 0;
  width: 110px;
}
.top_information .top_information_list .top_information_item:last-child {
  margin-top: 35px;
}

.top_contact p {
  text-align: center;
  margin-bottom: 40px;
}

.note {
  background-color: #96D8E7;
  max-width: 500px;
  margin: 80px auto 100px;
  padding: 20px 0 33px;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .note {
    max-width: 315px;
    margin-bottom: 80px;
  }
}
.note h3 {
  margin-bottom: 10px;
}
.note img {
  width: 210px;
  height: auto;
  margin: 0 auto;
}
.note p {
  margin-bottom: 25px;
}

.about_inner {
  max-width: 800px;
  margin: 150px auto 80px;
}
@media screen and (max-width: 767px) {
  .about_inner {
    max-width: 315px;
    margin: 125px auto 70px;
  }
}
.about_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 25px;
  margin: 50px auto 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .about_list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.about_list li {
  padding: 30px 32px;
  background-color: #96D8E7;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .about_list li {
    padding: 30px 32px 40px;
  }
}
.about_list li h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #006B8F;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .about_list li h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }
}
.about_list li h3 span {
  font-size: 14px;
}
.about_list li h3 span::before {
  content: "\a";
  white-space: pre-line;
}
.about_list li p {
  margin-top: 20px;
}
.about_item_governance {
  grid-column: 1;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .about_item_governance {
    grid-column: 1;
    grid-row: 1;
  }
}
.about_item_risk {
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .about_item_risk {
    grid-column: 1;
    grid-row: 2;
  }
}
.about_item_compliance {
  grid-column: 3;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .about_item_compliance {
    grid-column: 1;
    grid-row: 3;
  }
}
.about_item_expert {
  grid-column: 1/-1;
  grid-row: 2;
}
@media screen and (max-width: 767px) {
  .about_item_expert {
    grid-column: 1;
    grid-row: 4;
  }
}
.about_item_description {
  background-color: #FFFFFF;
  margin-top: 20px;
  padding: 22px;
  border-radius: 5px;
}
.about_item_description_title {
  margin-top: 0 !important;
}
.about_item_description_text {
  margin-top: 10px !important;
}
.about .feature_list {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .about .feature_list {
    margin-top: 65px;
  }
}
.about .feature_list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about .feature_list li {
    flex-direction: column;
  }
}
.about .feature_list li:first-child {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .about .feature_list li:first-child {
    margin-bottom: 50px;
  }
}
.about .feature_list li img {
  max-width: 350px;
  border: #E1E1E1 1px solid;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .about .feature_list li img {
    max-width: 315px;
  }
}
.about .feature_list li .feature_description {
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .about .feature_list li .feature_description {
    margin-top: 30px;
  }
}
.about .feature_list li .feature_description h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.about .feature_list li .feature_description p {
  margin-top: 15px;
}
.about .btn-center {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .about .btn-center {
    margin-top: 40px;
  }
}

.profile_inner {
  margin: 80px auto;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .profile_inner {
    margin: -75px auto 80px;
    padding-top: 145px;
    max-width: 315px;
  }
}
.profile h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
.profile_contents {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 80px auto 100px;
}
@media screen and (max-width: 767px) {
  .profile_contents {
    margin: 40px auto 80px;
    flex-direction: column;
  }
}
.profile_contents img {
  max-width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .profile_contents img {
    max-width: 315px;
  }
}
.profile_description {
  max-width: 400px;
}
.profile_name {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .profile_name {
    margin-top: 20px;
  }
}
.profile_text, .profile_qualification {
  margin-top: 15px;
}
.profile_qualification {
  padding: 15px 20px;
  border: #E1E1E1 1px solid;
  border-radius: 5px;
}
.profile_qualification ul {
  padding-left: 1.5em;
}

.service_inner {
  max-width: 800px;
  margin: 150px auto 100px;
}
@media screen and (max-width: 767px) {
  .service_inner {
    max-width: 315px;
    margin: 125px auto 60px;
  }
}
.service_item {
  margin: 65px auto;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .service_item {
    margin: 100px auto;
  }
}
.service_item_text {
  margin-top: 20px;
}
.service_item_title {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-left: 60px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .service_item_title {
    margin-left: 0;
    text-align: center;
    line-height: 1.7;
  }
}
.service_item_title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -60px;
  width: 45px;
  height: 45px;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .service_item_title::before {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.service_item_advice h3::before {
  background-image: url(../images/icon_service_advice.svg);
}
.service_item_advice .btn-center {
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .service_item_advice .btn-center {
    text-align: center;
  }
}
.service_item_seminar h3::before {
  background-image: url(../images/icon_service_seminar.svg);
}
.service_item_seminar .seminar_example {
  margin-top: 20px;
  padding: 25px;
  border: #E1E1E1 1px solid;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .service_item_seminar .seminar_example {
    padding: 20px;
  }
}
.service_item_seminar .seminar_example_text {
  margin-top: 15px;
}
.service_item_audit h3::before {
  background-image: url(../images/icon_service_audit.svg);
}
.service_item_compliance h3::before {
  background-image: url(../images/icon_service_compliance.svg);
}
.service_item_risk h3::before {
  background-image: url(../images/icon_service_risk.svg);
}
.service_item_governance h3::before {
  background-image: url(../images/icon_servie_governance.svg);
}

.information_inner {
  max-width: 700px;
  margin: 150px auto 100px;
}
@media screen and (max-width: 767px) {
  .information_inner {
    max-width: 315px;
    margin: 125px auto 60px;
  }
}
.information_list {
  list-style: none;
  padding: 0;
  margin: 55px auto 40px;
}
.information_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  gap: 9px;
}
@media screen and (max-width: 767px) {
  .information_item {
    flex-direction: column;
  }
}
.information_item time {
  flex-shrink: 0;
  width: 110px;
}

.contact_inner {
  max-width: 730px;
  margin: 150px auto 100px;
}
@media screen and (max-width: 767px) {
  .contact_inner {
    max-width: 315px;
    margin: 125px auto 60px;
  }
}
.contact_form {
  display: flex;
  flex-direction: column;
  margin-top: 55px;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .contact_form {
    margin-top: 40px;
    gap: 30px;
  }
}
.contact_row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media screen and (max-width: 767px) {
  .contact_row {
    grid-template-columns: 1fr;
  }
}
.contact_row label {
  font-size: 1rem;
}
.contact_row input,
.contact_row textarea {
  width: 100%;
  padding: 7px;
  border: #E1E1E1 1px solid;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}
@media screen and (max-width: 767px) {
  .contact_row input,
  .contact_row textarea {
    margin-top: 10px;
  }
}
.contact_row textarea {
  resize: vertical;
  min-height: 160px;
}
.contact_row_textarea {
  align-items: center;
}
.contact_privacy {
  text-align: center;
}
.contact_privacy label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.contact_privacy a {
  text-decoration: underline;
}
.contact_privacy a:hover {
  opacity: 0.5;
}
.contact_button {
  text-align: center;
}
.contact_button input {
  min-width: 250px;
  margin-top: 10px;
  padding: 16px 0;
  border: none;
  border-radius: 4px;
  background: #15A8CB;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  transition: opacity 0.2s;
}
.contact_button input:hover {
  opacity: 0.5;
}

.privacy_policy_inner {
  max-width: 730px;
  margin: 150px auto 100px;
}
@media screen and (max-width: 767px) {
  .privacy_policy_inner {
    max-width: 315px;
    margin: 125px auto 60px;
  }
}
.privacy_policy_contents {
  margin-top: 35px;
}
.privacy_policy h3 {
  margin: 30px auto 15px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.privacy_policy ul {
  margin-top: 10px;
  padding-left: 1.5em;
}
.privacy_policy th, .privacy_policy td {
  font-size: 16px;
  font-weight: 400;
  min-width: 100px;
  padding: 5px 0;
  text-align: left;
  vertical-align: top;
}/*# sourceMappingURL=stylesheet.css.map */