@charset "UTF-8";

body {
  margin: 0;
  font-family: Arial, "メイリオ", Meiryo, sans-serif;
}

.footer_fixed {
  min-height: 100vh;
  position: relative;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.height_fit {
  height: fit-content;
}

.header_img {
  height: 80px;
}

.footer_style {
  position: absolute;
  bottom: 0;
  height: 100px;
  width: calc(100% - 40px);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.footer_img {
  height: 60px;
}

.content {
  max-width: 1016px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.mg_8px {
  margin: 8px;
}

.large_heading {
  border-top: 1px solid #A6A6A6;
  border-bottom: 1px solid #A6A6A6;
  background-color: #D9D9D9;
}

.h1_style {
  margin: 0;
  padding: 30px 15px;
  font-size: xx-large;
}

.h2_style {
  padding: 10px 5px;
}

.small_heading {
  padding: 5px;
  border-left: 5px solid #A6A6A6;
}

.section_style {
  margin: 30px 0;
}

.button_maxi,
.button_dark {
  display: block;
  border: none;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 10px 2px #D9D9D9;
}

.button_dark {
  width: 75%;
  max-width: 280px;
  min-width: fit-content;
  margin: 0 auto;
  padding: 11.5px;
  border-radius: 25px;
  color: #FFF;
  background-color: #747474;
}

.button_dark:active {
  opacity: 0.8;
}

button,
a,
select,
label,
input[type=radio] {
  cursor: pointer;
}

.button_light {
  background-color: #D0D0D0;
}

.button_maxi {
  width: 50%;
  max-width: 224px;
  min-width: fit-content;
  margin: 0 auto;
  padding: 6.5px;
  border-radius: 20px;
  color: #000;
}

.button_maxi:active {
  opacity: 0.8;
}

.error_area {
  margin: 30px auto;
  padding: 0 15px;
  border: 1px solid #CC0001;
  background: #FFF0F0;
  color: #CC0001;
}

.flex_wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex_column_1,
.flex_column_3,
.flex_column_4 {
  padding: 8px;
  box-sizing: border-box;
}

.flex_column_1 {
  width: 100%;
}

.flex_column_3 {
  max-width: calc(1000px / 3);
  width: 100%;
}

.flex_column_4 {
  max-width: calc(1000px / 4);
  width: 100%;
}

.fw_600 {
  font-weight: 600;
}

.label_required {
  margin: 0 8px;
  color: #CC0001;
}

.input_error {
  border: 1px solid #FF0000 !important;
  background-color: #FFF0F0 !important;
}

select,
input[type="text"],
input[type="tel"] {
  padding: 15px;
}

.input_style {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  font-size: 16px;
  color: #000;
}

.input_required {
  background-color: #FBF2F2;
}

.note_style {
  color: #595959;
}

.error_note,
.note_style {
  margin-top: 0;
  font-weight: 400;
}

.flex_center {
  display: flex;
  align-items: center;
}

.pd_tl_8px {
  padding-top: 8px;
  padding-left: 8px;
}

.radio_area {
  border-top: 1px solid #000;
  padding-top: 15px;
}

.flex_style {
  display: flex;
}

.list_area {
  margin: 8px;
  padding: 8px;
  background-color: #F1F5F9;
  border: 1px solid #B7C6E7;
}

@media (pointer: coarse),
(pointer: none),
(max-width: 641px) {
  .file_drop_note {
    display: none;
  }
}

.file_drop_area {
  position: relative;
  max-width: 498px;
  width: 100%;
  height: 0;
  padding-top: calc(5 / 8 * 100%);
  margin: 20px auto;
}

@media (min-width: 514px) {
  .file_drop_area {
    width: 498px;
    height: calc(5 / 8 * 498px);
    padding-top: 0;
  }
}

.file_drop_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px dashed;
}

.text_center {
  text-align: center;
}

.display_none {
  display: none;
}

.grid_column_2,
.grid_column_3 {
  display: grid;
  align-items: center;
  border-top: 1px solid #D9D9D9;
}

@media (max-width: 576px) {

  .grid_column_2,
  .grid_column_3 {
    display: block;
  }
}

.grid_column_2 {
  grid-template-columns: 9fr 1fr;
}

.grid_column_3 {
  grid-template-columns: 3fr 6fr 1fr;
}

.grid_column_2>div,
.grid_column_3>div,
.grid_cell {
  padding: 15px;
  word-break: break-all;
}

.grid_end {
  border-bottom: 1px solid #D9D9D9;
}

.checkbox_style {
  position: relative;
}

.checkbox_style>input {
  opacity: 0;
}

.checkbox_style>svg {
  position: absolute;
  left: 0;
}

.checkbox_main {
  transition: stroke 0.3s;
}

.checkbox_style>input+svg>.checkbox_main {
  stroke: #FFF;
}

.checkbox_style>input:checked+svg>.checkbox_main {
  stroke: #000;
}

.mg_t_20px {
  margin-top: 20px;
}

.mg_b_20px {
  margin-bottom: 20px;
}

.text_end {
  text-align: end;
}

.button_mini {
  padding: 6px 10px;
  color: #000;
  font-size: 16px;
  white-space: nowrap;
  border: none;
  border-radius: 18px;
  text-decoration: none;
}

.button_mini:active {
  opacity: 0.8;
}

.mg_t_40px {
  margin-top: 40px;
}

.mg_b_40px {
  margin-bottom: 40px;
}

.number_frame {
  margin: 40px auto;
  text-align: center;
}

.number_border {
  border: 2px solid #D9D9D9;
}

.number_background {
  background-color: #D9D9D9;
}

.heir_method_display_none {
  display: none;
}

/*ダイアログ*/
.dialog_style {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px;
}

.dialog_style,
.dialog_style::backdrop {
  opacity: 0;
  transition: opacity 0.3s;
}

.dialog_style.show,
.dialog_style.show::backdrop {
  opacity: 1;
}

/* TOP画面 */
div#navigation-link-area {
  padding: 10px;
  width: 230px;
}

@media screen and (max-width:1515px) {
  div#navigation-link-area {
    max-width: 1016px;
  }
}

