@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Roboto:wght@400;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  background-color: #fff;
  font-family: Roboto, "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", HiraKakuProN-W3, sans-serif;
}

body * {
  box-sizing: border-box;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h2,
h3,
h4 {
  line-height: 1.4;
}

h2.normal {
  position: relative;
  font-size: 30px;
  line-height: 1.4;
  margin: 0 auto 30px;
}
h2.normal strong {
  color: #C5000B;
}
h2.normal small {
  color: #C5000B;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
h3 {
  font-size: 20px;
}

p {
  margin: 0;
}
p.lead {
  margin-top: -20px;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

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

@media screen and (max-width: 1080px) {
  h2.normal {
    margin: 0 auto 40px;
    font-size: 30px;
  }
  h2.normal small {
    font-size: 18px;
  }
  p.lead {
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  h2.normal {
    font-size: 24px;
  }
  h2.normal br {
    display: none;
  }
  h2.normal small {
    font-size: 16px;
  }
  h3 {
    font-size: 20px;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: 0.3s;
}
a.dlbtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 500px;
  max-width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #D9000C 0%, #EF1E79 100%);
  border-radius: 15px;
  color: #fff;
  font-size: 20px;
  position: relative;
  padding: 0 40px;
  font-weight: bold;
  gap: 40px;
}
a.dlbtn::after {
  order: 3;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(0, -25%) rotate(45deg);
  transition: 0.3s;
}
a.dlbtn:hover {
  opacity: 0.5;
}
a.dlbtn:hover::after {
  transform: translate(0, -10%) rotate(45deg);
}

.dlbtn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 500px;
  width: 100%;
}
.dlbtn-wrap a.dlbtn {
  width: auto;
  flex: 1;
  justify-content: center;
  height: 64px;
  font-size: 18px;
  padding: 0 20px;
  gap: 0;
}
.dlbtn-wrap a.dlbtn::after {
  display: none;
}
.dlbtn-wrap a.dlbtn-demo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 240px;
  height: 64px;
  background: #fff;
  border: 2px solid #C5000B;
  border-radius: 15px;
  color: #C5000B;
  font-size: 18px;
  font-weight: bold;
  padding: 0 20px;
  transition: 0.3s;
}
.dlbtn-wrap a.dlbtn-demo:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1080px) {
  a.dlbtn {
    margin-right: auto;
    margin-left: auto;
  }
  .dlbtn-wrap {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  a.dlbtn {
    font-size: 16px;
    border-radius: 10px;
    padding: 0 20px;
    gap: 20px;
    height: 60px;
  }
  a.dlbtn::before {
    height: 30px;
  }
  a.dlbtn::after {
    width: 12px;
    height: 12px;
  }
  .dlbtn-wrap {
    flex-direction: column;
    max-width: 100%;
    gap: 0;
  }
  .dlbtn-wrap a.dlbtn, .dlbtn-wrap a.dlbtn-demo {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 60px;
    font-size: 16px;
    border-radius: 10px;
  }
}
*:focus {
  outline: none !important;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", HiraKakuProN-W3, sans-serif;
  line-height: normal;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

input[type=text],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 40px;
  padding: 8px;
  margin-bottom: 20px;
  border-radius: 4px;
  outline: none;
  background: #F7F7F2;
  border-top: 2px solid #D2D2CE;
  border-left: 1px solid #EAEAE6;
  border-right: 1px solid #EAEAE6;
  border-bottom: none;
}

textarea {
  width: 100%;
  height: 75px;
}

#tsuroku_wrap {
  overflow: hidden;
}

section[class*=bg-] {
  border-radius: 100px;
  margin: 0 40px 40px;
  padding: 60px;
}

.sec-inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.bg-orange {
  background-color: #FDF3E9;
}

.bg-red {
  background-color: #FFF2F3;
}

.bg-blue {
  background-color: #F0F5FC;
}

.box {
  border-radius: 50px;
  background-color: #fff;
  padding: 20px 40px;
}

@media screen and (max-width: 768px) {
  section[class*=bg-] {
    border-radius: 50px;
    margin: 0 10px 20px;
    padding: 40px 20px;
  }
  .box {
    border-radius: 25px;
    padding: 20px;
  }
}
.kv {
  background: url(./img/mv_bg.svg) center top -600px no-repeat;
  padding: 128px 80px 0;
}
.kv .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.kv-txt {
  position: relative;
  z-index: 1;
  width: 520px;
}
.kv-txt em {
  color: #0057D9;
  border: 1px solid #0057D9;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px 8px;
  margin-bottom: 15px;
  font-style: normal;
  line-height: 1;
  font-weight: bold;
}
.kv-txt h1 {
  font-size: 41px;
  line-height: 1.3;
  font-weight: 900;
  background: linear-gradient(90deg, #0057D9 0%, #1E94EF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 10px;
  font-feature-settings: "palt";
}
.kv-txt h2 {
  margin-bottom: 10px;
  font-weight: 900;
}
.kv-txt p {
  font-size: 14px;
  margin-bottom: 20px;
}
.kv-txt p span {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  font-weight: bold;
}
.kv-txt p span::before {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-left: 2px solid #0057D9;
  border-bottom: 2px solid #0057D9;
  transform: translate(0, -4px) rotate(-45deg);
}
.kv-txt p:last-child {
  margin-bottom: 0;
}
.kv-txt small {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  padding-top: 10px;
}
.kv-txt figure {
  margin-bottom: 30px;
}
.kv-txt figure figcaption {
  font-size: 12px;
  color: #999;
  display: block;
  margin-top: 5px;
}
.kv-txt a {
  margin-bottom: 10px;
}
.kv-img {
  width: 720px;
  position: absolute;
  top: 0px;
  left: 420px;
}
.kv-img img {
  position: relative;
}
.kv-img::before {
  content: "";
  display: block;
  background: url(./img/square.webp) left top/cover no-repeat;
  width: 74.358974359%;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-55%, -50%);
}

@media screen and (max-width: 1080px) {
  .kv {
    background-position: center top;
  }
  .kv .inner {
    flex-direction: column;
  }
  .kv-txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .kv-txt h1, .kv-txt h2 {
    text-align: center;
  }
  .kv-txt p {
    text-align: center;
  }
  .kv-txt figure {
    text-align: center;
  }
  .kv-img {
    position: relative;
    left: auto;
    margin: 100px auto 20px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    padding: 120px 20px 0;
    background-position: center top -440px;
  }
  .kv-txt h1 {
    font-size: 7.1428571429vw;
  }
  .kv-txt h2 {
    font-size: 4.1666666667vw;
  }
  .kv-txt p, .kv-txt em {
    font-size: 3.5714285714vw;
  }
  .kv-txt p span::before, .kv-txt em span::before {
    transform: translate(0, -2px) rotate(-45deg);
  }
  .kv-txt p br, .kv-txt em br {
    display: none;
  }
  .kv-txt small {
    font-size: 3.125vw;
  }
  .kv-img {
    margin: 60px auto 0;
    transform: translateX(0%);
  }
}
@media screen and (max-width: 480px) {
  .kv-img {
    margin-top: 30px;
  }
}
/* request-float */
#request-float {
  height: 100px;
}
#request-float .inner {
  width: 1080px;
  padding: 10px 340px 10px 10px;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  display: none;
}
#request-float .inner.fix {
  display: block;
  position: fixed;
  padding: 10px;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  box-shadow: none;
}
#request-float .inner.fix a {
  animation: float-fixed 0.3s 1;
  margin: 0 auto;
}
#request-float .inner.fix > figure {
  display: none;
}
#request-float .inner.fix .annotation {
  display: none;
}
#request-float .inner > figure {
  margin: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
