@charset "UTF-8";
/*
========================
---setting
========================
*/
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin-top: 80px;
  min-width: 640px;
  font-family: sans-serif;
}

main {
  display: block;
}
main > * {
  opacity: 0;
  transform: translateY(15px);
  transition: 0.4s cubic-bezier(0.18, 0.64, 0.5, 0.98);
}
main > *.fadeIn {
  opacity: 1;
  transform: translateY(0);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

a {
  transition: .3s;
}

button {
  outline: none;
  border: none;
}

em {
  font-style: normal;
}

.smp {
  display: none !important;
}

@media screen and (max-width: 769px) {
  body {
    margin-top: 60px;
    min-width: auto;
  }

  a:hover {
    opacity: 1;
  }

  .smp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}
/*
========================
---parts
========================
*/
/* CSS Document */
.commonHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 45px;
  z-index: 100;
  background-color: #fff;
}
.commonHeader .globalNavi {
  height: 100%;
}
.commonHeader .globalNavi ul {
  display: flex;
  height: 100%;
}
.commonHeader .globalNavi ul li {
  height: 100%;
}
.commonHeader .globalNavi ul li .lowerLinkBox {
  position: absolute;
  left: 0;
  width: 100vw;
  height: auto;
  padding: 25px 0;
  padding-left: 20%;
  opacity: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  background-color: rgba(229, 0, 46, 0.75);
  transition: .3s;
}
.commonHeader .globalNavi ul li .lowerLinkBox p {
  font-size: 24px;
  font-weight: 600;
  line-height: 82px;
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 55px;
}
.commonHeader .globalNavi ul li .lowerLinkBox ul {
  width: 720px;
  margin-left: 75px;
  display: flex;
  flex-wrap: wrap;
}
.commonHeader .globalNavi ul li .lowerLinkBox ul li {
  margin: 0;
  width: 33%;
}
.commonHeader .globalNavi ul li .lowerLinkBox ul li:nth-child(n+4) {
  margin-top: 10px;
}
.commonHeader .globalNavi ul li .lowerLinkBox ul li .lowerLink {
  position: relative;
  color: #fff;
  box-sizing: border-box;
  padding-right: 20px;
}
.commonHeader .globalNavi ul li .lowerLinkBox ul li .lowerLink:before {
  content: '>';
  position: absolute;
  right: 0;
  top: -5px;
}
.commonHeader .globalNavi ul li .first {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
}
.commonHeader .globalNavi ul li .first:hover {
  opacity: .75;
}
.commonHeader .globalNavi ul li.lowerBtn:hover .first {
  pointer-events: none;
}
.commonHeader .globalNavi ul li.lowerBtn:hover .lowerLinkBox {
  opacity: 1;
  pointer-events: all;
}
.commonHeader .globalNavi ul li + li {
  margin-left: 25px;
}
.commonHeader .globalNavi ul li a {
  cursor: pointer;
}
.commonHeader .globalNavi ul li.icon > a {
  position: relative;
}
.commonHeader .globalNavi ul li.icon > a:before {
  content: '';
  position: absolute;
  right: 0px;
  top: 35px;
  width: 14px;
  height: 9px;
  background-image: url("../images/header/head_icon01.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonHeader .globalNavi ul li:last-child .first {
  padding-right: 0;
}
.commonHeader .globalNavi a[target="_blank"] {
  position: relative;
}
.commonHeader .globalNavi a[target="_blank"]:before {
  content: '';
  position: absolute;
  right: 0px;
  top: 35px;
  width: 14px;
  height: 9px;
  background-image: url("../images/header/head_icon02.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .commonHeader .globalNavi ul li .lowerLinkBox {
    padding-left: 10%;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox p {
    padding-right: 25px;
    white-space: nowrap;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox ul {
    margin-left: 20px;
  }
}
@media screen and (max-width: 920px) and (min-width: 769px) {
  .commonHeader .globalNavi ul li .first {
    padding-right: 20px;
    padding-left: 5px;
  }
}
@media screen and (max-width: 769px) {
  .commonHeader {
    height: 60px;
    padding: 15px 0;
    flex-wrap: wrap;
  }
  .commonHeader .headLogo {
    height: 30px;
    margin-left: 20px;
  }
  .commonHeader .headLogo img {
    height: 100%;
  }
  .commonHeader .menuBtn {
    position: relative;
    margin-right: 20px;
    width: 30px;
    height: 27px;
    background: none;
    text-align: left;
  }
  .commonHeader .menuBtn div {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transition: .3s;
    background-color: #e5002e;
  }
  .commonHeader .menuBtn div.center {
    top: 12px;
    width: 23px;
  }
  .commonHeader .menuBtn div:nth-child(3) {
    width: 16px;
    top: 24px;
  }
  .commonHeader .menuBtn.open .top {
    transform: rotate(-45deg);
    top: 10px;
  }
  .commonHeader .menuBtn.open .center {
    opacity: 0;
  }
  .commonHeader .menuBtn.open .btm {
    width: 100%;
    transform: rotate(45deg);
    top: 10px;
  }
  .commonHeader .globalNavi {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 60px;
    background-color: #e5002e;
  }
  .commonHeader .globalNavi ul {
    display: block;
  }
  .commonHeader .globalNavi ul li {
    height: auto;
  }
  .commonHeader .globalNavi ul li .first {
    pointer-events: all !important;
    display: block;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .commonHeader .globalNavi ul li .first:hover {
    opacity: 1;
  }
  .commonHeader .globalNavi ul li .first.open:after {
    transform: rotate(180deg) !important;
    top: 10px !important;
  }
  .commonHeader .globalNavi ul li a {
    position: relative;
    line-height: 60px;
    font-size: 18px;
  }
  .commonHeader .globalNavi ul li a:before {
    content: none !important;
  }
  .commonHeader .globalNavi ul li a:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 16px;
    background-image: url("../images/header/sp_menu_icon02.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .commonHeader .globalNavi ul li + li {
    margin-left: 0;
  }
  .commonHeader .globalNavi ul li:last-child .first:after, .commonHeader .globalNavi ul li:first-child .first:after {
    transform: rotate(-90deg);
    right: 17px;
    top: 20px;
  }
  .commonHeader .globalNavi ul li:nth-child(2) a {
    border: none;
  }
  .commonHeader .globalNavi ul li:nth-child(3) a {
    border-top: 1px solid #fff;
  }
  .commonHeader .globalNavi ul li ul {
    position: static;
    opacity: 1;
    width: 100%;
    pointer-events: all;
    display: none;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox {
    display: none;
    position: static;
    opacity: 1;
    pointer-events: all;
    width: 100%;
    padding: 0;
    transition: auto;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox p {
    display: none;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox ul {
    width: 100%;
    margin: 0;
    display: block;
    border-bottom: 1px solid #fff;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox ul li {
    width: 100%;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox ul li:nth-child(n+4) {
    margin: 0;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox ul li .lowerLink {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    padding-left: 50px;
    line-height: 47px;
    border: none;
  }
  .commonHeader .globalNavi ul li .lowerLinkBox ul li .lowerLink:after {
    transform: rotate(-90deg);
    right: 15px;
    top: 5px;
  }
  .commonHeader .globalNavi a[target="_blank"]:after {
    background-image: url("../images/header/sp_menu_icon01.png");
  }
}

/* CSS Document */
.commonFooter {
  width: 100%;
  padding: 0 0 55px;
  background-color: #000;
  color: #fff;
}
.commonFooter p, .commonFooter a {
  color: #fff;
}
.commonFooter .inquiry {
  width: 100%;
  background-image: url("../images/footer/inquiry_bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 75px 0;
}
.commonFooter .inquiry h2, .commonFooter .inquiry p {
  line-height: 1;
  margin-bottom: 40px;
  color: #fff;
}
.commonFooter .inquiry h2 {
  font-size: 32px;
  font-weight: 600;
}
.commonFooter .inquiry p {
  font-size: 16px;
}
.commonFooter .inquiry .inquiryBtn {
  position: relative;
  font-size: 14px;
  width: 260px;
  line-height: 70px;
  border: 1px solid #fff;
  text-align: center;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  overflow: hidden;
  z-index: 2;
  transition: .6s;
}
.commonFooter .inquiry .inquiryBtn:before {
  content: '';
  position: absolute;
  top: 35px;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: .6s;
}
.commonFooter .inquiry .inquiryBtn:after {
  content: '';
  position: absolute;
  left: -160%;
  top: 0;
  width: 130%;
  height: 100%;
  transform: skewX(-30deg);
  z-index: -1;
  transition: .6s;
}
.commonFooter .inquiry .inquiryBtn:hover {
  color: #e5002e;
}
.commonFooter .inquiry .inquiryBtn:hover:after {
  left: -40px;
  width: 150%;
  background: #fff;
}
.commonFooter .inquiry .inquiryBtn:hover:before {
  background-color: #e5002e;
}
.commonFooter .footIn {
  max-width: 1200px;
  margin: 0 auto;
}
.commonFooter .footIn .linkBoxArea {
  display: flex;
  justify-content: space-between;
  margin: auto;
  margin-bottom: 70px;
  padding-top: 60px;
  width: 96%;
}
.commonFooter .footIn .linkBoxArea p {
  font-size: 16px;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.commonFooter .footIn .linkBoxArea a:hover {
  text-decoration: underline;
}
.commonFooter .footIn .linkBoxArea .links {
  display: flex;
  justify-content: space-between;
}
.commonFooter .footIn .linkBoxArea .links a {
  position: relative;
  font-size: 14px;
  padding-left: 20px;
  white-space: nowrap;
}
.commonFooter .footIn .linkBoxArea .links a:before {
  content: '';
  position: absolute;
  background-color: #fff;
  width: 10px;
  height: 2px;
  left: 0;
  top: 7px;
  transition: .3s;
}
.commonFooter .footIn .linkBoxArea .links li {
  margin-top: 10px;
}
.commonFooter .footIn .linkBoxArea .links ul + ul {
  padding-left: 30px;
}
.commonFooter .footIn .linkBoxArea .linkBox:nth-child(n+3) p {
  width: 165px;
}
.commonFooter .footIn .linkBoxArea .linkBox02 .links li {
  line-height: 1;
}
.commonFooter .footIn .linkBoxArea .linkBox02 .links li:first-child {
  margin-top: 0;
}
.commonFooter .footIn .linkBoxArea .linkBox02 .links li + li {
  margin-top: 22px;
}
.commonFooter .footIn .linkBoxArea .linkBox02 .links li a {
  padding: 0;
  font-size: 16px;
}
.commonFooter .footIn .linkBoxArea .linkBox02 .links li a:before {
  content: none;
}
.commonFooter .footIn .linkBoxArea .linkBox02 .links li a[target="_blank"]:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 14px;
  height: 11px;
  background-image: url("../images/footer/blank_icon.png");
  background-size: cover;
}
.commonFooter .footIn .linkBoxArea .info a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  width: 220px;
  height: 55px;
  border: 1px solid #fff;
  padding: 0;
  transition: none;
}
.commonFooter .footIn .linkBoxArea .info a:before {
  content: none;
}
.commonFooter .footIn .linkBoxArea .info a:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}
.commonFooter .footIn .copyright {
  /*display: flex;
  justify-content: space-between;
  align-items: center;*/
  text-align: center;
  width: 100%;
}
.commonFooter .footIn .copyright p {
  font-size: 12px;
}
@media screen and (max-width: 769px) {
  .commonFooter {
    padding: 0 0 15px;
  }
  .commonFooter .inquiry {
    padding: 50px 20px;
  }
  .commonFooter .inquiry h2 {
    font-size: 23px;
    margin-bottom: 25px;
  }
  .commonFooter .inquiry p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
  }
  .commonFooter .inquiry .inquiryBtn {
    width: 200px;
    line-height: 50px;
    font-size: 14px;
  }
  .commonFooter .inquiry .inquiryBtn:before {
    top: 25px;
    width: 25px;
  }
  .commonFooter .footIn .copyright {
    display: block;
    text-align: center;
    padding-top: 30px;
  }
  .commonFooter .footIn .copyright .pct {
    width: 175px;
    margin: 0 auto 25px;
  }
  .commonFooter .footIn .copyright .pct img {
    display: block;
    width: 100%;
  }
}

.lowerKv {
  width: 100%;
  height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}
.lowerKv h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.3;
  text-align: center;
  text-shadow: 1px 1px 2px #000;
}
.lowerKv h1 span {
  font-size: 16px;
  display: block;
}
@media screen and (max-width: 769px) {
  .lowerKv h1 {
    font-size: 26px;
  }
  .lowerKv h1 span {
    font-size: 10px;
  }
}

main.business_top .lowerKv {
  background-image: url("../images/lower/kv/business/business_top_kv.jpg");
}
main.other_company .lowerKv {
  background-image: url("../images/lower/kv/business/other_company_kv.jpg");
}
main.sail .lowerKv {
  background-image: url("../images/lower/kv/business/sail_kv.jpg");
}
main.rental .lowerKv {
  background-image: url("../images/lower/kv/business/rental_kv2.jpg");
}
main.distribution .lowerKv {
  background-image: url("../images/lower/kv/business/distribution_kv.jpg");
}
main.web .lowerKv {
  background-image: url("../images/lower/kv/business/web_kv.jpg");
}
main.girls_ch .lowerKv {
  background-image: url("../images/lower/kv/business/girls_ch_kv.jpg");
}
main.kakubutsu .lowerKv {
  background-image: url("../images/lower/kv/business/kakubutsu_kv.jpg");
}
main.publications .lowerKv {
  background-image: url("../images/lower/kv/business/publications_kv.jpg");
}
main.events .lowerKv {
  background-image: url("../images/lower/kv/business/events_kv.jpg");
}
main.publicity .lowerKv {
  background-image: url("../images/lower/kv/business/publicity_kv.jpg");
}
main.create .lowerKv {
  background-image: url("../images/lower/kv/business/create_kv.jpg");
}
main.goods .lowerKv {
  background-image: url("../images/lower/kv/business/goods_kv.jpg");
}
main.restaurant .lowerKv {
  background-image: url("../images/lower/kv/business/restaurant_kv.jpg");
}
main.studio .lowerKv {
  background-image: url("../images/lower/kv/business/studio_kv.jpg");
}
main.artworks .lowerKv {
  background-image: url("../images/lower/kv/business/artworks_kv.jpg");
}
main.message .lowerKv {
  background-position: top;
  background-image: url("../images/lower/kv/company/message_kv.jpg");
}
main.message .lowerKv h1 {
  color: #000;
}
@media screen and (max-width: 769px) {
  main.message .lowerKv {
    background-size: cover;
    background-position: center right -215px;
  }
}
main.group .lowerKv {
  background-image: url("../images/lower/kv/company/group_kv.jpg");
}
main.summary .lowerKv {
  background-image: url("../images/lower/kv/company/summary_kv.jpg");
}
main.org .lowerKv {
  background-image: url("../images/lower/kv/company/org_kv.jpg");
}
main.activities .lowerKv {
  background-image: url("../images/lower/kv/company/activities_kv.jpg");
}
main.initiatives .lowerKv {
  background-image: url("../images/lower/kv/initiatives_kv.jpg");
}
main.contact .lowerKv {
  background-color: #ccc;
}

/*
========================
---pages
========================
*/
main.top .kv {
  height: 730px;
  width: 100%;
  background-image: url("../images/top/topkv_pc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  margin-bottom: 90px;
  opacity: 1;
  transform: translateY(0);
}
main.top .kv h1 {
  position: relative;
  width: 984px;
  height: 208px;
  overflow: hidden;
}
main.top .kv h1 .slidePct:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 208px;
  background-image: url("../images/top/topttl_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.6s cubic-bezier(0.27, 0.91, 0.46, 0.97);
  transition-delay: .6s;
}
main.top .kv h1 .slidePct.slideIn:before {
  width: 100%;
}
main.top .kv h1 img {
  width: 100%;
}
main.top .kvInner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
main.top .kvInner .scrollIcon {
  position: absolute;
  right: -87px;
  bottom: 79px;
  transform: rotate(-90deg);
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
}
main.top .kvInner .scrollIcon p {
  line-height: 1;
  letter-spacing: .2rem;
}
main.top .kvInner .scrollIcon .line {
  position: relative;
  width: 75px;
  height: 1px;
  background-color: #fff;
  margin-right: 15px;
}
main.top .kvInner .scrollIcon .line:before {
  content: '';
  display: block;
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  background-color: #fff;
  animation: scroll 1.7s linear infinite;
  transform: translate3d(0, 0, 0);
}
@keyframes scroll {
  0% {
    right: 0%;
  }
  100% {
    right: 100%;
  }
}
main.top h2 {
  font-size: 32px;
  line-height: 1;
  text-align: center;
  letter-spacing: .2rem;
}
main.top p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
main.top .moreBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 70px;
  font-size: 14px;
  color: #e5002e;
  background-color: #fff;
  font-family: 'Lato', sans-serif;
  border: 1px solid #e5002e;
}
main.top .moreBtn:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #e5002e;
  right: 0;
  top: 50%;
  transition: .3s;
}
main.top .moreBtn:hover {
  background-color: #e5002e;
  color: #fff;
}
main.top .moreBtn:hover:before {
  background-color: #fff;
}
main.top .topLead {
  transition-delay: 1.2s;
}
main.top .topLead h2 {
  margin-bottom: 45px;
}
main.top .lowerIntro {
  padding: 60px 0 100px;
}
main.top .lowerIntro .moreBtn {
  margin: 60px auto 0;
}
main.top .companyArea {
  padding: 100px 0;
  background-color: #e5002e;
  color: #fff;
  text-align: center;
}
main.top .companyArea h2 {
  margin-bottom: 45px;
}
main.top .companyArea p {
  margin-bottom: 30px;
}
main.top .companyArea a {
  display: inline-block;
  color: #fff;
  margin-bottom: 60px;
}
main.top .companyArea .companyLinks {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main.top .companyArea .companyLinks li {
  position: relative;
  height: 280px;
  overflow: hidden;
}
main.top .companyArea .companyLinks li:before {
  content: '';
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: .5s;
}
main.top .companyArea .companyLinks li:hover:before {
  transform: scale(1.05);
}
main.top .companyArea .companyLinks li:nth-child(-n+2) {
  width: calc(50% - 1px);
}
main.top .companyArea .companyLinks li:nth-child(n+3) {
  width: calc((100%/3) - 1px);
  margin-top: 2px;
}
main.top .companyArea .companyLinks li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
main.top .companyArea .companyLinks li a:hover:before {
  background-color: rgba(0, 0, 0, 0);
}
main.top .companyArea .companyLinks li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: .3s;
}
main.top .companyArea .companyLinks li a span {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  background-color: #e5002e;
  padding: 0 10px;
  z-index: 10;
}
main.top .companyArea .companyLinks li:nth-child(1):before {
  background-image: url(../images/top/message_btn.jpg);
}
main.top .companyArea .companyLinks li:nth-child(2):before {
  background-image: url(../images/top/group_btn.jpg);
}
main.top .companyArea .companyLinks li:nth-child(3):before {
  background-image: url(../images/top/summary_btn.jpg);
}
main.top .companyArea .companyLinks li:nth-child(4):before {
  background-image: url(../images/top/org_btn.jpg);
}
main.top .companyArea .companyLinks li:nth-child(5):before {
  background-image: url(../images/top/activ_btn.jpg);
}
main.top .recruitArea {
  display: flex;
  align-items: center;
}
main.top .recruitArea .pct {
  width: 50%;
}
main.top .recruitArea .pct img {
  width: 100%;
}
main.top .recruitArea .txt {
  margin-left: 100px;
}
main.top .recruitArea .txt h2, main.top .recruitArea .txt p {
  text-align: left;
}
main.top .recruitArea .txt h2 {
  margin-bottom: 45px;
}
main.top .recruitArea .txt p {
  margin-bottom: 55px;
}
@media screen and (max-width: 769px) {
  main.top .kv {
    height: 370px;
    margin-bottom: 45px;
    background-size: cover;
  }
  main.top .kv h1 {
    max-width: 310px;
    height: 205px;
  }
  main.top .kv h1 .slidePct:before {
    width: 0;
    height: 100%;
    background-image: url("../images/top/topttl_sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.6s cubic-bezier(0.27, 0.91, 0.46, 0.97);
    transition-delay: .7s;
  }
  main.top .kv h1 .slidePct.slideIn:before {
    width: 100%;
  }
  main.top .kv h1 img {
    width: 100%;
  }
  main.top .kvInner {
    width: 100%;
  }
  main.top h2 {
    font-size: 28px;
  }
  main.top p {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }
  main.top .moreBtn {
    width: 200px;
    height: 50px;
  }
  main.top .moreBtn:before {
    width: 25px;
  }
  main.top .topLead h2 {
    margin-bottom: 25px;
  }
  main.top .topLead p {
    padding: 0 40px;
  }
  main.top .lowerIntro {
    padding: 25px 0 50px;
  }
  main.top .lowerIntro .moreBtn {
    margin: 50px auto 0;
  }
  main.top .companyArea {
    padding: 50px 20px 55px;
  }
  main.top .companyArea h2, main.top .companyArea p {
    margin-bottom: 22px;
  }
  main.top .companyArea p {
    margin-bottom: 10px;
  }
  main.top .companyArea a {
    margin-bottom: 20px;
  }
  main.top .companyArea .companyLinks {
    display: block;
  }
  main.top .companyArea .companyLinks li {
    height: 100px;
  }
  main.top .companyArea .companyLinks li:nth-child(-n+2) {
    width: 100%;
  }
  main.top .companyArea .companyLinks li:nth-child(n+3) {
    width: 100%;
    margin-top: 2px;
  }
  main.top .companyArea .companyLinks li + li {
    margin-top: 2px;
  }
  main.top .companyArea .companyLinks li a span {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 6px;
  }
  main.top .recruitArea {
    padding:  0;
    display: block;
    background-color: #f0f0eb;
  }
  main.top .recruitArea .pct {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
  }
  main.top .recruitArea .pct img {
    width: 100%;
  }
  main.top .recruitArea .txt {
    position: relative;
    width: 100%;
    padding: 45px 20px 50px;
    margin-top: 0px;
    background-color: #fff;
    margin-left: 0;
    margin-right: auto;
  }
  main.top .recruitArea .txt h2, main.top .recruitArea .txt p {
    text-align: left;
  }
  main.top .recruitArea .txt h2 {
    letter-spacing: .2rem;
    margin-bottom: 27px;
  }
  main.top .recruitArea .txt p {
    margin-bottom: 28px;
  }
}

main {
  width: 100%;
}
main .bgGray {
  background-color: #f0f0eb !important;
}
main .lowerLead {
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 85px;
}
main .lowerLead .lowerLeadTop {
  margin-bottom: 60px;
  text-align: center;
}
main .lowerLead .lowerLeadTtl {
  font-size: 32px;
  line-height: 1;
  text-align: center;
  margin-bottom: 60px;
}
main .lowerLead .lowerLeadSubTtl {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 35px;
  text-align: center;
}
main .lowerLead .lowerLeadTxt {
  width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
}
main .lowerLead .lowerLeadPct {
  margin: 0 auto 55px;
  width: 1000px;
}
main .lowerLead .lowerLeadPct img {
  display: block;
  width: 100%;
}
main .lowerAbout {
  padding: 100px 0;
  background-color: #e6002d;
  color: #fff;
}
main .lowerAbout .lowerAboutTop {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
}
main .lowerAbout .lowerColumn .columnBox:nth-child(n+5) {
  margin-top: 55px;
}
main .lowerAbout .lowerColumn + .lowerAboutTop {
  margin-top: 85px;
}
main .lowerAbout.bgGray {
  color: #000;
  padding-top: 0;
}
main .lowerColumn {
  width: 96%;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
}
main .lowerColumn .columnBoxTtl {
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 600;
}
main .lowerColumn.medium img {
  margin-bottom: 10px;
}
main .lowerColumn.medium .columnBoxTtl {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}
main .lowerColumn.medium .columnBox {
  width: 305px;
}
main .lowerColumn.medium .columnBox + .columnBox {
  margin-left: 42.5px;
}
main .lowerColumn.medium .columnBox:nth-child(3n+1) {
  margin-left: 0;
}
main .lowerColumn.small img {
  margin-bottom: 10px;
}
main .lowerColumn.small .columnBoxTtl {
  font-size: 14px;
}
main .lowerColumn.small .columnBox {
/*width: 235px;*/
width: 24.5%;
}

main .lowerColumn.small .columnBox + .columnBox {
}
main .lowerColumn.small .columnBox {
	padding-left: 0.5%;
	padding-right: 0.5%;
}
main .lowerColumn.small .columnBox img {
	width: 90%;
}
/*main .lowerColumn.small .columnBox:nth-child(4n+1) {
  margin-left:0;
}*/
main .lowerColumn .columnBoxTxt {
  font-size: 14px;
  line-height: 1.45;
}
main .lowerColumn a {
  color: #000;
}
main .lowerIntro {
  text-align: center;
  padding: 100px 0;
}
main .lowerIntro .lowerIntroTtl {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 60px;
}
main .lowerIntro .lowerIntroTtl.info {
  font-size: 28px;
}
main .lowerIntro .lowerIntroSubTtl {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}
main .lowerIntro .lowerColumn.small .pct {
  margin-bottom: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
 /* width: 235px;
  height: 130px;*/
}
main .lowerIntro .lowerColumn.small .pct img {
  display: block;
  transition: .5s;
  margin-bottom: 0;
   width: 100%;
}
main .lowerIntro .lowerColumn.small .columnBoxTtl {
  margin-bottom: 0;
}
main .lowerIntro .lowerColumn.small a:hover img {
  transform: scale(1.1);
}
main .lowerIntro .lowerColumn .columnBox:nth-child(n+5) {
  margin-top: 20px;
}
main .lowerIntro .lowerColumn + .lowerIntroSubTtl {
  margin-top: 60px;
}
@media screen and (max-width: 769px) {
  main .lowerLead {
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px 30px;
  }
  main .lowerLead .lowerLeadTop {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
  }
  main .lowerLead .lowerLeadTop img {
    width: 100%;
  }
  main .lowerLead .lowerLeadSubTtl {
    font-size: 18px;
    letter-spacing: -.05rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  main .lowerLead .lowerLeadTxt {
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    padding: 0 20px;
  }
  main .lowerLead .lowerLeadPct {
    width: 100%;
  }
  main .lowerAbout {
    padding: 50px 0;
  }
  main .lowerAbout .lowerAboutTop {
    font-size: 21px;
    margin-bottom: 20px;
  }
  main .lowerAbout .lowerColumn .columnBox img {
    display: block;
    width: 80%;
    margin: 0 auto 10px;
  }
  main .lowerAbout .lowerColumn .columnBox:nth-child(n+5) {
    margin-top: auto;
  }
  main .lowerAbout .lowerColumn .columnBox:nth-child(n+3) {
    margin-top: 10px;
  }
  main .lowerAbout .lowerColumn + .lowerAboutTop {
    margin-top: 45px;
  }
  main .lowerColumn {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
  main .lowerColumn.medium img {
    margin-bottom: 10px;
  }
  main .lowerColumn.medium .columnBoxTtl {
    margin-bottom: 5px;
  }
  main .lowerColumn.medium .columnBox {
    width: 100%;
  }
  main .lowerColumn.medium .columnBox + .columnBox {
    margin-left: auto;
    margin-top: 35px;
  }
  main .lowerColumn.medium .columnBox:nth-child(2n+1) {
    margin-left: 0;
  }
  main .lowerColumn.small {
    justify-content: space-between;
  }
  main .lowerColumn.small img {
    margin-bottom: 10px;
    width: 100%;
  }
  main .lowerColumn.small .columnBoxTtl {
    margin-bottom: 10px;
    font-size: 12px;
  }
  main .lowerColumn.small .columnBoxTtl .smpSmall {
    font-size: 10px;
  }
  main .lowerColumn.small .columnBox {
    width: 48%;
  }
  main .lowerColumn.small .columnBox img {
    width: 100%;
  }
  main .lowerColumn.small .columnBox + .columnBox {
    margin-left: 4%;
  }
  main .lowerColumn.small .columnBox:nth-child(2n+1) {
    margin-left: 0;
  }
  main .lowerColumn.small .columnBox:nth-child(n+3) {
    margin-top: 20px;
  }
  main .lowerColumn .columnBoxTxt {
    font-size: 12px;
  }
  main .lowerIntro {
    padding: 50px 0;
  }
  main .lowerIntro .lowerIntroTtl {
    font-size: 28px;
    margin-bottom: 30px;
  }
  main .lowerIntro .lowerIntroSubTtl {
    font-size: 21px;
    margin-bottom: 20px;
  }
  main .lowerIntro .lowerColumn.small .pct {
    width: auto;
    height: auto;
  }
  main .lowerIntro .lowerColumn.small .columnBoxTtl {
    margin-bottom: 0;
  }
  main .lowerIntro .lowerColumn .columnBox:nth-child(n+3) {
    margin-top: 15px;
  }
  main .lowerIntro .lowerColumn + .lowerIntroSubTtl {
    margin-top: 40px;
  }
}

main.lower.business_top .lowerLead {
  padding-top: 95px;
  padding-bottom: 75px;
}
main.lower.business_top .lowerLead .lowerLeadTxt {
  width: 790px;
  letter-spacing: .09rem;
}
main.lower.business_top .businessTopPct {
  text-align: center;
  margin-bottom: 60px;
}
main.lower.business_top .businessBanners {
  background-color: #e6002d;
  padding-top: 60px;
  padding-bottom: 50px;
}
main.lower.business_top .businessBanners ul {
  width: 780px;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
main.lower.business_top .businessBanners ul li + li {
  margin-left: 20px;
}
main.lower.business_top .businessBanners ul li:first-child, main.lower.business_top .businessBanners ul li:nth-child(5) {
  margin-left: 0;
}
main.lower.business_top .businessBanners ul li:nth-child(n+5) {
  margin-top: 20px;
}
main.lower.business_top .businessBanners ul li a {
  position: relative;
  transition: .3s;
  width: 180px;
  height: 60px;
  display: block;
}
main.lower.business_top .businessBanners ul li a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -3px;
  left: -3px;
  border: 3px solid #fff;
  opacity: 0;
}
main.lower.business_top .businessBanners ul li a:hover {
  opacity: 1;
}
main.lower.business_top .businessBanners ul li a:hover:before {
  opacity: 1;
}
@media screen and (max-width: 769px) {
  main.lower.business_top .lowerLead {
    padding: 50px 40px 30px;
  }
  main.lower.business_top .lowerLead .lowerLeadTxt {
    width: 100%;
  }
  main.lower.business_top .businessTopPct {
    margin: 0 auto 60px;
    padding: 0 20px;
    max-width: 546px;
  }
  main.lower.business_top .businessTopPct img {
    width: 100%;
  }
  main.lower.business_top .businessBanners {
    background-color: #e6002d;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  main.lower.business_top .businessBanners ul {
    max-width: 380px;
    width: auto;
  }
  main.lower.business_top .businessBanners ul li {
    max-width: 130px;
  }
  main.lower.business_top .businessBanners ul li a {
    width: auto;
    height: auto;
  }
  main.lower.business_top .businessBanners ul li a img {
    width: 100%;
  }
  main.lower.business_top .businessBanners ul li a:before {
    content: none;
  }
  main.lower.business_top .businessBanners ul li + li {
    margin-left: 0;
  }
  main.lower.business_top .businessBanners ul li:first-child, main.lower.business_top .businessBanners ul li:nth-child(5) {
    margin-left: 0;
  }
  main.lower.business_top .businessBanners ul li:nth-child(n+5) {
    margin-top: 0;
  }
  main.lower.business_top .businessBanners ul li:nth-child(n+3) {
    margin-top: 20px;
  }
  main.lower.business_top .businessBanners ul li:nth-child(even) {
    margin-left: 20px;
  }
  main.lower.business_top .businessBanners ul li:last-child {
    margin: 20px auto 0;
  }
}

main.lower.girls_ch .lowerLead {
  padding-bottom: 90px;
}
main.lower.girls_ch .lowerLead .lowerLeadTop {
  margin-bottom: 20px;
}
main.lower.girls_ch .lowerLead .lowerLeadSubTtl {
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (max-width: 769px) {
  main.lower.girls_ch .lowerLead {
    padding-bottom: 30px;
  }
  main.lower.girls_ch .lowerLead .lowerLeadSubTtl {
    margin-bottom: 25px;
    line-height: 1.3;
  }
}

.lower.initiatives .initBloc {
  margin: 110px auto 100px;
}
.lower.initiatives .initBloc .inner {
  width: 800px;
  margin: 0 auto;
}
.lower.initiatives .initBloc .inner + .inner {
  margin-top: 55px;
}
.lower.initiatives .initBloc p {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 2;
}
.lower.initiatives .initBloc p a {
  color: #000;
  text-decoration: underline;
}
.lower.initiatives .initBloc h2 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 35px;
}
.lower.initiatives .initBloc h3 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
}
.lower.initiatives .initBloc .bgGray {
  margin: 53px 0 60px;
  padding-top: 63px;
  padding-bottom: 22px;
}
.lower.initiatives .initBloc .bgGray p {
  margin-bottom: 33px;
}
.lower.initiatives .initBloc .example h3 {
  margin-bottom: 15px;
}
.lower.initiatives .initBloc .example ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.lower.initiatives .initBloc .example ul li {
  position: relative;
  font-size: 16px;
  padding-left: 15px;
  line-height: 2;
  width: 50%;
}
.lower.initiatives .initBloc .example ul li:before {
  content: '●';
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 3px;
}
.lower.initiatives .initBloc .example ul li:last-child:before {
  content: none;
}
@media screen and (max-width: 769px) {
  .lower.initiatives .initBloc {
    margin: 50px auto;
  }
  .lower.initiatives .initBloc .inner {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .lower.initiatives .initBloc .inner + .inner {
    margin-top: 25px;
  }
  .lower.initiatives .initBloc p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .lower.initiatives .initBloc p + h2 {
    margin-top: 25px;
  }
  .lower.initiatives .initBloc h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .lower.initiatives .initBloc h3 {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .lower.initiatives .initBloc .bgGray {
    margin: 25px 0;
    padding: 20px 0;
  }
  .lower.initiatives .initBloc .bgGray p {
    margin-bottom: 15px;
  }
  .lower.initiatives .initBloc .example h3 {
    margin-bottom: 10px;
  }
  .lower.initiatives .initBloc .example ul {
    display: block;
  }
  .lower.initiatives .initBloc .example ul li {
    width: 100%;
    position: relative;
    font-size: 13px;
    padding-left: 15px;
    line-height: 2;
  }
  .lower.initiatives .initBloc .example ul li:before {
    top: 0;
  }
}

/*
========================
---company
========================
*/
.lowerOrg .lowerOrgBox {
  padding: 100px 0;
  width: 100%;
  text-align: center;
}
.lowerOrg .lowerOrgBox .lowerOrgTtl {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 40px;
}
.lowerOrg .lowerOrgBox .pct {
	width: 100%;
	text-align: center;
}
.lowerOrg .lowerOrgBox .pct img{
	width: 100%;
	max-width: 800px;
}
  
  
@media screen and (max-width: 769px) {
  .lowerOrg .lowerOrgBox {
    padding: 50px 0;
    width: 100%;
    text-align: center;
  }
  .lowerOrg .lowerOrgBox .lowerOrgTtl {
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .lowerOrg .lowerOrgBox .pct {
    max-width: 560px;
    width: 90%;
    margin: 0 auto;
  }
  .lowerOrg .lowerOrgBox .pct img {
    display: block;
    width: 100%;
  }
}

.lower.message .lowerLeadTxt {
  letter-spacing: -.035rem;
  text-align: justify;
}
.lower.message .lowerMessage {
  background-color: #e40531;
  height: 345px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lower.message .lowerMessage .pct {
  margin-right: 40px;
  margin-top: auto;
  margin-bottom: 0;
}
.lower.message .lowerMessage .lowerMessageTxt {
  width: 850px;
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: .06rem;
}
.lower.message .lowerMessage .lowerMessageTxt .name {
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 769px) {
  .lower.message .lowerMessage {
    height: auto;
    display: block;
    padding: 20px 10px;
  }
  .lower.message .lowerMessage .pct {
    margin: 0 auto 5px;
    max-width: 280px;
    width: 80%;
  }
  .lower.message .lowerMessage .pct img {
    width: 100%;
  }
  .lower.message .lowerMessage .lowerMessageTxt {
    width: 100%;
    font-size: 14px;
    color: #fff;
  }
  .lower.message .lowerMessage .lowerMessageTxt .name {
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px;
  }
}

.lower.group .lowerGroup {
  width: 100%;
  margin: 0 auto 100px;
  padding-top: 60px;
  border-top: 1px solid #ccc;
}
.lower.group .groupTtl {
  font-size: 28px;
  line-height: 1;
  text-align: center;
  margin-bottom: 60px;
}
.lower.group .groupBox {
  display: flex;
  align-items: center;
  padding-bottom: 60px;
}
.lower.group .groupBox > * {
  width: 500px;
}
.lower.group .groupBox .pct {
  text-align: center;
}
.lower.group .groupBox .pct img {
  width: 280px;
}
.lower.group .groupBox + .groupBox {
  flex-direction: row-reverse;
  border-bottom: 1px solid #ccc;
  margin-bottom: 60px;
  padding-bottom: 70px;
}
.lower.group .groupBox p {
  font-size: 16px;
  line-height: 2;
}
.lower.group .groupBox + .groupBox .pct img {
  width: 360px;
}
.lower.group .groupPctBox .pct {
  text-align: center;
}
.lower.group .groupPctBox.vision {
  padding-bottom: 55px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 60px;
}
.lower.group .groupPctBox.vision .groupTtl {
  margin-bottom: 45px;
}
@media screen and (max-width: 769px) {
  .lower.group .lowerGroup {
    width: 100%;
    margin: 0 auto 50px;
    padding-top: 30px;
  }
  .lower.group .groupTtl {
    font-size: 18px;
    line-height: 1;
    text-align: center;
    margin-bottom: 30px;
  }
  .lower.group .groupBox {
    display: block;
    padding: 0 10px;
    padding-bottom: 30px;
  }
  .lower.group .groupBox > * {
    width: 100%;
  }
  .lower.group .groupBox .pct {
    margin-bottom: 25px;
  }
  .lower.group .groupBox .pct img {
    max-width: 280px;
    width: 80%;
  }
  .lower.group .groupBox + .groupBox {
    flex-direction: row-reverse;
    border-bottom: 1px solid #ccc;
    margin-top: 25px;
    margin-bottom: 30px;
    padding-bottom: 35px;
  }
  .lower.group .groupBox + .groupBox .pct img {
    max-width: 360px;
    width: 95%;
  }
  .lower.group .groupBox p {
    font-size: 12px;
    line-height: 2;
    padding: 0 15px;
  }
  .lower.group .groupPctBox .pct {
    width: 100%;
    margin: 0 auto;
  }
  .lower.group .groupPctBox .pct img {
    width: 100%;
  }
  .lower.group .groupPctBox.vision {
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
  .lower.group .groupPctBox.vision .groupTtl {
    margin-bottom: 20px;
  }
}

.lower.summary .summaryTableBloc {
  width: 800px;
  margin: 80px auto 110px;
}
.lower.summary .summaryTableBloc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.8;
  border-bottom: 1px solid #ccc;
}
.lower.summary .summaryTableBloc table tr + tr {
  border-top: 1px solid #ccc;
}
.lower.summary .summaryTableBloc table th, .lower.summary .summaryTableBloc table td {
  color: #333;
  font-weight: 300;
  padding: 15px 0;
}
.lower.summary .summaryTableBloc table th {
  vertical-align: baseline;
  width: 180px;
  padding-left: 30px;
  text-align: left;
}
.lower.summary .summaryTableBloc table:nth-child(2) {
  margin-top: 100px;
  margin-bottom: 120px;
}
.lower.summary .gglmap {
  width: 100%;
  height: 430px;
}
.lower.summary .gglmap iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 769px) {
  .lower.summary .summaryTableBloc {
    width: 95%;
    margin: 40px auto 55px;
  }
  .lower.summary .summaryTableBloc table {
    font-size: 12px;
  }
  .lower.summary .summaryTableBloc table th, .lower.summary .summaryTableBloc table td {
    padding: 8px 0;
  }
  .lower.summary .summaryTableBloc table th {
    width: 70px;
    padding-left: 10px;
  }
  .lower.summary .summaryTableBloc table:nth-child(2) {
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .lower.summary .gglmap {
    width: 100%;
    height: 190px;
  }
  .lower.summary .gglmap iframe {
    width: 100%;
    height: 100%;
  }
}

.lower.activities .lowerLead {
  padding-bottom: 45px;
}
.lower.activities .actvBloc {
  margin: 0 auto 100px;
}
.lower.activities .actvBloc .inner {
  width: 800px;
  margin: 0 auto;
}
.lower.activities .actvBloc .inner + .inner {
  margin-top: 55px;
}
.lower.activities .actvBloc p {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 2;
}
.lower.activities .actvBloc p a {
  color: #000;
  text-decoration: underline;
}
.lower.activities .actvBloc h2 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 35px;
}
.lower.activities .actvBloc h3 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
}
.lower.activities .actvBloc .bgGray {
  margin: 53px 0 60px;
  padding-top: 63px;
  padding-bottom: 22px;
}
.lower.activities .actvBloc .bgGray p {
  margin-bottom: 33px;
}
.lower.activities .actvBloc .example h3 {
  margin-bottom: 15px;
}
.lower.activities .actvBloc .example ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.lower.activities .actvBloc .example ul li {
  position: relative;
  font-size: 16px;
  padding-left: 15px;
  line-height: 2;
  width: 50%;
}
.lower.activities .actvBloc .example ul li:before {
  content: '●';
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 3px;
}
.lower.activities .actvBloc .example ul li:last-child:before {
  content: none;
}
.lower.activities .actvExample {
  width: 800px;
  margin: 0 auto 65px;
}
.lower.activities .actvExample h2 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 35px;
}
.lower.activities .actvExample ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.lower.activities .actvExample ul li {
  position: relative;
  font-size: 16px;
  padding-left: 15px;
  line-height: 2;
  width: 50%;
}
.lower.activities .actvExample ul li:before {
  content: '●';
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 3px;
  color: #000;
}
.lower.activities .actvExample ul li:last-child:before {
  content: none;
}
@media screen and (max-width: 769px) {
  .lower.activities .lowerLead {
    padding-bottom: 20px;
  }
  .lower.activities .actvBloc {
    margin: 0 auto 50px;
  }
  .lower.activities .actvBloc .inner {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .lower.activities .actvBloc .inner + .inner {
    margin-top: 25px;
  }
  .lower.activities .actvBloc p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .lower.activities .actvBloc p + h2 {
    margin-top: 25px;
  }
  .lower.activities .actvBloc h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .lower.activities .actvBloc h3 {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .lower.activities .actvBloc .bgGray {
    margin: 25px 0;
    padding: 20px 0;
  }
  .lower.activities .actvBloc .bgGray p {
    margin-bottom: 15px;
  }
  .lower.activities .actvBloc .example h3 {
    margin-bottom: 10px;
  }
  .lower.activities .actvBloc .example ul {
    display: block;
  }
  .lower.activities .actvBloc .example ul li {
    width: 100%;
    position: relative;
    font-size: 13px;
    padding-left: 15px;
    line-height: 2;
  }
  .lower.activities .actvBloc .example ul li:before {
    top: 0;
  }
  .lower.activities .actvExample {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 25px;
  }
  .lower.activities .actvExample h2 {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
  }
  .lower.activities .actvExample ul {
    display: block;
  }
  .lower.activities .actvExample ul li {
    width: 100%;
    position: relative;
    font-size: 13px;
    padding-left: 15px;
    line-height: 2;
  }
  .lower.activities .actvExample ul li:before {
    top: 0;
  }
}
/*
========================
business
========================
*/
main.create .lowerColumn.small{
    padding-left: 2%;
  }
main.create .lowerColumn.small img {
    width: 100% !important;
  }
  
/*
========================
---contact
========================
*/
.lower.contact .lowerLead {
  padding-bottom: 0;
}
.lower.contact .lowerLeadTxt {
  text-align: center;
}
.lower.contact .contactBloc {
  padding-top: 65px;
  padding-bottom: 80px;
}
.lower.contact .contactBloc .contactWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
.lower.contact .contactBloc .contactWrap + .contactWrap {
  margin-top: 60px;
}
.lower.contact .contactBloc h2 {
  text-align: center;
  margin-bottom: 45px;
  font-size: 28px;
}
.lower.contact .contactBloc .contactBox {
  position: relative;
  text-align: center;
  width: 33%;
  min-height: 195px;
  padding-top: 52px;
}
.lower.contact .contactBloc .contactBox h3 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  font-size: 28px;
  line-height: 1;
}
.lower.contact .contactBloc .contactBox h3 span {
  display: block;
  line-height: 1;
  font-size: 14px;
  margin-top: 3px;
}
.lower.contact .contactBloc .contactBox p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}
.lower.contact .contactBloc .contactBox a {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 60px;
  font-size: 14px;
  color: #e5002e;
  border: 1px solid #e5002e;
  background-color: #fff;
  transition: .3s;
}
.lower.contact .contactBloc .contactBox a:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #e5002e;
  transition: .3s;
}
.lower.contact .contactBloc .contactBox a:hover {
  color: #fff;
  background-color: #e5002e;
}
.lower.contact .contactBloc .contactBox a:hover:before {
  background-color: #fff;
}
.lower.contact .contactBloc .contactBox:nth-child(n+4) {
  margin-top: 60px;
}
.lower.contact .contactBloc.top {
  padding-top: 50px;
  padding-bottom: 100px;
}
.lower.contact .contactBloc.top .contactBox:nth-child(-n+3) {
  min-height: 220px;
}
@media screen and (max-width: 769px) {
  .lower.contact .contactBloc {
    padding-top: 30px;
    padding-bottom: 35px;
  }
  .lower.contact .contactBloc .contactWrap {
    justify-content: center;
    width: 95%;
  }
  .lower.contact .contactBloc .contactWrap + .contactWrap {
    margin-top: 60px;
  }
  .lower.contact .contactBloc h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 18px;
  }
  .lower.contact .contactBloc .contactBox {
    position: relative;
    text-align: center;
    width: 48%;
    min-height: 150px;
    padding-top: 25px;
  }
  .lower.contact .contactBloc .contactBox h3 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1;
  }
  .lower.contact .contactBloc .contactBox h3 span {
    font-size: 12px;
  }
  .lower.contact .contactBloc .contactBox p {
    letter-spacing: -.03rem;
    font-size: 11px;
    font-weight: 600;
  }
  .lower.contact .contactBloc .contactBox a {
    margin: 0 auto;
    width: 120px;
    height: 40px;
    font-size: 12px;
  }
  .lower.contact .contactBloc .contactBox a:before {
    width: 15px;
  }
  .lower.contact .contactBloc .contactBox:nth-child(n+4) {
    margin-top: auto;
  }
  .lower.contact .contactBloc .contactBox:nth-child(n+3) {
    margin-top: 30px;
  }
  .lower.contact .contactBloc .contactBox:nth-child(even) {
    margin-left: 2%;
  }
  .lower.contact .contactBloc .contactBox.spPdt {
    padding-top: 45px;
  }
  .lower.contact .contactBloc.top {
    padding-top: 30px;
    padding-bottom: 35px;
  }
  .lower.contact .contactBloc.top .contactBox:nth-child(-n+3) {
    min-height: 150px;
  }
}
.tableclass{
  margin: 14% 0 0 0;
}

/*# sourceMappingURL=style.css.map */

/*--privacypolicy--*/
main {
    width: 100%;
    overflow: hidden;
}

p,li,.alphabet_indent dt
{
    font-size:80% !important;
}

h1 {
    text-align: center;
    margin: 120px auto 40px;
}
p{
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
}

p.responsible {
    text-align: right;
    margin-bottom: 40px !important;
}

.inner ul {
    padding-left: 1em;
}

.inner li {
    list-style: decimal;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
}

h3 {
    font-size:110% !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
}
h4 {
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    font-size:100% !important;
}
h5 {
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    font-size:90% !important;
}

ul.style_change li{
    list-style: disc;
}

ol.indent {
    padding-left: 32px;
}

ol.indent li{
    margin-top: 10px;
    margin-bottom: 10px;
    list-style:none;
    counter-increment: cnt;
    position: relative;
}

ol.indent li:before {
  content: "(" counter(cnt) ")";
  text-align: right;
  position: absolute;
  top: 0;
  left: -30px;
}
ol.indent li dl {
    margin-top: 10px;
}

ol.indent dl.marker {
	margin-left: -1em;
}

dl.marker dd:before {
	content:'・';
	font-size:140% !important;
}

dl.asterisk dd:before {
	content:'※';
	font-size:90% !important;
}

dl.marker dd ,dl.asterisk dd{
	padding-left:1em;
	text-indent:-1em;
	margin-top: 10px;
    margin-bottom: 6px;
}
.alphabet_indent{
    padding-left: 2em;
}

ol.alphabet_marker li{
    margin-top: 20px;
    margin-bottom: 20px;
    list-style-type: upper-alpha;
    counter-increment: cnt;
    position: relative;
    left:1em;
}

ul.liststyle-none {
	padding:0;
}

ul.liststyle-none li{
	list-style:none;
}

dl.google dd {
    font-size: 80%;
    margin: 0 0 10px;
    padding-left: 1em;
}

.google_link li a{
	color:rgba(229, 0, 46, 1);
}

div.text-left {
    text-align: right;
}

a :hover{
	opacity: 0.5;
}

main.top h2.text_black,h3.text_black {
  color: #000;
}

.lower_toplogo{
	width: 100%;
	text-align: center;
	padding: 100px 80px 0;
}

.lower_toplogo img{
	width: 90%;
	max-width: 500px;
}

main.artworks .Column_middle{
	width: 100%;
	display: block;
	text-align: center;
	max-width: 1000px;
	margin: auto;
}

main.artworks .Column_middle li.Column_middle_list3{
	width: 72%;
	display: inline-block;
	vertical-align: top;
}

main.artworks .Column_middle li.Column_middle_list1{
	width: 22%;
	display: inline-block;
	vertical-align: top;
}

main.artworks .Column_middle li.Column_middle_list3.Column_small,
main.artworks .Column_middle li.Column_middle_list1.Column_small{
	width: 100%;
}

main.artworks .Column_middle li.Column_middle_list3 ul.Column_small li.columnBox_aw{
	width: 33%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	padding: 0 1%;
}

main.artworks .Column_middle li.Column_middle_list1 ul.Column_small li.columnBox_aw{
	width: 100%;
	box-sizing: border-box;
	vertical-align: top;
}

main.artworks .Column_middle li.Column_middle_list3 ul.Column_small li.columnBox_aw img,
main.artworks .Column_middle li.Column_middle_list1 ul.Column_small li.columnBox_aw img{
	width: 100%;
	margin-bottom: 10px;
}

main.artworks .Column_middle li.columnBox_aw em.columnBoxTtl {
    display: block;
    text-align: center;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 14px;
}

main.artworks .Column_middle li.columnBox_aw div.columnBoxTxt {
    text-align: left;
    line-height: 1.45;
    margin-bottom: 15px;
    font-size: 14px;
}

.aw_ttl{
	background: #fff;
	color: #e6002d;
    font-weight: bold;
    font-size: 14px;
    padding: 8px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
main.artworks .Column_middle li.Column_middle_list3 .aw_ttl{
    width: 98%;
    margin: auto;
    margin-bottom: 10px;
}

@media screen and (max-width: 769px) {
main.artworks .Column_middle li.Column_middle_list3,
main.artworks .Column_middle li.Column_middle_list1{
	width: 100%;
	display: block;
	vertical-align: top;
	text-align: left;
	margin-left: 4%;
}

main.artworks .Column_middle li.Column_middle_list3 ul.Column_small li.columnBox_aw,
main.artworks .Column_middle li.Column_middle_list1 ul.Column_small li.columnBox_aw
{
	width: 46%;
	display: inline-block;
	vertical-align: top;
}

main.artworks .Column_middle li.Column_middle_list1 .aw_ttl,
main.artworks .Column_middle li.Column_middle_list3 .aw_ttl{
    width: 92%;
    margin: 0;
    margin-bottom: 10px;
}

}