/*============================
header
=============================*/
/* HamburgerNav */
@keyframes hamFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hamIcon {
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamIcon__Lines {
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hamIcon__Lines span, .hamIcon__Lines::before, .hamIcon__Lines::after {
  width: 100%;
  height: 2px;
  background-color: #bba170;
  display: block;
  transition: 0.3s ease-in-out;
}
.hamIcon__Lines::before, .hamIcon__Lines::after {
  content: "";
}
.hamContent {
  width: 100%;
  height: 0px;
  background-color: #bba170;
  position: fixed;
  top: 58px;
  left: 0;
  z-index: -9999;
  display: block;
  overflow-y: hidden;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px){
  .hamContent {
    top: 50px;
    height: 0px;
    background-color: #000;
  }
}
#hamIcon.active .hamIcon__Lines {
  position: relative;
}
#hamIcon.active .hamIcon__Lines span {
  display: none;
}
#hamIcon.active .hamIcon__Lines::before {
  transform: rotateZ(45deg) translateY(0px) translateX(0px);
  position: absolute;
  top: calc(50% - 1px);
}
#hamIcon.active .hamIcon__Lines::after {
  transform: rotateZ(-45deg) translateY(0px) translateX(0px);
  position: absolute;
  bottom: calc(50% - 1px);
}
#hamContent.active {
  width: 100%;
  height: 60px;
  overflow-y: inherit;
}
#hamContent.active .headerNavItem a,
#hamContent.active .headerNavItem span,
#hamContent.active .headerNavItem label {
  height: 60px;
}
@media screen and (max-width: 768px){
  #hamContent.active .headerNavItem a,
  #hamContent.active .headerNavItem span,
  #hamContent.active .headerNavItem label {
    height: 59px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px){
  #hamContent.active {
    height: 100vh;
    padding-bottom: 128px;
    overflow-y: scroll;
    overflow-inline: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

header {
  width: 100%;
  height: 58px;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999999;
}
@media screen and (max-width: 768px){
  header {
    height: 50px;
  }
}
.headerWrapper {
  max-width: 1130px;
  height: 58px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1280px) {
  .headerWrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .headerWrapper {
    height: 50px;
  }
}
.headerLogo {
  margin-right: auto;
  align-self: flex-end;
  display: block;
}
.headerLogo img {
  width: 44.05px;
}
@media screen and (max-width: 768px){
  .headerLogo img {
    width: 37.1px;
  }
}
.headerEntry {
  align-self: center;
  margin-right: 30px;
  background: #0077E1;
  padding: 6px 26px;
  width: 225px;
  text-align: center;
  line-height: calc(18 / 10);
  font-size: 10px;
  font-weight: 700;
  color: #FFF !important;
}
.headerIconWrapper {
  margin-right: 20px;
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  align-self: center;
}
.headerIconWrapper > *:not(:first-child) {
  margin-left: 20px;
}
.headerIconItem {
  width: auto;
  height: auto;
  display: block;
  transition: 0.3s ease-in-out;
}
.headerIconItem:hover {
  opacity: 0.5;
}
.headerIconItem.price img {
  width: 16.145px;
  height: 20px;
}
.headerIconItem.map img {
  width: 13.28px;
  height: 20px;
}
.headerIconItem img {
  width: 11px;
}
.headerHamWrapper {
  align-self: center;
}
.hamIcon__Lines span, .hamIcon__Lines::before, .hamIcon__Lines::after {
  background-color: #0077E1;
}
.hamContent {
  background-color: #F0F0F0;
  transition-property: height;
}
@media screen and (max-width: 768px){
  .hamContent {
    background-color: #F0F0F0E5;
    transition-property: right;
  }
}
@media screen and (max-width: 768px){
  #hamContent {
    left: auto;
    right: -100vw;
    padding: 35px;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 768px){
  #hamContent.active {
    left: auto;
    right: 0;
    padding: 35px;
    width: auto;
    height: auto;
  }
}
.headerNavWrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (min-width: 980px) and (max-width: 1280px) {
  .headerNavWrapper {
    max-width: none;
    padding: 0;
  }
}
@media screen and (max-width: 768px){
  .headerNavWrapper {
    max-width: none;
    padding: 0;
    margin: 0;
  }
}
.headerNavWrapper > ul {
  max-width: 1150px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 980px) and (max-width: 1280px) {
  .headerNavWrapper > ul {
    max-width: 1120px;
    padding: 0 12.5px;
    margin: 0 auto;
    display: flex;
  }
}
@media screen and (max-width: 768px){
  .headerNavWrapper > ul {
    flex-direction: column;
    gap: 15px;
  }
}
.headerNavItem {
  display: flex;
  font-size: 13px;
  font-display: auto;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 768px){
  .headerNavItem {
    border-bottom: 0;
    font-size: 14px;
    font-weight: 500;
  }
}
.headerNavItem a,
.headerNavItem span,
.headerNavItem label {
  width: fit-content;
  height: 0px;
  padding: 0 35px;
  color: inherit;
  background-color: transparent;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px){
  .headerNavItem a,
  .headerNavItem span,
  .headerNavItem label {
    width: 100%;
    height: 55px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    background-color: transparent;
  }
}
.headerNavItem a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px){
  .headerNavItem a:hover {
    background-color: transparent;
    transform: translateX(10px);
  }
}
@media screen and (max-width: 768px){
  .headerNavItem span:hover {
    transform: translateX(10px);
  }
}
@media screen and (max-width: 768px){
  #hamContent .headerNavItem a {
    padding: 0;
    height: auto;
  }
}
@media screen and (max-width: 768px){
  #hamContent.active .headerNavItem a {
    padding: 0;
    height: auto;
  }
}


