@charset "UTF-8"; /* 文字コードの指定 */
/* 国民健康保険税（料）試算システム ２０２５版 CSS */
/* 2025.05.11 ver.1.2.0 */

/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* -------------------- */
/* 共通 Start */
/* -------------------- */
html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  /* background-color: rgba(102, 185, 204, 0.3); */
}

a {
  text-decoration: none;
  color: #00f;
}
/* -------------------- */
/* 共通 End */
/* -------------------- */

/* -------------------- */
/* ＰＣ表示 */
/* -------------------- */
.container {
  max-width: 1200px;
  min-height: 100vh;
  background-color: white;  
  padding: 0 15px;
  margin: 0 auto;
}

/* 市町村名 */
#lgName {
  height: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: right;
  padding-right: 10px;
}

/* h1タイトル */
.title {
  height: 70px;
  font-size: 35px;
  font-weight: 500;
  line-height: 64px;
  text-align: center;
  border-top: 3px solid #6699cc;
  border-bottom: 3px solid #6699cc;
}

/* サイトの説明 */
.siteDescription {
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  margin: 50px;
}

/* 注意事項 */
.calcNotes {
  border: 1px solid #6699cc;
  border-radius: 10px;
  margin: 25px;
}

/* 注意事項見出し */
.calcNotesHeading {
  font-size: 22px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  margin-top: 10px;
}

/* 注意事項説明 */
.calcDescriptionList {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  margin-left: 50px;
  margin-right: 30px;
  margin-bottom: 10px;
}

/* 注意事項補足 */
.calcSupplementList {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  text-decoration: underline solid #636D77;
  margin-left: 18px;
}

/* Googleアナリティクス利用説明 */
.gaAboutUse {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 50px;
}

/* GA説明文アコーディオン */
.accordionGA {
  margin-top: -20px;
}
.accordionGA summary {
  display: flex;
  width: 285px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 3px;
  cursor: pointer;
  margin: 0 0 0 auto;
}
.accordionGA summary::-webkit-details-marker {
  display: none;
}
.accordionGA summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #636d77b3;
  border-right: 3px solid #636d77b3;
  content: '';
  transition: transform .3s;
}
.accordionGA[open] summary::after {
  transform: rotate(225deg);
}
.gaDescription {
  margin-bottom: 25px;
}
.accordionGA p {
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .5s, opacity .5s;
}
.accordionGA[open] p {
  transform: none;
  opacity: 1;
}

/* 試算情報入力以下非表示 */
#calcDataInput {
  display: none;
}

/* -------------------- */
/* 情報入力欄等 共通 Start */
/* -------------------- */
/* h2見出し */
.heading {
  height: 50px;
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  color: #fff;  
  background-color: #6699cc;  
}

/* ボタン */
/* ボタンスタイル */
.buttonStyle {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  background-color: #CC66B6;
  border: 2px solid #CC66B6;    /* 線幅要修正　　　　　　　　　　　*/
  border-radius: 25px;
  padding: 15px 50px;
  transition: all .2s;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 50px;
}
/* ボタンホバー */
.buttonStyle:hover{
  color: #CC66B6;
  background-color: #fff;
  border-color: #CC66B6;
}
/* ボタン位置設定 */
.btnCenter {
  text-align: center;
}

/* 情報入力問い */
.questionMessage {
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  margin-left: 20px;
  margin-bottom: 15px;
}

/* 情報入力selectBox */
.selectBox {
  width: 225px;
  height: 45px;
  font-size: 16px;
  font-weight: 400;
  line-height: 43px;
  text-align: center;
  text-align-last: center;
  border: 1px solid #636D77;
  border-radius: 5px;
  cursor: pointer;
  background-image: url("../img/arrow.png");     /* セレクトボックス矢印画像 */
  background-repeat: no-repeat;
  background-size: 12px auto;     /* 画像のサイズ（幅 高さ）*/
  background-position: right 3px center;     /* 画像の位置 */
}

/* 情報入力selectBoxDate */
.selectBoxYear {
  width: 170px;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 43px;
  text-align: center;
  text-align-last: center;
  border: 1px solid #636D77;
  border-radius: 5px;
  cursor: pointer;
  background-image: url("../img/arrow.png");     /* セレクトボックス矢印画像 */
  background-repeat: no-repeat;
  background-size: 12px auto;     /* 画像のサイズ（幅 高さ）*/
  background-position: right 3px center;     /* 画像の位置 */
}

.selectBoxDate {
  width: 30px;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 43px;
  text-align: center;
  text-align-last: center;
  border: 1px solid #636D77;
  border-radius: 5px;
  cursor: pointer;
}

/* 情報入力各人見出し */
.memberDataHeading {  
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #636D77;
  margin-right: 20px;
  margin-left: 40px;
  margin-bottom: 8px;
}

