<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*====================================================================================
TABLE OF CONTENTS
1. Common second css
2. Business page
3. Cases page
4. Ken Ochiai page
5. About page
====================================================================================*/
/*====================================================================================
1. Common second css
====================================================================================*/
body main {
  font-size: 16px;
}

@media (max-width: 767px) {
  body main {
    font-size: 14px;
  }
}

/*===== PAGE VISUAL =====*/
.pagemv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f8edc3;
  margin-top: 36px;
  padding: 18px 0px 30px 0px;
}

.pagemv::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: -20px;
  height: 30px;
  background: url("../images/mv_bg02.png") repeat-x center top;
  background-size: auto 30px;
  pointer-events: none;
}

.pagemv-main {
  position: relative;
}

.pagemv-body {
  position: relative;
  display: inline-block;
}

.pagemv-title {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.pagemv-deco {
  position: absolute;
}

.pagemv-deco img {
  pointer-events: none;
}

.pagemv-deco--center {
  bottom: -9px;
  left: -77px;
}

.pagemv-deco--left {
  left: -188px;
  bottom: -16px;
}

.pagemv-deco--right {
  right: -165px;
  top: 14px;
}

.pagemv.ver2 .pagemv-deco--left {
  left: -88px;
  bottom: -20px;
}

.pagemv.ver2 .pagemv-deco--right {
  right: -68px;
}

@media (max-width: 767px) {
  .pagemv {
    margin-top: 12px;
  }
  .pagemv::before {
    background-size: auto 15px;
    top: -14px;
    height: 15px;
  }
  .pagemv-main {
    width: 260px;
  }
  .pagemv-main h1 img {
    max-height: 46px;
  }
  .pagemv-deco--center {
    left: -40px;
    width: 85px;
  }
  .pagemv-deco--left {
    left: -80px;
    width: 50px;
  }
  .pagemv-deco--right {
    right: -70px;
    width: 50px;
  }
  .pagemv.ver2 .pagemv-main {
    width: 350px;
  }
  .pagemv.ver2 .pagemv-main h1 img {
    max-height: 45px;
  }
  .pagemv.ver2 .pagemv-deco--left {
    left: -60px;
    width: 50px;
  }
  .pagemv.ver2 .pagemv-deco--right {
    right: -50px;
    width: 50px;
  }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
}

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb li {
  position: relative;
  color: #000000;
  margin-right: 11px;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}

.breadcrumb li::before {
  position: absolute;
  content: "&gt;";
  left: 0;
  height: 100%;
  color: #ee7f06;
  font-size: 13px;
}

.breadcrumb li:first-child {
  padding-left: 0;
  text-align: left;
}

.breadcrumb li:first-child::before {
  content: none;
}

.breadcrumb li a {
  color: #ee7f06;
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

/*===== ICON RES COMMON =====*/
.icon-zoom {
  position: relative;
  display: block;
  text-decoration: none;
}

.icon-zoom::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 14px;
  right: 14px;
  width: 25px;
  height: 25px;
  background: url("../common_img/lightbox/ico-zoom.png") no-repeat bottom center;
  background-size: contain;
}

.icon-zoom:hover::before {
  opacity: 1;
}

@media (max-width: 767px) {
  .icon-zoom::before {
    right: 10px;
    bottom: 10px;
    width: 22px;
    height: 22px;
  }
}

/*===== BUTTON RES COMMON =====*/
.btn-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: top;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  text-decoration: none !important;
  background: #6c3600;
  border-radius: 20px;
  text-align: center;
  padding: 25px 15px;
  width: 100%;
  max-width: 570px;
  -webkit-transition: All 0.4s ease;
  -o-transition: All 0.4s ease;
  transition: All 0.4s ease;
}

.btn-page:before {
  position: absolute;
  content: "";
  right: 19px;
  top: 50%;
  width: 8px;
  height: 11px;
  background: url(../common_img/arr01.png) no-repeat center center;
  background-size: 100% 100%;
  margin-top: -6px;
}

.btn-page__logo {
  margin-right: 10px;
  flex-shrink: 0;
}

.btn-page__logo img {
  max-height: 40px;
}

@media (min-width: 768px) {
  .group-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }
  .group-btn &gt; li {
    width: calc(50% - 30px);
    margin-bottom: 30px;
  }
  .group-btn &gt; li:nth-of-type(even) {
    margin-left: 30px;
  }
}

@media only screen and (min-width: 1025px) {
  .btn-page:hover {
    opacity: 0.7;
  }
  .btn-page:hover img {
    opacity: 1;
  }
}

@media (max-width: 1220px) {
  .btn-page__logo img {
    height: 35px;
  }
}

