@charset "UTF-8";
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #0C1112;
}
.footerStandard a:hover {
  text-decoration: none;
  color: #0C1112;
}
.footerStandard a:hover img {
  opacity: 1;
}

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

html {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  scroll-behavior: auto !important;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", serif;
  font-feature-settings: "palt";
  width: 100%;
  color: #0C1112;
  overflow: hidden;
}

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

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

#solution{
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  z-index: 101;
  height: 17.3333333333vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  background-color: #fff;
  padding-right: 4.2666666667vw;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 641px) {
  header {
    height: 86px;
    padding: 0 min(20px, 1.6vw) 0 0;
  }
}
header p {
  z-index: 1;
  width: auto;
  height: 100%;
}
header p img {
  height: 100%;
  width: auto;
}
header button {
  display: grid;
  place-content: center;
  width: 8.5333333333vw;
  height: 8.5333333333vw;
  background: none;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 641px) {
  header button {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  header button {
    position: absolute;
    right: 4%;
    background: #000;
    border-radius: 50%;
  }
}
header button .wrap {
  width: 4.8vw;
  height: 3.8vw;
  position: relative;
  display: block;
}
header button .wrap span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.8vw;
  border-radius: 0.5333333333vw;
  transition: all 0.5s;
}
header button .wrap span:nth-of-type(1) {
  top: 0;
  background-color: #fff;
}
header button .wrap span:nth-of-type(2) {
  top: 1.4vw;
  background-color: #fff;
}
header button .wrap span:nth-of-type(3) {
  bottom: 0;
  background-color: #fff;
}
header button.active .wrap span:nth-of-type(1) {
  left: 50%;
  opacity: 0;
  animation: active-bar01 0.75s forwards;
}
header button.active .wrap span:nth-of-type(2) {
  width: 6.0vw;
  left: -0.5vw;
  transform: translateY(0vw) rotate(-45deg);
  border-radius: 0;
  top: 1.6vw;
}
header button.active .wrap span:nth-of-type(3) {
  width: 6.0vw;
  left: -0.5vw;
  transform: translateY(-1.4vw) rotate(45deg);
  border-radius: 0;
}
@keyframes active-bar01 {
  100% {
    height: 0;
  }
}
header #gNavi {
  display: none;
  height: auto;
  max-height: 100svh;
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 15vw;
  overflow-y: scroll;
}
@media screen and (min-width: 641px) {
  header #gNavi {
    display: flex;
    top: auto;
    position: absolute;
    overflow: hidden;
    background-color: transparent;
    max-height: 100%;
    width: max-content;
    height: 100%;
    align-items: center;
    right: 280px;
  }
}
header #gNavi ul {
  display: block;
}
@media screen and (min-width: 641px) {
  header #gNavi ul {
    display: flex;
    gap: 0;
    height: 100%;
  }
}
header #gNavi ul li {
  padding: 15px 0 0;
}
header #gNavi ul li > a {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  width: 100%;
  padding: 3.7333333333vw 8vw;
  font-size: 4.2666666667vw;
  line-height: 1.2;
  font-weight: 400;
  color: #0C1112;
  border-bottom: 0.2666666667vw solid #c4c4c4;
  display: grid;
  grid-template-columns: 1fr 3.4666666667vw;
  position: relative;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 641px) {
  header #gNavi ul li > a {
    padding: 0 min(10px, 0.8vw);
    height: 54px;
    border: none;
    display: flex;
    width: max-content;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    cursor: pointer;
    z-index: 1;
    padding: 0 25px 0;
    border-left: solid 1px;
  }
  header #gNavi ul li:first-of-type > a {
    border-left: none;
  }
  header #gNavi ul li > a:before, header #gNavi ul li > span:before {
    content: "";
    width: 100%;
    height: min(7px, 0.56vw);
    background-color: #008AB4;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.3, 0.9);
    transform-origin: right;
    transform: scaleX(0);
  }
  header #gNavi ul li > a.active:before, header #gNavi ul li > span.active:before {
    transform: none;
  }
  header #gNavi ul li > a {
    color: #3a2828;
    background-image: linear-gradient(to right, #f63f84 50%, #3a2828 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.5s ease-out;
  }
  header #gNavi ul li > a:hover {
    background-position: 0 0;
  }
}
@media screen and (max-width: 640px) {
  header #gNavi ul li {
    padding: 0;
  }
  header #gNavi ul li > a {
    text-align: left;
  }
}
header #gNavi ul li a:after {
  content: "";
  width: 3.4666666667vw;
  aspect-ratio: 13/4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='4' fill='none'%3E%3Cpath fill='%230C1112' fill-rule='evenodd' d='M8.62.175A.5.5 0 0 1 9.325.12l3.5 3A.5.5 0 0 1 12.5 4H.5a.5.5 0 0 1 0-1h10.648L8.675.88A.5.5 0 0 1 8.62.175Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
