@charset "UTF-8";
body {
  min-width: 1000px;
}

.spHeader, .spFooter {
  display: none;
}

.aboutLinks.slick-item2 {
  display: none;
}

@media screen and (max-width: 768px) {
  *, *::before, *::after {
    box-sizing: border-box;
  }

  body {
    min-width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  picture {
    display: block;
  }

  span.inline-block {
    display: inline-block;
  }

  /***** HEADER *****/
  #header {
    display: none !important;
  }

  #header2 {
    display: none !important;
  }

  #gnav {
    display: none;
  }

  #header_sp {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
  }

  .spHeader {
    display: flex;
    z-index: 1002;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    height: 63px;
  }
  .spHeader_left {
    width: 200px;
  }
  .spHeader_right {
    margin-left: auto;
  }
  .spHeader_right > ul {
    display: flex;
    width: 126px;
    height: 63px;
  }
  .spHeader_rightItem {
    font-size: 10px;
    width: 50%;
    height: 100%;
    display: flex;
  }
  .spHeader_rightItem > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  .spHeader_rightItem > a img {
    width: 26px;
    margin-bottom: 3px;
  }
  .spHeader_button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 6px 0 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-size: 10px;
    width: 100%;
    height: 100%;
    transition: background-color 0.2s, color 0.2s;
  }
  .spHeader_buttonBorder {
    display: block;
    width: 50%;
    height: 2px;
    background: #333;
    margin: 0 auto;
    transition: background-color 0.2s, opacity 0.2s, transform 0.2s;
  }
  .spHeader_buttonBorder:nth-of-type(1) {
    transform: translateY(-6px);
  }
  .spHeader_buttonBorder:nth-of-type(3) {
    transform: translateY(6px);
  }
  .spHeader_buttonText-open, .spHeader_buttonText-close {
    margin-top: 12px;
  }
  .spHeader_buttonText-open {
    display: none;
  }
  .spHeader_buttonText-close {
    display: block;
  }
  .spHeader_button-open {
    background: #cb0e0e;
    color: white;
  }
  .spHeader_button-open .spHeader_buttonBorder {
    background: white;
  }
  .spHeader_button-open .spHeader_buttonBorder:nth-of-type(1) {
    transform: rotate(45deg) translateY(3px);
  }
  .spHeader_button-open .spHeader_buttonBorder:nth-of-type(2) {
    opacity: 0;
  }
  .spHeader_button-open .spHeader_buttonBorder:nth-of-type(3) {
    transform: rotate(-45deg) translateY(-3px);
  }
  .spHeader_button-open .spHeader_buttonText-open {
    display: block;
  }
  .spHeader_button-open .spHeader_buttonText-close {
    display: none;
  }
  .spHeader_links {
    position: absolute;
    z-index: 1001;
    display: none;
    top: 63px;
    left: 0;
    right: 0;
    width: 100%;
  }
  .spHeader_overlay {
    display: none;
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }
  .spHeader_telephone:hover img {
    filter: brightness(0) invert(0);
  }

  .spHeaderLinks {
    background: #f3f2f0;
    width: 100%;
    font-size: 16px;
    padding: 25px 20px 35px;
  }
  .spHeaderLinks_buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .spHeaderLinks_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 18px) / 3);
    flex-basis: calc((100% - 18px) / 3);
    font-size: 13px;
    font-weight: bold;
    background: white;
    border: 2px solid #9c9c9c;
  }
  .spHeaderLinks_button a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 9px 9px 5px;
  }
  .spHeaderLinks_button a span {
    display: block;
    text-align: center;
  }
  .spHeaderLinks_button a:hover img {
    filter: brightness(0) invert(0);
  }
  .spHeaderLinks_button:nth-of-type(1) img {
    width: 30px;
  }
  .spHeaderLinks_button:nth-of-type(2) img {
    width: 34px;
  }
  .spHeaderLinks_button:nth-of-type(3) img {
    width: 32px;
  }
  .spHeaderLinks_links-child {
    display: none;
    margin-left: 36px;
  }
  .spHeaderLinks_links a:hover {
    color: #cb0e0e;
  }
  .spHeaderLinks_link {
    display: block;
    padding: 1em 1em 1em 0;
    font-weight: bold;
    border-bottom: 1px solid #c30d23;
  }
  .spHeaderLinks_link-parent {
    display: block;
    padding: 1em 1em 1em 0;
    font-weight: bold;
    border-bottom: 1px solid #c30d23;
    position: relative;
    color: #333;
  }
  .spHeaderLinks_link-parent::before, .spHeaderLinks_link-parent::after {
    content: "";
    position: absolute;
    right: 9px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 2px;
    width: 23px;
    background: #922721;
  }
  .spHeaderLinks_link-parent::after {
    right: 9px;
    transform: rotate(90deg);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
  .spHeaderLinks_link-parent.js-spMenuOpen::after {
    transform: rotate(0);
    opacity: 0;
  }
  .spHeaderLinks_link-child {
    color: #333;
    display: block;
    padding: 0.8em 0.8em 0.8em 0;
    border-bottom: 1px solid #9c9c9c;
  }

  /***** FOOTER *****/
  #footer_inner {
    display: none;
  }

  #footer * {
    box-sizing: border-box;
  }

  .spFooter {
    display: block;
    padding: 25px 20px 35px;
  }
  .spFooter_logo {
    text-align: center;
  }
  .spFooter_links {
    margin-top: 34px;
    border-top: 1px solid #c30d23;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .spFooter_links li {
    flex-basis: calc((100% - 20px) / 2);
  }
  .spFooter_links a:hover {
    color: #cb0e0e;
  }
  .spFooter_link {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
    padding: 1em 1em 1em 0;
    border-bottom: 1px solid #c30d23;
    flex-basis: 100%;
  }
  .spFooter_buttons {
    margin-top: 34px;
  }
  .spFooter_buttons li + li {
    margin-top: 9px;
  }
  .spFooter_button {
    font-size: 14px;
    font-weight: bold;
    background: white;
    border: 2px solid #9c9c9c;
    padding: 1em;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
  }
  .spFooter_button::before {
    content: "▶";
    color: #c30d23;
    margin-right: 1em;
  }
  .spFooter_button:hover {
    color: #4e4e4e;
  }
  .spFooter_button:hover::before {
    color: #4e4e4e;
  }
  .spFooter_buttons li:nth-of-type(2) .spFooter_button::before {
    margin-right: 2em;
  }
  .spFooter_buttons li:nth-of-type(2) .spFooter_button::after {
    content: "";
    width: 1em;
    display: inline-block;
  }

  /***** COMMON *****/
  #breadcrumb {
    width: 100%;
  }

  #breadcrumb li p {
    width: 100%;
  }

  .remodal,