@media (max-width: 767px) {
  .group-btn &gt; li {
    margin-bottom: 20px;
  }
  .group-btn &gt; li:last-child {
    margin-bottom: 0;
  }
  .btn-page {
    font-size: 15px;
    padding: 13px 20px 13px 15px;
    border-radius: 10px;
  }
  .btn-page::before {
    right: 10px;
  }
  .btn-page__logo {
    margin-right: 6px;
  }
  .btn-page__logo img {
    max-height: 28px;
  }
}

@media (max-width: 380px) {
  .btn-page {
    padding-left: 10px;
  }
  .btn-page__logo img {
    max-height: 25px;
  }
}

/*===== TITLE RES COMMON =====*/
.page-title {
  text-align: center;
}

@media (max-width: 767px) {
  .page-title img {
    max-height: 52px;
  }
  .page-title.hw img {
    max-height: calc(155px / 2);
  }
}

.block-title {
  position: relative;
  margin-bottom: 18px;
  padding-left: 32px;
  font-size: 23px;
  font-weight: 700;
}

.block-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  width: 22px;
  height: 20px;
  background: url("../common_img/star01.png") no-repeat center center;
  background-size: 100% auto;
  z-index: 3;
}

@media (max-width: 767px) {
  .block-title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 30px;
  }
  .block-title::before {
    top: 8px;
    width: 20px;
    height: 18px;
  }
}

@media (max-width: 380px) {
  .block-title {
    font-size: 17px;
  }
  .block-title::before {
    top: 6px;
  }
}

.business-title span {
  position: relative;
  padding: 0 40px;
  color: #000000;
  font-size: 30px;
  font-weight: 700;
}

.business-title span::before, .business-title span::after {
  position: absolute;
  content: "";
  top: 7px;
  width: 22px;
  height: 20px;
  background: url("../common_img/star01.png") no-repeat center center;
  background-size: 100% auto;
  z-index: 3;
}

.business-title span::before {
  left: 0;
}

.business-title span::after {
  right: 0;
}

@media (max-width: 767px) {
  .business-title span {
    font-size: 22px;
    padding: 0 32px;
  }
  .business-title span::before, .business-title span::after {
    top: 2px;
  }
}

/*====================================================================================
MARGIN, PADDING RES COMMON
used in multiple pages
if you already understand its place you can edit or add a separate class
====================================================================================*/
/*----- TITLE -----*/
.tt_bottom01 {
  margin-bottom: 50px !important;
}

.tt_bottom02 {
  margin-bottom: 42px !important;
}

.tt_bottom03 {
  margin-bottom: 20px !important;
}

@media (max-width: 767px) {
  .tt_bottom01 {
    margin-bottom: 25px !important;
  }
  .tt_bottom02 {
    margin-bottom: 20px !important;
  }
}

/*----- LAYOUT -----*/
/*----- MARGIN -----*/
.mg_top01 {
  margin-top: 70px;
}

.mg_top02 {
  margin-top: 85px;
}

.mg_top03 {
  margin-top: 100px;
}

.mg_right01 {
  margin-right: 28px;
}

.mg_right02 {
  margin-right: 20px;
}

.mg_bottom01 {
  margin-bottom: 120px;
}

.mg_bottom02 {
  margin-bottom: 20px;
}

.mg_bottom03 {
  margin-bottom: 13px;
}

.mg_bottom04 {
  margin-bottom: 110px;
}

.mg_bottom05 {
  margin-bottom: 42px;
}

.mg_bottom06 {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .mg_top01, .mg_top02, .mg_top03 {
    margin-top: 40px;
  }
  .mg_right01, .mg_right02 {
    margin-right: 5px;
  }
  .mg_bottom01 {
    margin-bottom: 50px;
  }
  .mg_bottom02 {
    margin-bottom: 10px;
  }
  .mg_bottom03 {
    margin-bottom: 8px;
  }
  .mg_bottom04 {
    margin-bottom: 55px;
  }
  .mg_bottom05 {
    margin-bottom: 25px;
  }
  .mg_bottom06 {
    margin-bottom: 30px;
  }
}

/*----- PADDING -----*/
.pd_top01 {
  padding-top: 80px;
}

.pd_top02 {
  padding-top: 100px;
}

.pd_top03 {
  padding-top: 90px;
}

.pd_bottom01 {
  padding-bottom: 90px;
}

.pd_bottom02 {
  padding-bottom: 100px;
}

.pd_bottom03 {
  padding-bottom: 120px;
}

/*--- version 01 ---*/
.pd_bottom04 {
  padding-bottom: 80px;
}

.pd_bottom05 {
  padding-bottom: 110px;
}