/* 情報入力欄横並び */
.inputFlex {
  height: 45px;
  display: flex;
  margin-left: 30px;
  margin-bottom: 30px;
}

/* 情報入力欄ラベル */
.memberDataLabel {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
  margin-left: 27px;
}
/* 情報入力欄ラベル ２文字 */
.memberDataLabel2Chara {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  width: 2em;     /* ラベルの幅を設定 */
  word-wrap: break-word;     /* テキストを折り返す */
  line-height: 1.2;     /* 行間を調整 */
  margin-left: 27px;
}
/* 情報入力欄ラベル ３文字 */
.memberDataLabel3Chara {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  width: 3em;     /* ラベルの幅を設定 */
  word-wrap: break-word;     /* テキストを折り返す */
  line-height: 1.2;     /* 行間を調整 */
  margin-left: 27px;
}
/* 情報入力欄ラベル調整 */
.memberdataLabelBirth {
  margin-top: -3px;
}
/* 情報入力欄単位 */
.memberDataUnit {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
}

/* 情報入力欄 */
.inputBox {
  width: 125px;
  height: 100%;
  font-size: 20px;
  font-weight: 400;
  text-align: right;
  border: 1px solid #636D77;
  border-radius: 5px;
  padding: 3px;
  display: inline-block;
  vertical-align: middle;
}
/* -------------------- */
/* 情報入力欄等 共通 End */
/* -------------------- */

/* 試算情報入力説明 */
.inputDescriptionList {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  margin: 50px;
}

/* 試算情報入力補足 */
.inputSupplementList {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  margin-left: 18px;
}

/* ツールチップ */
/* ツールチップ用クエッションマーク画像 */
.hatena {
  width: 20px;
  height: 20px;  
}
/* ツールチップ用源泉徴収票画像 */
.incomeimg {
  width: 590px;
}
/* ツールチップ設定 */
.tooltip {
  position: relative;
  display: inline-block;
}
/* ツールチップ１ */
/* ツールチップ「支払金額」 */
.tooltip .tooltiptext1 {
  visibility: hidden;
  width: 600px;
  height: 455px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background-color: #636D77;
  padding: 5px;
  border-radius: 6px;
  top: -80px;
  position: absolute;
  z-index: 1;
}
/* ツールチップ１ 表示 */
.tooltip:hover .tooltiptext1 {
  visibility: visible;
}
/* ツールチップ２ */
/* ツールチップ「軽減条件」 */
.tooltip .tooltiptext2 {
  visibility: hidden;
  width: 506px;
  height: 108px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background-color: #636D77;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}
/* ツールチップ２ 表示 */
.tooltip:hover .tooltiptext2 {
  visibility: visible;
}

/* 加入者数入力欄 */
#personSelect {
  display: none;
  margin-top: 25px;
  margin-bottom: 45px;
}

.personSelectMargin {
  margin-left: 75px;
}

/* 世帯主は加入者？ */
.radioBtn {
  display: inline-block;
  margin-left: 80px;
  margin-bottom: 40px;
}

/* radioBtnラベル */
.radioBtnLabel {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px;
}
/* ラジオボタン */
input[type="radio"] {
  width: 18px;
  height: 18px;
  line-height: 1.5;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 8px;
}

/* 設問２ 非表示 */
#headFamilyRadio {
  display: none;
}
/* 設問３ 非表示 */
#inputMessage {
  display: none;
}

/* 非自発的失業checkBox */
.inputCheck {
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* チェックボックス */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* 加入者情報 */
.infoFlex {
  display: flex;
  justify-content: flex-end;
  margin-left: 95px;
}
.memberInfo {
  height: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  border-bottom: 1px solid #636D77;
  margin-top: -23px;
  margin-right: 30px;

}

/* 生年月日入力エラーメッセージ */
.errorMsgBirthDate {
  height: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: #f00;
  margin-top: -23px;
  margin-left: 57px;
}

/* 世帯主情報入力欄 非表示 */
#headFamilyData {
  display: none;
}
/* 加入者情報入力欄 非表示 */
#memberData {
  display: none;
  margin-bottom: 35px;
}

/* エラーメッセージ */
.errorMessage {
  width: 800px;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: #f00;
  margin: 0 auto;
}

/* 試算ボタン　非表示 */
#calculationBtn {
  display: none;
}

/* 試算結果メイン */
.mainResult {
  width: 1000px;
  margin: 45px auto;
}