.remodal .remodal_box {
    width: calc(100% - 20px);
  }

  /** 共通化 **/
  .comContainer {
    max-width: 100%;
    width: 690px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /***** TOP *****/
  #top #slider_box {
    padding-top: 0;
  }

  #top #sec03 .plan {
    width: 100%;
  }

  #top #sec02 h3 {
    line-height: 1.4;
  }

  #top #sec05 h3 {
    width: 100%;
  }

  #top #sec05 ul {
    width: 100%;
  }

  #top #sec05 ul li p.title {
    width: 100%;
  }

  .planBox {
    width: 100%;
    flex-wrap: wrap;
  }

  .serviceDifference_title {
    padding-left: 10px;
    padding-right: 10px;
  }

  .planBox_light, .planBox_middle {
    width: 100%;
  }

  .serviceDifference_buttonPrice {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* お気軽にお問い合わせください */
  #trial_box {
    padding-left: 10px;
    padding-right: 10px;
  }
  #trial_box #trial_inner {
    width: 100%;
  }
  #trial_box #trial_inner h3 {
    line-height: 1.4;
  }
  #trial_box #trial_inner #trial_contact #left_btn,
#trial_box #trial_inner #trial_contact #right_btn {
    float: none;
    display: block;
  }
  #trial_box #trial_inner #trial_contact #left_btn {
    margin-bottom: 10px;
  }

  /* NEWS */
  #top #sec05 ul li p.date {
    margin-left: 0;
  }

  /***** MAIN *****/
  #main_v #main_v_inner,