@media screen and (min-width: 641px) {
  header #gNavi ul li a:after {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  header #gNavi ul li > span {
    display: grid;
    grid-template-columns: 1fr min(8px, 0.64vw);
    gap: min(6px, 0.48vw);
  }
}
header #gNavi ul li > span:after {
  content: "";
  width: 3.4666666667vw;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='14' fill='none'%3E%3Cpath fill='%230C1112' fill-rule='evenodd' d='M13 7a.5.5 0 0 1-.5.5H.5a.5.5 0 0 1 0-1h12a.5.5 0 0 1 .5.5Z' clip-rule='evenodd'/%3E%3Cpath fill='%230C1112' fill-rule='evenodd' d='M6.75 13.5a.5.5 0 0 1-.5-.5V1a.5.5 0 0 1 1 0v12a.5.5 0 0 1-.5.5Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
@media screen and (min-width: 641px) {
  header #gNavi ul li > span:after {
    width: 100%;
    aspect-ratio: 4/8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' fill='none'%3E%3Cpath fill='%23161616' d='M.675.107A.403.403 0 0 0 .389.004a.417.417 0 0 0-.28.119A.379.379 0 0 0 0 .395a.366.366 0 0 0 .125.266l3.598 3.235a.41.41 0 0 0 .55 0L7.87.661A.382.382 0 0 0 8 .394.364.364 0 0 0 7.89.12.4.4 0 0 0 7.61 0a.418.418 0 0 0-.287.107L3.998 3.096.675.107Z'/%3E%3C/svg%3E");
  }
}
header #gNavi ul li > span.active:after {
  aspect-ratio: 13/2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='2' fill='none'%3E%3Cpath fill='%230C1112' fill-rule='evenodd' d='M13 1a.5.5 0 0 1-.5.5H.5a.5.5 0 0 1 0-1h12a.5.5 0 0 1 .5.5Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