#request-float .inner > figure img {
  max-width: 100%;
}
#request-float .inner .annotation {
  position: absolute;
  right: 0;
  bottom: -24px;
  color: #999;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0;
}
#request-float a {
  position: relative;
  max-width: 100%;
  width: 480px;
  height: 60px;
  padding: 0 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(90deg, #D9000C 0%, #EF1E79 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 30px;
}
#request-float a span {
  margin-right: 10px;
}
#request-float a figure {
  margin: 0 0 0 -60px;
}
#request-float a figure img {
  max-width: 100%;
}
#request-float a::after {
  order: 3;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(0, -25%) rotate(45deg);
  flex-shrink: 0;
}
#request-float a:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

@keyframes float-fixed {
  from {
    transform: translateY(120px);
  }
  to {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 960px) {
  #request-float .inner {
    padding: 10px;
  }
  #request-float .inner > figure {
    width: 240px;
    bottom: 100px;
  }
  #request-float .inner > figure img {
    max-width: 100%;
  }
  #request-float .inner .annotation {
    bottom: -16px;
    right: 10px;
  }
  #request-float a {
    width: 100%;
  }
  #request-float a figure {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  #request-float {
    height: 80px;
    margin-top: -40px;
  }
  #request-float .inner > figure {
    width: 200px;
    bottom: 80px;
  }
  #request-float a {
    height: 60px !important;
    font-size: 1.4rem;
    padding: 0 20px;
    border-radius: 5px;
    gap: 10px;
  }
  #request-float a figure {
    width: 114px;
    margin: 0 -10px 0 -30px;
    transform: translateY(2px);
  }
  #request-float a::after {
    margin-left: 30px;
    width: 12px;
    height: 12px;
  }
  #request-float a span {
    margin-right: 0;
    margin-left: 10px;
    text-align: center;
  }
}
.data {
  padding: 80px 8%;
  margin-bottom: 0;
  background: #fdf3e9 url(//kaiwa.cloud/wp-content/themes/my-theme/./assets/img/home_eff_bg.png) right -15vw top 10% no-repeat;
}
.data ul {
  list-style: none;
  margin-top: 0;
}

