@charset "UTF-8";
.concreteFeature {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .concreteFeature {
    gap: 40px;
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  .concreteFeature {
    margin-top: calc(24 / 390 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .concreteFeature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .concreteFeature__item:first-child .photo {
    max-width: 443px;
  }
}

@media screen and (min-width: 768px) {
  .concreteFeature__item:nth-child(2) .photo {
    max-width: 765px;
  }
}

@media screen and (max-width: 768px) {
  .concreteFeature__item + .concreteFeature__item {
    margin-top: calc(16 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .concreteFeature__ttl {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .concreteFeature__ttl {
    font-size: calc(16 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .concreteFeature__ttl + .photo {
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .concreteFeature__ttl + .photo {
    margin-top: calc(16 / 390 * 100vw);
  }
}

.concreteFeature__ttl + .photo + .caption {
  color: #666464;
  font-size: 10px;
  letter-spacing: .1em;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .concreteFeature__ttl + .photo + .caption {
    margin-top: 3px;
  }
}

.qualityTab {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .qualityTab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .qualityTab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
}

.qualityTab__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff000;
  border-bottom: 2px solid #000000;
  color: #000000;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: .1em;
  padding-inline: 16px;
  position: relative;
  text-align: center;
  width: 240px;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .qualityTab__item {
    width: calc((99.99% - 48px) / 3);
  }
}

@media screen and (max-width: 768px) {
  .qualityTab__item {
    font-size: 12px;
    height: 40px;
    padding-inline: 12px;
    width: calc(50% - 8px);
  }
}

@media screen and (min-width: 768px) {
  .qualityTab--col3 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-inline: auto;
    max-width: 1120px;
  }
}

@media screen and (max-width: 768px) {
  .qualityTab--col3 {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .qualityTab--col3 .qualityTab__item {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .qualityTab--col3 .qualityTab__item {
    width: calc((99.99% - 48px) / 3);
  }
}

@media screen and (max-width: 768px) {
  .qualityTab--col3 .qualityTab__item {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .qualityTab--col3 .qualityTab__item + .qualityTab__item {
    margin-top: 16px;
  }
}

.qualityTab__item.is-active {
  background: #000000;
  color: #ffffff;
}

.qualityTab__item:after {
  background: url("../imgs/icn-tab-arrow.svg") no-repeat;
  background-size: 6px 6px;
  content: '';
  display: block;
  height: 6px;
  margin-top: -2px;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px;
}

@media screen and (max-width: 768px) {
  .qualityTab__item:after {
    right: 12px;
  }
}

.qualityTab__item.is-active:after {
  background: url("../imgs/icn-tab-arrow-cur.svg") no-repeat;
  background-size: 6px 6px;
}

.qualityContent {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  width: 100%;
}

.qualityContent.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.qualityContent .largeHeadingCombi {
  max-width: unset;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard {
    width: calc(389 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard--wide {
    gap: calc(40 / 1248 * 100%);
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard--wide .descriptionCard__head {
    width: calc(389 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard--wide .descriptionCard__cont {
    width: calc(819 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard--wide .descriptionCard__ttl {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard--reverse {
    gap: calc(40 / 1248 * 100%);
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard--reverse .descriptionCard__head {
    width: calc(389 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard--reverse .descriptionCard__cont {
    width: calc(819 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard--reverse .descriptionCard__ttl {
    padding-top: 0;
  }
}

.qualityContent .descriptionCard__cont {
  margin-top: 0;
}

.qualityContent .descriptionCard__ttl {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard__ttl {
    margin-bottom: 19px;
    padding-bottom: 19px;
    padding-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .qualityContent .descriptionCard__ttl {
    margin-bottom: 14px;
    padding-bottom: 12px;
    padding-top: 12px;
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard__ttl span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .qualityContent .descriptionCard__ttl span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.6;
  }
}

@media screen and (max-width: 768px) {
  .qualityContent .descriptionCard--ttlNarrow0 .descriptionCard__ttl span {
    letter-spacing: 0;
  }
}

@media screen and (min-width: 768px) {
  .qualityContent .descriptionCard__txt {
    font-size: 14px;
    letter-spacing: .1em;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .qualityContent .descriptionCard__txt {
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 2;
  }
}

.qualityContent .photo__capIn, .photo__capOut {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .securitySect__txt {
    font-size: 20px;
    letter-spacing: .1em;
    line-height: 1.95;
    text-align: center;
    text-indent: .1em;
  }
}

@media screen and (max-width: 768px) {
  .securitySect__txt {
    font-size: calc(16 / 390 * 100vw);
    letter-spacing: .1em;
    line-height: 2;
    text-align: center;
    text-indent: .1em;
  }
}

@media screen and (min-width: 768px) {
  .securitySect__banner {
    margin: 40px auto 0;
    width: 470px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect__banner {
    margin-top: calc(32 / 390 * 100vw);
  }
}

.securitySect__banner img {
  width: 100%;
}

.securitySect02__head .enTtl--heading {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .securitySect02__head .enTtl--large {
    letter-spacing: .1em;
    text-indent: .1em;
  }
}

@media screen and (max-width: 768px) {
  .securitySect02__head .enTtl--large {
    font-size: 18px;
  }
}

.securitySect02__head .heading {
  letter-spacing: .06em;
  /* .1emより調整 */
  text-indent: .06em;
}

@media screen and (max-width: 768px) {
  .securitySect02__head .heading--large {
    line-height: 1.95;
  }
}

@media screen and (min-width: 768px) {
  .securitySect02__head .enTtl + .heading {
    margin-top: 31px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect02__head .enTtl + .heading {
    margin-top: 24px;
  }
}

@media screen and (min-width: 768px) {
  .securitySect02__head .largeHeadingCombi .heading--intro + .txt {
    margin-top: 49px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect02__head .largeHeadingCombi .heading--intro + .txt {
    margin-top: 33px;
    text-align: left;
  }
}

.securitySect02__head .heading + .txt {
  letter-spacing: .06em;
  /* .1emより調整 */
  text-indent: .06em;
}

@media screen and (max-width: 768px) {
  .securitySect02__head .heading + .txt {
    font-size: 12px;
    text-indent: 0;
  }
}

.securitySect02__head .txt {
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .securitySect02__cont {
    margin-top: 64px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect02__cont {
    margin-top: calc(64 / 390 * 100vw);
  }
}

.securitySect02__heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #59472b;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.3;
  position: relative;
}

@media screen and (min-width: 768px) {
  .securitySect02__heading {
    min-height: 44px;
    padding: 5px 28px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect02__heading {
    font-size: 12px;
    min-height: 28px;
    padding: 4px 16px 3px 28px;
  }
}

.securitySect02__heading:before {
  background: #d8d1c7;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.securitySect02__heading:after {
  background: #d8d1c7;
  content: '';
  height: 100%;
  left: 8px;
  position: absolute;
  top: 0;
  width: 2px;
}

@media screen and (min-width: 768px) {
  * + .securitySect03 {
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  * + .securitySect03 {
    margin-top: calc(24 / 390 * 100vw);
  }
}

.securitySect03 .descriptionCard {
  width: auto;
}

@media screen and (min-width: 768px) {
  .securitySect03--center {
    margin-inline: auto;
    max-width: 604px;
  }
}

.securitySect03--structure01 .descriptionCard__head {
  display: none;
}

@media screen and (min-width: 768px) {
  .securitySect03--structure01 .descriptionCardGroup + .securitySect03__layout {
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect03--structure01 .descriptionCardGroup + .securitySect03__layout {
    margin-top: calc(24 / 390 * 100vw);
  }
}

.securitySect03--structure02 .descriptionCard__head {
  display: none;
}

@media screen and (min-width: 768px) {
  .securitySect03__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.securitySect03__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .securitySect03__images {
    width: calc(604 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .securitySect03__images .securitySect03__image {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .securitySect03__images3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.securitySect03__images3 .securitySect03__image {
  border: 1px solid #cccccc;
}

@media screen and (min-width: 768px) {
  .securitySect03__images3 .securitySect03__image {
    width: calc(389 / 1248 * 100%);
  }
}

@media screen and (max-width: 768px) {
  .securitySect03__images3 .securitySect03__image {
    margin-inline: auto;
    width: calc(220 / 390 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .securitySect03__images3 .securitySect03__image + .securitySect03__image {
    margin-top: 12px;
  }
}

.securitySect03__box {
  background: #eaeae6;
}

@media screen and (min-width: 768px) {
  .securitySect03__box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: min(2.22vw, 32px);
    width: calc(604 / 1248 * 100%);
  }
}

@media screen and (max-width: 768px) {
  .securitySect03__box {
    margin-top: 12px;
    padding: 20px 24px 22px 24px;
  }
}

@media screen and (min-width: 768px) {
  .securitySect03__box .heading--default {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 2;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .securitySect03__box .heading--default {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 2;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .securitySect03__box .heading + .txt {
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 2;
    margin-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect03__box .heading + .txt {
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 2;
    margin-top: 15px;
  }
}

@media screen and (min-width: 768px) {
  * + .securitySect04 {
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  * + .securitySect04 {
    margin-top: calc(24 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .securitySect04 .descriptionCard {
    width: calc(604 / 1248 * 100%);
  }
}

@media screen and (max-width: 768px) {
  .securitySect04 .descriptionCard {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .securitySect04 .descriptionCard + .descriptionCard {
    margin-top: calc(8 / 390 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .securitySect04--column {
    margin-top: calc(8 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .securitySect04--column .descriptionCardGroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}

.securitySect04--column .descriptionCardGroup .descriptionCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .securitySect04--column .descriptionCardGroup .descriptionCard {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .securitySect04--column .descriptionCardGroup .descriptionCard {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  .securitySect04--column .descriptionCardGroup .descriptionCard__head {
    margin-top: calc(12 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .securitySect04--column .descriptionCardGroup .descriptionCard:first-child .photo {
    width: 260px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect04--column + .securitySect03--structure01 {
    margin-top: calc(8 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  * + .securitySect05 {
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  * + .securitySect05 {
    margin-top: calc(24 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  * + .securitySect06 {
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  * + .securitySect06 {
    margin-top: calc(24 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .securitySect06 .descriptionCard:nth-of-type(n+2) {
    margin-top: 48px;
  }
}

.securitySect06--security01 .descriptionCard {
  width: auto;
}

@media screen and (min-width: 768px) {
  .securitySect06--security01 .descriptionCard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .securitySect06--security01 .descriptionCard__head {
    width: calc(604 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .securitySect06--security01 .descriptionCard__cont {
    width: calc(604 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .securitySect06--security01 .descriptionCard__ttl {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .securitySect07 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: calc(16 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  * + .securitySect07 {
    margin-top: 32px;
  }
}

@media screen and (max-width: 768px) {
  * + .securitySect07 {
    margin-top: calc(16 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .securitySect07__left {
    width: calc(616 / 1248 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .securitySect07__right {
    width: calc(616 / 1248 * 100%);
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__right {
    margin-top: calc(16 / 390 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__right .touchFigure {
    height: calc(240 / 390 * 100vw);
    margin-left: 0;
    margin-right: 0;
    width: calc(100vw - (48 / 390 * 100vw));
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__top {
    margin-top: calc(16 / 390 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__top .touchFigure {
    height: calc(240 / 390 * 100vw);
    margin-left: 0;
    margin-right: 0;
    width: calc(100vw - (48 / 390 * 100vw));
  }
}

@media screen and (min-width: 768px) {
  .securitySect07__wide {
    margin-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__wide {
    margin-top: calc(16 / 390 * 100vw);
  }
}

.securitySect07__box {
  background: #eaeae6;
}

@media screen and (min-width: 768px) {
  .securitySect07__box {
    padding: 24px 32px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__box {
    padding: 16px 24px 14px 24px;
  }
}

@media screen and (min-width: 768px) {
  .securitySect07__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .securitySect07__layout {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .securitySect07__first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(600 / 1184 * 100%);
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .securitySect07__first {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .securitySect07__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__txt {
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 2;
  }
}

.securitySect07__photo {
  width: 160px;
}

.securitySect07__photo .photo {
  border: 1px solid #cccccc;
}

@media screen and (max-width: 768px) {
  .securitySect07__photo {
    margin: 24px auto 0;
  }
}

.securitySect07__capsule {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #d8d1c7;
  border-radius: 9999px;
  color: #59472b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  height: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: .1em;
  line-height: 32px;
}

@media screen and (min-width: 768px) {
  .securitySect07__capsule {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__capsule {
    font-size: 10px;
  }
}

@media screen and (min-width: 768px) {
  .securitySect07__second {
    width: calc(560 / 1184 * 100%);
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .securitySect07__second {
    margin-top: 24px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__second {
    margin-top: 24px;
  }
}

.securitySect07__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .securitySect07__list {
    margin-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__list {
    margin-top: 8px;
  }
}

.securitySect07__li {
  font-size: 12px;
  letter-spacing: .1em;
  line-height: 2;
  padding-left: 16px;
  position: relative;
}

.securitySect07__li:before {
  background: #596a32;
  border-radius: 9999px;
  content: '';
  height: 8px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 8px;
}

@media screen and (min-width: 768px) {
  .securitySect07__left:nth-of-type(n+1), .securitySect07__right:nth-of-type(n+1) {
    margin-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .securitySect07__left:nth-of-type(n+1), .securitySect07__right:nth-of-type(n+1) {
    margin-top: calc(16 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .securitySect08 {
    display: grid;
    gap: 42px calc(40 / 1248 * 100%);
    grid-template-areas: 'first third' 'second third';
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
  }
}

@media screen and (max-width: 768px) {
  .securitySect08 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  * + .securitySect08 {
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  * + .securitySect08 {
    margin-top: calc(24 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .securitySect08 .descriptionCard {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .securitySect08__first {
    grid-area: first;
  }
}

@media screen and (max-width: 768px) {
  .securitySect08__first {
    width: calc(50% - 10px);
  }
}

@media screen and (min-width: 768px) {
  .securitySect08__first .descriptionCard {
    display: grid;
    gap: calc(32 / 604 * 100%);
    grid-template-columns: 1fr 1fr;
    width: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .securitySect08__first .descriptionCard {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .securitySect08__first .descriptionCard {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .securitySect08__first .descriptionCard__ttl {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .securitySect08__first .descriptionCard__ttl {
    padding-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .securitySect08__second {
    grid-area: second;
  }
}

@media screen and (max-width: 768px) {
  .securitySect08__second {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .securitySect08__second .descriptionCard {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .securitySect08__second .descriptionCard__ttl {
    padding-top: 0;
  }
}

.securitySect08__second .photo {
  display: none;
}

@media screen and (min-width: 768px) {
  .securitySect08__third {
    grid-area: third;
  }
}

@media screen and (max-width: 768px) {
  .securitySect08__third {
    margin-top: calc(24 / 390 * 100vw);
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .securitySect08__third .descriptionCard {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .wrap {
    max-width: 1248px;
    padding-bottom: 120px;
    width: calc(1248 / 1440 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .wrap {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .security-tab {
    margin-top: 120px;
  }
}

@media screen and (max-width: 768px) {
  .security-tab {
    margin-top: calc(80 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .security-tab-bottom {
    margin-top: 64px;
  }
}

@media screen and (max-width: 768px) {
  .security-tab-bottom {
    margin-top: calc(64 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .security-tab-content {
    margin-top: 74px;
  }
}

@media screen and (max-width: 768px) {
  .security-tab-content {
    margin-top: calc(72 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .security-01 {
    margin-top: 160px;
  }
}

@media screen and (max-width: 768px) {
  .security-01 {
    margin-top: calc(64 / 390 * 100vw);
  }
}
