@charset "UTF-8";
/*
 * 基礎SCSS
 * @include common.css
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/*!
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* how2use */
/*
@include keyframes(TopToBottom){
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(0);
  }
}

#hoge{
	@include animation(animationSample 1.2s ease 0.15s);
}
*/
html {
  font-size: 16px;
  /* = 10px */
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #231815;
  text-align: left;
  word-break: auto-phrase;
  -webkit-text-size-adjust: 100%;
  background: #ffffff;
}
@media screen and (max-width: 639px) {
  body {
    font-size: 1.4rem;
  }
}

* {
  box-sizing: border-box;
}

/*--------------------
 タグ汎用
 ---------------------*/
small {
  font-size: 0.9em;
  line-height: 1.5em;
}

.nocomments,
.postmetadata,
blockquote,
strike {
  color: #FAFAFA;
}

code {
  font: 1.1em "Courier New", Courier, Fixed;
}

abbr,
acronym,
span.caps {
  font-size: 0.9em;
  cursor: help;
}

a {
  color: #231815;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s all;
}
a:hover {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s all;
  opacity: 0.7;
}

.link_line {
  text-decoration: underline;
}

.link_blank {
  display: inline-flex;
  align-items: center;
}
.link_blank:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/icon_blank.svg") no-repeat center right/contain;
  margin-left: 15px;
}

p span {
  display: inline-block;
}

blockquote {
  padding-left: 20px;
  border-left: 5px solid #695E5C;
  margin: 15px 30px 0 10px;
}
blockquote cite {
  display: block;
  margin: 5px 0 0;
}

.color_main {
  color: #C7000B;
}

.color_brw {
  color: #695E5C;
}

/*-------------
 汎用設定
--------------*/
img {
  height: auto;
  max-width: 100%;
}

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