@media screen and (min-width: 641px) {
  header #gNavi ul li > span.active:after {
    aspect-ratio: 4/8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' fill='none'%3E%3Cpath fill='%23161616' d='M.675.107A.403.403 0 0 0 .389.004a.417.417 0 0 0-.28.119A.379.379 0 0 0 0 .395a.366.366 0 0 0 .125.266l3.598 3.235a.41.41 0 0 0 .55 0L7.87.661A.382.382 0 0 0 8 .394.364.364 0 0 0 7.89.12.4.4 0 0 0 7.61 0a.418.418 0 0 0-.287.107L3.998 3.096.675.107Z'/%3E%3C/svg%3E");
    transform: rotate(180deg);
  }
}
header #gNavi ul li ul {
  display: none;
  padding-left: 13.3333333333vw;
}
@media screen and (min-width: 641px) {
  header #gNavi ul li ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 min(30px, 2.4vw);
    background-color: #fff;
    top: min(76px, 6.08vw);
    position: fixed;
    width: calc(100% - min(60px, 4.8vw));
    left: min(30px, 2.4vw);
    border-radius: 0 0 min(40px, 3.2vw) min(40px, 3.2vw);
    box-shadow: 0 0 min(40px, 3.2vw) 0 rgba(0, 45, 93, 0.25);
    padding: min(50px, 4vw) min(55px, 4.4vw) min(55px, 4.4vw);
    height: auto;
  }
}
header #gNavi ul li ul li a {
  display: grid;
  grid-template-columns: 26.6666666667vw 1fr 3.4666666667vw;
  position: relative;
  align-items: center;
  padding-left: 0;
}
@media screen and (min-width: 641px) {
  header #gNavi ul li ul li a {
    grid-template-columns: min(120px, 9.6vw) 1fr min(30px, 2.4vw);
    gap: min(15px, 1.2vw) min(30px, 2.4vw);
    padding: min(20px, 1.6vw);
    width: 100%;
    font-size: min(1.44vw, 18px);
    line-height: 1;
    align-self: flex-end;
    background: url(../img/line.svg) repeat-x top/auto min(2px, 0.16vw);
    transition: background-color 0.2s linear, color 0.2s linear;
  }
  header #gNavi ul li ul li a:before {
    content: "";
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #f7f7f7;
    display: block;
    grid-row: 1/3;
    position: relative;
    bottom: auto;
    transform: none;
  }
  header #gNavi ul li ul li a:after {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: min(1px, 0.08vw) solid #0C1112;
    background-size: min(16px, 1.28vw) auto;
    align-self: flex-end;
    grid-row: 1/3;
    background-color: #fff;
  }
  header #gNavi ul li ul li a img {
    width: auto;
    height: min(32px, 2.56vw);
    display: block;
    margin-top: min(15px, 1.2vw);
  }
}
header #gNavi ul li ul li a .pc {
  align-self: flex-end;
}
header #gNavi ul li ul li a span:not(.sp, .pc) {
  background-color: #fff;
  font-size: 2.6666666667vw;
  line-height: 1;
  letter-spacing: 0.2px;
  padding: 0 1.0666666667vw;
  border: 0.2666666667vw solid #0C1112;
  border-radius: 1.0666666667vw;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.2666666667vw;
  font-family: YakuHanJP, "Noto Sans JP", serif;
}
@media screen and (min-width: 641px) {
  header #gNavi ul li ul li a span:not(.sp, .pc) {
    font-size: min(1.12vw, 14px);
    line-height: 1;
    padding: 0 min(4px, 0.32vw);
    height: min(21px, 1.68vw);
    border-width: min(1px, 0.08vw);
    letter-spacing: 0.42px;
    border-radius: min(4px, 0.32vw);
    grid-row: 2/3;
    align-self: flex-start;
  }
}
header #gNavi ul li ul li:nth-of-type(1) a:before {
  background-image: url(../img/product-helcare2.png);
  background-size: min(90px, 7.2vw) auto;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(min(2px, 0.16vw)) translateX(min(2px, 0.16vw));
}
header #gNavi ul li ul li:nth-of-type(2) a:before {
  background-image: url(../img/product-toushiblock.png);
  background-size: min(60px, 4.8vw) auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 641px) {
  header #gNavi ul li ul li:nth-of-type(3) a {
    background: url(../img/line.svg) repeat-x top/auto min(2px, 0.16vw), url(../img/line.svg) repeat-x bottom/auto min(2px, 0.16vw);
  }
}
header #gNavi ul li ul li:nth-of-type(3) a:before {
  background-image: url(../img/product-nyousanguard.png);
  background-size: min(62px, 4.96vw) auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 641px) {
  header #gNavi ul li ul li:nth-of-type(4) a {
    background: url(../img/line.svg) repeat-x top/auto min(2px, 0.16vw), url(../img/line.svg) repeat-x bottom/auto min(2px, 0.16vw);
  }
}
header #gNavi ul li ul li:nth-of-type(4) a:before {
  background-image: url(../img/product-kekkansaracare.png);
  background-size: min(60px, 4.8vw) auto;
  background-repeat: no-repeat;
  background-position: center;
}

header h1 {
  position: absolute;
  left: 3%;
  width: 241px;
}
a:hover img {
  opacity: 1;
}

