@charset "UTF-8";

:root {
  /* font-family */
  --font-noto: "Noto Sans JP", sans-serif;

  /*color*/
  --color-black: #333;
  --color-red: #ac1d28;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: 8rem;
}

@media (max-width: 1280px) {
  body {
    font-size: 1.6rem;
    padding-top: 6rem;
  }
}

.container,
section,
main {
  position: relative;
}

a {
  color: #333;
  transition: .2s;
}

a:before,
a:after {
  transition: inherit;
}

.wrapper {
  margin: 0 auto;
  max-width: calc(100vw - 9rem);
  position: relative;
  width: 1200px;
}

p>a {
  display: inline-block;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .wrapper {
    max-width: calc(100vw - 4rem);
  }
}


/* header
----------------------------*/
#header {
  background-color: #fff;
  position: fixed;
  inset: 0 0 auto auto;
  height: 8rem;
  width: 100%;
  z-index: 9999;
}

#header .h_wrap {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  width: 1300px;
}

#header .h_logo {
  margin-right: auto;
}

#header .h_logo a {
  font-size: 1.8rem;
  font-weight: 700;
  transition: .2s;
}

#header .h_logo img {
  width: 30rem;
  max-width: 100%;
}

#header .h_nav {
  display: flex;
  align-items: center;
  column-gap: clamp(2.2rem, 2.8vw, 4rem);
}

#header .h_nav a:not([class]) {
  font-size: 1.4rem;
  font-weight: 600;
}

#header .h_nav .h_contact {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  padding: 1.2rem 2.8rem;
  background-color: var(--color-red);
  border: 1px solid var(--color-red);
  transition: .2s;
}

@media (min-width: 768px) {
  #header .h_nav a:hover {
    color: var(--color-red);
  }

  #header .h_nav .h_contact:hover {
    background-color: #fff;
    color: var(--color-red);
  }
}

@media (max-width: 767px) {
  #header {
    height: 6rem;
  }

  #header .h_wrap {
    max-width: 100%;
    padding-left: 2rem;
  }

  #header .h_btn {
    width: 6rem;
    height: 6rem;
    background-color: #4b5b6b;
    position: relative;
    cursor: pointer;
  }

  #header .h_btn span {
    position: absolute;
    background-color: #fff;
    right: 15px;
    left: 15px;
    height: 3px;
    display: inline-block;
    transition: .3s;
  }

  #header .h_btn span:nth-of-type(1) {
    top: 18px;
  }

  #header .h_btn span:nth-of-type(2) {
    top: 28px;
  }

  #header .h_btn span:nth-of-type(3) {
    top: 38px;
  }

  #header .h_btn.active span:nth-of-type(1) {
    top: 28px;
    transform: rotate(45deg);
  }

  #header .h_btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  #header .h_btn.active span:nth-of-type(3) {
    top: 28px;
    transform: rotate(-45deg);
  }

  #header .h_nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background-color: rgba(0, 0, 0, .8);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
  }

  #header .h_nav a:not([class]) {
    color: #fff;
    padding: 1.5rem 1rem;
    text-align: center;
    border-top: 1px solid #fff;
  }

  #header .h_nav.active {
    opacity: 1;
    visibility: visible;
  }
}


/* CONTENTS
----------------------------*/
#mv {
  background-image: url(../img/en-lp/mv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 55rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mv p {
  width: 1000px;
  max-width: calc(100% - 40px);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, .25);
}

#mv_under {
  display: flex;
  flex-wrap: wrap;
}

#mv_under .box {
  width: 50%;
  height: 34rem;
  position: relative;
  color: #fff;
}

#mv_under .box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mv_under .text {
  position: absolute;
  inset: auto 5rem 5rem;
}

#mv_under .text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

#mv_under .text .btn {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 1.4rem 2.8rem;
  color: #fff;
  border: 1px solid #fff;
  display: inline-block;
  transition: .2s;
}

#mv_under .text .btn:hover {
  background-color: #fff;
  color: var(--color-black);
}

