@charset "UTF-8";
/*ブレイクポイント*/
/*メディアクエリー*/
/*フォントサイズ*/
/*フォント種類*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("./assets/fonts/NotoSansJP-Medium.otf") format("truetype");
}

/*カラー*/
/*******************************
    共通
 *******************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #000;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

header,
main,
footer {
  position: relative;
}

main {
  flex: 1;
}

.inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .inner {
    max-width: 1200px;
    padding: 0;
  }
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

dt,
dl,
dd {
  padding: 0;
  margin: 0;
}

a {
  display: block;
  text-decoration: none;
  color: #000;
}

img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

p {
  font-size: 1rem;
  line-height: 1.75;
}

@media screen and (min-width: 1280px) {
  p {
    font-size: calc(100vw * ($size / 1920));
  }
}

@media screen and (min-width: 600px) {
  p {
    line-height: 2;
  }
}

.pc,
.pc_br,
.pc_img {
  display: none;
}

@media screen and (min-width: 1280px) {
  .pc,
  .pc_br,
  .pc_img {
    display: block !important;
  }
}

.tab,
.tab_br,
.tab_img {
  display: none;
}

@media screen and (min-width: 600px) {
  .tab,
  .tab_br,
  .tab_img {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  .tab,
  .tab_br,
  .tab_img {
    display: none;
  }
}

.sp,
.sp_br,
.sp_img {
  display: none;
}

@media screen and (max-width: 599px) {
  .sp,
  .sp_br,
  .sp_img {
    display: block;
  }
}

.back_btn {
  text-align: center;
  margin: 40px 20px 0;
}

.back_btn a {
  color: #fff;
  background-color: #000;
  width: 100%;
  display: block;
  font-size: 20px;
  text-align: center;
  padding: 10px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 2px 2px 0 #4d4d4d;
}

@media screen and (min-width: 1280px) {
  .back_btn a:hover {
    box-shadow: none;
    transform: translate(2px, 2px);
  }
}

/*******************************
    support
 *******************************/
.support_content-archive .inner .contents {
  padding: 10px 10px 30px;
}

@media screen and (min-width: 600px) {
  .support_content-archive .inner .contents {
    padding: 10px 10px 60px;
  }
}

.support_content-archive h2 {
  font-size: 20px;
  text-align: center;
  position: relative;
  font-family: "Noto Serif JP Bold";
  margin: 20px 0;
}

@media screen and (min-width: 600px) {
  .support_content-archive h2 {
    font-size: 32px;
  }
}

.support_content-archive .overview .wrap {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 600px) {
  .support_content-archive .overview .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}

@media screen and (min-width: 600px) {
  .support_content-archive .overview .wrap .txt {
    width: 50%;
  }
}

.support_content-archive .overview .wrap .txt h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .support_content-archive .overview .wrap .txt h3 {
    font-size: 24px;
  }
}

.support_content-archive .overview .wrap .txt h3::before {
  display: none;
}

.support_content-archive .overview .wrap .txt p {
  font-size: 16px;
  margin: 8px;
}

@media screen and (min-width: 600px) {
  .support_content-archive .overview .wrap .img {
    width: 50%;
  }
}

.support_content-archive .overview .wrap .img img {
  border-radius: 8px;
  max-width: 450px;
}

.support_content-archive .list .wrap {
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .support_content-archive .list .wrap {
    display: flex;
    gap: 20px;
    margin-top: 50px;
  }
}

.support_content-archive .list .wrap .box {
  position: relative;
  border: 1px solid #000;
  padding: 16px;
  margin-top: 16px;
  background-color: #fff;
}

@media screen and (min-width: 1280px) {
  .support_content-archive .list .wrap .box {
    width: 33%;
  }
  .support_content-archive .list .wrap .box:hover {
    background-color: #f2f2f3;
  }
}

.support_content-archive .list .wrap .box h3 {
  margin: 0;
}

.support_content-archive .list .wrap .box h3 span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

@media screen and (min-width: 600px) {
  .support_content-archive .list .wrap .box h3 span {
    line-height: 1.5;
  }
}

.support_content-archive .list .wrap .box h3 span.sub {
  font-size: 14px;
  font-weight: normal;
}

@media screen and (min-width: 600px) {
  .support_content-archive .list .wrap .box h3 span.sub {
    font-size: 16px;
  }
}

.support_content-archive .list .wrap .box h3 span.main {
  font-size: 20px;
}

@media screen and (min-width: 600px) {
  .support_content-archive .list .wrap .box h3 span.main {
    font-size: 24px;
  }
}

.support_content-archive .list .wrap .box h3::before {
  display: none;
}

.support_content-archive .list .wrap .box p {
  font-size: 16px;
  padding-bottom: 20px;
}

