:root {
  --f-12: 0.75rem;
  --f-14: 0.875rem;
  --f-16: 1rem;
  --f-18: 1.125rem;
  --f-20: 1.25rem;
  --f-22: 1.375rem;
  --f-24: 1.5rem;
  --f-30: 1.875rem;
  --f-34: 2.125rem;
}
.--text-center {
  text-align: center;
}
@media only screen and (min-width: 1261px) {
  #contentsinner {
    margin: 0;
  }
}

@media only screen and (max-width: 1260px) {
  #contents {
    padding-top: 20px;
  }
}

/* Style2 */
.m-ttl01 {
  margin-top: 48px;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.5;
}
.m-ttl01.--icn-bullet {
  position: relative;
  margin-top: 32px;
  padding-left: 20px;
}
.m-ttl01.--icn-bullet::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #BB1A1A;
}

@media only screen and (max-width: 640px) {
  .m-ttl01 {
    margin-top: 32px;
    font-size: 1.25rem;
  }
  .m-ttl01.--icn-bullet {
    margin-top: 20px;
  }
  .m-ttl01.--icn-bullet::before {
    top: 9px;
  }
}


.m-lead {
  margin-top: 8px;
  font-weight: 300;
  line-height: 1.8;
}
@media only screen and (max-width: 640px) {
  .m-lead {
    margin-top: 4px;
  }
}


.m-flow {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.m-flow__item {
  position: relative;
  display: flex;
  justify-content: stretch;
  min-width: 154px;
  align-items: center;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
}
.m-flow__item:first-child {
  min-width: 160px;
}
.m-flow__item:not([class*="--type-"]) {
  color: #d9d9d9;
}
.m-flow__item::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 42px;
  height: 42px;
  background: no-repeat center / contain;
  background-image: url(/med/img/add/icn_flow_disabled.png);
}
.m-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(calc(100% + 26px), -50%);
  right: 0;
  width: 140px;
  height: 3px;
  border-radius: 3px;
  background-color: #D9D9D9;
}
.m-flow__item.--type-finished::after {
  background-color: #BB1919;
}
.m-flow__item.--type-active::before {
  background-image: url(/med/img/add/icn_flow_active.png);
}
.m-flow__item.--type-finished::before {
  background-image: url(/med/img/add/icn_flow_finished.png);
}
@media only screen and (max-width: 1200px) {
  .m-flow__item::before {
    width: calc(100vw * 42 / 1200);
    height: calc(100vw * 42 / 1200);
  }
  .m-flow__item:not(:last-child)::after {
    transform: translateX(calc(100% + 20px));
    width: calc((100vw - 50px - 154px * 3 - 160px - 20px * 6) / 3);
  }
}
@media only screen and (max-width: 960px) and (min-width: 641px) {
  .m-flow__item {
    min-width: 130px;
    font-size: var(--f-18);
  }
  .m-flow__item:first-child {
    min-width: 130px;
  }
  .m-flow__item::before {
    width: 24px;
    height: 24px;
  }
  .m-flow__item:not(:last-child)::after {
    transform: translateX(calc(100% + 10px));
    width: calc((96vw - 130px * 4 - 10px * 6) / 3);
  }
}
@media only screen and (max-width: 640px) {
  .m-flow {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
  }
  .m-flow__item {
    flex-direction: column;
    align-items: center;
    min-width: initial;
    width: calc((100% - 18px * 3) / 4);
    font-size: 0.875rem;
  }
  .m-flow__item:not(:first-child) {
    margin-left: 18px;
  }
  .m-flow__item:first-child {
    min-width: initial;
  }
  .m-flow__item::before {
    margin: 0 0 8px;
    width: 32px;
    height: 32px;
  }
  .m-flow__item:not(:last-child)::after {
    top: 15px;
    transform: translateX(100%);
    right: 2px;
    width: 22px;
    height: 2px;
    border-radius: 2px;
  }
}

.m-btn {
  position: relative;
  display: block;
  padding: 18px 30px;
  border-radius: 6px;
  background-color: #BB1A1A;
  color: #fff;
  border: 1px solid;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  transition: 0.3s all linear;
  transition-property: background-color, color;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}
.m-btn[disabled] {
  cursor: default;
}
.m-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 28px;
  height: 36px;
  background-color: #fff;
  mask: no-repeat url(/med/img/add/icn_arw_r_wt.svg) center / contain;
  -webkit-mask: no-repeat url(/med/img/add/icn_arw_r_wt.svg) center / contain;
  transition: 0.3s background-color linear;
}
.m-btn:visited,
.m-btn:link {
  color: #fff;
}
.m-btn:hover {
  color: #BB1A1A;
  background-color: #fff;
  text-decoration: none;
}
.m-btn:hover::after {
  background-color: #BB1A1A;
}
.m-btn.--bgc-wt {
  background-color: initial;
  color: #6E0606;
}
.m-btn.--bgc-wt::after {
  background-color: #6E0606;
}
.m-btn.--bgc-wt:visited {
  color: #6E0606;
}
.m-btn.--bgc-wt:hover {
  color: #fff;
  background-color: #6E0606;
}
.m-btn.--bgc-wt:hover::after {
  background-color: #fff;
}
.m-btn.--type-back::after {
  right: auto;
  transform: translateY(-50%) rotate(180deg);
  left: 8px;
}
@media only screen and (max-width: 640px) {
  .m-btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: var(--f-16);
  }
  .m-btn::after {
    right: 6px;
  }
  .m-btn.--type-back::after {
    left: 6px;
  }
}

.m-count {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.m-count__label {
  margin-right: 12px;
  font-weight: 300;
  line-height: 1.8;
}
.m-count__field {
  display: flex;
}
.m-count__input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  padding: 9px;
  border: 1px solid #DADADA;
  border-inline-width: 0;
  color: #000;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-weight: 600;
  font-size: var(--f-16);
  line-height: 1.5;
  box-sizing: border-box;
  text-align: center;
  width: 60px;
  color: #bb1a1a;
}
.m-count__input[value^="0"] {
  color: inherit;
}
.m-count__btn {
  position: relative;
  -webkit-appearance: none;
	background: none;
	border: 1px solid #DADADA;
	border-radius: 0;
	color: #fff;
  font-size: 0;
  width: 44px;
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0;
	text-decoration: none;
}
.m-count__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 2px;
  background-color: #000;
}
.m-count__btn.--icn-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 18px;
  height: 2px;
  background-color: #000;
}


.m-checkBox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.m-checkBox__item {
  display: flex;
  align-items: center;
  padding: 10px 18px 10px 22px;
  min-height: 58px;
  border-radius: 2px;
  background: #FCFCFC;
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  box-sizing: border-box;
}
.m-checkBox__item > input {
	display: none;
}
.m-checkBox__item > input + span {
  flex: 1;
	display: block;
	position: relative;
  padding-right: 22px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25;
}
.m-checkBox__item > input + span::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 22px;
  width: 22px;
  border-radius: 2px;
	background: #EEE;
}
.m-checkBox__item > input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  width: 18px;
  height: 13px;
  background: url(/med/img/add/icn_check.svg) no-repeat center / contain;
}
.m-checkBox__item > input:checked + span {
  color: #BB1A1A;
}
.m-checkBox__item > input:checked + span::before {
  background-color: #BB1A1A;
}
@media only screen and (min-width: 641px) {
  .m-checkBox.--pc-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 640px) {
  .m-checkBox {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .m-checkBox__item {
    padding: 7px 10px;
    min-height: 61px;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.06);
  }
  .m-checkBox__item > input + span {
    padding-right: 20px;
    font-size: var(--f-12);
  }
  .m-checkBox__item > input + span::before {
    height: 16px;
    width: 16px;
  }
  .m-checkBox__item > input+span::after {
    width: 12px;
    height: 9px;
  }
}


.m-article__panel:not(:first-child) .m-article__inr {
  padding-top: 40px;
}
.m-article__panel:not(:last-child) .m-article__inr {
  background-image: repeating-linear-gradient(90deg, #D9D9D9, #D9D9D9 2px, transparent 2px, transparent 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  border-radius: 1px;
}
a.m-article__inr {
  display: flex;
  padding-bottom: 40px;
  text-decoration: none;
  color: inherit;
}
.m-article__head {
  flex-basis: 300px;
  margin-right: 32px;
  background: no-repeat top left / contain;
}
a:hover .m-article__head {
  opacity: 0.8;
}
.m-article__body {
  flex: 1 0 50%;
}
.m-article__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.m-article__catList {
  padding: 4px 6px;
  border: 1px solid #CCCCCC;
  font-weight: 300;
  border-radius: 4px;
  font-size: var(--f-12);
  line-height: 1.2;
}
.m-article__ttl {
  margin-top: 14px;
  font-size: var(--f-22);
  font-weight: 600;
  line-height: 1.5;
}
.m-article__txt {
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: 100px;
}
.m-article__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 600;
  font-size: var(--f-14);
  line-height: 1;
}
.m-article__btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(/med/img/add/icn_circle_arw_r.svg) no-repeat center / contain;
}
/* SP
----------------------------------*/
@media screen and (max-width: 640px) {
  .m-article__panel:not(:first-child) .m-article__inr {
    padding-top: 28px;
  }
  .m-article__panel:not(:last-child) .m-article__inr {
    padding-bottom: 20px;
  }
  a.m-article__inr {
    display: block;
    padding-bottom: 0;
  }
  .m-article__head {
    aspect-ratio: 295 / 197;
    margin-right: 0;
  }
  .m-article__body {
    padding: 18px 6px 6px;
  }
  .m-article__ttl {
    margin-top: 12px;
    font-size: var(--f-18);
  }
  .m-article__txt {
    font-size: var(--f-14);
    line-height: 1.7;
  }
  .m-article__btn {
    margin-top: 8px;
  }
  .m-article__btn::after {
    width: 40px;
    height: 40px;
  }
}


