@charset "utf-8";

        /* Beige Section */
        .office_question {
            margin: 65px auto;
            max-width: 1260px;
          }
          .office_question .container {
            background: #faf8f5;
            margin: 0 25px;
            padding: 45px 20px;
            position: relative;
          }
          .office_question .container:after {
            background: url(../images/office_question_arrow.png) no-repeat center top / cover;
            bottom: -45px;
            content: "";
            height: 45px;
            left: 50%;
            margin-left: -75px;
            position: absolute;
            width: 150px;
          }
          .office_question .container h2 {
            color: #833637;
            font-size: 32px;
            margin: 0 auto 20px;
            line-height: 1.75em;
            max-width: 850px;
            position: relative;
            text-align: center;
          }
          .office_question .container h2:after {
            background: #c8b175;
            bottom: -12px;
            content: "";
            display: block;
            height: 4px;
            left: 0;
            position: absolute;
            width: 100%;
          }
          @media screen and (max-width: 980px) {
            .office_question .container h2 {
              font-size: 24px;
            }
        }
        @media screen and (max-width: 767px) {
            .office_question {
                margin: 40px auto;
            }
            .office_question .container {
            padding: 30px 20px;
            }
            .office_question .container:after {
            bottom: -30px;
            height: 30px;
            left: 50%;
            margin-left: -50px;
            width: 100px;
            }
            .office_question .container h2 {
            font-size: 20px;
            text-align: center;
            }

        }
        /* White Section with SaaS Info */
        .saas-info {
            background: white;
            padding: 0 0 50px;
        }

        .saas-content {
            display: flex;
            gap: 80px;
            align-items: flex-start;
        }

        .saas-text {
            flex: 1;
        }

        .saas-text h3 {
            color: #833637;
            font-size: 30px;
            font-weight: 500;
            margin: 0 auto 1em;
            line-height: 1.75em;
            max-width: 850px;
            position: relative;
        }

        .saas-text p {
            font-size: 14px;
            line-height: 1.8;
        }

        .saas-diagram {
            width: 40%;
            flex-shrink: 0;
            padding-top: 3em;
        }

        .diagram-placeholder {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Gray Section with 4 Icons */
        .features-section {
            padding: 40px 30px;
        }

        .features-section .container {
            background-color: #f5f5f5;
            max-width: 1140px;
            margin: 0px auto;
            padding: 3em 2rem;
        }


        .features-title, 
        .problems-title, 
        .features-list-title, 
        .pricing-title {
            color: #333;
            font-size: 28px;
            font-weight: 500;
            margin: 0 auto 1.6em;
            line-height: 1.75em;
            max-width: 850px;
            position: relative;
            text-align: center;
        }

        .features-grid {
            display: flex;
            gap: 0px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-item {
            display: inline-flex;
            flex-direction: column;
            gap: 20px;
            border-right: 1px solid #A3A3A3;
            width: 25%;
        }
        .feature-item:last-child {
            border-right: none;
        }

        .feature-icon {
            width: 122px;
            height: 122px;
            margin: 0 auto ;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .feature-item h4 {
            color: #333;
            text-align: center;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 35px; /* 145.833% */
        }


        @media screen and (max-width: 980px) {
            .saas-content {
                display: flex;
                gap: 14px;
                align-items: flex-start;
                flex-direction: column;
            }
            .saas-diagram {
                margin-top: 0px;
                margin-bottom: 3em;
                padding-left: 0;
                width: 100%;
            }
            .diagram-placeholder {
                display: block;
                width: 100%;
                text-align: center;
            }
            .features-grid {
                display: flex;
                gap: 0px;
                max-width: 1200px;
                margin: 0 auto;
                flex-direction: column;
                flex-wrap: wrap;
                align-items: center;
            }
            .feature-item {
                display: inline-flex;
                flex-direction: column;
                gap: 20px;
                border-right: none;
                border-bottom: solid 1px #A3A3A3;
                width: 60%;
                padding: 1em 0;
            }
            .problems-title, .solution-main-title, .features-list-title, .pricing-title  {
                padding-top: 3em;
            }
            .problems-grid, .solution-grid {
                flex-direction: column;
            }
        }

        @media screen and (max-width: 850px) {
            .features-list-grid, .pricing-grid {
                flex-direction: column;
            }
        }

        /* White Section with 3 Problem Cards */
        .problems-section {
            background: white;
            padding: 50px 0;
        }

        .problems-grid {
            display: flex;
            gap: 20px;
        }

        .problem-card,
        .features-list-card {
            flex: 1;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid #833637;
            background: #FAF8F5;
        }

        .problem-card-header,
        .features-list-header {
            padding: 23px;
            text-align: center;
            font-size: 14px;
            color: #833637;
            font-weight: bold;
            border-bottom: 4px solid #C8B175;
            text-align: center;
            font-family: "Noto Sans JP";
            font-size: 22px;
            font-style: normal;
            font-weight: 700;
            line-height: 33px; /* 150% */
        }

        .problem-card-body {
            padding: 30px;
        }

        .problem-card-body p {
            text-align: center;
            font-size: 19px;
            font-weight: 600;
            line-height: 25.48px; /* 127.4% */
            padding-bottom: 0.7em;
        }
        .problem-card-body ul {
            padding: 1em;
        }
        .problem-card-body ul li {
            font-size: 16px;
            font-weight: 350;
            line-height: 25.48px; /* 159.25% */
            list-style: disc;
            padding-bottom: 1em;
        }

        /* White Section with Solution */
        .solution-section {
            background: white;
            padding: 50px 0;
            text-align: center;
        }

        .solution-main-title {
            color: #833637;
            font-size: 28px;
            font-weight: 500;
            margin: 0 auto 2em;
            line-height: 1.75em;
            max-width: 850px;
            position: relative;
            text-align: center;
        }

        .solution-subtitle {
            font-size: 13px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .solution-grid {
            display: flex;
            gap: 20px;
            margin-bottom: 4em;
        }

        .solution-card {
            flex: 1;
            padding: 28px;
            text-align: center;
            border-radius: 8px;
            border: 1px solid #833637;
            background: #FAF8F5;
        }

        .solution-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .solution-card h4 {
            color: #333;
            text-align: center;
            font-size: 20px;
            font-weight: 500;
            line-height: 25.48px; /* 127.4% */
        }

        .solution-card p {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
            padding: 2em;
            text-align: left;
        }

        /* CTA Buttons */
        a.cta-primary {
            background: #e74c3c;
            border: 1px solid #e74c3c!important;
            padding: 20px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            margin: 8px auto;
            color: #FFF !important;
            display: flex;
            width: 27%;
            min-width: 180px;
            height: 18px;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            font-size: 18px;
            font-weight: 400;
            line-height: 15px;
        }

        a.cta-primary:hover {
            border: 1px solid #e74c3c;
            background: #FFF;
            color: #e74c3c !important;
            text-decoration: none!important;
        }

        .cta-secondary {
            background: transparent;
            color: #e74c3c;
            padding: 10px 30px;
            border: 1px solid #e74c3c;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 8px;
        }

        /* Gray Section with Features List */
        .features-list-section {
            padding: 50px 0;
        }

        .features-list-grid {
            display: flex;
            gap: 70px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .features-list-card {
            flex: 1;
            overflow: hidden;
        }

        .features-list-body {
            padding: 40px;
            color: #333;
            font-size: 14px;
            font-weight: 700;
            line-height: 26px; /* 250% */
        }

        .features-list-body ul {
            list-style: none;
        }

        .features-list-body li {
            color: #666;
            margin-bottom: 6px;
            padding-left: 12px;
            position: relative;
            list-style: none;
        }
        .features-list-body p {
            text-align: right;
            font-size: 14px;
            font-weight: 350;
            line-height: 21px; /* 150% */
            padding-top: 1em;
        }
        .features-list-ul {
            font-weight: 350;
            padding-top: 5px;
            line-height: 1.1em;
        }



        /* White Section with Pricing */
        .pricing-section {
            background: white;
            padding: 40px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .pricing-grid {
            display: flex;
            max-width: 1000px;
            margin: 0 auto;
            gap: 70px;
            border-radius: 5px;
            margin-bottom: 4em;
        }

        .pricing-card {
            flex: 1;
            text-align: center;
            border-radius: 8px 8px 0 0;
            border: 1px solid #DEE2E6;
            overflow: hidden;
        }

        .pricing-header {
            padding: 30px 20px;
        }

        .pricing-basic .pricing-header {
            background: #3C95C1;
            color: white;
        }

        .pricing-premium .pricing-header {
            background: #E65549;
            color: white;
        }
        .pricing-header-sub {
            font-size: 18px;
            margin-bottom: 0;
            line-height: 1.3;
            color: white;
        }

        .pricing-card h3 {
            color: #FFF;
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            line-height: 26px; /* 120% */
        }

        .price {
            font-size: 16px;
            margin-bottom: 1.2em;
            line-height: 1.3;
            color: #333;
            text-align: center;
        }
        .price span{
            font-size: 28px;
            margin-bottom: 0;
            padding: 0 5px;
            line-height: 1.3;
            text-align: center;
            font-weight: 900;
        }
        .pricing-content {
            background: white;
            padding: 40px;
            border-top: 1px solid #eee;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
        }

        .pricing-features li {
            margin-bottom: 4px;
            padding-left: 20px;
            position: relative;
            color: #333;
            font-size: 14px;
            font-weight: 700;
            line-height: 36px; /* 150% */
        }
        .pricing-features li p {
            font-weight: 350;
            padding-left: 10px;
            position: relative;
            top: -10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .pricing-grid {
                flex-direction: column;
            }
        }


/* Original Design */
#submain section > .office_header {
  background: #3e87c7 url(images/main_header_base.jpg) no-repeat center center /
    cover;
  height: auto;
}
#submain section > .office_header h1 {
  line-height: 1.5;
  padding: 40px 0 30px;
}

.office_question .container {
  background: #faf8f5;
  margin: 0 25px;
  padding: 45px 20px;
  position: relative;
}
.office_question .container:after {
  background: url(../images/office_question_arrow.png) no-repeat center top / cover;
  bottom: -45px;
  content: "";
  height: 45px;
  left: 50%;
  margin-left: -75px;
  position: absolute;
  width: 150px;
}
.office_question .container h2 {
    color: #833637;
    font-size: 30px;
    font-weight: 500;
    margin: 0 auto 1em;
    line-height: 1.75em;
    max-width: 850px;
    position: relative;
    display: table;
    text-align: center;
}
.office_question .container h2:after {
  background: #c8b175;
  bottom: -12px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}
.office_question .container .row, #device_restriction .office_intro .container .row {
  display: flex;
}
.office_question .container .row .col {
  border-right: 1px solid #a3a3a3;
  padding: 0 25px;
  text-align: center;
  width: 33%;
}
.office_question .container .row .col:last-child {
  border: none;
}
.office_question .container .row .col p {
  font-size: 20px;
  line-height: 1.5;
}
.office_question .container .row .col img {
  display: block;
  margin: 25px auto 0;
  width: 100%;
}
.office_answer {
  margin: 65px auto;
  max-width: 1140px;
}
.office_answer .container {
  border-bottom: 1px solid #a3a3a3;
  margin: 0 25px;
  padding: 0 0 60px;
  position: relative;
}
.office_answer .container h2 {
  color: #833637;
  font-size: 32px;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1.75em;
  max-width: 850px;
  position: relative;
  text-align: center;
}
.office_answer .container img {
  display: block;
  margin: 32px auto;
}
.office_answer .container p {
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
.office_merit {
  margin: 65px auto;
  max-width: 1140px;
}
.office_merit .container {
  border-bottom: 1px solid #a3a3a3;
  margin: 0 25px;
  padding: 0 0 60px;
  position: relative;
}

.office_merit .container .row {
  display: flex;
  margin: 50px -50px 0;
  justify-content: center;
}
.office_merit .container .row .col {
  background: #faf8f5;
  border: 1px solid #833637;
  border-radius: 8px;
  margin: 0 50px;
  padding: 0 20px;
  width: 33%;
  max-width: 280px;
}
.office_merit .container .row .col .title {
  align-items: center;
  border-bottom: 4px solid #c8b175;
  display: flex;
  height: 150px;
  text-align: center;
}
.office_merit .container .row .col .title h3 {
  font-size: 22px;
  line-height: 1.5;
  width: 100%;
}
.office_merit .container .row .col img {
  display: block;
  width: 100%;
}
.office_collaboration {
  margin: 65px auto;
  max-width: 1250px;
}
.office_collaboration .container {
  border-bottom: 1px solid #a3a3a3;
  margin: 0 25px;
  padding: 0 0 60px;
  position: relative;
}
.office_collaboration .container .row {
  display: flex;
}
.office_collaboration .container .row .left {
  width: 40%;
}
.office_collaboration .container .row .left h2 {
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.office_collaboration .container .row .left p {
  font-size: 16px;
  line-height: 1.8;
}
.office_collaboration .container .row .right {
  padding-left: 45px;
  width: 60%;
}
.office_collaboration .container .row .right img {
  display: block;
  width: 100%;
}
.office_easy {
  margin: 65px auto;
  max-width: 1140px;
}
.office_easy .container {
  border-bottom: 1px solid #a3a3a3;
  margin: 0 25px;
  padding: 0 0 60px;
  position: relative;
}
.office_easy .container .row {
  display: flex;
}
.office_easy .container .row .left {
  width: 40%;
}
.office_easy .container .row .left h2 {
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.office_easy .container .row .left p {
  font-size: 16px;
  line-height: 1.5;
}
.office_easy .container .row .right {
  padding-left: 45px;
  width: 60%;
}
.office_easy .container .row .right img {
  display: block;
  width: 100%;
}
.office_flow {
  margin: 65px auto;
  max-width: 1140px;
}
.office_flow .container {
  margin: 0 25px;
  position: relative;
}
.office_flow .container h2 {
  color: #833637;
  font-size: 32px;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1.75em;
  max-width: 850px;
  position: relative;
  text-align: center;
}
.office_flow .container .row {
  align-items: center;
  display: flex;
  margin-top: 50px;
}
.office_flow .container .row .col {
  background: #faf8f5;
  border: 1px solid #833637;
  border-radius: 8px;
  overflow: hidden;
  width: 22%;
}
.office_flow .container .row .col h3 {
  background: #78282a;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding: 10px;
  text-align: center;
}
.office_flow .container .row .col img {
  display: block;
  margin: 20px auto;
  width: auto;
  height:100px;
}
.office_flow .container .row .col p {
  color: #833637;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
}
.office_flow .container .row .arrow {
  width: 4%;
}
.office_flow .container .row .arrow img {
  display: block;
  margin: 0 auto;
  width: 50%;
}
.b-bg-gray {
  background: #f2f2f2;
  padding: 1px 0 60px;
  margin-bottom: 60px;
}
.office_functions {
  margin: 10px auto;
  padding: 65px 0;
  max-width: 1200px;
  background: #fff;
}
.office_functions .container {
  max-width: 890px;
  margin: 0 auto;
}
.office_functions .container h2 {
  color: #833637;
  font-size: 32px;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1.75em;
  max-width: 850px;
  position: relative;
  text-align: center;
}
.office_functions .container h2:after {
  content: "";
  display: block;
  height: 2px;
  width: 120px;
  background: #c8b175;
  margin: 25px auto;
}
.office_functions .container ul li {
  overflow: hidden;
  padding: 50px 0;
  border-bottom: 1px solid #a3a3a3;
}
.office_functions .container ul li figure {
  float: left;
  width: 160px;
  text-align: center;
}
.office_functions .container ul li dl {
  width: calc(100% - 180px);
  float: right;
}
.office_functions .container ul li dl dt {
  font-size: 22px;
  margin: 0 0 20px;
}
.office_functions .container ul li dl dd {
  font-size: 16px;
  line-height: 1.6em;
}
.office_functions .container ul li:last-child {
  border-bottom: 0px none;
}
.office_option {
  margin: 60px auto 0;
  padding: 65px 0 30px;
  max-width: 1200px;
  background: #fff;
}
.office_option .container {
  margin: 0 40px;
}
.office_option .container h2 {
  color: #833637;
  font-size: 32px;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1.75em;
  max-width: 850px;
  position: relative;
  text-align: center;
}
.office_option .container h2:after {
  content: "";
  display: block;
  height: 2px;
  width: 120px;
  background: #c8b175;
  margin: 25px auto;
}
.office_option .container ul li {
  overflow: hidden;
  padding: 60px 0;
  border-bottom: 1px solid #a3a3a3;
}
.office_option .container ul li figure {
  float: left;
  width: 580px;
  text-align: center;
}
.office_option .container ul li dl {
  width: 525px;
  float: right;
  padding: 10px 0 0;
}
.office_option .container ul li dl dt {
  font-size: 26px;
  margin: 0 0 20px;
}
.office_option .container ul li dl dd {
  font-size: 16px;
  line-height: 1.6em;
}
.office_option .container ul li:last-child {
  border-bottom: 0px none;
}
@media screen and (max-width: 1200px) {
  .office_merit .container .row .col .title h3 {
    font-size: 17px;
  }
  .office_option .container ul li figure {
    float: none;
    width: 70%;
    margin: 0 auto 24px;
  }
  .office_option .container ul li dl {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 1100px){
.office_flow .container .row .col p {
    font-size: 16px;
  }
}
@media screen and (max-width: 980px) {
  .office_question .container h2 {
    font-size: 24px;
    display: table;
    text-align: center;
    margin: 0 auto 1em;
  }
  .office_question .container .row .col p {
    font-size: 16px;
    text-align: center;
  }
  .office_question .container .row .col p br {
    display: none;
  }
  .office_answer .container h2 {
    font-size: 24px;
  }
  .office_answer .container img {
    max-width: 500px;
  }
  .office_answer .container p {
    font-size: 16px;
  }
  .office_merit .container h2 {
    font-size: 24px;
  }
  .office_merit .container .row {
    margin: 50px -20px 0;
  }
  .office_merit .container .row .col {
    margin: 0 20px;
  }
  .office_merit .container .row .col .title h3 {
    font-size: 16px;
  }
  .office_merit .container .row .col .title h3 br {
    display: none;
  }
  .office_collaboration .container .row {
    display: block;
  }
  .office_collaboration .container .row .left {
    text-align: center;
    width: 100%;
  }
  .office_collaboration .container .row .right {
    margin-top: 50px;
    padding-left: 0;
    width: 100%;
  }
  .office_easy .container .row {
    display: block;
  }
  .office_easy .container .row .left {
    text-align: center;
    width: 100%;
  }
  .office_easy .container .row .right {
    margin-top: 50px;
    padding-left: 0;
    width: 100%;
  }
  .office_flow .container h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 860px){
.office_flow .container .row .col p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  #submain section {
    font-size: 1.2em;
    line-height: 21px;
    padding: 0px 0;
}
  .office_question {
    margin: 40px auto;
  }
  .office_question .container {
    padding: 30px 20px;
  }
  .office_question .container:after {
    bottom: -30px;
    height: 30px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
  }
  .office_question .container h2 {
    font-size: 20px;
    text-align: center;
  }
  .office_question .container .row {
    display: block;
  }
  .office_question .container .row .col {
    border: none;
    margin-top: 30px;
    padding: 0 10px;
    width: calc(100% - 20px);
  }
  .office_question .container .row .col img {
    margin: 10px auto 0;
  }
  .office_answer {
    margin: 60px auto 40px;
  }
  .office_answer .container {
    padding: 0 0 40px;
  }
  .office_answer .container h2 {
    font-size: 20px;
  }
  .office_answer .container h2 br {
    display: none;
  }
  .office_answer .container img {
    margin: 20px auto;
    width: 100%;
  }
  .office_answer .container p {
    font-size: 14px;
    text-align: left;
  }
  .office_merit {
    margin: 40px auto;
  }
  .office_merit .container {
    padding: 0 0 40px;
  }
  .office_merit .container h2 {
    font-size: 20px;
  }
  .office_merit .container .row {
    display: block;
    margin: 0;
  }
  .office_merit .container .row .col {
    margin: 20px auto 0;
    padding: 0 20px;
    width: 70%;
  }
  .office_merit .container .row .col .title {
    height: auto;
    padding: 20px 0;
  }
  .office_merit .container .row .col .title h3 {
    font-size: 20px;
  }
  .office_collaboration {
    margin: 40px auto;
  }
  .office_collaboration .container {
    padding: 0 0 40px;
  }
  .saas-text h3, .features-title, .problems-title, .features-list-title, .pricing-title, .solution-main-title {
    font-size: 20px;
    text-align: center;
  }

  .problem-card-header, .features-list-header, .pricing-card h3, .feature-item h4 {
    font-size: 18px;
  }

  .diagram-placeholder img {
        display: block;
        width: 100%;
        text-align: center;
        max-width: 480px;
        margin: 0 auto;
    }

  .office_collaboration .container .row .left p {
    font-size: 14px;
    text-align: left;
  }
  .office_collaboration .container .row .right {
    margin-top: 20px;
  }
  .office_easy {
    margin: 40px auto;
  }
  .office_easy .container {
    padding: 0 0 40px;
  }
  .office_easy .container .row .left h2 {
    font-size: 20px;
  }
  .office_easy .container .row .left p {
    font-size: 14px;
  }
  .office_easy .container .row .right {
    margin-top: 20px;
  }
  .office_flow {
    margin: 40px auto;
  }
  .office_flow .container h2 {
    font-size: 20px;
  }
  .office_flow .container .row {
    display: block;
    margin-top: 20px;
  }
  .office_flow .container .row .col {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .office_flow .container .row .col h3 {
    font-size: 16px;
  }
  .office_flow .container .row .col img {
    width: 50%;
    height: auto;
  }
  .office_flow .container .row .col p {
    font-size: 16px;
  }
  .office_flow .container .row .arrow {
    margin: 0 auto;
    width: 50%;
  }
  .office_flow .container .row .arrow img {
    margin: 0 auto;
    transform: rotate(90deg);
    width: 15%;
  }
  .office_functions .container h2,
  .office_option .container h2 {
    font-size: 20px;
  }
  .office_functions .container h2:after,
  .office_option .container h2:after {
    margin: 15px auto;
  }
  .office_functions {
    padding: 40px 0;
  }
  .office_functions .container {
    margin: 0 25px;
  }
  .office_functions .container ul li figure {
    float: none;
    width: 100%;
    margin: 0 0 35px;
  }
  .office_functions .container ul li figure img {
    max-width: 40%;
  }
  .office_functions .container ul li dl {
    float: none;
    width: 100%;
    text-align: center;
  }
  .office_functions .container ul li {
    padding: 30px 0;
  }
  .office_option {
    margin: 30px 0;
    padding: 40px 0 20px;
  }
  .office_option .container {
    margin: 0 25px;
  }
  .office_option .container ul li {
    padding: 30px 0;
  }
  .office_option .container ul li figure {
    float: none;
    width: 70%;
    margin: 0 auto 20px;
  }
  .office_option .container ul li figure img {
    width: 100%;
  }
  .office_option .container ul li dl {
    float: none;
    width: 100%;
    text-align: center;
  }
  .office_option .container ul li dl dt {
    font-size: 22px;
  }
  .b-bg-gray {
    padding: 1px 0;
    margin-bottom: 30px;
  }
  .office_functions .container ul li dl dd,
  .office_option .container ul li dl dd {
    text-align: left;
  }
}

#app_name .sso_plans_inner {
  margin-bottom: 70px;
}

@media screen and (max-width: 450px) {
  #submain section h1.sp_ttl {
    font-size: 0.9em;
    text-align: center;
    line-height: 20px;
    padding-top: 0px;
    top: 20px;
    position: relative;
  }
}

/* Bundle /apps/bundle.html */
.office_merit .container .row .col {
  margin: 0 25px;
}

.office_merit .container .row .col img {
  padding: 20px 0;
}

.office_merit div.bundle_div_box {
  max-width: 850px;
  margin: 3em auto;
}
.office_merit ul.bundle_list {
  column-count: 3;        /* 列数を3列に指定 */
  column-gap: 30px;       /* 各列の間隔を調整する */
}
.office_merit .bundle_list li {
  padding: 4px;
  /*border: 1px solid #ccc;*/
}
.office_collaboration .container .left p {
  text-align: left;
}
.office_collaboration .container h2 {
  color: #833637;
  font-size: 30px;
  font-weight: 500;
  margin: 0 auto 3em;
  line-height: 1.75em;
  max-width: 850px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 980px){
  .office_collaboration .container h2 {
font-size: 24px;
margin-bottom: 1.5em;
}
}
@media screen and (max-width: 767px){
.office_collaboration .container h2 {
font-size: 20px;
}
.office_merit .container .row .col {
    margin: 20px auto 0;
    padding: 0 20px;
    width: 70%;
  }
  .office_collaboration .container h2 {
margin: 0 auto 1em;
}
}

/*  device_restriction.html  */

#device_restriction .office_intro {
  margin: 65px auto -65px;
  max-width: 1140px;
}
#device_restriction .office_intro .container .row .col  {
  border-right: 1px solid #a3a3a3;
}
#device_restriction .office_intro .container h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 25px auto;
  line-height: 1.75em;
  max-width: 850px;
  position: relative;
  text-align: center;
}
#device_restriction .office_intro .container .row .col {
  border-right: 1px solid #a3a3a3;
  padding: 0 25px;
  text-align: center;
  width: 25%;
}
#device_restriction .office_intro .container .row .col:last-child {
  border: none;
}
#device_restriction .office_intro .container .row .col p {
  font-size: 18px;
  line-height: 1.5;
}
#device_restriction .office_question .container .row .col {
  width: 80%;
  margin: auto;
}
#device_restriction .office_question .container .row .col {
  width: 50%;
}
#device_restriction .office_intro div img {
  padding: 30px 0;
}
div.big_arrow {
  width: inherit;
  text-align: center;
  padding: 40px;
}
#device_restriction .office_intro div.big_arrow img {
  margin: auto;
}
#device_restriction .office_merit .container .row {
  display: flex;
  margin: 50px 70px;
  justify-content: space-evenly;
}
#device_restriction .office_merit .container .row .col .title {
  height: auto;
  position: relative;
}
#device_restriction .office_merit .container .row .col .title h3 {
  font-size: 22px;
  padding: 30px 0 16px;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  color: #833637;
}
#device_restriction .office_merit .container .row .col .title h3 img {
  width: auto;
  display: inline-block;
  padding: 2px 5px;
}
#device_restriction .office_merit .container .row .col .title h3 img {
  width: auto;
  display: inline-block;
  padding: 2px 5px;
}
#device_restriction .office_merit .container .row .col {
  position: relative;
  height: 430px;
}
#device_restriction .office_merit .container .row .col img.illust {
  position: absolute;
  bottom: 0px;
  right: 0%;
}
#device_restriction .office_merit .container .row .col p {
  font-size: 1.3em;
  line-height: 1.4em;
  text-align: center;
  padding: 1em 0;
}
#device_restriction .office_collaboration {
  max-width: 1140px;
}
#device_restriction .office_collaboration span.hilight {
  border-bottom: #c8b175 solid 3px;
  padding-bottom: 4px;
}
#device_restriction .office_collaboration .container .row .col img {
  position: relative;
  top: -60px;
  right: 0%;
  width: auto;
}
#device_restriction .office_collaboration .container {
  padding: 0;
}

