@charset "Shift_JIS";

/* 202509 新規追加 */
/* 共通 */
:root {
  --space-minus1: -1rem;
  --space-0: 0;
  --space-0_25: 0.25rem;
  --space-0_5: 0.5rem;
  --space-1: 1rem;
  --space-1_5: 1.5rem;
  --space-2: 2rem;
  --space-3: 3rem;
  --space-4: 4rem;
  --space-5: 5rem;
  --space-6: 6rem;
  --space-7: 7rem;
  --space-8: 8rem;
  --space-9: 9rem;
  --space-10: 10rem;
  --space-11: 11rem;
  --space-12: 12rem;
  --color-white: #FFFFFF;
  --color-green: #0A722E;
  --color-gray: #B3B3B3;
  --color-black: #333;
  --color-light-blue: #F5FAF7;
  --color-orange: #F05C00;
  --color-red: #F01400;
  --color-blue: #007EC4;
  --color-blk-beige: #FFFBF5;
  --color-btn-shadow: rgba(0, 0, 0, 0.25);
  --color-overray: rgba(128, 127, 127, 0.6);
  --color-stroke-gray: #EBEBEB;
  --color-disable_font-gray: #777777;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-sm: 0.875rem;
  --font-size-title: 1.25rem;
  --font-weight-bold: 700;
  --btn-height-base: 60px;
  --btn-height-back: 40px;
  --btn-height-sm: 36px;
  --icon-question_title-size: 20px;
  --icon-question-size: 18px;
  --icon-info-size: 18px;
  --icon-btn-size: 18px;
  --icon-radio-size: 18px;
  --icon-checkbox-size: 18px;
  --icon-select_triangle-size: 12px;
}

#ksForm .is-processing input, #ksForm .is-processing label {
  pointer-events: none;
}

body {
  color: #333;
}

/* 文字サイズ */
.c-small { font-size: 14px; }
.c-large { font-size: 18px; }

/**/
.c-mt-0_5 { margin-top: 8px; }
.c-mt-1 { margin-top: 16px; }
.c-mt-2 { margin-top: 32px; }

/* トップ画面_設問 */
.dataArea {
  margin: 24px auto 0;
}

.birth-date, .gender-date, .disease-date {
  margin-bottom: 36px;
}

.birth-title, .gender-title, .disease-title {
  position: relative;
  font-weight: bold;
  padding-left: 8px;
  margin: 0 auto 16px;
}

.disease-title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.birth-title:before, .gender-title:before, .disease-title:before {
  position: absolute;
  background-color: #009944;
  border-radius: 1px;
  content: "";
  left: 0;
  top: 3px;
  bottom: 0;
  width: 4px;
  height: 75%;
}

.birth-year, .birth-monthDay, .gender-date, .disease-date {
  display: flex;
  padding: 0 8px;
  justify-content: space-between;
  align-items: center;
}
.disease-date {
  flex-wrap: wrap;
}
.disease-date.column {
  flex-direction: column;
  align-items: center;
}

.birth-year {
  margin-bottom: 16px;
}

.birth-year-select {
  appearance: none;
}

.birth-year-box {
  flex-basis: 100%;
  margin-right: 8px;
  position: relative;
}

.birth-year-box:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 9px solid #333;
  border-bottom: 0;
}

.birth-month, .birth-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 48%;
}

.birth-month-box, .birth-day-box {
  flex-basis: 100%;
  margin-right: 8px;
}

#birth_y, #birth_m, #birth_d {
  display: block;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  border: 1px solid #b3b3b3;
  font-size: 16px;
  color: #333;
  background: #fff;
  cursor: pointer;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

input[type="radio" ] {
  display: none;
}

.radio {
  position: relative;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-size: 16px;
  width: 47%;
}
.radio.column {
  width: 100%;
}
@media screen and (max-width: 374px) {
  .radio.column {
    justify-content: flex-start;
    padding-left: 40px;
  }
}

.hoshokaishi {
  color: #009944;
  font-size: 14px;
  margin-top: 4px;
}
.hoshokaishi.column {
  margin-bottom: 16px;
}
/*.hoshokaishi::before {*/
/*  font-family: "Material Icons";*/
/*  content: '\e941';*/
/*  font-size: 1.4em;*/
/*  vertical-align: middle;*/
/*}*/

.radio span.radioMark {
  position: absolute;
  left: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #b3b3b3;
  display: inline-block;
  background: #fff;
}

input[type="radio" ]:checked + .radio {
  border-color: #009944;
  background: #F5FAF7;
}