.m-catTabList {
  --color-red: #BB1A1A;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 8px;
}
.m-catTabList__inr {
  display: block;
}
.m-catTabList__inr input {
  display: none;
}
.m-catTabList__inr input + span {
  color: inherit;
  font-weight: 600;
  font-size: var(--f-14);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 17px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #D9D9D9;
  transition: all 0.3s linear;
  border-radius: 80px;
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  cursor: pointer;
}
.m-catTabList__inr input:checked + span {
  pointer-events: none;
  font-weight: bold;
  color: #fff;
  border: 1px solid var(--color-red);
  background-color: var(--color-red);
}
.m-catTabList__inr:hover input + span {
  color: #fff;
  border: 1px solid var(--color-red);
  background-color: var(--color-red);
}
.m-catTabList__item + .m-catTabList__item .m-catTabList__inr {
  margin-left: -1px;
}
/* SP
----------------------------------*/
@media screen and (max-width: 640px) {
  .m-catTabList {
    grid-template-columns: repeat(4, auto);
    margin-top: 10px;
    margin-bottom: 24px;
    gap: 4px;
  }
  .m-catTabList__inr input + span {
    padding: 12px 14px;
  }
}


.c-acc__item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
.c-acc__btn {
  position: relative;
  padding: 22px 52px 22px 36px;
  background-color: #F9F9F9;
  font-weight: 600;
  font-size: var(--f-18);
  line-height: 1.5;
  cursor: pointer;
}
.c-acc__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  width: 18px;
  height: 11px;
  background-color: #BB1A1A;
  mask: url(/med/img/add/icn_arw_b_rd.svg) no-repeat center / contain;
  -webkit-mask: url(/med/img/add/icn_arw_b_rd.svg) no-repeat center / contain;
  transition: transform 0.3s linear;
}
.c-acc__item.js-open .c-acc__btn::after {
  background-color: #333;
  transform: translateY(-50%) rotate(180deg);
}
.c-acc__box {
  display: none;
  height: 0;
  min-height: 0;
}
.c-acc__boxInr {
  padding: 24px 36px 30px;
  background-color: #fff;
}
@media only screen and (max-width: 640px) {
  .c-acc__item {
    border-radius: 4px;
  }
  .c-acc__btn {
    padding: 13px 11px;
    font-size: 0.875rem;
  }
  .c-acc__btn::after {
    right: 10px;
    width: 14px;
    height: 9px;
  }
  .c-acc__boxInr {
    padding: 8px;
  }
}



.c-container {
  margin-top: 30px;
  background-color: #fff;
}
.c-container + * {
  margin-top: 32px;
}
.c-container__head {
  padding: 38px 40px 21px;
  border-bottom: 3px solid #F9F9F9;
}
.c-container__head > * {
  margin-top: 0 !important;
}
.c-container__body {
  padding: 40px;
}
.c-container__body > *:first-child {
  margin-top: 0;
}
.c-container__btn {
  max-width: 320px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .c-container {
    margin-top: 16px;
  }
  .c-container + * {
    margin-top: 16px;
  }
  .c-container__head {
    padding: 24px 20px 21px;
    border-bottom: 2px solid #F9F9F9;
  }
  .c-container__body {
    padding: 20px 20px 32px;
  }
  .c-container__btn {
    max-width: initial;
    margin: 32px 0 0;
  }
}


.mt32 {
  margin-top: 32px !important;
}
.mt64 {
  margin-top: 64px !important;
}
@media only screen and (max-width: 640px) {
  .mt32-sp {
    margin-top: 32px !important;
  }
}


.u-box {
  margin-top: 40px;
  padding: 48px 20px 64px;
  background-color: #fff;
}
.u-box__ttl {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.5;
  text-align: center;
}
.u-box__btn {
  max-width: 540px;
  margin: 20px auto 0;
}
.u-box.--evenly {
  margin-top: 24px;
  padding: 40px;
}
.u-box.--evenly .u-box__btn {
  max-width: 317px;
  margin-top: 16px;
}
@media only screen and (max-width: 640px) {
  .u-box {
    margin-top: 32px;
    padding: 24px 24px 32px;
  }
  .u-box__ttl {
    font-size: 1.25rem;
  }
  .u-box__btn {
    max-width: initial;
    margin: 8px auto 0;
  }
  .u-box.--evenly {
    margin-top: 18px;
    padding: 20px;
  }
  .u-box.--evenly .u-box__btn {
    max-width: initial;
    margin-top: 12px;
  }
}