#device_restriction .office_answer {
  margin: 65px auto;
  max-width: 1140px;
}
#device_restriction .office_answer .container {
  border-bottom: 1px solid transparent;
  margin: 0 25px;
  padding: 0;
  position: relative;
}
#device_restriction .office_answer .container h2 {
  color: #833637;
  font-size: 30px;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1.75em;
  max-width: 850px;
  position: relative;
  text-align: center;
}
#device_restriction .office_answer .container .row {
  display: flex;
  margin: 50px -30px 0;
}
#device_restriction .office_answer .container .row .col {
  background: #faf8f5;
  border: 1px solid #833637;
  border-radius: 8px;
  margin: 0 15px;
  padding: 0 20px;
  width: 33%;
  position: relative;
  height: 430px;
}
#device_restriction .office_answer .container .row .col .title {
  align-items: center;
  border-bottom: 4px solid #c8b175;
  display: flex;
  text-align: center;
  height: 100px;
}
#device_restriction .office_answer .container .row .col .title h3 {
  font-size: 22px;
  padding: 30px 0 16px;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  color: #833637;
}
#device_restriction .office_answer .container .row .col p {
  font-size: 1.3em;
  line-height: 1.4em;
  text-align: center;
  padding: 1em 0;
}
#device_restriction .office_answer .container .row .col img {
  position: absolute;
  bottom: 0px;
  right: 0%;
  width: 100%;
  margin: 0px auto;
}
#device_restriction .office_answer #top_price {
  background: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
}
#device_restriction .office_answer .btn_area ul li {
  width: 48%;
}
#device_restriction .link {
  margin: 20px 0 0;
  font-weight: 500;
  text-align: left;
  padding: 14px 40px 14px 20px;
  display: block;
  background: 0 0;
  border-radius: 100px;
  font-size: 15px;
  color: #3c95c1;
  border: 1px solid #3c95c1;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  width: fit-content;
  text-decoration: none;
  margin-top: 30px;
}
#device_restriction .link:hover {
  background: #3c95c1;
  border: 1px solid #3c95c1;
  color: #fff;
  text-decoration: none;
} 
#device_restriction  .link a {
  color: #3c95c1;
}
#device_restriction .link:hover a {
  color: #fff;
  text-decoration: none;
}
#device_restriction a.arrow:after {
  content: "";
  right: -4px;
  margin: -7px -17px 0;
  width: 7px;
  height: 13px;
  background: url(../images/common/icon_narrow_arrow01_blue.png) no-repeat;
}
#device_restriction .link:hover a.arrow:after {
  content: "";
  right: -4px;
  margin: -7px -17px 0;
  width: 7px;
  height: 13px;
  background: url(../images/common/icon_narrow_arrow01_white.png) no-repeat;
}
#device_restriction .b-bg-gray {
  padding: 1px 0 100px;
}
@media screen and (max-width: 980px){
  #device_restriction .office_intro .container .row .col p {
    font-size: 15px;
  }
  #device_restriction .office_intro .container h3,
  #device_restriction .office_answer .container h2,
  #device_restriction .office_option .container h2 {
    font-size: 24px;
  }
  #device_restriction .office_merit .container .row .col {
    height: 370px;
}
#device_restriction .office_merit .container .row .col p,
#device_restriction .office_answer .container .row .col p {
  font-size: 1.2em;
}
  #device_restriction .office_merit .container .row .col .title h3 img {
    width: 21px;
  }
  #device_restriction .office_merit .container .row .col .title h3,
  #device_restriction .office_answer .container .row .col .title h3 {
    font-size: 17px;
    padding: 20px 0 10px;
  }
  #device_restriction .office_merit .container .row {
    margin: 50px 0px;
  }
  #device_restriction .office_intro div.big_arrow {
    padding: 20px;
  }
  #device_restriction .office_collaboration .container .row .col img {
    top: 0;
    margin: auto;
  }
  #device_restriction .office_answer .container .row {
    margin: 50px 0 0;
}
  #device_restriction .office_answer .container .row .col {
    margin: 0 10px;
  }
  #device_restriction .office_answer .container .row .col img {
    margin: 0 auto;
  }
  #device_restriction .office_option .container ul li dl dt {
    font-size: 20px;
    margin: 0 0 20px;
}
}