/*============================
main_visual
=============================*/
#main_visual {
  margin-top: 58px;
}
@media screen and (max-width: 768px){
  #main_visual {
    margin-top: 50px;
  }
}
#main_visual .pic {
  max-width: 1100px;
}
@media screen and (max-width: 768px){
  #main_visual .pg_title .pg_eng_title {
    font-size: calc(100vw / var(--viewport) * 38);
  }
}
@media screen and (max-width: 768px){
  #main_visual .pg_title .pg_title_en {
    font-size: calc(100vw / var(--viewport) * 46);
  }
}
@media screen and (max-width: 768px){
  #main_visual .copy {
    font-size: calc(100vw / var(--viewport) * 24);
  }
}


/*============================
common
=============================*/
:root {
  --viewport: 750;
}
html {
  scroll-behavior: smooth;
}
ul:after {
  display: none;
}
.is-ib-pc {
  display: inline-block;
}
@media screen and (max-width: 768px){
  .is-ib-pc {
    display: none;
  }
}
.is-pc {
  display: block;
}
@media screen and (max-width: 768px){
  .is-pc {
    display: none;
  }
}
.is-gr-pc {
  display: grid;
}
@media screen and (max-width: 768px){
  .is-gr-pc {
    display: none;
  }
}
.is-fl-pc {
  display: flex;
}
@media screen and (max-width: 768px){
  .is-fl-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}