#main_v.main_about #main_v_inner,
#main_v.main_select #main_v_inner {
    width: 100%;
  }

  .aboutSection {
    width: 100%;
  }

  #case #sec01, .caseStudy {
    width: 100%;
  }

  .caseStudy .case_box {
    width: 100%;
  }

  .casePerformance_inner {
    width: 100%;
  }

  /* 選べるECカート */
  #main_v.main_select {
    padding: 0;
  }

  .selectSection_inner {
    width: 100%;
  }

  .selectSection-feature {
    padding: 0;
  }
  .selectSection-feature .selectSection_inner {
    width: 100%;
  }

  /* サービス */
  #main_v.main_about {
    padding: 0;
  }

  .aboutTitle {
    padding-left: 10px;
    padding-right: 10px;
  }

  .aboutLinks {
    overflow: hidden;
    width: 100%;
  }

  .aboutLinks.slick-item1 {
    display: none;
  }

  .aboutLinks.slick-item2 {
    display: block;
  }
  .aboutLinks.slick-item2 li {
    height: 50px;
    padding: 10px;
  }

  .aboutSection-bePossible {
    padding-left: 10px;
    padding-right: 10px;
  }

  .aboutBePossibleBox {
    margin-top: 75px;
  }

  .aboutBePossibleBox_inner {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    background: white;
    display: flex;
    flex-direction: column;
  }
  .aboutBePossibleBox_inner .aboutBePossibleBox_image {
    order: 4;
  }

  .aboutBePossibleBox_titleBox {
    align-items: center;
  }

  .aboutBePossibleBox:nth-of-type(even) .aboutBePossibleBox_inner {
    background: white;
    padding-left: 10px;
    padding-right: 10px;
  }

  .aboutBePossibleBox_image {
    float: none;
    margin: 0;
  }

  .aboutBePossibleBox_ex ul {
    margin-left: -0.25em;
    margin-right: -0.25em;
  }

  .aboutBePossibleBox_ex ul > li {
    width: auto;
    margin: 0.25em;
  }

  .aboutBePossibleBox_exNote {
    position: relative;
    padding-right: 0;
    margin-top: 0;
  }

  .caseStudy .case_box .name {
    font-size: 16px;
  }

  /* 活用実績 */
  .casePerformance_cards {
    flex-wrap: wrap;
  }

  .casePerformance_card {
    width: 100%;
    padding-bottom: 0;
  }
  .casePerformance_card + .casePerformance_card {
    margin-top: 10px;
  }
  .casePerformance_card picture {
    text-align: center;
  }

  .casePerformance_inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* 各種連携 */
  #about #sec02 {
    width: 100%;
  }

  #about #sec03 section {
    width: 100%;
  }

  #about #sec03 ul {
    width: 100%;
  }

  #about #sec03 ul li {
    width: 100%;
  }

  .remodal.remodal_cooperation {
    width: calc(100% - 20px);
  }

  /* 製品紹介 */
  #functions #functions_menu {
    width: 100%;
  }

  #functions .details {
    width: 100%;
  }

  #functions .section_functions {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* 導入までの流れ */
  #flow #sec01 {
    width: 100%;
  }

  #flow .all_area ul.tab_area {
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0;
    height: auto;
  }

  #flow .all_area li {
    float: none;
    margin: 0;
  }

  #flow li#tab1,
#flow li#tab2 {
    width: 100%;
    flex-basis: 47%;
    background: none;
    height: auto;
  }

  #flow li#tab1.select,
#flow li#tab2.select {
    flex-basis: 53%;
  }

  #flow .tab_area li img {
    opacity: 1;
  }

  #flow #i_trial, #flow #c_trial {
    padding-left: 10px;
    padding-right: 10px;
  }

  #flow #i_trial #i_trial_btn a {
    display: block;
    margin: 0;
  }

  #flow #i_trial #i_trial_btn a + a {
    margin-top: 10px;
  }

  #flow .content_area #i_flow ul, #flow .content_area #c_flow ul {
    padding-left: 10px;
    padding-right: 10px;
  }

  #flow .content_area #i_flow ul li.start, #flow .content_area #c_flow ul li.start {
    width: 100%;
  }

  #flow .content_area #c_flow ul li,
#flow .content_area #i_flow ul li {
    position: relative;
  }

  #flow .content_area #c_flow ul li::after,
#flow .content_area #i_flow ul li::after {
    content: "▼";
    position: absolute;
    font-size: 20px;
    left: 0;
    right: 0;
    bottom: -35px;
    width: 1em;
    margin: auto;
    color: #cb0e0e;
  }

  #flow .content_area #c_flow ul li:last-of-type::after,
#flow .content_area #i_flow ul li:last-of-type::after {
    content: none;
  }

  #flow .content_area #c_flow ul li#c_flow01,