.data__cont {
  max-width: 1000px;
  margin: 0 auto 80px;
}
.data__cont .num-wrap {
  display: flex;
  justify-content: space-between;
}
.data__cont .num-wrap p {
  width: calc((100% - 60px) / 3);
  border-radius: 25px;
  background-color: #fff;
  padding: 30px 20px 25px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
.data__cont .num-wrap p small {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.data__cont .num-wrap p strong {
  font-weight: bold;
  color: #C5000B;
  font-size: 3rem;
  line-height: 1.3;
  background: none;
  display: block;
}
.data__cont .num-wrap p span {
  font-family: "Barlow", sans-serif;
  font-size: 4rem;
}
.data__cont .annotation {
  text-align: center;
  margin: 20px auto;
}
.data__cont .partner {
  border-radius: 25px;
  background-color: #fff;
  text-align: center;
  padding: 40px;
}
.data__cont .partner h4 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.data__cont .partner ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 !important;
}
.data__cont .partner ul li {
  margin: 0 10px;
  width: 180px;
}
.data__cont .partner ul li figure {
  margin: 0;
}
.data__cont .partner ul li figure img {
  max-width: 100%;
  height: auto;
}
.data__cont .partner a {
  margin: 20px auto;
}

/* section-heading */
.section-heading {
  margin: 0 0 32px;
}

.section-heading span {
  display: block;
  text-align: center;
}

.section-heading small {
  display: block;
  text-align: center;
  font-size: 2rem;
}

.section-heading .main {
  color: #c5000b;
  font-size: 1.6rem;
}

.section-heading .sub {
  margin-top: 5px;
}

.section-heading .bar {
  font-size: 3rem;
  position: relative;
  padding-bottom: 30px;
}

.section-heading .bar::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: #C5000B;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

@media screen and (min-width: 37.5625em) {
  .section-heading {
    margin: 0 0 50px;
  }
  .section-heading .main {
    font-size: 2rem;
  }
  .section-heading .sub {
    font-size: 3rem;
  }
}
@media screen and (min-width: 61.25em) {
  .section-heading {
    margin: 0 0 50px;
  }
}
/* section-heading-img */
.section-heading-img img {
  display: block;
  margin: 0 auto;
  height: auto;
}

@media only screen and (max-width: 47.9375em) {
  .section-heading-img {
    margin-bottom: 30px;
  }
  .section-heading-img img {
    width: 180px;
  }
}
@media screen and (min-width: 48em) {
  .section-heading-img {
    margin-bottom: 39px;
  }
  .section-heading-img img {
    width: 240px;
  }
  .section-heading .bar {
    margin: 19px 5% 0;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 61.25em) {
  .section-heading-img {
    margin-bottom: 54px;
  }
  .section-heading-img img {
    width: 309px;
  }
}
@media screen and (max-width: 1080px) {
  .data {
    background-position: right -45vw top 50px;
  }
  .data__cont .num-wrap p strong {
    line-height: 1.3;
  }
  .data__cont .num-wrap p span {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .data {
    padding-right: 15px;
    padding-left: 15px;
  }
  .data__cont .partner ul li {
    width: calc(33% - 10px);
  }
  .data__cont .num-wrap p {
    margin: 0 auto 10px !important;
  }
  .data {
    padding: 50px 15px;
    background-size: 100%;
    background-position: center bottom -50vw;
  }
  .data .section-heading {
    padding: 0 4%;
  }
  .section-heading small {
    font-size: 1.6rem;
  }
  .data .section-heading .sub {
    font-size: 2.4rem;
  }
  .data__cont .num-wrap {
    flex-direction: column;
  }
  .data__cont .num-wrap + .annotation {
    margin: 20px auto;
  }
  .data__cont .num-wrap p {
    width: 100%;
    padding: 15px 10px 15px;
    margin-bottom: 10px;
  }
  .data__cont .num-wrap p strong {
    font-size: 2.4rem;
  }
  .data__cont .num-wrap p span {
    display: inline;
    font-size: 3.2rem;
  }
  .data__cont .partner {
    padding: 30px 10px;
  }
  .data__cont .partner h4 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .data__cont .partner ul li {
    margin: 5px;
  }
  .data__cont .partner ul li figure {
    height: 40px;
  }
  .data__cont .partner ul li figure img {
    max-width: 100%;
    max-height: 100%;
  }
}
.entry-content .data__cont .num-wrap p {
  margin-bottom: 0;
}

.entry-content .data h2 {
  margin-top: 0;
}

.phonecall {
  display: flex;
  justify-content: center;
}

.phonecall-inner {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 20px 30px;
  max-width: 100%;
}
.phonecall-inner p {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 30px;
}
.phonecall-inner p::before {
  order: 2;
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #000;
  transform: skewX(-30deg);
}
.phonecall-inner p span {
  font-size: 18px;
  order: 1;
}
.phonecall-inner p strong {
  order: 3;
  color: #C5000B;
  font-size: 40px;
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.phonecall-inner p strong small {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

.phonecall-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}
.phonecall-text em {
  font-style: normal;
}
.phonecall-text a {
  color: #C5000B;
}

@media screen and (max-width: 1080px) {
  .phonecall-inner {
    padding: 15px 20px;
  }
  .phonecall-inner p {
    flex-direction: column;
    gap: 0;
  }
  .phonecall-inner p::before {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  .phonecall-inner p span {
    font-size: 13px;
  }
  .phonecall-inner p strong {
    font-size: 32px;
  }
}
/*************************************************/
.prob__cont {
  display: flex;
  gap: 40px;
  flex: 1 1 0;
}
.prob__cont__item {
  flex: 1 1 0;
  min-width: 0;
}
.prob__cont__item figure {
  margin-bottom: 20px;
}
.prob__cont__item h3 {
  margin-bottom: 20px;
}
.prob__cont__item h3 i {
  font-style: normal;
  color: #c5000b;
  font-size: 32px;
}
.prob__cont__item figcaption {
  font-weight: bold;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 16px;
}
.prob__cont__item small {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  display: block;
}

@media screen and (max-width: 1080px) {
  .prob__cont {
    flex-direction: column;
    gap: 20px;
  }
  .prob__cont__item img {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .prob__cont__item h3 {
    margin-bottom: 30px;
  }
  .prob__cont__item h3 i {
    font-size: 28px;
  }
  .prob__cont__item figcaption {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 14px;
  }
}
/*************************************************/
.loss__cont {
  display: flex;
  gap: 30px;
}
.loss__cont__item {
  flex: 1 1 0;
}
.loss__cont__item small {
  display: block;
  font-size: 14px;
  color: #c5000b;
  margin-bottom: 5px;
}
.loss__cont__item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.loss__cont__item img {
  margin-bottom: 15px;
}

@media screen and (max-width: 1080px) {
  .loss__cont {
    flex-direction: column;
  }
  .loss__cont img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .loss__cont {
    gap: 20px;
  }
  .loss__cont__item h3 {
    margin-bottom: 10px;
  }
  .loss__cont__item img {
    margin-bottom: 20px;
  }
}
/*************************************************/
.sol__cont__item {
  display: flex;
  gap: 40px;
}
.sol__cont__item > * {
  flex: 1 1 0;
}
.sol__cont__item:not(:last-child) {
  margin-bottom: 40px;
}
.sol__cont__item div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.sol__cont__item div span {
  display: inline-flex;
  background-color: #c5000b;
  color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 30px;
  line-height: 1;
}
.sol__cont__item div p {
  padding-bottom: 10px;
}
.sol__cont__item div ul {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 20px;
  font-size: 14px;
}
.sol__cont__item div ul li:not(:last-child) {
  margin-bottom: 5px;
}

@media screen and (max-width: 1080px) {
  .sol__cont__item {
    gap: 20px;
    flex-direction: column;
  }
  .sol__cont__item figure {
    text-align: center;
  }
  .sol__cont__item figure img {
    width: 480px;
  }
  .sol__cont__item div ul {
    width: 100%;
  }
}
@media screen and (max-width: 786px) {
  .sol__cont__item div ul {
    border-radius: 10px;
  }
}
/*************************************************/
.merit__cont {
  display: flex;
  gap: 30px;
}
.merit__cont__item {
  flex: 1 1 0;
}
.merit__cont__item h3 {
  margin-bottom: 15px;
}
.merit__cont__item img {
  margin-bottom: 15px;
}

@media screen and (max-width: 1080px) {
  .merit__cont {
    flex-direction: column;
  }
  .merit__cont img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 786px) {
  .merit__cont {
    gap: 20px;
  }
  .merit__cont__item img {
    margin-bottom: 20px;
  }
}
/*************************************************/
.effect__cont {
  display: flex;
  gap: 30px;
}
.effect__cont__item {
  flex: 1 1 0;
}
.effect__cont__item h3 {
  margin-bottom: 15px;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .effect__cont {
    flex-direction: column;
  }
  .effect__cont img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 786px) {
  .effect__cont {
    gap: 20px;
  }
  .effect__cont__item {
    padding: 30px;
  }
  .effect__cont__item img {
    max-width: 75%;
    margin: 0 auto;
  }
}
/*************************************************/
.support {
  margin: 0 40px 40px;
  padding: 100px 40px;
}
.support__cont {
  display: flex;
  gap: 40px;
}
.support__cont__item {
  flex: 1 1 0;
  border-radius: 50px;
  overflow: hidden;
  background-color: #F0F5FC;
}
.support__cont__item img {
  aspect-ratio: 16/9;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support__cont__item div {
  padding: 30px;
}
.support__cont__item div h3 {
  margin-bottom: 15px;
}

@media screen and (max-width: 1080px) {
  .support__cont {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .support__cont__item {
    flex: auto;
    width: 570px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .support {
    margin: 0 10px;
    padding: 60px 20px;
  }
  .support__cont {
    gap: 20px;
  }
  .support__cont__item {
    border-radius: 25px;
  }
  .support__cont__item div {
    padding: 30px;
  }
}
/*************************************************/
.achieve .sec-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
.achieve .sec-inner > * {
  flex: 1 1 50%;
}
.achieve p {
  font-size: 18px;
  margin-top: -20px;
  font-weight: bold;
}
.achieve .box {
  padding: 20px 60px;
}
.achieve figure {
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .achieve .sec-inner {
    flex-direction: column;
  }
  .achieve .sec-inner > * {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .achieve .sec-inner {
    gap: 30px;
  }
  .achieve p {
    font-size: 16px;
  }
  .achieve p br {
    display: none;
  }
  .achieve .box {
    padding: 40px;
  }
}
/*************************************************/
/*************************************************/
.to-dl {
  margin: 0 40px 40px;
  padding: 60px 40px;
}
.to-dl__cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.to-dl__cont__txt h2 {
  margin-bottom: 30px;
}
.to-dl__cont__txt ul {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.to-dl__cont__txt ul li {
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  gap: 10px;
  background-color: #FDF3E9;
  border-radius: 30px;
}
.to-dl__cont__txt ul li::before {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-left: 3px solid #c5000b;
  border-bottom: 3px solid #c5000b;
  transform: translate(0, -3px) rotate(-45deg);
}
.to-dl__cont__img {
  width: 33.333%;
  position: relative;
}
.to-dl__cont__img::before {
  width: 110%;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  background: url(./img/square.webp) left top/contain no-repeat;
}
.to-dl__cont__img img {
  position: relative;
}

@media screen and (max-width: 1080px) {
  .to-dl__cont {
    gap: 80px;
    flex-direction: column;
  }
  .to-dl__cont__txt {
    order: 2;
    text-align: center;
  }
  .to-dl__cont__txt a {
    margin: 0 auto;
  }
  .to-dl__cont__img {
    width: 360px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .to-dl {
    padding: 100px 20px;
    margin: 0;
  }
  .to-dl__cont {
    gap: 60px;
  }
  .to-dl__cont__txt {
    width: 100%;
  }
  .to-dl__cont__txt ul {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
  .to-dl__cont__txt ul li {
    font-size: 14px;
    padding: 5px 10px;
  }
  .to-dl__cont__img {
    width: 67%;
  }
}
/*************************************************/
.title-wrap {
  padding: 0 40px;
}
.title-wrap h2 {
  width: 1000px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.cases {
  padding: 80px 0 100px;
}
.cases > p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin: -20px auto 20px;
}
.cases > p span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cases > p span::before, .cases > p span::after {
  content: "";
  display: block;
  width: 2px;
  height: 32px;
  background-color: #333;
  margin: 0 30px 0 0;
  transform: rotate(-30deg);
}
.cases > p span::after {
  margin: 0 0 0 30px;
  transform: rotate(30deg);
}
.cases .item {
  margin-bottom: 40px;
  position: relative;
  transition: 0.3s;
  border: 1px solid #ddd;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.cases .item:hover {
  text-decoration: none !important;
}
.cases .item a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.cases .item figure {
  margin: -20px -20px 20px;
  flex-shrink: 0;
  position: relative;
}
.cases .item figcaption {
  position: absolute;
  left: 50%;
  top: 0;
  height: 42px;
  background: #c5000b;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  border-radius: 21px;
  white-space: nowrap;
  margin-top: 0;
}
.cases .item h4 {
  margin-bottom: 15px;
  line-height: 1.6;
}
.cases .item h4 strong {
  background: linear-gradient(transparent 70%, #f6f313 70%, #f6f313 100%);
}
.cases .item div {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cases .item div p {
  margin-top: auto;
  font-size: 1.3rem;
  line-height: 1.4;
}

@media screen and (max-width: 1080px) {
  .cases {
    padding: 80px 0;
  }
  .cases > p {
    font-size: 2rem;
  }
  .cases > p span::before {
    margin-right: 15px;
  }
  .cases > p span::after {
    margin-left: 15px;
  }
}
.annotation {
  font-size: 1.4rem;
  color: #888;
  margin-top: 30px;
}

.footer_infon {
  background-color: #F5F4F2;
  padding: 30px 16px;
}

.inner_m {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1120px;
  padding: 0 16px;
}

.footer_info_navi2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_info_navi2 a {
  padding: 0 20px;
  line-height: 1.4;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  margin: 0;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease 0s;
  padding: 0 20px;
  line-height: 1.4;
  border-left: 1px solid #cccccc;
}

.footer_info_navi2 a:first-child {
  border: none;
}

.footer_infon small {
  display: block;
  margin: 25px auto 0;
  text-align: center;
  font-size: 13px;
  color: #999999;
}

@media screen and (max-width: 1080px) {
  .footer_infon {
    padding: 15px 0 20px;
  }
  .inner_m {
    padding: 0 16px;
  }
  .footer_info_navi2 {
    flex-wrap: wrap;
  }
  .footer_info_navi2 a.icon_target {
    padding-right: 20px;
    background-position: 95% center;
  }
  .footer_info_navi2 a {
    padding: 8px 10px;
    font-size: 14px;
    width: 100%;
    border-left: none;
  }
  .footer_infon small {
    font-size: 11px;
    margin-top: 10px;
  }
}
/* フォーム ******************************************************************/
#block_form {
  position: relative;
  margin: 0 40px 40px;
  padding: 100px 40px;
  background-color: #fff;
}

#block_form input + h4,
#block_form textarea + h4,
#block_form br + h4 {
  margin-top: 0px;
}

#block_form form {
  width: 50% !important;
  max-width: 800px;
  margin: 0;
}

.contact__cont {
  display: flex;
  justify-content: center;
}
.contact__cont__img {
  width: 320px;
  position: relative;
  margin: 0 auto 80px;
}
.contact__cont__img::before {
  width: 110%;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  background: url(./img/square.webp) left top/contain no-repeat;
}
.contact__cont__img img {
  position: relative;
}
.contact__cont .preview {
  padding-right: 60px;
}
.contact__cont .preview p {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.contact__cont .preview ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 5px;
  font-weight: normal;
}
.contact__cont .preview ul li::before {
  content: "";
  width: 16px;
  height: 8px;
  border-left: 2px solid #c5000b;
  border-bottom: 2px solid #c5000b;
  transform: translateY(-3px) rotate(-45deg);
  margin-right: 10px;
}

button {
  cursor: pointer;
}

@media screen and (min-width: 1281px) {
  #block_form {
    font-size: 18px;
  }
  #block_form .label-wrap label {
    padding-right: 30px;
    width: auto;
  }
  input[type=text],
  input[type=password],
  textarea {
    height: 60px;
  }
  textarea {
    height: 150px;
  }
  #block_form button {
    font-size: 18px;
  }
}
.flow-wrap {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.flow-item {
  width: calc((100% - 80px) / 5);
  background: #fff;
  border-top: 8px solid #C6090F;
  border-radius: 10px;
  padding: 15px 10px 10px;
  position: relative;
}
.flow-item * {
  text-align: center;
}
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  width: 0px;
  height: 0px;
  border-left: 6px solid #C6090F;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
  right: -30px;
  top: 115px;
  z-index: 1;
}
.flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 2px;
  background: #C6090F;
  right: -25px;
  top: 118px;
  z-index: 1;
}
.flow-item i {
  position: absolute;
  width: 60px;
  height: 60px;
  right: -40px;
  top: 25px;
  z-index: 1;
  font-size: 13px;
  border: 1px solid #C6090F;
  border-radius: 40px;
  color: #C6090F;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  line-height: 1;
}
.flow-item i::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 60px;
  bottom: -60px;
  left: 30px;
  background: #C6090F;
}
.flow-item h5 {
  font-size: 18px;
  margin: 0 auto 4px;
  font-weight: normal;
}
.flow-item h3 {
  font-size: 16px;
  color: #C6090F;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  margin-bottom: 15px;
}
.flow-item h3 small {
  font-size: 14px;
}
.flow-item p {
  font-size: 14px;
  text-align: left;
  margin-bottom: 0 !important;
}
.flow-item p + p {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.6;
}
.flow-item p.notice {
  font-size: 13px;
  color: #777;
}
.flow-item p small {
  display: block;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px 10px;
  font-size: 16px;
  border: 1px solid #c5000b;
}
.flow-item p small.red {
  background: #C6090F;
  border: none;
  color: #fff;
}

.notice {
  width: 1000px;
  max-width: 100%;
  font-size: 13px;
  margin: 10px auto;
}

@media screen and (max-width: 1080px) {
  .notice {
    margin-top: 0 !important;
  }
  .flow-wrap {
    flex-direction: column;
  }
  .flow-item {
    width: 100%;
    border-top: 0;
    border-left: 8px solid #C6090F;
    padding: 15px 0 20px 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .flow-item:not(:last-child)::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: none;
    border-top: 6px solid #C6090F;
    right: auto;
    top: auto;
    left: 50%;
    bottom: -30px;
    transform: translateX(-4px);
  }
  .flow-item:not(:last-child)::before {
    height: 35px;
    width: 2px;
    right: auto;
    top: auto;
    left: calc(50% - 1px);
    bottom: -25px;
  }
  .flow-item i {
    right: auto;
    top: auto;
    left: calc(50% + 30px);
    bottom: -40px;
  }
  .flow-item i::after {
    width: 30px;
    height: 1px;
    bottom: auto;
    top: 50%;
    left: -30px;
  }
  .flow-item h5,
  .flow-item h3,
  .flow-item p {
    margin-right: 5%;
    margin-left: 5%;
  }
  .flow-item h5,
  .flow-item h3 {
    display: inline-block;
    margin: 0 5px;
  }
}
#floater {
  display: none;
  opacity: 0;
  position: fixed;
  left: 0;
  bottom: 0;
  transition: opacity 1s ease;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  padding: 10px;
  width: 100%;
}

#floater a {
  color: #fff !important;
  text-decoration: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #CA2226;
  border: 2px solid #CA2226;
  transition: all 0.3s ease;
  border-radius: 4px;
  position: relative;
  width: 720px;
  height: 80px;
  font-size: 2.4rem;
  margin: 0 auto;
  font-weight: bold;
}

#floater a img {
  flex-shrink: 0;
}

#floater a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(0, -2px) rotate(45deg);
  transition: all 0.3s ease;
  margin-left: 30px;
}

#floater a:hover {
  background-color: #fff;
  color: #CA2226 !important;
}

#floater a:hover::after {
  border-right: 2px solid #CA2226;
  border-bottom: 2px solid #CA2226;
}

#floater.is-fixed {
  display: block;
  opacity: 1;
}