input[type="radio" ]:checked + .radio span.radioMark {
  border-color: #009944;
  background: #009944;
  box-shadow: inset 0 0 0 2px white;
}

input[type="radio" ]:checked + .radio + .hoshokaishi {
  color: #009944;
}

.top-note {
  color: #333;
  font-size: 14px;
  margin-top: 4px;
}

.help-icon {
  width: 19px;
  height: 19px;
  cursor: pointer;
}

/* 次へボタン */
.closeArea {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 95%;
  margin: 0 auto;
  padding: 36px 0;
}

.closeArea .nextBtn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 48px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10vw;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.closeArea .nextBtn2 img {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  width: 18px;
  height: 18px;
}

.closeArea .nextBtn2 {
  pointer-events: none;
  background: gainsboro;
}

.closeArea .nextBtn2.is-active {
  pointer-events: auto;
  background-color: #e93d0c;
}

/* 戻るボタン */
.closeArea .backBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #555555;
  border-radius: 8px;
  color: #555555;
  width: 80%;
  height: 48px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  transition: box-shadow .12s ease, transform .12s ease;
}
.closeArea .backBtn img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  width: 18px;
  height: 18px;
}

/* 設問画面 */
main.main-content {
  padding:0 32px;
  font-size: 16px;
  max-width: 700px;
  margin: auto;
}

.question-list {
  margin: 0 auto;
}
.question-block {
  padding-top: 24px;
  border-top: 1px solid #EBEBEB;
  display: none;
}

.question-block:first-of-type {
  border-top: 0;
  display: block;
}

/* 設問見出し */
.question-block__title {
  display: flex;
  gap: 4px;
  padding: 8px 0;
  font-weight: bold;
  line-height: 26px;
}
.question-block__title > * {
  font-weight: inherit;
}
.question-color {
  color: #F26835;
}
.strong-color {
  color: #0A722E;
}

/* 設問イメージ画像 */
.question-block__img {
  display: block;
  margin: auto;
  max-height: 300px;
  max-width: 100%;
}

/* ラジオボタン */
.question-block__radio{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 24px;
}

input[type="radio" ] {
  display: none;
}

.question-block__radio-option {
  position: relative;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  padding: 11px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-size: 16px;
  width: 46%;
}
.question-block__radio-option span.radio-decorator {
  position: absolute;
  left: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #b3b3b3;
  display: inline-block;
  background: #fff;
}

input[type="radio" ]:checked + .question-block__radio-option {
  border-color: #009944;
  background: #F5FAF7;
}

input[type="radio" ]:checked + .question-block__radio-option span.radio-decorator {
  border-color: #009944;
  background: #009944;
  box-shadow: inset 0 0 0 2px white;
}

/*　warning　*/
.warningArea {
  display: flex;
  justify-content: space-between;
  border: 1px solid #E3A43E;
  border-radius: 4px;
  color: #333;
  padding: 12px;
}

.warningArea img {
    width: 16px;
    margin: 0 4px 4px 0;
}

.warning-text {
  width: 95%;
}


/* サブ画面（ドロワー）関連 */
/* サブ画面URL */
.question-block__supplement {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
}
.question-block__supplement-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #0A722E;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  width: fit-content;
}
.question-block__supplement-link:hover {
  text-decoration: none;
  opacity: 0.8;
}
.question-block__supplement-link img {
  color: #0A722E;
  text-decoration: none;
}

/* サブ画面 */
.c-section_separator_kokumin {
  position: relative;
  padding-block: var(--space-0_5);
  margin-bottom: 16px;
  font-size: 16px;
}

.c-section_separator_kokumin.c-mb-0_25 {
  margin-bottom: 4px;
}

.c-section_separator_kokumin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-green);
}

.c-section_item_area {
  padding-inline: var(--space-1);
}

.s-input_title{
  padding-left: 16px;
}

.section-title {
  border-left: 5px solid #009944;
  padding-left: 8px;
}

.emphasis{
  color:var(--color-green);
  font-weight: 700;
  font-size: 18px;
}

.s-drawer_title{
  margin-bottom: 32px;
}

.s-drawer_title h1{
  font-size: 20px;
  border-bottom: 1px solid #B3B3B3;
}

.s-drawer_contents .s-drawer_title .s-drawer_description {
  border-bottom: 1px solid #B3B3B3;
}

.t-table{
  width: 100%;
  margin-bottom: 4px;
  font-size: 16px;
}

.s-table_title{
  border-bottom: 1px solid #0A722E;
  margin-bottom: 16px;
  font-size: 16px;
}

