#main.addsafe {
  padding: 0;
}

ul li {
  list-style: none;
}

main img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* =========================================================
  調整クラス
========================================================= */
/* カラー
--------------------------------------------------------- */
: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 {
  margin-bottom: 24px;
  padding: 0 20px;
}
.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;
  line-height: 1.6;
  text-shadow: 0 0 3px rgba(0,0,0,0.4);
  color: #fff;
}
.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);
  }
  .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;}
}


/* section
--------------------------------------------------------- */
/* section01 */
.sec-01 .content-inner {padding: 0 20px;}

.top-h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 719px) {
  .top-h2 span:not(:nth-child(2)) {
    font-size: 7rem;
    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 h3 {
  margin-top: 30px;
  font-size: 2.6rem;
}
.point-box 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: 20px;}
  .point-box .heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .point-box .heading div {margin: 0 15px 0 0;}
  .point-box h3 {
    margin-top: 0;
    text-align: left;
    font-size: 1.8rem;
  }
  .point-box h3 span {font-size: 2.4rem;}
}

/* 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;
  }
}