@charset "UTF-8";
/*===============================================
画面の横幅が1000px〜768pxまで
===============================================*/
@media screen and (max-width: 1024px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  main {
    margin-top: 80px;
  }
  br.tb {
    display: inline;
  }
  br.sp {
    display: none;
  }
  header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0;
    z-index: 100;
  }
  header h1 {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 20px;
    z-index: 0;
  }
  .hamburger {
    display: block;
    position: fixed;
    text-align: center;
    background-color: #fb7a8e;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    z-index: 3;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    left: 20px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transitio: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 23px;
  }
  .hamburger span:nth-child(2) {
    top: 39px;
  }
  .hamburger span:nth-child(3) {
    top: 55px;
  }
  .hamburger.active span:nth-child(1) {
    top: 38px;
    left: 15px;
    width: 50px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 38px;
    left: 15px;
    width: 50px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  nav.globalMenuSp {
    position: fixed;
    display: block;
    background-color: #ffeeee;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.6s;
    transform: translateY(-100%);
    padding: 15px 30px 30px 30px;
    z-index: -1;
    box-sizing: border-box;
  }
  nav.globalMenuSp ul {
    display: block;
    margin-bottom: 20px;
  }
  nav.globalMenuSp li {
    padding: 20px 20px 20px 30px;
    border-bottom: 1px solid #dec4c4;
  }
  nav.globalMenuSp li a {
    display: block;
    text-decoration: none;
  }
  nav.globalMenuSp li:before {
    left: 10px;
  }
  nav.globalMenuSp.active {
    top: 80px;
    left: 0;
    transform: translateY(0);
  }
  nav.globalMenuSp .contact {
    text-align: center;
  }
  nav.globalMenuSp .contact a {
    display: inline-block;
    width: max-content;
  }
  footer {
    padding: 50px 30px;
  }
  footer .footerL {
    width: calc(100% - 400px);
    padding-right: 20px;
  }
  footer .footerR {
    width: 400px;
  }
  .spContact {
    position: fixed;
    display: inline-block;
    bottom: 30px;
    right: 0;
    width: 35px;
    background-color: #fb7a8e;
    border-radius: 5px 0 0 5px;
  }
  .spContact a {
    display: block;
    color: #fff;
    font-size: 1.35rem;
    text-decoration: none;
    writing-mode: vertical-rl;
    padding: 15px 12px;
  }
  .mainVisual {
    width: calc(100% - 40px);
    margin-top: 90px;
  }
  .pageTtl {
    margin: 0 auto 70px auto;
  }
  .pageTtl .inner {
    padding: 0 40px;
  }
  .pankuzuWrap {
    right: 0;
  }
  .pageTtlSvc {
    height: 340px;
  }
  .inner, .innerS {
    width: 100%;
    padding: 0 40px;
  }
  .btnService > div {
    width: calc((100% - 40px) / 3);
  }
  .btnService > div:not(:last-child), .btnService > div:not(:nth-child(3n)) {
    margin-right: 20px;
  }
  .worksList li {
    width: calc((100% - 40px) / 3);
  }
  .worksList li:not(:nth-child(3n)) {
    margin-right: 20px;
  }
  .worksTab .inner {
    display: block;
  }
  .worksTab a {
    display: block;
    width: 100%;
  }
  .worksTab a:not(:last-child) {
    margin-bottom: 10px;
  }
  .pageTtl {
    width: 100%;
  }
  .pageTtl .pankuzuWrap {
    right: 0;
  }
  .secDef {
    padding: 0 0 70px 0;
  }
  .secBg {
    padding: 70px 0;
  }
  .secBg:not(:last-child) {
    margin-bottom: 70px;
  }
  .aboutGreeting .txt {
    width: calc(100% - 230px);
  }
  .aboutGreeting figure {
    width: 200px;
  }
  .aboutStaff .staffWrap {
    padding: 30px;
  }
  .aboutStaff figure {
    width: 120px;
  }
  .aboutStaff .txt {
    width: calc(100% - 150px);
  }
  .serviceItem figure {
    width: 40%;
  }
  .serviceItem .txt {
    width: 56%;
  }
  .serviceItem h4 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .questionWrap > div {
    width: calc((100% - 40px) / 3);
    padding: 60px 15px;
  }
  ul.tieupWrap li {
    width: calc((100% - 40px) / 3);
    padding: 75px 20px 30px 20px;
  }
}
@media screen and (max-width: 1300px) {
  .pageTtlSvc .ttl .inner {
    padding: 0 30px;
    margin: 0;
  }
}
/*===============================================
tablet横向き
===============================================*/
/*===============================================
画面の横幅が767px〜0pxまで
===============================================*/
@media screen and (max-width: 767px) {
  br.pc {
    display: none;
  }
  br.sp {
    display: inline;
  }
  body {
    -webkit-text-size-adjust: 100%;
  }
  main {
    margin-top: 70px;
  }
  header {
    height: 70px;
  }
  .hamburger {
    width: 70px;
    height: 70px;
  }
  .hamburger span {
    left: 15px;
  }
  .hamburger span:nth-child(1) {
    top: 18px;
  }
  .hamburger span:nth-child(2) {
    top: 34px;
  }
  .hamburger span:nth-child(3) {
    top: 50px;
  }
  .hamburger.active span {
    width: 35px;
  }
  .hamburger.active span:nth-child(1) {
    top: 33px;
    left: 10px;
  }
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 33px;
    left: 10px;
  }
  nav.globalMenuSp.active {
    top: 70px;
  }
  footer {
    padding: 30px 20px;
  }
  footer .footerL {
    width: 100%;
    padding-right: 0;
  }
  footer .footerL ul {
    display: none;
  }
  footer .footerR {
    width: 100%;
  }
  .mainVisual h3 {
    display: block;
    font-size: 2rem;
    margin-top: 10px;
  }
  .mainVisual h2 {
    font-size: 2.4rem;
  }
  .mainVisual .imgWrap {
    justify-content: flex-start;
    align-items: flex-end;
    height: 340px;
    padding: 20px;
  }
  .mainVisual .imgWrap div {
    font-size: 2.5rem;
  }
  .pageTtl .pankuzuWrap {
    width: 100%;
  }
  .pageTtl .breadcrumbs {
    overflow: auto;
    white-space: nowrap;
  }
  .pageTtl h2 {
    margin-bottom: 40px;
  }
  .pageTtl .inner {
    padding: 0 25px;
  }
  .pageTtlSvc {
    width: 100%;
    margin: 0 auto 140px auto;
    height: 160px;
  }
  .pageTtlSvc .pankuzuWrap {
    width: 100%;
    top: 100%;
  }
  .pageTtlSvc .breadcrumbs {
    overflow: auto;
    white-space: nowrap;
    padding: 15px 10px;
  }
  .pageTtlSvc .ttl {
    width: calc(100% - 30px);
    height: 90px;
    bottom: -60px;
  }
  .pageTtlSvc h2 {
    font-size: 2.5rem;
  }
  .inner, .innerS {
    padding: 0px 25px;
  }
  h3 {
    font-size: 2.4rem;
    text-align: left;
  }
  h3.center {
    text-align: unset;
  }
  span.subTtl.center {
    text-align: unset;
  }
  p.center {
    text-align: unset;
  }
  .tbldef td {
    display: block;
    width: 100%;
    padding: 15px !important;
  }
  .tbldef td:nth-child(1) {
    width: 100% !important;
  }
  .tbldef td:nth-child(2) {
    width: 100% !important;
    padding: 15px 15px 30px 15px !important;
  }
  .topAbout {
    padding: 70px 0;
    text-align: unset;
  }
  .topService h3 {
    text-align: left;
  }
  .btnService {
    display: block;
  }
  .btnService > div {
    width: 100%;
  }
  .btnService > div:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .btnService > div:not(:last-child) {
    margin-bottom: 20px;
  }
  .worksList {
    display: block;
  }
  .worksList li {
    width: 100%;
  }
  .worksList li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .worksList li:not(:last-child) {
    margin-bottom: 20px;
  }
  .aboutGreeting .flex {
    flex-direction: column-reverse;
  }
  .aboutGreeting figure, .aboutGreeting .txt {
    width: 100%;
  }
  .aboutGreeting figure {
    text-align: center;
    margin-bottom: 20px;
  }
  .aboutStaff .staffWrap {
    display: block;
    padding: 30px 20px;
  }
  .aboutStaff figure {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .aboutStaff .txt {
    width: 100%;
  }
  .aboutStaff h5 {
    font-size: 1.5rem;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 20px;
  }
  .aboutStaff h5:before {
    top: -19px;
    left: 50%;
    bottom: auto;
    transform: rotate(0) translateX(-50%);
  }
  .aboutStaff h4 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .aboutStaff h4 span {
    display: block;
    padding-left: 0;
    margin-top: 10px;
  }
  .aboutStaff p {
    padding-left: 10px;
    padding-right: 10px;
  }
  .serviceItem {
    flex-direction: column;
  }
  .serviceItem figure, .serviceItem .txt {
    width: 100%;
  }
  .serviceItem figure {
    margin-bottom: 20px;
  }
  .serviceItem h4 {
    font-size: 2.2rem;
  }
  .serviceItem .item01 {
    order: 1;
  }
  .serviceItem .item02 {
    order: 2;
  }
  .flowWrap ul li {
    padding: 30px 5px 30px 85px;
  }
  .flowWrap ul li:before {
    font-size: 2rem;
    width: 70px;
  }
  .flowWrap ul li:after {
    font-size: 4.5rem;
    width: 70px;
  }
  .flowWrap h5 {
    font-size: 2rem;
  }
  .serviceMessage .contact {
    padding: 35px 30px;
  }
  .serviceMessage .contact p {
    text-align: left;
  }
  .serviceDesc {
    flex-direction: column;
    padding: 30px;
  }
  .serviceDesc figure, .serviceDesc .txt {
    width: 100%;
  }
  .serviceDesc figure:not(:last-child), .serviceDesc .txt:not(:last-child) {
    margin-bottom: 20px;
  }
  .serviceDesc .txt.item02 {
    width: 100%;
  }
  .serviceDesc figure {
    text-align: center;
  }
  .serviceDesc figure img {
    width: 50%;
  }
  .serviceDesc h4 {
    font-size: 2rem;
  }
  .voiceWrap {
    padding: 25px;
  }
  .questionWrap {
    display: block;
  }
  .questionWrap > div {
    width: 100%;
    min-height: 310px;
  }
  .questionWrap > div:not(:last-child) {
    margin-bottom: 20px;
  }
  ul.tieupWrap {
    display: block;
  }
  ul.tieupWrap li {
    width: 100%;
  }
  ul.tieupWrap li:not(:last-child) {
    margin-bottom: 15px;
  }
  .pagination a.page-numbers:not(.next):not(.prev), .pagination span.current {
    display: none;
  }
  .pagination .prev, .pagination .next {
    display: inline-block;
    width: calc((100vw - 60px) / 2);
    height: auto;
    padding: 10px 10px 12px 10px;
    background-color: #fb7a8e;
    border-radius: 50px;
  }
  .pagination .prev:not(:last-child), .pagination .next:not(:last-child) {
    margin-right: 10px;
  }
  .pagination .prev:before, .pagination .next:before {
    background-color: unset;
    top: 0;
  }
  .pagination .prev:after {
    content: "   次へ";
    font-size: 1.5rem;
  }
  .pagination .next:before {
    position: relative;
    content: "前へ   ";
    top: auto;
    left: auto;
    font-size: 1.5rem;
  }
  .smf-form .wp-block-snow-monkey-forms-item {
    display: block;
  }
  .smf-form .smf-item__col--label, .smf-form .smf-item__col--controls {
    width: 100%;
  }
  .smf-form .smf-item__col--label {
    border-bottom: 0;
    padding: 15px;
  }
  .smf-form .smf-item__col--controls {
    padding: 15px 15px 30px 15px !important;
  }
  .smf-form .w100, .smf-form .w50, .smf-form .w25 {
    width: 100%;
  }
  .smf-form input[type=text], .smf-form input[type=tel] {
    background-color: #fff !important;
    border: 1px solid #ccc !important;
  }
  .smf-form .smf-text-control__control, .smf-form .smf-select-control__control, .smf-form textarea {
    background-color: #fff !important;
    border: 1px solid #ccc !important;
  }
  .privacyWrap .scroll {
    padding: 20px;
  }
  .privacyWrap .smf-item__col--label, .privacyWrap .smf-item__col--controls {
    padding: 0 !important;
  }
}
/*===============================================
sp横向き
===============================================*/
@media screen and (max-width: 821px) and (orientation: landscape) {
  nav.globalMenuSp.active {
    height: calc(100vh - 70px);
    overflow: scroll;
  }
}