@media screen and (max-width: 768px){
  .is-sp {
    display: block;
  }
}
.is-gr-sp {
  display: none;
}
@media screen and (max-width: 768px){
  .is-gr-sp {
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  #wrapper {
    padding-bottom: calc(100vw / var(--viewport) * 106);
  }
}
.inner {
  width: 1130px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 768px){
  .inner {
    width: 100%;
    padding-left: calc(100vw / var(--viewport) * 35);
    padding-right: calc(100vw / var(--viewport) * 35);
  }
}
.content {
  margin-top: -140px;
  padding-top: 140px;
}
@media screen and (max-width: 768px){
  .content {
    margin-top: -70px;
    padding-top: 70px;
  }
}
.content:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px){
  .content:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 100);
  }
}
.block_title {
  background: #000;
  padding: 10px;
  text-align: center;
  line-height: calc(50 / 28);
  font-size: 28px;
  font-weight: 700;
  color: #FFF;
}
@media screen and (max-width: 768px){
  .block_title {
    padding: calc(100vw / var(--viewport) * 28);
    line-height: calc(50 / 40);
    font-size: calc(100vw / var(--viewport) * 40);
  }
}
.block_title strong {
  color: #BBA170;
}
.block_container {
  background: #F3F3F3;
}
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .cta {
    gap: calc(100vw / var(--viewport) * 30);
    margin-top: calc(100vw / var(--viewport) * 100);
  }
}
.cta_button {
  background: #0077E1;
  padding: 12px;
  width: 492px;
  text-align: center;
  line-height: calc(42 / 19);
  font-size: 19px;
  font-weight: 700;
  color: #FFF !important;
}
@media screen and (max-width: 768px) {
  .cta_button {
    padding: calc(100vw / var(--viewport) * 19);
    width: calc(100vw / var(--viewport) * 560);
    line-height: calc(42 / 28);
    font-size: calc(100vw / var(--viewport) * 28);
  }
}
.cta_text {
  text-align: center;
  line-height: calc(42 / 19);
  font-size: 19px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cta_text {
    line-height: calc(40 / 24);
    font-size: calc(100vw / var(--viewport) * 24);
  }
}
.cta_link {
  color: #0077E1 !important;
  text-decoration: underline;
}
.fixed_cta_button {
  display: none;
}
@media screen and (max-width: 768px) {
  .fixed_cta_button {
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    display: block;
    background: #0077E1;
    padding: calc(100vw / var(--viewport) * 26);
    width: 100vw;
    text-align: center;
    line-height: calc(54 / 36);
    font-size: calc(100vw / var(--viewport) * 36);
    font-weight: 700;
    color: #FFF !important;
  }
}
@media screen and (max-width: 768px) {
  .contact_box {
    display: none;
  }
}


/*============================
introduction
=============================*/
.introduction {
  margin-top: calc(-140px + 50px);
}
@media screen and (max-width: 768px) {
  .introduction {
    margin-top: calc(-70px + ( 100vw / var(--viewport) * 100));
  }
}


/*============================
case
=============================*/
.case_container {
  padding: 50px 163px;
}
@media screen and (max-width: 768px) {
  .case_container {
    padding: calc(100vw / var(--viewport) * 46) calc(100vw / var(--viewport) * 27) calc(100vw / var(--viewport) * 50);
  }
}
.case_before_after {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .case_before_after {
    gap: calc(100vw / var(--viewport) * 50);
  }
}
.case_before_after::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/operation/aga/monitor/assets/img/case_arrow.svg) center/cover no-repeat;
  width: 44px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .case_before_after::after {
    width: calc(100vw / var(--viewport) * 44);
    height: calc(100vw / var(--viewport) * 55);
  }
}
.case_before_after:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .case_before_after:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 50);
  }
}
.case_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 87px;
}
@media screen and (max-width: 768px) {
  .case_list {
    gap: calc(100vw / var(--viewport) * 50);
  }
}
.case_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .case_item {
    gap: calc(100vw / var(--viewport) * 10);
  }
}
.case_label {
  text-align: center;
  line-height: calc(36 / 26);
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .case_label {
    line-height: calc(56 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.case_label_after {
  color: #BBA170;
}
.case_text {
  background: #FFF;
  padding: 20px;
  line-height: calc(36 / 18);
  font-size: 18px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .case_text {
    padding: calc(100vw / var(--viewport) * 18) calc(100vw / var(--viewport) * 16);
    line-height: calc(32 / 20);
    font-size: calc(100vw / var(--viewport) * 20);
    letter-spacing: 0;
  }
}


/*============================
youtube
=============================*/
.youtube_title {
  text-align: center;
  line-height: calc(50 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px){
  .youtube_title {
    line-height: calc(60 / 40);
    font-size: calc(100vw / var(--viewport) * 40);
  }
}
.youtube_title:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px){
  .youtube_title:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 40);
  }
}
.youtube_text {
  line-height: calc(36 / 18);
  font-size: 18px;
}
@media screen and (max-width: 768px){
  .youtube_text {
    line-height: calc(54 / 28);
    font-size: calc(100vw / var(--viewport) * 28);
  }
}
.youtube_text:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px){
  .youtube_text:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 50);
  }
}