/*----- version 02 ------*/
.pd_bottom06 {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .pd_top01 {
    padding-top: 40px;
  }
  .pd_top02 {
    padding-top: 50px;
  }
  .pd_top03 {
    padding-top: 30px;
  }
  .pd_bottom01, .pd_bottom02 {
    padding-bottom: 50px;
  }
  .pd_bottom03 {
    padding-bottom: 55px;
  }
  /*--- version 01 ---*/
  .pd_bottom04 {
    padding-bottom: 30px;
  }
  .pd_bottom05 {
    padding-bottom: 55px;
  }
  /*----- version 02 ------*/
  .pd_bottom06 {
    padding-bottom: 40px;
  }
}

/*===== LIST RES COMMON =====*/
.text-indent {
  display: block;
  padding-left: 1em !important;
  text-indent: -1em !important;
}

.list_indent li {
  padding-left: 1em;
  text-indent: -1em;
}

a.tdn {
  text-decoration: none;
}

a.tdn:hover {
  text-decoration: underline;
}

.link-orange {
  color: #e88623;
  font-weight: 700;
}

/*===== BLOCK RES COMMON =====*/
/*====================================================================================
2. school
====================================================================================*/
.ff_yuji {
  font-family: 'Yuji Syuku', serif !important;
}
.block-school,
.block-school--normal {
  max-width: 1080px;
  margin-right: auto;
  margin-left:  auto;
}

.block-school:last-child,
.block-school--normal:last-child {
  margin-bottom: 0;
}

.block-school__img {
  display: block;
  border: 1px solid #dac69c;
}
.block-school__img:last-child {
  margin-bottom: 0;
}

.block-school__title {
  position: relative;
  font-weight: 700;
}
.block-school__title::before {
  position: absolute;
  content: "";
  left: 0;
  background: url("../common_img/star01.png") no-repeat center center;
  background-size: 100% auto;
  z-index: 3;
}

.block-school__desc {
  font-weight: 700;
}
.block-school__desc .ptp p + p {
  margin-top: 0.5em;
}

@media (max-width: 767px) {

  .block-school,
  .block-school--normal {
    margin-bottom: 30px;
  }

  .block-school__title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 30px;
    line-height: 1.6;
  }

  .block-school__title::before {
    top: 4px;
    width: 20px;
    height: 18px;
  }

  .block-school__img {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 12px 12px 15px 15px;
  }

  .block-school__img img {
    width: 100%;
    border: 2px solid #ffffff;
    border-radius: 12px 12px 15px 15px;
  }
}
@media (min-width: 768px) {
  .block-school,
  .block-school--normal {
    margin-bottom: 60px;
  }
  .block-school__title {
    margin-bottom: 31px;
    padding-left: 32px;
    font-size: 23px;
  }
  .block-school__title::before {
    top: 8px;
    width: 22px;
    height: 20px;
  }
  .block-school__img {
    margin-bottom: 30px;
    padding: 13px;
    border-radius: 20px 20px 30px 30px;
  }
  .block-school__img img {
    border: 3px solid #ffffff;
    border-radius: 20px 20px 30px 30px;
  }
}