.header_btn img {
  position: absolute;
  top: -10px;
  width: 217px;
  height: auto;
  right: 50px;
  filter: drop-shadow(0px 6px 2px rgba(102, 56, 30, 0.75));
  transition: 0.3s ease-out;
}
@media screen and (min-width: 641px) {
  .header_btn img:hover {
    filter: drop-shadow(0px 0 0 rgba(102, 56, 30, 0));
    opacity: 1;
    top: -4px;
  }
}
@media screen and (max-width: 640px) {
  .header_btn img {
    top: 0;
    width: 25%;
    right: 16%;
    filter: drop-shadow(0px 3px 0px rgba(102, 56, 30, 0.75));
  }
}
.btn01 {
  width: 24%;
  position: absolute;
  margin: -24% auto 0;
  left: 0;
  right: 0;
}
.btn02 {
  position: relative;
  width: 30%;
  margin: 3% auto 0;
  left: 0;
  right: 0;
}
.btn03 {
  width: 24%;
  position: absolute;
  margin: -19.2% auto 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 641px) {
  .btn01 img {
    filter: drop-shadow(0px 6px 0px rgba(0, 125, 178, 1));
    transition: 0.3s ease-out;
  }
  .btn01 img:hover {
    filter: drop-shadow(0px 0 0 rgba(0, 125, 178, 0));
    opacity: 1;
    margin: 6px 0 0;
  }
  .btn02 img {
    filter: drop-shadow(0px 10px 10px rgba(127, 178, 144, 0.6));
    transition: 0.3s ease-out;
  }
  .btn02 img:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0px 18px 10px rgba(127, 178, 144, 0.6));
    opacity: 1;
  }
  .btn03 img {
    filter: drop-shadow(0px 6px 0px rgba(54, 159, 38, 1));
    transition: 0.3s ease-out;
  }
  .btn03 img:hover {
    filter: drop-shadow(0px 0 0 rgba(54, 159, 38, 0));
    opacity: 1;
    margin: 6px 0 0;
  }
}
@media screen and (max-width: 640px) {
  .btn01 {
    width: 75%;
    margin: -61% auto 0;
  }
  .btn02 {
    width: 75%;
    margin: 6% auto 5%;
  }
  .btn02 img {
    filter: drop-shadow(0px 10px 10px rgba(127, 178, 144, 0.6));
  }
  .btn03 {
    width: 72%;
    margin: -48% auto 0;
  }
}
.column_wrap {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  margin: -33% 0 0;
}
@media screen and (min-width: 641px) {
  .column_wrap {
    background-image: url(../img/pc/pc_bg.jpg);
    background-size: contain;
  }
}
.column_list {
  width: 72%;
  margin: 0 auto;
  position: relative;
  background-image: url(../img/pc/pc_column_bg.jpg);
  background-size: contain;
  padding: 0 3% 0;
  box-sizing: border-box;
}
.column_item {
  padding: 5% 0 5%;
}
.column_item a {
  display: flex;
  color: #3a2828;
}
.column_item a:hover p,
.column_item a:hover img {
  opacity: 1 !important;
}
.column_img {
  width: 46%;
  padding-right: 6%;
  box-sizing: content-box;
}
.column_img img {
  filter: drop-shadow(0 0 7px rgba(61, 61, 61, 0.5));
}
.column_text {
  position: relative;
  width: 48%;
  display: flex;
  flex-flow: column;
  align-self: center;
}
.column_new {
  background: #ff0000;
  display: inline-block;
  color: #fff;
  font-size: 1.5vw;
  padding: 0.4% 4% 0.1%;
  position: absolute;
}
.column_title {
  font-size: 1.9vw;
  font-weight: bold;
  padding: 9% 0 0;
  line-height: 1.7;
}
.column_title {
  color: #3a2828;
  background-image: linear-gradient(to right, #f63f84 50%, #3a2828 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s ease-out;
  display: block;
}
.column_time {
  font-size: 1.4vw;
  text-align: right;
  margin-top: 2%;
}
@media screen and (min-width: 641px) {
  .column_item a:hover .column_title {
    background-position: 0 0;
  }
}
@media screen and (max-width: 640px) {
  .column_wrap {
    margin: 0;
    padding: 0 0 10%;
  }
  .column_item {
    padding: 10% 0 10%;
  }
  .column_item a {
    display: block;
  }
  .column_list {
    width: 73%;
    background-image: url(../img/sp/sp_column_bg.jpg);
    padding: 0 13.5% 0;
    box-sizing: content-box;
  }
  .column_img {
    width: 100%;
    padding-right: 0%;
  }
  .column_new {
    font-size: 4.6vw;
    margin: 6.0% 0 0;
    padding: 0% 5% 0.1%;
  }
  .column_title {
    font-size: 4.9vw;
    padding: 20% 0 0;
    line-height: 1.6;
  }
  .column_time {
    position: absolute;
    bottom: auto;
    font-size: 2.6vw;
    top: 16%;
    right: 0;
    margin-top: 0;
  }
  .column_text {
    width: 100%;
  }
}

.fv_bg {
  margin: 86px 0 0;
}
.fv_img01 {
  width: 26.5%;
  top: 85px;
  left: 0;
  position: absolute;
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}
.fv_img02 {
  width: 26.5%;
  top: 85px;
  right: 0;
  position: absolute;
  animation: fadeInUp 0.5s ease-out 0.2s forwards;
  opacity: 0;
}
.fv_img03 {
  width: 25.5%;
  margin: 32% 0 0;
  left: 0;
  position: absolute;
  animation: fadeInUp2 0.5s ease-out 0.4s forwards;
  opacity: 0;
}
.fv_img04 {
  width: 23%;
  margin: 29.5% 0 0;
  right: 0;
  position: absolute;
  animation: fadeInUp3 0.5s ease-out 0.6s forwards;
  opacity: 0;
}
.fv_title {
  width: 65%;
  margin: 14% auto 0;
  left: 0;
  right: 0;
  position: absolute;
  animation: fadeInUp4 0.5s ease-out 0.8s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    margin: 1% 0 0;
  }
  to {
    opacity: 1;
    margin: 0;
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    margin: 33% 0 0;
  }
  to {
    opacity: 1;
    margin: 32% 0 0;
  }
}
@keyframes fadeInUp3 {
  from {
    opacity: 0;
    margin: 30.5% 0 0;
  }
  to {
    opacity: 1;
    margin: 29.5% 0 0;
  }
}
@keyframes fadeInUp4 {
  from {
    opacity: 0;
    margin: 15% auto 0;
  }
  to {
    opacity: 1;
    margin: 14% auto 0;
  }
}