/*============================
about
=============================*/
.about_title {
  text-align: center;
  line-height: calc(50 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px){
  .about_title {
    line-height: calc(60 / 40);
    font-size: calc(100vw / var(--viewport) * 40);
  }
}
.about_title:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px){
  .about_title:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 40);
  }
}
.about_text {
  line-height: calc(36 / 18);
  font-size: 18px;
}
@media screen and (max-width: 768px){
  .about_text {
    line-height: calc(54 / 28);
    font-size: calc(100vw / var(--viewport) * 28);
  }
}
.about_text:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px){
  .about_text:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 100);
  }
}

.publication_container {
  padding: 50px 75px;
}
@media screen and (max-width: 768px) {
  .publication_container {
    padding: calc(100vw / var(--viewport) * 39) calc(100vw / var(--viewport) * 36) calc(100vw / var(--viewport) * 32);
  }
}
.publication_explanation {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .publication_explanation {
    grid-template-columns: auto;
    justify-content: center;
    gap: calc(100vw / var(--viewport) * 50);
  }
}
.publication_explanation:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .publication_explanation:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 45);
  }
}
.publication_title {
  text-align: center;
  line-height: calc(50 / 24);
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .publication_title {
    line-height: calc(50 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.publication_title:not(:last-child) {
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .publication_title:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 30);
  }
}
.publication_image {
  width: 595px;
}
@media screen and (max-width: 768px) {
  .publication_image {
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw / var(--viewport) * 595);
  }
}
.publication_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-content: end;
}
@media screen and (max-width: 768px) {
  .publication_list {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: calc(100vw / var(--viewport) * 17);
  }
}
.publication_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}
@media screen and (max-width: 768px) {
  .publication_item {
    gap: calc(100vw / var(--viewport) * 18);
  }
}
.publication_pictogram {
  width: 157px;
}
@media screen and (max-width: 768px) {
  .publication_pictogram {
    width: calc(100vw / var(--viewport) * 157);
  }
}
.publication_label {
  background: #FFF;
  border: 1px solid #000;
  padding: 4px;
  width: 265px;
  text-align: center;
  line-height: calc(40 / 24);
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .publication_label {
    padding: calc(100vw / var(--viewport) * 12) calc(100vw / var(--viewport) * 4);
    width: calc(100vw / var(--viewport) * 295);
    line-height: calc(40 / 30);
    font-size: calc(100vw / var(--viewport) * 30);
  }
}
.publication_text {
  line-height: calc(36 / 18);
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .publication_text {
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw / var(--viewport) * 595);
    line-height: calc(54 / 28);
    font-size: calc(100vw / var(--viewport) * 28);
  }
}