.support_content-archive .list .wrap .box .more_btn {
  position: relative;
  font-size: 16px;
  color: #000;
  padding-right: 20px;
  text-align: right;
}

.support_content-archive .list .wrap .box .more_btn::before, .support_content-archive .list .wrap .box .more_btn::after {
  position: absolute;
  top: 53%;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
  content: "";
  vertical-align: middle;
}

.support_content-archive .list .wrap .box .more_btn::before {
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.support_content-archive .list .wrap .box .more_btn::after {
  top: 44%;
  right: 7px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.support_content-archive .cation {
  margin-top: 20px;
  padding: 16px;
  background-color: #f2f2f3;
}

@media screen and (min-width: 600px) {
  .support_content-archive .cation {
    padding: 32px;
  }
}

.support_content-archive .cation .ttl {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .support_content-archive .cation .ttl {
    font-size: 24px;
  }
}

.support_content-archive .cation .txt ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .support_content-archive .cation .txt ul {
    justify-content: space-around;
  }
}

.support_content-archive .cation .txt ul li {
  width: 48%;
}

@media screen and (min-width: 600px) {
  .support_content-archive .cation .txt ul li {
    width: 18%;
  }
}

/*******************************
    warranty
 *******************************/
.support_content-single .inner .contents {
  padding: 10px 10px 30px;
}

@media screen and (min-width: 600px) {
  .support_content-single .inner .contents {
    padding: 10px 10px 60px;
  }
}

.support_content-single h2 {
  font-size: 20px;
  text-align: center;
  position: relative;
  font-family: "Noto Serif JP Bold";
  margin: 20px 0;
}

@media screen and (min-width: 600px) {
  .support_content-single h2 {
    font-size: 32px;
  }
}

.support_content-single .target {
  font-size: 18px;
  padding: 10px 0;
  font-weight: bold;
  text-align: center;
  background-color: #d93f3f;
  color: #fff;
}

.support_content-single .overview {
  padding: 0px 20px 40px;
}

@media screen and (min-width: 600px) {
  .support_content-single .overview {
    padding: 0px 80px 40px;
  }
}

@media screen and (min-width: 600px) {
  .support_content-single .overview {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

@media screen and (min-width: 600px) {
  .support_content-single .overview .text {
    width: 55%;
  }
}

.support_content-single .overview .text h3 {
  margin: 0;
  text-align: left;
}

.support_content-single .overview .text h3 span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

@media screen and (min-width: 600px) {
  .support_content-single .overview .text h3 span {
    line-height: 1.5;
  }
}

.support_content-single .overview .text h3 span.sub {
  font-size: 14px;
  font-weight: normal;
}

@media screen and (min-width: 600px) {
  .support_content-single .overview .text h3 span.sub {
    font-size: 16px;
  }
}

.support_content-single .overview .text h3 span.main {
  font-size: 24px;
}

@media screen and (min-width: 600px) {
  .support_content-single .overview .text h3 span.main {
    font-size: 27px;
  }
}

.support_content-single .overview .text h3::before {
  display: none;
}

.support_content-single .overview .text p {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  .support_content-single .overview .text p {
    font-size: 16px;
  }
}

.support_content-single .overview .text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  row-gap: 20px;
}

@media screen and (min-width: 600px) {
  .support_content-single .overview .text ul {
    padding: 20px 0;
  }
}

.support_content-single .overview .text ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% / 3) - 4px);
}

@media screen and (min-width: 600px) {
  .support_content-single .overview .text ul li {
    width: calc((100% / 5) - 10px);
  }
}

.support_content-single .overview .text ul li .icon {
  width: 80%;
}

.support_content-single .overview .text ul li .txt {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.support_content-single .overview .image {
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .support_content-single .overview .image {
    width: 45%;
  }
  .support_content-single .overview .image img {
    height: auto;
    padding-bottom: 30px;
  }
}

.support_content-single .box {
  background-color: #fff;
  padding: 20px 20px 40px;
}

@media screen and (min-width: 600px) {
  .support_content-single .box {
    padding: 60px 80px 100px;
  }
}

.support_content-single .box .service01 {
  margin-top: 20px;
}

.support_content-single .box .service01 h3 {
  font-size: 20px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service01 h3 {
    font-size: 27px;
  }
}

.support_content-single .box .service01 h3::before {
  display: none;
}

.support_content-single .box .service01 h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service01 h4 {
    font-size: 20px;
  }
}

.support_content-single .box .service01 .txt {
  font-size: 14px;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service01 .txt {
    font-size: 16px;
  }
}

.support_content-single .box .service01 .img {
  overflow: scroll;
  margin-top: 20px;
  border: 1px solid #000;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service01 .img {
    overflow: auto;
  }
}