#mv_label {
  background-color: #fafaf8;
  border: 1px solid #e2e2df;
  padding: 2.5rem 0;
}

#mv_label .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 1rem;
  row-gap: 2rem;
}

#mv_label p {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  font-weight: 600;
  padding-left: 1.5em;
  background-image: url(../img/common/shield_1.svg);
  background-repeat: no-repeat;
  background-size: 1em auto;
  background-position: left center;
}

@media (max-width: 767px) {
  #mv {
    height: 70vw;
  }

  #mv p {
    font-size: 5vw;
  }

  #mv_under .box {
    width: 100%;
    height: 18rem;
  }

  #mv_under .text {
    inset: auto 2rem 2rem;
  }

  #mv_under .text h2 {
    font-size: 2rem;
  }

  #mv_label p {
    width: 100%;
  }
}

.pattern_hl_01 {
  display: flex;
  flex-direction: column;
}

.pattern_hl_01 .sub {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #4b5b6b;
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 2.4rem;
}

.pattern_hl_01 .sub:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  width: .9em;
  height: 2px;
  background-color: var(--color-red);
}

.pattern_hl_01 .main {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}

.pattern_hl_02 {
  font-size: 2rem;
  font-weight: 400;
  color: #1f2774;
  line-height: 1.4;
  padding-left: 1em;
  border-left: 3px solid #1f2774;
  margin-bottom: 2rem;
}

#sec_01 {
  padding: 12rem 0 8rem;
}

#sec_01 .hl {
  margin-bottom: 2.4rem;
}

#sec_01 .text {
  max-width: 100%;
  font-size: 1.8rem;
  line-height: 1.7;
}

#sec_01 .text+.text {
  margin-top: 1.1em;
}

#sec_01 .imgcol {
  display: flex;
  column-gap: 3rem;
  flex-wrap: wrap;
  row-gap: 2rem;
  margin-top: 8rem;
}

#sec_01 .imgcol img {
  width: calc((100% - 6rem) / 3);
}

#sec_01 .textcol {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 2rem;
  width: 100%;
  padding: 4.8rem 5rem;
  background-color: #fff;
  border: 1px solid var(--color-black);
  box-shadow: 0 0 16px rgba(0, 0, 0, .25);
  margin-top: 8rem;
}

#sec_01 .textcol .main {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  color: #1b2a3a;
}

#sec_01 .textcol .sub {
  font-size: 1.4rem;
  text-align: center;
  display: block;
  color: #4b5b6b;
}

#sec_sus {
  padding: 8rem 0 6rem;
  background-color: #f3f4ff;
}

.sec_product .hl {
  align-items: center;
  margin-bottom: 7rem;
}

.sec_product .hl .lead {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-red);
  margin-top: .8rem;
}

#sec_sus .col_1 {
  display: flex;
  align-items: start;
  column-gap: 6rem;
  row-gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

#sec_sus .col_1 img,
#sec_sus .col_1 .text {
  width: calc(50% - 3rem);
}

#sec_sus .col_1 .text p {
  line-height: 1.8;
}

#sec_sus .col_1 .text p+p {
  margin-top: 1.8em;
}

.sec_product .col_image {
  display: flex;
  column-gap: 6rem;
  row-gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}

.sec_product .col_image .item {
  width: calc(50% - 3rem);
  background-color: #fff;
}

.sec_product .col_image img {
  width: 100%;
  object-fit: cover;
}

.sec_product .col_image .textarea {
  padding: 2.6rem 5rem 5rem;
}

.sec_product .col_image .textarea h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.sec_product .col_image .textarea p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.sec_product .col_image .textarea p+p {
  margin-top: 1.6em;
}

.product_slick_list {
  position: relative;
  display: block;
  box-sizing: border-box;
  border: 1px solid #c1c1c1;
}

.product_slick_list:after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #d2d2d2;
  top: 2.4rem;
  right: 2rem;
  z-index: 10;
  background-color: #fff;
  pointer-events: none;
  background-image: url(../img/common/search_2.svg);
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: center;
}

.product_slick_thumb {
  margin-top: 2.4rem;
}