.list-school {
  display: flex;
  flex-wrap: wrap;
}
.list-school__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-end;
}
.list-school__item.ico-recom::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: calc((150/290) * 100%);
  background-image: url(../business/images/icon_recom.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.list-school__lnk {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  font-size: 0.8em;
  background-color: #fff;
  text-decoration: none !important;
}
.list-school__lnk::before {
  content: "";
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #e88622;
}
.list-school__lnk::after {
  content: "";
  display: block;
  width:  2em;
  height: 2em;
  margin: auto auto 0;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  transform: rotate(-45deg);
  border-left-color: #e88622;
  border-bottom-color: #e88622;
  transition: 0.3s;
}
.list-school__lnk &gt; br {
  display: none;
}
.list-school__tag {
  width: 100%;
  font-weight: normal;
  text-align: center;
  background-color: #e88622;
  color: #fff;
}
.list-school__name {
  width: 100%;
  padding-top: 0.5em;
  font-size: 1.5em;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
}
.list-school__days {
  width: 100%;
  padding-bottom: 0.75em;
  text-align: center;
}
.list-school__txt {
  line-height: 1.2;
  text-align: center;
}
.list-school__txt::after {
  content: "繧ｳ繝√Λ";
  display: block;
  margin-top: 0.5em;
  text-align: center;
}

.list-school__item.line-red .list-school__lnk::before {
  border-color: #a00;
}
.list-school__item.line-red .list-school__tag {
  background-color: #a00;
}
.list-school__item.line-red .list-school__lnk:after {
  border-left-color: #a00;
  border-bottom-color: #a00;
}

@media (max-width: 767px) {
  .list-school {
    gap: 12px;
  }
  .list-school__item {
    width: calc((100% - 12px) / 2);
  }
}
@media (min-width: 768px) {
  .list-school {
    gap: 2.5%;
  }
  .list-school__item {
    width: calc(90% / 5);
    margin-bottom: 15px;
  }
  .list-school__item.ico-recom {
    position: relative;
  }
  .list-school__item.ico-recom::before {
    position: absolute;
    top: calc(((150/290) * -100%) + 15px);
    left: 0;
  }
  .list-school__lnk:hover::before {
    border-width: 2px;
  }
  .list-school__lnk:hover::after {
    transform: translateY(3px) rotate(-45deg);
  }
}

.group-school {
  margin-bottom: 30px;
  padding: 18px 15px 20px 15px;
  border-radius: 20px;
  border: 1px solid #dac69c;
  background-color: #f1fbdb;
}
.group-school:last-child {
  margin-bottom: 0;
}

.group-school__title {
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}
.group-school__title &gt; span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120%;
  color: #6c3600;
}
.group-school__title &gt; span::before,
.group-school__title &gt; span::after {
  content: "";
  flex-shrink: 0;
  width: 4em;
  height: 0.8em;
  background-image: url(../business/images/title_bg.png);
  background-size: cover;
}
.group-school__title &gt; span::before {
  margin-right: 1em;
}
.group-school__title &gt; span::after {
  margin-left: 1em;
}

.group-school__title.orange {
  color: #e88623;
  margin-bottom: 10px;
}

.group-school__title.gray {
  color: #6c3600;
}

@media (max-width: 381px) {
  .group-school {
    border-radius: 12px;
    padding: 20px 15px 25px 15px;
  }
  .group-school__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .group-school__title &gt; span::before,
  .group-school__title &gt; span::after {
    width: 3em;
    height: 0.6em;
  }
  .group-school__title &gt; span::before {
    margin-right: 0.5em;
  }
  .group-school__title &gt; span::after {
    margin-left: 0.5em;
  }
}
@media (min-width: 768px) {
  .group-school {
    padding: 38px 60px 42px 60px;
  }
  .group-school__title {
    font-size: 30px;
  }
  .group-school__title br {
    display: none;
  }
}

.box-school {
  margin-top: 2em;
}
.school02 {
  counter-reset: steps -1;
}
.school02 .box-school {
  counter-increment: steps;
}

.box-school + .box-school {
  padding-top: 2em;
  border-top: 1px dashed #dac69c;
}

.box-school__title {
  position: relative;
  margin-bottom: 23px;
  padding-top: 1em;
  padding-left: 32px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.box-school__title::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(1em + 4px);
  width: 20px;
  height: 18px;
  background: url("../common_img/star03.png") no-repeat center center;
  background-size: 100% auto;
  z-index: 3;
}
.box-school__title::after {
  content: "STEP" counter(steps, upper-roman);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.8em;
  color: #e88623;
}
.box-school__title &gt; span {
  font-size: 108%;
}
.box-school__text01 {
  margin-top: 20px;
}

.box-school__img img {
  border-radius: 20px;
}
.box-school__img figcaption {
  margin-top: 3px;
  font-size: 108%;
  text-align: center;
  font-weight: 700;
}

.box-school__head {
  display: inline-block;
  padding-inline:  1.5em;
  background-color: #e88623;
  color: #fff;
}
.box-school__head + * {
  border-top: 1px solid #e88623;
  padding-top: 1em;
}
.box-school__desc {
  padding-left: 1em;
  text-indent: -1em;
}

.group-school#class004 .box-school__head,
.group-school#class005 .box-school__head {
  background-color: #a00;
}
.group-school#class004,
.group-school#class004 .box-school__head + *,
.group-school#class005,
.group-school#class005 .box-school__head + * {
  border-color: #a00;
}
.group-school#class004 .group-school__title &gt; span::before,
.group-school#class004 .group-school__title &gt; span::after,
.group-school#class005 .group-school__title &gt; span::before,
.group-school#class005 .group-school__title &gt; span::after {
  background-image: url(../business/images/title_bg__red.png);
}
.group-school#class004 .box-school__title,
.group-school#class005 .box-school__title {
  padding-top: 0;
}
.group-school#class004 .box-school__title::before,
.group-school#class005 .box-school__title::before {
  top: 4px;
  background-image: url(../common_img/star00.png);
}
.group-school#class004 .box-school__title::after,
.group-school#class005 .box-school__title::after {
  display: none;
}

