@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: #333;
  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: #333;
}

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;
  }
}

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

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

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

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

/*******************************
    header
 *******************************/
#header2 {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 75px;
  padding: 7px 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

@media screen and (min-width: 1280px) {
  #header2 {
    padding: 10px 15px;
    height: 90px;
  }
}

#header2 h1 {
  font-size: 0;
  margin: 0;
  height: 60px;
}

@media screen and (min-width: 1280px) {
  #header2 h1 {
    height: 70px;
  }
}

#header2 h1 .header_logo-img img {
  position: relative;
  width: auto;
  height: 60px;
  z-index: 99;
}

@media screen and (min-width: 1280px) {
  #header2 h1 .header_logo-img img {
    height: 70px;
  }
}

/*******************************
    contact_form
 *******************************/
.contact_message {
  width: 100%;
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .contact_message {
    margin-top: 40px;
  }
}

.contact_message p {
  font-size: 20px;
}

@media screen and (min-width: 600px) {
  .contact_message p {
    text-align: center;
  }
}

.contact_message p span {
  color: #bf1408;
  font-weight: bold;
  text-decoration: underline;
}

.contact_message dl,
.contact_message dt,
.contact_message dd {
  font-size: 20px;
}

.contact_message dt {
  font-weight: bold;
  color: #09258d;
}

.contact_tel {
  width: 100%;
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .contact_tel {
    margin-top: 40px;
  }
}

.contact_tel .w_box {
  padding: 40px 15px;
  border-radius: 12px;
  background-color: #fff;
  border: 2px solid #09258d;
}

@media screen and (min-width: 600px) {
  .contact_tel .w_box {
    padding: 80px 40px;
  }
}

.contact_tel .w_box .contents {
  margin-top: 30px;
}

@media screen and (min-width: 600px) {
  .contact_tel .w_box .contents {
    margin-top: 60px;
  }
}

.contact_tel .w_box .contents .number {
  color: #09258d;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  margin-left: 30px;
}

@media screen and (min-width: 600px) {
  .contact_tel .w_box .contents .number {
    font-size: 48px;
    margin-left: 50px;
  }
}

.contact_tel .w_box .contents .number a {
  display: inline-block;
  position: relative;
  color: #09258d;
  line-height: 1;
}

.contact_tel .w_box .contents .number a::before {
  position: absolute;
  top: 0px;
  right: 105%;
  transform: rotate(90deg);
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-size: 27px;
  font-weight: bold;
  color: #09258d;
  line-height: 1;
}

@media screen and (min-width: 600px) {
  .contact_tel .w_box .contents .number a::before {
    top: -8px;
    font-size: 48px;
  }
}

.contact_tel .w_box .contents .time {
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .contact_tel .w_box .contents .time {
    font-size: 16px;
  }
}

.contact_form {
  position: relative;
  width: 100%;
  padding: 40px 0;
  padding: 40px 0 60px;
}

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

.contact_form .w_box {
  padding: 40px 20px;
  border-radius: 12px;
  background-color: #fff;
  border: 2px solid #09258d;
}

@media screen and (min-width: 600px) {
  .contact_form .w_box {
    padding: 80px 40px;
  }
}

.contact_form .w_box ul.btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact_form .w_box ul.btn li {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .contact_form .w_box ul.btn li {
    width: calc(50% - 10px);
  }
}

.contact_form .w_box ul.btn li:nth-of-type(1) {
  background-color: #0071bc;
}

.contact_form .w_box ul.btn li:nth-of-type(2) {
  background-color: #39b54a;
}

.contact_form .w_box ul.btn li:nth-of-type(3) {
  background-color: #46bdc6;
}

.contact_form .w_box ul.btn li:nth-of-type(4) {
  background-color: #bf1408;
}

.contact_form .w_box ul.btn li:nth-of-type(5) {
  background-color: #ff6600;
}

.contact_form .w_box ul.btn li a {
  display: block;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  letter-spacing: -0.05rem;
}

@media screen and (min-width: 1280px) {
  .contact_form .w_box ul.btn li a:hover {
    opacity: 0.7;
  }
}

.contact_form .w_box table {
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}

.contact_form .w_box table tr {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #cfcfcf;
  padding: 20px 5px;
}