.product_slick_thumb .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  overflow-x: auto;
  column-gap: 3rem;
  row-gap: 3rem;
  flex-wrap: wrap;
}

.product_slick_thumb img {
  width: calc((100% - 9rem) / 4) !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid #c1c1c1;
}

.product_slick_thumb img.slick-active {
  border: 1px solid #000;
}

.product_slick_thumb .slick-track:before,
.product_slick_thumb .slick-track:after {
  content: initial;
}

#sec_sus .col_3 {
  display: flex;
  column-gap: 6rem;
  row-gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}

#sec_sus .col_3>div {
  width: calc(50% - 3rem);
}

#imgModalOverlay {
  position: fixed;
  z-index: 8000;
  padding-top: 16rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

#imgModalClose {
  position: absolute;
  top: 14rem;
  right: 3rem;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#imgModalContent {
  width: 600px;
  max-width: calc(100% - 80px);
  max-height: calc(100vh - 150px);
  object-fit: contain;
  margin: auto;
}

#imgModalCaption {
  text-align: center;
  color: #ccc;
  padding: 10px;
}

#sec_sus .tableside .table_hl {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 1.3rem 2rem;
  background-color: #326fcb;
}

#sec_sus .tableside table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}

#sec_sus .tableside th,
#sec_sus .tableside td {
  font-size: 1.6rem;
  border: 1px solid #fff;
}

#sec_sus .tableside th {
  width: 17rem;
  text-align: left;
  font-weight: 700;
  background-color: #e6f0ff;
  padding: 1.4rem 1rem 1.4rem 1.5rem;
}

#sec_sus .tableside td {
  font-weight: 500;
  background-color: #efefef;
  padding: 1.4rem 4rem;
}

#sec_sus .hl_achieve {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
  row-gap: .8rem;
  font-weight: 700;
  margin-bottom: 6rem;
}

#sec_sus .hl_achieve .main {
  font-size: 2.4rem;
}

#sec_sus .hl_achieve .sub {
  font-size: 1.2rem;
  padding: .2rem 1rem;
  background-color: #fff;
  border: 1px solid #e2e2df;
}

#sec_sus .col_4 {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

#sec_sus .col_4>.item {
  width: calc((100% - 8rem) / 3);
}

#sec_sus .col_4 .thumb {
  position: relative;
  margin-bottom: 1.8rem;
  overflow: hidden;
}

#sec_sus .col_4 .thumb p {
  position: absolute;
  top: 1.7rem;
  left: 2.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: var(--color-red);
  border-radius: 100px;
  padding: .2rem 2.6rem;
  min-width: 8rem;
  text-align: center;
}

#sec_sus .col_4 dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: .8rem;
}

#sec_sus .col_4 dt {
  display: flex;
  align-items: center;
  width: 10rem;
  padding: 1rem 0 1rem 1rem;
  font-weight: 700;
}

#sec_sus .col_4 dd {
  width: calc(100% - 10rem);
  padding: 1rem 0 1rem 1rem;
}

#sec_sus .col_4 dt:not(:last-of-type),
#sec_sus .col_4 dd:not(:last-of-type) {
  border-bottom: 1px solid #cfcfcf;
}

#sec_spike {
  padding: 12rem 0;
  background-color: #fafaf8;
  position: relative;
  z-index: +1;
  box-shadow: 0 0 10px rgba(0,0,0,.25);
}

#sec_spike .col_1 {
  display: flex;
  align-items: start;
  column-gap: 6rem;
  row-gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

#sec_spike .col_1 img {
  width: calc(40% - 3rem);
}

#sec_spike .col_1 .text {
  width: calc(60% - 3rem);
}

#sec_spike .col_1 .text p {
  line-height: 1.8;
  color: #4b5b6b;
}

#sec_spike .col_1 .text p+p {
  margin-top: 1.8em;
}

#sec_spike .col_2 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6rem;
}

#sec_spike .col_2>.item {
  width: calc(50% - 3rem);
}

#sec_spike .col_2 .hl_slick {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

#sec_spike .col_2 .product_slick {
  margin-bottom: 2.4rem;
}