.u-materialRequest {
  margin-top: 24px;
}
.u-materialRequest__item {
  display: flex;
  padding: 40px;
  background-color: #fff;
}
.u-materialRequest__item:not(:first-child) {
  margin-top: 16px;
}
.u-materialRequest__thumb {
  width: 360px;
}
.u-materialRequest__textarea {
  flex: 1;
  margin-left: 32px;
}
.u-materialRequest__date {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialRequest__text {
  position: relative;
  padding-bottom: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.u-materialRequest__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #d39a9a, #d39a9a 4px, transparent 4px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  border-radius: 1px;
}
.u-materialRequest__number {
  margin-top: 16px;
  color: #888;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialRequest__cat {
  display: flex;
  flex-wrap: wrap;
  margin: 16px -8px -8px 0;
}
.u-materialRequest__cat > p {
  margin: 0 8px 8px 0;
  padding: 5px 6px 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-weight: 300;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialRequest__input {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.u-materialRequest__count .m-count__input {
  width: 70px;
}
.u-materialRequest__reset {
  padding: 9px 23px;
  border-radius: 4px;
  border: 1px solid #DADADA;
  color: #888;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  .u-materialRequest {
    margin-top: 18px;
  }
  .u-materialRequest__item {
    display: block;
    padding: 20px;
  }
  .u-materialRequest__item:not(:first-child) {
    margin-top: 0;
    position: relative;
  }
  .u-materialRequest__item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background-image: repeating-linear-gradient(90deg, #D9D9D9, #D9D9D9 4px, transparent 4px, transparent 6px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    border-radius: 1px;
  }
  .u-materialRequest__thumb {
    display: none;
  }
  .u-materialRequest__textarea {
    margin-left: 0;
  }
  .u-materialRequest__date {
    margin-bottom: 4px;
  }
  .u-materialRequest__text {
    padding-bottom: 14px;
  }
  .u-materialRequest__number {
    margin-top: 16px;
    color: #888;
    font-size: var(--f-12);
    line-height: 1;
  }
  .u-materialRequest__cat {
    margin-top: 10px;
  }
  .u-materialRequest__input {
    display: block;
    margin-top: 24px;
  }
  .u-materialRequest__reset {
    display: block;
    width: 100%;
    margin: 16px 0 0;
  }
}


.u-form {
  margin-top: 18px;
}
.u-form .smpForm {
  padding: 0;
}
.u-form .smpForm .ss_contents fieldset {
  border-color: #eee;
  border-top: none;
  border-bottom: none;
}
.u-form .smpForm .ss_contents fieldset:last-child {
  border-bottom: 1px solid #eee;
}
.u-form .ss_visitor_form .ss_field .ss_form_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  padding: 32px 32px;
  background-color: #F6F6F6;
  border-right: 1px solid #EEE;
  font-weight: 600;
  line-height: 1.5;
}
.u-form.--type-confirm .ss_visitor_form .ss_field .ss_form_title {
  padding: 32px 36px;
  align-items: start;
}
.u-form .ss_visitor_form .ss_field .ss_form_title .ss_user_notnull {
  padding: 6px 12px;
  border-radius: 6px;
  background-color: #BB1A1A;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
}
.u-form .ss_visitor_form .ss_field .ss_grid {
  align-items: center;
  gap: 8px;
  width: calc(100% - 300px);
  border-top: 1px solid #eee;
  padding: 31px;
  font-size: var(--f-16);
}
.u-form.--state-confirm .ss_visitor_form .ss_field .ss_grid {
  padding: 32px 48px;
  font-size: 0.875rem;
}
.u-form .ss_visitor_form .ss_field:nth-child(odd) {
  background-color: #fff;
}
.u-form .smpForm .ss_field:hover,
.u-form .smpForm .ss_enquete_field:hover {
  background-color: #fff;
}
.u-form .ss_visitor_form .ss_field .ss_grid input {
  -moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid #EEE;
	padding: 10px 15px;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
  font-weight: 300;
	font-size: 0.875rem;
  line-height: 1;
	width: 100%;
  box-sizing: border-box;
}
.u-form .smpForm .ss_required_field input:focus {
  border: 1px solid #EEE;
  box-shadow: none;
  outline: 0;
}
.u-form .smpForm .ss_required_field input:-moz-read-only {
  border: none;
}
.u-form .smpForm .ss_required_field input:read-only {
  border: none;
  background: rgb(238, 238, 238);
}
.u-form .ss_visitor_form .ss_field .ss_grid .ss_input {
  flex: 1;
}
.u-form .ss_visitor_form .ss_field .ss_grid select {
	background-color: transparent;
	background-image: none;
	border: 1px solid #EEE;
	padding: 10px 15px;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
  font-weight: 300;
	font-size: 0.875rem;
  line-height: 1;
	width: 100%;
  box-sizing: border-box;
}
.u-form textarea {
  width: 100%;
  height: 115px;
  box-sizing: border-box;
}
.u-form .zip_grid {
  display: flex;
  justify-content: start;
  align-items: center;
}
.u-form .zip_grid .zip1 {
  width: 6em !important;
}
.u-form .zip_grid .zip2 {
  width: 8em !important;
}
.u-form .zip_grid .sep {
  padding: 0 15px;
}
.u-form input[type="radio"] {
	display: none;
}
.u-form input[type="radio"] + label {
  min-width: 72px;
  box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
  margin: 0;
  padding-left: 28px;
	position: relative;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1;
  margin: 0 20px 10px 0;
}
.u-form input[type="radio"] + label::before {
	background: #fff;
	border: 1px solid #CCC;
	border-radius: 50%;
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
  box-sizing: border-box;
}
.u-form input[type="radio"] + label::after {
	-webkit-transform: translateY(-50%);
	background: #BB1A1A;
	border-radius: 50%;
	content: "";
	height: 12px;
	left: 4px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
}
.u-form input[type="radio"]:checked + label::before {
	border-color: #BB1A1A;
}
.u-form input[type="radio"]:checked + label::after {
	opacity: 1;
}
.u-form .ss_visitor_form .ss_field .ss_grid .ss_input:has(input[type="radio"]) {
  flex-basis: 380px;
  margin: 0 -20px -10px 0;
}
.u-form .ss_visitor_form .ss_field .ss_grid .ss_input:has(input[type="radio"]) + .ss_input {
  flex-basis: 460px;
}

.u-form input[type="checkbox"] {
	display: none;
}
.u-form input[type="checkbox"] + label {
  min-width: 72px;
  box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
  margin: 0;
  padding-left: 28px;
	position: relative;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1;
  margin: 0 20px 10px 0;
}
.u-form input[type="checkbox"] + label::before {
	background: #fff;
	border: 1px solid #CCC;
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
  box-sizing: border-box;
}
.u-form input[type="checkbox"] + label::after {
	-webkit-transform: translateY(-50%);
	background: #BB1A1A;
	content: "";
	height: 12px;
	left: 4px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
}
.u-form input[type="checkbox"]:checked + label::before {
	border-color: #BB1A1A;
}
.u-form input[type="checkbox"]:checked + label::after {
	opacity: 1;
}

.u-form .error_message {
  margin-bottom: 10px;
  display: none;
}
.u-form .error_message .ss_warning_label,
.u-form .error_message .ss_error_msg {
  vertical-align: middle;
}


.u-form .smpForm .ss_btnArea {
  display: flex;
  justify-content: center;
  gap: 16px;
  height: auto;
  margin-top: 48px;
}
.u-form .smpForm .ss_btnArea > * {
  flex-basis: 318px;
}
.u-form .ss_btnArea input[type=button] {
  display: flex;
  width: 100%;
  height: auto;
  font-size: 1.25rem;
  justify-content: center;
  align-items: center;
  border: none;
  margin: 0;
  cursor: pointer;
  background: #BB1A1A;
  border: 1px solid #BB1A1A;
  font-weight: 600;
  line-height: 1.5;
  padding: 18px 30px;
  color: #fff;
  border-radius: 6px;
}
.u-form .ss_btnArea p:has(input[type=button]) {
  position: relative;
  transition: 0.3s all linear;
  transition-property: background-color, color;
}
.u-form .ss_btnArea p:has(input[type=button])::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 28px;
  height: 36px;
  background-color: #fff;
  mask: no-repeat url(/med/img/add/icn_arw_r_wt.svg) center / contain;
  -webkit-mask: no-repeat url(/med/img/add/icn_arw_r_wt.svg) center / contain;
  transition: 0.3s background-color linear;
}
.u-form .ss_btnArea p:has(input[type=button]):hover input {
  color: #BB1A1A;
  background-color: #fff;
}
.u-form .ss_btnArea p:has(input[type=button]):hover::after {
  background-color: #BB1A1A;
}
.u-form .ss_btnArea p:has(input[type=button]:disabled) {
  pointer-events: none;
}
.u-form .ss_btnArea input[type=button]:disabled {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}
@media only screen and (max-width: 767px) {
  .u-form .smpForm {
    width: 100%;
  }
  .u-form .smpForm .ss_contents fieldset {
    border-bottom: 1px solid #eee;
  }
  .u-form .smpForm .ss_contents fieldset:not(first-child) {
    margin-top: 8px;
  }
  .u-form .ss_visitor_form .ss_field .ss_form_title {
    width: 100%;
    padding: 10px 16px;
    border-right: none;
    font-size: 0.875rem;
  }
  .u-form.--type-confirm .ss_visitor_form .ss_field .ss_form_title {
    padding: 10px 16px;
  }
  .u-form .ss_visitor_form .ss_field .ss_form_title .ss_user_notnull {
    padding: 5px 12px 6px;
    font-size: var(--f-12);
  }
  .u-form .ss_visitor_form .ss_field .ss_grid {
    display: flex;
    width: auto;
    padding: 16px;
  }
  .u-form.--state-confirm .ss_visitor_form .ss_field .ss_grid {
    padding: 18px 16px;
    font-size: var(--f-16);
    line-height: 1.8;
  }
  .u-form .ss_visitor_form .ss_field:nth-child(odd) {
    background-color: #fff;
  }
  .u-form .smpForm .ss_field:hover,
  .u-form .smpForm .ss_enquete_field:hover {
    background-color: #fff;
  }
  .u-form .ss_visitor_form .ss_field .ss_grid input,
  .u-form .ss_visitor_form .ss_field .ss_grid select {
    padding: 5px 8px;
    font-size: var(--f-16);
    line-height: 1.5;
  }
  .u-form input[type="radio"] + label {
    min-width: calc((100% - 12px) / 3);
    margin: 0 0 14px;
  }
  .u-form .ss_visitor_form .ss_field .ss_grid:has(input[type="radio"]) {
    display: block;
  }
  .u-form .ss_visitor_form .ss_field .ss_grid .ss_input:has(input[type="radio"]) {
    margin: 0 0 -14px;
  }
  .u-form .ss_visitor_form .ss_field .ss_grid .ss_input:has(input[type="radio"]) + .ss_input {
    margin: 8px 0 0;
  }
  .u-form .smpForm .ss_btnArea {
    flex-direction: column-reverse;
    gap: 8px;
    height: auto;
    margin-top: 32px;
  }
  .u-form .smpForm .ss_btnArea > * {
    flex-basis: initial;
  }
}

@media only screen and (max-width: 640px) {
  .u-form .ss_btnArea input[type=button] {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: var(--f-16);
  }
  .u-form .ss_btnArea p:has(input[type=button]) {
    position: relative;
    transition: 0.3s all linear;
    transition-property: background-color, color;
  }
  .u-form .ss_btnArea p:has(input[type=button])::after {
    right: 6px;
  }
}


