@charset "UTF-8";
:root {
  --ff_regular: "Hiragino Kaku Gothic ProN W4", "ヒラギノ角ゴ ProN W4", Meiryo, sans-serif;
  --ff_middle: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", Meiryo, sans-serif;
  --ff_bold: "Hiragino Kaku Gothic ProN W6", "ヒラギノ角ゴ ProN W6", Meiryo, sans-serif;
  --color_dark: #000000;
  --color_light: #ffffff;
  --color_acc: #f2a900;
  --color_gray: #968c83;
  --color_gray2: #f4f3f2;
  --color_red: #da291c;
  --color_green_dark: #00993b;
  --color_green_light: #ecf7e9;
  --color_line: #06c755;
  --fz_xs: 12px;
  --fz_sm: 14px;
  --fz_md: 16px;
  --fz_lg: 18px;
  --fz_xl: 20px;
  --lh_xs: 1.25;
  --lh_sm: 1.5;
  --lh_md: 1.75;
  --lh_lg: 2;
  --fw_r: 400;
  --fw_b: 900;
}
@media screen and (max-width: 1024px) {
  :root {
    --fz_xs: 10px;
    --fz_sm: 12px;
    --fz_md: 14px;
    --fz_lg: 16px;
    --fz_xl: 18px;
    --lh_xs: 1.2;
    --lh_sm: 1.4;
    --lh_md: 1.6;
    --lh_lg: 1.8;
  }
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

body {
  background: var(--color_gray2);
}
body .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  body .sp {
    display: block;
  }
}