@media screen and (min-width: 641px) and (max-width: 1000px) {
  header {
    height: 70px;
  }
  header h1 {
    left: 2%;
    width: 20%;
  }
  header #gNavi {
    transform: scale(0.7);
    right: 140px;
  }
  header #gNavi ul li > a {
    height: 48px;
  }
  .header_btn img {
    width: 170px;
    right: 2%;
  }
  .fv_bg {
    margin: 70px 0 0;
  }
  .fv_img01 {
    top: 69px;
  }
  .fv_img02 {
    top: 69px;
  }
}
@media screen and (max-width: 640px) {
  header {
    height: 15vw;
  }
  header h1 {
    left: 4.5%;
    width: 41%;
  }
  .fv_bg {
    margin: 0 0 0;
  }
  .fv_img01 {
    width: 43.5%;
    top: 15vw;
  }
  .fv_img02 {
    width: 43.5%;
    top: 15vw;
  }
  .fv_img03 {
    width: 39.5%;
    margin: 116% 0 0;
  }
  .fv_img04 {
    width: 32%;
    margin: 116% 0 0;
  }
  .fv_title {
    width: 93%;
    margin: 14% auto 0;
  }

  @keyframes fadeInUp2 {
    from {
      opacity: 0;
      margin: 117% 0 0;
    }
    to {
      opacity: 1;
      margin: 116% 0 0;
    }
  }
  @keyframes fadeInUp3 {
    from {
      opacity: 0;
      margin: 101% 0 0;
    }
    to {
      opacity: 1;
      margin: 100% 0 0;
    }
  }
  @keyframes fadeInUp4 {
    from {
      opacity: 0;
      margin: 60% auto 0;
    }
    to {
      opacity: 1;
      margin: 59% auto 0;
    }
  }
}