#floater p {
  text-align: center;
  margin-bottom: 2px;
}

@media screen and (max-width: 1080px) {
  #floater a {
    width: 100%;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  #floater {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
  }
  #floater a {
    height: 60px;
    padding: 0 20px 0 0;
  }
  #floater a::after {
    width: 12px;
    height: 12px;
    margin-left: 15px;
  }
  #floater a > figure {
    transform: translateX(-10px);
  }
  #floater p {
    margin-bottom: 0;
  }
  #block_form {
    font-size: 14px;
  }
  #side a.btn-tobtm {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  #tsuroku_wrap {
    flex-wrap: wrap;
  }
  .large-view {
    display: none;
  }
  #block_form {
    width: 100%;
    margin-left: 0;
  }
  #block_form form {
    width: 100% !important;
  }
  .contact__cont {
    flex-direction: column;
    gap: 40px;
  }
  .contact__cont .preview {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #block_form {
    padding: 60px 30px;
  }
  #block_form h2.normal {
    margin-bottom: 40px;
  }
  .contact__cont {
    gap: 20px;
  }
  .contact__cont__img {
    width: 75%;
    margin-bottom: 60px;
  }
  .contact__cont .preview p {
    font-size: 20px;
  }
  .contact__cont .preview ul li {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  .small-view {
    display: none;
  }
}
@media screen and (min-width: 1169px) {
  .sp-view {
    display: none;
  }
}
@media screen and (max-width: 1168px) {
  .pc-view {
    display: none;
  }
}
#breadcrumb,
#sidebar,
#before_footer_widget,
#footer {
  display: none;
}