.t-table_info, .t-table-info-btm{
  margin-bottom: 16px;
}

.t-table-info-border {
  margin-bottom: 32px;
  font-size: 14px;
}

.t-table_info:last-of-type{
  margin-bottom: 0;
}

.t_fontsize{
  font-size: 16px;
}

.t-table-box {
  margin-bottom: 8px;
}

.t-table_info p{
  font-size: 14px;
}

.t-table_info li{
  position: relative;
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
}

.t-table, .t-table_small {
  border-collapse: collapse;
  table-layout: fixed;
}

thead .thead_color {
  background-color: #F1F7EC;
}

.m-text_left:first-child{
  background-color: #F1F7EC;
}

.th_kokumin {
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  padding: 4px 0;
}

.th_kokumin_bed{
  font-size: 16px;
}

td {
  padding: 6px;
  text-align: center;
  vertical-align: middle;
  height: 50px;
}

th,td {
  border: 1px solid #0A722E;
  text-align: center;
  align-items: center;
}

td.m-text_left span {
  text-align: center;
}

.adjustment{
  font-size: 12px;
}

.none {
  visibility: hidden;
  color: transparent;
  border-top: none;
  border-left: none;
}

.total{
  color: #DE650F;
}

.s-drawer_contents {
  margin: 0 auto;
  padding: 24px 16px 0;
}

