@charset "UTF-8";
/* brakepoint */
/* 共通 */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 50px;
}
@media screen and (min-width: 769px) {
  html {
    margin-bottom: 0;
    scroll-padding-top: 100px;
  }
}

body {
  background-color: #ffffff;
  color: #443630;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 65px;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  body {
    margin-bottom: 0;
  }
}

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

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

picture {
  display: block;
}

.sp-none {
  display: none;
}
@media screen and (min-width: 769px) {
  .sp-none {
    display: block;
  }
}

.pc-none {
  display: block;
}
@media screen and (min-width: 769px) {
  .pc-none {
    display: none;
  }
}

.l-con {
  width: 90%;
  margin: 0 auto;
  max-width: 1440px;
}

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

.outfit {
  font-family: "Outfit", sans-serif;
}

@media screen and (min-width: 769px) {
  .titlecon {
    margin: 0 calc(50% - 44vw) 0;
    width: 87vw;
  }
}
.titlecon .titlebox {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 769px) {
  .titlecon .titlebox {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.titlecon .titlebox .title {
  color: #443630;
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .titlecon .titlebox .title {
    font-size: 88px;
    margin-bottom: 18px;
  }
}
.titlecon .titlebox .subtitle {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .titlecon .titlebox .subtitle {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}
.titlecon .titlebox::after {
  content: "";
  display: block;
  background-color: #443630;
  height: 2px;
  width: 100px;
  transform: rotate(135deg);
  position: absolute;
  top: 42px;
  right: -120px;
}
@media screen and (min-width: 769px) {
  .titlecon .titlebox::after {
    width: 250px;
    top: 106px;
    right: -180px;
  }
}

/* header */
.header {
  height: 55px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .header {
    height: 108px;
    top: 0;
  }
}
.header_inner {
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 5%;
  width: 100%;
  /* ハンバーガーメニュー */
}
@media screen and (min-width: 769px) {
  .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0 0 0 40px;
    width: 100%;
  }
}
.header_inner-logo {
  width: 32%;
}
@media screen and (min-width: 769px) {
  .header_inner-logo {
    width: 210px;
  }
}
.header_inner .checkbox,
.header_inner .hamburger {
  width: 40px;
  height: 26px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.header_inner > .txt {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.27;
  position: absolute;
  right: 4rem;
}
.header_inner .checkbox {
  opacity: 0;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .header_inner .checkbox {
    display: none;
  }
}
.header_inner .checkbox:checked ~ .hamburger span:nth-last-child(1) {
  transform: rotate(-45deg) translate(-4px, 8px);
}
.header_inner .checkbox:checked ~ .hamburger span:nth-last-child(2) {
  transform: rotate(0deg) scale(0.2, 0.2);
  opacity: 0;
}
.header_inner .checkbox:checked ~ .hamburger span:nth-last-child(3) {
  transform: rotate(45deg) translate(1px, -4px);
}
.header_inner .checkbox:checked ~ .nav-box {
  transform: translateX(0%);
}
.header_inner .hamburger {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  z-index: 90;
}
@media screen and (min-width: 769px) {
  .header_inner .hamburger {
    display: none;
  }
}
.header_inner .hamburger span {
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  transition: all 250ms ease-out;
  transform-origin: 0 0;
}
.header_inner .nav-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  z-index: -1;
  background: #f9f7f3;
  transition: all 250ms ease-out;
  transform: translateX(-100%);
}
@media screen and (min-width: 769px) {
  .header_inner .nav-box {
    position: relative;
    left: unset;
    top: unset;
    width: auto;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    background: transparent;
    transition: none;
    transform: none;
    width: 58%;
  }
}
.header_inner .nav-box li {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .header_inner .nav-box li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header_inner .nav-box li a {
  color: #443630;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (min-width: 769px) {
  .header_inner .nav-box li a {
    font-size: min(1.2vw, 18px);
    padding-bottom: 5px;
    position: relative;
  }
}
.header_inner .nav-box li:not(:last-of-type) {
  margin: 0 0 20px;
}
@media screen and (min-width: 769px) {
  .header_inner .nav-box li:not(:last-of-type) {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  .header_inner .nav-box li:not(:last-of-type) a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.header_inner .nav-box li:not(:last-of-type) a::after {
  content: "";
  background: #252525;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
@media screen and (min-width: 769px) {
  .header_inner .nav-box li:last-of-type {
    height: 100%;
    width: 23%;
  }
}
.header_inner .nav-box li:last-of-type a {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 769px) {
  .header_inner .nav-box li:last-of-type a {
    background-color: #333333;
    color: #fff;
    display: flex;
    font-size: min(1.6vw, 20px);
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
  }
}
.header_inner .nav-box li:last-of-type a:hover::after {
  transform: translateX(38%) translateY(-25%) rotate(115deg);
}
@media screen and (min-width: 769px) {
  .header_inner .nav-box li:last-of-type a::after {
    content: "";
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 30px;
    width: 150%;
    height: 500%;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    transform: translateX(-80%) translateY(-70%) rotate(115deg);
  }
}

/* footer */
.footer {
  background-color: #efebe0;
  padding: 40px 0 0;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 65px 0 0;
    margin: 75px 0 0;
  }
}
.footer_inner {
  margin: 0 auto;
  width: min(90%, 956px);
}
.footer_inner .img {
  margin: 0 auto;
  width: 56%;
}
@media screen and (min-width: 769px) {
  .footer_inner .img {
    width: 210px;
  }
}
.footer_inner-nav {
  display: none;
}
@media screen and (min-width: 769px) {
  .footer_inner-nav {
    display: flex;
    margin: 38px auto 40px;
  }
}
.footer_inner-nav li a {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
}
.footer_inner .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) {
  .footer_inner .txt {
    margin: 0 auto 16px;
  }
}
.footer_inner .address {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.footer_inner .tel {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer_inner .tel a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.footer_inner .button {
  margin: 24px auto 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer_inner .button a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  position: relative;
}
.footer_inner .button a::after {
  content: "";
  display: block;
  background-image: url(../img/icon-exlink.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  width: 12px;
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translate(0, -50%);
}
.footer .copyright {
  background-color: #f9f7f3;
  font-size: 12px;
  font-weight: 400;
  line-height: 2.15;
  text-align: center;
  padding: 4px 0;
}
@media screen and (min-width: 769px) {
  .footer .copyright {
    font-size: 13px;
    padding: 8px 0;
  }
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .bottom-nav {
    display: none;
  }
}
.bottom-nav li a {
  background-color: #000000;
  border-radius: 4px 4px 0 0;
  color: #fff;
  display: block;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
}
.bottom-nav li a img {
  margin: 0 8px 0 0;
  width: 18px;
}
.bottom-nav li:first-of-type {
  width: 37%;
}
.bottom-nav li:first-of-type a span {
  font-size: 13px;
}
.bottom-nav li:last-of-type {
  width: 62.5%;
}
.bottom-nav li:last-of-type a {
  position: relative;
  z-index: 1;
}
.bottom-nav li:last-of-type a span {
  font-size: 12px;
  font-weight: 400;
}
.bottom-nav li:last-of-type a::before {
  content: "";
  background: #333;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(80% 0, 100% 0, 100% 100%, 70% 100%);
          clip-path: polygon(80% 0, 100% 0, 100% 100%, 70% 100%);
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  transform-origin: right top;
  z-index: -1;
  transition: 0.3s;
}

/* content */
@media screen and (min-width: 769px) {
  .mv {
    padding: 108px 0 0;
  }
}

.worry {
  background-image: -webkit-image-set(url("../img/worry-bg-sp.webp") type("image/webp"), url("../img/worry-bg-sp.png") type("image/png"));
  background-image: image-set(url("../img/worry-bg-sp.webp") type("image/webp"), url("../img/worry-bg-sp.png") type("image/png"));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 0 84px;
}
@media screen and (min-width: 769px) {
  .worry {
    background-image: -webkit-image-set(url("../img/worry-bg.webp") type("image/webp"), url("../img/worry-bg.png") type("image/png"));
    background-image: image-set(url("../img/worry-bg.webp") type("image/webp"), url("../img/worry-bg.png") type("image/png"));
    padding: 80px 0 102px;
  }
}
.worry_inner {
  max-width: 1170px;
}
.worry_inner-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .worry_inner-ttl {
    font-size: 48px;
  }
}
.worry_inner-flexbox {
  flex-direction: column;
  margin: 24px auto 0;
}
@media screen and (min-width: 769px) {
  .worry_inner-flexbox {
    flex-direction: row;
    margin: 57px auto 0;
  }
}
.worry_inner-flexbox li {
  position: relative;
  margin: 0 auto;
  width: 293px;
}
@media screen and (min-width: 769px) {
  .worry_inner-flexbox li {
    margin: 0;
    width: 350px;
  }
}
.worry_inner-flexbox li .txt {
  font-size: 18px;
  align-self: start;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 769px) {
  .worry_inner-flexbox li .txt {
    font-size: 20px;
    top: 20%;
  }
}
.worry_inner-flexbox li .img {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 124px;
}
@media screen and (min-width: 769px) {
  .worry_inner-flexbox li .img {
    width: 150px;
  }
}
.worry_inner-flexbox li:not(:last-of-type) {
  margin: 0 auto 34px;
}
@media screen and (min-width: 769px) {
  .worry_inner-flexbox li:not(:last-of-type) {
    margin: 0;
  }
}

.solve {
  padding: 40px 0 60px;
}
@media screen and (min-width: 769px) {
  .solve {
    padding: 40px 0 80px;
  }
}
.solve_inner {
  max-width: 1323px;
}
.solve_inner-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .solve_inner-ttl {
    font-size: 40px;
  }
}
.solve_inner-flexbox {
  margin: 16px auto 0;
}
@media screen and (min-width: 769px) {
  .solve_inner-flexbox {
    align-items: flex-end;
    margin: 48px auto 0;
  }
}
.solve_inner-flexbox .textbox {
  background-image: -webkit-image-set(url("../img/solve-bg-sp.webp") type("image/webp"), url("../img/solve-bg-sp.png") type("image/png"));
  background-image: image-set(url("../img/solve-bg-sp.webp") type("image/webp"), url("../img/solve-bg-sp.png") type("image/png"));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 16px 16px 50px 16px;
}
@media screen and (min-width: 769px) {
  .solve_inner-flexbox .textbox {
    background-image: -webkit-image-set(url("../img/solve-bg.webp") type("image/webp"), url("../img/solve-bg.png") type("image/png"));
    background-image: image-set(url("../img/solve-bg.webp") type("image/webp"), url("../img/solve-bg.png") type("image/png"));
    padding: 44px 114px 44px 44px;
    width: 76%;
  }
}
.solve_inner-flexbox .textbox .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin: 0 auto 24px;
}
@media screen and (min-width: 769px) {
  .solve_inner-flexbox .textbox .txt {
    font-size: 20px;
    line-height: 2;
    margin: 0 auto 32px;
  }
}
.solve_inner-flexbox .textbox .btn a {
  background-color: #FFFFFF;
  border: 1px solid #252525;
  border-radius: 4px;
  color: #1A1A1A;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  padding: 8px 0;
  position: relative;
  text-align: center;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .solve_inner-flexbox .textbox .btn a {
    font-size: 20px;
    padding: 20px 0;
  }
}
.solve_inner-flexbox .textbox .btn a::after {
  content: "";
  display: block;
  background-color: #252525;
  -webkit-mask-image: url(../img/arrow-contact.svg);
          mask-image: url(../img/arrow-contact.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .solve_inner-flexbox .textbox .btn a::after {
    height: 40px;
    width: 40px;
  }
}
.solve_inner-flexbox .textbox .btn a:hover {
  background-color: #252525;
  color: #fff;
}
.solve_inner-flexbox .textbox .btn a:hover::after {
  background-color: #fff;
}
.solve_inner-flexbox .img {
  margin: 8px auto 0;
  width: 50%;
}
@media screen and (min-width: 769px) {
  .solve_inner-flexbox .img {
    margin: 0;
    width: 23.5%;
  }
}

.about {
  background-color: #F9F7F3;
  padding: 40px 0 60px;
}
@media screen and (min-width: 769px) {
  .about {
    padding: 156px 0 150px;
  }
}
.about_inner {
  max-width: 1320px;
}
.about_inner-flexbox {
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) {
  .about_inner-flexbox {
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 769px) {
  .about_inner-flexbox li {
    width: 45%;
  }
}
.about_inner-flexbox li .ttl {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .about_inner-flexbox li .ttl {
    font-size: 20px;
  }
}
.about_inner-flexbox li .ttl span {
  display: inline-block;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0;
  margin-right: 27px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .about_inner-flexbox li .ttl span {
    font-size: 40px;
    margin-right: 64px;
  }
}
.about_inner-flexbox li .ttl span::after {
  content: "";
  display: block;
  background-color: #443630;
  height: 1px;
  width: 18px;
  transform: rotate(120deg) translateY(-50%);
  position: absolute;
  top: 55%;
  right: -23px;
}
@media screen and (min-width: 769px) {
  .about_inner-flexbox li .ttl span::after {
    transform: rotate(130deg) translateY(-50%);
    right: -58px;
    width: 37px;
  }
}
.about_inner-flexbox li .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .about_inner-flexbox li .txt {
    font-size: 18px;
    margin: 40px 0;
  }
}
.about_inner-flexbox li .img {
  margin: 24px auto 16px;
}
@media screen and (min-width: 769px) {
  .about_inner-flexbox li .img {
    margin: 0;
  }
}
.about_inner-flexbox li:first-of-type {
  margin: 0 0 30px;
}
@media screen and (min-width: 769px) {
  .about_inner-flexbox li:first-of-type {
    margin: 0;
  }
}

.comparison {
  padding: 60px 0 40px;
}
@media screen and (min-width: 769px) {
  .comparison {
    padding: 84px 0 120px;
  }
}
.comparison_inner {
  /* tab切り替え */
}
.comparison_inner > .txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  margin: 40px auto;
}
.comparison_inner-box01, .comparison_inner-box02 {
  margin: 0 calc(50% - 50vw);
}
.comparison_inner-box01 .ttl, .comparison_inner-box02 .ttl {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.66;
  margin: 0 auto 16px;
}
.comparison_inner-box01 .tablebox, .comparison_inner-box02 .tablebox {
  overflow-x: scroll;
}
.comparison_inner-box01 .tablebox table, .comparison_inner-box02 .tablebox table {
  border-collapse: separate;
  background-color: #F4F4F4;
  border-spacing: 5px;
  display: block;
  padding: 44px 24px 24px 24px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.comparison_inner-box01 .tablebox table tr:first-of-type td, .comparison_inner-box02 .tablebox table tr:first-of-type td {
  background-color: #3A3A3A;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  padding: 1px 0;
  text-align: center;
}
.comparison_inner-box01 .tablebox table tr:first-of-type td:first-of-type, .comparison_inner-box02 .tablebox table tr:first-of-type td:first-of-type {
  width: 122px;
}
.comparison_inner-box01 .tablebox table tr:first-of-type td:not(:first-of-type), .comparison_inner-box02 .tablebox table tr:first-of-type td:not(:first-of-type) {
  width: 342px;
}
.comparison_inner-box01 .tablebox table tr:not(:first-of-type) td:first-of-type, .comparison_inner-box02 .tablebox table tr:not(:first-of-type) td:first-of-type {
  background-color: #CCCCCC;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  padding: 1px 0;
  text-align: center;
  vertical-align: middle;
}
.comparison_inner-box01 .tablebox table tr:not(:first-of-type) td:not(:first-of-type), .comparison_inner-box02 .tablebox table tr:not(:first-of-type) td:not(:first-of-type) {
  background-color: #FFFFFF;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
  padding: 8px;
}
.comparison_inner-box01 .tablebox table::after, .comparison_inner-box02 .tablebox table::after {
  content: "";
  display: block;
  background-image: url(../img/table-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 4px;
  width: 74px;
  position: absolute;
  top: 20px;
  left: 80vw;
}
@media screen and (min-width: 769px) {
  .comparison_inner-box01 .tablebox table::after, .comparison_inner-box02 .tablebox table::after {
    content: none;
  }
}
.comparison_inner-box02 {
  margin: 40px calc(50% - 50vw) 0;
}
@media screen and (min-width: 769px) {
  .comparison_inner .tab-switch {
    display: flex; /* タブを横並びに */
    flex-wrap: wrap; /* 幅に応じて折り返し */
    margin: auto; /* コンテナの中央寄せ */
    justify-content: center; /* タブの中央寄せ */
    gap: 0 10px; /* タブ間の余白 */
    margin: 80px auto 0;
  }
}
.comparison_inner .tab-switch label {
  border-radius: 8px 8px 0 0;
  flex: 1 1 auto; /* タブが均等に幅をとるが、幅を超えると折り返す */
  order: -1; /* 上部に表示する */
  position: relative; /* 絶対位置指定用の基準 */
  padding: 12px 0; /* 上下左右の内側余白 */
  background-color: rgb(244, 244, 244); /* 背景色 */
  color: rgba(68, 54, 48, 0.6); /* 文字色 */
  text-align: center; /* 文字を中央揃え */
  cursor: pointer; /* ポインターを指アイコンに変更 */
  transition: 0.3s all;
}
.comparison_inner .tab-switch label:has(:checked) + div {
  display: block; /* 選択されたタブに対応するコンテンツを表示 */
}
.comparison_inner .tab-switch > label:hover,
.comparison_inner .tab-switch label:has(:checked) {
  background-color: #DDDDDD;
  color: #443630;
}
.comparison_inner .tab-switch input {
  display: none; /* 見た目に表示されないようにする */
}
.comparison_inner .tab-switch > div {
  display: none; /* 初期状態では非表示 */
  width: 100%; /* コンテンツ幅を全体に */
}
.comparison_inner .tab-switch .tab-content {
  background-color: #DDDDDD;
  padding: 60px;
}
.comparison_inner .tab-switch .tab-content table {
  border-collapse: separate;
  width: 100%;
}
.comparison_inner .tab-switch .tab-content table tbody {
  width: 100%;
}
.comparison_inner .tab-switch .tab-content table tbody tr {
  width: 100%;
}
.comparison_inner .tab-switch .tab-content table tbody tr:first-of-type td {
  background-color: #3A3A3A;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
  padding: 17px 0;
  text-align: center;
}
.comparison_inner .tab-switch .tab-content table tbody tr td:nth-of-type(2) {
  width: 18%;
}
.comparison_inner .tab-switch .tab-content table tbody tr td:not(:nth-of-type(2)) {
  width: 41%;
}
.comparison_inner .tab-switch .tab-content table tbody tr:not(:first-of-type) td:nth-of-type(2) {
  background-color: #CCCCCC;
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
  padding: 20px 0;
  text-align: center;
  vertical-align: middle;
}
.comparison_inner .tab-switch .tab-content table tbody tr:not(:first-of-type) td:not(:nth-of-type(2)) {
  background-color: #FFFFFF;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42;
  padding: 8px 16px;
}
.comparison_inner .tab-switch .tab-content .txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.22;
  letter-spacing: 0.05em;
  margin: 40px auto 0;
}

.contact_inner {
  background-color: #333333;
  padding: 40px 24px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .contact_inner {
    margin: 0 auto;
    max-width: 1200px;
    padding: 52px 0;
    width: 90%;
  }
}
.contact_inner-ttl {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto 24px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contact_inner-ttl {
    font-size: 16px;
  }
}
.contact_inner-ttl span {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 769px) {
  .contact_inner-ttl span {
    font-size: 32px;
  }
}
.contact_inner > .txt {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  text-align: center;
  margin: 16px 0 24px;
}
@media screen and (min-width: 769px) {
  .contact_inner > .txt {
    font-size: 16px;
    margin: 24px 0 40px;
  }
}
.contact_inner .contact-btn {
  margin: 24px auto 16px;
  width: min(85%, 680px);
}
@media screen and (min-width: 769px) {
  .contact_inner .contact-btn {
    margin: 40px auto;
  }
}
.contact_inner .contact-btn a {
  background-color: #fff;
  border-radius: 4px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  padding: 8px 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .contact_inner .contact-btn a {
    font-size: 24px;
    padding: 30px 0;
  }
}
.contact_inner .contact-btn a:hover {
  background-color: #252525;
  color: #fff;
}
.contact_inner .contact-btn a:hover::after {
  background-color: #fff;
}
.contact_inner .contact-btn a::after {
  content: "";
  display: block;
  background-color: #252525;
  -webkit-mask-image: url(../img/arrow-contact.svg);
          mask-image: url(../img/arrow-contact.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .contact_inner .contact-btn a::after {
    width: 40px;
    height: 40px;
    right: 40px;
  }
}
.contact_inner .tel-box .txt {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.05rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contact_inner .tel-box .txt {
    font-size: 18px;
  }
}
.contact_inner .tel-box .tel-btn {
  margin: 8px auto 5px;
  width: min(85%, 480px);
}
@media screen and (min-width: 769px) {
  .contact_inner .tel-box .tel-btn {
    margin: 13px auto 18px;
  }
}
.contact_inner .tel-box .tel-btn a {
  background-color: #e9eaea;
  border-radius: 48px;
  display: block;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 8px 0 8px 30px;
}
@media screen and (min-width: 769px) {
  .contact_inner .tel-box .tel-btn a {
    font-size: 32px;
    padding: 28px 0 28px 48px;
  }
}
.contact_inner .tel-box .tel-btn a span {
  position: relative;
}
.contact_inner .tel-box .tel-btn a span::after {
  content: "";
  display: block;
  background-color: #252525;
  -webkit-mask-image: url(../img/icon-tel.svg);
          mask-image: url(../img/icon-tel.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: -37px;
  transform: translate(0, -50%);
  transition: 0.3s;
}
.contact_inner .tel-box .tel-btn a:hover {
  background-color: #252525;
  color: #e9eaea;
}
.contact_inner .tel-box .tel-btn a:hover span::after {
  background-color: #e9eaea;
}
.contact_inner::after {
  content: "";
  background: #252525;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 76% 0, 40% 100%, 0% 100%);
          clip-path: polygon(0 0, 76% 0, 40% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  transform-origin: right top;
  z-index: -1;
}

.cost {
  padding: 60px 0 40px;
}
@media screen and (min-width: 769px) {
  .cost {
    padding: 215px 0 120px;
  }
}
.cost_inner {
  max-width: 1300px;
  /* tab切り替え */
}
.cost_inner .img {
  margin: 24px auto 16px;
}
@media screen and (min-width: 769px) {
  .cost_inner .img {
    margin: 32px auto 16px;
  }
}
.cost_inner > .txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  margin: 0 auto 45px;
}
@media screen and (min-width: 769px) {
  .cost_inner > .txt {
    font-size: 18px;
    letter-spacing: 0.05em;
    margin: 0 auto 80px;
  }
}
.cost_inner .tab-switch {
  display: flex; /* タブを横並びに */
  flex-wrap: wrap; /* 幅に応じて折り返し */
  margin: auto; /* コンテナの中央寄せ */
  justify-content: center; /* タブの中央寄せ */
  gap: 0 10px; /* タブ間の余白 */
  margin: 80px auto 0;
}
@media screen and (min-width: 769px) {
  .cost_inner .tab-switch {
    display: none;
  }
}
.cost_inner .tab-switch label {
  border-radius: 8px 8px 0 0;
  flex: 1 1 auto; /* タブが均等に幅をとるが、幅を超えると折り返す */
  order: -1; /* 上部に表示する */
  position: relative; /* 絶対位置指定用の基準 */
  padding: 12px 0; /* 上下左右の内側余白 */
  background-color: rgb(244, 244, 244); /* 背景色 */
  color: rgba(68, 54, 48, 0.6); /* 文字色 */
  text-align: center; /* 文字を中央揃え */
  cursor: pointer; /* ポインターを指アイコンに変更 */
  transition: 0.3s all;
}
.cost_inner .tab-switch label:has(:checked) + div {
  display: block; /* 選択されたタブに対応するコンテンツを表示 */
}
.cost_inner .tab-switch > label:hover,
.cost_inner .tab-switch label:has(:checked) {
  background-color: #DDDDDD;
  color: #443630;
}
.cost_inner .tab-switch input {
  display: none; /* 見た目に表示されないようにする */
}
.cost_inner .tab-switch > div {
  display: none; /* 初期状態では非表示 */
  width: 100%; /* コンテンツ幅を全体に */
}
.cost_inner .tab-switch .tab-content {
  background-color: #DDDDDD;
  padding: 20px;
}
.cost_inner .tab-switch .tab-content .titlebox li {
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 5px 0;
  width: 50%;
}
.cost_inner .tab-switch .tab-content .titlebox li:first-of-type {
  background-color: #003040;
}
.cost_inner .tab-switch .tab-content .titlebox li:last-of-type {
  background-color: #3F1000;
}
.cost_inner .tab-switch .tab-content > .ttl {
  background-color: #EEE08C;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 10px;
  padding: 10px 10px;
}
.cost_inner .tab-switch .tab-content .tab-con ul {
  align-items: center;
}
.cost_inner .tab-switch .tab-content .tab-con ul li {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 10px;
  width: 50%;
}
.cost_inner .tab-switch .tab-content .tab-con ul li:first-of-type {
  color: #003040;
}
.cost_inner .tab-switch .tab-content .tab-con ul li:last-of-type {
  color: #3F1000;
}
.cost_inner .tab-switch .tab-content .dialog-btn {
  font-size: 14px;
  margin: 14px auto 20px;
  text-align: center;
  width: 100%;
}
.cost_inner .tab-switch .tab-content dialog {
  border: none;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.cost_inner .tab-switch .tab-content dialog .dialog-buttons {
  text-align: right;
  margin-top: 1em;
}
.cost_inner .splide .splide__arrows .splide__arrow--prev {
  background: url("../img/slidearrow-left.svg") no-repeat;
  background-size: contain;
  top: 80%;
  left: 0;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 769px) {
  .cost_inner .splide .splide__arrows .splide__arrow--prev {
    width: 40px;
    height: 40px;
    top: 35%;
    left: -60px;
  }
}
.cost_inner .splide .splide__arrows .splide__arrow--next {
  background: url("../img/slidearrow-right.svg") no-repeat;
  background-size: contain;
  top: 80%;
  right: 0;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 769px) {
  .cost_inner .splide .splide__arrows .splide__arrow--next {
    width: 40px;
    height: 40px;
    top: 35%;
    right: -60px;
  }
}
.cost_inner .splide .splide__arrows svg {
  display: none;
}
.cost_inner .splide .splide__track {
  margin: 0 auto;
  width: 100%;
}

.case {
  background-color: #F9F7F3;
  padding: 60px 0 40px;
}
@media screen and (min-width: 769px) {
  .case {
    padding: 120px 0 111px;
  }
}
.case_inner {
  max-width: 1200px;
}
.case_inner-box01 > .ttl, .case_inner-box02 > .ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 16px auto;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 > .ttl, .case_inner-box02 > .ttl {
    font-size: 24px;
    margin: 68px auto 48px;
  }
}
.case_inner-box01 > .ttl span, .case_inner-box02 > .ttl span {
  font-size: 24px;
  font-weight: 300;
  position: relative;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 > .ttl span, .case_inner-box02 > .ttl span {
    font-size: 40px;
    margin-right: 64px;
  }
}
.case_inner-box01 > .ttl span::after, .case_inner-box02 > .ttl span::after {
  content: "";
  display: block;
  background-color: #443630;
  height: 1px;
  width: 24px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%) rotate(130deg);
}
.case_inner-box01 .parent, .case_inner-box02 .parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent, .case_inner-box02 .parent {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    grid-column-gap: 26px;
    grid-row-gap: 40px;
  }
}
.case_inner-box01 .parent div picture, .case_inner-box02 .parent div picture {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case_inner-box01 .parent div picture img, .case_inner-box02 .parent div picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case_inner-box01 .parent .div1, .case_inner-box02 .parent .div1 {
  grid-area: 1/1/3/2;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent .div1, .case_inner-box02 .parent .div1 {
    grid-area: 1/1/9/6;
  }
}
.case_inner-box01 .parent .div2, .case_inner-box02 .parent .div2 {
  grid-area: 1/2/2/3;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent .div2, .case_inner-box02 .parent .div2 {
    grid-area: 1/6/6/13;
  }
}
.case_inner-box01 .parent .div3, .case_inner-box02 .parent .div3 {
  grid-area: 2/2/3/3;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent .div3, .case_inner-box02 .parent .div3 {
    grid-area: 6/6/9/13;
  }
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent .div3 .title, .case_inner-box02 .parent .div3 .title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent .div3 .txt, .case_inner-box02 .parent .div3 .txt {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.77;
    margin: 16px 0 0;
  }
}
.case_inner-box01 .parent .div4, .case_inner-box02 .parent .div4 {
  grid-area: 3/1/4/2;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent .div4, .case_inner-box02 .parent .div4 {
    grid-area: 9/1/13/5;
  }
}
.case_inner-box01 .parent .div5, .case_inner-box02 .parent .div5 {
  grid-area: 3/2/4/3;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent .div5, .case_inner-box02 .parent .div5 {
    grid-area: 9/5/13/9;
  }
}
.case_inner-box01 .parent .div5 .title, .case_inner-box02 .parent .div5 .title {
  border: 1px solid #CCCCCC;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 3px 0;
  margin: 10px auto 8px;
  width: 80%;
}
.case_inner-box01 .parent .div5 ul, .case_inner-box02 .parent .div5 ul {
  font-size: 14px;
  font-weight: 500;
  justify-content: flex-start;
}
.case_inner-box01 .parent .div5 ul li:first-of-type, .case_inner-box02 .parent .div5 ul li:first-of-type {
  width: 60px;
}
.case_inner-box01 .parent .div5 ul:not(:last-of-type), .case_inner-box02 .parent .div5 ul:not(:last-of-type) {
  margin: 0 auto 4px;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .parent .div6, .case_inner-box02 .parent .div6 {
    grid-area: 9/9/13/13;
  }
}
.case_inner-box01 .case_inner-flexbox02, .case_inner-box02 .case_inner-flexbox02 {
  margin: 48px auto 0;
}
.case_inner-box01 .case_inner-flexbox02 .textbox, .case_inner-box02 .case_inner-flexbox02 .textbox {
  border-top: 1px solid #443630;
  border-bottom: 1px solid #443630;
  padding: 24px 0;
  width: 66%;
}
.case_inner-box01 .case_inner-flexbox02 .textbox ul, .case_inner-box02 .case_inner-flexbox02 .textbox ul {
  width: 100%;
}
.case_inner-box01 .case_inner-flexbox02 .textbox ul li, .case_inner-box02 .case_inner-flexbox02 .textbox ul li {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 20px;
  position: relative;
  width: 48%;
}
.case_inner-box01 .case_inner-flexbox02 .textbox ul li::after, .case_inner-box02 .case_inner-flexbox02 .textbox ul li::after {
  content: "";
  display: block;
  background-color: #443630;
  border-radius: 20px;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.case_inner-box01 .case_inner-flexbox02 .textbox ul li:nth-last-of-type(-n+2), .case_inner-box02 .case_inner-flexbox02 .textbox ul li:nth-last-of-type(-n+2) {
  margin-top: 16px;
}
.case_inner-box01 .btn, .case_inner-box02 .btn {
  margin: 18px auto 0;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .btn, .case_inner-box02 .btn {
    margin: 0;
    width: 32%;
  }
}
.case_inner-box01 .btn a, .case_inner-box02 .btn a {
  background-color: #333333;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 13px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .btn a, .case_inner-box02 .btn a {
    font-size: 18px;
    padding: 45px;
  }
}
.case_inner-box01 .btn a:hover:before, .case_inner-box02 .btn a:hover:before {
  -webkit-clip-path: polygon(60% 0, 100% 0, 100% 100%, 45% 100%);
          clip-path: polygon(60% 0, 100% 0, 100% 100%, 45% 100%);
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .btn a:hover:before, .case_inner-box02 .btn a:hover:before {
    -webkit-clip-path: polygon(45% 0, 100% 0, 100% 100%, 30% 100%);
            clip-path: polygon(45% 0, 100% 0, 100% 100%, 30% 100%);
  }
}
.case_inner-box01 .btn a:hover:after, .case_inner-box02 .btn a:hover:after {
  right: 6px;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .btn a:hover:after, .case_inner-box02 .btn a:hover:after {
    right: 20px;
  }
}
.case_inner-box01 .btn a::before, .case_inner-box02 .btn a::before {
  content: "";
  background: #000000;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 60% 0, 45% 100%, 0% 100%);
          clip-path: polygon(0 0, 60% 0, 45% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  transform-origin: right top;
  z-index: -1;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .btn a::before, .case_inner-box02 .btn a::before {
    -webkit-clip-path: polygon(0 0, 75% 0, 60% 100%, 0% 100%);
            clip-path: polygon(0 0, 75% 0, 60% 100%, 0% 100%);
  }
}
.case_inner-box01 .btn a::after, .case_inner-box02 .btn a::after {
  content: "";
  display: block;
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 13px;
  width: 13px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 .btn a::after, .case_inner-box02 .btn a::after {
    height: 16px;
    width: 16px;
    right: 32px;
  }
}
.case_inner-box01 {
  border-bottom: 1px solid #443630;
  margin: 40px 0 40px;
  padding: 0 0 40px;
}
@media screen and (min-width: 769px) {
  .case_inner-box01 {
    border-bottom: unset;
    padding: 0;
    margin: 0 auto 150px;
  }
}
.case_inner-flexbox {
  margin: 16px auto 0;
}
@media screen and (min-width: 769px) {
  .case_inner-flexbox {
    align-items: flex-end;
    margin: 48px auto 0;
  }
}
.case_inner-flexbox .textbox {
  background-image: -webkit-image-set(url("../img/event-bg-sp.webp") type("image/webp"), url("../img/event-bg-sp.png") type("image/png"));
  background-image: image-set(url("../img/event-bg-sp.webp") type("image/webp"), url("../img/event-bg-sp.png") type("image/png"));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 16px 16px 50px 16px;
}
@media screen and (min-width: 769px) {
  .case_inner-flexbox .textbox {
    background-image: -webkit-image-set(url("../img/event-bg.webp") type("image/webp"), url("../img/event-bg.png") type("image/png"));
    background-image: image-set(url("../img/event-bg.webp") type("image/webp"), url("../img/event-bg.png") type("image/png"));
    padding: 44px 114px 44px 44px;
    width: 76%;
  }
}
.case_inner-flexbox .textbox .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin: 0 auto 24px;
}
@media screen and (min-width: 769px) {
  .case_inner-flexbox .textbox .txt {
    font-size: 20px;
    line-height: 2;
    margin: 0 auto 32px;
  }
}
.case_inner-flexbox .textbox .btn a {
  background-color: #FFFFFF;
  border: 1px solid #252525;
  border-radius: 4px;
  color: #1A1A1A;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  padding: 8px 0;
  position: relative;
  text-align: center;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .case_inner-flexbox .textbox .btn a {
    font-size: 20px;
    padding: 20px 0;
  }
}
.case_inner-flexbox .textbox .btn a::after {
  content: "";
  display: block;
  background-color: #252525;
  -webkit-mask-image: url(../img/arrow-contact.svg);
          mask-image: url(../img/arrow-contact.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .case_inner-flexbox .textbox .btn a::after {
    height: 40px;
    width: 40px;
  }
}
.case_inner-flexbox .textbox .btn a:hover {
  background-color: #252525;
  color: #fff;
}
.case_inner-flexbox .textbox .btn a:hover::after {
  background-color: #fff;
}
.case_inner-flexbox .img {
  margin: 8px auto 0;
  width: 50%;
}
@media screen and (min-width: 769px) {
  .case_inner-flexbox .img {
    margin: 0;
    width: 23.5%;
  }
}

.column {
  padding: 60px 0;
}
@media screen and (min-width: 769px) {
  .column {
    padding: 150px 0;
  }
}
.column_inner-flexbox {
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) {
  .column_inner-flexbox {
    margin: 60px auto 0;
  }
}
.column_inner-flexbox li {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .column_inner-flexbox li {
    width: 31%;
  }
}
.column_inner-flexbox li .img {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 67%;
  background-position: center;
}
.column_inner-flexbox li .day {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  margin: 8px 0 6px;
}
@media screen and (min-width: 769px) {
  .column_inner-flexbox li .day {
    font-size: 16px;
    margin: 16px 0 8px;
  }
}
.column_inner-flexbox li .ttl {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .column_inner-flexbox li .ttl {
    font-size: 18px;
  }
}
.column_inner-flexbox li:nth-of-type(2) {
  margin: 24px 0;
}
@media screen and (min-width: 769px) {
  .column_inner-flexbox li:nth-of-type(2) {
    margin: 0;
  }
}
.column_inner .btn {
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) {
  .column_inner .btn {
    margin: 80px auto 0;
    width: 380px;
  }
}
.column_inner .btn a {
  border: 1px solid #252525;
  border-radius: 4px;
  color: #1A1A1A;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  text-align: center;
  position: relative;
  padding: 8px 0;
}
@media screen and (min-width: 769px) {
  .column_inner .btn a {
    border: 1px solid #443630;
    border-radius: 0;
    font-size: 18px;
    padding: 17px 0;
  }
}
.column_inner .btn a:hover {
  background-color: #1A1A1A;
  color: #fff;
}
.column_inner .btn a:hover:after {
  background-color: #fff;
}
.column_inner .btn a::after {
  content: "";
  display: block;
  background-color: #252525;
  -webkit-mask-image: url(../img/arrow-contact.svg);
          mask-image: url(../img/arrow-contact.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .column_inner .btn a::after {
    background-color: #443630;
    -webkit-mask-image: url(../img/icon-arrow.svg);
            mask-image: url(../img/icon-arrow.svg);
    -webkit-mask-size: cover;
            mask-size: cover;
    height: 12px;
    width: 12px;
  }
}

/*# sourceMappingURL=style.css.map */