@charset "UTF-8";
#main.addsafe {
  padding: 0;
}

ul li {
  list-style: none;
}

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

.l-header__block__search {
  margin-top: 0;
}

/* =========================================================
  調整クラス
========================================================= */
/* カラー
--------------------------------------------------------- */
:root {
  --green: #04B2B2;
  --blue: #0062C2;
  --lightblue: #00A2E9;
}

.color-green {
  color: var(--green);
}

.color-blue {
  color: var(--blue);
}

.color-lightblue {
  color: var(--lightblue);
}

.colo-white {
  color: #fff;
}

.bg-green {
  background: var(--green);
}

.bg-green-2 {
  background: rgba(4, 178, 178, 0.6);
}

.bg-blue {
  background: var(--blue);
}

.bg-lightblue {
  background: var(--lightblue);
}

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #d8d8d8;
}

.bg-gray-2 {
  background: #F0EFEF;
}

.bg-gradation {
  background: rgb(0, 98, 194);
  background: linear-gradient(45deg, rgba(0, 98, 194, 0.15) 0%, rgba(0, 164, 172, 0.15) 50%, rgba(0, 175, 236, 0.15) 100%);
}

/* ブロック要素
--------------------------------------------------------- */
.block-reset {
  display: inline-block;
  width: 100%;
}

/* レスポンシブ表示
--------------------------------------------------------- */
.pc-only {
  display: block;
}

.pc-tb {
  display: block;
}

.tb-only {
  display: none;
}

.sp-only {
  display: none;
}