@media screen and (max-width: 770px) {
  .large-view {
    display: none;
  }
}
@media screen and (min-width: 771px) {
  .small-view {
    display: none;
  }
}
/*マルケト*********************************/
.mktoForm {
  width: 100% !important;
}

.mktoForm .mktoFormCol {
  width: 100%;
  float: none;
  flex-shrink: 14;
}

.mktoForm .mktoFormCol:not(.mktoFieldDescriptor) {
  flex-shrink: 1;
}

.mktoForm .mktoFieldWrap {
  width: 100%;
  display: flex;
  float: none;
  align-items: flex-start;
}

.mktoForm * {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", HiraKakuProN-W3, sans-serif !important;
}

.mktoForm .mktoFormRow {
  display: flex;
}

.mktoForm .mktoFormRow:nth-of-type(5) .mktoFormCol {
  margin-right: 20px;
}

.mktoForm label {
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  padding-left: 5px !important;
  padding-right: 10px !important;
}

body .mktoForm .mktoField {
  font-size: 16px;
}

body .mktoForm label[for=personalInfoConsent] {
  font-size: 16px;
  width: 1px !important;
  font-weight: normal !important;
  line-height: 1.6 !important;
  cursor: pointer;
}

body .mktoForm label[for=personalInfoConsent] .mktoAsterix {
  float: none !important;
  transform: none;
  font-weight: bold;
}