.support_content-single .box .service01 .img img {
  width: 800px;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service01 .img img {
    width: 100%;
  }
}

.support_content-single .box .service02 {
  margin-top: 20px;
}

.support_content-single .box .service02 h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service02 h4 {
    font-size: 20px;
  }
}

.support_content-single .box .service02 .price {
  font-size: 14px;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  letter-spacing: 0.01rem;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service02 .price {
    font-size: 16px;
  }
}

.support_content-single .box .service02 .price span {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service02 .price span {
    font-size: 36px;
  }
}

.support_content-single .box .service03 {
  margin-top: 20px;
}

.support_content-single .box .service03 h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service03 h4 {
    font-size: 20px;
  }
}

.support_content-single .box .service03 .txt {
  font-size: 14px;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service03 .txt {
    font-size: 16px;
  }
}

.support_content-single .box .service03 ul.list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service03 ul.list {
    margin-top: 40px;
    flex-direction: row;
    gap: 30px;
  }
}

.support_content-single .box .service03 ul.list > li {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  font-size: 14px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #000;
}

@media screen and (min-width: 600px) {
  .support_content-single .box .service03 ul.list > li {
    width: calc((100% / 3) - 20px);
    padding: 24px;
  }
}

.support_content-single .box .service03 ul.list li.other {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #000;
}

.support_content-single .box .service03 ul.list li.other .ttl {
  font-size: 16px;
  font-weight: bold;
}

.support_content-single .box .service03 ul.list li.other .list {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #ff503c;
  padding: 10px;
  border-radius: 12px;
  width: 100%;
}

.support_content-single .box .service03 ul.list li.other .list span {
  font-size: 18px;
  color: #fff;
}

.support_content-single .box .service03 ul.list .txt .ttl {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.support_content-single .box .service03 ul.list .txt .object {
  font-size: 14px;
}

.support_content-single .box .service03 ul.list .txt .example {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding: 16px;
  background-color: #fffde8;
  border-radius: 8px;
}

.support_content-single .box .service03 ul.list .txt .example ul {
  margin-left: 20px;
}

.support_content-single .box .service03 ul.list .txt .example ul li {
  font-size: 14px;
  list-style-type: disc;
  list-style-position: outside;
}

.support_content-single .flow {
  padding: 40px 20px 40px;
}

@media screen and (min-width: 600px) {
  .support_content-single .flow {
    padding: 60px 80px 60px;
  }
}

.support_content-single .flow h3 {
  font-size: 20px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .support_content-single .flow h3 {
    font-size: 27px;
  }
}

.support_content-single .flow h3::before {
  display: none;
}

.support_content-single .flow p {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  .support_content-single .flow p {
    font-size: 16px;
  }
}

.support_content-single .flow ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 600px) {
  .support_content-single .flow ul {
    flex-direction: row;
    gap: 20px;
  }
}

@media screen and (min-width: 600px) {
  .support_content-single .flow ul li {
    width: calc((100% / 3) - 10px);
  }
}

.support_content-single .flow ul li .img {
  background-color: #fff;
}

.support_content-single .flow ul li .img img {
  border: 1px solid #000;
}

.support_content-single .flow ul li .ttl {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .support_content-single .flow ul li .ttl {
    font-size: 18px;
  }
}

.support_content-single .flow ul li .ttl span {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

@media screen and (min-width: 600px) {
  .support_content-single .flow ul li .ttl span {
    font-size: 24px;
  }
}

.support_content-single .flow ul li .txt {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  .support_content-single .flow ul li .txt {
    font-size: 16px;
  }
}

.support_content-single .faq {
  padding: 10px 0px 40px;
}

@media screen and (min-width: 600px) {
  .support_content-single .faq {
    padding: 0px 80px 60px;
  }
}

.support_content-single .faq h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
  .support_content-single .faq h3 {
    font-size: 27px;
  }
}

.support_content-single .faq h3::before {
  display: none;
}

.support_content-single .faq ul li {
  margin-bottom: 20px;
}

.support_content-single .faq ul li dl dt {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  background-color: #000;
  padding: 5px 10px;
}

.support_content-single .faq ul li dl dt span:first-of-type {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 600px) {
  .support_content-single .faq ul li dl dt span:first-of-type {
    font-size: 27px;
  }
}

.support_content-single .faq ul li dl dt span:last-of-type {
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .support_content-single .faq ul li dl dt span:last-of-type {
    font-size: 16px;
  }
}

.support_content-single .faq ul li dl dd {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 5px 10px;
}

.support_content-single .faq ul li dl dd span:first-of-type {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .support_content-single .faq ul li dl dd span:first-of-type {
    font-size: 27px;
  }
}

.support_content-single .faq ul li dl dd span:last-of-type {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  .support_content-single .faq ul li dl dd span:last-of-type {
    font-size: 16px;
    padding-top: 10px;
  }
}