@media (min-width: 381px) {
  .box-school__title {
    margin-bottom: 15px;
    padding-left: 28px;
    font-size: 18px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .box-school__row {
    display: flex;
    flex-direction: column-reverse;
  }
  .box-school__img {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .box-school__title {
    font-size: 23px;
  }
  .box-school__title::before {
    top: calc(1em + 9px);
    width: 22px;
    height: 20px;
  }
  .group-school#class004 .box-school__title::before,
  .group-school#class005 .box-school__title::before {
    top: 9px;
  }
  .box-school__title &gt; span {
    font-size: 120%;
    line-height: 1.1;
  }
  .box-school__row {
    display: flex;
    flex-direction: row;
  }
  .box-school__img {
    max-width: 335px;
    margin-left: 30px;
  }
  .box-school__body {
    flex-grow: 1;
    margin-left: 30px;
  }
}

.school-notify {
  position: relative;
  margin-top: 45px;
  padding: 0px 28px 50px 222px;
}

.school-notify__person {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.school-notify__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 280px;
  padding: 40px 15px;
  background: url("../business/images/s2_bg01.png") no-repeat center center/100% 100%;
}

.school-notify__deco {
  position: absolute;
  top: -15px;
  right: -15px;
  pointer-events: none;
}

.school-notify__title {
  color: #6c3600;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.school-notify__title a {
  color: #6c3600;
}

@media (max-width: 767px) {
  .school-notify {
    padding: 0 0 30px 20vw;
  }
  .school-notify__person {
    width: 28vw;
  }
  .school-notify__body {
    padding: 20px;
    min-height: 120px;
    background: url("../business/images/s2_bg01_sp.png") no-repeat center center/100% 100%;
  }
  .school-notify__deco {
    min-width: 60px;
    width: 10vw;
    top: -6px;
    right: -2px;
  }
  .school-notify__title {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 639px) {
  .school-notify__title {
    text-align: left;
  }
}

#p-school .school02 .container {
  max-width: 1120px;
}

/*====================================================================================
2. Business page
====================================================================================*/
.block-business {
  margin-bottom: 60px;
}

.block-business:last-child {
  margin-bottom: 0;
}

.block-business__img figure {
  display: block;
  margin-bottom: 30px;
  padding: 13px;
  border-radius: 20px 20px 30px 30px;
  border: 1px solid #dac69c;
}

.block-business__img figure:last-child {
  margin-bottom: 0;
}

.block-business__img figure img {
  border: 3px solid #ffffff;
  border-radius: 20px 20px 30px 30px;
}

.block-business__img-title {
  margin-top: 10px;
  color: #000000;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
}

.block-business__img-person {
  display: block;
  padding: 13px;
  text-align: center;
  border-radius: 20px 20px 30px 30px;
  border: 1px solid #dac69c;
}

.block-business__img-person figure {
  padding: 0;
  border: 3px solid #ffffff;
  background-color: #ffffff;
}

.block-business__img-person figure img {
  border: 0;
  margin-top: -27px;
}

.block-business__title {
  position: relative;
  margin-bottom: 31px;
  padding-left: 32px;
  font-size: 23px;
  font-weight: 700;
}

.block-business__title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 22px;
  height: 20px;
  background: url("../common_img/star01.png") no-repeat center center;
  background-size: 100% auto;
  z-index: 3;
}

.block-business__desc p span {
  font-weight: 700;
}

.block-business--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .block-business {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .block-business__body {
    padding-top: 31px;
    width: 46%;
  }
  .block-business__img {
    width: 48.3%;
  }
}

@media (max-width: 767px) {
  .block-business {
    margin-bottom: 30px;
  }
  .block-business__title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 30px;
    line-height: 1.6;
  }
  .block-business__title::before {
    top: 4px;
    width: 20px;
    height: 18px;
  }
  .block-business__img {
    margin-bottom: 15px;
  }
  .block-business__img figure {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 12px 12px 15px 15px;
  }
  .block-business__img figure img {
    width: 100%;
    border: 2px solid #ffffff;
    border-radius: 12px 12px 15px 15px;
  }
  .block-business__img-title {
    margin-top: 5px;
    font-size: 14px;
  }
  .block-business__img-person {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 12px 12px 15px 15px;
    border: 1px solid #dac69c;
  }
  .block-business__img-person figure {
    padding: 0;
    border: 3px solid #ffffff;
    background-color: #ffffff;
  }
  .block-business__img-person figure img {
    width: 50%;
    border: 0;
    margin-top: -20px;
  }
}