#flow .content_area #c_flow ul li#c_flow02,
#flow .content_area #c_flow ul li#c_flow03,
#flow .content_area #c_flow ul li#c_flow04,
#flow .content_area #i_flow ul li#i_flow01,
#flow .content_area #i_flow ul li#i_flow02,
#flow .content_area #i_flow ul li#i_flow03,
#flow .content_area #i_flow ul li#i_flow04,
#flow .content_area #i_flow ul li#i_flow05 {
    height: auto;
    width: 100%;
    border: 1px solid black;
    background: none;
    padding: 20px;
  }

  #flow .content_area #c_flow ul li#c_flow04 {
    height: auto;
    width: 100%;
    background: #F5F5F5;
    border-top: none;
  }

  #flow .content_area #i_flow ul li p.caption,
#flow .content_area #c_flow ul li p.caption {
    line-height: 1.2;
    display: flex;
    align-items: center;
  }
  #flow .content_area #i_flow ul li p.caption::before,
#flow .content_area #c_flow ul li p.caption::before {
    content: "1";
    color: white;
    margin-right: 0.5em;
    background-color: #cb0e0e;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    flex-shrink: 0;
    text-align: center;
    padding-top: 0.25em;
    line-height: 1.01;
  }

  #flow .content_area #c_flow ul li p br {
    display: none;
  }

  #flow .content_area #c_flow ul li#c_flow02 p.caption::before {
    content: "2";
  }

  #flow .content_area #c_flow ul li#c_flow03 p.caption::before {
    content: "3";
  }

  #flow .content_area #i_flow ul li#i_flow02 p.caption::before {
    content: "2";
  }

  #flow .content_area #i_flow ul li#i_flow03 p.caption::before {
    content: "3";
  }

  #flow .content_area #i_flow ul li#i_flow04 p.caption::before {
    content: "4";
  }

  #flow .content_area #i_flow ul li#i_flow05 p.caption::before {
    content: "5";
  }

  /* ご利用料金 */
  #price #contents {
    width: 100%;
  }

  #price #sec01 {
    width: 100%;
  }

  #price #sec02 {
    width: 100%;
  }

  #price #sec02 .inner {
    height: auto;
  }

  #price #sec01 .inner .box01 {
    height: auto;
    padding-bottom: 10px;
  }

  #price #sec01 .inner .box02 {
    padding-bottom: 10px;
  }
  #price #sec01 .inner .box02:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
  }

  #price #sec01 .inner .box01 p.first,
#price #sec01 .inner .box01 p.second,
#price #sec01 .inner .box01 p.third {
    width: 100%;
    max-width: 390px;
  }

  #price #sec01 .inner .box03 dt {
    width: 100%;
    max-width: 372px;
  }

  #price #sec01 .inner .box04,
#price #sec02 .inner .box04 {
    padding-left: 0;
    padding-right: 0;
  }

  #price #sec01 .inner {
    height: auto;
  }

  #price #sec02 .ttl_box h3 {
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding-right: 42px;
  }
  #price #sec02 .ttl_box h3::before {
    content: "";
    display: inline-block;
    background: url(../../img/price/img04.gif) no-repeat left center;
    height: 32px;
    width: 21px;
    margin-right: 10px;
  }

  #price #sec02 .inner .box01,
#price #sec02 .inner .box02,
#price #sec02 .inner .box03 {
    height: auto;
  }
  #price #sec02 .inner .box01 h4,
#price #sec02 .inner .box02 h4,
#price #sec02 .inner .box03 h4 {
    margin-bottom: 15px;
  }
  #price #sec02 .inner .box01 p.first,
#price #sec02 .inner .box02 p.first,
#price #sec02 .inner .box03 p.first {
    margin-top: 0;
  }
  #price #sec02 .inner .box01 p:last-of-type,