.resultFlex {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.resultItem {
  width: 500px;
  font-size: 22px;
  font-weight: 500;
}
.resultItem br {
  display: none;
}

.resultValue {
  width: 500px;
  font-size: 26px;
  font-weight: 500;
  text-align: right;
}

.resultLine {
  background-color: rgba(102, 185, 204, 0.5);
}

/* １か月あたりの保険税 補足 */
.notes {
  width: 1000px;
  font-size: 16px;
  font-size: 400;
  color: #636D77;
  padding-left: 15px;
}

/* 試算内容 */
.subHeading {
  width: 1000px;
  height: 32px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  border-bottom: 1px solid #636D77;
  margin: auto;
}

/* 試算根拠 */
.basisAll {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.basisAllFlex {
  display: flex;
  flex-direction: column;
}

.basisFlex {
  display: flex;
  padding: 0 10px;
}

.basisItem {
  width: 245px;
  height: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  padding-left: 15px;
}

.basisValue {
  width: 245px;
  height: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  text-align: right;
  padding-right: 15px;
}

.basisItemCare {
  width: 245px;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #636D77;
  padding-bottom: 8px;
}

.basisValueCare {
  width: 245px;
  font-size: 16px;
  font-weight: 400;
  text-align: right;
  border-bottom: 1px solid #636D77;
  padding-bottom: 8px;
}

/* 試算内容内訳 */
.contentAllFlex {
  display: flex;
  justify-content: center;
}

.contentFlex {
  display: flex;
  position: relative;
}

.contentItemSide {
  width: 250px;
  height: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  padding-left: 15px;
}

.contentItemWrap {
  width: 250px;
  height: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  border-left: 1px solid #636D77;
}

.resultContent {
  width: 250px;
  height: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  text-align: right;
  border-left: 1px solid #636D77;
  padding-right: 15px;
}

/* 試算内容区分 非表示 */
.notContentItem {
  display: none;
}

.contentLine {
  background-color: rgba(102, 185, 204, 0.2);
}

/* 税・料率 */
/* 医療分 */
.resultMedicalRate {
  width: 80px;
  height: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #636D77;
  position: absolute;
  left: 255px;
  z-index: 1;
}
/* 支援金分 */
.resultSupportRate {
  width: 80px;
  height: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #636D77;
  position: absolute;
  left: 5px;
  z-index: 1;
}
/* 介護分 */
.resultCareRate {
  width: 80px;
  height: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #636D77;
  position: absolute;
  left: 5px;
  z-index: 1;
}

/* 税・料率 補足 */
.contentNotes {
  width: 1000px;
  font-size: 16px;
  line-height: 1.25;
  font-size: 400;
  color: #636D77;
  padding-left: 15px;
  margin: 0 auto;
}

/* 終了ボタンスタイル */
.endButtonStyle {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: #CC66B6;
  background-color: #fff;
  border: 2px solid #CC66B6;
  border-radius: 25px;
  padding: 15px 50px;
  transition: all .2s;
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 10px;
}
/* ボタンホバー */
.endButtonStyle:hover{
  background-color: #CC66B6;
  border-color: #CC66B6;
  color: #fff;
}
/* 終了ボタンで終了しない場合のメッセージ 表示位置 */
.msgCenter {
  text-align: center;
}
/* 終了ボタンで終了しない場合のメッセージ */
#closeMessage {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #CC66B6;
  display: inline-block;
  margin-bottom: 40px;
}

/* 試算結果　非表示 */
#result {
  display: none;
}

/* -------------------------------------------------- */