body .mktoForm label[for=personalInfoConsent] + .mktoGutter {
  display: none;
}

body .mktoForm label[for=personalInfoConsent] ~ .mktoCheckboxList {
  padding-top: 6px;
}

body .mktoForm #personalInfoConsent {
  cursor: pointer;
}

.mktoForm span {
  font-size: 16px;
}

.mktoForm span span,
.mktoForm span a {
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.mktoForm span a {
  text-decoration: underline;
}

.mktoHtmlText {
  width: auto !important;
  padding-top: 0px !important;
}

.mktoForm input[type=text],
.mktoForm input[type=tel],
.mktoForm input[type=email] {
  padding: 15px 20px !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border: 2px solid #dddddd;
  border-radius: 5px;
  width: 100% !important;
  height: 60px;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", HiraKakuProN-W3, sans-serif !important;
}

.mktoForm .mktoAsterix {
  font-size: 18px !important;
  float: none !important;
}

.mktoCheckboxList.mktoInvalid {
  border: none !important;
}

.mktoForm input[type=text]:focus,
.mktoForm input[type=tel]:focus,
.mktoForm input[type=email]:focus {
  border-color: #c5000b;
  outline-color: #c5000b;
}

.mktoForm .mktoButtonRow {
  display: block;
  padding-left: 25px;
}

.mktoForm .mktoButtonWrap {
  margin-left: 0 !important;
  display: inline-block;
  line-height: 1;
}

body .mktoForm .mktoButtonWrap .mktoButton {
  width: 100%;
  min-width: 300px;
  height: 60px;
  border-radius: 50px !important;
  background: #c5000b !important;
  background-image: none !important;
  border: 2px solid #c5000b !important;
  box-shadow: none;
  color: #fff !important;
  cursor: pointer;
  -webkit-appearance: button;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px 24px;
  font-weight: bold;
  transition: all 0.5s ease;
  text-shadow: none;
  font-size: 18px;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", HiraKakuProN-W3, sans-serif !important;
  position: relative;
  padding: 0 20px 2px !important;
}

body .mktoForm .mktoButtonWrap .mktoButton:hover {
  background: #fff !important;
  color: #c5000b !important;
}

@media screen and (max-width: 1080px) {
  .mktoForm {
    padding: 0 !important;
  }
  .mktoForm label {
    font-size: 1.6rem;
    margin-bottom: 10px !important;
    width: auto !important;
    padding-right: 0 !important;
  }
  .mktoForm input[type=text],
  .mktoForm input[type=tel],
  .mktoForm input[type=email] {
    height: 40px !important;
    padding: 3px 10px 5px !important;
  }
  .mktoForm label[for=personalInfoConsent] {
    flex-shrink: 1;
  }
  .mktoForm .mktoRadioList,
  .mktoForm .mktoCheckboxList {
    width: auto !important;
  }
  body .mktoForm label[for=personalInfoConsent] {
    margin-left: 0 !important;
    width: auto !important;
    padding-left: 5px !important;
  }
  .mktoButtonWrap {
    margin: 0 auto !important;
    width: 100%;
  }
  body .mktoForm .mktoButtonWrap .mktoButton {
    padding-right: 40px;
    padding-left: 40px;
    min-width: auto;
  }
  .mktoForm .mktoGutter,
  .mktoForm .mktoOffset {
    display: block !important;
    height: 5px !important;
  }
  .mktoForm .mktoFormRow .mktoRequiredField .mktoAsterix {
    width: 15px;
  }
  .mktoForm .mktoFieldWrap:not(.mktoRequiredField) {
    padding-left: 15px;
  }
  .mktoHtmlText {
    line-height: 1.4;
    margin-left: -10px !important;
    padding-top: 10px !important;
  }
}
@media screen and (max-width: 1080px) {
  .mktoForm {
    padding: 0 !important;
  }
  .mktoForm label {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .mktoButtonWrap {
    margin: 0 auto;
  }
  body .mktoForm .mktoButtonWrap .mktoButton {
    padding-right: 40px;
    padding-left: 40px;
  }
}
/* --------------------------------------------------------------------------------
Header
-------------------------------------------------------------------------------- */
header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

header:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 6px;
  background-color: #c5000b;
  background: linear-gradient(to right, #dd2436, #af0011);
}

header .section-frame {
  position: relative;
  height: 60px;
  padding-left: 15px;
}

header .flex {
  height: 100%;
}

header .flex .logo {
  display: flex;
  align-items: center;
  padding-top: 4px;
}

@media screen and (min-width: 48em) {
  header .section-frame {
    height: 78px;
  }
}
@media screen and (min-width: 61.25em) {
  header .section-frame > .flex {
    height: 100%;
    flex-wrap: nowrap;
  }
}
/* logo */
header .logo .logo-wrapper,
header .logo a {
  position: relative;
  display: block;
  width: 100px;
}

header .logo svg {
  width: 80px;
  height: 19px;
}

@media screen and (min-width: 48em) {
  header .logo .logo-wrapper,
  header .logo a {
    width: 160px;
    padding-bottom: 2px;
  }
  header .logo svg {
    width: 144px;
    height: 33px;
  }
}
/* hamburger */
.hamburger {
  margin: 0 0 2px;
  z-index: 10000;
  position: absolute;
  top: 25px;
  right: 20px;
  width: 20px;
  height: 12px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: ease transform 0.2s;
}

.hamburger:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: ease transform 0.2s;
}

.hamburger:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: ease transform 0.2s;
}