.closeArea {
  margin: 48px auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.closeAreaBtn {
  border: 1px solid #333;
  border-radius: 8px;
  padding: 16px 0;
  width: 40%;
  text-align: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.closeAreaBtn img {
  padding-bottom: 1px;
}

.s-section_title{
  border-bottom: 1px solid #0A722E;
  margin-bottom: 8px;
  font-size: 16px;
}

.t-section_info{
  margin: 16px 0;
}

.t-section_content {
  text-indent: 1em;
}

.margin_bottom-none {
  margin-bottom: 0;
}

.t-section_info li{
  position: relative;
  margin-left: 8px;
}

.t-section_info li:before{
  content: '\30FB';
  left: -12px;
  position: absolute;
}


/*設問1*/
.s-section_title.sougi{
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

/*設問2*/
.household_small{
  width: 100%;
  font-size: 12px;
  display: flex;
  margin-left: 4px;
}

.m-text_left_narrow{
  vertical-align: middle;
  padding: 2px 0;
}

.m-text_left_narrow:first-child{
  background-color: #F1F7EC;
}

.m-text_left_narrow p{
  text-align: center;
}

.t-table_small{
  width: 100%;
  font-size: 10px;
  margin-bottom: 8px;
}

.income{
  font-weight: 700;
  font-size: 14px;
}

/*設問４*/
.accet{
  color:#0A722E;
  font-weight: 700;
}

.t-question_info{
  margin-bottom: 24px;
}

.last-marginBtm-none{
  margin-bottom: 0;
}

.t-question_info p{
  margin-bottom: 8px;
}

.based-lg {
  font-size: 16px;
}

.based{
  margin: 8px auto 16px;
  font-size: 14px;
}

.t-question_info_margin{
  margin-bottom: 32px;
}

.s-question_title{
  position: relative;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
}

.s-question_title:before, .s-question_title-btm:before {
  content:  "";
  width:  10px;
  height:  10px;
  display:  inline-block;
  background-color: #0A722E;
  border-radius:  50%;
}

.s-question_title-btm{
  margin-top: 16px;
  font-size: 16px;
}

.source{
  font-size: 14px;
}

.list_style li {
  position: relative;
  align-items: center;
  font-size: 16px;
}

.list_style li:before{
  content: '';
  background-image: url("../images/info_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  position: relative;
  left: -2px;
}

/*設問5*/
.margin_bottom{
  margin-bottom: 32px;
}

/*設問6*/
.songai_amount{
  width: 60%;
  margin: 16px auto 4px;
  display: flex;
  justify-content: space-between;
}

.songai_info, .songai_info-btm{
  display: flex;
  justify-content: end;
  font-size: 14px;
}

.songai_info {
  margin-bottom: 24px;
}

.songai_info-btm{
  margin-bottom: 0;
}

.t-section_info_margin {
  margin-bottom: 32px;
}

/*---------PC---------*/
@media (min-width: 768px) {
  body {
    line-height: 1.6;
  }
}

/* ドロワー */
/* ドロワーオーバーレイ */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.drawer-overlay.is-visible {
  opacity: 0.8;
  visibility: visible;
}

/* ドロワー本体 */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 94%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 1001;
  flex: 1;
  border: none;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s ease-in-out, visibility 0.4s;
}
.drawer.iframe_flg {
  max-width: 100%;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

/*　メイン画面のスクロール抑止　*/
body.no-scroll {
  overflow: hidden;
  width: 100%;
}
/* ここまでドロワー */

/* 生年月日サブ画面 */
/** 生年月日のポップアップ **/
#popup_select_block {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  _position: absolute;
  _top:expression(eval(document.body.scrollTop));
  opacity: 1.0;
  z-index: 1000;
  background-color: #ffffff;
  background-color: rgba(80, 80, 80, 0.7);
}
#popup_select_block > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 1.0;
  border-radius: 12px;
  z-index: 1001;
  display: block;
  width: fit-content;
  height: fit-content;
  width: 95%;
}
#popup_select_block .popup_selectbox {
  border: solid 2px #39a75b;
  border-radius: 7px;
  background-color: #ffffff;
  padding: 1em;
  overflow: auto;
  margin: 0 auto;
}
#popup_select_block #popup_select_month {
  max-width: 520px;
}
#popup_select_block #popup_select_day {
  max-width: 520px;
}
#popup_select_block .popup_selectbox .section-head {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}
#popup_select_block .popup_selectbox .section-body {
  display: grid;
  column-gap: 0.8em;
  row-gap: 0.8em;
  justify-content: center;
}
#popup_select_block #popup_select_month .section-body {
  grid-template-columns:80px 80px 80px;
  column-gap: 1.3em;
  row-gap: 1.3em;
}
#popup_select_block #popup_select_month .section-head,
#popup_select_block #popup_select_month .section-body,
#popup_select_block #popup_select_month .section-foot {
  min-width: 200px;
}
#popup_select_block #popup_select_day .section-body {
  grid-template-columns:80px 80px 80px 80px 80px;
}
#popup_select_block #popup_select_day .section-head,
#popup_select_block #popup_select_day .section-body,
#popup_select_block #popup_select_day .section-foot {
  min-width: 320px;
}
#popup_select_block .popup_selectbox div span {
  color: #4d4949;
  background-color: #ffffff;
  border: solid 1px #818181;
  text-align: center;
  text-wrap: nowrap;
  cursor: pointer;
  justify-self: center;
}
#popup_select_block .popup_selectbox div span.sel {
  color: #ffffff;
  background-color: #39a75b;
  border: solid 1px #818181;
}
#popup_select_block .popup_selectbox div span:hover {
  background-color: #f0fade;
  border: solid 1px #4d4949;
}
#popup_select_block .popup_selectbox div span.sel:hover {
  color: #ffffff;
  background-color: #39a75b;
  border: solid 1px #4d4949;
}
#popup_select_block .popup_selectbox .section-body span {
  width: 80px;
  padding: 0.6em 0;
  border-radius: 7px;
  font-size: 18px;
  font-weight: bold;
}
#popup_select_block .popup_selectbox .section-foot {
  margin: 2.5em 0 2em 0;
  padding: 0;
  text-align: center;
}
#popup_select_block .popup_selectbox .section-foot span {
  padding: 0.5em 0;
  border-radius: 18px;
  display: inline-block;
  max-width: 180px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #popup_select_block #popup_select_day .section-head,
  #popup_select_block #popup_select_day .section-body,
  #popup_select_block #popup_select_day .section-foot {
    min-width: auto;
  }
  #popup_select_block #popup_select_day .section-body {
    grid-template-columns:16% 16% 16% 16% 16%;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-body span {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #popup_select_block #popup_select_day.popup_selectbox {
    padding: 0.6em;
  }
  #popup_select_block #popup_select_day .section-body {
    grid-template-columns:16% 16% 16% 16% 16%;
    column-gap: 0.6em;
    row-gap: 0.6em;
    overflow-y: auto;
    max-height: 450px;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-body span {
    width: 100%;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-body span {
    padding: 0.5em 0;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-head {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-foot {
    margin: 1.5em 0 1.0em 0;
  }
}

@media screen and (max-width: 349px) {
  #popup_select_block .popup_selectbox {
    padding: 0.5em;
  }
  #popup_select_block .popup_selectbox .section-body {
    column-gap: 0.4em;
    row-gap: 0.4em;
  }
  #popup_select_block #popup_select_month .section-body {
    grid-template-columns:80px 80px;
    column-gap: 0.4em;
    row-gap: 0.4em;
  }
  #popup_select_block #popup_select_day .section-body {
    grid-template-columns:20% 20% 20% 20%;
    column-gap: 0.4em;
    row-gap: 0.4em;
  }
  #popup_select_block #popup_select_day.popup_selectbox .section-body span {
    width: 100%;
  }
}