/* -------------------- */
/* ＰＣ・タブレット表示 */
/* -------------------- */
@media (min-width: 768px) and (max-width: 1200px) {
  .container {
    padding: 0 1.25vw;
  }

  /* 市町村名 */
  #lgName {
    height: 2.00000vw;
    font-size: 1.50000vw;
    line-height: 2.00000vw;
    padding-right: 0.83333vw;
  }

  /* h1タイトル */
  .title {
    height: 5.83333vw;
    font-size: 2.91666vw;
    line-height: calc(5.83333vw - 6px);
  }

  /* サイトの説明 */
  .siteDescription {
    font-size: 1.50000vw;
    line-height: 3.00000vw;
    margin: 4.16666vw;
  }

  /* 注意事項 */
  .calcNotes {
    border-radius: 0.83333vw;
    margin: 2.08333vw;
  }

  /* 注意事項見出し */
  .calcNotesHeading {
    font-size: 1.83333vw;
    line-height: 3.00000vw;
    margin-top: 0.83333vw;
  }

  /* 注意事項説明 */
  .calcDescriptionList {
    font-size: 1.50000vw;
    line-height: 3.00000vw;
    margin-left: 4.16666vw;
    margin-right: 2.50000vw;
    margin-bottom: 0.83333vw;
  }

  /* 注意事項補足 */
  .calcSupplementList {
    font-size: 1.50000vw;
    line-height: 3.00000vw;
    margin-left: 1.50000vw;
  }

  /* Googleアナリティクス利用説明 */
  .gaAboutUse {
    font-size: 1.25000vw;
    line-height: 2.00000vw;
    margin: 0 4.16666vw;
  }

  /* GA説明文アコーディオン */
  .accordionGA {
    margin-top: -1.66666vw;
  }
  .accordionGA summary {
    width: 23.75000vw;
    padding-bottom: 0.25000vw;
  }
  .accordionGA summary::after {
    width: 0.58333vw;
    height: 0.58333vw;
    margin-left: 0.83333vw;
    border-bottom: 0.25vw solid #636d77b3;
    border-right: 0.25vw solid #636d77b3;
  }
  .gaDescription {
    margin-bottom: 2.08333vw;
  }
  .accordionGA p {
    transform: translateY(-0.83333vw);
  }

  /* -------------------- */
  /* 情報入力欄等 共通 Start */
  /* -------------------- */
  /* h2見出し */
  .heading {
    height: 4.16666vw;
    font-size: 2.33333vw;
    line-height: 4.16666vw;
  }
  /* ボタン */
  /* ボタンスタイル */
  .buttonStyle {
    font-size: 1.66666vw;
    line-height: 1.66666vw;
    border-radius: 2.08333vw;
    padding: 1.25000vw 4.16666vw;  
    margin-top: 1.25000vw;
    margin-bottom: 4.16666vw;
  }

  /* 情報入力問い */
  .questionMessage {
    font-size: 1.50000vw;
    line-height: 1.50000vw;
    margin-left: 1.66666vw;
    margin-bottom: 1.25000vw;
  }
  
  /* 情報入力selectBox */
  .selectBox {
    width: 18.75000vw;
    height: 3.75000vw;
    font-size: 1.33333vw;
    line-height: 3.58333vw;
    border-radius: 0.41666vw;
    background-size: 1.00000vw auto; /* 画像のサイズ（幅 高さ）*/
    background-position: right 0.25000vw center; /* 画像の位置 */
  }

  /* 情報入力selectBoxDate */
  .selectBoxYear {
    width: 14.16666vw;
    height: 100%;
    font-size: 1.33333vw;
    line-height: 3.58333vw;
    border-radius: 0.41666vw;
    background-size: 1.00000vw auto;     /* 画像のサイズ（幅 高さ）*/
    background-position: right 0.25000vw center;     /* 画像の位置 */
  }

  .selectBoxDate {
    width: 2.50000vw;
    height: 100%;
    font-size: 1.33333vw;
    line-height: 3.58333vw;
    border-radius: 0.41666vw;
  }

  /* 情報入力各人見出し */
  .memberDataHeading {  
    font-size: 1.50000vw;
    margin-right: 1.66666vw;
    margin-left: 3.75000vw;
    margin-bottom: 0.66666vw;
  }

  /* 情報入力欄横並び */
  .inputFlex {
    height: 3.75000vw;
    margin-left: 2.50000vw;
    margin-bottom: 2.50000vw;
  }
  
  /* 情報入力欄ラベル */
  .memberDataLabel {
    font-size: 1.33333vw;
    margin-left: 2.08333vw;
  }
  /* 情報入力欄ラベル ２文字 */
  .memberDataLabel2Chara {
    font-size: 1.33333vw;
    margin-left: calc(2.08333vw - 5px);
  }
  /* 情報入力欄ラベル ３文字 */
  .memberDataLabel3Chara {
    font-size: 1.33333vw;
    margin-left: calc(2.08333vw - 5px);
  }
  /* 情報入力欄ラベル調整 */
  .memberdataLabelBirth {
    margin-top: -0.25000vw;
  }
  /* 情報入力欄単位 */
  .memberDataUnit {
    font-size: 1.25000vw;
  }

  /* 情報入力欄 */
  .inputBox {
    width: 10.41666vw;
    height: 3.75000vw;
    font-size: 1.66666vw;
    border-radius: 0.41666vw;
    padding: 0.25000vw;
  }
  /* -------------------- */
  /* 情報入力欄等 共通 End */
  /* -------------------- */
  
  /* 試算情報入力説明 */
  .inputDescriptionList {
    font-size: 1.50000vw;
    line-height: 3.00000vw;
    margin: 4.16666vw;
  }

  /* 試算情報入力補足 */
  .inputSupplementList {
    font-size: 1.50000vw;
    line-height: 3.00000vw;
    margin-left: 1.50000vw;
  }
  
  /* ツールチップ */
  /* クエッションマーク画像 */
  .hatena {
    width: 1.66666vw;
    height: 1.66666vw;  
  }
    /* ツールチップ用源泉徴収票画像 */
  .incomeimg {
    width: 49.16666vw;
  }
  /* ツールチップ１ */
  /* ツールチップ「支払金額」 */
  .tooltip .tooltiptext1 {
    /* visibility: hidden; */
    width: 50.00000vw;
    height: 37.91666vw;
    font-size: 1.33333vw;
    line-height: 2.00000vw;
    padding: 0.41666vw;
    border-radius: 0.50000vw;
  }
  /* ツールチップ２ */
  /* ツールチップ「軽減条件」 */
  .tooltip .tooltiptext2 {
    width: 42.16666vw;
    height: 9.00000vw;
    font-size: 1.33333vw;
    line-height: 2.00000vw;
    padding: 0.41666vw;
    border-radius: 0.50000vw;
  }

  /* 加入者数入力欄 */
  #personSelect {
    margin-top: 2.08333vw;
    margin-bottom: 3.75000vw;
  }
  
  .personSelectMargin {
    margin-left: 6.25000vw;
  }
  
  /* 世帯主は加入者？ */
  .radioBtn {
    margin-left: 6.66666vw;
    margin-bottom: 3.33333vw;
  }
  
  /* radioBtnラベル */
  .radioBtnLabel {
    font-size: 1.50000vw;
    padding-left: 1.66666vw;
  }
  /* ラジオボタン */
  input[type="radio"] {
    width: 1.50000vw;
    height: 1.50000vw;
    margin-top: -0.41666vw;
    margin-right: 0.66666vw;
  }
  
  /* 非自発的失業checkBox */
  .inputCheck {
    height: 4.16666vw;
  }
  /* チェックボックス */
  input[type="checkbox"] {
    width: 1.5vw;
    height: 1.5vw;
  }
  
  /* 加入者情報入力欄　非表示 */
  #memberData {
    margin-bottom: 2.91666vw;
  }

  /* 加入者情報 */
  .infoFlex {
    margin-left: 7.91666vw;
  }
  .memberInfo {
    height: 1.66666vw;
    font-size: 1.25000vw;
    line-height: 1.50000vw;
    margin-top: -1.91666vw;
    margin-right: 2.50000vw;
  }

  /* 生年月日入力エラーメッセージ */
  .errorMsgBirthDate {
    height: 1.66666vw;
    font-size: 1.25000vw;
    line-height: 1.50000vw;
    margin-top: -1.91666vw;
    margin-left: 4.16666vw;
  }
  
  /* エラーメッセージ */
  .errorMessage {
    width: 66.66666vw;
    font-size: 1.50000vw;
    line-height: 1.66666vw;
  }
  
  /* 試算結果メイン */
  .mainResult {
    width: 83.33333vw;
    margin: 3.75000vw auto;
  }

  .resultFlex {
    height: 5.00000vw;
    padding: 0 1.25000vw;
  }

  .resultItem {
    width: 41.66666vw;
    font-size: 1.83333vw;
  }

  .resultValue {
    width: 41.66666vw;
    font-size: 2.16666vw;
  }

  /* １か月あたりの保険税 補足 */
  .notes {
    width: 83.33333vw;
    font-size: 1.33333vw;
    padding-left: 1.25000vw;
  }

  /* 試算内容 */
  .subHeading {
    width: 83.33333vw;
    height: 2.66666vw;
    font-size: 2.00000vw;
    line-height: 2.66666vw;
  }

  /* 試算根拠 */
  .basisAll {
    margin-bottom: 1.66666vw;
  }

  .basisFlex {
    padding: 0 0.83333vw;
  }

  .basisItem {
    width: 20.41666vw;
    height: 3.33333vw;
    font-size: 1.66666vw;
    line-height: 3.33333vw;
    padding-left: 1.25000vw;
  }

  .basisValue {
    width: 20.41666vw;
    height: 3.33333vw;
    font-size: 1.66666vw;
    line-height: 3.33333vw;
    padding-right: 1.25000vw;
  }

  .basisItemCare {
    width: 20.41666vw;
    font-size: 1.33333vw;
    padding-bottom: 0.66666vw;
  }
  
  .basisValueCare {
    width: 20.41666vw;
    font-size: 1.33333vw;
    text-align: right;
    padding-bottom: 0.66666vw;
  }
  
  /* 試算内容内訳 */
  .contentItemSide {
    width: 20.83333vw;
    height: 3.33333vw;
    font-size: 1.66666vw;
    line-height: 3.33333vw;
    padding-left: 1.25000vw;
  }

  .contentItemWrap {
    width: 20.83333vw;
    height: 3.33333vw;
    font-size: 1.66666vw;
    line-height: 3.33333vw;
  }

  .resultContent {
    width: 20.83333vw;
    height: 3.33333vw;
    font-size: 1.66666vw;
    line-height: 3.33333vw;
    padding-right: 1.25000vw;
  }

  /* 税・料率 */
  /* 医療分 */
  .resultMedicalRate {
    width: 6.66666vw;
    height: 1.33333vw;
    font-size: 1.16666vw;
    line-height: 1.33333vw;
    left: 21.25000vw;
  }
  /* 支援金分 */
  .resultSupportRate {
    width: 6.66666vw;
    height: 1.33333vw;
    font-size: 1.16666vw;
    line-height: 1.33333vw;
    left: 0.41666vw;
  }
  /* 介護分 */
  .resultCareRate {
    width: 6.66666vw;
    height: 1.33333vw;
    font-size: 1.16666vw;
    line-height: 1.33333vw;
    left: 0.41666vw;
  }

  /* 税・料率 補足 */
  .contentNotes {
    width: 83.33333vw;
    font-size: 1.33333vw;
    padding-left: 1.25000vw;
  }

  /* 終了ボタンスタイル */
  .endButtonStyle {
    font-size: 1.66666vw;
    line-height: 1.66666vw;
    border-radius: 2.08333vw;
    padding: 1.25000vw 4.16666vw;
    margin-top: 4.16666vw;
    margin-bottom: 0.83333vw;
  }

  /* 終了ボタンで終了しない場合のメッセージ */
  #closeMessage {
    font-size: 1.33333vwx;
    line-height: 1.66666vw;
    color: #CC66B6;
    margin-bottom: 3.33333vw;
  }
}