@media (max-width: 380px) {
  .block-business__title {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .business-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .business-video__item {
    width: 48.3%;
    margin-right: 3.4%;
    margin-bottom: 40px;
  }
  .business-video__item:nth-child(even) {
    margin-right: 0;
  }
  .business-video__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .business-video__item {
    margin-bottom: 25px;
  }
  .business-video__item:last-child {
    margin-bottom: 0;
  }
}

.group-business {
  margin-bottom: 30px;
  padding: 38px 30px 42px 30px;
  border-radius: 20px;
  border: 1px solid #dac69c;
  background-color: #f1fbdb;
}

.group-business:last-child {
  margin-bottom: 0;
}

.group-business__title {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
}

.group-business__title.orange {
  color: #e88623;
  margin-bottom: 10px;
}

.group-business__title.gray {
  color: #6c3600;
}

@media (max-width: 767px) {
  .group-business {
    border-radius: 12px;
    padding: 20px 15px 25px 15px;
  }
  .group-business__title {
    font-size: 20px;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .group-business__title {
    font-size: 19px;
  }
}

.box-business__title {
  position: relative;
  margin-bottom: 23px;
  padding-left: 32px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.6;
}

.box-business__title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 9px;
  width: 22px;
  height: 20px;
  background: url("../common_img/star03.png") no-repeat center center;
  background-size: 100% auto;
  z-index: 3;
}

.box-business__title .orange {
  color: #e88623;
}

.box-business__row {
  margin-bottom: 11px;
}

.box-business__item {
  position: relative;
  margin-bottom: 1px;
  padding-left: 13px;
}

.box-business__item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #e88623;
}

.box-business__text01 {
  margin-top: 20px;
}

.box-business__item--bold {
  font-size: 20px;
  color: #e88623;
  padding-left: 8px;
  font-weight: 700;
}

.box-business__item--bold::before {
  top: 13px;
}

.box-business__img {
  width: 335px;
}

.box-business__img img {
  border-radius: 20px 20px 30px 30px;
}

.box-business__img figcaption {
  margin-top: 3px;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
}

@media (min-width: 768px) {
  .box-business__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .box-business__body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 1px;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .box-business__title {
    margin-bottom: 15px;
    padding-left: 28px;
    font-size: 18px;
    line-height: 1.6;
  }
  .box-business__title::before {
    top: 4px;
    width: 20px;
    height: 18px;
  }
  .box-business__body {
    margin-bottom: 20px;
  }
  .box-business__item::before {
    top: 10px;
  }
  .box-business__item--bold {
    font-size: 17px;
  }
  .box-business__item--bold::before {
    top: 11px;
  }
  .box-business__img {
    width: 100%;
  }
  .box-business__img img {
    width: 100%;
    border-radius: 12px 12px 15px 15px;
  }
}

@media (max-width: 380px) {
  .box-business__title {
    font-size: 17px;
  }
}

.business-notify {
  position: relative;
  padding: 0px 28px 50px 222px;
}

.business-notify__person {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.business-notify__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 280px;
  padding: 40px 15px;
  background: url("./../business/images/s2_bg01.png") no-repeat center center/100% 100%;
}

.business-notify__deco {
  position: absolute;
  top: -15px;
  right: -15px;
  pointer-events: none;
}

.business-notify__title {
  color: #6c3600;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.business-notify__title a {
  color: #6c3600;
}

@media (max-width: 767px) {
  .business-notify {
    padding: 0 0 30px 20vw;
  }
  .business-notify__person {
    width: 28vw;
  }
  .business-notify__body {
    padding: 20px;
    min-height: 120px;
    background: url("./../business/images/s2_bg01_sp.png") no-repeat center center/100% 100%;
  }
  .business-notify__deco {
    min-width: 60px;
    width: 10vw;
    top: -6px;
    right: -2px;
  }
  .business-notify__title {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 639px) {
  .business-notify__title {
    text-align: left;
  }
}

#p-school .business02 .container,
#p-business .business02 .container {
  max-width: 1120px;
}

#p-school .business02 .row01,
#p-business .business02 .row01 {
  border-radius: 20px;
  padding: 33px 50px 0px 50px;
  border: 1px solid #ffcb08;
  background-color: #ffffff;
}

#p-school .business03 .row01 .c-btn01,
#p-business .business03 .row01 .c-btn01 {
  max-width: 400px;
}

#p-school .business03 .row02,
#p-business .business03 .row02 {
  margin-top: 70px;
}

@media (max-width: 767px) {
  #schoolss .business02 .row01,
  #p-business .business02 .row01 {
    border-radius: 12px;
    padding: 30px 12px 0px 12px;
  }
  #schoolss .business03 .row01 .c-btn01,
  #p-business .business03 .row01 .c-btn01 {
    max-width: 300px;
  }
  #schoolss .business03 .row02,
  #p-business .business03 .row02 {
    margin-top: 40px;
  }
}