@media screen and (max-width: 200px) {
  #popup_select_block #popup_select_month .section-body {
    grid-template-columns:80px;
    overflow-y: auto;
    max-height: 360px;
  }
  #popup_select_block #popup_select_day .section-body {
    grid-template-columns:50px 50px;
  }
  #popup_select_block #popup_select_month .section-head,
  #popup_select_block #popup_select_month .section-body,
  #popup_select_block #popup_select_month .section-foot {
    min-width: 98%;
  }
  #popup_select_block #popup_select_day .section-head,
  #popup_select_block #popup_select_day .section-body,
  #popup_select_block #popup_select_day .section-foot {
    min-width: 98%;
  }
}
/** 生年月日のポップアップ **/
.text-center {
  text-align: center;
}

/** メンテナンス告知 **/
#m-mnt_blk {
    font-size: 0.875rem;
    margin-bottom: 3rem;
}
 #m-mnt_blk .m-mnt_title {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

#m-mnt_blk .m-mnt_title::after,
#m-mnt_blk .m-mnt_title.open::after {
    font-size: 1rem;
    margin-left: 0.5rem;

}
#m-mnt_blk .m-mnt_title::after {
    font-family: "Material Icons";
    content:'add';
}
#m-mnt_blk .m-mnt_title.open::after {
    font-family: "Material Icons";
    content:'\e15b';
}

#m-mnt_blk .m-mnt_body {
    padding: 1rem;
    background-color: #FFFBF5;
    border-radius: 8px;
    margin-top: 0.25rem;
    line-height: 1.6;
}
#m-mnt_blk .m-mnt_body .m-mnt_msg .time {
    text-align: center;
    margin-top: 1rem;
}
 #m-mnt_blk .m-mnt_body .m-mnt_btn {
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}
#m-mnt_blk .m-mnt_body .m-mnt_btn .m-mypage_btn {
    width: 80px;
    height: 36px;
    padding: 0.25rem;
    display: inline-flex;
    border: solid 1px #333;
}
#m-mnt_blk .m-mnt_body .topInfo {
    margin: 0;
    background-color: transparent;
    color: #333;
    border-radius: 0;
    overflow: hidden;
}
#m-mnt_blk .m-mnt_body .topInfo .sectionInner {
  padding: 5px;
  font-size: 1em;
}
/* 表示制御 */
.c-hide {
    display: none;
}
@media screen and (min-width: 768px) {
  #m-mnt_blk {
    font-size: 16px;
  }
}

/** メンテナンス告知 **/

/* PC */
@media screen and (min-width: 768px) {

  /* 共通 */
 .default_diagnosis_title img {
   max-height: 55px;
  }
  .default_diagnosis_title_text {
    font-size: 32px;
  }
  .default_diagnosis_msg {
    font-size: 16px;
    line-height: 1.8;
  }

  main.main-content {
    padding: 0;
  }

  /* nextBtn */
  .closeArea .nextBtn2 {
    width: 90%;
    height: 65px;
    font-size: 24px;
  }
  .closeArea .nextBtn2 img {
    right: 24px;
    width: 22px;
    height: 22px;
  }

  /* トップ画面 */
  dl.dataArea > dt {
    font-size: 18px;
  }
  #birth_y, #birth_m, #birth_d {
    padding: 18px 16px;
    font-size: 18px;
  }
  .birth-date, .gender-date, .disease-date {
    margin-left: 30px;
  }
  .birth-year-box:after {
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 11px solid #333;
  }
  .radio {
    padding: 14px 16px;
    font-size: 18px;
  }
  .radio span.radioMark {
    width: 18px;
    height: 18px;
  }
  .hoshokaishi {
    font-size: 16px;
  }
  .dataArea span.txt {
    font-size: 18px;
  }
  .top-note {
    font-size: 16px;
  }

  /* 設問画面 */
  .question-block__title {
    font-size: 18px;
  }
  .question-block__radio-option {
    padding: 12px 16px;
    font-size: 18px;
  }
  .question-block__supplement {
    padding: 12px 0 32px;
  }
  .question-block__supplement-link {
    font-size: 16px;
  }
  .question-block__supplement-link img {
    width: 16px;
    height: 16px;
  }

  .question-block__radio-option span.radio-decorator {
    width: 18px;
    height: 18px;
  }

  .warningArea {
    width: 80%;
    margin: auto;
  }
  .warningArea img {
    width: 18px;
  }
}