#price #sec02 .inner .box02 p:last-of-type,
#price #sec02 .inner .box03 p:last-of-type {
    margin-bottom: 15px;
  }

  #price #sec02 .inner .box03 p {
    margin-top: 0;
  }

  #price #sec02 .inner p.last {
    margin-left: 0;
  }

  /* 導入事例 */
  #case #clearlife #sec02 #interview {
    width: 100%;
  }

  #case .interviewees {
    flex-direction: column;
    margin-top: 0;
  }

  #case .interviewees_member {
    width: 100%;
    max-width: 380px;
    padding: 0.8em 1em;
    margin: 0 auto;
  }

  #case .interviewees_member:first-of-type {
    border-right: none;
  }

  #case #databusinesssupply #profile .box_left p {
    width: 100%;
  }

  #case #databusinesssupply #sec02 #interview {
    width: 100%;
  }

  #case #clearlife #profile .box_right {
    margin: 20px auto;
  }

  #case .interviewees_member img {
    width: 80px;
    height: 80px;
  }

  #case .interviewees_member p {
    font-size: 14px;
    line-height: 1.5em;
    width: 60%;
  }

  .caseStudy {
    padding-left: 10px;
    padding-right: 10px;
  }
  .caseStudy .case_box {
    padding: 20px 10px;
    flex-wrap: wrap;
  }
  .caseStudy .case_box .box_left {
    margin: 0;
    width: 100%;
  }
  .caseStudy .case_box .box_right {
    max-width: 100%;
    flex-basis: 100%;
    margin-top: 10px;
    text-align: center;
  }
  .caseStudy .case_box .btn {
    margin: 10px 0;
    text-align: right;
  }
  .caseStudy .case_box .case_lead br {
    display: none;
  }

  #case #databusinesssupply #head {
    padding-left: 10px;
    padding-right: 10px;
  }
  #case #databusinesssupply #head .lead br {
    display: none;
  }

  #case #databusinesssupply #sec02 #interview .box img {
    margin: 0;
  }

  #case #databusinesssupply #profile .box_left,
#case #databusinesssupply #profile .box_right {
    float: none;
  }

  #case #databusinesssupply #profile .box_right {
    text-align: center;
  }

  /* NEWS */
  #news #sec01 {
    width: 100%;
  }

  #news #sec01 li p.ttl {
    width: 100%;
  }

  #news #contact_bnr {
    width: 100%;
  }

  /* サポート */
  #support #sec01 {
    width: 100%;
  }

  #support #support_box {
    width: 100%;
    height: auto;
    padding: 10px;
  }

  #support #sec02 {
    width: 100%;
  }
  #support #sec02:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
  }

  #support #sec03 section {
    width: 100%;
  }

  #support #sec03 ul {
    width: 100%;
    height: auto;
    padding: 0 10px;
    background: none;
  }

  #support #sec03 li {
    position: relative;
  }

  #support #sec03 li#first,
#support #sec03 li#second,
#support #sec03 li#third,
#support #sec03 li#last {
    float: none;
    width: 100%;
    margin: 0 0 30px;
    padding: 10px;
    border: 1px solid #EAEAEA;
    background-color: #F9F9F9;
  }
  #support #sec03 li#first::after,
#support #sec03 li#second::after,
#support #sec03 li#third::after,
#support #sec03 li#last::after {
    content: "▼";
    position: absolute;
    font-size: 20px;
    left: 0;
    right: 0;
    bottom: -35px;
    width: 1em;
    margin: auto;
    color: #cb0e0e;
  }
  #support #sec03 li#first h4,
#support #sec03 li#second h4,
#support #sec03 li#third h4,
#support #sec03 li#last h4 {
    display: flex;
    align-items: center;
    padding: 0;
  }
  #support #sec03 li#first h4::before,
#support #sec03 li#second h4::before,
#support #sec03 li#third h4::before,
#support #sec03 li#last h4::before {
    content: "1";
    color: white;
    margin-right: 0.5em;
    background-color: #cb0e0e;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    flex-shrink: 0;
    text-align: center;
    padding-top: 0.25em;
    line-height: 1.01;
  }

  #support #sec03 li#second h4::before {
    content: "2";
  }

  #support #sec03 li#third h4::before {
    content: "3";
  }

  #support #sec03 li#last h4::before {
    content: "4";
  }

  #support #sec03 li#last {
    margin-bottom: 0;
  }
  #support #sec03 li#last::after {
    content: none;
  }

  #support #sec04 {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  #support #sec04 p {
    width: 100%;
  }

  /* 会社概要 */
  #company #sec01 section {
    width: 100%;
  }

  #company #sec01 #greeting {
    width: 100%;
  }

  #company #sec02 {
    width: 100%;
  }

  #company #sec01 #sec01_inner img {
    float: none;
  }

  #company #sec02 table {
    margin-left: 10px;
    margin-right: 10px;
  }

  #company #sec02 table tr {
    display: flex;
    flex-wrap: wrap;
  }

  #company #sec02 table th {
    padding: 10px;
  }

  #company #sec02 table th,
#company #sec02 table td {
    width: 100%;
  }

  /* 動作環境 */
  #environment #sec01 {
    width: 100%;
  }

  #environment .all_area ul.tab_area {
    width: 100%;
    padding: 0;
    display: flex;
  }

  #environment .all_area li {
    float: none;
    margin: 0;
  }

  #environment li#tab1,
