@charset "UTF-8";
/********************************
settings
********************************/
/********************************
common
********************************/
html {
  font-size: 62.5%;
}

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

body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Arial", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.48px;
  margin: 0;
  color: #191919;
  background: #FFF;
}

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

figure, picture {
  display: block;
  line-height: 1;
}

a {
  color: #C00;
  transition: 0.3s;
}
a:hover {
  color: #C00;
  text-decoration: none;
}

main .inner, section .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 1199px) {
  main .inner, section .inner {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 1;
}
.btn a, .btn button {
  display: block;
  width: 100%;
  border-radius: 60px;
  text-align: center;
  padding: 5px;
  border: 1px solid #C00;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-decoration: none;
}
.btn a .btn_wrap, .btn a em, .btn button .btn_wrap, .btn button em {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: linear-gradient(#8C713F 0%, #8C713F 100%);
  overflow: hidden;
  font-style: normal;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.btn a .btn_wrap::before, .btn a em::before, .btn button .btn_wrap::before, .btn button em::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(95deg, #C00 10%, #E83636 100%);
  transition: 0.5s ease;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}
.btn a span, .btn button span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  padding: 22px;
  position: relative;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .btn a span, .btn button span {
    padding: 20px;
  }
}
.btn a span::before, .btn a span::after, .btn button span::before, .btn button span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.btn a span::before, .btn button span::before {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  right: 18px;
}
.btn a span::after, .btn button span::after {
  background: url(../images/ico_btn.svg) no-repeat top center/cover;
  filter: invert(20%) sepia(55%) saturate(6140%) hue-rotate(354deg) brightness(74%) contrast(124%);
  width: 11px;
  height: 10px;
  right: 28px;
}
.btn a:hover, .btn button:hover {
  border-color: #8C713F;
}
.btn a:hover .btn_wrap::before, .btn button:hover .btn_wrap::before {
  opacity: 0;
  transform: scale(1.1);
}
.btn a:hover span::before, .btn button:hover span::before {
  transform: translateY(-50%) scale(1.1);
}
.btn a:hover span::after, .btn button:hover span::after {
  filter: invert(43%) sepia(39%) saturate(528%) hue-rotate(0deg) brightness(96%) contrast(87%);
  right: 27px;
}

@keyframes ripple {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}
a figure.hover_scale {
  overflow: hidden;
}
a figure.hover_scale img {
  transition: scale 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a:hover figure.hover_scale img {
  scale: 1.04;
}

/* h2_title
ーーーーーーーーーーーーーーー---- */
.h2_title {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 auto 100px;
  position: relative;
}
.h2_title::before, .h2_title::after {
  display: block;
  content: "";
  width: 120px;
  height: 10px;
  background: #C00;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.h2_title::after {
  background: #CEB88E;
  width: 60px;
  left: calc(50% + 30px);
}
.h2_title span {
  color: #C00;
}
.h2_title em {
  font-size: 6.4rem;
  font-style: normal;
  color: #C00;
}

@media only screen and (max-width: 767px) {
  .h2_title {
    font-size: 2.4rem;
    line-height: 160%;
    letter-spacing: 0;
  }
  .h2_title::before, .h2_title::after {
    width: 80px;
    height: 8px;
    bottom: -22px;
  }
  .h2_title::after {
    width: 40px;
    left: calc(50% + 20px);
  }
  .h2_title em {
    font-size: 3rem;
  }
}
ul.list_disc {
  list-style: none;
}
ul.list_disc li {
  position: relative;
  padding-left: 20px;
}
ul.list_disc li::before {
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 13px;
  background: #8C713F;
  position: absolute;
  top: 7px;
  left: 0;
}

/* animation */
.scroll {
  position: relative;
  transition: all 0.7s ease-in-out 0s;
}

.fade {
  opacity: 0;
  transition-delay: 0.1s;
}
.fade.up {
  top: 20px;
}
.fade.left {
  left: 20px;
}
.fade.right {
  right: 20px;
}
.fade.active {
  opacity: 1;
}
.fade.active.up {
  top: 0;
}
.fade.active.left {
  left: 0;
}
.fade.active.right {
  right: 0;
}

.blur {
  filter: blur(1.5rem);
  transform: scale(0.95, 0.95);
  opacity: 0;
}
.blur.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1, 1);
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
/********************************
header
********************************/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 40px 1.8vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
header .logo_area .logo {
  width: 100%;
  max-width: 310px;
}

@media only screen and (max-width: 767px) {
  header {
    padding: 20px;
  }
  header .logo_area .logo {
    max-width: 200px;
  }
}
/********************************
sec_mv
********************************/
.sec_mv {
  background: url(../images/mv_img.jpg) no-repeat top left 30%/cover;
  padding: 218px 7.5vw 137px;
  transition: 0.3s;
}
@media only screen and (max-width: 1600px) {
  .sec_mv {
    padding-left: 4vw;
  }
}
.sec_mv .lead_wrap {
  max-width: 700px;
  position: relative;
}
.sec_mv .lead_wrap::before {
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 1/0.9;
  background: radial-gradient(35.82% 36.72% at 54.97% 35.88%, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
}
.sec_mv .lead_box {
  display: flex;
  flex-direction: column;
  gap: 45px;
  position: relative;
  z-index: 1;
}
.sec_mv .lead_box h2.lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
  white-space: nowrap;
}
.sec_mv .lead_box h2.lead em {
  font-size: clamp(3.8rem, 0.362rem + 3vw, 5.6rem);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  background: #fff;
  padding: 0 5px;
  margin-right: 5px;
}
.sec_mv .lead_box h2.lead em.red {
  color: #C00;
  margin: 0 5px;
}
.sec_mv .lead_box h2.lead span {
  color: #fff;
  font-size: clamp(3rem, 0.362rem + 3vw, 4.2rem);
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 2px;
}
.sec_mv .lead_box h2.lead span.wh {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}
.sec_mv .lead_box h2.lead span.bk {
  color: #191919;
}
.sec_mv .lead_box h3.catch {
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  font-size: clamp(2.8rem, 0.362rem + 2vw, 3.6rem);
  font-weight: 600;
  line-height: 130%;
  padding-left: 15px;
  border-left: 8px solid #C00;
  white-space: nowrap;
}
.sec_mv .lead_box h3.catch.fade {
  transition-delay: 0.5s;
}
.sec_mv .lead_box h3.catch .sub {
  display: inline-block;
  color: #FFF;
  text-shadow: 0px 0px 7.007px rgba(0, 0, 0, 0.3);
  font-size: clamp(1.6rem, 0.362rem + 1vw, 2rem);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 1.5px;
  padding: 4px 4px 4px 6px;
  border: 2px solid #FFF;
  position: relative;
  top: -10px;
}
.sec_mv .lead_box .prize {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #F3B950;
}
.sec_mv .lead_box .prize.fade {
  transition-delay: 0.7s;
}
.sec_mv .lead_box .prize figure {
  width: 180px;
}
.sec_mv .lead_box .prize .cap {
  width: calc(100% - 180px);
}
.sec_mv .lead_box .btn.fade {
  transition-delay: 0.8s;
}

.sec_company {
  padding: 22px 0;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .sec_mv {
    background: url(../images/mv_img_sp.jpg) no-repeat top center/cover;
    padding: 240px 20px 45px;
    min-height: 640px;
    position: relative;
  }
  .sec_mv .lead_wrap {
    max-width: none;
    width: calc(100% - 40px);
    padding-top: 40px;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec_mv .lead_box {
    gap: 25px;
  }
  .sec_mv .lead_box h2.lead {
    gap: 10px;
  }
  .sec_mv .lead_box h2.lead em {
    font-size: 2.7rem;
  }
  .sec_mv .lead_box h2.lead span {
    font-size: 1.9rem;
    letter-spacing: 1px;
  }
  .sec_mv .lead_box h3.catch {
    font-size: 1.8rem;
    padding-left: 12px;
    border-left: 6px solid #C00;
  }
  .sec_mv .lead_box h3.catch .sub {
    font-size: 1.3rem;
    letter-spacing: 0.8px;
    top: 0;
    border-width: 1px;
    margin-bottom: 5px;
  }
  .sec_mv .lead_box .prize {
    font-size: 8.5px;
    gap: 5px;
  }
  .sec_mv .lead_box .prize figure {
    width: 26%;
  }
  .sec_mv .lead_box .prize .cap {
    width: 72%;
  }
  .sec_mv .lead_box .btn {
    margin: 0 auto;
  }
  .sec_company {
    padding: 12px 0;
  }
}
/********************************
sec_problem
********************************/
.sec_problem {
  padding: 140px 0;
  background: url(../images/problem_bg.jpg) no-repeat bottom left/100% auto;
}
.sec_problem .inner {
  position: relative;
}
.sec_problem .inner::before {
  display: block;
  content: "";
  width: 220px;
  aspect-ratio: 1/1;
  border-radius: 220px;
  background: linear-gradient(180deg, rgba(220, 0, 12, 0.3) 0%, #DC000C 100%);
  filter: blur(100px);
  opacity: 0.15;
  position: absolute;
  top: -100px;
  right: -20px;
}
.sec_problem h2.h2_title {
  margin-bottom: 120px;
}
.sec_problem .problem_block {
  display: flex;
  gap: 40px;
}
.sec_problem .problem_block .box {
  width: calc(100% - 80px)/3;
  padding: 80px 40px 40px;
  margin-bottom: 120px;
  border: 2px solid #8C713F;
  background: #fff;
  position: relative;
}
.sec_problem .problem_block .box h3 {
  width: 80%;
  font-size: 3rem;
  line-height: 120%;
  text-align: center;
  padding: 0 32px;
  background: #fff;
  border-right: 2px solid #8C713F;
  border-left: 2px solid #8C713F;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.sec_problem .problem_block .box h3 span {
  display: block;
  font-size: 1.2rem;
  line-height: 100%;
  font-weight: 500;
  color: #8C713F;
  letter-spacing: 3px;
  margin-top: 3px;
}
.sec_problem .problem_block .box figure {
  width: 200px;
  margin: 0 auto 30px;
}
.sec_problem .problem_block .box::before {
  display: block;
  content: "";
  width: 30px;
  height: 60px;
  background: url(../images/ico_arrow.png) no-repeat bottom center/100% auto;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.sec_problem .problem_block .box:nth-child(2).fade {
  transition-delay: 0.5s;
}
.sec_problem .problem_block .box:nth-child(3).fade {
  transition-delay: 0.7s;
}
.sec_problem .lead {
  width: 86%;
  margin: 0 auto 120px;
  text-align: center;
}
.sec_problem .lead.fade {
  transition-delay: 0.5s;
}
.sec_problem .lead .txt {
  color: #C00;
  font-size: 4rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.sec_problem .lead .ttl {
  background: #FCF2F2;
  padding: 14px;
  border-radius: 160px;
}
.sec_problem .lead .ttl p {
  border: 6px solid #C00;
  padding: 40px;
  border-radius: 160px;
  background: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 2px;
}
.sec_problem .lead .ttl p span {
  font-size: 4.8rem;
  color: #C00;
}
.sec_problem .solution_block {
  display: flex;
  gap: 30px;
}
.sec_problem .solution_block .box {
  width: calc((100% - 60px) / 3);
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.sec_problem .solution_block .box .cnt {
  padding: 30px;
}
.sec_problem .solution_block .box .cnt h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1px;
  color: #C00;
  text-align: center;
  margin-bottom: 20px;
}
.sec_problem .solution_block .box:nth-child(2).fade {
  transition-delay: 0.5s;
}
.sec_problem .solution_block .box:nth-child(3).fade {
  transition-delay: 0.7s;
}

@media only screen and (max-width: 767px) {
  .sec_problem {
    padding: 80px 0 120px;
  }
  .sec_problem .inner::before {
    width: 160px;
    border-radius: 160px;
    top: -100px;
    right: 0;
  }
  .sec_problem h2.h2_title {
    margin-bottom: 80px;
  }
  .sec_problem .problem_block {
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
  }
  .sec_problem .problem_block .box {
    width: 100%;
    margin-bottom: 0;
  }
  .sec_problem .problem_block .box h3 {
    font-size: 2.4rem;
    padding: 0 10px;
    background: #fff;
    top: -25px;
  }
  .sec_problem .problem_block .box figure {
    width: 200px;
    margin: 0 auto 30px;
  }
  .sec_problem .problem_block .box ul.list_disc li:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #999;
  }
  .sec_problem .problem_block .box::before {
    display: none;
  }
  .sec_problem .problem_block .box:nth-child(3)::before {
    display: block;
    content: "";
    width: 180px;
    height: 50px;
    background: url(../images/ico_arrow_sp.png) no-repeat bottom center/cover;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec_problem .lead {
    width: 100%;
    margin-bottom: 80px;
  }
  .sec_problem .lead .txt {
    font-size: 2.6rem;
  }
  .sec_problem .lead .ttl {
    padding: 10px;
  }
  .sec_problem .lead .ttl p {
    padding: 30px 20px;
    font-size: 2rem;
  }
  .sec_problem .lead .ttl p span {
    font-size: 2.8rem;
  }
  .sec_problem .solution_block {
    flex-direction: column;
  }
  .sec_problem .solution_block .box {
    width: 100%;
  }
  .sec_problem .solution_block .box .cnt h3 {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}
/********************************
sec_reason
********************************/
.sec_reason {
  padding: 150px 0;
  background: url(../images/reason_bg.jpg) no-repeat top center/cover;
  position: relative;
}
.sec_reason::before, .sec_reason::after {
  display: block;
  content: "";
  width: 180px;
  height: 166px;
  background: url(../images/line_bg001.png) no-repeat top center/cover;
  position: absolute;
}
.sec_reason::before {
  top: 0;
  right: 10.4vw;
}
.sec_reason::after {
  bottom: 0;
  left: 10.4vw;
}
.sec_reason h2.h2_title {
  margin-bottom: 7.3vw;
  position: relative;
  z-index: 1;
}
.sec_reason .reason_block {
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
  z-index: 1;
}
.sec_reason .reason_block .box {
  width: 90vw;
  margin-left: 10vw;
  padding: 0 0 2vw 2vw;
  display: flex;
  transition: 0.5s;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .sec_reason .reason_block .box {
    width: 96vw;
    margin-left: 4vw;
  }
}
.sec_reason .reason_block .box::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/reason_tip.png) no-repeat top center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.sec_reason .reason_block .box .ph {
  width: 45vw;
  max-width: 860px;
  min-height: 320px;
  display: flex;
  position: relative;
  z-index: 1;
}
.sec_reason .reason_block .box .ph.double {
  gap: 1vw;
}
.sec_reason .reason_block .box .ph.double figure {
  width: calc((100% - 2vw) / 2);
}
.sec_reason .reason_block .box .ph.triple {
  gap: 1.6vw;
}
.sec_reason .reason_block .box .ph.triple figure {
  width: calc((100% - 3.2vw) / 3);
}
.sec_reason .reason_block .box .ph.triple figure:nth-child(2) {
  padding-top: 50px;
}
.sec_reason .reason_block .box .cnt {
  width: 100%;
  padding: 4.4vw 0 4.4vw 50vw;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec_reason .reason_block .box .cnt::after {
  display: block;
  content: "01";
  font-family: "Taviraj", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", "MS PMincho", serif;
  font-size: clamp(8rem, -2.422rem + 6.63vw, 10rem);
  color: #C00;
  position: absolute;
  top: -20px;
  right: 10.4vw;
}
.sec_reason .reason_block .box .cnt .sub {
  font-size: clamp(1.8rem, -0.333rem + 2.44vw, 3rem);
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1px;
}
.sec_reason .reason_block .box .cnt h3 {
  font-size: clamp(1.8rem, -1.4rem + 4.67vw, 3.6rem);
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 2px;
  margin: 20px auto;
}
.sec_reason .reason_block .box .cnt h3 em {
  font-size: clamp(2.8rem, -1.822rem + 6.63vw, 5.4rem);
  font-style: normal;
  color: #C00;
}
.sec_reason .reason_block .box .cnt h3 span {
  display: block;
  font-size: clamp(2.2rem, -2.422rem + 6.63vw, 4.8rem);
  line-height: 160%;
}
.sec_reason .reason_block .box:nth-child(2) {
  justify-content: flex-end;
  margin-left: 0;
  margin-right: 10vw;
  padding: 0 2vw 2vw 0;
  text-align: right;
}
.sec_reason .reason_block .box:nth-child(2)::before {
  left: auto;
  right: 0;
  transform: rotate(-90deg);
}
.sec_reason .reason_block .box:nth-child(2) .cnt {
  padding: 4.4vw 50vw 4.4vw 0;
  left: auto;
  right: 0;
}
.sec_reason .reason_block .box:nth-child(2) .cnt::after {
  content: "02";
  right: 0;
  left: 10.4vw;
  text-align: left;
}
.sec_reason .reason_block .box:nth-child(3) .cnt::after {
  content: "03";
}

@media only screen and (max-width: 767px) {
  .sec_reason {
    padding: 80px 0;
  }
  .sec_reason::before, .sec_reason::after {
    width: 80px;
    height: 73px;
  }
  .sec_reason::before {
    right: 20px;
  }
  .sec_reason::after {
    left: 20px;
  }
  .sec_reason h2.h2_title {
    margin-bottom: 80px;
  }
  .sec_reason .reason_block {
    gap: 88px;
  }
  .sec_reason .reason_block .box {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0;
    flex-direction: column;
    position: relative;
  }
  .sec_reason .reason_block .box::before {
    width: 30px;
    height: 30px;
  }
  .sec_reason .reason_block .box::after {
    display: block;
    content: "01";
    font-family: "Taviraj", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", "MS PMincho", serif;
    font-size: 8.4rem;
    color: #C00;
    position: absolute;
    top: -20px;
    right: -10px;
    z-index: 3;
  }
  .sec_reason .reason_block .box:nth-child(3)::after {
    content: "03";
  }
  .sec_reason .reason_block .box .ph {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin-left: -20px;
  }
  .sec_reason .reason_block .box .ph.triple figure:nth-child(1), .sec_reason .reason_block .box .ph.triple figure:nth-child(3) {
    padding-top: 15px;
  }
  .sec_reason .reason_block .box .ph.triple figure:nth-child(2) {
    padding-top: 0;
  }
  .sec_reason .reason_block .box .cnt {
    width: 100%;
    padding: 100px 20px 20px;
    position: relative;
    margin-top: -80px;
  }
  .sec_reason .reason_block .box .cnt::after {
    display: none;
  }
  .sec_reason .reason_block .box .cnt .sub {
    font-size: 2rem;
  }
  .sec_reason .reason_block .box .cnt h3 {
    font-size: 2.2rem;
    margin: 12px auto;
  }
  .sec_reason .reason_block .box .cnt h3 em {
    font-size: 3.4rem;
  }
  .sec_reason .reason_block .box .cnt h3 span {
    font-size: 2.8rem;
    line-height: 140%;
  }
  .sec_reason .reason_block .box:nth-child(2) {
    justify-content: flex-start;
    margin: 0 auto;
    padding: 0;
    text-align: left;
  }
  .sec_reason .reason_block .box:nth-child(2) .ph {
    margin-left: auto;
    margin-right: -20px;
  }
  .sec_reason .reason_block .box:nth-child(2) .cnt {
    width: 100%;
    padding: 100px 20px 20px;
    left: auto;
    right: auto;
  }
  .sec_reason .reason_block .box:nth-child(2) .cnt::after {
    display: none;
  }
  .sec_reason .reason_block .box:nth-child(2)::after {
    content: "02";
    right: auto;
    left: -10px;
  }
}
/********************************
sec_lineup
********************************/
.sec_lineup {
  padding: 150px 0;
}
.sec_lineup .inner {
  position: relative;
}
.sec_lineup .inner::before {
  display: block;
  content: "";
  width: 220px;
  aspect-ratio: 1/1;
  border-radius: 220px;
  background: linear-gradient(180deg, rgba(220, 0, 12, 0.3) 0%, #DC000C 100%);
  filter: blur(100px);
  opacity: 0.15;
  position: absolute;
  top: -100px;
  right: -20px;
}
.sec_lineup h2.h2_title {
  margin-bottom: 100px;
}
.sec_lineup .lead_box {
  text-align: center;
  margin-bottom: 60px;
}
.sec_lineup .lead_box .lead {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 2px;
}
.sec_lineup .cv_block {
  margin-top: 60px;
  padding: 40px 20px;
  background: #F0EADD;
  text-align: center;
}
.sec_lineup .cv_block .lead {
  font-size: 3rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.sec_lineup .cv_block .btn {
  margin: 0 auto;
}

.tab_list {
  display: flex;
  border-left: 1px dashed #8C713F;
  margin-bottom: 80px;
}
.tab_list .tab_item {
  width: 33.3333333%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-right: 1px dashed #8C713F;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.tab_list .tab_item:hover {
  background: #FCF2F2;
}
.tab_list .tab_item.active {
  background: #FCF2F2;
}
.tab_list .tab_item.active::after {
  display: block;
  content: "";
  background: #C00;
  width: 40px;
  height: 20.7846096908px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.tab_list .tab_item span {
  display: block;
  padding-top: 110px;
  position: relative;
}
.tab_list .tab_item span::before {
  display: block;
  content: "";
  width: 100px;
  aspect-ratio: 1/1;
  background: url(../images/lineup_ico001.png) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.tab_list .tab_item:nth-child(2) span::before {
  background-image: url(../images/lineup_ico002.png);
}
.tab_list .tab_item:nth-child(3) span::before {
  background-image: url(../images/lineup_ico003.png);
}

.panel_list {
  padding: 60px;
  background: #FDFBFB;
  border: 2px solid #8C713F;
}
.panel_list h3 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 2px;
  text-align: center;
  color: #C00;
}

.panel_item {
  display: none;
  width: 100%;
}
.panel_item.active {
  display: block;
  animation: panel-show 0.9s ease-in-out forwards;
}

/* パネル切り替えのアニメーション */
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lineup_block {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.lineup_block .box {
  padding-top: 40px;
  border-top: 1px solid #C00;
  display: flex;
  gap: 40px;
}
.lineup_block .box:first-child {
  border: none;
}
.lineup_block .box .ph_area {
  width: 450px;
}
.lineup_block .box .txt_area {
  width: 590px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lineup_block .box .txt_area h4 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.12px;
}
.lineup_block .box .txt_area h4 span {
  display: block;
  font-size: 2.2rem;
  line-height: 130%;
}
.lineup_block .box .txt_area .detail_area {
  display: none;
}
.lineup_block .box .txt_area .target {
  display: flex;
  gap: 20px;
}
.lineup_block .box .txt_area .target .ttl {
  font-size: 1.5rem;
  line-height: 110%;
  width: 100px;
  color: #C00;
  border: 1px solid #C00;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lineup_block .box .txt_area .target ul.list_disc {
  width: calc(100% - 120px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lineup_block .box .txt_area .goal {
  display: flex;
  gap: 20px;
}
.lineup_block .box .txt_area .goal .ttl {
  font-size: 1.5rem;
  line-height: 110%;
  width: 100px;
  color: #fff;
  background: linear-gradient(95deg, #C00 10%, #E83636 100%);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lineup_block .box .txt_area .goal p {
  width: calc(100% - 120px);
  font-weight: 700;
  line-height: 170%;
}
.lineup_block .box .detail_area {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lineup_block .box .detail_area > div {
  display: inline-block;
  padding: 8px 12px;
  background: #F0EADD;
  border-radius: 6px;
}
.lineup_block .box .detail_area > div span {
  font-size: 1.4rem;
  font-weight: bold;
}
.lineup_block .box .detail_area > div span.icon {
  font-size: 1.3rem;
  font-weight: normal;
  padding-left: 26px;
  position: relative;
}
.lineup_block .box .detail_area > div span.icon::before {
  display: block;
  content: "";
  width: 20px;
  height: 24px;
  background: url(../images/ico_type.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.lineup_block .box .detail_area > div span.icon::after {
  content: "：";
}
.lineup_block .box .detail_area > div.time span.icon::before {
  background-image: url(../images/ico_time.png);
}

@media only screen and (max-width: 767px) {
  .sec_lineup {
    padding: 80px 0;
  }
  .sec_lineup .inner::before {
    width: 160px;
    border-radius: 160px;
    top: -100px;
    right: 0;
  }
  .sec_lineup h2.h2_title {
    margin-bottom: 70px;
  }
  .sec_lineup .lead_box {
    margin-bottom: 50px;
  }
  .sec_lineup .lead_box .lead {
    font-size: 2rem;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  .sec_lineup .lead_box .txt {
    text-align: left;
  }
  .sec_lineup .cv_block {
    margin-top: 50px;
    padding: 30px 20px;
  }
  .sec_lineup .cv_block .lead {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .tab_list {
    margin-bottom: 50px;
  }
  .tab_list .tab_item {
    font-size: 1rem;
    padding: 16px 6px;
  }
  .tab_list .tab_item.active::after {
    width: 26px;
    height: 13.8564064606px;
    bottom: -30px;
  }
  .tab_list .tab_item span {
    padding-top: 62px;
  }
  .tab_list .tab_item span::before {
    width: 52px;
  }
  .panel_list {
    padding: 40px 20px;
  }
  .panel_list h3 {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
  .lineup_block .box {
    flex-direction: column;
    gap: 30px;
    border-top: 2px dashed #8C713F;
  }
  .lineup_block .box:first-child {
    border: none;
  }
  .lineup_block .box .ph_area {
    width: 100%;
  }
  .lineup_block .box .ph_area .detail_area {
    display: none;
  }
  .lineup_block .box .txt_area {
    width: 100%;
    padding: 0 10px;
  }
  .lineup_block .box .txt_area h4 {
    font-size: 2.2rem;
    text-align: center;
    line-height: 130%;
    padding-bottom: 16px;
    border-bottom: 2px solid #C00;
  }
  .lineup_block .box .txt_area h4 span {
    font-size: 1.8rem;
    margin-top: 5px;
  }
  .lineup_block .box .txt_area .detail_area {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 0;
  }
  .lineup_block .box .txt_area .detail_area > div {
    padding: 6px 8px;
  }
  .lineup_block .box .txt_area .detail_area > div span {
    font-size: 1.2rem;
  }
  .lineup_block .box .txt_area .detail_area > div span.icon {
    font-size: 1.1rem;
    padding-left: 21px;
  }
  .lineup_block .box .txt_area .detail_area > div span.icon::before {
    width: 18px;
    height: 20px;
  }
  .lineup_block .box .txt_area .target {
    flex-direction: column;
    gap: 12px;
  }
  .lineup_block .box .txt_area .target .ttl {
    width: 100%;
    padding: 10px;
  }
  .lineup_block .box .txt_area .target ul.list_disc {
    width: 100%;
  }
  .lineup_block .box .txt_area .goal {
    flex-direction: column;
    gap: 12px;
  }
  .lineup_block .box .txt_area .goal .ttl {
    width: 100%;
    padding: 10px;
  }
  .lineup_block .box .txt_area .goal p {
    width: 100%;
  }
}
/********************************
sec_case
********************************/
.sec_case {
  padding: 120px 0 100px;
  position: relative;
}
.sec_case::before {
  display: block;
  content: "";
  width: 90%;
  height: 100%;
  background: url(../images/case_bg.jpg) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec_case h2.h2_title {
  margin-bottom: 100px;
}
.sec_case .case_block .box {
  margin: 0 20px;
  padding: 40px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.sec_case .case_block .box .name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
}
.sec_case .case_block .box .name figure {
  width: 246px;
}
.sec_case .case_block .box .name .txt {
  font-size: 3rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1px;
}
.sec_case .case_block .box .name .txt span {
  display: block;
  font-size: 2.4rem;
  color: #757575;
}
.sec_case .case_block .box .case_lineup {
  display: table;
  margin: 0 auto 40px;
  padding: 8px 30px;
  border: 1px solid #C00;
  border-radius: 70px;
}
.sec_case .case_block .box .case_lineup p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec_case .case_block .box .case_lineup p span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%;
  color: #C00;
}
.sec_case .case_block .box dl dt {
  padding: 10px 20px;
  background: #F0EADD;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 120%;
  margin: 32px 0 20px;
}
.sec_case .case_block .box dl dt.red {
  background: #FCF2F2;
}
.sec_case .case_block .box dl dd ul.list_disc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec_case .case_block .box dl dd ul.list_disc li::before {
  background: #ddd;
}
.sec_case .slick-track {
  padding: 30px 0;
  display: flex;
}
.sec_case .slick-slide {
  height: auto !important;
}
.sec_case .slick-prev, .sec_case .slick-next {
  top: 400px;
  width: 90px;
  height: 90px;
  border-radius: 90px;
  border: 2px solid #C00;
  background: #fff;
  z-index: 5;
}
.sec_case .slick-prev::before, .sec_case .slick-next::before {
  display: block;
  content: "";
  width: 22px;
  height: 18px;
  background: url(../images/ico_btn.svg) no-repeat center center/cover;
  filter: invert(20%) sepia(55%) saturate(6140%) hue-rotate(354deg) brightness(74%) contrast(124%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec_case .slick-prev {
  left: 17vw;
}
.sec_case .slick-prev::before {
  transform: rotate(180deg) translate(50%, 50%);
}
.sec_case .slick-next {
  right: 17vw;
}

@media only screen and (max-width: 767px) {
  .sec_case {
    padding: 80px 0 30px;
  }
  .sec_case::before {
    width: 100%;
  }
  .sec_case h2.h2_title {
    margin-bottom: 50px;
  }
  .sec_case .case_block .box {
    margin: 0 20px;
    padding: 30px 20px;
  }
  .sec_case .case_block .box .name {
    flex-direction: column;
    gap: 10px;
    margin: 30px auto;
  }
  .sec_case .case_block .box .name figure {
    width: 80%;
  }
  .sec_case .case_block .box .name .txt {
    font-size: 2rem;
    text-align: center;
  }
  .sec_case .case_block .box .name .txt span {
    font-size: 1.6rem;
  }
  .sec_case .case_block .box .case_lineup {
    padding: 8px 30px;
  }
  .sec_case .case_block .box .case_lineup p {
    font-size: 1.4rem;
    flex-direction: column;
    text-align: center;
  }
  .sec_case .case_block .box .case_lineup p span {
    font-size: 1.8rem;
  }
  .sec_case .slick-prev, .sec_case .slick-next {
    top: 300px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
  }
  .sec_case .slick-prev::before, .sec_case .slick-next::before {
    width: 18px;
    height: 15px;
  }
  .sec_case .slick-prev {
    left: 5px;
  }
  .sec_case .slick-next {
    right: 5px;
  }
}
/********************************
sec_contact
********************************/
section.sec_contact {
  margin-top: 150px;
  background: linear-gradient(95deg, #C00 10%, #E83636 100%);
  border-radius: 120px 120px 0px 0px;
  position: relative;
}
section.sec_contact::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/contact_bg.png) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
section.sec_contact .wrap {
  padding: 150px 0;
  width: 100%;
  height: 100%;
  position: relative;
}
section.sec_contact .wrap::before, section.sec_contact .wrap::after {
  display: block;
  content: "";
  width: 180px;
  height: 166px;
  background: url(../images/line_bg002.png) no-repeat top center/cover;
  position: absolute;
}
section.sec_contact .wrap::before {
  top: 0;
  right: 10vw;
}
section.sec_contact .wrap::after {
  bottom: 0;
  left: 10vw;
}
section.sec_contact .inner {
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  section.sec_contact .inner {
    padding: 0;
  }
}
section.sec_contact .inner h2.h2_title {
  color: #fff;
}
section.sec_contact .inner h2.h2_title::before {
  background: #fff;
}
section.sec_contact .inner .lead_txt {
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
section.sec_contact .form_box {
  background: #fff;
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
section.sec_contact .form_box .double_wrap {
  display: flex;
  gap: 20px;
}
section.sec_contact .form_box .double_wrap dl {
  width: calc((100% - 20px) / 2);
}
section.sec_contact .form_box dt {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}
section.sec_contact .form_box input[type=text], section.sec_contact .form_box select, section.sec_contact .form_box textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: #f1f1f1;
}
section.sec_contact .form_box .select_wrap {
  position: relative;
}
section.sec_contact .form_box .select_wrap::before {
  display: block;
  content: "";
  background: #757575;
  height: 6.9282032303px;
  width: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 22px;
  right: 15px;
}
section.sec_contact .form_box select {
  color: #191919;
}
section.sec_contact .form_box textarea {
  height: 100px;
  line-height: 1.5;
}
section.sec_contact .checkbox_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
section.sec_contact .checkbox_wrap > label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
section.sec_contact .checkbox_wrap > label::before {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background: #fff;
  box-shadow: 0 0 0 2px #fff inset;
  border: 6px solid #f1f1f1;
  border-radius: 2px;
  box-sizing: border-box;
  position: absolute;
  top: -2px;
  left: 0;
  cursor: pointer;
}
section.sec_contact .checkbox_wrap > label input[type=checkbox] {
  visibility: hidden;
  height: 0;
}
section.sec_contact .checkbox_wrap > label input[type=checkbox]:checked + span {
  color: #C00;
}
section.sec_contact .checkbox_wrap > label input[type=checkbox]:checked + span::after {
  content: "";
  width: 10px;
  height: 16px;
  display: block;
  border-bottom: 4px solid #C00;
  border-right: 4px solid #C00;
  transform: rotate(40deg);
  position: absolute;
  top: 0;
  left: 10px;
  cursor: pointer;
}
section.sec_contact .checkbox_wrap textarea {
  width: auto;
  min-width: 500px;
  height: 40px;
}
section.sec_contact span.req {
  font-size: 1.2rem;
  padding: 4px 10px;
  background: #C00;
  color: #fff;
  vertical-align: bottom;
  margin-right: 15px;
}
section.sec_contact .contact__table--error {
  color: #C00;
  margin-top: 5px;
}
section.sec_contact .agree_box {
  padding: 50px 20px;
  background: #F0EADD;
}
section.sec_contact .agree_box .txt {
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
section.sec_contact .agree_box .item {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
section.sec_contact .agree_box .checkbox_wrap label::before {
  border-color: #999;
}
section.sec_contact .agree_box span.req {
  padding: 2px 10px;
}
section.sec_contact .agree_box .contact__table--error {
  text-align: center;
}
section.sec_contact .send_wrap {
  margin: 30px auto 0;
}

.send_wrap {
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 1;
}
.send_wrap button {
  display: block;
  width: 100%;
  border-radius: 60px;
  text-align: center;
  color: #fff;
  background: #C00;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.7px;
  padding: 26px 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .send_wrap button {
    padding: 22px;
  }
}
.send_wrap button::before, .send_wrap button::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.send_wrap button::before {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  right: 18px;
}
.send_wrap button::after {
  background: url(../images/ico_btn.svg) no-repeat top center/cover;
  filter: invert(20%) sepia(55%) saturate(6140%) hue-rotate(354deg) brightness(74%) contrast(124%);
  width: 11px;
  height: 10px;
  right: 28px;
}
.send_wrap button:hover {
  background: #8C713F;
}
.send_wrap button:hover::before {
  transform: translateY(-50%) scale(1.1);
}
.send_wrap button:hover::after {
  filter: invert(43%) sepia(39%) saturate(528%) hue-rotate(0deg) brightness(96%) contrast(87%);
  right: 27px;
}

@media only screen and (max-width: 767px) {
  section.sec_contact {
    margin-top: 70px;
    border-radius: 20px 20px 0px 0px;
  }
  section.sec_contact .wrap {
    padding: 80px 20px;
  }
  section.sec_contact .wrap::before, section.sec_contact .wrap::after {
    width: 80px;
    height: 74px;
  }
  section.sec_contact .wrap::before {
    right: 20px;
  }
  section.sec_contact .wrap::after {
    left: 20px;
  }
  section.sec_contact .inner {
    padding-top: 0;
  }
  section.sec_contact .inner h2.h2_title {
    margin-bottom: 70px;
  }
  section.sec_contact .inner .lead_txt {
    margin-bottom: 50px;
  }
  section.sec_contact .form_box {
    padding: 30px 20px;
  }
  section.sec_contact .form_box .double_wrap {
    flex-direction: column;
  }
  section.sec_contact .form_box .double_wrap dl {
    width: 100%;
  }
  section.sec_contact .checkbox_wrap textarea {
    min-width: auto;
    width: 100%;
  }
}
/********************************
footer
********************************/
.footer {
  background: #fff;
  padding: 60px 4vw;
}
.footer .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  margin-bottom: 60px;
}

.footer-section {
  min-width: 0;
}
.footer-section h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 20px;
  color: #2C2B2B;
}
.footer-section h2:not(:first-child) {
  margin-top: 40px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #757575;
  font-size: 1.4rem;
}
.footer-section ul ul {
  margin-top: 8px;
  margin-left: 20px;
  gap: 8px;
  font-size: 1.3rem;
}
.footer-section ul ul li {
  position: relative;
  font-size: 0.95em;
}
.footer-section ul ul li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 6px;
  height: 1px;
  background-color: #757575;
}
.footer-section a {
  color: #757575;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: #C00;
}

.footer a[target=_blank] {
  position: relative;
  padding-right: 20px;
}
.footer a[target=_blank]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}

.footer-under {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid #eee;
  margin: 0 auto;
  max-width: 1200px;
}
.footer-under .logo {
  width: 260px;
}
.footer-under .copyright {
  font-size: 1.2rem;
  color: #757575;
  margin: 0;
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: 140px;
  }
  .footer-section h2 {
    font-size: 1.5rem;
  }
  .footer-section ul {
    font-size: 1.3rem;
  }
  .footer-section ul ul {
    font-size: 1.2rem;
  }
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .footer-under {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .footer-under .logo {
    width: 200px;
  }
}
/********************************
fixed_btn
********************************/
.fixed_wrap.btn {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 140px;
  max-width: none;
  width: 90%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.fixed_wrap.btn a {
  border-radius: 140px;
  border: none;
}
.fixed_wrap.btn.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

@media (min-width: 768px) {
  .fixed_wrap.btn {
    display: flex;
    justify-content: center;
    width: 140px;
    aspect-ratio: 1/1;
    position: fixed;
    left: auto;
    right: 30px;
    bottom: 0;
    transform: none;
  }
  .fixed_wrap.btn.active {
    bottom: 30px;
  }
  .fixed_wrap.btn a .btn_wrap {
    border-radius: 140px;
  }
  .fixed_wrap.btn a .btn_wrap span {
    border-radius: 140px;
  }
  .fixed_wrap.btn a .btn_wrap span::before, .fixed_wrap.btn a .btn_wrap span::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
  }
  .fixed_wrap.btn a .btn_wrap span::after {
    left: 46%;
    bottom: 25px;
    transform: rotate(90deg);
  }
}