section {
  width: 100%;
  height: 100%;
  background: var(--color_light);
}
section .lp-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
section .lp-inner-mv {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  section .lp-inner-mv {
    width: 90%;
    height: auto;
  }
}
section.lp-mv {
  width: 100%;
  position: relative;
}
section.lp-mv .lp-mv-bg {
  width: 100%;
  height: 100%;
}
section.lp-mv .lp-mv-bg .pcImg {
  display: block;
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-bg .pcImg {
    display: none;
  }
}
section.lp-mv .lp-mv-bg .spImg {
  display: none;
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-bg .spImg {
    display: block;
  }
}
section.lp-mv .lp-mv-text {
  width: 50.83%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-text {
    width: 100%;
  }
}
section.lp-mv .lp-mv-text h1 {
  visibility: hidden;
}
section.lp-mv .lp-mv-text h1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-text h1 img {
    margin-top: 10%;
  }
}
section.lp-mv .lp-mv-text > p {
  margin-top: 5%;
  font-size: clamp(2rem, 0.1rem + 1.82vw, 5.6rem);
  color: #fff;
  line-height: 1.5625;
  text-align: center;
  position: relative;
  left: -5%;
  visibility: hidden;
}
section.lp-mv .lp-mv-text > p br.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-text > p br.sp {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-text > p {
    margin-top: 10%;
    font-size: clamp(2rem, -0.1rem + 5.6vw, 4.2rem);
    text-align: left;
    left: 0;
  }
}
section.lp-mv .lp-mv-text ul {
  margin-top: 5%;
  width: 83.61%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-text ul {
    width: 100%;
    margin-top: 10%;
  }
}
section.lp-mv .lp-mv-text ul li {
  width: 29.3333333333%;
  aspect-ratio: 1/1;
  background: var(--color_light);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.15);
  visibility: hidden;
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-text ul li {
    width: 30.8333333333%;
  }
}
section.lp-mv .lp-mv-text ul li::after {
  content: "";
  width: 30%;
  height: 29%;
  position: absolute;
  top: -8%;
  right: -8%;
  background: url("https://www.adecco.co.jp/-/media/images/adecco/top-office/slp/line_campaign_normal/lp-mv-merit-Icon.png") no-repeat center center/contain;
}
section.lp-mv .lp-mv-text ul li p {
  font-size: clamp(1.2rem, -0.1rem + 1.26vw, 1.8rem);
  text-align: center;
  line-height: 1.3333333333;
  font-family: var(--ff_middle);
  font-weight: bold;
  color: var(--color_red);
}
@media screen and (max-width: 1024px) {
  section.lp-mv .lp-mv-text ul li p {
    font-size: clamp(1.2rem, 0.5rem + 1.85vw, 2.4rem);
  }
}
section.lp-sec01 {
  width: 100%;
  padding-top: 100px;
  background: url("https://www.adecco.co.jp/-/media/images/adecco/top-office/slp/line_campaign_normal/lp-sec01_bg.png") no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 {
    padding-top: 50px;
    background: url("https://www.adecco.co.jp/-/media/images/adecco/top-office/slp/line_campaign_normal/lp-sec01_bg_sp.png") no-repeat center top/cover;
  }
}
section.lp-sec01 .lp-inner {
  max-width: 800px;
}
section.lp-sec01 .lineBtn {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
}
section.lp-sec01 .lineBtn a {
  width: 90%;
  max-width: 530px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color_line);
  border-radius: 9999px;
  padding: 20px 0;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  section.lp-sec01 .lineBtn a {
    max-width: 600px;
    width: 100%;
    padding: 10px 0;
  }
}
section.lp-sec01 .lineBtn a:hover {
  opacity: 0.8;
}
section.lp-sec01 .lineBtn a .icon {
  width: clamp(3rem, -2.3rem + 6.94vw, 6rem);
}
@media screen and (max-width: 1024px) {
  section.lp-sec01 .lineBtn a .icon {
    width: clamp(3.8rem, 1.6rem + 5.86vw, 7.6rem);
  }
}
section.lp-sec01 .lineBtn a p {
  font-family: var(--ff_middle);
  font-size: clamp(1.8rem, -0.7rem + 3.24vw, 3.2rem);
  color: var(--color_light);
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  section.lp-sec01 .lineBtn a p {
    font-size: clamp(1.8rem, 0.8rem + 2.77vw, 3.6rem);
  }
}
section.lp-sec01 .lineBtn a::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 2px solid var(--color_light);
  border-bottom: 2px solid var(--color_light);
  position: absolute;
  top: 50%;
  right: 8%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lineBtn a::after {
    width: 10px;
    height: 10px;
  }
}
section.lp-sec01 .lp-content_box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 100px auto 0;
}
section.lp-sec01 .lp-content_box .ttl_box {
  width: 100%;
  padding: 20px 0;
  background: var(--color_red);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .ttl_box {
    padding: 15px 0;
  }
}
section.lp-sec01 .lp-content_box .ttl_box h2 {
  font-size: 30px;
  color: var(--color_light);
}
section.lp-sec01 .lp-content_box .ttl_box h2 br {
  display: none;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .ttl_box h2 {
    text-align: center;
    font-size: clamp(2rem, 0.1rem + 5.09vw, 4rem);
  }
  section.lp-sec01 .lp-content_box .ttl_box h2 br {
    display: block;
  }
}
section.lp-sec01 .lp-content_box .txt_box {
  width: 100%;
  height: auto;
  position: relative;
  padding: 120px 0 50px;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .txt_box {
    padding: 50px 5% 40px;
  }
}
section.lp-sec01 .lp-content_box .txt_box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 25px;
  background: var(--color_red);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .txt_box::before {
    width: 20px;
    height: 15px;
  }
}
section.lp-sec01 .lp-content_box .txt_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .txt_box ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
}
section.lp-sec01 .lp-content_box .txt_box ul li {
  width: 60%;
  height: auto;
  background: var(--color_gray);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .txt_box ul li {
    width: 90%;
  }
}
section.lp-sec01 .lp-content_box .txt_box ul li p {
  font-size: 26px;
  padding: 30px 0;
  text-align: center;
  color: var(--color_light);
  font-family: var(--ff_middle);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .txt_box ul li p {
    font-size: clamp(1.6rem, 0.1rem + 4.07vw, 3.2rem);
    padding: 6% 0;
  }
}
section.lp-sec01 .lp-content_box .txt_box ul li .img {
  position: absolute;
  bottom: -5%;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .txt_box ul li .img {
    bottom: -20%;
  }
}
@media screen and (max-width: 600px) {
  section.lp-sec01 .lp-content_box .txt_box ul li .img {
    bottom: -15%;
  }
}
section.lp-sec01 .lp-content_box .txt_box ul li .img img {
  width: 100%;
  height: auto;
}
section.lp-sec01 .lp-content_box .txt_box ul li:nth-child(1) {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 10%;
}
section.lp-sec01 .lp-content_box .txt_box ul li:nth-child(1) .img {
  left: -15%;
  width: 134px;
  height: 210px;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .txt_box ul li:nth-child(1) .img {
    left: -12%;
    width: clamp(6.7rem, 0.5rem + 16.54vw, 13.2rem);
    height: clamp(10.5rem, 0.8rem + 25.95vw, 20.7rem);
  }
}
section.lp-sec01 .lp-content_box .txt_box ul li:nth-child(2) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: 10%;
  margin-top: 10%;
}
section.lp-sec01 .lp-content_box .txt_box ul li:nth-child(2) .img {
  right: -15%;
  width: 133px;
  height: 211px;
}
@media screen and (max-width: 768px) {
  section.lp-sec01 .lp-content_box .txt_box ul li:nth-child(2) .img {
    width: clamp(6.7rem, 0.4rem + 16.79vw, 13.3rem);
    height: clamp(10.5rem, 0.4rem + 26.97vw, 21.1rem);
    right: -10%;
  }
}
section.lp-sec02 {
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 {
    padding: 50px 0 0;
  }
}
section.lp-sec02 .lp-inner {
  position: relative;
  z-index: 2;
}
section.lp-sec02 .ttl_box {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.lp-sec02 .ttl_box .txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  font-size: clamp(2rem, 0.7rem + 1.72vw, 3rem);
  color: var(--color_red);
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: clamp(1.8rem, 0.1rem + 4.58vw, 3.6rem);
    font-family: var(--ff_bold);
    font-weight: bold;
  }
}
section.lp-sec02 .ttl_box .txt .f_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.lp-sec02 .ttl_box .txt .f_txt p:nth-child(1) {
  background: var(--color_red);
  color: var(--color_light);
  font-size: clamp(1.6rem, 0.3rem + 1.72vw, 2.6rem);
  padding: 2px 30px;
  border-radius: 9999px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .txt .f_txt p:nth-child(1) {
    font-size: clamp(1.5rem, 0.1rem + 3.82vw, 3rem);
    padding: 2px 20px;
  }
}
section.lp-sec02 .ttl_box .txt .f_txt p:nth-child(2) {
  display: none;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .txt .f_txt p:nth-child(2) {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
section.lp-sec02 .ttl_box .txt .s_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.lp-sec02 .ttl_box .txt .s_txt p:nth-child(1) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .txt .s_txt p:nth-child(1) {
    display: none;
  }
}
section.lp-sec02 .ttl_box .txt:before, section.lp-sec02 .ttl_box .txt:after {
  content: "";
  width: 2px;
  height: 80%;
  background: var(--color_red);
  position: absolute;
  bottom: 5%;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .txt:before, section.lp-sec02 .ttl_box .txt:after {
    height: 30%;
    bottom: 10%;
    width: 1px;
  }
}
section.lp-sec02 .ttl_box .txt:before {
  left: -3%;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
section.lp-sec02 .ttl_box .txt:after {
  right: -3%;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
section.lp-sec02 .ttl_box .ttl h2 {
  margin-top: 5px;
  font-family: var(--ff_middle);
  font-size: clamp(3rem, 1.9rem + 1.37vw, 3.8rem);
  color: var(--color_dark);
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .ttl h2 {
    font-size: clamp(2.5rem, 0.1rem + 6.36vw, 5rem);
    text-align: center;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
section.lp-sec02 .ttl_box .ttl h2 br {
  display: none;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .ttl h2 br {
    display: block;
  }
}
section.lp-sec02 .ttl_box .ttl h2 > span {
  font-size: clamp(4rem, 2.4rem + 2.06vw, 5.2rem);
  color: var(--color_red);
  font-weight: 600;
  position: relative;
}
section.lp-sec02 .ttl_box .ttl h2 > span::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 105%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: clamp(1rem, 0.3rem + 0.86vw, 1.5rem);
  background: #fadd99;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .ttl h2 > span::before {
    width: 102%;
    height: clamp(0.5rem, 0rem + 1.27vw, 1rem);
  }
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .ttl h2 > span {
    font-size: clamp(3.3rem, 0.2rem + 8.4vw, 6.6rem);
    line-height: 1.25;
    text-align: center;
  }
}
section.lp-sec02 .ttl_box .ttl h2 span.red {
  font-size: clamp(3rem, 1.9rem + 1.37vw, 3.8rem);
  color: var(--color_red);
  padding: 0 4px;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .ttl_box .ttl h2 span.red {
    font-size: clamp(2.5rem, 0.1rem + 6.36vw, 5rem);
  }
}
section.lp-sec02 .lp-meritBox {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: var(--color_red);
  position: relative;
  z-index: 1;
}
section.lp-sec02 .lp-meritBox .arrow_box {
  width: 100%;
  height: 5vw;
  background: var(--color_light);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: relative;
  top: -1px;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .arrow_box {
    height: 8vw;
  }
}
section.lp-sec02 .lp-meritBox .merit_list {
  margin: 0 auto;
  padding: 50px 0 100px;
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .merit_list {
    padding: 50px 0;
  }
}
section.lp-sec02 .lp-meritBox .merit_list .pcImg {
  display: block;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .merit_list .pcImg {
    display: none;
  }
}
section.lp-sec02 .lp-meritBox .merit_list .spImg {
  display: none;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .merit_list .spImg {
    display: block;
  }
}
section.lp-sec02 .lp-meritBox .merit_list .bg_box {
  width: 100%;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
section.lp-sec02 .lp-meritBox .merit_list .bg_box .l_bg {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 245px;
  height: auto;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .merit_list .bg_box .l_bg {
    bottom: auto;
    top: 60px;
    width: clamp(7.5rem, 0rem + 20.1vw, 15.4rem);
  }
}
section.lp-sec02 .lp-meritBox .merit_list .bg_box .r_bg {
  position: absolute;
  right: 0;
  bottom: 40%;
  width: 270px;
  height: auto;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .merit_list .bg_box .r_bg {
    width: clamp(9rem, 1.5rem + 20.1vw, 16.9rem);
    bottom: auto;
    top: 20px;
  }
}
section.lp-sec02 .lp-meritBox .merit_list .bg_box .r_bg2 {
  position: absolute;
  right: 0;
  bottom: 15%;
  width: 189px;
  height: auto;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .merit_list .bg_box .r_bg2 {
    bottom: 15px;
    width: clamp(7rem, 0.2rem + 18.07vw, 14.1rem);
  }
}
section.lp-sec02 .lp-meritBox .merit_list ul {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .merit_list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.lp-sec02 .lp-meritBox .merit_list ul li {
  width: 29.8333333333%;
  height: auto;
}
@media screen and (max-width: 768px) {
  section.lp-sec02 .lp-meritBox .merit_list ul li {
    width: 100%;
  }
  section.lp-sec02 .lp-meritBox .merit_list ul li:nth-child(n+2) {
    margin-top: 25px;
  }
}
section.lp-sec02 .lp-meritBox .merit_list ul li img {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
}
section.lp-sec03 {
  width: 100%;
  padding: 100px 0 150px;
  position: relative;
  background: var(--color_gray2);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 {
    padding: 50px 0;
  }
}
section.lp-sec03 .bg_box {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
}
section.lp-sec03 .bg_box.topImg {
  top: 0;
}
section.lp-sec03 .bg_box.bottomImg {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .bg_box.bottomImg {
    bottom: -120px;
  }
}
section.lp-sec03 .bg_box img {
  width: 100%;
  height: auto;
}
section.lp-sec03 .lp-cv_box {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background: var(--color_light);
  z-index: 2;
  padding: 40px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box {
    padding: 20px 5%;
  }
}
section.lp-sec03 .lp-cv_box .ttl_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.lp-sec03 .lp-cv_box .ttl_box h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  position: relative;
  color: var(--color_red);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .ttl_box h2 {
    font-size: clamp(2rem, 0.1rem + 5.09vw, 4rem);
  }
}
section.lp-sec03 .lp-cv_box .ttl_box h2:before, section.lp-sec03 .lp-cv_box .ttl_box h2:after {
  content: "";
  width: 23px;
  height: 35px;
  background: url("https://www.adecco.co.jp/-/media/images/adecco/top-office/slp/line_campaign_normal/lp-sec03-ttlIcon.png") no-repeat center/contain;
  position: absolute;
  top: 50%;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .ttl_box h2:before, section.lp-sec03 .lp-cv_box .ttl_box h2:after {
    width: clamp(2.3rem, 1.2rem + 3.05vw, 3.5rem);
    height: clamp(3.5rem, 4.6rem + -3.05vw, 2.3rem);
  }
}
section.lp-sec03 .lp-cv_box .ttl_box h2:before {
  left: -3%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
section.lp-sec03 .lp-cv_box .ttl_box h2:after {
  right: -3%;
  -webkit-transform: translate(100%, -50%) rotate(180deg);
          transform: translate(100%, -50%) rotate(180deg);
}
section.lp-sec03 .lp-cv_box .qr_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .qr_box {
    display: none;
  }
}
section.lp-sec03 .lp-cv_box .qr_box .img {
  width: 90%;
  height: auto;
  max-width: 122px;
  margin: 20px auto 0;
}
section.lp-sec03 .lp-cv_box .qr_box .img img {
  width: 100%;
  height: auto;
}
section.lp-sec03 .lp-cv_box .qr_box .id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 0;
  background: var(--color_gray2);
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
section.lp-sec03 .lp-cv_box .qr_box .id p:nth-child(1) {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .qr_box .id p:nth-child(1) {
    font-size: clamp(1.2rem, 0.1rem + 3.05vw, 2.4rem);
  }
}
section.lp-sec03 .lp-cv_box .qr_box .id p:nth-child(2) {
  font-size: 26px;
  color: var(--color_red);
  font-weight: bold;
  font-family: var(--ff_middle);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .qr_box .id p:nth-child(2) {
    font-size: clamp(1.4rem, -0.3rem + 4.58vw, 3.2rem);
  }
}
section.lp-sec03 .lp-cv_box .note_box {
  width: 100%;
  height: auto;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.lp-sec03 .lp-cv_box .note_box p {
  font-size: 18px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .note_box p {
    font-size: clamp(1.4rem, 1rem + 1.02vw, 1.8rem);
    text-align: left;
  }
  section.lp-sec03 .lp-cv_box .note_box p br {
    display: none;
  }
}
section.lp-sec03 .lp-cv_box .note_box p.pcText {
  display: block;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .note_box p.pcText {
    display: none;
  }
}
section.lp-sec03 .lp-cv_box .note_box p.spText {
  display: none;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .note_box p.spText {
    display: block;
  }
}
section.lp-sec03 .lp-cv_box .sp_lineBtn {
  width: 100%;
  height: auto;
  display: none;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .sp_lineBtn {
    display: grid;
    place-items: center;
    margin-top: 20px;
  }
}
section.lp-sec03 .lp-cv_box .sp_lineBtn a {
  width: 90%;
  max-width: 530px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color_line);
  border-radius: 9999px;
  padding: 10px 0;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .sp_lineBtn a {
    width: 100%;
  }
}
section.lp-sec03 .lp-cv_box .sp_lineBtn a:hover {
  opacity: 0.8;
}
section.lp-sec03 .lp-cv_box .sp_lineBtn a .icon {
  width: clamp(2.5rem, -1.9rem + 5.79vw, 5rem);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .sp_lineBtn a .icon {
    width: clamp(3.8rem, 0.2rem + 9.67vw, 7.6rem);
  }
}
section.lp-sec03 .lp-cv_box .sp_lineBtn a p {
  font-family: var(--ff_middle);
  font-size: clamp(1.6rem, 0.2rem + 1.85vw, 2.4rem);
  color: var(--color_light);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .sp_lineBtn a p {
    font-size: clamp(1.8rem, 0.1rem + 4.58vw, 3.6rem);
  }
}
section.lp-sec03 .lp-cv_box .sp_lineBtn a::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 2px solid var(--color_light);
  border-bottom: 2px solid var(--color_light);
  position: absolute;
  top: 50%;
  right: 8%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .lp-cv_box .sp_lineBtn a::after {
    width: 10px;
    height: 10px;
  }
}
section.lp-sec03 > .lp-inner {
  width: 90%;
  padding: 100px 0 0;
  position: relative;
  z-index: 2;
  background: var(--color_gray2);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 > .lp-inner {
    padding: 70px 0 0;
  }
}
section.lp-sec03 > .lp-inner > .ttl_box {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: clamp(-4.4rem, 3.4rem + -10.19vw, -8.8rem);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 > .lp-inner > .ttl_box {
    left: clamp(-3.3rem, -1.2rem + -5.6vw, -5.5rem);
  }
}
section.lp-sec03 > .lp-inner > .ttl_box .img {
  width: clamp(4.4rem, -3.4rem + 10.19vw, 8.8rem);
  height: auto;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 > .lp-inner > .ttl_box .img {
    width: clamp(6.25rem, 0.3rem + 15.9vw, 12.5rem);
  }
}
section.lp-sec03 > .lp-inner > .ttl_box .img img {
  width: 100%;
  height: auto;
}
section.lp-sec03 > .lp-inner > .ttl_box h2 {
  font-size: clamp(2.7rem, -1.7rem + 5.79vw, 5.2rem);
  font-family: var(--ff_middle);
  color: var(--color_red);
  font-weight: bold;
}
section.lp-sec03 > .lp-inner > .ttl_box h2 br {
  display: none;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 > .lp-inner > .ttl_box h2 {
    font-size: clamp(3.1rem, 0.1rem + 7.89vw, 6.2rem);
    text-align: center;
  }
  section.lp-sec03 > .lp-inner > .ttl_box h2 br {
    display: block;
  }
}
section.lp-sec03 .link_box {
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .link_box {
    margin: 30px auto 0;
  }
}
section.lp-sec03 .link_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .link_box ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.lp-sec03 .link_box ul li {
  width: 31.3333333333%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  section.lp-sec03 .link_box ul li {
    width: 32.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .link_box ul li {
    width: 100%;
  }
  section.lp-sec03 .link_box ul li:nth-child(n+2) {
    margin-top: 30px;
  }
}
section.lp-sec03 .link_box ul li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 20px 0;
  position: relative;
  background: var(--color_light);
  font-family: var(--ff_middle);
  font-weight: bold;
  border-radius: 9999px;
  border: 2px solid var(--color_red);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.lp-sec03 .link_box ul li a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .link_box ul li a {
    padding: 15px 0;
  }
}
section.lp-sec03 .link_box ul li a p {
  font-size: clamp(1.2rem, 0.2rem + 1.27vw, 2rem);
  color: var(--color_red);
  font-family: var(--ff_middle);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .link_box ul li a p {
    font-size: clamp(1.8rem, 0.7rem + 3.05vw, 3rem);
  }
}
section.lp-sec03 .link_box ul li a::after {
  content: "";
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--color_red);
  border-bottom: 2px solid var(--color_red);
  position: absolute;
  top: 45%;
  right: 8%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 1024px) {
  section.lp-sec03 .link_box ul li a::after {
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--color_red);
    border-bottom: 1px solid var(--color_red);
    right: 5%;
  }
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .link_box ul li a::after {
    width: clamp(0.8rem, 0.3rem + 1.27vw, 1.3rem);
    height: clamp(0.8rem, 0.3rem + 1.27vw, 1.3rem);
    border-right: 2px solid var(--color_red);
    border-bottom: 2px solid var(--color_red);
  }
}
section.lp-sec03 .link_box ul li a::before {
  content: "";
  position: absolute;
  left: 3%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(2.5rem, 0.7rem + 2.31vw, 3.5rem);
  height: clamp(2.5rem, 0.7rem + 2.31vw, 3.5rem);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .link_box ul li a::before {
    width: clamp(3.6rem, 1.7rem + 5.09vw, 5.6rem);
    height: clamp(3.6rem, 1.7rem + 5.09vw, 5.6rem);
  }
}
section.lp-sec03 .link_box ul li:nth-child(1) a:before {
  background: url("https://www.adecco.co.jp/-/media/images/adecco/top-office/slp/line_campaign_normal/lp-sec04_1-ttlIcon_r.png") no-repeat center center/contain;
}
section.lp-sec03 .link_box ul li:nth-child(2) a:before {
  background: url("https://www.adecco.co.jp/-/media/images/adecco/top-office/slp/line_campaign_normal/lp-sec04_2-ttlIcon_r.png") no-repeat center center/contain;
}
section.lp-sec03 .link_box ul li:nth-child(3) a:before {
  background: url("https://www.adecco.co.jp/-/media/images/adecco/top-office/slp/line_campaign_normal/lp-sec04_3-ttlIcon_r.png") no-repeat center center/contain;
}
section.lp-sec03 .tab_box ul li {
  margin: 70px auto 0;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li {
    margin: 50px auto 0;
  }
}
section.lp-sec03 .tab_box ul li .ttl_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color_red);
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .ttl_box {
    padding: 15px 0;
  }
}
section.lp-sec03 .tab_box ul li .ttl_box .img {
  width: clamp(2.3rem, -1.8rem + 5.32vw, 4.6rem);
  height: auto;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .ttl_box .img {
    width: clamp(3rem, 0.5rem + 6.62vw, 5.6rem);
    margin-right: 10px;
  }
}
section.lp-sec03 .tab_box ul li .ttl_box .img img {
  width: 100%;
  height: auto;
}
section.lp-sec03 .tab_box ul li .ttl_box h3 {
  font-family: var(--ff_bold);
  font-size: clamp(1.6rem, -1.2rem + 3.7vw, 3.2rem);
  color: var(--color_light);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .ttl_box h3 {
    font-size: clamp(1.8rem, -0.1rem + 5.09vw, 3.8rem);
  }
}
section.lp-sec03 .tab_box ul li .content_box {
  background: var(--color_light);
  padding: 60px 30px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box {
    padding: 5% 5% 10%;
  }
}
section.lp-sec03 .tab_box ul li .content_box > .txt {
  width: 90%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box > .txt {
    width: 100%;
  }
}
section.lp-sec03 .tab_box ul li .content_box > .txt p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box > .txt p {
    font-size: clamp(1.4rem, 0.1rem + 3.56vw, 2.8rem);
  }
}
section.lp-sec03 .tab_box ul li .content_box > .txt p span {
  color: var(--color_red);
  display: inline-block;
}
section.lp-sec03 .tab_box ul li .content_box .lineBtn {
  width: 100%;
  height: auto;
  margin: 50px auto 0;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box .lineBtn {
    margin: 30px auto 0;
  }
}
section.lp-sec03 .tab_box ul li .content_box .lineBtn a {
  width: 90%;
  max-width: 530px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color_line);
  border-radius: 9999px;
  padding: 10px 0;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box .lineBtn a {
    width: 100%;
  }
}
section.lp-sec03 .tab_box ul li .content_box .lineBtn a:hover {
  opacity: 0.8;
}
section.lp-sec03 .tab_box ul li .content_box .lineBtn a .icon {
  width: clamp(2.5rem, -1.9rem + 5.79vw, 5rem);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box .lineBtn a .icon {
    width: clamp(3.8rem, 0.2rem + 9.67vw, 7.6rem);
  }
}
section.lp-sec03 .tab_box ul li .content_box .lineBtn a p {
  font-family: var(--ff_middle);
  font-size: clamp(1.6rem, 0.2rem + 1.85vw, 2.4rem);
  color: var(--color_light);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box .lineBtn a p {
    font-size: clamp(1.8rem, 0.1rem + 4.58vw, 3.6rem);
  }
}
section.lp-sec03 .tab_box ul li .content_box .lineBtn a::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 2px solid var(--color_light);
  border-bottom: 2px solid var(--color_light);
  position: absolute;
  top: 50%;
  right: 8%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box .lineBtn a::after {
    width: 10px;
    height: 10px;
  }
}
section.lp-sec03 .tab_box ul li .content_box .qrBox {
  width: 90%;
  max-width: 680px;
  height: auto;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f4f3f2;
  border-radius: 10px;
  padding: 5%;
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box .qrBox {
    display: none;
  }
}
section.lp-sec03 .tab_box ul li .content_box .qrBox .img {
  width: 160px;
  height: auto;
}
section.lp-sec03 .tab_box ul li .content_box .qrBox .img img {
  width: 100%;
}
section.lp-sec03 .tab_box ul li .content_box .qrBox .txt {
  width: 400px;
  height: auto;
}
section.lp-sec03 .tab_box ul li .content_box .qrBox .txt p {
  font-size: clamp(1.6rem, 0.9rem + 0.93vw, 2rem);
  font-family: var(--ff_middle);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
section.lp-sec03 .tab_box ul li .content_box dl {
  width: 90%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box dl {
    width: 100%;
  }
}
section.lp-sec03 .tab_box ul li .content_box dl:nth-child(n+2) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box dl:nth-child(n+2) {
    margin-top: 50px;
  }
}
section.lp-sec03 .tab_box ul li .content_box dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.lp-sec03 .tab_box ul li .content_box dl dt p.num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: var(--color_red);
  font-size: clamp(1.4rem, 0.7rem + 0.93vw, 1.8rem);
  aspect-ratio: 1/1;
  color: var(--color_light);
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box dl dt p.num {
    width: clamp(2.4rem, 0.9rem + 4.07vw, 4rem);
    height: clamp(2.4rem, 0.9rem + 4.07vw, 4rem);
    font-size: clamp(1.4rem, 0.1rem + 3.56vw, 2.8rem);
  }
}
section.lp-sec03 .tab_box ul li .content_box dl dt p.txt {
  font-size: 18px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-top: 4px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box dl dt p.txt {
    padding-top: 0;
    font-size: clamp(1.4rem, 0.1rem + 3.56vw, 2.8rem);
  }
}
section.lp-sec03 .tab_box ul li .content_box dl dt p.txt .attention {
  color: #737172 !important;
  font-size: 14px;
  display: inline-block;
}
section.lp-sec03 .tab_box ul li .content_box dl dd {
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box dl dd {
    margin: 20px auto 0;
  }
}
section.lp-sec03 .tab_box ul li .content_box dl dd > .img {
  width: 100%;
  height: auto;
}
section.lp-sec03 .tab_box ul li .content_box dl dd > .img img {
  width: 100%;
  height: auto;
}
section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
  background: var(--color_red_light);
  padding: 3% 5%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box {
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
}
section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box .img {
  width: 28.57%;
  height: auto;
}
section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box .img img {
  width: 100%;
  height: auto;
}
section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box .txt {
  width: 60%;
  height: auto;
}
section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box .txt p {
  font-size: clamp(1.6rem, 0.9rem + 0.93vw, 2rem);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box .txt p {
    font-size: clamp(1.4rem, 0.1rem + 3.56vw, 2.8rem);
  }
}
section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box .txt p br {
  display: none;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box dl dd.lineQr_box .txt p br {
    display: block;
  }
}
section.lp-sec03 .tab_box ul li .content_box .la-dl {
  margin-top: 20px !important;
}
section.lp-sec03 .tab_box ul li .content_box > .img {
  width: 90%;
  height: auto;
  max-width: 1000px;
  margin: 30px auto 0;
}
section.lp-sec03 .tab_box ul li .content_box .idBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px auto 0;
}
section.lp-sec03 .tab_box ul li .content_box .idBox .txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 0;
  background: var(--color_red_light);
  font-family: var(--ff_middle);
  padding: 20px 40px;
  border-radius: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
section.lp-sec03 .tab_box ul li .content_box .idBox .txt p:nth-child(1) {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box .idBox .txt p:nth-child(1) {
    font-size: clamp(1.2rem, 0.1rem + 3.05vw, 2.4rem);
  }
}
section.lp-sec03 .tab_box ul li .content_box .idBox .txt p:nth-child(2) {
  font-size: 26px;
  color: var(--color_red);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.lp-sec03 .tab_box ul li .content_box .idBox .txt p:nth-child(2) {
    font-size: clamp(1.4rem, -0.3rem + 4.58vw, 3.2rem);
  }
}
/*# sourceMappingURL=layout.css.map */




/* デフォルト化CSS */
.str-container {padding-bottom: 0;}
.str-container .str-content .str-main-column {margin-bottom: 0;}
.mod-layout-col1{background-color: #fff;margin: 0;}
.str-container .str-content:first-child {padding-top: 0;}
.str-content{max-width: initial;font-size: initial;line-height: initial;}
.str-container .str-content {max-width: initial;margin: 0 auto;padding: 0;}
.str-container .str-content .str-main-column>.inner{margin-bottom: initial;padding: initial;}