/*====================================================================================
3. Cases page
====================================================================================*/
.cases-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cases-voice__item {
  margin-bottom: 20px;
  padding: 13px;
  border: 1px solid #dac69c;
  border-radius: 20px 20px 30px 30px;
}

.cases-voice__item img {
  width: 100%;
  border: 3px solid #ffffff;
  border-radius: 20px 20px 30px 30px;
}

@media (min-width: 768px) {
  .cases-voice__item {
    width: calc(25% - 9px);
    margin-right: 12px;
  }
  .cases-voice__item:nth-child(4n), .cases-voice__item:last-child {
    margin-right: 0px;
  }
}

@media (max-width: 767px) {
  .cases-voice__item {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 12px 12px 15px 15px;
  }
  .cases-voice__item:nth-child(even), .cases-voice__item:last-child {
    margin-right: 0px;
  }
  .cases-voice__item img {
    border: 2px solid #ffffff;
    border-radius: 12px 12px 15px 15px;
  }
}

#p-cases .block-business__body {
  padding-top: 0;
}

#p-cases .cases02 .row01 .desc {
  text-align: center;
}

@media (min-width: 768px) {
  #p-cases .block-business {
    margin-bottom: 40px;
  }
  #p-cases .block-business:last-child {
    margin-bottom: 0;
  }
  #p-cases .block-business__img {
    margin-top: 8px;
  }
}

/*====================================================================================
4. Ken Ochiai page
====================================================================================*/
.profile-ken {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 100px;
  border-radius: 20px;
  border: 1px solid #ffcb08;
  background-color: #ffffff;
}

.profile-ken .table-profile table {
  width: 100%;
}

.profile-ken .table-profile table tr th, .profile-ken .table-profile table tr td {
  text-align: left;
  padding: 4px 10px 4px 0px;
}

.profile-ken .table-profile table tr th {
  width: 150px;
  color: #e88623;
  font-size: 18px;
  font-weight: 700;
}

.profile-ken .table-profile table tr td {
  font-size: 16px;
}

@media (min-width: 768px) {
  .profile-ken {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: url("./../takeshi_ochiai/images/s1_person01.jpg") no-repeat right -1px center/auto 100%, #ffffff;
  }
  .profile-ken .table-profile {
    width: 58%;
    padding: 40px 0px;
  }
}

@media (max-width: 1220px) {
  .profile-ken {
    padding: 0px 80px;
  }
}

@media (max-width: 767px) {
  .profile-ken {
    border-radius: 12px;
    padding: 30px 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .profile-ken .table-profile {
    margin-top: 20px;
  }
  .profile-ken .table-profile table tr th {
    width: 110px;
    font-size: 16px;
    padding: 2px 10px 2px 0px;
  }
  .profile-ken .table-profile table tr td {
    font-size: 14px;
  }
  .profile-ken__img {
    width: 50%;
    margin: 0 auto;
  }
}

.ken-video__item {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ken-video__item {
    width: 48.3%;
  }
}

#p-ken_ochiai .block-business__body {
  padding-top: 0;
}

@media (min-width: 768px) {
  #p-ken_ochiai .block-business {
    margin-bottom: 40px;
  }
  #p-ken_ochiai .block-business:last-child {
    margin-bottom: 0;
  }
  #p-ken_ochiai .block-business__img {
    margin-top: 8px;
  }
}

@media (max-width: 767px) {
  #p-ken_ochiai .btn-page {
    min-height: 75px;
  }
}

/*====================================================================================
5. About page
====================================================================================*/
.block-about {
  margin-top: 75px;
}

.block-about:first-child {
  margin-top: 0;
}

.block-about__title {
  position: relative;
  margin-bottom: 36px;
  padding-left: 80px;
  font-size: 23px;
  font-weight: 700;
}

.block-about__title-num {
  position: absolute;
  top: -4px;
  left: 0;
}

@media (min-width: 768px) {
  .block-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .block-about__body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 1px;
  }
  .block-about__img {
    width: 319px;
  }
  .block-about.item02 .block-about__img {
    width: 343px;
    margin-left: -22px;
  }
  .block-about--normal .block-about__body {
    margin-right: 3%;
  }
  .block-about--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .block-about--reverse .block-about__body {
    margin-left: 4.3%;
  }
}