.hamburger.active span {
  transform: rotate(-45deg);
}

.hamburger.active:before {
  transform: translateY(5px) rotate(-45deg);
}

.hamburger.active:after {
  transform: translateY(-5px) rotate(45deg);
}

@media screen and (min-width: 48em) {
  .hamburger {
    top: 39px;
  }
}
@media screen and (min-width: 61.25em) {
  .hamburger {
    display: none;
  }
  .g-nav-scroll {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
/* g-nav */
@media only screen and (max-width: 61.25em) {
  header .g-nav {
    position: fixed;
    overflow: hidden;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 90px 0 0;
    background-color: #fafafa;
    transform: translateX(0);
    transform: translateX(-100%);
  }
  header .g-nav.animation {
    transition: transform ease 0.4s;
  }
  header .g-nav.active {
    transform: translateX(0px);
  }
  header .g-nav .menue {
    display: block;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #d9d9d9;
  }
  header .g-nav .menue li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #d9d9d9;
  }
  header .g-nav .menue li a {
    display: block;
    padding: 15px 20px;
    font-size: 18px;
    font-size: 1.8rem;
    color: #333;
  }
  .g-nav-scroll {
    height: 100%;
    overflow-y: scroll;
    padding: 0 30px 60px;
    -webkit-overflow-scrolling: touch;
  }
  .g-nav-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    cursor: pointer;
    border-radius: 3px;
  }
  .g-nav-scroll::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border-radius: 3px;
  }
  .g-nav-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
  }
}
@media screen and (min-width: 61.25em) {
  header .g-nav .menue {
    list-style: none;
    margin: 0 0 0 30px;
    padding: 0;
  }
  header .g-nav .menue li a {
    margin-right: 25px;
    font-size: 15px;
    font-size: 1.5rem;
    color: #222;
    font-weight: bold;
  }
}
@media screen and (min-width: 70em) {
  header .g-nav .menue {
    margin: 0 0 0 40px;
  }
  header .g-nav .menue li a {
    margin-right: 25px;
  }
}
/* button_header */
header .g-nav .button_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 44px;
  border-radius: 22px;
  background-color: #c5000b;
  color: #fff;
  font-weight: bold;
  text-align: center;
  transition: all 0.5s ease;
  background: #C5000B;
  border: 2px solid #c5000b;
}