@media screen and (min-width:1516px) {
  div#navigation-link-area {
    position: fixed;
  }
}

div#navigation-link-area>ol>li.link {
  color: rgb(0, 112, 208);
  position: relative;
  cursor: pointer;
}

div#navigation-link-area>ol>li.link::before {
  content: "▼";
  position: absolute;
  left: -2.3em;
  top: calc(50% - 0.6em);
  color: inherit;
  transform: rotate(-90deg);
}

img#concept-image {
  width: 100%;
}

div#progress-bar-area {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

div#progress-bar-area div.arrowhead {
  padding: 10px;
  margin: 0 10px;
  text-align: center;
  flex: 1;
  background-color: rgb(200, 200, 200);
  position: relative;
}

div#progress-bar-area div.arrowhead:not(:last-child):after {
  content: "";
  position: absolute;
  right: -1em;
  top: 0px;
  background-color: inherit;
  height: 100%;
  width: 1em;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

div#procedure_button_area {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 20px 10px;
}

div#procedure_button_area>button {
  padding: 20px 5%;
  font-weight: bold;
  font-size: 1.3em;
  max-width: 400px;
  flex: 1;
  margin: 0 5px;
  appearance: none;
  border: 1px solid #000;
  background-color: #F0F0F0;
  color: #000;
}

div#procedure_button_area>button:active {
  opacity: 0.8;
}

div#procedure_button_area>button>.link {
  color: rgb(0, 112, 208);
  position: relative;
  padding-left: 1em;
}

div#procedure_button_area>button>.link::before {
  content: "▼";
  position: absolute;
  left: 0;
  top: calc(50% - 0.6em);
  color: inherit;
  transform: rotate(-90deg);
}

/*西暦和暦の一覧表*/
.grid_area_fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min-content, calc(920px/3)));
  justify-content: space-evenly;
  align-items: start;
  column-gap: 0px;
  margin: 8px;
}

.grid_area_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #000;
}

.grid_area_2>div,
.grid_area_3_7>div {
  padding: 5px;
  text-align: center;
}

.grid_area_2>div {
  border-top: 1px solid #000;
}