.u-materialConfirm {
  margin-top: 24px;
  padding: 40px;
  background-color: #fff;
}
.u-materialConfirm__item:not(:first-child) {
  padding-top: 24px;
  position: relative;
}
.u-materialConfirm__item:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #D9D9D9, #D9D9D9 2px, transparent 2px, transparent 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  border-radius: 1px;
}
.u-materialConfirm__item:not(:last-child) {
  padding-bottom: 24px;
}
.u-materialConfirm__textarea {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  gap: 0 6px;
}
.u-materialConfirm__date {
  grid-area: 1 / 1 / 2 / 2;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialConfirm__text {
  grid-area: 2 / 1 / 3 / 3;
  font-weight: 600;
  line-height: 1.5;
}
.u-materialConfirm__info {
  grid-area: 3 / 1 / 4 / 4;
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.u-materialConfirm__cat {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px -8px 0;
}
.u-materialConfirm__cat > p {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 5px 6px 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-weight: 300;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialConfirm__number {
  flex-shrink: 0;
  margin-left: 16px;
  color: #888;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialConfirm__order {
  justify-self: flex-end;
  grid-area: 2 / 3 / 3 / 4;
  display: flex;
  align-items: center;
}
.u-materialConfirm__orderLabel {
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1.8;
}
.u-materialConfirm__orderNum {
  min-width: 76px;
  color: #BB1A1A;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .u-materialConfirm {
    margin-top: 18px;
    padding: 20px;
  }
  .u-materialConfirm__item:not(:first-child) {
    padding-top: 20px;
  }
  .u-materialConfirm__item:not(:last-child) {
    padding-bottom: 20px;
  }
  .u-materialConfirm__date {
    margin-bottom: 4px;
    line-height: 1.5;
  }
  .u-materialConfirm__textarea {
    display: block;
  }
  .u-materialConfirm__info {
    display: block;
    margin-top: 8px;
  }
  .u-materialConfirm__number {
    margin: 8px 0 0;
  }
  .u-materialConfirm__order {
    justify-self: start;
    margin-top: 12px;
  }
  .u-materialConfirm__orderNum {
    min-width: initial;
    margin: 0 12px;
  }
}


.u-materialFilter {
  margin-top: 48px;
  padding: 32px 40px;
  background-color: #fff;
}
.u-materialFilter__ttl {
  position: relative;
  padding-left: 36px;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
}
.u-materialFilter__ttl::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 24px;
  height: 16px;
  background: url(/med/img/add/icn_filter.svg) no-repeat center / contain;
}
.u-materialFilter__cts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
.u-materialFilter__btnWrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.u-materialFilter__btn {
  flex-basis: 270px;
	-webkit-appearance: none;
	border-radius: 6px;
	cursor: pointer;
	display: inline-block;
	font-size: 1.25rem;
	margin: 0;
	padding: 12px 8px;
	text-decoration: none;
  transition: 0.3s all linear;
  transition-property: background-color, color;
}
.u-materialFilter__btn:hover,
.u-materialFilter__btn:focus {
	outline: none;
}
.u-materialFilter__btn::-moz-foucus-inner {
	border: none;
	padding: 0;
}
.u-materialFilter__btn.--type-reset {
  border: 1px solid #999;
  background-color: #fff;
  color: #888;
  font-weight: 300;
  text-align: center;
}
.u-materialFilter__btn.--type-reset:hover {
  background-color: #888;
  color: #fff;
}
.u-materialFilter__btn.--type-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 28px;
  border: 1px solid #BB1A1A;
  background-color: #BB1A1A;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.u-materialFilter__btn.--type-submit::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-right: 20px;
  background-color: #fff;
  mask: url(/med/img/add/icn_search.svg) no-repeat center / contain;
  -webkit-mask: url(/med/img/add/icn_search.svg) no-repeat center / contain;
  transition: 0.3s background-color linear;
}
.u-materialFilter__btn.--type-submit:hover {
  background-color: #fff;
  color: #BB1A1A;
}
.u-materialFilter__btn.--type-submit:hover::before {
  background-color: #BB1A1A;
}
@media only screen and (max-width: 640px) {
  .u-materialFilter {
    margin-top: 32px;
    padding: 17px 12px 12px;
  }
  .u-materialFilter__ttl {
    padding-left: 30px;
    font-size: 0.875rem;
  }
  .u-materialFilter__ttl::before {
    top: 2px;
    width: 20px;
    height: 17px;
  }
  .u-materialFilter__cts {
    gap: 4px;
    margin-top: 8px;
  }
  .u-materialFilter__btnWrap {
    gap: 4px;
    margin-top: 10px;
  }
  .u-materialFilter__btn {
    flex-basis: 50%;
    border-radius: 4px;
    font-size: var(--f-16);
  }
  .u-materialFilter__btn.--type-submit {
    padding-right: 26px;
  }
  .u-materialFilter__btn.--type-submit::before {
    width: 20px;
    height: 20px;
    margin-right: 7px;
  }
}


.u-classification {
  border: 1px solid #EEE;
  border-radius: 8px;
  background-color: #F9F9F9;
}
.u-classification__ttl {
  padding: 22px 36px 7px;
  font-weight: 600;
  font-size: var(--f-18);
  line-height: 1.5;
}
.u-classification__ttl > span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}
.u-classification__ttl > span::after {
  flex: 1 1 30%;
  content: "";
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #D9D9D9, #D9D9D9 2px, transparent 2px, transparent 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
.u-classification__ctsInr {
  padding: 7px 36px 30px;
}
@media only screen and (max-width: 640px) {
  .u-classification {
    border-radius: 4%;
  }
  .u-classification__ttl {
    padding: 12px 12px 4px;
    font-size: 0.875rem;
  }
  .u-classification__ttl > span {
    gap: 12px;
  }
  .u-classification__ctsInr {
    padding: 4px 8px 14px;
  }
}


.u-materialResult {
  margin-top: 48px;
}
.u-materialResult__ttl {
  padding-bottom: 9px;
  border-bottom: 1px solid #D9D9D9;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
}
.u-materialResult__ttl .num {
  margin-right: 4px;
  color: #BB1A1A;
  font-size: 2rem;
}
.u-materialResult__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 40px;
  margin-top: 40px;
}
.u-materialResult__item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.u-materialResult__thumb {
  aspect-ratio: 373 / 248;
}
.u-materialResult__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.u-materialResult__textarea {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 20px;
}
.u-materialResult__date {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialResult__text {
  position: relative;
  padding-bottom: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.u-materialResult__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #d39a9a, #d39a9a 4px, transparent 4px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  border-radius: 1px;
}
.u-materialResult__number {
  margin-top: 16px;
  color: #888;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialResult__cat {
  display: flex;
  flex-wrap: wrap;
  margin: 12px -8px 16px 0;
}
.u-materialResult__cat > p {
  margin: 0 8px 8px 0;
  padding: 5px 6px 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-weight: 300;
  font-size: var(--f-12);
  line-height: 1;
}
.u-materialResult__input {
  margin-top: auto;
}
@media only screen and (max-width: 980px) {
  .u-materialResult__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 640px) {
  .u-materialResult {
    margin-top: 35px;
  }
  .u-materialResult__ttl {
    padding-bottom: 6px;
    font-size: var(--f-18);
  }
  .u-materialResult__ttl .num {
    margin-right: 4px;
    font-size: 1.75rem;
  }
  .u-materialResult__list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .u-materialResult__thumb {
    aspect-ratio: 335 / 223;
  }
  .u-materialResult__date {
    margin-bottom: 4px;
    line-height: 1.5;
  }
  .u-materialResult__text {
    padding-bottom: 14px;
  }
  .u-materialResult__number {
    margin-top: 14px;
  }
}


.u-materialFooter {
  box-shadow: 0px -8px 48px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  gap: 8px;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  background-color: #fff;
  margin-top: 48px;
  padding: 16px 2%;
  z-index: 10;
}
.u-materialFooter__btn {
  flex-basis: 588px;
}
.u-materialFooter__btn:disabled {
  background-color: #D9D9D9;
  pointer-events: none;
}
.u-materialFooter__status {
  flex-basis: 292px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 2px;
  border: 1px solid;
  border-radius: 6px;
  color: #BB1A1A;
  font-weight: 600;
  font-size: var(--f-18);
  line-height: 1.5;
  box-sizing: border-box;
}
.u-materialFooter__statusTxt .num {
  margin: 0 2px;
  font-size: 1.75rem;
  line-height: 1;
}
.u-materialFooter + #regist_area {
  margin-top: 0;
}
@media only screen and (max-width: 640px) {
  .u-materialFooter {
    box-shadow: 0px -7px 8px 0px rgba(0, 0, 0, 0.03);
    margin-top: 38px;
    padding: 12px 2%;
  }
  .u-materialFooter__btn {
    flex: 1;
    font-size: 0.875rem;
  }
  .u-materialFooter__btn::after {
    right: 2px;
    width: 22px;
    height: 30px;
  }
  .u-materialFooter__status {
    flex-basis: 111px;
    gap: 0;
    padding: 8px;
    border-radius: 4px;
    font-size: var(--f-12);

  }
  .u-materialFooter__statusTxt .num {
    font-size: var(--f-16);
  }
}