/*============================
price
=============================*/
.price_block {
  padding-left: 75px;
  padding-right: 75px;
}
@media screen and (max-width: 768px) {
  .price_block {
    padding-left: 0;
    padding-right: 0;
  }
}
.price_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFF;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 50px 130px 80px;
}
@media screen and (max-width: 768px) {
  .price_container {
    padding: calc(100vw / var(--viewport) * 50) calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 80);
  }
}
.price_eyebrow {
  text-align: center;
  line-height: calc(50 / 28);
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .price_eyebrow {
    line-height: calc(50 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
    font-weight: 700;
  }
}
.price_eyebrow em {
  font-style: normal;
  font-weight: 700;
}
.price_eyebrow strong {
  color: #BBA170;
}
.price_eyebrow:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .price_eyebrow:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 40);
  }
}
.price_title {
  width: 608px;
}
@media screen and (max-width: 768px) {
  .price_title {
    width: calc(100vw / var(--viewport) * 608);
  }
}
.price_title:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .price_title:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 30);
  }
}
.price_image {
  width: 472px;
}
@media screen and (max-width: 768px) {
  .price_image {
    width: calc(100vw / var(--viewport) * 620);
  }
}
.price_image:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .price_image:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 35);
  }
}
.price_info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price_count_price {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .price_count_price {
    grid-template-columns: auto auto;
    gap: 0 calc(100vw / var(--viewport) * 16);
  }
}
.price_count_price:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .price_count_price:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 30);
  }
}
.price_heading {
  line-height: calc(36 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .price_heading {
    grid-area: 1 / 1 / 2 / 3;
    font-size: calc(100vw / var(--viewport) * 30);
  }
}
.price_count {
  background-color: #000;
  border-radius: 6px;
  padding: 0 2px;
  width: 62px;
  text-align: center;
  line-height: calc(36 / 26);
  font-size: 26px;
  font-weight: 700;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .price_count {
    grid-area: 2 / 1 / 3 / 2;
    border-radius: calc(100vw / var(--viewport) * 6);
    padding: calc(100vw / var(--viewport) * 5);
    width: calc(100vw / var(--viewport) * 78);
    line-height: calc(36 / 30);
    font-size: calc(100vw / var(--viewport) * 30);
  }
}
.price_price {
  position: relative;
  top: 5px;
  display: flex;
  align-items: baseline;
  line-height: 1;
  font-size: 26px;
  color: #BBA170;
}
@media screen and (max-width: 768px) {
  .price_price {
    top: calc(100vw / var(--viewport) * 8);
    grid-area: 2 / 2 / 3 / 3;
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.price_price strong {
  line-height: 1;
  font-family: "din-2014", sans-serif;
  font-size: 79px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .price_price strong {
    font-size: calc(100vw / var(--viewport) * 110);
  }
}
.price_price .yen {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .price_price .yen {
    font-size: calc(100vw / var(--viewport) * 40);
  }
}
@media screen and (max-width: 768px) {
  .price_price .tax {
    margin-left: calc(100vw / var(--viewport) * -15);
    margin-right: calc(100vw / var(--viewport) * -15);
  }
}
.price_discount {
  background: #C1272D;
  padding: 1px;
  width: 494px;
  text-align: center;
  line-height: calc(71 / 38);
  font-size: 38px;
  font-weight: 700;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .price_discount {
    padding: 0;
    width: calc(100vw / var(--viewport) * 560);
    line-height: calc(82 / 40);
    font-size: calc(100vw / var(--viewport) * 40);
  }
}
.price_discount:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .price_discount:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 30);
  }
}
.price_discount strong {
  position: relative;
  top: 3px;
  font-family: "din-2014", sans-serif;
  line-height: calc(71 / 60);
  font-size: 60px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .price_discount strong {
    top: calc(100vw / var(--viewport) * 4);
    line-height: calc(82 / 69);
    font-size: calc(100vw / var(--viewport) * 69);
  }
}
.price_discount .yen {
  line-height: calc(71 / 40);
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .price_discount .yen {
    line-height: calc(82 / 40);
    font-size: calc(100vw / var(--viewport) * 40);
  }
}
.price_note {
  text-align: center;
  line-height: calc(50 / 28);
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .price_note {
    line-height: calc(50 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
@media screen and (max-width: 768px){
  .price_info + .cta {
    margin-top: calc(100vw / var(--viewport) * 80);
  }
}


/*============================
conditions
=============================*/
.conditions_container {
  padding: 60px 75px 110px;
}
@media screen and (max-width: 768px) {
  .conditions_container {
    padding: calc(100vw / var(--viewport) * 50) calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 100);
  }
}
.conditions_content:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .conditions_content:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 50);
  }
}
.conditions_title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 30px;
  line-height: calc(50 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .conditions_title {
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: calc(50 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.conditions_title .point {
  position: relative;
  top: 3px;
  line-height: calc(50 / 40);
  font-family: "din-2014", sans-serif;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .conditions_title .point {
    line-height: calc(72 / 50);
    font-size: calc(100vw / var(--viewport) * 50);
  }
}
.conditions_title .number {
  line-height: 1;
  font-size: 60px;
  color: #BBA170;
}
@media screen and (max-width: 768px) {
  .conditions_title .number {
    line-height: calc(72 / 69);
    font-size: calc(100vw / var(--viewport) * 69);
  }
}
.conditions_title .to {
  line-height: calc(50 / 30);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 30px;
  color: #BBA170;
}
@media screen and (max-width: 768px) {
  .conditions_title .to {
    line-height: calc(72 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.conditions_title:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .conditions_title:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 30);
  }
}

.point_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 16px;
  width: 918px;
}
@media screen and (max-width: 768px) {
  .point_list {
    grid-template-columns: 1fr;
    gap: calc(100vw / var(--viewport) * 30);
    width: 100%;
  }
}
.point_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37px;
  background: #FFF;
  border-radius: 6px;
  padding: 30px 27px 25px;
}
@media screen and (max-width: 768px) {
  .point_item {
    gap: calc(100vw / var(--viewport) * 30);
    border-radius: calc(100vw / var(--viewport) * 6);
    padding: calc(100vw / var(--viewport) * 35) calc(100vw / var(--viewport) * 30) calc(100vw / var(--viewport) * 50);
  }
}
.point_item:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 53%;
  right: -33px;
  transform: translateY(-50%);
  background: url(/operation/aga/monitor/assets/img/conditions_point_plus.webp) center/cover no-repeat;
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 768px) {
  .point_item:not(:last-child)::after {
    inset: auto auto calc(100vw / var(--viewport) * -49) 50%;
    transform: translateX(-50%);
    width: calc(100vw / var(--viewport) * 59);
    height: calc(100vw / var(--viewport) * 59);
  }
}
.point_label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 28px;
  width: 100%;
  line-height: calc(50 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .point_label {
    gap: 0;
    padding-bottom: calc(100vw / var(--viewport) * 32);
    line-height: calc(50 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.point_label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #000 0,
    #000 2px,
    transparent 2px,
    transparent 7px
  );
}
@media screen and (max-width: 768px) {
  .point_label::after {
    height: calc(100vw / var(--viewport) * 2);
    background-image: repeating-linear-gradient(
      to right,
      #000 0,
      #000 calc(100vw / var(--viewport) * 2),
      transparent calc(100vw / var(--viewport) * 2),
      transparent calc(100vw / var(--viewport) * 7)
    );
  }
}
.point_label .point {
  line-height: calc(50 / 40);
  font-family: "din-2014", sans-serif;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .point_label .point {
    line-height: 1;
    font-size: calc(100vw / var(--viewport) * 50);
  }
}
.point_label .number {
  line-height: 1;
  font-size: 60px;
  color: #BBA170;
}
@media screen and (max-width: 768px) {
  .point_label .number {
    font-size: calc(100vw / var(--viewport) * 69);
  }
}
.point_detail {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .point_detail {
    grid-template-columns: auto auto;
    align-items: center;
    gap: calc(100vw / var(--viewport) * 30);
  }
}
.point_image_text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .point_image_text {
    flex-direction: row;
    align-items: center;
    gap: calc(100vw / var(--viewport) * 56);
  }
}
.point_image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 187px;
}
@media screen and (max-width: 768px) {
  .point_image {
    grid-area: 1 / 1 / 2 / 2;
    height: auto;
  }
}
.point_item:nth-child(1) .point_image img {
  width: 164px;
}
@media screen and (max-width: 768px) {
  .point_item:nth-child(1) .point_image img {
    width: calc(100vw / var(--viewport) * 164);
  }
}
.point_item:nth-child(2) .point_image img {
  width: 170px;
}
@media screen and (max-width: 768px) {
  .point_item:nth-child(2) .point_image img {
    width: calc(100vw / var(--viewport) * 170);
  }
}
.point_item:nth-child(3) .point_image img {
  width: 152px;
}
@media screen and (max-width: 768px) {
  .point_item:nth-child(3) .point_image img {
    width: calc(100vw / var(--viewport) * 152);
  }
}
.point_text {
  text-align: center;
  line-height: calc(50 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .point_text {
    grid-area: 1 / 2 / 2 / 3;
    line-height: calc(50 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.point_text em {
  font-style: normal;
  color: #BBA170;
}
.point_text strong {
  line-height: 1;
  font-family: "din-2014", sans-serif;
  font-size: 60px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .point_text strong {
    font-size: calc(100vw / var(--viewport) * 69);
  }
}
.point_text strong.aga {
  letter-spacing: 0.03em;
}
.point_note {
  margin-left: -10px;
  margin-right: -10px;
  line-height: calc(28 / 16);
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .point_note {
    grid-area: 2 / 1 / 3 / 3;
    margin-left: 0;
    margin-right: 0;
    line-height: calc(32 / 20);
    font-size: calc(100vw / var(--viewport) * 20);
  }
}

.reference_image {
  margin-left: auto;
  margin-right: auto;
  width: 918px;
}
@media screen and (max-width: 768px) {
  .reference_image {
    width: calc(100vw / var(--viewport) * 618);
  }
}
.reference_image:not(:last-child) {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .reference_image:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 35);
  }
}
.reference_text {
  text-align: center;
  line-height: calc(50 / 24);
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .reference_text {
    line-height: calc(54 / 28);
    font-size: calc(100vw / var(--viewport) * 28);
  }
}
.reference_text strong {
  color: #BBA170;
}

.attention {
  margin-top: -140px;
  padding-top: 140px;
}
@media screen and (max-width: 768px){
  .attention {
    margin-top: -70px;
    padding-top: 70px;
  }
}
.attention:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px){
  .attention:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 50);
  }
}
@media screen and (max-width: 768px){
  .attention + .cta {
    margin-top: calc(100vw / var(--viewport) * 50);
  }
}
.attention_container {
  display: flex;
  flex-direction: column;
  gap: 46px;
  border: 1px solid #000;
  padding: 52px 100px 70px;
}
@media screen and (max-width: 768px){
  .attention_container {
    gap: calc(100vw / var(--viewport) * 45);
    padding: calc(100vw / var(--viewport) * 45) calc(100vw / var(--viewport) * 30);
  }
}
.attention_content:not(:last-child) {
  border-bottom: 1px solid #707070;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px){
  .attention_content:not(:last-child) {
    padding-bottom: calc(100vw / var(--viewport) * 50);
  }
}
.attention_title {
  text-align: center;
  line-height: calc(50 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px){
  .attention_title {
    line-height: calc(54 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.attention_title:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px){
  .attention_title:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 45);
  }
}
.attention_list:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px){
  .attention_list:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 40);
  }
}
.attention_item {
  position: relative;
  padding-left: 1em;
  line-height: calc(36 / 18);
  font-size: 18px;
}
@media screen and (max-width: 768px){
  .attention_item {
    line-height: calc(36 / 20);
    font-size: calc(100vw / var(--viewport) * 20);
  }
}
.attention_item::before {
  content: "・";
  position: absolute;
  left: 0;
}
.attention_clinic_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 9px;
}
@media screen and (max-width: 768px){
  .attention_clinic_list {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(100vw / var(--viewport) * 12);
  }
}
.attention_clinic_link {
  display: block;
  background: #036EA8;
  padding: 4px;
  text-align: center;
  line-height: calc(30 / 19);
  font-size: 19px;
  font-weight: 500;
  color: #FFF !important;
  letter-spacing: 0.035em;
}
@media screen and (max-width: 768px){
  .attention_clinic_link {
    padding: calc(100vw / var(--viewport) * 6);
    line-height: calc(36 / 26);
    font-size: calc(100vw / var(--viewport) * 26);
  }
}