.grid_area_2>div:nth-child(n+1):nth-child(-n+2) {
  font-weight: 600;
  background-color: #B7C6E7 !important;
}

.grid_area_2>div:nth-child(odd),
.grid_area_3_7>div:nth-child(odd) {
  background-color: #F1F5F9;
}

/*書類の保存方法とアップロードについて*/
.img_style {
  width: 75%;
  border: 1px solid #000;
}

/*推奨環境について*/
.grid_area_3_7 {
  display: grid;
  grid-template-columns: 3fr 7fr;
  border-bottom: 1px solid #D9D9D9;
}

.grid_area_3_7>div {
  border-top: 1px solid #D9D9D9;
}

/*ラジオボタン*/

.label_style {
  display: flex;
  background-color: #FFF;
  border-radius: 5px;
  border: 1px solid #DDD;
  padding: 8px;
  box-sizing: border-box;
  align-items: center;
}

.radio_button {
  background-color: #F0F0F0;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #CCC;
  margin: 8px;
}

.label_style:has(.radio_button:checked) {
  background-color: #D0D0D0;
  border: 1px solid #747474;
  font-weight: 600;
}

.radio_button:checked {
  background-color: #747474;
  border: 1px solid #747474;
}

/***************new_style***************/
.shadow_style {
  border-radius: 10px;
  box-shadow: 0 1px 4px;
  margin: 20px 0;
  padding: 8px;
}

.min_w_48px {
  min-width: 48px;
}

.ul_style {
  list-style: none;
  padding-inline-start: 0;
}

.mg_t_80px {
  margin-top: 80px;
}

.left_area {
  background-color: #FFF2CC;
  border: 1px solid #FFC729;
  border-radius: 10px;
  padding: 8px;
}

.right_area {
  background-color: #DAE3F3;
  border: 1px solid #6087CC;
  border-radius: 10px;
  padding: 8px;
}

.button_next {
  display: block;
  border: none;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 10px 2px #D9D9D9;
  min-width: 50%;
  max-width: 224px;
  margin: 16px auto 16px 8px;
  padding: 6.5px;
  border-radius: 100px;
  color: #FFF;
  background-color: #FF0000;
}

.button_next:active {
  opacity: 0.8;
}

.pd_8px {
  padding: 8px;
}

.bt_dashed {
  border-top: 1px dashed #000;
}

.flex_column_procedure {
  max-width: calc(932px / 2);
  width: 100%;
}

.qr_style {
  object-fit: contain;
  width: 50%;
  margin-left: 8px;
}

/***************design_import***************/
/*新規追加　共通*/
.title_area {
  background-color: #FBFBFA;
  width: 100%;
  padding-bottom: 50px;
}

.background_area {
  background-color: #F4F4F3;
}

.section_box {
  background-color: #FFFFFF;
  padding: 40px 30px;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.box_area {
  background-color: #F7F7F7;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.img_area {
  text-align: center;
}

.footer_area {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*西和暦*/
.accordion-006 {
  max-width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  margin: 10px;
}

.accordion-006 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  font-weight: 600;
  cursor: pointer;
}

.accordion-006 summary::-webkit-details-marker {
  display: none;
}

.accordion-006 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #cfcfcf;
  border-right: 3px solid #cfcfcf;
  content: '';
  transition: transform .3s;
}

.accordion-006[open] summary::after {
  transform: rotate(225deg);
}
.accordion-006 div {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0px;
  color: #333333;
  transition: transform .5s, opacity .5s;
}

.accordion-006[open] div {
  transform: none;
  opacity: 1;
}

.grid_title {
  background-color: #F7F7F7;
}

.grid_area_fit3 {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(min-content, calc(920px/3)));
  justify-content: space-evenly;
  align-items: start;
  gap: 20px;
  margin: 8px;
}

.grid_area {
  display: grid;
  grid-template-columns: repeat(2, 65%);
  width: 100%;
  text-align: left;
}

@media (max-width: 1031px) {
  .grid_area {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    width: 100%;
    text-align: left;
    padding: 0px;
  }
}

.grid_area>div {
  padding: 5px 0px;
  text-align: center;
  width: 100%;
}