@media screen and (min-width: 600px) {
  .contact_form .w_box table tr {
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.contact_form .w_box table tr:first-of-type {
  border-top: 1px solid #cfcfcf;
}

.contact_form .w_box table tr th {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .contact_form .w_box table tr th {
    width: 300px;
  }
}

@media screen and (min-width: 1280px) {
  .contact_form .w_box table tr th {
    width: 350px;
  }
}

.contact_form .w_box table tr th span {
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 3px;
  background-color: #09258d;
  color: #fff;
  margin-left: 10px;
  vertical-align: middle;
  white-space: nowrap;
}

.contact_form .w_box table tr td {
  width: 100%;
}

.contact_form .w_box table tr td input[type="text"],
.contact_form .w_box table tr td input[type="email"],
.contact_form .w_box table tr td input[type="tel"],
.contact_form .w_box table tr td input[type="date"],
.contact_form .w_box table tr td select,
.contact_form .w_box table tr td textarea {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
}

@media screen and (min-width: 600px) {
  .contact_form .w_box table tr td input[type="text"],
  .contact_form .w_box table tr td input[type="email"],
  .contact_form .w_box table tr td input[type="tel"],
  .contact_form .w_box table tr td input[type="date"],
  .contact_form .w_box table tr td select,
  .contact_form .w_box table tr td textarea {
    padding: 16px;
  }
}

.contact_form .w_box table tr td .radio_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.contact_form .w_box table tr td .radio_wrap-row {
  flex-direction: row;
}

.contact_form .w_box table tr td .txt_wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact_form .w_box table p {
  padding: 0;
  margin: 0;
}

.contact_form .w_box table .wpcf7-radio {
  display: flex;
  flex-direction: column;
}

.contact_form .w_box table .wpcf7-not-valid {
  background: pink;
}

.contact_form .w_box .submit {
  text-align: center;
  margin-top: 20px;
}

.contact_form .w_box .submit input[type="submit"] {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #09258d;
  padding: 10px 0px;
  width: 100%;
  max-width: 300px;
  box-shadow: 3px 3px 0px #0d0030;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 600px) {
  .contact_form .w_box .submit input[type="submit"]:hover {
    transform: translate(3px, 3px);
    transition: all 0.3s;
    box-shadow: none;
  }
}

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

.back_btn a {
  color: #fff;
  background-color: #09258d;
  width: 100%;
  display: block;
  font-size: 20px;
  text-align: center;
  padding: 10px;
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (min-width: 1280px) {
  .back_btn a:hover {
    opacity: 0.7;
  }
}

.thx {
  width: 100%;
  margin: 40px 0;
}

@media screen and (min-width: 600px) {
  .thx {
    margin: 60px 0;
  }
}

.thx .w_box {
  padding: 0 20px 20px;
  background-color: #fff;
  border-radius: 12px;
}

@media screen and (min-width: 600px) {
  .thx .w_box {
    padding: 0px 40px 60px;
  }
}

.thx .w_box .contents {
  margin-top: 30px;
}

@media screen and (min-width: 600px) {
  .thx .w_box .contents {
    margin-top: 60px;
  }
}

.thx .w_box .contents h3 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01rem;
}

@media screen and (min-width: 600px) {
  .thx .w_box .contents h3 {
    font-size: 36px;
  }
}

.thx .w_box .contents p {
  font-size: 16px;
  text-align: left;
  margin-top: 50px;
}

@media screen and (min-width: 600px) {
  .thx .w_box .contents p {
    text-align: center;
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  font-size: 16px;
  padding: 10px !important;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
}

textarea {
  min-height: 250px;
}

button {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #09258d;
  padding: 10px 0px;
  width: 100%;
  max-width: 300px;
  box-shadow: 3px 3px 0px #0d0030;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 600px) {
  button:hover {
    transform: translate(3px, 3px);
    transition: all 0.3s;
    box-shadow: none;
  }
}

.bottomBarPanel,
#bottomPanel {
  text-align: center;
}

/*******************************
    footer
 *******************************/
#footer2 {
  width: 100%;
  padding: 10px 20px;
  background-color: #333;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  display: flex;
  flex-direction: column;
}

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

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

.support_content-archive .inner .contents {
  margin-top: 10px;
}

@media screen and (min-width: 600px) {
  .support_content-archive .inner .contents {
    margin-top: 30px;
  }
}

.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;
}

@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: #09258d;
  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 #09258d;
  -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 #09258d;
  border-right: 1px solid #09258d;
  -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 {
  padding: 10px 10px 30px;
}

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

.support_content-single .inner .contents {
  margin-top: 10px;
}

@media screen and (min-width: 600px) {
  .support_content-single .inner .contents {
    margin-top: 30px;
  }
}

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

.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: #f2f2f3;
  padding: 0px 20px 40px;
}

@media screen and (min-width: 600px) {
  .support_content-single .box {
    padding: 0px 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;
}

@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;
}

@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;
}

.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: #66d4f0;
  padding: 10px;
  border-radius: 12px;
  width: 100%;
}

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

.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 .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: #09258d;
}

@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;
}

@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;
  background-color: #f2f2f3;
  padding: 5px 10px;
}

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

@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: #f2f2f3;
  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: #09258d;
  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 {
  padding: 10px 10px 30px;
}

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

.support_content-single2 .inner .contents {
  margin-top: 10px;
}

@media screen and (min-width: 600px) {
  .support_content-single2 .inner .contents {
    margin-top: 30px;
  }
}

.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: #09258d;
  font-size: 24px;
}

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

.support_content-single2 .service {
  background-color: #f2f2f3;
  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 #cfcfcf;
}

.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: #09258d;
  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: #09258d;
  padding: 10px;
  margin-bottom: 10px;
}

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

.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 #cfcfcf;
    border-right: 1px solid #cfcfcf;
  }
}

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

@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;
}

@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;
}