#sec_spike .col_2 .table_hl {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 1.3rem 2rem;
  background-color: #326fcb;
}

#sec_spike .col_2 table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}

#sec_spike .col_2 th,
#sec_spike .col_2 td {
  font-size: 1.6rem;
  border: 1px solid #fff;
  padding: 1.2rem 2rem;
}

#sec_spike .col_2 th {
  width: 40%;
  text-align: left;
  font-weight: 700;
  background-color: #e6f0ff;
}

#sec_spike .col_2 td {
  font-weight: 500;
  background-color: #efefef;
}

#sec_spike .table_text_1 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 2.2rem;
  color: #4b5b6b;
}

#sec_spike .table_text_2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 2rem;
  color: #4b5b6b;
}

#sec_spike .col_image {
  margin: 6rem 0 0;
}

.cta_contact {
  background-color: var(--color-red);
  padding: 5.4rem 1.5rem 5.6rem;
}

.cta_contact h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 4.5rem;
}

.cta_contact .btn {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-red);
  width: 40rem;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1000px;
  padding: 2rem 4rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #fff;
  transition: .3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
}

.cta_contact .btn:after {
  content: "";
  width: .9em;
  height: .9em;
  background-image: url(../img/common/arrow_08.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cta_contact .btn:hover {
  background-color: var(--color-red);
  color: #fff;
}

.cta_contact .btn:hover:after {
  background-image: url(../img/common/arrow_09.svg);
}

#sec_company {
  padding: 10rem 0;
}

#sec_company .hl {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
}

#sec_company table {
  width: 860px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  border-collapse: collapse;
  table-layout: fixed;
}

#sec_company table tr {
  padding: 20px 0;
}

#sec_company table tr:not(:last-child) {
  border-bottom: 1px solid #d8d8d4;
}

#sec_company table th,
#sec_company table td {
  padding: 20px 0;
  text-align: left;
}

#sec_company table th {
  width: 16em;
  padding-left: 1.7em;
}

#sec_company table td a {
  display: inline;
}

#sec_contact {
  padding: 8rem 0 18rem;
}

#sec_contact .hl {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
}

#sec_contact .text {
  font-size: 14px;
  text-align: center;
  margin-bottom: 6rem;
}

.form_wrap .wpcf7-spinner,
.wpcf7 .hidden-fields-container {
    display: none;
}

.table_contact {
  width: 51.2rem;
  max-width: 100%;
  margin: 0 auto 2.4rem;
}

.table_contact input[type="text"],
.table_contact input[type="email"],
.table_contact input[type="tel"],
.table_contact textarea,
.table_contact select {
  width: 100%;
  line-height: 1.5;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border: 1px solid #e2e2df;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4b5b6b;
  outline: none;
}

.table_contact input.wpcf7-not-valid[type="text"],
.table_contact input.wpcf7-not-valid[type="email"],
.table_contact input.wpcf7-not-valid[type="tel"],
.table_contact select.wpcf7-not-valid,
.table_contact textarea.wpcf7-not-valid {
    border: 1px solid #ac1d28;
}

.table_contact .select_wrap {
  display: block;
}

.table_contact dt {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
}

.table_contact .item+.item {
  margin-top: 2.2rem;
}

.table_contact ::placeholder {
  color: #999994;
}

#sec_contact .form_acceptance {
  width: 51.2rem;
  max-width: 100%;
  margin: 0 auto 4rem;
  color: #4b5b6b;
  padding-left: .5rem;
}

#sec_contact .form_acceptance a {
  display: inline;
  color: #4b5b6b;
  text-decoration: underline;
}

#sec_contact .form_acceptance label {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

#sec_contact .form_acceptance input {
  transform: scale(1.7);
  display: block;
}

#sec_contact .wpcf7-list-item {
  margin: 0;
}

#sec_contact .submit_btn  {
  width: 51.2rem;
  max-width: 100%;
  margin: 0 auto;
}