.grid_area>div {
  border-top: 2px solid #EBEBEB;
}

.grid_area>div:nth-child(4n+1),
.grid_area>div:nth-child(4n+2) {
  background-color: #F7F7F7;
}

.background_color {
  background-color: #F7F7F7;
  ;
}

/*相続のお手続きにあたって*/
.box_010 {
  border-top: 2px solid #EBEBEB;
}

.flex_wrap_1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 1031px) {
  .flex_wrap_1 {
    flex-direction: column;
    align-items: center;
    justify-content: initial;
  }
}

.left_area_1 {
  background-color: #FFFFFF;
  border-radius: 10px;
  max-width: 457px;
  margin: 8px 0;
}

@media (max-width: 1031px) {
  .left_area_1 {
    width: 100%;
  }
}

.right_area_1 {
  background-color: #FFFFFF;
  border-radius: 10px;
  max-width: 457px;
  margin: 8px 0;
}

@media (max-width: 1031px) {
  .right_area_1 {
    width: 100%;
  }
}

.next_button {
  display: block;
  border: none;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 10px 2px #D9D9D9;
  min-width: 50%;
  max-width: 300px;
  margin:10% 10% 10% 20%;
  padding: 20px 20px 20px 80px;
  border-radius: 10px;
  color: #FFF;
  background-color: #666666;
  text-align: center;
}

@media (max-width: 1031px) {
  .next_button {
    display: block;
    border: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 0 10px 2px #D9D9D9;
    min-width: 50%;
    max-width: 300px;
    margin:10% 10% 10% 15%;
    padding: 20px 20px 20px 50px;
    border-radius: 10px;
    color: #FFF;
    background-color: #666666;
    text-align: center;
  }
  
}

.head-border {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.head-border:before,
.head-border:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #EBEBEB;
}

.head-border:before {
  margin-right: 1rem;
}

.head-border:after {
  margin-left: 1rem;
}

/*相続手続きに必要な書類*/
.attention_area {
  text-align: center;
  background-color: #FBF2F2;
  margin-top: 30px;
  margin-left: 20px;
}

.attention_area>p {
  border-top: 1px solid #EBEBEB;
  color: #B20000;
  font-weight: bold;
  padding-top: 40px;
  padding-bottom: 20px;
}

/*必要書類*/
.box_area_040 {
  background-color: #F7F7F7;
  border-radius: 10px;
  margin: 20px;
  display: flex;
  width: 200px;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
}

@media (max-width: 348px) {
  .box_area_040 {
    width: 100%;
  }
}

.ul_style_040 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
}


.area_tilte {
  text-align: left;
}


.colum_area {
  margin: 8px;
  font-weight: bold;
}

/*
.min_w_48px_040 {
  min-width: 48px;
}
*/

.customer_situation {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin: 10px;
  padding: 10px 10px 10px 30px;
  box-sizing: border-box;
  width: 100%;
}

.customer_situation_radio {
  appearance: none;
}


.customer_situation::before,
.customer_situation::after {
  content: "";
  display: block;
  position: absolute;
}


.customer_situation::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #ddd;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}

.customer_situation::after {
  border-bottom: 2px solid #FF0000;
  border-left: 2px solid #FF0000;
  opacity: 0;
  height: 6px;
  width: 10px;
  transform: rotate(-45deg);
  top: 40%;
  left: 10px;
}

.customer_situation_radio:checked+.customer_situation::after {
  opacity: 1;
}

.customer_situation_radio:checked+.customer_situation {
  background-color: #FBF2F2;
  border: 2px solid #FF0000;
  font-weight: bold;
}

/*可変色クラス追加*/
.text_dark {
  color: #000;
}

/*文字サイズ追加*/
.midium_text{
  font-size: x-large;
}

/*ピクトグラム追加*/
.icon_area{
  text-align: center;
  margin-top: 40px;
  margin-bottom: 32px;
}

.button_icon{
  display: inline-block;
  vertical-align: middle;
  margin-left: 80px;
}

@media (max-width: 1031px) {
  .button_icon{
    display: inline-block;
    vertical-align: middle;
    margin-left: 50px;
  }
}

.attention{
  color: #CC0001;
}