header .button_contact:hover {
  text-decoration: none;
  opacity: 0.7;
}

header .g-nav .button_header {
  margin-right: 10px;
  display: block;
  position: relative;
  padding-top: 10px;
  height: 44px;
  border-radius: 22px;
  color: #000;
  font-weight: bold;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid #000;
}

header .button_header:hover {
  text-decoration: none;
  opacity: 0.5;
}

@media only screen and (max-width: 61.25em) {
  header .g-nav .nav-btn {
    margin-top: 27px;
  }
  header .g-nav .button_header {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 61.25em) {
  header .section-frame .g-nav {
    padding-top: 6px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .section-frame .logo {
    padding-top: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  header .nav-btn {
    display: flex;
    align-items: center;
    margin-left: 25px;
    margin-right: 10px;
  }
  header .button_contact,
  header .button_header {
    width: 200px;
  }
}
/* Flexbox */
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.flex.center,
.flex.center-x {
  justify-content: center;
}

.flex.right {
  justify-content: flex-end;
}

.flex.between {
  justify-content: space-between;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.center-y {
  align-items: center;
}

/* section-frame */
.section-wrapper {
  width: 100%;
}

.section-frame {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}

.section-frame.small {
  max-width: 800px;
}

.section-frame.large {
  max-width: 100%;
}

/* section-margin */
.section-margin {
  margin-bottom: 48px;
}

@media screen and (min-width: 48em) {
  .section-margin {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 61.25em) {
  .section-margin {
    margin-bottom: 80px;
  }
}
.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  padding: 0 20px;
  height: auto;
}
.swiper-slide .sw-inner {
  padding: 30px;
  background-color: #fff;
  border-radius: 50px;
  height: 100%;
  border: 1px solid #ddd;
}
.swiper-slide .sw-inner .sw-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.swiper-slide .sw-inner .sw-head > * {
  flex: 1 1 0;
}
.swiper-slide .sw-inner .sw-head figure img {
  border-radius: 25px;
}
.swiper-slide .sw-inner .sw-head h3 small {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: normal;
}
.swiper-slide .sw-inner .sw-head h3 span {
  font-size: 22px;
  color: #c5000b;
}
.swiper-slide .sw-inner .sw-cont {
  display: flex;
  gap: 20px;
}
.swiper-slide .sw-inner .sw-cont:not(:last-child) {
  margin-bottom: 20px;
}
.swiper-slide .sw-inner .sw-cont h4 {
  width: 120px;
  font-size: 16px;
  flex-shrink: 0;
}
.swiper-slide .sw-inner .sw-cont ul li {
  display: flex;
  position: relative;
  gap: 10px;
  line-height: 1.6;
}
.swiper-slide .sw-inner .sw-cont ul li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(./img/check_light.svg);
  flex-shrink: 0;
}
.swiper-slide .sw-inner .sw-cont:not(:nth-of-type(2)) ul li::before {
  background: url(./img/check_dark.svg);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  height: 10px;
  line-height: 10px;
  bottom: 32px;
}

.swiper-pagination-bullet-active {
  background: #c5000b;
}

.swiper-button-next,
.swiper-button-prev {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #D9000C 0%, #EF1E79 100%);
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
}

.swiper-button-next {
  right: 0;
  border-radius: 15px 0 0 15px;
}

.swiper-button-prev {
  left: 0;
  border-radius: 0 15px 15px 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(5px) rotate(45deg);
}

.swiper-button-next::before {
  transform: translateX(-5px) rotate(-135deg);
}

@media screen and (max-width: 1080px) {
  .swiper-slide .sw-inner {
    padding: 40px;
  }
  .swiper-slide .sw-inner .sw-head {
    flex-direction: column;
  }
  .swiper-slide .sw-inner .sw-cont {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .swiper-slide .sw-inner {
    padding: 20px;
    border-radius: 25px;
  }
  .swiper-slide .sw-inner .sw-head {
    gap: 20px;
    margin-bottom: 30px;
  }
  .swiper-slide .sw-inner .sw-head figure img {
    border-radius: 15px;
  }
  .swiper-slide .sw-inner .sw-head h3 small {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .swiper-slide .sw-inner .sw-head h3 span {
    font-size: 20px;
  }
  .swiper-slide .sw-inner .sw-cont h4 {
    font-size: 16px;
  }
  .swiper-slide .sw-inner .sw-cont ul li {
    font-size: 13px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    transform: translateY(-10px);
  }
  .swiper-button-next::before,
  .swiper-button-prev::before {
    width: 12px;
    height: 12px;
    transform: translateX(3px) rotate(45deg);
  }
  .swiper-button-next::before {
    transform: translateX(-3px) rotate(-135deg);
  }
}/*# sourceMappingURL=style.css.map */