/*============================
flow
=============================*/
.flow {
  overflow-x: hidden;
}
.flow_eyebrow {
  text-align: center;
  line-height: calc(50 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px){
  .flow_eyebrow {
    line-height: calc(50 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.flow_eyebrow_step {
  margin-left: 5px;
  line-height: calc(50 / 40);
  font-family: "din-2014", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px){
  .flow_eyebrow_step {
    margin-left: calc(100vw / var(--viewport) * 10);
    line-height: 1;
    font-size: calc(100vw / var(--viewport) * 50);
    letter-spacing: 0;
  }
}
.flow_eyebrow_number {
  line-height: 1;
  font-size: 60px;
  color: #BBA170;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px){
  .flow_eyebrow_number {
    font-size: calc(100vw / var(--viewport) * 69);
    letter-spacing: 0;
  }
}
.flow_title {
  text-align: center;
  line-height: calc(50 / 30);
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px){
  .flow_title {
    line-height: calc(50 / 34);
    font-size: calc(100vw / var(--viewport) * 34);
  }
}
.flow_title:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px){
  .flow_title:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 40);
  }
}
.flow_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}
@media screen and (max-width: 768px) {
  .flow_list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(100vw / var(--viewport) * 40) calc(100vw / var(--viewport) * 38);
  }
}
.flow_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .flow_item {
  }
}
.flow_step {
  flex-grow: 1;
  text-align: center;
  line-height: calc(50 / 40);
  font-family: "din-2014", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px){
  .flow_step {
    line-height: 1;
    font-size: calc(100vw / var(--viewport) * 50);
  }
}
.flow_step:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px){
  .flow_step:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 12);
  }
}
.flow_step_number {
  line-height: 1;
  font-size: 60px;
  color: #BBA170;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px){
  .flow_step_number {
    font-size: calc(100vw / var(--viewport) * 69);
  }
}
.flow_step_after {
  display: inline-block;
  margin-top: 10px;
  line-height: calc(50 / 40);
  font-size: 40px;
  font-weight: 700;
  color: #BBA170;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px){
  .flow_step_after {
    margin-top: calc(100vw / var(--viewport) * 14);
    line-height: 1;
    font-size: calc(100vw / var(--viewport) * 50);
  }
}
.flow_image:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .flow_image:not(:last-child) {
    margin-bottom: calc(100vw / var(--viewport) * 10);
  }
}
.flow_item:nth-of-type(1) .flow_image {
  position: relative;
}
.flow_item:nth-of-type(1) .flow_image::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #BBA170;
  width: 100vw;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .flow_item:nth-of-type(1) .flow_image::after {
    height: calc(100vw / var(--viewport) * 60);
  }
}
@media screen and (max-width: 768px) {
  .flow_item:nth-of-type(3) .flow_image {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .flow_item:nth-of-type(3) .flow_image::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: calc(100vw / var(--viewport) * -35);
    transform: translateY(-50%);
    background: #BBA170;
    width: 100vw;
    height: calc(100vw / var(--viewport) * 60);
  }
}
.flow_item:nth-of-type(6) .flow_image {
  position: relative;
}
.flow_item:nth-of-type(6) .flow_image::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #BBA170;
  width: 100vw;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .flow_item:nth-of-type(6) .flow_image::after {
    height: calc(100vw / var(--viewport) * 60);
  }
}
.flow_label {
  margin-left: -5px;
  margin-right: -5px;
  text-align: center;
  line-height: calc(50 / 24);
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .flow_label {
    margin-left: 0;
    margin-right: 0;
    line-height: calc(40 / 28);
    font-size: calc(100vw / var(--viewport) * 28);
  }
}