#sec_contact .submit_btn .confirm_button {
  display: block;
  border: none;
  width: 51.2rem;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--color-red);
  border: 1px solid var(--color-red);
  padding: 1.1rem 2rem;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: .3s;
}

#sec_contact .submit_btn .confirm_button:hover {
  background-color: #fff;
  color: var(--color-red);
}

#sec_contact .submit_btn .confirm_button:disabled {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
  cursor: initial;
}

@media (max-width: 767px) {
  #sec_01 {
    padding: 5rem 0 6rem;
  }

  .pattern_hl_01 .sub {
    margin-bottom: 2rem;
  }

  .pattern_hl_01 .main {
    font-size: 2.2rem;
  }

  #sec_01 .text {
    font-size: 1.6rem;
  }

  #sec_01 .imgcol {
    margin-top: 5rem;
  }

  #sec_01 .imgcol img {
    width: 100%;
  }

  #sec_01 .textcol {
    margin-top: 5rem;
    padding: 3rem 2rem;
    justify-content: center;
  }

  #sec_01 .textcol .main {
    font-size: 2rem;
  }

  #sec_sus {
    padding: 5rem 0 6rem;
  }

  .sec_product .hl .lead {
    font-size: 1.5rem;
  }

  .sec_product .hl {
    margin-bottom: 4rem;
  }

  #sec_sus .col_1 img, #sec_sus .col_1 .text {
    width: 100%;
  }

  #sec_sus .col_1 {
    margin-bottom: 4rem;
  }

  .sec_product .col_image .item {
    width: 100%;
  }

  .sec_product .col_image .textarea {
    padding: 2.6rem 2rem 3rem;
  }

  .sec_product .col_image .textarea h3 {
    font-size: 1.8rem;
  }

  #sec_sus .col_3 {
    margin-bottom: 5rem;
  }

  #sec_sus .col_3>div {
    width: 100%;
  }

  #imgModalClose {
    top: 6rem;
    right: 1rem;
  }

  #sec_sus .tableside th,
  #sec_sus .tableside td {
    font-size: 1.5rem;
  }

  #sec_sus .hl_achieve {
    margin-bottom: 4rem;
  }

  #sec_sus .col_4>.item {
    width: 100%;
  }

  #sec_sus .col_4 dl {
    font-size: 14px;
  }

  #sec_spike {
    padding: 5rem 0 6rem;
  }

  #sec_spike .col_1 img {
    width: 100%;
  }

  #sec_spike .col_1 .text {
    width: 100%;
  }

  #sec_spike .col_1 .text p {
    font-size: 1.5rem;
  }

  #sec_spike .col_2 {
    row-gap: 3rem;
  }

  #sec_spike .col_2>.item {
    width: 100%;
  }

  #sec_spike .col_2 .hl_slick {
    font-size: 2rem;
  }

  .product_slick_thumb .slick-track {
    gap: 1rem;
  }

  .product_slick_thumb img {
    width: calc((100% - 3rem) / 4) !important;
  }

  #sec_spike .col_2 th {
    width: 13rem;
  }

  .cta_contact .btn {
    font-size: 1.6rem;
  }

  #sec_company {
    padding: 6rem 0 4rem;
  }

  #sec_company .hl {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }

  #sec_company table tr {
    display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
  }

  #sec_company table th,
  #sec_company table td {
    padding: 0;
    width: 100%;
  }

  #sec_contact {
    padding: 3rem 0 10rem;
  }

  #sec_contact .hl {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }

  #sec_contact .text {
    text-align: left;
  }
}

/*Privacy／Cookie*/
.policy_wrap {
  width: 1000px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 4rem 0 15rem;
}

.policy_wrap .policy_hl {
  font-size: 2.3rem;
  font-weight: 700;
}

.policy_wrap h2:not([class]) {
  margin-top: 1.6em;
  font-size: 1.8rem;
  font-weight: 700;
}

.policy_wrap p+p {
  margin-top: 1.6em;
}

.policy_wrap ul li {
  padding-left: 1.5em;
  position: relative;
}

.policy_wrap ul li:before {
  content: "\30FB";
  position: absolute;
  top: 0;
  left: 0;
}