.support_content-single .contact {
  padding: 0px 20px 40px;
}

@media screen and (min-width: 600px) {
  .support_content-single .contact {
    padding: 0px 80px 60px;
  }
}

.support_content-single .contact h3 {
  font-size: 20px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .support_content-single .contact h3 {
    font-size: 27px;
  }
}

.support_content-single .contact h3::before {
  display: none;
}

.support_content-single .contact p {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  .support_content-single .contact p {
    font-size: 16px;
  }
}

.support_content-single .contact .box {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
}

@media screen and (min-width: 600px) {
  .support_content-single .contact .box {
    padding: 50px 30px;
  }
}

.support_content-single .contact .box .sub {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .support_content-single .contact .box .sub {
    text-align: center;
  }
}

.support_content-single .contact .box .main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.support_content-single .contact .box .main img {
  width: 30%;
}

@media screen and (min-width: 600px) {
  .support_content-single .contact .box .main img {
    width: 160px;
  }
}

.support_content-single .contact .box .main .txt {
  color: #ff503c;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  width: 70%;
}

@media screen and (min-width: 600px) {
  .support_content-single .contact .box .main .txt {
    width: auto;
    font-size: 40px;
  }
}

.support_content-single .contact .box .call {
  font-size: 16px;
}

@media screen and (min-width: 600px) {
  .support_content-single .contact .box .call {
    text-align: center;
  }
}

.support_content-single .contact .box .call span {
  font-weight: bold;
}

.support_content-single2 .inner .contents {
  padding: 10px 10px 30px;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .inner .contents {
    padding: 10px 10px 60px;
  }
}

.support_content-single2 h2 {
  font-size: 20px;
  text-align: center;
  position: relative;
  font-family: "Noto Serif JP Bold";
  margin: 20px 0;
}

@media screen and (min-width: 600px) {
  .support_content-single2 h2 {
    font-size: 32px;
  }
}

.support_content-single2 .overview {
  margin-bottom: 30px;
}

.support_content-single2 .overview h3 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: left;
}

.support_content-single2 .overview h3::before {
  display: none;
}

.support_content-single2 .overview h3 span {
  display: inline;
  color: #000;
  font-size: 24px;
}

.support_content-single2 .overview p {
  font-size: 16px;
  margin: 8px;
}

.support_content-single2 .service {
  background-color: #fff;
  padding: 0 16px;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .service {
    padding: 10px 32px;
  }
}

.support_content-single2 .service ul li {
  padding: 30px 0;
  border-bottom: 1px dashed #4d4d4d;
}

.support_content-single2 .service ul li:last-of-type {
  border-bottom: none;
}

.support_content-single2 .service ul li .ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .service ul li .ttl {
    font-size: 24px;
  }
}

.support_content-single2 .service ul li .txt {
  font-size: 16px;
}

.support_content-single2 .detail {
  margin-top: 50px;
}

.support_content-single2 .detail h3 {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: left;
}

.support_content-single2 .detail h3::before {
  display: none;
}

.support_content-single2 .detail h3 span {
  display: inline;
  color: #000;
  font-size: 24px;
}

.support_content-single2 .detail .wrap {
  margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .detail .wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 600px) {
  .support_content-single2 .detail .wrap .img_wrap {
    width: 40%;
  }
}

.support_content-single2 .detail .wrap .txt_wrap {
  font-size: 16px;
  margin: 8px;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .detail .wrap .txt_wrap {
    width: 60%;
  }
}

.support_content-single2 .detail .support_img {
  margin-bottom: 20px;
  overflow: scroll;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .detail .support_img {
    margin-bottom: 40px;
    overflow: auto;
  }
}

.support_content-single2 .detail .support_img img {
  width: 500px;
  height: auto;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .detail .support_img img {
    width: 100%;
  }
}

.support_content-single2 .detail .ttl {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #000;
  padding: 10px;
  margin-bottom: 10px;
}

.support_content-single2 .detail ul {
  display: flex;
  flex-direction: column;
  border: 1px solid #4d4d4d;
}

.support_content-single2 .detail ul li {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .detail ul li {
    flex-direction: row;
    border-bottom: 1px solid #4d4d4d;
    border-right: 1px solid #4d4d4d;
  }
}

.support_content-single2 .detail ul li span.date {
  padding: 10px;
  background-color: #e6e6e6;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .detail ul li span.date {
    width: 200px;
  }
}

.support_content-single2 .detail ul li span.txt {
  padding: 10px;
  background-color: #fff;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .detail ul li span.txt {
    width: calc(100% - 200px);
  }
}

.support_content-single2 .cation {
  font-size: 14px;
  margin-bottom: 10px;
}