@media (max-width: 1220px) {
  .block-about.item02 .block-about__img {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .block-about {
    margin-top: 30px;
  }
  .block-about__title {
    margin-bottom: 15px;
    padding-left: 58px;
    font-size: 18px;
  }
  .block-about__title-num img {
    height: 32px;
  }
  .block-about__img {
    text-align: center;
    margin-bottom: 15px;
  }
  .block-about__img img {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .block-about__title {
    font-size: 17px;
  }
}

.about-think {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 50px;
}

.about-think__title {
  margin-bottom: 44px;
  color: #6c3600;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.about-think__group-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-think__group-middle {
  text-align: center;
}

.about-think__group-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-think__desc {
  margin-top: 42px;
  text-align: center;
}

.about-think__desc span {
  font-size: 18px;
  font-weight: 700;
}

.about-think__item {
  position: relative;
  max-width: 412px;
  width: 100%;
  height: 219px;
}

.about-think__item .svg {
  width: 100%;
  height: auto;
}

.about-think__item .svg .comment-border {
  fill-rule: evenodd;
}

.about-think__item .svg .comment-shape {
  fill-rule: evenodd;
  fill: none;
  stroke: #fff;
  stroke-width: 1px;
}

.about-think__item-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.about-think__item--yellow .svg .comment-border {
  fill: #fbe38a;
}

.about-think__item--green .svg .comment-border {
  fill: #cde19f;
}

.about-think__item--pink .svg .comment-border {
  fill: #efbcde;
}

.about-think__item--blue .svg .comment-border {
  fill: #bce2eb;
}

@media (min-width: 768px) {
  .about-think__group-top {
    margin-bottom: -220px;
  }
  .about-think__group-bottom {
    margin: 0 8%;
    margin-top: -17px;
  }
}

@media (max-width: 767px) {
  .about-think {
    margin-top: 30px;
  }
  .about-think__group-top {
    margin-bottom: -10px;
  }
  .about-think__group-bottom {
    margin-top: -10px;
  }
  .about-think__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .about-think__desc {
    margin-top: 20px;
  }
  .about-think__desc span {
    font-size: 16px;
  }
  .about-think__group-middle figure {
    text-align: center;
  }
  .about-think__group-middle figure img {
    width: 40%;
  }
  .about-think__item {
    height: auto;
  }
  .about-think__item-text {
    font-size: 12px;
    letter-spacing: normal;
  }
}

@media (max-width: 420px) {
  .about-think__item-text {
    font-size: 9px;
  }
}

.table-about {
  padding: 50px;
  border-radius: 10px 10px 20px 20px;
  background-color: #ffffff;
}

.table-about dl {
  position: relative;
  padding: 11px 0px 10px 0px;
}

.table-about dl::before {
  position: absolute;
  content: "";
  top: 0;
  height: 1px;
  width: 100%;
  left: 0;
  background: url("./../common_img/dashed01.png") repeat;
}

.table-about dl:last-child {
  padding: 11px 0px;
}

.table-about dl:last-child::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: url("./../common_img/dashed01.png") repeat;
}

.table-about dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 250px;
  border-radius: 11px;
  padding: 3px 30px;
  color: #e88623;
  background-color: #f8edc3;
  font-size: 18px;
  font-weight: 700;
}

.table-about dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 1px;
  padding: 3px 50px;
}

@media (min-width: 768px) {
  .table-about dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767px) {
  .table-about {
    padding: 40px 12px;
  }
  .table-about dl dt {
    width: 100%;
    margin-bottom: 8px;
    padding: 5px 20px;
    font-size: 16px;
  }
  .table-about dl dd {
    padding: 5px 20px;
  }
}

.picture-about__item {
  padding: 13px;
  border: 1px solid #dac69c;
  border-radius: 20px 20px 30px 30px;
}

.picture-about__item img {
  width: 100%;
  border: 3px solid #ffffff;
  border-radius: 20px 20px 30px 30px;
}

@media (min-width: 768px) {
  .picture-about__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .picture-about__item {
    margin-right: 15px;
    width: calc(33.334% - 10px);
  }
  .picture-about__item:nth-child(3n), .picture-about__item:last-child {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .picture-about__item {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 12px 12px 15px 15px;
  }
  .picture-about__item img {
    border: 2px solid #ffffff;
    border-radius: 12px 12px 15px 15px;
  }
}

.about-map {
  padding: 30px;
  border: 1px solid #dac69c;
  border-radius: 20px 20px 30px 30px;
}

.about-map__inner {
  max-width: 1140px;
  width: 100%;
  height: 625px;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 20px 20px 30px 30px;
}

.about-map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .about-map {
    padding: 15px;
    border-radius: 12px 12px 15px 15px;
  }
  .about-map__inner {
    height: 250px;
    border: 2px solid #ffffff;
    border-radius: 12px 12px 15px 15px;
  }
}
</pre></body></html>