@charset "utf-8";
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
body {
  animation: fadeInSoft 0.3s ease-out 0s 1 normal;
}
@keyframes fadeInSoft {
  0% {
    opacity: 0.6;
    filter: blur(6px); /* ぼんやり */
  }
  100% {
    opacity: 1;
    filter: blur(0); /* くっきり */
  }
}
/*=======================================================================
言語切り替え
=======================================================================*/
.lang_pc.lang-en .toggle-indicator {
  transform: translateX(100%);
}
.toggle-btn {
  font-size: 14px;
  width: 50px;
  text-align: center;
  font-weight: 700;
  transition: none;
}
/*=======================================================================
見出し
=======================================================================*/
article h3 span.sub {
  margin-top: 16px;
}
@media screen and (min-width: 961px) {
  article h3 span.sub {
    margin-top: 0;
  }
}
/*=======================================================================
ラフ楕円囲み文字
=======================================================================*/
.daen_container {
  aspect-ratio: 500 / 200;
}
.okotae {
  width: 160px;
  margin: auto;
}
.okotae img {
  width: 100%;
  height: auto !important;
}
@media screen and (min-width: 961px) {
  .okotae {
    width: 200px;
    margin: 0;
  }
}
/*=======================================================================
フォーム
=======================================================================*/
#form dl dt.need:after {
  content: "*" !important;
  color: #ce313d !important;
  background: none !important;
  padding: 0 !important;
}