@media (max-width: 1239px) {
  .pc-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
@media (max-width: 719px) {
  .pc-only {
    display: none;
  }
  .pc-tb {
    display: none;
  }
  .tb-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/* 改行
--------------------------------------------------------- */
.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

@media (max-width: 719px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/* フォント
--------------------------------------------------------- */
.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.align-left {
  text-align: left !important;
}

.fz-30 {
  font-size: 3rem;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-12 {
  font-size: 1.2rem;
}

.normal {
  font-weight: normal;
}

@media (max-width: 719px) {
  .sp-align-center {
    text-align: center !important;
  }
  .sp-align-right {
    text-align: right !important;
  }
  .sp-align-left {
    text-align: left !important;
  }
  .sp-fz-24 {
    font-size: 2.4rem;
  }
  .sp-fz-14 {
    font-size: 1.4rem;
  }
}
/* マージン
--------------------------------------------------------- */
.mg-auto {
  margin: 0 auto;
}

@media only screen and (min-width: 720px) {
  .mt-lg-155 {
    margin-top: 155px;
  }
}
/* レイアウト
--------------------------------------------------------- */
.grid {
  display: grid;
  width: 100%;
  height: auto;
}

.grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

@media (max-width: 719px) {
  .grid.sp-col-1 {
    grid-template-columns: 1fr;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
}

.align-item-center {
  align-items: center;
}

.between {
  justify-content: space-between;
}

@media (max-width: 719px) {
  .sp-colunm {
    flex-direction: column;
  }
}
/* =========================================================
  CVボタン
========================================================= */
.floating-banner {
  position: fixed;
  z-index: 4;
  bottom: 0;
  right: 0;
  display: none;
  width: 100%;
}

.floating-banner .contact-list {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: end;
}

.floating-banner .contact-list li {
  border-radius: 6px 6px 0 0;
  background: #fff;
}

.floating-banner .contact-list li a {
  height: 63px;
  align-items: center;
  border-radius: 4px 4px 0 0;
}

@media only screen and (max-width: 719px) {
  .page-top {
    padding: 0 20px;
  }
  .floating-banner img {
    width: 22px;
    height: 22px;
  }
  .floating-banner .contact-list li a {
    min-width: 136px;
    height: 42px;
    font-size: 1.2rem;
  }
}
/* =========================================================
  コンテンツ内 共通パーツ
========================================================= */
/* フォント
--------------------------------------------------------- */
main h2,
main h3 {
  text-align: center;
}

main h2 {
  font-size: 4.2rem;
  line-height: 1.4;
}

main h3 {
  font-size: 3.2rem;
  line-height: 1.4;
}

main h4 {
  font-size: 2.6rem;
}

main p {
  font-size: 1.8rem;
}

@media (max-width: 719px) {
  main h2 {
    font-size: 2.8rem;
  }
  main h3 {
    font-size: 2.4rem;
  }
  main h4 {
    font-size: 2rem;
  }
  main p {
    font-size: 1.6rem;
  }
}
.long-url {
  word-wrap: break-word;
}

/* content-inner
--------------------------------------------------------- */
.content-inner {
  max-width: 1220px;
  padding: 105px 20px;
  margin: 0 auto;
}

.content-inner.w-976 {
  max-width: 976px;
}

@media (max-width: 719px) {
  .content-inner {
    padding: 45px 20px;
  }
}
/* contact-list
--------------------------------------------------------- */
.contact-list {
  display: flex;
  align-items: center;
}

.contact-list li a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 200px;
  padding: 6px 16px;
  font-size: 1.6rem;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
}

.contact-list li a:hover {
  opacity: 0.8;
}

.contact-list .contact-btn {
  background: var(--blue);
}

.contact-list .download-btn {
  background: var(--green);
}

/* 動画モーダル
--------------------------------------------------------- */
/* #sk-wrap .m-box-modal_movie {
  top: 0;
} */
/* =========================================================
  コンテンツ
========================================================= */
/* sub-nav
--------------------------------------------------------- */
.sub-nav {
  padding: 15px 20px;
  border-top: 1px solid #E3E3E3;
}

.sub-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.sub-nav .logo {
  width: 100%;
  max-width: 359px;
}

.sub-nav .contact-list {
  gap: 10px;
}

@media (max-width: 1239px) {
  .sub-nav .logo {
    max-width: 193px;
  }
}
@media (max-width: 719px) {
  .sub-nav {
    margin-bottom: 6px;
  }
  .sub-nav .contact-list li a {
    min-width: 33px;
    min-height: 33px;
    padding: 0;
  }
  .sub-nav .contact-btn img {
    width: 18px;
  }
}
/* MV
--------------------------------------------------------- */
.MV-content {
  position: relative;
  height: 100vh;
  max-height: 675px;
  background: url(../img/addsafe_mv.jpg) no-repeat center/cover;
}

.MV-content::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  top: 0;
  left: 0;
  width: 53%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='808.177' height='674.671' viewBox='0 0 808.177 674.671'%3E%3Cdefs%3E%3ClinearGradient id='linear-gradient' x2='1' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%2300afec'/%3E%3Cstop offset='0.493' stop-color='%2300a4ac'/%3E%3Cstop offset='1' stop-color='%230062c2'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M674.671,324.367,0,0V808.177H674.671Z' transform='translate(808.177) rotate(90)' fill='url(%23linear-gradient)'/%3E%3C/svg%3E%0A") no-repeat right center/cover;
}

.MV-inner {
  position: relative;
  top: 60px;
  z-index: 1;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.MV-inner h1 {
  font-size: 7rem;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .MV-inner h1 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
}

.MV-inner p {
  color: #fff;
  font-size: 2.5rem;
}

.MV-inner img {
  width: 100%;
  max-width: 303px;
}

.MV-inner::after {
  content: "";
  display: block;
  width: 268px;
  height: 262px;
  margin-top: 50px;
  background: url(../img/addsafe_mv_img01.png) no-repeat center/contain;
}

@media (max-width: 1239px) {
  .MV-content {
    max-height: 565px;
  }
  .MV-inner::after {
    width: 218px;
    height: 212px;
    margin-top: 30px;
  }
  .MV-inner h1 {
    font-size: 6rem;
  }
}
@media (max-width: 719px) {
  .MV-content {
    max-height: 340px;
    background-image: url(../img/addsafe_mv_sp.jpg);
    height: 1;
  }
  .MV-content::after {
    width: 80%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='335' height='340' viewBox='0 0 335 340'%3E%3Cdefs%3E%3ClinearGradient id='linear-gradient' x2='1' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%2300afec'/%3E%3Cstop offset='0.493' stop-color='%2300a4ac'/%3E%3Cstop offset='1' stop-color='%230062c2'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M340,164.556,0-90V245H340Z' transform='translate(245) rotate(90)' fill='url(%23linear-gradient)'/%3E%3C/svg%3E%0A");
  }
  .MV-inner {
    top: 47px;
  }
  .MV-inner::after {
    width: 140px;
    height: 133px;
    margin-top: 20px;
  }
  .MV-inner h1 {
    font-size: 3rem;
  }
  .MV-inner p {
    font-size: 1.2rem;
  }
  .MV-inner img {
    max-width: 140px;
  }
}
@media (max-width: 380px) {
  .MV-content {
    margin-bottom: 100px;
  }
}
/* section
--------------------------------------------------------- */
/* section01 */
.sec-01 .content-inner {
  padding: 0 20px;
}

.top-h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 719px) {
  .top-h2 {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 719px) {
  .top-h2 span:nth-child(2) {
    font-size: 24px;
  }
}
@media (max-width: 719px) {
  .top-h2 span:not(:nth-child(2)) {
    font-size: 6rem;
    font-weight: normal;
  }
}

/* section02 */
.graph-box {
  position: relative;
}

.graph-box figcaption {
  position: absolute;
  bottom: 0;
  left: 52%;
  font-size: 1.2rem;
}

.graph-1 img,
.graph-2 img {
  margin: 0 auto;
}

@media (max-width: 719px) {
  .graph-box figcaption {
    position: initial;
    margin-top: 10px;
  }
  .graph-1 img {
    max-width: 286px;
  }
  .graph-2 img {
    max-width: 307px;
  }
}
/* section03 */
.point-box li {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
}
.point-box li:last-child {
  padding: 30px 12px;
}
.point-box li img {
  display: block;
  width: auto;
  margin: 0 auto;
}

.point-box .heading div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-width: 100px;
  height: 100px;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
}
.point-box .heading div span {
  font-weight: bold;
  font-size: 5.2rem;
  line-height: 1;
}
.point-box .heading h3 {
  margin-top: 30px;
  font-size: 2.6rem;
}
.point-box .heading h3 span {
  font-size: 3.2rem;
}

.fig-01 {
  display: block;
  width: 100%;
  max-width: 1044px;
  margin: 0 auto;
}

@media (max-width: 719px) {
  .point-box li,
.point-box li:last-child {
    padding: 30px 25px;
  }
  .point-box .heading {
    flex-direction: column;
    justify-content: center;
  }
  .point-box .heading div {
    margin: 0 auto 15px;
  }
  .point-box .heading h3 {
    margin-top: 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
  }
  .point-box .heading h3 span {
    font-size: 24px;
  }
  .point-box .heading figure + p {
    letter-spacing: 0;
    line-height: 1.3;
  }
}
/* section04 */
.uniq-box {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  padding: 60px;
  border-radius: 10px;
}

@media (max-width: 719px) {
  .uniq-box {
    padding: 30px;
  }
}
/* section05 */
.uniq-box-2 {
  padding: 24px;
  border: 2px solid var(--lightblue);
  border-radius: 10px;
}

.uniq-box-2 img {
  height: 133px;
}

.uniq-dl {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}

.uniq-dl dl {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  border-top: 1px solid var(--lightblue);
  border-bottom: 1px solid var(--lightblue);
}

.uniq-dl dt {
  padding: 20px;
  padding-left: 0;
}

.uniq-dl dd {
  border-left: 1px solid var(--lightblue);
  padding: 20px;
  padding-right: 0;
}

@media (max-width: 719px) {
  .uniq-dl dt {
    padding: 10px;
    padding-left: 0;
  }
  .uniq-dl dd {
    padding: 10px;
    padding-right: 0;
  }
}
.uniq-table {
  width: 100%;
  border-collapse: collapse;
}

.uniq-table th,
.uniq-table td {
  line-height: 1.4;
  font-size: 1.6rem;
  border: 1px solid #000;
}

.uniq-table th {
  text-align: center;
}

.uniq-table tr:first-child th {
  font-size: 2.2rem;
  border-left: none;
}

.uniq-table tr:not(:first-child) th {
  white-space: nowrap;
}

.uniq-table td {
  border-right: none;
}

.uniq-table.type-01 th,
.uniq-table.type-01 td {
  padding: 32px 43px;
}

.uniq-table.type-01 th {
  width: 40%;
}

.uniq-table.type-01 td {
  width: 60%;
}

.uniq-table-list {
  box-sizing: border-box;
  display: flex;
  gap: 24px;
  width: 100%;
}

.uniq-table-list > div:first-child {
  width: 100%;
  max-width: 440px;
}

.uniq-table-list > div:last-child {
  width: 100%;
  max-width: calc(100% - 440px - 24px);
}

.uniq-table.type-02 thead {
  display: none;
}

.uniq-table.type-02 tbody tr:first-child th {
  width: 24%;
  min-width: 133px;
}

.uniq-table.type-02 tbody tr:not(:first-child) th,
.uniq-table.type-02 td {
  padding: 12px 10px;
}

.table-caption {
  display: flex;
}

.table-caption span {
  white-space: nowrap;
}

@media (max-width: 719px) {
  .uniq-table tr:first-child th {
    font-size: 1.8rem;
  }
  .uniq-table th,
.uniq-table td,
.uniq-table.type-01 th,
.uniq-table.type-01 td {
    padding: 18px;
  }
  .uniq-table tr:first-child th {
    border-right: none;
    border-bottom: none;
  }
  .uniq-table td {
    border-left: none;
  }
  .uniq-table.type-01 th,
.uniq-table.type-01 td {
    display: block;
    width: auto;
  }
  .uniq-table-list {
    flex-direction: column;
  }
  .uniq-table-list > div:first-child,
.uniq-table-list > div:last-child {
    max-width: none;
  }
  .uniq-table.type-02 thead {
    display: table-header-group;
  }
  .uniq-table.type-02 tbody th {
    border-left: none;
    width: 40%;
  }
  .uniq-table.type-02 tbody td {
    width: 60%;
  }
  .uniq-table.type-02 tbody tr:first-child th {
    display: none;
  }
}
/* section06 */
.sec-contact-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.sec-contact-list li {
  width: 100%;
  max-width: 256px;
  height: 262px;
}

.sec-contact-list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 38px 22px;
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: bold;
  border-radius: 10px;
  box-sizing: border-box;
}

.sec-contact-list li a:hover {
  opacity: 0.8;
}

.sec-contact-list li:first-child a {
  border: 2px solid var(--blue);
}

.sec-contact-list li:first-child img {
  height: 77px;
  margin-bottom: 53px;
}

.sec-contact-list li:last-child a {
  border: 2px solid var(--green);
}

.sec-contact-list li:last-child img {
  height: 93px;
  margin-bottom: 45px;
}

@media (max-width: 719px) {
  .sec-contact-list {
    gap: 16px;
  }
  .sec-contact-list li {
    max-width: 137px;
    max-height: 146px;
  }
  .sec-contact-list li a {
    padding: 20px 12px;
    font-size: 1.6rem;
  }
  .sec-contact-list li:first-child img {
    height: 42px;
    margin-bottom: 30px;
  }
  .sec-contact-list li:last-child img {
    height: 50px;
    margin-bottom: 16px;
  }
}
/* =========================================================
  フッタ
========================================================= */
.footer {
  background-color: #3c3c3b;
}

@media screen and (max-width: 719px) {
  .sf-footer-menu {
    padding: 40px 20px;
  }
}
.sf-footer-menu .container h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 719px) {
  .sf-footer-menu .container h2 {
    margin-top: 2em;
  }
}
.sf-footer-menu .container ul {
  list-style: none;
}
.sf-footer-menu .container ul li {
  color: #fff;
  margin: 0;
}
.sf-footer-menu .container ul li::before {
  background: none;
}
.sf-footer-menu .container ul li a {
  color: #fff;
}
.sf-footer-menu .container ul li a:hover {
  color: inherit;
}
.sf-footer-menu .container ul li a::before {
  content: ">";
  position: absolute;
  left: 5px;
  top: -1px;
  text-decoration: none;
  height: 1.5em;
  overflow: hidden;
}
.sf-footer-menu .container ul li a[target=_blank]::before {
  content: "";
  background: url(../img/new_window_icon.svg) no-repeat 0 0;
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
}
.sf-footer-menu .container .globalinfo-menu {
  color: #c6c6c6;
}
.sf-footer-menu .container .globalinfo-menu ul li a {
  color: #c6c6c6;
}

.sub-footer {
  background-color: #3c3c3b;
  padding-bottom: 0;
}
@media screen and (max-width: 719px) {
  .sub-footer {
    padding: 0 20px;
  }
}
.sub-footer .row {
  padding-bottom: 40px;
}
@media screen and (max-width: 719px) {
  .sub-footer .row {
    padding-bottom: 10px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.sub-footer .row div:nth-of-type(1) {
  text-align: right;
}
@media screen and (max-width: 719px) {
  .sub-footer .row div:nth-of-type(1) {
    text-align: center;
    margin-bottom: 10px;
  }
}
.sub-footer .footer_btn a {
  display: inline-block;
  border: 1px solid #d7d7d7;
  padding: 8px 30px 8px 20px;
  box-sizing: border-box;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.625;
  position: relative;
  text-align: center;
}
.sub-footer .footer_btn a:hover {
  text-decoration: underline;
}
.sub-footer .footer_btn a::after {
  content: ">";
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 16px;
  line-height: 1;
}
.sub-footer hr {
  border: none;
  border-top: 1px solid #575756;
}

.footer__copy {
  padding-top: 0;
}