@media screen and (max-width: 767px){
  #device_restriction .office_intro {
    margin: -37px auto;
    max-width: 1140px;
}
#device_restriction .office_intro .container .row {
  display: block;
}
#device_restriction .office_intro .container .row .col {
  border-right: 1px solid transparent;
  border-bottom: 1px solid #a3a3a3;
  padding-bottom: 20px;
  width: auto;
}
  #device_restriction .office_intro .container {
    padding: 30px 20px;
}
  #device_restriction .office_intro .container h3, 
  #device_restriction .office_answer .container h2, 
  #device_restriction .office_option .container h2 {
      font-size: 20px;
  }

  #device_restriction .office_question .container {
    padding: 30px 20px 15px;
}
  #device_restriction .office_question .container h2 {
    display: table;
    text-align: center;
    margin: 0 auto 1em;
}
#device_restriction .office_answer .container .row {
  display: block;
}
#device_restriction .office_answer .container .row .col {
  width: auto;
  height: 430px;
  margin: 24px 5px;
}
#device_restriction .office_answer .container .row .col img {
  margin: 0 auto;
  width: 76%;
  position: inherit;
}
#device_restriction .office_question .container .row .col {
  width: auto;
}
  #device_restriction .office_question .container .row .col p {
    font-size: 16px;
    text-align: center;
    padding: 13px;
    border-bottom: 1px solid #a3a3a3;
}
#device_restriction .office_question .container .row .col:last-child p {
  border-bottom: 1px solid transparent;
}
#device_restriction .office_merit .container .row .col {
    margin: 20px;
}
#device_restriction .office_merit .container .row .col p, 
#device_restriction .office_answer .container .row .col p {
  font-size: 0.9em;
}
#device_restriction .office_merit .container .row .col .title {
  padding: 6px 0;
}
#device_restriction .office_answer .container .row .col .title {
  height: 80px;
}
#device_restriction .b-bg-gray {
  padding: 20px 0 ;
}
#device_restriction .office_collaboration .container .row .col img {
  width: inherit;
}
#device_restriction .office_answer .btn_area ul li {
  margin: 10px auto;
  width: auto;
}
}
@media screen and (max-width: 580px){
  #device_restriction .office_intro div img {
    padding: 30px 0;
}
#device_restriction .office_answer .container .row,
#device_restriction .office_merit .container .row {
  display: block;
}
#device_restriction .office_answer .container .row .col,
#device_restriction .office_merit .container .row .col {
  width: auto;
  height: 430px;
  margin: 24px 5px;
}
#device_restriction .office_answer .container .row .col img {
  width: 100%;
}
}