ol {
  margin-left: 1.5em;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.txt_center {
  text-align: center;
}

.txt_main {
  color: #C7000B;
}

/*===========================================
  margin & padding
===========================================*/
.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.m5 {
  margin: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.p5 {
  padding: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.p10 {
  padding: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.p15 {
  padding: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.p20 {
  padding: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.p25 {
  padding: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.p30 {
  padding: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.p35 {
  padding: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.p40 {
  padding: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.p45 {
  padding: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.p50 {
  padding: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.m55 {
  margin: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.p55 {
  padding: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.m60 {
  margin: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.p60 {
  padding: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.m65 {
  margin: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.p65 {
  padding: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.m70 {
  margin: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.p70 {
  padding: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.m75 {
  margin: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.p75 {
  padding: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.p80 {
  padding: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}
@media screen and (max-width: 1024px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 639px) {
  .container {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.header {
  position: relative;
  margin-bottom: 40px;
}
.header__logo {
  position: absolute;
  top: -40px;
  left: 40px;
  width: 100px;
}
.header__copy {
  position: relative;
  padding: 20px;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.header__copy .tags {
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 639px) {
  .header__copy .tags {
    margin-bottom: 10px;
  }
}
.header__copy .tag {
  background-color: #e57373;
  color: white;
  padding: 5px 10px;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 2rem;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .header__copy .tag {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  .header__copy .tag {
    font-size: 1.4rem;
  }
}
.header__copy .logo-text {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 639px) {
  .header__copy .logo-text {
    display: block;
  }
}
.header__copy img {
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .header__copy img {
    max-width: 240px;
  }
}
@media screen and (max-width: 639px) {
  .header__copy img {
    max-width: 200px;
    display: block;
  }
}
.header__copy span {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .header__copy span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .header__copy span {
    font-size: 6.8vw;
  }
}
.header__strength {
  background-color: #ffffff;
  border: 2px solid #c7000b;
  border-radius: 8px;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}
.header__strength__title {
  background-color: #c7000b;
  color: white;
  padding: 10px;
  font-size: 32px;
  border-radius: 4px 4px 0 0;
}
.header__strength__title span {
  font-size: 32px;
}
@media screen and (max-width: 639px) {
  .header__strength__title span {
    font-size: 24px;
  }
}
.header__strength__items {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 639px) {
  .header__strength__items {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.header__strength__item {
  background-color: white;
  border-right: 1px solid #ddd;
  padding: 20px;
  flex: 1;
  margin: 0 10px;
  position: relative;
}
.header__strength__item::after {
  content: "▼";
  display: block;
  font-size: 1.4rem;
  color: #c7000b;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 639px) {
  .header__strength__item::after {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    margin-top: 0;
  }
}
@media screen and (max-width: 639px) {
  .header__strength__item {
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin: 0;
  }
}
.header__strength__item:first-child {
  margin-left: 0;
}
.header__strength__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .header__strength__item:last-child {
    border-bottom: none;
  }
}
.header__strength__item h3 {
  color: #231815;
  font-size: 24px;
  margin-bottom: 10px;
}
.header__strength__item p {
  color: #231815;
  font-size: 16px;
}
.header__strength__item p span {
  color: #c7000b;
  font-weight: bold;
}
.header::before {
  content: "";
  position: absolute;
  width: min(34vw, 400px);
  height: 90%;
  background: url("../images/main-section-bg.png") left top no-repeat;
  background-size: cover;
  right: 0px;
  top: -50px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .header::before {
    width: 34vw;
    height: 400px;
  }
}
@media screen and (max-width: 639px) {
  .header::before {
    width: 34vw;
    height: max(60vw, 300px);
  }
}

.cta {
  background-color: #ebebeb;
  padding: 20px 0;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
.cta.sec2 {
  background-color: #ffffff;
}
.cta::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background-color: #ebebeb;
  position: absolute;
  bottom: -50px;
  left: 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}
.cta.sec2::after {
  display: none;
}
.cta .lp-202406-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}
.cta .cta-bubble {
  background-color: #ffffff;
  color: #c7000b;
  border: 3px solid #c7000b;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 20px;
  display: inline-block;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}
@media screen and (max-width: 430px) {
  .cta .cta-bubble {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
.cta .cta-bubble::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #c7000b transparent transparent transparent;
}
.cta .cta-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}
.cta p {
  font-size: 1.6rem;
  margin-bottom: 60px;
  font-weight: bold;
}
@media screen and (max-width: 398px) {
  .cta p {
    font-size: 1.2rem;
  }
}
.cta p .highlight {
  position: relative;
  color: #c7000b;
  font-size: 1.6rem;
}
.cta p .highlight::before {
  content: "・・";
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: #c7000b;
  font-size: 1.2rem;
  line-height: 1;
}
.cta .cta-button {
  background-color: #c7000b;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 1.8rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 639px) {
  .cta .cta-button {
    font-size: 1rem;
  }
}
.cta .cta-button:hover {
  box-shadow: none;
}
.cta .cta-button .material-symbols-outlined {
  font-size: 1.8rem;
  vertical-align: middle;
}

.strength {
  padding: 40px 0 0 0px;
  position: relative;
}
.strength.sec2 {
  background-color: #ebebeb;
}
.strength__label {
  font-size: 24px;
  color: #c7000b;
  text-align: center;
  margin-bottom: 0;
  font-weight: bold;
}
@media screen and (max-width: 398px) {
  .strength__label {
    font-size: 18px;
  }
}
.strength__label span {
  font-weight: bold;
}
.strength__title {
  font-size: 40px;
  color: #c7000b;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 398px) {
  .strength__title {
    font-size: 32px;
  }
}
.strength__description {
  font-size: 24px;
  color: #231815;
  text-align: center;
  margin-bottom: 30px;
}
.strength__description span {
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .strength__description {
    font-size: 20px;
  }
}
@media screen and (max-width: 430px) {
  .strength__description {
    font-size: 18px;
  }
}
.strength__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 639px) {
  .strength__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.strength__text {
  flex: 1;
  font-size: 18px;
  color: #231815;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .strength__text {
    order: 2;
  }
}
@media screen and (max-width: 398px) {
  .strength__text {
    font-size: 14px;
  }
}
.strength__text p {
  margin-bottom: 0;
}
.strength__text p span {
  color: #c7000b;
  font-weight: bold;
}
.strength__image {
  flex: 1;
}
@media screen and (max-width: 639px) {
  .strength__image {
    order: 1;
  }
}
.strength__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.strength::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: url("../images/strength-bg-01.png") right top no-repeat;
  background-size: cover;
  left: -50px;
  top: -100px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .strength::before {
    width: max(30vw, 240px);
    height: max(30vw, 240px);
  }
}
@media screen and (max-width: 639px) {
  .strength::before {
    width: clamp(180px, 35vw, 240px);
    height: clamp(200px, 35vw, 290px);
  }
}
.strength.sec2::before {
  background: url("../images/strength-bg-02.png") left top no-repeat;
  background-size: cover;
  z-index: 1;
  left: auto;
  right: 0px;
  top: -50px;
  width: 200px;
  height: 240px;
}
@media screen and (max-width: 1024px) {
  .strength.sec2::before {
    width: max(20vw, 140px);
    height: max(20vw, 210px);
  }
}
@media screen and (max-width: 639px) {
  .strength.sec2::before {
    width: clamp(140px, 35vw, 200px);
    height: clamp(150px, 30vw, 240px);
    top: -30px;
    right: 0px;
  }
}
.strength.sec3::before {
  background: url("../images/strength-bg-03.png") left top no-repeat;
  background-size: cover;
  z-index: 1;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 1024px) {
  .strength.sec3::before {
    width: 30vw;
    height: 30vw;
  }
}
@media screen and (max-width: 639px) {
  .strength.sec3::before {
    width: 200px;
    height: 200px;
    top: -50px;
  }
}
.strength::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  position: absolute;
  bottom: -50px;
  left: 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}
.strength.sec2::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background-color: #ebebeb;
  position: absolute;
  bottom: -50px;
  left: 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}
.strength.sec3::after {
  display: none;
}
.strength__services {
  background-color: #ffffff;
  border: 2px solid #c7000b;
  border-radius: 8px;
  text-align: center;
  margin: 20px auto;
  max-width: 100%;
}
.strength__services__title {
  background-color: #c7000b;
  color: white;
  padding: 10px;
  font-size: 32px;
  border-radius: 4px 4px 0 0;
}
@media screen and (max-width: 639px) {
  .strength__services__title {
    font-size: 24px;
  }
}
.strength__services__items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .strength__services__items {
    margin: 16px 40px;
    flex-direction: column;
  }
}
.strength__services__item {
  background-color: white;
  flex: 1;
  margin: 0 80px;
  padding: 20px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .strength__services__item {
    margin: 0 40px;
  }
}
@media screen and (max-width: 639px) {
  .strength__services__item {
    margin: 0;
    padding: 0;
    text-align: left;
  }
}
.strength__services__item p {
  color: #231815;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 10px;
  position: relative;
}
.strength__services__item p:before {
  content: "check_circle";
  font-family: "Material Symbols Outlined";
  color: #4ec702;
  margin-right: 10px;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.strength__services__description {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 398px) {
  .strength__services__description {
    font-size: 16px;
  }
}

.footer {
  background-color: #231815;
  position: relative;
  z-index: 2 !important;
  margin-bottom: 160px;
}
.footer p {
  color: #ffffff;
  font-size: 0.8rem;
  margin: 0 auto;
  text-align: center;
  padding: 10px 0;
}

.pc-hidden {
  display: none;
}
@media screen and (max-width: 639px) {
  .pc-hidden {
    display: block;
  }
}

.sticky-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.sticky-button p {
  margin: 0;
  font-size: 1.4rem;
  color: #231815;
  font-weight: bold;
}
.sticky-button p span {
  font-weight: bold;
  color: #c7000b;
  position: relative;
}
.sticky-button p span::before {
  content: "・・";
  position: absolute;
  top: -0.6rem;
  left: 35%;
  transform: translateX(-50%);
  color: #c7000b;
  font-size: 1.2rem;
  line-height: 1;
}
.sticky-button .cta-button {
  background-color: #c7000b;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 639px) {
  .sticky-button .cta-button {
    font-size: 1rem;
  }
}
.sticky-button .cta-button:hover {
  background-color: #940008;
}
.sticky-button .cta-button .material-symbols-outlined {
  font-size: 1.8rem;
  vertical-align: middle;
}

.hide-sticky {
  opacity: 0;
  pointer-events: none;
}

.show-sticky {
  opacity: 1;
  pointer-events: auto;
}
/*# sourceMappingURL=main.css.map */