#environment li#tab2 {
    width: 50%;
    padding: 0;
  }

  #environment #sec01 table {
    width: 100%;
    margin: 10px 0;
  }

  #environment #sec01 table tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  #environment #sec01 table th,
#environment #sec01 table td {
    width: 100%;
  }

  #environment #sec01 table th {
    width: 100%;
    padding: 10px;
  }

  #environment .content_area {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* よくあるご質問 */
  #faq #sec01 {
    width: 100%;
  }

  /* 個人情報保護方針 */
  #privacy #sec01 {
    width: 100%;
  }

  /* サイトマップ */
  #sitemap #sec01 section {
    width: 100%;
  }

  #sitemap #sec01 ul.left,
#sitemap #sec01 ul.right {
    width: 100%;
    float: none;
  }
  #sitemap #sec01 ul.left a,
#sitemap #sec01 ul.right a {
    text-decoration: underline;
  }
  #sitemap #sec01 ul.left a:hover,
#sitemap #sec01 ul.right a:hover {
    text-decoration: none;
  }

  /* 無料お試し */
  #trial #sec01 {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  #trial #sec01 .image1 {
    margin-left: 0;
    margin-right: 0;
  }

  #trial #sec01 form h3 {
    margin: 0 0 15px;
  }

  #trial #sec01 .prohibit {
    margin: 0;
  }

  /* お問い合わせ */
  #contact #sec01 {
    width: 100%;
  }

  #contact #sec01 table th {
    width: 100%;
  }

  #contact #sec01 table td {
    width: 100%;
  }

  /* 資料請求 */
  #catalog #sec01 {
    width: 100%;
  }

  #catalog #sec01 table th {
    width: 100%;
  }

  #catalog #sec01 table td {
    width: 100%;
  }

  #catalog #sec01 .confirm {
    width: 100%;
  }

  #catalog #sec01 input.corp {
    width: 100%;
  }

  /* フォーム共通 */
  #trial #sec01 p,
#contact #sec01 p,
#catalog #sec01 p {
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  #trial #sec01 p.required_p,
#contact #sec01 p.required_p,
#catalog #sec01 p.required_p {
    margin-left: 10px;
  }

  #trial #sec01 form,
#contact #sec01 form,
#catalog #sec01 form {
    padding-left: 10px;
    padding-right: 10px;
  }

  #trial #sec01 table,
#contact #sec01 table,
#catalog #sec01 table {
    width: 100%;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  #trial #sec01 tr,
#contact #sec01 tr,
#catalog #sec01 tr {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  #trial #sec01 table th,
#trial #sec01 table td,
#contact #sec01 table th,
#contact #sec01 table td,
#catalog #sec01 table th,
#catalog #sec01 table td {
    width: 100%;
  }

  #trial #sec01 table th,
#contact #sec01 table th,
#catalog #sec01 table th,
#contact #sec01 table th.comment_th {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
  }

  #trial #sec01 table th.required_th,
#trial #sec01 table th.required_th2,
#trial #sec01 table th.required_th3,
#contact #sec01 table th.required_th,
#contact #sec01 table th.required_th2,
#contact #sec01 table th.required_th3,
#catalog #sec01 table th.required_th,
#catalog #sec01 table th.required_th2,
#catalog #sec01 table th.required_th3 {
    background: #f6f6f6;
  }
  #trial #sec01 table th.required_th::after,
#trial #sec01 table th.required_th2::after,
#trial #sec01 table th.required_th3::after,
#contact #sec01 table th.required_th::after,
#contact #sec01 table th.required_th2::after,
#contact #sec01 table th.required_th3::after,
#catalog #sec01 table th.required_th::after,
#catalog #sec01 table th.required_th2::after,
#catalog #sec01 table th.required_th3::after {
    content: "";
    display: inline-block;
    background-image: url(/img/common/icn03.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 39px;
    height: 18px;
    margin-left: 10px;
  }

  #trial #sec01 table td,
#contact #sec01 table td,
#catalog #sec01 table td {
    padding: 18px;
  }

  #trial #sec01 textarea,
#contact #sec01 textarea,
#catalog #sec01 textarea {
    width: 100%;
  }

  #trial #sec01 input.corp,
#contact #sec01 input.corp,
#trial #sec01 input.corp {
    width: 100%;
  }

  #trial #sec01 .confirm,
#contact #sec01 .confirm,
#catalog #sec01 .confirm {
    width: 100%;
    padding-left: 0;
  }
}