.column_anim {
  position: relative;
}
.column_label {
  position: absolute;
  width: 77%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 12.5%;
}
@media screen and (max-width: 640px) {
  .column_label {
    width: 87%;
    top: 6%;
  }
}
.anim_pon img {
  opacity: 0;
}
.js_anim.active.anim_pon img {
  -webkit-animation: pon 1s ease;
  -webkit-animation-fill-mode: forwards;
  -moz-animation: pon 1s ease;
  -moz-animation-fill-mode: forwards;
  animation: pon 1s ease;
  animation-fill-mode: forwards;
}
@-webkit-keyframes pon {
  0%  {
    opacity: 0;
    transform: translate(0%, 30%);
  }
  30% {
    opacity: 1;
    transform: translate(0%, -30%);
  }
  60% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@-moz-keyframes pon {
  0%  {
    opacity: 0;
    transform: translate(0%, 30%);
  }
  30% {
    opacity: 1;
    transform: translate(0%, -30%);
  }
  60% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
@keyframes pon {
  0%  {
    opacity: 0;
    transform: translate(0%, 30%);
  }
  30% {
    opacity: 1;
    transform: translate(0%, -30%);
  }
  60% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}



.dial {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: -50% 0 0;
}
@media screen and (min-width: 641px) {
  .dial {
    margin: -19.5% 0 0;
  }
}
.dial dl dt {
  color: #638090;
  font-size: 4vw;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 1.05px;
  display: flex;
  gap: 1.6vw;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 641px) {
  .dial dl dt {
    font-size: 1.6vw;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1.4px;
    gap: 0.64vw;
  }
}
.dial dl dt:before {
  content: "";
  width: 3.7333333333vw;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='none'%3E%3Cpath fill='%23638090' d='M3.316 6.702a11.782 11.782 0 0 0 5.125 5.126l1.711-1.711c.21-.21.521-.28.794-.187a8.872 8.872 0 0 0 2.776.444.78.78 0 0 1 .778.777v2.715a.78.78 0 0 1-.778.778C6.42 14.644.5 8.724.5 1.42a.78.78 0 0 1 .778-.777H4a.78.78 0 0 1 .778.777c0 .973.155 1.906.443 2.777a.78.78 0 0 1-.194.793L3.316 6.702Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
@media screen and (min-width: 641px) {
  .dial dl dt:before {
    width: 1.6vw;
  }
}
.dial dl dd {
  margin-top: 3.7333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .dial dl dd {
    margin-top: 1.2vw;
  }
}
.dial dl dd address {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: 8vw;
  line-height: 1;
  letter-spacing: 2.1px;
}
@media screen and (min-width: 641px) {
  .dial dl dd address {
    font-size: 3.6vw;
    line-height: 1;
    letter-spacing: 3.15px;
  }
}
.dial dl dd p {
  margin-top: 3.7333333333vw;
  font-size: 4vw;
  line-height: 1;
  letter-spacing: 1.05px;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
@media screen and (min-width: 641px) {
  .dial dl dd p {
    margin-top: 2vw;
    font-size: 1.6vw;
    line-height: 1;
    letter-spacing: 1.4px;
  }
}
.dial dl dd p span {
  margin-top: 1.8666666667vw;
  font-size: 3.2vw;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.84px;
  display: block;
}
@media screen and (min-width: 641px) {
  .dial dl dd p span {
    margin-top: 1.04vw;
    font-size: 1.28vw;
    line-height: 1;
    letter-spacing: 1.12px;
  }
}

address a:hover {
    color: #212121;
}