/* Style */
.m-document {
  --grid-num:40px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-num);
  margin-top: 32px;
}
.m-document.--type-only {
  margin-top: 64px;
}
.m-document__panel {
}
a.m-document__inr {
  text-decoration: none;
  color: #333;
  display: block;
}
.m-document__head {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(/med/img/add/request/texture_base.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: opacity 0.3s linear;
}
a:hover .m-document__head {
  opacity: 0.8;
}
.m-document__head.--type-bl {
  background-image: url(/med/img/add/request/texture_bl.jpg);
}
.m-document__head.--type-rd {
  background-image: url(/med/img/add/request/texture_rd.jpg);
}
.m-document__head.--type-or {
  background-image: url(/med/img/add/request/texture_or.jpg);
}
.m-document__head.--type-gr {
  background-image: url(/med/img/add/request/texture_gr.jpg);
}
.m-document__headInr {
  width: 100%;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  --bg-color: #FFF;
}
.m-document__headSub {
  background-color: var(--bg-color);
  padding: 3px 5px;
  box-sizing: border-box;
  display: inline-block;
  min-width: 180px;
  font-size: var(--f-12);
  font-weight: bold;
  line-height: 1.5;
}
.m-document__headTtl {
  margin-top: 15px;
  box-sizing: border-box;
  width: 100%;
  font-size: var(--f-18);
  font-weight: bold;
  line-height: 2;
}
.m-document__headTtl span {
  background-color: var(--bg-color);
  padding: 5px 15px;
  box-sizing: border-box;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.m-document__body {
  padding: 15px 6px;
  box-sizing: border-box;
}
.m-document__date {
  min-height: 1em;
  font-size: var(--f-12);
  font-weight: bold;
  line-height: 1.2;
}
.m-document__ttl {
  margin-top: 6px;
  font-size: var(--f-16);
  font-weight: bold;
  line-height: 1.6;
}
.m-document__info {
  padding-top: 16px;
  margin-top: 16px;
  position: relative;
}
.m-document__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, #d39a9a, #d39a9a 4px, transparent 4px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  border-radius: 1px;
}
.m-document__num {
  color: #888888;
  font-size: var(--f-12);
  line-height: 1.3;
}
.m-document__cat {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.m-document__catList {
  padding: 6px 8px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  font-size: var(--f-12);
  line-height: 1.2;
}

.m-document.--panel-2 {
  --grid-num: 42px;
}
.m-document.--panel-2 > * {
  width: calc((100% / 2) - (var(--grid-num) / 2));
}
.m-document.--panel-3 > * {
  width: calc((100% / 3) - (var(--grid-num) * 2 / 3));
}
.--panel-2 .m-document__head {
  aspect-ratio: 580 / 387;
}
.--panel-3 .m-document__head {
  aspect-ratio: 374 / 248;
}

.m-document.--type-recommend {
  margin-top: 40px;
}
.--type-recommend .m-document__panel {
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.06);
  position: relative;
}
.--type-recommend .m-document__panel::before {
  content: " ";
  width: 60px;
  height: 60px;
  background: url(/med/img/add/request/triangle.svg) no-repeat center / contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
.--type-recommend .m-document__headSub {
  font-size: var(--f-16);
}
.--type-recommend .m-document__headTtl {
  font-size: var(--f-24);
  line-height: 1.8;
}
.--type-recommend .m-document__body {
  padding: 22px 24px;
}
.--type-recommend .m-document__ttl {
  font-size: var(--f-20);
}
.--type-recommend .m-document__info {
  padding-right: 40px;
}

.m-document.--type-article {
  --grid-num: 32px;
}
.--type-article .m-document__ttl {
  font-size: var(--f-20);
  font-weight: 600;
  line-height: 1.5;
}
.--type-article .m-document__txt {
  margin-top: 6px;
  font-weight: 300;
  font-size: var(--f-14);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.--type-article .m-document__info {
  margin-top: 6px;
}
.--type-article .m-document__info > *:first-child {
  margin-top: 0;
}
.--type-article .m-document__info::before {
  background-image: repeating-linear-gradient(90deg, #D9D9D9, #D9D9D9 4px, transparent 4px, transparent 6px);
}
/* PC
----------------------------------*/
@media screen and (min-width: 651px) {
  .m-document__headSub {
    padding: calc(3 / 1200 * 100vw) calc(5 / 1200 * 100vw);
    font-size: calc(12 / 1200 * 100vw);
    min-width: calc(180 / 1200 * 100vw);
  }
  .m-document__headTtl {
    font-size: calc(18 / 1200 * 100vw);
  }
  .m-document__headTtl span {
    padding: calc(5 / 1200 * 100vw) calc(15 / 1200 * 100vw);
  }
  .--type-recommend .m-document__headSub {
    /* font-size: var(--f-16); */
    font-size: calc(16 / 1200 * 100vw);
    min-width: calc(180 / 1200 * 100vw);
  }
  .--type-recommend .m-document__headTtl {
    /* font-size: var(--f-24); */
    font-size: calc(24 / 1200 * 100vw);
  }
}
/* PC
----------------------------------*/
@media screen and (min-width: 1201px) {
  .m-document__headSub {
    padding: 3px 5px;
    min-width: 180px;
    font-size: var(--f-12);
  }
  .m-document__headTtl {
    margin-top: 15px;
    font-size: var(--f-18);
  }
  .m-document__headTtl span {
    padding: 5px 15px;
  }
  .--type-recommend .m-document__headSub {
    font-size: var(--f-16);
    min-width: 180px;
  }
  .--type-recommend .m-document__headTtl {
    font-size: var(--f-24);
  }
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-document {
    --grid-num:40px;
    margin-top: 18px;
  }
  .m-document__headInr {
    padding: 10px;
  }
  .m-document__headSub {
    padding: calc(3 / 375 * 100vw) calc(5 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    min-width: calc(180 / 375 * 100vw);
  }
  .m-document__headTtl {
    margin-top: 15px;
    font-size: calc(18 / 375 * 100vw);
  }
  .m-document__headTtl span {
    padding: calc(5 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
  .m-document__body {
    padding: 15px 6px;
  }
  .m-document__date {
    min-height: 0;
    font-size: var(--f-12);
  }
  .m-document__ttl {
    margin-top: 6px;
    font-size: var(--f-18);
  }
  .m-document__info {
    padding-top: 14px;
    margin-top: 14px;
  }
  .m-document__num {
    font-size: var(--f-12);
  }
  .m-document__cat {
    margin-top: 10px;
    gap: 6px;
  }
  .m-document__catList {
    padding: 6px 8px;
    font-size: var(--f-12);
  }
  
  .m-document.--panel-2 {
    --grid-num: 40px;
  }
  .m-document.--panel-2 > * {
    width: 100%;
  }
  .m-document.--panel-3 > * {
    width: 100%;
  }
  .--panel-2 .m-document__head {
  }
  .--panel-3 .m-document__head {
  }
  
  .m-document.--type-recommend {
    margin-top: 18px;
  }
  .--type-recommend .m-document__panel::before {
    width: 48px;
    height: 48px;
  }
  .--type-recommend .m-document__headSub {
    font-size: calc(12 / 375 * 100vw);
  }
  .--type-recommend .m-document__headTtl {
    font-size: calc(18 / 375 * 100vw);
  }
  .--type-recommend .m-document__body {
    padding: 20px;
  }
  .--type-recommend .m-document__ttl {
    font-size: var(--f-18);
  }
  .--type-recommend .m-document__info {
    padding-right: 35px;
  }

  .m-document.--type-article {
    --grid-num: 32px;
  }
  .--type-article .m-document__ttl {
    margin-top: 4px;
    font-size: var(--f-18);
  }
  .--type-article .m-document__txt {
    margin-top: 4px;
    line-height: 1.7;
    -webkit-line-clamp: 4;
  }
  .--type-article .m-document__info {
    margin-top: 14px;
  }
}


.c-cta {
  margin-top: 56px;
  margin-bottom: 56px;
  background-color: #FFF;
  padding: 32px 40px;
}
.c-cta__ttl {
  font-size: var(--f-24);
  font-weight: bold;
  line-height: 1.5;
}
.c-cta__lead {
  font-size: var(--f-16);
  line-height: 1.7;
}
.c-cta__btnWrap {
  --grid-num: 24px;
  margin-top: 20px;
  display: flex;
  gap: var(--grid-num);
}
.c-cta__btn {
  width: calc((100% / 2) - (var(--grid-num) / 2));
}
a.c-cta__btnInr {
  --color-red: #BB1A1A;
  color: #6E0606;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-align: center;
  padding: 15px 35px 13px;
  transition: all 0.3s linear;
  position: relative;
}
a.c-cta__btnInr::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 28px;
  height: 36px;
  background-color: #fff;
  mask: no-repeat url(/med/img/add/icn_arw_r_wt.svg) center / contain;
  -webkit-mask: no-repeat url(/med/img/add/icn_arw_r_wt.svg) center / contain;
  transition: all 0.3s linear;
}
.c-cta__txt {
  font-size: var(--f-12);
  line-height: 1.5;
}
.c-cta__ttl {
  font-size: var(--f-22);
  line-height: 1.7;
}
.c-cta__note {
  margin-top: 24px;
  text-align: center;
  font-size: var(--f-14);
  line-height: 1.6;
}
.--type-create .c-cta__btnInr {
  background-color: var(--color-red);
  color: #FFF;
  border: 1px solid var(--color-red);
}
.--type-create .c-cta__btnInr:hover {
  background-color: #FFF;
  color: var(--color-red);
  border: 1px solid var(--color-red);
}
.--type-create .c-cta__btnInr::before {
  background-color: #FFF;
}
.--type-create .c-cta__btnInr:hover::before {
  background-color: var(--color-red);
}
.--type-login .c-cta__btnInr {
  background-color: #FFF;
  color: #6E0606;
  border: 1px solid #6E0606;
}
.--type-login .c-cta__btnInr:hover {
  background-color: var(--color-red);
  color: #FFF;
  border: 1px solid var(--color-red);
}
.--type-login .c-cta__btnInr::before {
  background-color: #6E0606;
}
.--type-login .c-cta__btnInr:hover::before {
  background-color: #FFF;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .c-cta {
    margin-top: 40px;
    margin-bottom: 35px;
    padding: 24px;
  }
  .c-cta__ttl {
    font-size: var(--f-18);
  }
  .c-cta__lead {
    margin-top: 5px;
    font-size: var(--f-16);
  }
  .c-cta__btnWrap {
    --grid-num: 12px;
    margin-top: 16px;
    flex-direction: column;
    gap: var(--grid-num);
  }
  .c-cta__btn {
    width: 100%;
  }
  a.c-cta__btnInr {
    border-radius: 6px;
    padding: 12px 35px 13px;
    transition: all 0.3s linear;
    position: relative;
  }
  .c-cta__txt {
    font-size: var(--f-12);
  }
  .c-cta__ttl {
    font-size: var(--f-16);
  }
  .c-cta__note {
    margin-top: 16px;
  }
}


.c-background {
}
.c-background.--color-white {
  background-color: #FFF;
}



.m-step {
}
.m-step__list {
  display: flex;
  margin-top: 32px;
}
.m-step__item {
  width: calc((100% / 4) - 1px);
  text-align: center;
  position: relative;
  z-index: 1;
}
.m-step__inr {
  box-sizing: border-box;
  padding: 0 15px;
}
.m-step__num {
  width: 60px;
  margin: 0 auto;
}
.m-step__img {
  margin-top: 30px;
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-step__info {
  margin-top: 14px;
}
.m-step__ttl {
  font-size: var(--f-20);
  font-weight: bold;
  line-height: 1.5;
}
.m-step__txt {
  margin-top: 3px;
  font-size: var(--f-16);
  line-height: 1.8;
}

.m-step__border {
  width: 1px;
  position: relative;
}
.m-step__border::before {
  content: " ";
  width: 1px;
  height: calc(100% - 72px);
  background-color: #D9D9D9;
  position: absolute;
  bottom: 0px;
  left: 0;
}
.m-step__border::after {
  content: " ";
  width: 105px;
  height: 6px;
  background: url(/med/img/add/request/bordaer-dot.png) no-repeat center / contain;
  position: absolute;
  top: calc(30px - 3px);
  left: 50%;
  transform: translateX(-50%);
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-step {
  }
  .m-step__list {
    display: block;
    margin-top: 18px;
  }
  .m-step__item {
    width: 100%;
    text-align: left;
  }
  .m-step__inr {
    padding: 25px 0;
    display: flex;
    align-items: center;
  }
  .m-step__num {
    width: 52px;
    margin: 0;
  }
  .m-step__img {
    margin-top: 0;
    margin-left: 20px;
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .m-step__info {
    margin-top: 0;
    margin-left: 14px;
    flex: 1;
  }
  .m-step__ttl {
    font-size: var(--f-16);
  }
  .m-step__txt {
    margin-top: 3px;
    font-size: var(--f-14);
  }
  
  .m-step__border {
    width: 100%;
    height: 1px;
  }
  .m-step__border::before {
    content: " ";
    width: calc(100% - 72px);
    height: 1px;
    bottom: 0px;
    left: auto;
    right: 0;
  }
  .m-step__border::after {
    content: " ";
    width: 6px;
    height: 30px;
    background: url(/med/img/add/request/sp-borderdot.png) no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: calc(26px - 3px);
    transform: translateY(-50%);
  }
}

.m-formNote {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 300;
  line-height: 1.8;
  color: #BB1A1A;
}
.m-formNote > * {
  margin-top: 10px;
}

.m-tabList {
  --color-red: #BB1A1A;
  margin-top: 48px;
  display: flex;
  border-bottom: 1px solid var(--color-red);
}
.m-tabList__item {
  width: 33.333%;
}
a.m-tabList__inr {
  text-decoration: none;
  color: #888888;
  font-size: var(--f-20);
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #888888;
  transition: all 0.3s linear;
  height: 100%;
}
.--type-active .m-tabList__inr {
  pointer-events: none;
  font-weight: bold;
  color: #fff;
  border: 1px solid var(--color-red);
  background-color: var(--color-red);
}
a.m-tabList__inr:hover {
  color: #fff;
  border: 1px solid var(--color-red);
  background-color: var(--color-red);
}
.m-tabList__item + .m-tabList__item .m-tabList__inr {
  margin-left: -1px;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-tabList {
    margin-top: 20px;
  }
  .m-tabList__item {
    width: 33.333%;
  }
  a.m-tabList__inr {
    font-size: var(--f-16);
    padding: 16px 10px;
  }
}



.m-seminar {
  --grid-num: 32px;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-num);
}
.m-seminar * {
  box-sizing: border-box;
}
.m-seminar__panel {
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.06);
  width: calc((100% / 3) - (var(--grid-num) * 2 / 3));
}
a.m-seminar__inr {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FFF;
}
.m-seminar__head {
  aspect-ratio: 379 / 252;
  background-image: url(/med/img/add/seminar/thumnanil-back.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s linear;
}
a.m-seminar__inr:hover .m-seminar__head {
  opacity: 0.8;
}
.m-seminar__img {
  width: 100%;
  height: 100%;
  position: relative;
}
.m-seminar__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  box-shadow: 2px 3px 7px 0px rgba(0, 0, 0, 0.17);
}
.m-seminar__cts {
  display: flex;
  padding: 20px 24px;
}
.m-seminar__date {
  width: 33.333%;
  font-weight: 600;
  line-height: 1;
}
.m-seminar__year {
}
.m-seminar__monthDay {
  margin-top: 10px;
}
.m-seminar__time {
  margin-top: 10px;
}
.m-seminar__info {
  flex: 1;
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid #EEEEEE;
}
.m-seminar__subTtl {
  margin-top: 14px;
  color: #888888;
  font-size: var(--f-14);
  font-weight: bold;
  line-height: 1.6;
}
.m-seminar__ttl {
  margin-top: 4px;
  font-size: var(--f-20);
  font-weight: bold;
  line-height: 1.6;
}
.m-seminar__foot {
  margin-top: auto;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-seminar__btn {
  border: 1px solid #6E0606;
  border-radius: 6px;
  padding: 14px 38px;
  color: #6E0606;
  font-size: var(--f-14);
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s linear;
}
.m-seminar__btnInr::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 26px;
  height: 32px;
  mask: no-repeat url(/med/img/add/icn_arw_r_wt.svg) center / contain;
  -webkit-mask: no-repeat url(/med/img/add/icn_arw_r_wt.svg) center / contain;
  background-color: #6E0606;
  transition: all 0.3s linear;
}
.m-seminar__btn:hover {
  border: 1px solid #6E0606;
  color: #fff;
  background-color: #6E0606;
}
.m-seminar__btn:hover .m-seminar__btnInr::after {
  background-color: #fff;
}

/* PC
----------------------------------*/
@media screen and (min-width: 651px) {
  .m-seminar__year {
    font-size: calc(12 / 1200* 100vw);
  }
  .m-seminar__monthDay {
    font-size: calc(30 / 1200* 100vw);
  }
  .m-seminar__time {
    font-size: calc(12 / 1200* 100vw);
  }
}
/* PC
----------------------------------*/
@media screen and (min-width: 1201px) {
  .m-seminar__year {
    font-size: var(--f-12);
  }
  .m-seminar__monthDay {
    margin-top: 10px;
    font-size: var(--f-30);
  }
  .m-seminar__time {
    margin-top: 10px;
    font-size: var(--f-12);
  }
}

/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-seminar {
    --grid-num: 16px;
    margin-top: 32px;
    flex-direction: column;
  }
  .m-seminar__panel {
    width: 100%;
  }
  .m-seminar__head {
    padding: 15px;
  }
  .m-seminar__cts {
    display: flex;
    padding: 20px;
  }
  .m-seminar__monthDay {
    margin-top: 10px;
  }
  .m-seminar__time {
    margin-top: 10px;
  }
  .m-seminar__year {
    font-size: calc(12 / 375 * 100vw);
  }
  .m-seminar__monthDay {
    font-size: calc(30 / 375 * 100vw);
  }
  .m-seminar__time {
    font-size: calc(12 / 375 * 100vw);
  }
  .m-seminar__info {
    padding-left: 10px;
    margin-left: 0;
  }
  .m-seminar__subTtl {
    margin-top: 14px;
    font-size: var(--f-14);
  }
  .m-seminar__ttl {
    font-size: var(--f-20);
  }
  .m-seminar__foot {
    padding-bottom: 30px;
  }
  .m-seminar__btn {
    padding: 14px 38px;
    color: #6E0606;
    font-size: var(--f-14);
  }
  .m-seminar__btnInr::after {
    right: 6px;
    width: 26px;
    height: 32px;
  }
  .m-seminar__btn:hover {
    border: 1px solid #6E0606;
    color: #fff;
    background-color: #6E0606;
  }
  .m-seminar__btn:hover .m-seminar__btnInr::after {
    background-color: #fff;
  }
}




.m-seminarCat {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.m-seminarCat__list {
  padding: 5px 12px;
  font-size: var(--f-12);
  line-height: 1.3;
  border-radius: 6px;
}
.m-seminarCat__list.--type-receptionEnd {
  background-color: #F6F6F6;
  color: #888888;
  font-weight: bold;
}
.m-seminarCat__list.--type-end {
  background-color: #F6F6F6;
  color: #888888;
  font-weight: bold;
}
.m-seminarCat__list.--type-open {
  background-color: #F6F6F6;
  color: #BB1A1A;
  font-weight: bold;
}
.m-seminarCat__list.--type-seminar {
  border: 1px solid #BBDCDE;
  background-color: #F2FEFF;
}
.m-seminarCat__list.--type-web {
  border: 1px solid #BBDEC3;
  background-color: #F2FFF4;
}
.m-seminarCat__list.--type-cat {
  border: 1px solid #CCCCCC;
  background-color: #FFF;
}
.m-seminarCat.--type-status {
  margin-top: 12px;
}
.m-seminarCat.--type-status .m-seminarCat__list.--type-end {
  border-radius: 2px;
  border: 1px solid #D9D9D9;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-seminarCat__list {
    padding: 5px 12px;
    font-size: var(--f-12);
  }
}


.m-seminarDtl {
  padding: 40px;
  margin-top: 36px;
}
.m-seminarDtl__headSub {
  margin-top: 20px;
  color: #888888;
  font-size: var(--f-14);
  font-weight: bold;
  line-height: 1.6;
}
.m-seminarDtl__headTtl.m-ttl01.--icn-bullet {
  margin-top: 10px;
}
.m-seminarDtl__body {
  display: flex;
  gap: 48px;
  margin: 24px -40px 0;
  border-top: 3px solid #F9F9F9;
  padding: 25px 40px 50px;
  flex-wrap: wrap;
}
.m-seminarDtl__thum {
  width: 100%;
}
.m-seminarDtl__thum img {
  width: 100%;
}
.m-seminarDtl__pamphlet {
  width: 25%;
  max-width: 300px;
}
.m-seminarDtl__pamphletImg img {
  width: 100%;
  box-shadow: 2px 3px 7px 0px rgba(0, 0, 0, 0.17);
}
.m-seminarDtl__pamphletBtn {
  margin-top: 20px;
}
.m-seminarDtl__pamphletBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6E0606;
  border-radius: 6px;
  padding: 14px;
  color: #6E0606;
  font-size: var(--f-14);
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s linear;
  text-decoration: none;
}
.m-seminarDtl__pamphletBtn a::after {
  content: "";
  background: url(/med/img/add/icn_pdf.svg) no-repeat center / contain;
  display: inline-block;
  width: 17px;
  height: 18px;
  margin-left: 5px;
  transition: all 0.3s linear;
}
.m-seminarDtl__pamphletBtn a:hover {
  border: 1px solid #6E0606;
  color: #fff;
  background-color: #6E0606;
}
.m-seminarDtl__pamphletBtn a:hover::after {
  background: url(/med/img/add/icn_pdf_wt.svg) no-repeat center / contain;
}
.m-seminarDtl__line {
  width: 100%;
}
.m-seminarDtl__infoList {
  flex: 1;
}
.m-seminarDtl__btn {
  margin-top: 25px;
}
.m-seminarDtl__btn .m-btn {
  max-width: 300px;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-seminarDtl {
    padding: 20px;
    margin-top: 20px;
  }
  .m-seminarDtl__headSub {
    margin-top: 16px;
    font-size: var(--f-14);
  }
  .m-seminarDtl__headTtl.m-ttl01.--icn-bullet {
    margin-top: 5px;
  }
  .m-seminarDtl__body {
    flex-direction: column;
    gap: 32px;
    margin: 24px -20px 0;
    border-top: 3px solid #F9F9F9;
    padding: 25px 20px 50px;
  }
  .m-seminarDtl__pamphlet {
    /* width: 25%; */
    width: 100%;
    max-width: 100%;
  }
  .m-seminarDtl__pamphletImg img {
    width: 100%;
    box-shadow: 2px 3px 7px 0px rgba(0, 0, 0, 0.17);
  }
  .m-seminarDtl__pamphletBtn {
    margin-top: 20px;
  }
  .m-seminarDtl__pamphletBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6E0606;
    border-radius: 6px;
    padding: 14px 38px;
    color: #6E0606;
    font-size: var(--f-14);
    font-weight: bold;
    line-height: 1.5;
    position: relative;
    transition: all 0.3s linear;
    text-decoration: none;
  }
  .m-seminarDtl__pamphletBtn a::after {
    content: "";
    background: url(/med/img/add/icn_pdf.svg) no-repeat center / contain;
    display: inline-block;
    width: 17px;
    height: 18px;
    margin-left: 5px;
    transition: all 0.3s linear;
  }
  .m-seminarDtl__pamphletBtn a:hover {
    border: 1px solid #6E0606;
    color: #fff;
    background-color: #6E0606;
  }
  .m-seminarDtl__pamphletBtn a:hover::after {
    background: url(/med/img/add/icn_pdf_wt.svg) no-repeat center / contain;
  }
  .m-seminarDtl__infoList {
    flex: 1;
  }
  .m-seminarDtl__btn {
    margin-top: 32px;
  }
  .m-seminarDtl__btn .m-btn {
    max-width: 100%;
  }
}



.m-backBtn {
  margin-top: 48px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-backBtn .m-btn {
  width: 320px;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-backBtn {
    margin-top: 32px;
    padding: 0 20px;
  }
  .m-backBtn .m-btn {
    width: 100%;
  }
}


a.m-googleBtn {
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 18px;
  background-color: #BB1A1A;
  color: #FFF;
  font-size: var(--f-14);
  font-weight: bold;
  line-height: 1.6;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s linear;
  border: 1px solid #BB1A1A;
}
a.m-googleBtn::before {
  content: " ";
  width: 10px;
  height: 15px;
  -webkit-mask: url(/med/img/add/icn_map_pnt.svg) no-repeat center / contain;
  mask: url(/med/img/add/icn_map_pnt.svg) no-repeat center / contain;
  background-color: #FFF;
  margin-right: 6px;
  transition: all 0.3s linear;
}
a.m-googleBtn:hover {
  color: #BB1A1A;
  border: 1px solid #BB1A1A;
  background-color: #fff;
}
a.m-googleBtn:hover::before {
  background-color: #BB1A1A;
}



.m-infoList {
}
.m-infoList__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.m-infoList + ul > .m-infoList__item:first-child,
.m-infoList__item + .m-infoList__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed #D9D9D9;
}
.m-infoList__item dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
.m-infoList__item dl + dl {
  margin-top: 10px;
}
.m-infoList__item dt {
  padding: 3px 12px;
  box-sizing: border-box;
  border: 1px solid #BB1A1A;
  color: #BB1A1A;
  font-size: var(--f-14);
  font-weight: bold;
  line-height: 1.5;
  border-radius: 2px;
  margin-right: 16px;
}
.m-infoList__item dd {
  flex: 1;
  font-size: var(--f-16);
  line-height: 1.8;
}



/*====================================
entry用
====================================*/
.c-entry__cat {
  display: flex;
  align-items: center;
}
.c-entry__date {
  padding-left: 24px;
  font-size: var(--f-14);
  line-height: 1.5;
}
.c-entry__subTtl {
  margin-top: 25px;
  font-size: var(--f-18);
  font-weight: bold;
  line-height: 1.5;
}
.c-entry__ttl {
  margin-top: 25px;
  font-size: var(--f-24);
  font-weight: bold;
  line-height: 1.5;
}
.c-entry__subTtl + .c-entry__ttl {
  margin-top: 8px;
}
.c-entry__num {
  margin-top: 16px;
  color: #888888;
  font-size: var(--f-14);
  line-height: 1.5;
}
.c-entry__body {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed #D9D9D9;
}
.c-entry__caption {
  font-size: var(--f-22);
  font-weight: bold;
  line-height: 1.5;
}
.c-entry__thum {
  margin-top: 32px;
}
.c-entry__thum img {
  width: 100%;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .c-entry__cat {
    display: block;
  }
  .c-entry__date {
    margin-top: 8px;
    padding-left: 0;
    font-size: var(--f-16);
  }
  .c-entry__subTtl {
    margin-top: 16px;
    font-size: var(--f-18);
  }
  .c-entry__ttl {
    margin-top: 8px;
    font-size: var(--f-24);
  }
  .c-entry__subTtl + .c-entry__ttl {
    margin-top: 8px;
  }
  .c-entry__num {
    margin-top: 8px;
    font-size: var(--f-16);
  }
  .c-entry__body {
    margin-top: 32px;
    padding-top: 32px;
  }
  .c-entry__caption {
    font-size: var(--f-20);
  }
  .c-entry__thum {
    margin-top: 16px;
  }
}

/*====================================
ブロック用
====================================*/
.m-h2 {
  margin-top: 48px;
  font-size: var(--f-22);
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #BB1A1A;
}
.m-h3 {
  margin-top: 30px;
  font-size: var(--f-20);
  font-weight: bold;
  line-height: 1.5;
}
.m-h3.--type-border {
  position: relative;
  padding-bottom: 4px;
}
.m-h3.--type-border::before {
  content: " ";
  width: 100%;
  height: 4px;
  background-color: #EEEEEE;
  position: absolute;
  left: 0;
  bottom: 0;
}
.m-h3.--type-border::after {
  content: " ";
  width: 40px;
  height: 4px;
  background-color: #999999;
  position: absolute;
  left: 0;
  bottom: 0;
}
.m-h4 {
  margin-top: 30px;
  font-size: var(--f-16);
  font-weight: bold;
  line-height: 1.5;
}
.m-txt {
  margin-top: 30px;
}
.m-txt * {
  line-height: 1.7;
}
.m-txt p + p {
  margin-top: 30px;
}
.m-note {
  font-size: 0.8em;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-h2 {
    margin-top: 40px;
    font-size: var(--f-20);
  }
  .m-h3 {
    margin-top: 24px;
    font-size: var(--f-18);
  }
  .m-h4 {
    margin-top: 24px;
    font-size: var(--f-16);
  }
  .m-txt {
    margin-top: 24px;
  }
  .m-txt * {
    line-height: 1.7;
  }
  .m-txt p + p {
    margin-top: 20px;
  }
  .m-note {
    font-size: 0.8em;
  }
}


.m-overview {
  margin-top: 30px;
  background-color: #FFF;
  padding: 40px;
  box-sizing: border-box;
}
.m-overview > .m-h2,
.m-overview > .m-h3,
.m-overview > .m-h4 {
  margin-top: 0;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .m-overview {
    margin-top: 40px;
    padding: 24px;
  }
  .m-overview > .m-h2,
  .m-overview > .m-h3,
  .m-overview > .m-h4 {
    margin-top: 0;
  }
}


.m-img {
  margin-top: 20px;
  width: 100%;
  display: block;
}
.m-img.--type-center {
  text-align: center;
}
.m-img img {
  max-width: 100%;
}
.m-img__cap {
  margin-top: 15px;
  font-size: var(--f-16);
  font-weight: bold;
  line-height: 1.5;
}
.m-img a img {
  transition: opacity 0.3s linear;
}
.m-img a:hover img {
  opacity: 0.8;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-img {
    margin-top: 16px;
  }
  .m-img__cap {
    margin-top: 15px;
    font-size: var(--f-16);
  }
}


.m-video {
  margin-top: 64px;
  position: relative;
  aspect-ratio: 16 / 9;
}
.m-video iframe {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-video {
    margin-top: 40px;
  }
}

.m-noteBox {
  margin-top: 64px;
}
.m-noteBox__ttl {
  color: #E95257;
  font-size: var(--f-18);
  font-weight: bold;
  line-height: 1.5;
}
.m-noteBox__cts {
  margin-top: 16px;
  border: 1px solid #F397A1;
  background-color: #FEF7F5;
  padding: 32px;
}
.m-noteBox__cts > *:first-child {
  margin-top: 0;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-noteBox {
    margin-top: 40px;
  }
  .m-noteBox__ttl {
  }
  .m-noteBox__cts {
    padding: 24px;
  }
  .m-noteBox__cts > *:first-child {
    margin-top: 0;
  }
}


.m-definition {
  /* margin-top: 35px; */
}
.m-definition__list {
  padding: 40px 0;
  display: flex;
}
.m-definition__list + .m-definition__list {
  border-top: 1px dashed #D9D9D9;
}
.m-definition__ttl {
  width: 25%;
  padding-right: 15px;
  box-sizing: border-box;
}
.m-definition__ttl > * {
  margin-top: 0;
  color: #BB1A1A;
}
.m-definition__ttl > h4 {
  font-size: var(--f-16);
  font-weight: bold;
  line-height: 1.5;
}
.m-definition__desc {
  flex: 1;
}
.m-definition__desc > * {
  margin-top: 0;
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-definition {
    margin-top: 10px;
  }
  .m-definition__list {
    padding: 24px 0;
    display: block;
  }
  .m-definition__ttl {
    width: 100%;
    padding-right: 0;
  }
  .m-definition__ttl > * {
    margin-top: 0;
    color: #BB1A1A;
  }
  .m-definition__desc {
    flex: auto;
    width: 100%;
    margin-top: 16px;
  }
  .m-definition__desc > * {
    margin-top: 0;
  }
}


.m-table {
  margin-top: 64px;
}
.m-table__ttl {
  font-size: var(--f-24);
  font-weight: bold;
  line-height: 1.5;
  padding-left: 16px;
  border-left: 3px solid #7C1237;
}
.m-table table {
  margin-top: 24px;
}
.m-table table th,
.m-table table td {
  border: 1px solid #CCCCCC;
  padding: 30px;
}
.m-table table th {
  background-color: #BB1919;
  color: #FFF;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .m-table {
    margin-top: 40px;
  }
  .m-table__ttl {
  }
  .m-table table {
  }
  .m-table table th,
  .m-table table td {
    border: 1px solid #CCCCCC;
    padding: 16px;
  }
  .m-table table th {
    background-color: #BB1919;
    color: #FFF;
  }
}


.m-borderBox {
  margin-top: 64px;
  border: 1px solid #999999;
  padding: 30px;
  box-sizing: border-box;
}
.m-borderBox > *:first-child {
  margin-top: 0;
}
.m-borderBox .m-h4,
.m-borderBox .m-img {
  text-align: center;
}
.m-borderBox .m-flex {
  margin-top: 20px;
}
.m-borderBox .m-flex__block {
  flex: 1;
}

.m-borderBox .--wid-70 .m-flex__block:first-child {
  flex: 0.7;
}
.m-borderBox .--wid-70 .m-flex__block:last-child {
  flex: 0.3;
}

.m-borderBox .--wid-60 .m-flex__block:first-child {
  flex: 0.6;
}
.m-borderBox .--wid-60 .m-flex__block:last-child {
  flex: 0.4;
}

.m-borderBox .--wid-40 .m-flex__block:first-child {
  flex: 0.4;
}
.m-borderBox .--wid-40 .m-flex__block:last-child {
  flex: 0.6;
}

.m-borderBox .--wid-30 .m-flex__block:first-child {
  flex: 0.3;
}
.m-borderBox .--wid-30 .m-flex__block:last-child {
  flex: 0.7;
}



.m-faq {
  margin-top: 64px;
}
.m-faq__item {
}
.m-faq + .m-faq,
.m-faq__item + .m-faq__item {
  margin-top: 24px;
}
.m-faq__head {
  background-color: #BB1A1A;
  padding: 17px 20px;
  box-sizing: border-box;
  color: #FFF;
  position: relative;
}
.m-faq__head > *:first-child,
.m-faq__body > *:first-child {
  margin-top: 0;
}
.m-faq__body {
  padding: 24px;
  box-sizing: border-box;
  background-color: #FFF;
}
.m-faq__body .m-img {
  text-align: center;
}


.m-dlBtn {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.m-dlBtn::before {
  content: " ";
  width: 100%;
  height: 512px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F9F9F9 70%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.m-dlBtn.--noShadow {
  margin-top: 64px;
}
.m-dlBtn.--noShadow::before {
  content: none;
}
.m-dlBtn .m-btn {
  width: 580px;
}


.m-flex {
  margin-top: 64px;
  --grid-num: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--grid-num);
}
.m-flex.--type-btn {
  --grid-num: 24px;
}
.m-flex__block > *:first-child {
  margin-top: 0;
}
.m-flex__block .m-img img {
  width: 100%;
}
.m-flex__block.--wid-fit {
  flex: 1;
}
.m-flex__block.--wid-50 {
  width: calc(50% - (var(--grid-num) / 2));
}
.m-flex__block.--wid-40 {
  width: calc(40% - (var(--grid-num) / 2));
}
.m-flex__block.--wid-30 {
  width: calc(30% - (var(--grid-num) / 2));
}
/* PC
----------------------------------*/
@media screen and (min-width: 651px) {
  .m-flex.--panel-2 > * {
    width: calc((100% / 2) - (var(--grid-num) / 2));
  }
  .m-flex.--panel-3 > * {
    width: calc((100% / 3) - (var(--grid-num) * 2 / 3));
  }
}
/* SP
----------------------------------*/
@media screen and (max-width: 650px) {
  .m-flex {
    --grid-num: 24px;
    flex-direction: column;
    gap: var(--grid-num);
  }
  .m-flex.--type-btn {
    --grid-num: 8px;
  }
  .m-flex > * {
    width: 100%;
  }
  .m-flex__block.--wid-fit,
  .m-flex__block.--wid-50,
  .m-flex__block.--wid-40,
  .m-flex__block.--wid-30 {
    width: 100%;
  }
}

.m-document__head.--image {
  background: none;
  overflow: hidden;
}
.m-document__head.--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