/* -------------------------------------------------- */

/* -------------------- */
/* タブレット・スマホ表示 */
/* -------------------- */
@media (max-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 1.33333vw;
  }

  /* 市町村名 */
  #lgName {
    height: 6.40000vw;
    font-size: 4.00000vw;
    line-height: 6.40000vw;
    padding-right: 2.66666vw;
  }

  /* h1タイトル */
  .title {
    height: 13.33333vw;
    font-size: 6.40000vw;
    line-height: calc(13.33333vw - 6px);
  }

  /* サイトの説明 */
  .siteDescription {
    font-size: 4.26666vw;
    line-height: 7.46666vw;
    margin: 5.33333vw;
  }

  /* 注意事項 */
  .calcNotes {
    border-radius: 2.66666vw;
    margin: 5.33333vw;
  }

  /* 注意事項見出し */
  .calcNotesHeading {
    font-size: 5.33333vw;
    line-height: 8.00000vw;
    margin-top: 2.66666vw;
  }

  /* 注意事項説明 */
  .calcDescriptionList {
    font-size: 4.00000vw;
    line-height: 7.46666vw;
    margin-left: 7.20000vw;
    margin-right: 3.2000vw;
    margin-bottom: 2.66666vw;
  }

  /* 注意事項補足 */
  .calcSupplementList {
    font-size: 3.73333vw;
    line-height: 7.46666vw;
    margin-left: 4.00000vw;
  }

  /* Googleアナリティクス利用説明 */
  .gaAboutUse {
    font-size: 2.66666vw;
    line-height: 1.5;
    margin: 0 7.46666vw;
  }

  /* GA説明文アコーディオン */
  .accordionGA {
    margin-top: -4.00000vw;
  }
  .accordionGA summary {
    width: 50.66666vw;
    padding-bottom: 2.13333vw;
  }
  .accordionGA summary::after {
    width: 1.06666vw;
    height: 1.06666vw;
    margin-left: 0.83333vw;
    border-bottom: 0.53333vw solid #636d77b3;
    border-right: 0.53333vw solid #636d77b3;
  }
  .gaDescription {
    margin-bottom: 2.66666vw;
  }
  .accordionGA p {
    transform: translateY(-0.53333vw);
  }

  /* -------------------- */
  /* 情報入力欄等 共通 Start */
  /* -------------------- */
  /* h2見出し */
  .heading {
    height: 10.66666vw;
    font-size: 5.33333vw;
    line-height: 10.66666vw;
  }

  /* ボタンスタイル */
  .buttonStyle {
    font-size: 4.80000vw;
    line-height: 4.80000vw;
    border-radius: 5.60000vw;
    padding: 3.20000vw 6.40000vw;  
    margin-top: 2.66666vw;
    margin-bottom: 9.33333vw;
  }
  
  /* 情報入力問い */
  .questionMessage {
    font-size: 4.00000vw;
    line-height: 4.00000vw;
    margin-left: 1.66666vw;
    margin-bottom: 3.20000vw;
  }
  
  /* 情報入力selectBox */
  .selectBox {
    width: 66.66666vw;
    height: 9.33333vw;
    font-size: 4.26666vw;
    line-height: 8.80000vw;
    border-radius: 1.33333vw;
    margin-bottom: 2.16666vw;
  }

  .birthdate {
    height: 9.33333vw;
    margin-bottom: 2.16666vw;
  }

  /* 情報入力selectBoxDate */
  .selectBoxYear {
    width: calc(35.20000vw + 2px);
    height: 100%;
    font-size: 3.33333vw;
    line-height: 4.80000vw;
    border-radius: 1.33333vw;
  }

  .selectBoxDate {
    width: calc(4.80000vw + 2px);
    height: 100%;
    font-size: 3.33333vw;
    line-height: 4.80000vw;
    border-radius: 1.33333vw;
  }

  /* 情報入力各人見出し */
  .memberDataHeading {  
    font-size: 4.00000vw;
    margin-right: 1.66666vw;
    margin-left: 5.33333vw;
    margin-bottom: 2.13333vw;
  }

  /* 情報入力欄横並び */
  .inputFlex {
    height: 53.33333vw;
    display: block;
    margin-left: 1.86666vw;
    margin-bottom: 0.80000vw;
  }

  /* 情報入力欄ラベル */
  .memberDataLabel {
    height: 6.66666vw;
    font-size: 4.00000vw;
    margin-left: 5.33333vw;
  }
  /* 情報入力欄ラベル ２文字 */
  .memberDataLabel2Chara {
    font-size: 4.00000vw;
    text-align: left;
    width: 6em; /* ラベルの幅を設定 */
    margin-left: 5.33333vw;
  }
  /* 情報入力欄ラベル ３文字 */
  .memberDataLabel3Chara {
    font-size: 4.00000vw;
    text-align: left;
    width: 6em; /* ラベルの幅を設定 */
    word-wrap: break-word; /* テキストを折り返す */
    line-height: 1.2; /* 行間を調整 */
    margin-left: 5.33333vw;
  }
  /* 情報入力欄ラベル調整 */
  .memberdataLabelBirth {
    margin-top: 0.53333vw;
  }
  /* 情報入力欄単位 */
  .memberDataUnit {
    font-size: 3.20000vw;
  }

  /* 情報入力欄 */
  .inputBox {
    width: calc(51.20000vw + 20px);
    height: 9.33333vw;
    font-size: 4.80000vw;
    border-radius: 1.33333vw;
    padding: 2.13333vw;
    margin-bottom: 2.13333vw;
  }
  /* -------------------- */
  /* 情報入力欄等 共通 End */
  /* -------------------- */

  /* 試算情報入力説明 */
  .inputDescriptionList {
    font-size: 4.00000vw;
    line-height: 7.46666vw;
    margin: 7.46666vw;
  }
  
  /* 試算情報入力補足 */
  .inputSupplementList {
    font-size: 3.73333vw;
    line-height: 6.66666vw;
    margin-left: 4.00000vw;
  }
  
  /* ツールチップ */
  /* ツールチップ用クエッションマーク画像 */
  .hatena {
    width: 4.00000vw;
    height: 4.00000vw;  
  }
    /* ツールチップ用源泉徴収票画像 */
  .incomeimg {
    width: 77.33333vw;
  }
  /* ツールチップ１ */
  /* ツールチップ「支払金額」 */
  .tooltip .tooltiptext1 {
    width: 80.00000vw;
    height: 70.13333vw;
    font-size: 3.20000vw;
    line-height: 4.00000vw;
    padding: 1.33333vw;
    border-radius: 1.33333vw;
    top: 85%;
    left: 50%; 
    margin-left: -12.80000vw;
  }
  /* ツールチップ２ */
  /* ツールチップ「軽減条件」 */
  .tooltip .tooltiptext2 {
    width: 76.26666vw;
    height: 22.66666vw;
    font-size: 3.20000vw;
    line-height: 4.00000vw;
    padding: 1.33333vw;
    border-radius: 1.33333vw;
    bottom: 100%;
    left: 50%; 
    margin-left: -48.00000vw;
  }
  
  /* 加入者数入力欄 */
  #personSelect {
    margin-top: 2.08333vw;
    margin-bottom: 4.00000vw;
  }
  
  .personSelectMargin {
    margin-left: 9.33333vw;
  }
  
  /* 世帯主は加入者？ */
  .radioBtn {
    margin-left: 6.66666vw;
    margin-bottom: 4.80000vw;
  }
  
  /* radioBtnラベル */
  .radioBtnLabel {
    font-size: 4.80000vw;
    padding-left: 5.33333vw;
  }
  /* ラジオボタン */
  input[type=radio] {
    width: 4.00000vw;
    height: 4.00000vw;
    margin-top: -1.06666vw;
    margin-right: 1.06666vw;
  }
  
  /* 非自発的失業checkBox */
  .inputCheck {
    display: block;
    margin-left: 5.33333vw;
  }
  /* チェックボックス */
  input[type=checkbox] {
    width: 4.00000vw;
    height: 4.00000vw;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.53333vw;
    margin-left: 4.80000vw;
  }
  
  /* 加入者情報入力欄　非表示 */
  #memberData {
    margin-bottom: 4.80000vw;
  }

  /* 加入者情報 */
  .infoFlex {
    height: 12.00000vw;
    flex-wrap: wrap;
    margin-left: 0;
    margin-bottom: 3.20000vw;
  }
  .memberInfo {
    height: 3.73333vw;
    font-size: 3.33333vw;
    line-height: 3.73333vw;
    margin-top: 0;
    margin-left: 0;
    margin-right: calc(12% - 18px);
  }

  /* 生年月日入力エラーメッセージ */
  .errorMsgBirthDate {
    height: 2.13333vw;
    font-size: 3.33333vw;
    line-height: 4.00000vw;
    margin-left: 5.33333vw;
    position: relative;
    bottom: 10.13333vw;
    z-index: 1;
  }
  
  /* エラーメッセージ */
  .errorMessage {
    width: 94.66666vw;
    font-size: 4.26666vw;
    line-height: 5.33333vw;
  }
  
  /* 試算結果メイン */
  .mainResult {
    width: 97.33333vw;
    margin: 3.75000vw auto;
  }

  .resultFlex {
    height: 12.00000vw;
    padding: 0;
  }

  .resultItem {
    width: 53.33333vw;
    font-size: 4.00000vw;
    padding-left: 2.13333vw;
  }
  .resultItem br {
  display: inline;
  }

  .resultValue {
    width: 44.00000vw;
    font-size: 5.33333vw;
    padding-right: 2.13333vw;
  }

  /* １か月あたりの保険税 補足 */
  .notes {
    width: 97.33333vw;
    font-size: 2.66666vw;
    text-align: start;
    padding: 0 1.60000vw;
  }

  /* 試算内容 */
  .subHeading {
    width: 97.33333vw;
    height: 4.80000vw;
    font-size: 4.00000vw;
    line-height: 4.00000vw;
  }

  /* 試算根拠 */
  .basisAll {
    display: block;
    margin-bottom: 3.20000vw;
  }
  
  .basisAllFlex {
    margin-top: 1.25000vw;
  }

  .basisFlex {
    padding: 0 0;
    margin-bottom: 0;
  }

  .basisItem {
    width: 49.33333vw;
    height: 6.40000vw;
    font-size: 4.26666vw;
    line-height: 6.40000vw;
    padding-left: 2.13333vw;
  }

  .basisValue {
    width: 49.33333vw;
    height: 6.40000vw;
    font-size: 4.26666vw;
    line-height: 6.40000vw;
    padding-right: 2.13333vw;
  }

  .basisItemCare {
    width: 49.33333vw;
    font-size: 3.20000vw;
    padding-bottom: 2.13333vw;
  }
  
  .basisValueCare {
    width: 49.33333vw;
    font-size: 3.20000vw;
    text-align: right;
    padding-bottom: 2.13333vw;
  }

  /* 試算内容内訳 */
  .contentAllFlex {
    display: block;
  }

  .content {
    margin-bottom: 2.13333vw;
  }

  .contentFlexCenter {
    display: flex;
    justify-content: center;
  }

  .contentItemSide {
    width: 40.00000vw;
    height: 6.40000vw;
    font-size: 4.00000vw;
    line-height: 6.40000vw;
    padding-left: 2.13333vw;
  }

  .contentItemWrap {
    width: 56.00000vw;
    height: 6.40000vw;
    font-size: 4.00000vw;
    font-weight: 500;
    line-height: 6.40000vw;
    text-align: right;
    border-left: none;
    padding-right: 2.13333vw;
  }

  .resultContent {
    width: 56.00000vw;
    height: 6.40000vw;
    font-size: 4.00000vw;
    line-height: 6.40000vw;
    border-left: none;
    padding-right: 2.13333vw;
  }

  /* 試算内容区分 非表示 */
  .notContentItem {
    display: block;
  }

  /* 税・料率 */
  /* 医療分 */
  .resultMedicalRate {
    width: 13.33333vw;
    height: 6.40000vw;
    font-size: 2.66666vw;
    line-height: 6.40000vw;
    left: 16.00000vw;
  }
  /* 支援金分 */
  .resultSupportRate {
    width: 13.3333vw;
    height: 6.40000vw;
    font-size: 2.66666vw;
    line-height: 6.40000vw;
    left: 16.00000vw;
  }
  /* 介護分 */
  .resultCareRate {
    width: 13.3333vw;
    height: 6.40000vw;
    font-size: 2.66666vw;
    line-height: 6.40000vw;
    left: 16.00000vw;
  }
  /* 限度額 */
  .resultLimitRate {
    width: 21.33333vw;
    left: 32.00000vw;
  }

  /* 税・料率 補足 */
  .contentNotes {
    width: 97.33333vw;
    font-size: 2.66666vw;
    line-height: 1.8;
    padding: 0 1.60000vw;
    margin-top: -1.33333vw;
  }

  /* 終了ボタンスタイル */
  .endButtonStyle {
    font-size: 4.80000vw;
    line-height: 4.80000vw;
    border-radius: 5.60000vw;
    padding: 3.20000vw 6.40000vw;  
    margin-top: 6.40000vw;
    margin-bottom: 2.66666vw;
  }

  /* 終了ボタンで終了しない場合のメッセージ 表示位置 */
  .msgCenter {
    text-align: start;
  }
  /* 終了ボタンで終了しない場合のメッセージ */
  #closeMessage {
    font-size: 3.73333vw;
    line-height: 4.80000vw;
    margin-bottom: 6.66666vw;
  }
}
























