@charset "UTF-8";
/* リセット */
*, *::before, *::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
figure,
dl,
dd,
dt,
hr,
table,
tr,
td,
th {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

textarea {
  width: 100%;
}

button:focus {
  outline: none;
}

body {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
body.fixed {
  position: fixed;
  width: 100vw;
  left: 0;
}

.forPC {
  display: inline-block;
}
.forSP {
  display: none;
}
@media screen and (max-width:768px) {
  .forPC {
    display: none;
  }
  .forSP {
    display: inline-block;
  }
}
.cm__en {
  font-family: "Arial", sans-serif;
}

.cm__color {
  color: #ED4646;
  font-weight: bold;
}

.cm__marker {
  display: inline-block;
  background: linear-gradient(transparent 50%, #faff79 50%);
}

.cm__sm {
  font-size: 0.75rem;
  display: inline;
}

.inner {
  padding-right: 1rem;
  padding-left: 1rem;
}

a {
  transition: all ease 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

.cm__lineBtn {
  width: calc(100vw - 32px);
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #09c655;
  background: rgb(84, 242, 147);
  background: linear-gradient(180deg, rgb(84, 242, 147) 0%, rgb(9, 198, 85) 35%, rgb(37, 157, 86) 100%);
  animation: mochimochi 1s infinite;
}
@keyframes mochimochi {
  0% {
    transform: scale(1, 0.8);
  }
  20% {
    transform: scale(0.8, 1.1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
.cm__lineBtn a {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  position: relative;
  justify-content: space-between;
  letter-spacing: 0.02em;
  align-items: center;
  padding: 1.1875rem 1.1875rem 1.1875rem 1.875rem;
}
.cm__lineBtn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url(../images/icon_arrow_r_wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.cm__caution {
  font-size: 0.625rem;
}

.body__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .body__inner {
    max-width: 375px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}

.pc__gallery {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .pc__gallery {
    display: none;
  }
}

.pc__nav {
  width: 220px;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 140px;
}
@media screen and (max-width: 1024px) {
  .pc__nav {
    display: none;
  }
}
.pc__nav-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.pc__nav-item + .pc__nav-item {
  padding-top: 0.5rem;
}
.pc__nav-item a {
  color: #b5b5b5;
  width: 100%;
  position: relative;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}
.pc__nav-item a:hover {
  color: #000;
  opacity: 1;
}
.pc__nav-item a.current {
  border-bottom: 1px solid #000;
  color: #000;
  font-weight: bold;
}
.pc__nav-item a.current::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pc__nav-en {
  display: block;
  font-weight: bold;
  font-size: 0.625rem;
}
.pc__nav p {
  font-weight: bold;
}

.header {
  padding-top: 1rem;
  position: relative;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 769px) {
  .header {
    max-width: 375px;
    margin-right: auto;
    margin-left: auto;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
  }
  
}
.header__logo {
  max-width: 80px;
  display: block;
}
.header__logo img {
  width: 100%;
}
.header__img {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: -1;
}
.header__toggle {
  display: none;
}
.headerMenu__sp {
  display: none;
  transition: all ease .3s;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    position: relative;
    z-index: 9999;
  }
  .header__toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all ease .3s;
    position: relative;
    z-index: 9999;
  }
  .header__toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 100px;
    position: relative;
    transition: all ease .3s;
  }
  .header__toggle.clicked span:first-of-type {
    transform: rotate(45deg);
  }
  .header__toggle.clicked span:nth-of-type(2) {
    display: none;
  }
  .header__toggle.clicked span:last-of-type {
    transform: rotate(-45deg);
    top: -11px;
  }
  .headerMenu__sp.open {
    z-index: 9998;
    transition: all ease .3s;
    position: absolute;
    display: block;
    left: 0;
  }
  .headerMenu__sp {
    width: 100vw;
    background-color: #fff;
    height: 100vh;
    transition: all ease .3s;
    padding: 105px 20px;
    left: 100%;
    display: block;
  }
  .headerMenu__sp a {
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid #000;
    color: #000;
    gap: 25px;
    font-weight: bold;
    pointer-events: none;
  }
  .headerMenu__sp.open a {
    pointer-events: initial;
  }
  .headerMenu__sp .sp__nav-en {
    font-size: 10px;
    color: #AAAAAA;
    width: 52px;
  }
  .headerMenu__sp .sp__nav-item:last-of-type a {
    border-bottom: 1px solid #000;
  }
}
@media screen and (max-width: 768px) {
  .body__inner {
   padding-top: 65px;
  }
 }


.mv {
  margin-top: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  position: relative;
  padding-bottom: 10.5rem;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 0;
  }
}
.mv__img {
  max-width: calc(100% - 16px);
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.mv__img-01 {
  position: absolute;
  left: 0;
  width: 40vw;
  max-width: 300px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 769px) {
  .mv__img-01 {
    max-width: 150px;
  }
}
.mv__img-02 {
  width: 140px;
  position: absolute;
  right: 0;
  margin-top: -2.75rem;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .mv__img-02 {
    max-width: 140px;
  }
}
.mv__img-03 {
  width: 43.8vw;
  position: absolute;
  bottom: -4.125rem;
  left: 3.75rem;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .mv__img-03 {
    max-width: 164px;
  }
}
.mv__heading {
  margin-top: -0.25rem;
  max-width: 36.375rem;
  width: 72.7vw;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  top: -10px;
}
@media screen and (min-width: 769px) {
  .mv__heading img {
    max-width: 290px;
  }
}

.campaign {
  background-color: #F0E8DC;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 2.375rem;
}
.campaign__heading {
  width: 3.3125rem;
  height: 15rem;
  position: absolute;
  bottom: 10px;
  left: 0;
}
.campaign__heading img {
  max-width: 100%;
  height: 100%;
}
.campaign__list {
  color: #C69454;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.campaign__list-item {
  background-color: #fff;
  font-size: 0.875rem;
  border: 1px solid #C69454;
  display: flex;
  align-items: center;
  height: 78px;
  justify-content: center;
  text-align: center;
}
.campaign__list-item .bg {
  font-size: 1rem;
  display: inline-block;
}
.campaign__list-item .sm {
  font-size: 0.75rem;
  display: inline-block;
}
.campaign__ttl {
  font-weight: bold;
  text-align: center;
  border: 1px solid #000;
  display: table;
  margin-right: auto;
  margin-left: auto;
  padding: 0.625rem 0.5rem;
  line-height: 1;
  margin-top: 2rem;
  background-color: #fff;
}
.campaign__catch {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}
.campaign__catch .sm {
  font-size: 1rem;
}
.campaign__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  font-weight: bold;
  margin-top: 0.625rem;
  position: relative;
  z-index: 2;
}
.campaign__price .icon__arrow {
  width: 9.4vw;
  max-width: 35px;
  line-height: 1;
  position: relative;
  top: -5px;
}
.campaign__price-bf {
  font-weight: bold;
  font-size: 1.5rem;
  display: block;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.campaign__price-bf::first-line {
  font-size: 1.125rem;
}
.campaign__price-bf .cm__sm {
  display: block;
  line-height: 1;
  margin-top: 0.25rem;
}
.campaign__price-af {
  color: #ED4646;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  font-size: 3.75rem;
}
.campaign__price-af .sm {
  font-size: 1.875rem;
}
.campaign__txt {
  font-size: 0.875rem;
  margin-top: 1.25rem;
  line-height: 1.5;
  text-align: left;
}

.present {
  background-color: #f7f3ed;
}
.present__ttl {
  max-width: 270px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: -16px;
  position: relative;
  z-index: 2;
}
.present__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.3125rem;
  margin-top: 0.375rem;
}
.present__box .box {
  background-color: #fff;
  border: 1px solid #000;
  text-align: center;
  width: 40%;
  padding: 0.5rem;
}
.present__box .box__ttl {
  color: #fff;
  background-image: url(https://ezobolic1.wpcomstaging.com/wp-content/uploads/2023/02/present_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 0.875rem;
  font-weight: bold;
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding: 0.25rem 1rem;
  white-space: nowrap;
}
.present__box .box__txt {
  width: 60px;
  margin-top: 0.5rem;
  margin-right: auto;
  margin-left: auto;
}
.present__box .box.box02 .box__ttl {
  padding: 0.25rem 0.6875rem;
}
.present__box .box.box03 {
  width: 100%;
  padding-top: 0.625rem;
  margin-top: 2.375rem;
}
.present__box .box.box03 .box__ttl {
  padding: 0.25rem 1.25rem;
  font-size: 0.8125rem;
  margin-top: -1.875rem;
}
.present__box .box.box03 .box__txt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 0;
}
.present__box .box.box03 .box__txt img {
  width: 49px;
}
.present__box .box.box03 .box__txt img:last-of-type {
  width: 40px;
}
.present__box .box.box03 .box__txt p {
  font-weight: bold;
  text-align: left;
  font-size: 0.8125rem;
}
.present__box .box.box03 .box__txt p .sm {
  font-size: 0.625rem;
}
.present__box .caution {
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.present__or {
  width: 49px;
  height: 49px;
  border-radius: 100px;
  background-color: #C69454;
  color: #fff;
  text-align: center;
  line-height: 47px;
  font-weight: bold;
  margin: 0 8px;
}

.line {
  padding-bottom: 1.5rem;
}
.line__heading {
  background-color: #09C655;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
  gap: 11px;
}
.line__heading img {
  width: 27.5vw;
}
@media screen and (min-width: 769px) {
  .line__heading img {
    max-width: 102px;
  }
}
.line__heading-catch {
  font-size: 1.5rem;
  white-space: nowrap;
  line-height: 1.2;
  margin-top: -14px;
}
.line__heading-catch .bg {
  font-size: 2rem;
}
.line__cont {
  margin-top: 1rem;
  position: relative;
  display: flex;
}
.line__cont-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.line__cont-list li {
  border-radius: 4px;
  background-color: #dbefe3;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1;
  padding: 0.6875rem 1.5rem;
}
.line__cont-img {
  position: absolute;
  top: -4.3rem;
  max-width: 200px;
  position: absolute;
  right: -30px;
  width: 57%;
}
.line__bottom {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  justify-content: center;
  margin-top: -50px;
  padding-left: 74px;
}
.line__bottom-catch {
  font-weight: bold;
  position: relative;
  font-size: 0.875rem;
  white-space: nowrap;
  text-align: left;
  position: absolute;
  left: 0;
  bottom: 22px;
}
.line__bottom-catch::before {
  content: "";
  display: block;
  width: 171px;
  height: 79px;
  background-image: url(../images/fukidashi.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: -50px;
  left: 0;
  background-size: 100% auto;
  background-position: top left;
}
.line__bottom-catch .sm {
  font-size: 0.75rem;
}
.line__bottom-img {
  width: 143px;
  position: relative;
  right: 5px;
  bottom: -4px;
}
.line__bottom-name {
  font-weight: bold;
  font-size: 0.625rem;
  position: absolute;
  right: 1.6875rem;
  bottom: 0.5rem;
}

.flow {
  background-color: #eadecc;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.flow__heading {
  font-weight: bold;
  position: relative;
}
.flow__heading-en {
  color: #eadecc;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  font-size: 3rem;
  letter-spacing: 0.08em;
}
.flow__heading-jp {
  font-size: 1.5rem;
  position: absolute;
  left: 1.5rem;
  top: 2rem;
}
.flow__heading-jp .sm {
  font-size: 1.25rem;
}

.flow {
  background-color: #eadecc;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.flow__heading {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
}
.flow__heading-en {
  color: #eadecc;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  font-size: 3rem;
  letter-spacing: 0.08em;
}
.flow__heading-jp {
  font-size: 1.5rem;
  position: absolute;
  left: 1.5rem;
  top: 2rem;
}
.flow__heading-jp .sm {
  font-size: 1.25rem;
}
.flow__heading-img {
  width: 144px;
  height: 90px;
  position: absolute;
  right: -30px;
  top: 0;
}
.flow__list {
  overflow-x: scroll;
}
.flow__list::-webkit-scrollbar {
  display: none;
}
.flow__list ul {
  position: relative;
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-top: 3.4375rem;
}
.flow__list ul::after {
  content: "";
  display: block;
  width: 1000px;
  height: 2px;
  background-image: url(../images/icon_line.svg);
  position: absolute;
  top: 39%;
  left: 0;
  z-index: 1;
}
.flow__item {
  background-color: #fff;
  padding: 1.75rem 0.75rem 0.5rem;
  font-weight: bold;
  box-shadow: 3px 3px 0 rgba(154, 105, 36, 0.2);
  white-space: nowrap;
  position: relative;
  z-index: 2;
  height: 102px;
}
.flow__item-num {
  position: relative;
  top: -0.4rem;
  margin-top: -36px;
  text-align: center;
  display: block;
}
.flow__item-num img {
  width: auto;
}
.flow__item-map {
  background-color: #cca164;
  color: #fff;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  cursor: pointer;
}
.flow__item-map::after {
  content: "";
  display: block;
  background-image: url(../images/icon_arrow_r_wh_02.svg);
  width: 5px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
}
.flow__item-time {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 140px;
  font-size: 0.625rem;
  font-weight: bold;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0;
}
.flow__item-time img {
  width: 11px;
  margin: 0 4px;
}
.flow__item-01 {
  min-width: 167px;
  text-align: center;
}
.flow__item-01-txt {
  margin-top: 9px;
}
.flow__item-03 {
  position: relative;
  padding-bottom: 1.625rem;
}
.flow__item-04 {
  padding-bottom: 1.625rem;
}
.flow__item-05 .flow__item-num {
  margin-top: -2.875rem;
  top: -0.5625rem;
}

.problem {
  background-color: #F2EDE6;
  padding-top: 1.625rem;
  position: relative;
  margin-top: 1.875rem;
  z-index: 2;
}
.problem__heading {
  background-image: url(../images/problem_bg_img.png);
  background-position: center;
  background-size: 229px 100%;
  background-repeat: round;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 2.1875rem 0;
}
.problem__heading .cm__en {
  font-weight: bold;
  color: #b99c76;
  letter-spacing: 0.08em;
}
.problem__heading-ttl {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}
.problem__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px 16px;
  margin-top: 0.625rem;
  position: relative;
}
.problem__item {
  background-color: #fff;
  border: 1px solid #000;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: center;
  box-shadow: 5px 5px 0 rgb(178, 169, 158);
  position: relative;
}
.problem__item::after {
  content: "";
  display: block;
  width: 29px;
  height: 30px;
  background-repeat: no-repeat;
  background-image: url(../images/icon_fukidashi_kuchi.svg);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -30px;
  left: 35px;
}
.problem__item:nth-of-type(even)::after {
  left: initial;
  right: 35px;
  transform: rotateY(180deg);
}
.problem__item-upper {
  height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
}
.problem__item-num {
  position: absolute;
  top: 12px;
  left: 13px;
  z-index: 1;
}
.problem__item-txt {
  font-weight: bold;
  text-align: center;
  font-size: 0.75rem;
}
.problem__item-01 .problem__icon {
  width: 88px;
  position: relative;
  z-index: 2;
}
.problem__item-02 .problem__icon {
  width: 70px;
}
.problem__item-03 .problem__icon {
  width: 108px;
}
.problem__item-04 .problem__icon {
  width: 73px;
}
.problem__item-05 .problem__icon {
  width: 103px;
}
.problem__item-06 .problem__icon {
  width: 61px;
}

.solution {
  padding-top: 3.9375rem;
}
.solution__arrow {
  width: 198px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.solution__heading {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  margin-top: 1.125rem;
}
.solution__heading-ttl {
  text-align: center;
  width: 100%;
  position: relative;
  font-size: 2rem;
}
.solution__heading-ttl .sm {
  font-size: 1.75rem;
}
.solution__heading-ttl::before, .solution__heading-ttl::after {
  content: "";
  display: block;
  background-image: url(../images/icon_dot_sm.svg);
  background-repeat: no-repeat;
  width: 73px;
  height: 50px;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.solution__heading-ttl::after {
  left: initial;
  right: -10px;
}
.solution__heading-color {
  font-size: 1.5rem;
}
.solution__heading-color .bg {
  font-size: 3rem;
}
.solution__list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.solution__item {
  background-color: #F0E8DC;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  padding-top: 1.125rem;
  padding-bottom: 0.8125rem;
  padding-left: 0.625rem;
}
.solution__item-txt {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
}
.solution__item-img {
  position: absolute;
  right: 0;
  width: 80px;
}

.pair {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

.price {
  background-image: url(../images/price_bg.png);
  background-size: cover;
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}
.price .inner {
  position: relative;
}
.price__yen {
  position: absolute;
  top: -26px;
  right: -4px;
  width: 78px;
  z-index: 1;
}
.price__heading {
  position: relative;
}
.price__heading-ttl {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  width: 295px;
  margin-left: auto;
}
.price__heading-img {
  position: absolute;
  left: -13px;
  top: 0;
  width: 53px;
}
.price__table {
  display: flex;
  width: 295px;
  margin-left: auto;
  max-width: 100%;
  margin-top: 1rem;
}
.price__table dl {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0.375rem;
  width: 50%;
  text-align: center;
}
.price__table dl dt {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
}
.price__table dl dd {
  font-size: 1.5rem;
  font-weight: bold;
}
.price__table dl dd .sm {
  font-size: 1rem;
}
.price__box {
  padding: 1.25rem 1rem;
  background-color: rgba(255, 255, 255, 0.76);
  margin-top: 2.3125rem;
}
.price__box-desc {
  font-weight: bold;
  font-size: 0.9375rem;
}
.price__box-box {
  border: 1px solid #000;
  position: relative;
  padding: 0.5rem 0.625rem 0.625rem;
  margin-top: 1.25rem;
  background-color: #fff;
}
.price__box-box .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  display: table;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.price__box-box .ttl .sm {
  font-size: 0.875rem;
}
.price__box-box .txt {
  margin-top: 0.375rem;
  font-size: 0.75rem;
}
.price__box-busy {
  margin-top: 0.875rem;
}
.price__box-busy .ttl {
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  background-color: #647898;
  padding: 0.3125rem 0.9375rem;
  display: table;
  margin: auto;
}
.price__box-busy-cont {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-top: 0.625rem;
}
.price__box-busy-cont .txt-b {
  font-weight: bold;
}
.price__box-busy-cont .txt-b .sm {
  font-size: 0.875rem;
}
.price__box-busy-cont .txt {
  font-size: 0.75rem;
}
.price__box-busy-cont img {
  width: 40px;
}
.price__box-table {
  margin-top: 0.8125rem;
  font-size: 0.875rem;
}
.price__box-table .ttl {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  display: table;
  padding: 0.125rem 1rem;
}
.price__box-table .txt {
  margin-top: 0.5rem;
}
.price__box-table .table01 .txt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price__box-table .table01 .txt::before {
  content: "";
  display: block;
  min-width: 6px;
  max-width: 6px;
  height: 6px;
  border-radius: 100px;
  background-color: #000;
}
.price__box-table .table02,
.price__box-table .table03 {
  margin-top: 1rem;
}
.price__box-table .sm {
  font-size: 0.75rem;
}

.hikaku {
  background-color: #bfcadb;
  padding-bottom: 1rem;
}
.hikaku__heading {
  padding-top: 1.25rem;
  color: #fff;
}
.hikaku__heading-ttl {
  color: #fff;
  background-color: #000;
  text-align: center;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}
.hikaku__heading-ttl::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 12px solid #000;
}
.hikaku__table {
  overflow-x: scroll;
  margin-top: 1.8125rem;
}
.hikaku__table::-webkit-scrollbar {
  display: none;
}
.hikaku__table table {
  border-collapse: collapse;
}
.hikaku__table thead tr {
  background-color: #e5e5e5;
}
.hikaku__table thead th {
  background-color: #e5e5e5;
}
.hikaku__table thead th:first-of-type {
  background-color: #bfcadb;
}
.hikaku__table thead th:nth-of-type(2) {
  background-color: #000;
  color: #fff;
  border: 3px solid #000;
}
.hikaku__table thead th:nth-of-type(3) {
  border-right: 1px solid #000;
}
.hikaku__table tbody th {
  text-align: left;
  line-height: 1.7;
}
.hikaku__table tbody td:first-of-type {
  border: 3px solid #000;
  border-top: none;
  border-bottom: none;
  font-size: 1rem;
}
.hikaku__table tbody td:last-of-type {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
.hikaku__table tr:nth-of-type(odd) {
  background-color: #e3eeff;
}
.hikaku__table tr:nth-of-type(even) {
  background-color: #fff;
}
.hikaku__table tr:last-of-type td:first-of-type {
  border-bottom: 2px solid #000;
}
.hikaku__table td,
.hikaku__table th {
  min-width: 133px;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.6875rem 0.5rem;
}
.hikaku__table td {
  text-align: center;
}
.hikaku__table td .bg {
  font-size: 1.125rem;
}
.hikaku__table td .md {
  font-size: 0.875rem;
}
.hikaku__table td .md-sm {
  font-size: 0.8125rem;
}
.hikaku__table td .sm {
  font-size: 0.75rem;
}
.hikaku__table td .straight {
  white-space: nowrap;
}
.hikaku__table td .straight.cm__color {
  border-bottom: 2px solid #ed4646;
}
.hikaku__table td .short {
  line-height: 1.4;
  display: block;
  margin-top: 0.1875rem;
}
.hikaku__table td .icon__circle {
  width: 24px;
}
.hikaku__table td .icon__triangle {
  width: 28px;
}
.hikaku__table td .icon__cross {
  width: 16px;
}
.hikaku__table td:nth-of-type(2) {
  border-right: 1px solid #000;
}
.hikaku__table .sm {
  font-size: 0.625rem;
}
.hikaku__bottom {
  padding-top: 0.5rem;
}
.hikaku__bottom .cm__caution {
  display: block;
  text-align: right;
  line-height: 2;
  color: #3c3c3c;
}
.hikaku__list {
  margin-top: 0.5rem;
  background-color: #fff;
  padding: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
  color: #3b4043;
}
.hikaku__list li {
  position: relative;
  display: flex;
  gap: 4px;
}
.hikaku__list li::before {
  content: "";
  display: block;
  min-width: 14px;
  max-width: 14px;
  height: 14px;
  background-color: #3b4043;
  border-radius: 100px;
  position: relative;
  top: 5px;
}

.voice {
  background-color: #f7f3ed;
  padding-top: 1.875rem;
}
.voice__heading {
  text-align: center;
}
.voice__heading img {
  width: 165px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.voice__heading-ttl {
  background-color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: table;
  margin-right: auto;
  margin-left: auto;
  padding: 0.25rem 1.375rem;
  position: relative;
}
.voice__heading-ttl::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 12px solid #fff;
}
.voice__list {
  margin-top: 2.5rem;
  padding-bottom: 3.875rem;
}
.voice__item + .voice__item {
  margin-top: 2rem;
}
.voice__item-heading {
  display: flex;
  padding: 1rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
  color: #3b4043;
  font-weight: bold;
  font-size: 0.8125rem;
}
.voice__item-heading .ttl {
  line-height: 1.6;
}
.voice__item-heading img {
  width: 64px;
  position: absolute;
  right: 16px;
  bottom: 0;
}
.voice__item-heading::after {
  content: "";
  display: block;
  background-image: url(../images/icon_apostrophy.svg);
  width: 18px;
  height: 16px;
  background-repeat: no-repeat;
  position: absolute;
  right: 8px;
  top: -9px;
}
.voice__item-cont {
  padding: 0 2rem;
  margin-top: 1.1875rem;
}
.voice__item-cont .catch {
  font-size: 1.125rem;
}
.voice__item-cont .txt {
  margin-top: 0.8125rem;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: bold;
  color: #3b4043;
}
.voice__item.voice02 img, .voice__item.voice03 img {
  width: 108px;
  right: -2px;
}
.voice__box {
  background-color: #fff;
  padding-top: 2rem;
  padding-bottom: 3.625rem;
}
.voice__box-heading {
  background-image: url(../images/voice_box_bg.png);
  background-size: contain;
	background-position: center;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
	background-repeat: no-repeat;
  padding: 0.5rem 0;
}
.voice__box-heading .sm {
  font-size: 0.875rem;
}
.voice__box-txt {
  margin-top: 1rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.8;
}
.voice__box-img {
  width: 254px;
  max-width: 100%;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0.875rem;
}

.cta02 {
  background-color: #c6ffdd;
  padding-bottom: 2.625rem;
}
.cta02__heading {
  background-color: #09C655;
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
}
.cta02__heading-catch {
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.cta02__heading-ttl {
  background-color: #fff84a;
  color: #09C655;
  text-align: center;
  position: relative;
  padding: 0.4375rem 0 0.6875rem;
  margin-top: 1.125rem;
  display: flex;
  gap: 8px;
  padding-left: 1rem;
}
.cta02__heading-ttl img {
  width: 36px;
}
.cta02__heading-ttl h2 {
  font-weight: bold;
  font-size: 2rem;
}
.cta02__heading-ttl::after {
  content: "";
  display: block;
  background-image: url(../images/icon_doc.png);
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: -8px;
  background-size: contain;
}
.cta02__heading-desc {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
  margin-top: 0.5rem;
  padding: 0 1.25rem;
}
.cta02__cont {
  padding-top: 1rem;
}
.cta02__cont-txt {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.7;
}
.cta02__cont-txt .marker {
  display: inline-block;
  background: linear-gradient(transparent 60%, #fff84a 50%);
  font-weight: 900;
}
.cta02__fukidashi {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta02__fukidashi-img {
  display: flex;
  flex-direction: column;
}
.cta02__fukidashi-img img {
  width: 80px;
}
.cta02__fukidashi-img .name {
  font-size: 0.625rem;
  font-weight: bold;
  color: #2e4330;
}
.cta02__fukidashi-txt {
  font-weight: bold;
  background-image: url(../images/cta02_fukidashi_bg.png);
  background-size: 100% 100%;
  padding: 0.4375rem 1.875rem 0.5rem 1.625rem;
  background-repeat: no-repeat;
  color: #2e4330;
  line-height: 1.6;
  width: 100%;
  letter-spacing: 0.02em;
}
.cta02 .cm__lineBtn {
  margin-top: 1.25rem;
}

.youtube {
  padding-top: 1.25rem;
}
.youtube__heading {
  display: flex;
  gap: 1.25rem;
}
.youtube__heading img {
  width: 40px;
}
.youtube__heading-ttl {
  font-size: 0.875rem;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: flex-end;
  text-align: center;
}
.youtube__heading-ttl::before, .youtube__heading-ttl::after {
  content: "";
  display: block;
  background-image: url(../images/icon_red_line.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 30px;
  background-size: cover;
}
.youtube__heading-ttl::after {
  transform: rotateY(180deg);
}
.youtube iframe {
  margin-top: 0.75rem;
}

.ranking {
  margin-top: 2rem;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
  border-top: 6px solid #000000;
  z-index: 2;
}
.ranking::before, .ranking::after {
  content: "";
  display: block;
  width: 188px;
  height: 188px;
  background-repeat: no-repeat;
  background-image: url(../images/icon_triangle_beige.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ranking::after {
  top: initial;
  left: initial;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.ranking__heading {
  position: relative;
  max-width: 291px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-left: auto;
}
.ranking__heading-catch {
  font-weight: bold;
  background-image: url(../images/ranking_ttl_bg.png);
  background-size: 100% 100%;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  background-repeat: no-repeat;
  width: 242px;
  max-width: 100%;
  padding: 0.375rem 0;
}
.ranking__heading-ttl {
  position: relative;
}
.ranking__heading-ttl img {
  width: 119px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.ranking__list {
  margin-top: 2rem;
}
.ranking__item-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ranking__item-heading img {
  width: 72px;
  height: 72px;
}
.ranking__item-heading-ttl p {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  display: table;
  line-height: 1.5;
  padding: 0 0.25rem;
}
.ranking__item-heading-ttl p + p {
  margin-top: 5px;
}
.ranking__item-txt {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2;
  margin-top: 1rem;
}
.ranking__item-img {
  margin-top: 1.5rem;
}
.ranking__item-box {
  background-color: #F2EDE6;
  display: flex;
  border: 1px solid #000;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1rem 1rem;
  position: relative;
}
.ranking__item-box::before {
  content: "";
  display: block;
  background-image: url(../images/icon_fukidashi_border.svg);
  width: 24px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -1.0625rem;
  right: 2.8125rem;
}
.ranking__item-box .txt {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.75;
}
.ranking__item-box .name {
  font-weight: bold;
  font-size: 0.625rem;
  margin-top: 0.25rem;
}
.ranking__item + .ranking__item {
  margin-top: 2.8125rem;
}
.ranking__item.ranking01 .icon_ranking01 {
  width: 63px;
}
.ranking__item.ranking02 .icon_ranking02 {
  width: 32px;
}
.ranking__item.ranking03 .icon_ranking03 {
  width: 42px;
}
.ranking__item.ranking03 .sm {
  font-size: 0.875rem;
}
.ranking__item.ranking03 .md {
  font-size: 1rem;
}

.flow02 {
  padding-bottom: 2.5rem;
  border-top: 6px solid #000;
}
.flow02 .flow__heading-img {
  width: 192px;
    height: 120px;
    /* z-index: 2; */
    transform: rotate(90deg);
    top: -55px;
    right: -100px;
}
.flow02 .flow__list {
  overflow-x: initial;
  position: relative;
  z-index: 1;
}
.flow02 .flow__list ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
	margin-top: 30px;
}
.flow02 .flow__list ul::after {
  background-image: url(../images/icon_line_column.svg);
  width: 2px;
  height: 520px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.flow02 .flow__list.opened ul::after {
  height: 700px;
}
.flow02 .flow__item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 0.625rem;
  padding-bottom: 0.8125rem;
  gap: 12px;
  height: initial;
}
.flow02 .flow__item-num {
  margin-top: 0;
  position: unset;
}
.flow02 .flow__item-time {
  display: block;
  width: auto;
  text-align: center;
  right: 0;
  top: 50%;
  left: initial;
  transform: translateY(-50%);
  padding: 0.25rem 0.5rem;
}
.flow02 .flow__item-time img {
  margin: 0;
}
.flow02 .flow__item-map {
  position: relative;
  justify-content: center;
	padding: 3px 6px;
	z-index: 3;
}
.flow02 .flow__item-map p {
	line-height: 2;
}
.flow02 .flow__item-map::after {
  transform: rotate(90deg);
  position: absolute;
  right: 10px;
}
.flow02 .flow__item .map iframe {
  max-width: 100%;
}
.flow02 .flow__item-01, .flow02 .flow__item-02, .flow02 .flow__item-03, .flow02 .flow__item-05 {
  display: flex;
  flex-direction: column;
  align-items: initial;
}
.flow02 .flow__item-01 .flow__item-upper, .flow02 .flow__item-02 .flow__item-upper, .flow02 .flow__item-03 .flow__item-upper, .flow02 .flow__item-05 .flow__item-upper {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}
.flow02 .flow__item-01 .flow__item-map::after, .flow02 .flow__item-02 .flow__item-map::after, .flow02 .flow__item-05 .flow__item-map::after {
  transform: initial;
}
.flow02 .flow02__item-map .flow__item-map.active::after {
  transform: rotate(-90deg);
}

.cta03 {
  background-color: #c8e3ef;
  padding-bottom: 1.5rem;
}
.cta03__catch {
  color: #fff;
  font-weight: bold;
  background-color: #2e4330;
  padding: 0.75rem 1.5rem;
}
.cta03__heading {
  position: relative;
  background-color: #09C655;
  z-index: 1;
}
.cta03__heading-ttl {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
}
.cta03__heading-ttl .bg {
  font-size: 2rem;
}
.cta03__heading-img {
  position: absolute;
  top: -50px;
  right: -20px;
  width: 210px;
  height: auto;
}
.cta03__cont {
  margin-top: 1rem;
}
.cta03__chat {
  position: relative;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.625rem 0.75rem;
  line-height: 1.7;
  color: #2e4330;
  letter-spacing: 0.02em;
}
.cta03__chat:not(:first-of-type) {
  margin-top: 1rem;
}
.cta03__chat:not(.cta03__chat-03) {
  background-image: url(../images/fukidashi_gr_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-right: 1.625rem;
  display: table;
  padding: 0.625rem 1.5rem 0.625rem 0.625rem;
  min-width: 200px;
  max-width: 58%;
  width: 100%;
}
.cta03__chat-03 {
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
}
.cta03__chat-03 .person {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta03__chat-03 .person img {
  width: 80px;
}
.cta03__chat-03 .person .name {
  font-size: 10px;
  color: #2e4330;
  font-weight: bold;
}
.cta03__chat-03 .txt {
  width: 100%;
  position: relative;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.625rem 0.75rem 0.625rem 1.625rem;
  border-radius: 16px;
  background-image: url(../images/cta02_fukidashi_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -0.9375rem;
}
.cta03 .cm__lineBtn {
  margin-top: 0.875rem;
}

.staff {
  margin-top: 1.25rem;
}
.staff__heading {
  position: relative;
}
.staff__heading-bnr {
  width: calc(100vw - 16px);
}
@media screen and (min-width: 769px) {
  .staff__heading-bnr {
    width: calc(100% - 16px);
  }
}
.staff__heading-img {
  width: 53px;
  bottom: 0px;
  position: absolute;
  right: 8px;
}
.staff__heading-ttl {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  display: table;
  padding: 0.625rem 1rem;
  margin-top: -16px;
  position: relative;
}
.staff__heading-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
.staff__cont {
  margin-top: 1rem;
}
.staff__cont-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.staff__cont-heading .catch {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.875rem;
  gap: 8px;
  font-weight: bold;
}
.staff__cont-heading .catch::before, .staff__cont-heading .catch::after {
  content: "";
  display: block;
  background-image: url(../images/icon_black_line.svg);
  width: 24px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}
.staff__cont-heading .catch::after {
  transform: rotateY(180deg);
}
.staff__cont-heading .ttl {
  font-weight: bold;
  width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  background-color: #f7f7f7;
  padding: 0.6875rem 1.5rem;
  position: relative;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.staff__cont-heading .ttl::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background-image: url(../images/icon_arrow_dw_bl.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.staff__list {
  margin-top: 1.25rem;
}
.staff__item {
  display: flex;
  align-items: flex-start;
}
.staff__item + .staff__item {
  margin-top: 1rem;
}
.staff__item-img {
  position: relative;
  min-width: 124px;
}
.staff__item-img a {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.staff__item-img a img {
  width: 100%;
}
.staff__item-detail .catch {
  background-color: #000;
  font-weight: bold;
  color: #fff;
  text-align: center;
  width: 100%;
  display: block;
  font-size: 0.8125rem;
  padding: 0.25rem 0;
}
.staff__item-detail .name {
  margin-top: 0.25rem;
  font-weight: bold;
  padding-left: 1rem;
}
.staff__item-detail .name .en {
  font-size: 0.625rem;
  display: inline-block;
  margin-left: 7px;
}
.staff__item-detail .desc {
  padding-left: 1rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.hyperknife {
  border-radius: 16px;
  border: 4px solid #ff6984;
  margin-top: 2.5rem;
  width: calc(100vw - 20px);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .hyperknife {
    width: calc(100% - 20px);
  }
}
.hyperknife__heading {
  color: #fff;
  background-color: #ff6984;
  border-radius: 0 16px 16px 0;
  padding: 1.25rem 1.5rem;
  display: table;
  position: relative;
  margin-top: -2rem;
}
.hyperknife__heading h2 {
  font-size: 1.25rem;
}
.hyperknife__heading .md {
  font-size: 1.125rem;
}
.hyperknife__heading .sm {
  font-size: 1rem;
}
.hyperknife__about {
  margin-top: 0.625rem;
}
.hyperknife__about-ttl {
  font-weight: bold;
  color: #ff6984;
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hyperknife__about-ttl::before {
  content: "";
  display: block;
  background-image: url(../images/icon_hatena.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
.hyperknife__about-desc {
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.75;
  margin-top: 0.5rem;
}
.hyperknife__btns {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 13px;
}
.hyperknife__btns-btn {
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  position: relative;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  padding: 0.625rem 0.9375rem;
  gap: 10px;
}
.hyperknife__btns-btn::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
}
.hyperknife__btns-ig {
  background-color: #f8506e;
}
.hyperknife__btns-ig::before {
  background-image: url(../images/icon_ig_wh.svg);
}
.hyperknife__btns-hb {
  background-color: #ad2c5a;
}
.hyperknife__btns-hb::before {
  background-image: url(../images/icon_home_wh.svg);
}
.hyperknife__cont {
  padding: 0 0.875rem 1.25rem;
}
.hyperknife__cont .staff__list {
  margin-bottom: 1.25rem;
}

.faq {
  margin-top: 2.5rem;
}
.faq__heading {
  background-image: url(../images/icon_dot_bg.png);
  background-size: cover;
  padding: 2.5rem 0;
  background-repeat: no-repeat;
  background-position: center;
}
.faq__heading-ttl {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 1.5rem;
  display: table;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding: 0.25rem 2.25rem;
  position: relative;
}
.faq__heading-ttl::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 12px solid #000;
}
.faq__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.faq__item {
  background-color: #eadecc;
  color: #000;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  gap: 10px;
  width: 100%;
}
.faq__item img {
  width: 50px;
}
.faq__item.active {
  background-color: #cca164;
  color: #fff;
}
.faq__list {
  margin-top: 3rem;
  display: none;
}
.faq__list.show {
  display: block;
}
.faq__list-item + .faq__list-item {
  margin-top: 2.5rem;
}
.faq__list-item .faq__item-q {
  border: 1px solid #000;
  width: calc(100vw - 32px);
  margin-left: auto;
  font-weight: bold;
  line-height: 1.5;
  padding: 0.6875rem 3.375rem 0.6875rem 1rem;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .faq__list-item .faq__item-q {
    width: calc(100% - 32px);
  }
}
.faq__list-item .faq__item-q::before, .faq__list-item .faq__item-q::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
.faq__list-item .faq__item-q::before {
  background-image: url(../images/icon_faq_q.svg);
  width: 23px;
  height: 32px;
  position: absolute;
  top: -14px;
  left: -17px;
}
.faq__list-item .faq__item-q:after {
  content: "";
  display: block;
  background-image: url(../images/icon_arrow_bl.svg);
  width: 16px;
  height: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transform: rotate(180deg);
}
.faq__list-item .faq__item-q.opened::after {
  transform: rotate(0deg);
}
.faq__list-item .faq__item-a {
  background-color: #F2EDE6;
  position: relative;
  width: calc(100vw - 16px);
  padding: 3rem 1rem 1rem 2rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .faq__list-item .faq__item-a {
    width: calc(100% - 16px);
  }
}
.faq__list-item .faq__item-a-ig {
  overflow-x: scroll;
}
.faq__list-item .faq__item-a-ig::-webkit-scrollbar {
  display: none;
}
.faq__list-item .faq__item-a-ig .ig__list {
  display: flex;
  gap: 20px;
  margin-top: 1rem;
}
.faq__list-item .faq__item-a-ig .ig__list li {
  position: relative;
  transition: all ease .3s;
}
.faq__list-item .faq__item-a-ig .ig__list li iframe {
  max-width: 232px !important;
  width: 232px !important;
  min-width: 232px !important;
  height: 344px !important;
}
@media screen and (min-width: 769px) {
.faq__list-item .faq__item-a-ig .ig__list li:hover {
  cursor: pointer;
  filter: brightness(0.3);
}
}
@media screen and (max-width: 768px) {
	.faq__list-item .faq__item-a-ig .ig__list li {
		  transition: all ease .8s;
	}
.faq__list-item .faq__item-a-ig .ig__list li:active {
animation: bright-flash .8s ; 
}
	@keyframes bright-flash {
  0% {
    filter: brightness(0.3);
  }

  100% {
    filter: brightness(1);
  }
}
}

.faq__list-item .faq__item-a-ig .ig__list a {
  display: block;
  width: 100%;
  height: 100%;
}

.faq__list-item .faq__item-a::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/icon_faq_a.svg);
  width: 26px;
  height: 28px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.outro {
  margin-top: 2.25rem;
}

.ctaBtn {
  background-color: #fcefef;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 1.25rem;
}
.ctaBtn__catch {
  font-size: 0.875rem;
  font-weight: bold;
  color: #ed4646;
}
.ctaBtn__btn {
  position: relative;
  max-width: 298px;
  border-radius: 46px;
  width: 100%;
  border: 2px solid #ed4646;
  background-color: #ed4646;
  background: linear-gradient(180deg, #f58484 0%, #ef5050 35%, #ed4646 100%);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  padding: 1rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.ctaBtn__btn::after {
  content: "";
  display: block;
  background-image: url(../images/icon_arrow_r_wh.svg);
  width: 8px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta04 .line__cont {
  margin-top: 2rem;
}
.cta04 .line__cont-img {
  width: 210px;
  top: -5.8125rem;
  right: -2rem;
}
.cta04 .line__fukidashi {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 10px;
}
.cta04 .line__fukidashi .person {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta04 .line__fukidashi .person img {
  width: 80px;
}
.cta04 .line__fukidashi .person .name {
  font-weight: bold;
  color: #2e4330;
  font-size: 0.625rem;
  margin-top: 2px;
}
.cta04 .line__fukidashi .txt {
  font-weight: bold;
  color: #2e4330;
  letter-spacing: 0.02em;
  background-image: url(../images/fukidashi_bg_gray.png);
  width: 100%;
  background-size: 100% 100%;
  padding: 0.4375rem 1.5rem;
  background-repeat: no-repeat;
}
.cta04 .cm__lineBtn {
  margin-top: 1.25rem;
}

.concept {
  margin-top: 1.5rem;
}
.concept__heading-ttl {
  background-color: #fff;
  border: 1px solid #000;
  margin-top: -1rem;
  position: relative;
  text-align: center;
  width: 216px;
  margin-right: auto;
  margin-left: auto;
  height: 32px;
}
.concept__heading-ttl img {
  width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.concept__catch {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  gap: 26px;
}
.concept__catch img {
  width: 80px;
}
.concept__catch-catch {
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.7;
  margin-top: 1.625rem;
}
.concept__catch-catch .sm {
  font-size: 1rem;
}
.concept__catch::after {
  content: "";
  display: block;
  width: calc(100vw - 16px);
  background-color: #000;
  height: 86px;
  position: absolute;
  left: -16px;
  bottom: 0;
  z-index: -1;
}
.concept__message {
  margin-top: 1.5rem;
}
.concept__message-img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.concept__message-txt {
  font-size: 0.75rem;
  line-height: 1.75;
  margin-top: 1.5rem;
}
.concept__message .border {
  background-image: url(../images/icon_border_dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-top: 1.6875rem;
  margin-bottom: 2rem;
  width: 56px;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
}

.service {
  margin-top: 3.125rem;
}
.service__heading {
  background-image: url(../images/service_ttl_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 2.5rem;
}
.service__heading-ttl {
  margin-right: auto;
  margin-left: auto;
  display: table;
  position: relative;
  color: #fff;
  font-weight: bold;
  background-color: #000;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.625rem 1.875rem;
}
.service__heading-ttl::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 12px solid #000;
}
.service__desc {
  margin-top: 1.875rem;
  font-weight: bold;
  line-height: 2;
  font-size: 0.875rem;
}
.service__list {
  background-color: #f0e8dc;
  border-top: 2px solid #000;
  padding-bottom: 2.5rem;
  margin-top: 1.25rem;
}
.service__item {
  padding: 1.5rem 1.5rem 2rem;
  border-bottom: 2px solid #000;
}
.service__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.service__item-type {
  font-weight: bold;
}
.service__item-ttl {
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}
.service__item-ttl .sm {
  font-size: 1rem;
}
.service__item-img {
  margin-top: 1.25rem;
}
.service__item-txt {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.8;
}
.service__item-sns {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.service__item-sns a {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  color: #000;
  font-weight: bold;
  border-radius: 100px;
  font-size: 0.625rem;
  padding: 0.25rem 1rem 0.25rem 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  height: 30px;
}
.service__item-sns a img {
  width: 20px;
}
.service__item-btn {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #000;
  border-radius: 46px;
  margin-top: 1rem;
  max-width: 210px;
  margin-right: auto;
  margin-left: auto;
}
.service__item-btn a {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.02em;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 2rem;
}
.service__item-btn a::after {
  content: "";
  display: block;
  background-image: url(../images/icon_arrow_r_wh.svg);
  width: 8px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 24px;
}
.service__item-btn.-hb {
  max-width: 270px;
  width: 100%;
  background-color: #ae2f5b;
  width: 270px;
}
.service__item-btn.-hb img {
  width: 84px;
}
.service__item-btn.-hb a {
  justify-content: center;
}

.fixedBtns {
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: fixed;
  bottom: 0;
  max-width: 100%;
  width: 100%;
  z-index: 9998;
}
@media screen and (min-width: 769px) {
  .fixedBtns {
    max-width: 375px;
  }
}
.fixedBtns .inner {
  width: 100%;
}
.fixedBtns__desc {
  font-weight: bold;
  font-size: 0.75rem;
  color: #ed4646;
  text-align: center;
}
.fixedBtns__wrap {
  display: flex;
  gap: 8px;
  margin-top: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
.fixedBtns .ctaBtn__btn {
  overflow: hidden;
}
.fixedBtns .ctaBtn__btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: kiran 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes kiran {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.map__modal {
  display: none;
}
.map__modal.opened {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 9999;
  display: block;
}
.map__modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.map__modal-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map__modal iframe {
  width: 361px;
  height: 438px;
}
.map__modal-close {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0.5rem;
  text-align: center;
  display: block;
  width: calc(100% - 32px);
  margin-right: auto;
  margin-left: auto;
  font-weight: bold;
  margin-top: 1.5rem;
  padding: 0.625rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .map__modal-close {
    width: calc(100vw - 32px);
  }
}
.map__modal-close::after {
  content: "";
  display: block;
  background-image: url(../images/icon_cross.svg);
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  position: relative;
  background-color: #fff;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  .footer {
    max-width: 375px;
    margin-right: auto;
    margin-left: auto;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}
.footer__logo {
  width: 154px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.footer__list {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__item {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  line-height: 48px;
  background-color: #f4f4f4;
}
.footer__item a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__item img {
  width: 28px;
}
.footer__ttl {
  margin-top: 1.5rem;
  font-weight: bold;
}
.footer__address {
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.8;
}
.footer__tel {
  font-size: 0.8125rem;
  font-weight: bold;
  margin-top: 0.375rem;
}
.footer__bnr {
  margin-top: 0.375rem;
}
.footer .cm__caution {
  display: block;
  font-weight: bold;
  margin-top: 0.5rem;
}
.footer dl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.625rem;
}
.footer dl dt {
  border: 1px solid #000;
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #f2f2f2;
  padding: 0.125rem 0.5rem;
}
.footer dl dd {
  font-size: 0.75rem;
  font-weight: bold;
}
.footer__caution {
  font-size: 0.75rem;
  font-weight: bold;
  color: #656565;
  margin-top: 0.75rem;
}
.footer__caution a {
  color: inherit;
}
.footer .copyright {
  text-align: center;
  font-weight: bold;
  color: #aaaaaa;
  font-size: 0.75rem;
  margin-top: 3.5rem;
}

/* メタリフページ */
.webpage {
margin-top: 40px;
}
.webpage__logo {
  text-align: center;
}
.webpage__logo img {
  max-width: 227px;
}
.webpage__container {
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
}
.webpage__main {
  width: 100%;
  height: 335px;
  background-color: #CDD6DD;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.webpage__main p {
  text-align: center;
  font-weight: bold;
  margin-top: 16px;
}
.webpage__bottom p {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.6;
}

.webpage footer p {
  color: #AAAAAA;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-top: 32px;
}

/**
 * Lines
 */
@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }



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