@charset "UTF-8";
@use "sass:math";
@use "sass:math";
@font-face {
  font-family: "ufont";
  font-display: swap;
  src: url(../fonts/uzura.woff2) format("woff2"), url(../fonts/uzura.woff) format("woff"); }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

:root {
  --maincolor: #3D2A23;
  --subcolor: #E7E3DE;
  --yellow: #F8F9D9;
  --green: #D0DA00;
  --bggreen: #F8F9D9;
  --orange: #DD700A;
  --break: 1200; }
  @media screen and (max-width: 767px) {
    :root {
      --break: 750; } }

html {
  font-size: 62.5%; }

body,
html {
  height: 100%; }

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  color: var(--maincolor); }

a {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, text-decoratin 0.2s; }
  a:hover {
    opacity: .7; }

.mf {
  font-family: 'Noto Serif JP', serif; }

.uf {
  font-family: "ufont"; }

a:link,
a:visited {
  color: var(--green); }

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

p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0; }
  @media screen and (max-width: 767px) {
    p {
      font-size: 1.4rem; } }
  p.txt {
    margin: 0 0 1em; }

.container {
  max-width: 1036px;
  padding-left: 18px;
  padding-right: 18px;
  margin: 0 auto; }
  @media screen and (max-width: 767px) {
    .container {
      width: 100%; } }

main {
  padding-top: 80px; }
  @media screen and (max-width: 767px) {
    main {
      padding-top: 55px; } }

/*pc sp switch*/
.pc {
  display: block !important; }

span.pc {
  display: inline !important; }

.sp {
  display: none !important; }

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; }

  .sp {
    display: block !important; }

  span.sp {
    display: inline !important; } }
/*共通*/
.fr {
  list-style: none;
  display: flex; }

.fr.between {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between !important;
  justify-content: space-between !important; }

.fr.start {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start !important;
  justify-content: flex-start !important; }

.fr.reverse {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.fr.wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.fr.center {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center; }

.fr.hcenter {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; }

.fr.bottom {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end !important;
  align-items: flex-end !important; }

.fr.top {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start !important;
  align-items: flex-start !important; }

a.telnumber {
  pointer-events: none;
  text-decoration: none;
  color: inherit; }
  @media screen and (max-width: 767px) {
    a.telnumber {
      pointer-events: all; } }

/*==================================================
 * header
 *================================================*/
#header {
  padding-top: 0px;
  padding-bottom: 0px;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  background-color: transparent;
  transition: all 0.2s;
  background-color: #fff;
  z-index: 3;
  transition: all 0.2s; }
  #header .headtop > .container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 767px) {
      #header .headtop > .container {
        height: 55px; } }
  #header .logo {
    margin-left: 0px; }
    #header .logo a {
      margin-top: 0px;
      margin-left: 0px;
      display: block;
      padding: 0px;
      font-size: 2.5rem;
      font-weight: 500;
      text-decoration: none;
      overflow: hidden;
      white-space: nowrap;
      text-indent: 100%;
      background: url(../images/logo.svg) no-repeat;
      width: 289px;
      height: 45px; }
      @media screen and (max-width: 767px) {
        #header .logo a {
          width: 194px;
          height: 31px;
          background-size: 100% auto; } }

.gmenu {
  display: block;
  background-color: var(--maincolor);
  display: none;
  position: fixed;
  left: 0;
  top: 80px;
  width: 100%;
  max-width: 100vw;
  padding: 45px 0;
  height: calc(100vh - 80px);
  overflow-y: auto; }
  @media (max-width: 767px) {
    .gmenu {
      width: 100%;
      top: 55px;
      height: calc(100vh - 55px);
      padding: 20px 0; } }
  .gmenu .container {
    display: flex; }
    @media (max-width: 767px) {
      .gmenu .container {
        flex-direction: column; } }
  .gmenu .navi {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 45px;
    width: calc(100% / 3); }
    @media (max-width: 920px) {
      .gmenu .navi {
        row-gap: clamp(3rem, 9.8684210526vw + -4.5789473684rem, 4.5rem); } }
    @media (max-width: 767px) {
      .gmenu .navi {
        width: 100%;
        row-gap: 15px;
        margin-top: 15px; } }
    .gmenu .navi > li {
      position: relative;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      cursor: pointer; }
      .gmenu .navi > li span {
        content: "";
        display: block;
        background-position: left top;
        background-repeat: no-repeat;
        background-image: url(../images/icon_plus.svg);
        background-size: auto 20px;
        width: 20px;
        height: 20px;
        margin-right: 11px; }
      .gmenu .navi > li.active span {
        background-image: url(../images/icon_minus.svg); }
      .gmenu .navi > li > a {
        display: block;
        text-decoration: none;
        position: relative;
        color: #fff;
        padding: 0px;
        line-height: 1.3;
        text-align: left;
        color: #fff;
        font-size: 1.8rem;
        min-height: 17px;
        font-weight: 500;
        width: calc(100% - 31px); }
        @media (max-width: 920px) {
          .gmenu .navi > li > a {
            font-size: clamp(1.5rem, 1.9736842105vw + -0.0157894737rem, 1.8rem);
            background-size: 15px 15px; } }
        @media (max-width: 767px) {
          .gmenu .navi > li > a {
            font-size: 1.6rem;
            background-size: 17px 17px; } }
        .gmenu .navi > li > a span {
          display: block; }
    .gmenu .navi .sub-menu {
      display: none;
      list-style: none;
      padding-top: 10px;
      width: 100%; }
      .gmenu .navi .sub-menu li {
        margin-top: 5px;
        margin-left: 28px; }
        .gmenu .navi .sub-menu li a {
          white-space: nowrap;
          font-size: 1.5rem;
          padding: 0;
          font-weight: normal;
          color: #fff;
          text-align: left;
          text-decoration: none; }
          @media (max-width: 920px) {
            .gmenu .navi .sub-menu li a {
              font-size: clamp(1.3rem, 1.3157894737vw + 0.2894736842rem, 1.5rem); } }
          @media (max-width: 767px) {
            .gmenu .navi .sub-menu li a {
              font-size: 1.4rem; } }
          .gmenu .navi .sub-menu li a::before {
            content: "・"; }
    .gmenu .navi > li:first-child .sub-menu .sub-menu {
      	/*		padding: 40px 0 0 0;
      	height: 180px;
      */ }

/*menu*/
.navbar-toggle {
  cursor: pointer;
  outline: none;
  z-index: 1000;
  padding: 8px 0 0;
  margin: 0;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  flex-grow: 0;
  background-color: transparent;
  transition: all .2s;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  color: var(--maincolor);
  display: block;
  border: 1px solid var(--maincolor);
  border-radius: 5px;
  position: relative; }
  .navbar-toggle .bar {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--maincolor); }
    .navbar-toggle .bar::before, .navbar-toggle .bar::after {
      transition: all .2s;
      content: "";
      position: absolute;
      display: inline-block;
      height: 2px;
      width: 20px;
      left: 50%;
      top: 50%;
      background-color: var(--maincolor);
      transform: translateX(-50%) translateY(-50%) rotate(0); }
    .navbar-toggle .bar::before {
      top: calc(50% - 6px); }
    .navbar-toggle .bar::after {
      top: calc(50% + 6px); }
  .navbar-toggle.active .bar {
    background-color: transparent; }
    .navbar-toggle.active .bar::before {
      transform: translateX(-50%) translateY(-50%) rotate(45deg);
      top: 50%; }
    .navbar-toggle.active .bar::after {
      transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      top: 50%; }
  .spmenu .navbar-toggle {
    margin: 35px 60px 35px auto; }
    @media screen and (max-width: 767px) {
      .spmenu .navbar-toggle {
        margin: 15px 15px 35px auto; } }

/*page mv*/
.page-header {
  margin: 0 0px;
  padding: 0 0;
  position: relative;
  border-bottom: 0;
  overflow: visible;
  background-color: var(--maincolor);
  background: url(../images/bg_head.png) repeat-x top/cover;
  height: 140px; }
  @media screen and (max-width: 767px) {
    .page-header {
      height: 79px; } }
  .page-header .container {
    height: 100%;
    display: flex;
    align-items: center; }
    @media screen and (max-width: 767px) {
      .page-header .container {
        justify-content: center; } }
    .page-header .container .ttlarea .ttl {
      font-size: 3.7rem;
      color: #fff;
      line-height: 1;
      font-weight: 400;
      letter-spacing: 0.1em;
      display: flex;
      align-items: center; }
      @media screen and (max-width: 767px) {
        .page-header .container .ttlarea .ttl {
          font-size: 1.6rem;
          line-height: 1.3; } }
      .page-header .container .ttlarea .ttl .img {
        margin-right: 30px; }
        @media screen and (max-width: 767px) {
          .page-header .container .ttlarea .ttl .img {
            margin-right: 15px;
            width: 44px; } }

.nolink > a {
  pointer-events: none;
  cursor: pointer; }

.pagination li > span {
  border-color: #337ab7;
  color: #fff;
  display: table; }

article .sectitle {
  margin: 0px 0 40px;
  font-size: 3.7rem;
  line-height: 1.72;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  text-align: center;
  position: relative; }
  @media screen and (max-width: 767px) {
    article .sectitle {
      font-size: 2.3rem;
      margin: 0px 0 23px; } }
  article .sectitle::before {
    content: "";
    width: 200px;
    height: 10px;
    background-color: var(--maincolor);
    display: block;
    margin: 0 auto 25px; }
    @media screen and (max-width: 767px) {
      article .sectitle::before {
        width: 120px;
        height: 6px;
        margin: 0 auto 15px; } }

section {
  margin-bottom: 0px;
  display: block;
  position: relative;
  padding: 50px 0 70px; }
  section:first-child {
    padding-top: 65px; }
  @media screen and (max-width: 767px) {
    section {
      padding: 30px 0; }
      section:first-child {
        padding-top: 50px; } }
  body:not(.page-beauty):not(.page-beauty-child) main > section > .wp-block-group__inner-container {
    width: 1140px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto; }
    @media screen and (max-width: 767px) {
      body:not(.page-beauty):not(.page-beauty-child) main > section > .wp-block-group__inner-container {
        width: 100%; } }
  section .container > .block + .block {
    margin-top: 80px; }
  section body:not(.page-beauty):not(.page-beauty-child) .pagetitle {
    color: var(--maincolor);
    line-height: 1.3;
    text-align: center;
    font-size: 37px;
    margin: 0 0 30px; }
    @media screen and (max-width: 767px) {
      section body:not(.page-beauty):not(.page-beauty-child) .pagetitle {
        font-size: 20px; } }
  section .__subtitle {
    font-size: 25px;
    color: var(--maincolor);
    line-height: 1.3;
    margin: 0 0 30px;
    padding: 0 0 15px;
    border-bottom: 2px solid #e9f5e0;
    position: relative; }
    @media screen and (max-width: 767px) {
      section .__subtitle {
        margin: 0 0 20px;
        padding: 0 0 10px;
        font-size: 18px; } }
    section .__subtitle::before {
      content: "";
      display: block;
      height: 2px;
      width: 200px;
      background-color: var(--maincolor);
      position: absolute;
      left: 0;
      bottom: -2px; }
      @media screen and (max-width: 767px) {
        section .__subtitle::before {
          width: 100px; } }
  section .anchor {
    position: absolute;
    top: -100px; }
    @media screen and (max-width: 767px) {
      section .anchor {
        top: -65px; } }
  section dl.table {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 0 0 0;
    border-left: 1px solid #595757;
    border-top: 1px solid #595757; }
    @media screen and (max-width: 767px) {
      section dl.table {
        border-top: 1px solid #595757;
        display: block; } }
    section dl.table dt {
      width: 250px;
      padding: 0px 0 0px 30px;
      line-height: 80px;
      font-size: 15px;
      font-weight: 500;
      position: relative;
      background-color: #eee;
      border-right: 1px solid #595757;
      border-bottom: 1px solid #595757; }
      @media screen and (max-width: 767px) {
        section dl.table dt {
          width: 100%;
          padding: 15px 10px 15px 10px;
          min-height: auto;
          line-height: 1.3;
          font-size: 14px; } }
    section dl.table dd {
      margin-left: 0px;
      padding: 20px 26px 20px 26px;
      width: calc(100% - 250px);
      line-height: 1.5;
      position: relative;
      font-size: 15px;
      border-right: 1px solid #595757;
      border-bottom: 1px solid #595757;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: flex-start; }
      @media screen and (max-width: 767px) {
        section dl.table dd {
          border-bottom: 1px solid #595757;
          padding: 15px 10px 15px 10px;
          font-size: 14px;
          width: 100%; } }
  section dl.table-g {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 0 0 0; }
    @media screen and (max-width: 767px) {
      section dl.table-g {
        display: block; } }
    section dl.table-g dt {
      width: 250px;
      padding: 22px 0 20px 30px;
      line-height: 1.5;
      font-size: 17px;
      font-weight: 500;
      position: relative;
      background-color: #cee489;
      margin: 10px 0 0 0; }
      @media screen and (max-width: 767px) {
        section dl.table-g dt {
          width: 100%;
          padding: 15px 10px 15px 10px;
          min-height: auto;
          line-height: 1.3;
          font-size: 14px; } }
    section dl.table-g dd {
      margin: 10px 0 0 0;
      padding: 20px 26px 20px 26px;
      width: calc(100% - 250px);
      line-height: 1.5;
      position: relative;
      font-size: 17px;
      background-color: #fff;
      border-right: 1px solid #cee489;
      border-top: 1px solid #cee489;
      border-bottom: 1px solid #cee489; }
      @media screen and (max-width: 767px) {
        section dl.table-g dd {
          border-left: 1px solid #cee489;
          border-top: 0;
          padding: 15px 10px 15px 10px;
          font-size: 14px;
          width: 100%;
          margin: 0px 0 0 0; } }
      section dl.table-g dd p {
        margin: 0 0 1em; }
      section dl.table-g dd .addressbox .placemane {
        font-size: 25px;
        font-weight: bold;
        margin: 0 0 10px; }
        @media screen and (max-width: 767px) {
          section dl.table-g dd .addressbox .placemane {
            font-size: 16px; } }
      section dl.table-g dd .addressbox p {
        font-size: 17px;
        line-height: 1.5; }
        section dl.table-g dd .addressbox p:last-child {
          margin-bottom: 0; }
        @media screen and (max-width: 767px) {
          section dl.table-g dd .addressbox p {
            font-size: 14px; } }
      section dl.table-g dd .addressbox .map {
        margin: 25px 0 0; }
        @media screen and (max-width: 767px) {
          section dl.table-g dd .addressbox .map {
            margin: 15px 0 0; } }
        section dl.table-g dd .addressbox .map iframe {
          width: 100%;
          height: 390px; }
          @media screen and (max-width: 767px) {
            section dl.table-g dd .addressbox .map iframe {
              height: 200px; } }
      section dl.table-g dd .sns {
        display: inline-block;
        font-size: 36px;
        color: #595757;
        height: 36px;
        line-height: 1;
        margin-right: 20px;
        vertical-align: bottom;
        margin: -5px 20px -5px 0; }
        @media screen and (max-width: 767px) {
          section dl.table-g dd .sns {
            font-size: 28px;
            height: auto; } }
  section.nursinghome-area.nursinghome-apply.sec-w dl.table-g dd a {
    display: inline-block;
    min-width: 300px; }
    @media screen and (max-width: 767px) {
      section.nursinghome-area.nursinghome-apply.sec-w dl.table-g dd a {
        display: block; }
        section.nursinghome-area.nursinghome-apply.sec-w dl.table-g dd a + a {
          margin: 10px 0 0; } }
  section.sec-g dl.table-g dd {
    border-color: #f5f9e7 !important; }
  section dl.simulation-form {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 0 0 0; }
    @media screen and (max-width: 767px) {
      section dl.simulation-form {
        display: block; } }
    section dl.simulation-form dt {
      width: 165px;
      padding: 20px 0 20px 0px;
      line-height: 1.5;
      font-size: 17px;
      font-weight: 500;
      position: relative;
      margin: 0;
      color: var(--maincolor);
      border-bottom: 1px solid #595757; }
      @media screen and (max-width: 767px) {
        section dl.simulation-form dt {
          width: 100%;
          padding: 15px 0px 15px 0px;
          min-height: auto;
          line-height: 1.3;
          font-size: 14px; } }
      section dl.simulation-form dt i {
        margin-right: 5px; }
    section dl.simulation-form dd {
      margin: 0;
      padding: 20px 0 20px 0;
      width: calc(100% - 165px);
      line-height: 1.5;
      position: relative;
      font-size: 17px;
      border-bottom: 1px solid #595757; }
      @media screen and (max-width: 767px) {
        section dl.simulation-form dd {
          border-top: 0;
          padding: 15px 0px 15px 0px;
          font-size: 14px;
          width: 100%;
          margin: 0px 0 0 0; } }
      section dl.simulation-form dd p {
        margin: 0 0 1em; }
      section dl.simulation-form dd .addressbox .placemane {
        font-size: 25px;
        font-weight: bold;
        margin: 0 0 10px; }
        @media screen and (max-width: 767px) {
          section dl.simulation-form dd .addressbox .placemane {
            font-size: 16px; } }
      section dl.simulation-form dd .addressbox p {
        font-size: 17px;
        line-height: 1.5; }
        @media screen and (max-width: 767px) {
          section dl.simulation-form dd .addressbox p {
            font-size: 14px; } }
      section dl.simulation-form dd .addressbox .map {
        margin: 25px 0 0; }
        @media screen and (max-width: 767px) {
          section dl.simulation-form dd .addressbox .map {
            margin: 15px 0 0; } }
        section dl.simulation-form dd .addressbox .map iframe {
          width: 100%;
          height: 390px; }
          @media screen and (max-width: 767px) {
            section dl.simulation-form dd .addressbox .map iframe {
              height: 200px; } }
  section.simulation-area .btnarea {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0; }
    @media screen and (max-width: 767px) {
      section.simulation-area .btnarea {
        display: block; } }
    section.simulation-area .btnarea button {
      cursor: pointer;
      display: block;
      background-color: var(--maincolor);
      width: 200px;
      color: #fff;
      text-decoration: none;
      height: 50px;
      text-align: center;
      line-height: 50px;
      font-size: 18px;
      border: 0;
      margin: 0;
      font-weight: bold; }
      section.simulation-area .btnarea button:hover {
        opacity: .7; }
      @media screen and (max-width: 767px) {
        section.simulation-area .btnarea button {
          margin: 0 auto;
          width: 100%; } }
      section.simulation-area .btnarea button span {
        padding-left: 30px;
        display: inline-block;
        background-image: url(../images/icon-calc.svg);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 18px 26px;
        margin-left: 10px; }
      section.simulation-area .btnarea button i {
        font-size: 16px;
        margin-left: 10px;
        vertical-align: middle; }
    section.simulation-area .btnarea .result {
      width: 490px;
      border: 3px solid var(--maincolor);
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 17px; }
      @media screen and (max-width: 767px) {
        section.simulation-area .btnarea .result {
          font-size: 15px;
          margin: 20px 0 0;
          width: 100%;
          padding: 10px 0; } }
      section.simulation-area .btnarea .result span {
        font-size: 23px;
        font-weight: bold; }
        @media screen and (max-width: 767px) {
          section.simulation-area .btnarea .result span {
            font-size: 18px; } }
  section.simulation-area .optionbox {
    border: 5px solid #eee;
    padding: 30px;
    margin: 50px 0 0 0;
    display: flex;
    align-items: center; }
    @media screen and (max-width: 767px) {
      section.simulation-area .optionbox {
        margin: 40px 0 0 0;
        display: block;
        padding: 20px; } }
    section.simulation-area .optionbox p {
      color: var(--maincolor);
      font-size: 17px;
      padding-right: 45px;
      font-weight: bold;
      white-space: nowrap; }
      @media screen and (max-width: 767px) {
        section.simulation-area .optionbox p {
          font-size: 15px;
          margin: 0 0 10px; } }
  section .tablist {
    display: flex;
    list-style: none; }
    @media screen and (max-width: 767px) {
      section .tablist {
        flex-wrap: wrap;
        justify-content: space-between; } }
    section .tablist > li {
      width: 157px;
      border-right: 2px solid transparent; }
      @media screen and (max-width: 767px) {
        section .tablist > li {
          width: calc((100% - 6px) / 3);
          border-right: 0;
          border-bottom: 2px solid transparent; } }
      section .tablist > li a {
        background-color: #dedddd;
        color: #595757;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        height: 82px;
        text-decoration: none;
        font-size: 17px;
        font-weight: 500;
        padding: 0 0px; }
        @media screen and (max-width: 767px) {
          section .tablist > li a {
            height: 100%;
            font-size: 14px;
            padding: 10px 0; } }
      section .tablist > li.current a {
        background-color: var(--maincolor);
        color: #fff; }
  section .gallery {
    margin: 30px -10px 0 -10px;
    display: flex;
    list-style: none;
    flex-wrap: wrap; }
    @media screen and (max-width: 767px) {
      section .gallery {
        margin: 20px -10px 0 -10px; } }
    section .gallery > li {
      margin: 0 10px 20px; }
      section .gallery > li a {
        text-decoration: none;
        display: block;
        position: relative; }
        section .gallery > li a:hover {
          opacity: .7; }
    section .gallery.t4 > li {
      width: calc((100% - 80px) / 4); }
      @media screen and (max-width: 767px) {
        section .gallery.t4 > li {
          width: calc((100% - 40px) / 2); } }
    section .gallery.t3 > li {
      width: calc((100% - 60px) / 3); }
      @media screen and (max-width: 767px) {
        section .gallery.t3 > li {
          width: calc((100% - 40px) / 2); } }
    section .gallery-img {
      position: relative; }
      section .gallery-img::before {
        content: "";
        display: block;
        background: url(../images/icon-zoom.svg);
        width: 22px;
        height: 22px;
        position: absolute;
        right: 10px;
        bottom: 6px;
        z-index: 1; }
      section .gallery-img img {
        vertical-align: bottom; }
    section .gallery-title {
      font-weight: bold;
      font-size: 14px;
      color: #595757;
      margin: 5px 0; }
      @media screen and (max-width: 767px) {
        section .gallery-title {
          font-size: 13px; } }
    section .gallery p {
      color: #595757;
      font-size: 14px;
      line-height: 1.8; }
      @media screen and (max-width: 767px) {
        section .gallery p {
          font-size: 13px;
          line-height: 1.5; } }
  section .links + .links {
    margin: 10px 0 0; }
  section a.pdf {
    display: inline-block;
    background: url(../images/icon-pdf.svg) left center no-repeat;
    padding-left: 40px;
    height: 30px;
    line-height: 30px; }
    section a.pdf + a.pdf {
      margin-top: 10px; }
  section a.mail {
    display: block;
    text-decoration: none;
    background: url(../images/icon-mail-b.svg) left center no-repeat;
    background-size: 26px 20px;
    padding-left: 40px;
    height: 30px;
    line-height: 30px; }

/*==================================================
 * footer
 *================================================*/
#footer {
  width: 100%;
  position: relative;
  padding: 0;
  text-align: center; }
  #footer .footertop {
    padding: 64px 0 48px; }
    @media screen and (max-width: 767px) {
      #footer .footertop {
        padding: 32px 20px 26px; } }
  #footer .footerlogo {
    margin: 0 0 30px; }
    @media screen and (max-width: 767px) {
      #footer .footerlogo {
        margin: 0 0 25px; }
        #footer .footerlogo img {
          width: 60px; } }
  #footer .footnavi {
    margin: 0 0 26px; }
    @media screen and (max-width: 767px) {
      #footer .footnavi {
        margin: 0 0 16px; } }
    #footer .footnavi ul {
      display: flex;
      justify-content: center;
      align-items: center;
      list-style: none;
      flex-wrap: wrap; }
      @media only screen and (max-width: 767px) {
        #footer .footnavi ul {
          display: block;
          text-align: left; } }
      @media only screen and (max-width: 767px) {
        #footer .footnavi ul li {
          margin-top: 0px; } }
      #footer .footnavi ul li a {
        font-size: 1.4rem;
        text-decoration: none;
        font-weight: 500;
        padding: 0 27px 0 16px;
        color: var(--maincolor);
        text-decoration: none;
        white-space: nowrap;
        background: url(../images/icon-arrow.svg) left center no-repeat; }
        @media only screen and (max-width: 767px) {
          #footer .footnavi ul li a {
            font-size: 1.1rem; } }
      @media screen and (max-width: 767px) {
        #footer .footnavi ul li:first-child a::before {
          background-image: url(../images/icon-entry.svg);
          background-size: 23px auto; } }
      @media screen and (max-width: 767px) {
        #footer .footnavi ul li:nth-child(2) a::before {
          background-image: url(../images/icon-mail.svg);
          background-size: 17px auto; } }
      #footer .footnavi ul li:last-child a {
        padding-right: 0; }
  #footer .footerbanner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    list-style: none;
    max-width: 500px;
    margin: 40px auto 0; }
    @media screen and (max-width: 767px) {
      #footer .footerbanner {
        flex-direction: column;
        row-gap: 15px;
        margin: 25px auto 0; } }
    #footer .footerbanner li {
      width: calc((100% - 20px)/2); }
      @media screen and (max-width: 767px) {
        #footer .footerbanner li {
          width: 100%; } }
      #footer .footerbanner li a {
        display: block;
        border: 1px solid rgba(61, 42, 35, 0.5); }
      #footer .footerbanner li img {
        width: 100%;
        height: auto;
        vertical-align: bottom; }
    #footer .footerbanner li:last-child {
      width: 100%; }
  #footer .footerbottom {
    border-top: 2px solid var(--maincolor); }
    @media only screen and (max-width: 767px) {
      #footer .footerbottom {
        border-top: 1px solid var(--maincolor); } }
    #footer .footerbottom .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 126px; }
      @media only screen and (max-width: 767px) {
        #footer .footerbottom .container {
          flex-direction: column;
          height: auto;
          align-items: center;
          padding: 23px 0 30px; } }
  #footer .sitelogo {
    margin: 0; }
    @media only screen and (max-width: 767px) {
      #footer .sitelogo {
        margin: 0 auto 13px; } }
    #footer .sitelogo img {
      width: 289px;
      height: auto; }
      @media only screen and (max-width: 767px) {
        #footer .sitelogo img {
          width: 210px;
          text-align: center; } }
  #footer .copyright {
    font-size: 12px;
    text-align: center;
    padding: 0 80px;
    white-space: nowrap;
    color: var(--maincolor); }
    @media only screen and (max-width: 767px) {
      #footer .copyright {
        font-size: 9px;
        padding: 0;
        text-align: center; } }

/*foot*/
#page-top {
  display: none;
  position: fixed;
  z-index: 2;
  bottom: 30px;
  right: 30px;
  font-size: 12px;
  opacity: .8; }
  #page-top.fixed {
    display: block; }
  @media screen and (max-width: 767px) {
    #page-top {
      bottom: 20px;
      right: 10px; } }

#page-top a {
  line-height: 1;
  text-decoration: none;
  color: #fff;
  text-align: center;
  width: 68px;
  height: 68px;
  background-color: rgba(207, 218, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s;
  padding-top: 5px; }
  @media screen and (max-width: 767px) {
    #page-top a {
      width: 41px;
      height: 41px; } }
  #page-top a::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(-135deg); }
    @media screen and (max-width: 767px) {
      #page-top a::before {
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        width: 8px;
        height: 8px; } }

#page-top a:hover {
  opacity: .7; }

/*-----------------------
pagination
---------------------------*/
.autopagination {
  text-align: center; }

.pagination-wrapper {
  text-align: center !important; }
  @media screen and (max-width: 767px) {
    .pagination-wrapper {
      padding: 0px 0 50px 0; } }
  .pagination-wrapper .pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin: 65px 0 0;
    align-items: center; }
    @media screen and (max-width: 767px) {
      .pagination-wrapper .pagination {
        justify-content: center;
        margin: 30px 0 0; } }
    .pagination-wrapper .pagination > li > a, .pagination-wrapper .pagination > li > span {
      position: relative;
      display: block;
      padding: 0 0;
      margin: 0 6px;
      line-height: 28px;
      font-weight: 500;
      width: 28px;
      text-align: center;
      color: var(--maincolor);
      text-decoration: none;
      font-size: 1.5rem; }
      @media screen and (max-width: 767px) {
        .pagination-wrapper .pagination > li > a, .pagination-wrapper .pagination > li > span {
          margin: 0 4px; } }
    .pagination-wrapper .pagination > li > span.current {
      z-index: 2;
      background-color: var(--maincolor);
      color: #ddd; }
    .pagination-wrapper .pagination > li > a:focus, .pagination-wrapper .pagination > li > span:focus {
      z-index: 2;
      color: #fff;
      border: 1px solid var(--maincolor); }
    .pagination-wrapper .pagination > li > a:hover {
      opacity: .7; }
    .pagination-wrapper .pagination > li > a.prev::before, .pagination-wrapper .pagination > li > a.next::before {
      display: block;
      line-height: 28px;
      content: "";
      width: 10px;
      height: 10px;
      border-right: 1px solid var(--maincolor);
      border-bottom: 1px solid var(--maincolor); }
    .pagination-wrapper .pagination > li > a.prev::before {
      transform: rotate(135deg); }
    .pagination-wrapper .pagination > li > a.next::before {
      transform: rotate(-45deg); }
    .pagination-wrapper .pagination > li > span.disable {
      visibility: hidden; }

/*home*/
.mainslide {
  padding: 0 !important;
  background: url(../images/bg_main.jpg) no-repeat center/cover; }
  @media screen and (max-width: 767px) {
    .mainslide .container {
      padding: 0; } }
  .mainslide .slick-dots {
    position: absolute;
    bottom: 20px;
    display: inline-block !important;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center; }
    @media screen and (max-width: 767px) {
      .mainslide .slick-dots {
        bottom: 10px; } }
  .mainslide .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: 6px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    @media screen and (max-width: 767px) {
      .mainslide .slick-dots li {
        margin: 0 4px; } }
  .mainslide .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 6px;
    height: 6px;
    padding: 0px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    border: 0;
    outline: none; }
    @media screen and (max-width: 767px) {
      .mainslide .slick-dots li button {
        width: 3px;
        height: 3px; } }
  .mainslide .slick-dots li button:hover,
  .mainslide .slick-dots li button:focus {
    outline: none; }
  .mainslide .slick-dots li.slick-active button {
    background-color: var(--green); }
  .mainslide .slick-arrow {
    display: block;
    width: 42px;
    height: 84px;
    background-image: url(../images/slick-arrow.svg);
    background-position: center;
    background-size: cover; }
    @media screen and (max-width: 767px) {
      .mainslide .slick-arrow {
        width: 13px;
        height: 26px; } }
    .mainslide .slick-arrow:hover {
      opacity: .6; }
    .mainslide .slick-arrow.next {
      right: -70px; }
      @media screen and (max-width: 1200px) {
        .mainslide .slick-arrow.next {
          right: 10px; } }
    .mainslide .slick-arrow.prev {
      z-index: 1;
      left: -70px;
      transform: translate(0, -50%) rotate(180deg); }
      @media screen and (max-width: 1200px) {
        .mainslide .slick-arrow.prev {
          left: 10px; } }

.sec-toplist {
  background-color: var(--bggreen); }
  @media screen and (max-width: 767px) {
    .sec-toplist {
      padding-top: 24px !important; } }
  .sec-toplist .row_toplist {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px; }
    @media screen and (max-width: 767px) {
      .sec-toplist .row_toplist {
        display: flex;
        flex-direction: column;
        padding-bottom: 35px; } }
    .sec-toplist .row_toplist .item_toplist {
      width: calc((100% - 40px)/3);
      box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.28);
      background-color: #fff; }
      @media screen and (max-width: 767px) {
        .sec-toplist .row_toplist .item_toplist {
          max-width: 500px;
          margin: 0 auto;
          width: 100%; } }
    .sec-toplist .row_toplist a {
      text-decoration: none; }
  .sec-toplist .txt_toplist {
    display: flex;
    padding: 10px 10px 15px 10px;
    justify-content: space-between; }
    .sec-toplist .txt_toplist .img {
      width: 46%; }
    .sec-toplist .txt_toplist .txt {
      width: 49%;
      font-size: clamp(1.1rem, 0.6024096386vw + 0.6373493976rem, 1.3rem);
      line-height: 1.4;
      color: var(--maincolor); }
      @media screen and (max-width: 767px) {
        .sec-toplist .txt_toplist .txt {
          font-size: 1.2rem; } }
      .sec-toplist .txt_toplist .txt b {
        font-weight: bold;
        color: var(--orange); }
      .sec-toplist .txt_toplist .txt p {
        line-height: 1.4;
        font-size: clamp(1.1rem, 0.6024096386vw + 0.6373493976rem, 1.3rem); }
        @media screen and (max-width: 767px) {
          .sec-toplist .txt_toplist .txt p {
            font-size: 1.2rem; } }
  .sec-toplist .ttlarea_toplist {
    padding: 6px 6px 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--maincolor); }
  .sec-toplist .cttl_toplist {
    color: #fff;
    line-height: 1.3;
    font-size: clamp(1.2rem, 1.2048192771vw + 0.2746987952rem, 1.6rem);
    font-weight: 500; }
    @media screen and (max-width: 767px) {
      .sec-toplist .cttl_toplist {
        font-size: 16px; } }
  .sec-toplist .address {
    background-color: #fff;
    text-align: center;
    color: var(--maincolor);
    font-size: clamp(1.2rem, 0.9036144578vw + 0.5060240964rem, 1.5rem);
    font-weight: bold;
    line-height: 1;
    width: clamp(5rem, 6.0240963855vw + 0.3734939759rem, 7rem);
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 767px) {
      .sec-toplist .address {
        font-size: 1.1rem;
        width: 55px;
        height: 29px; } }

/*各施設ページ*/
.sec_clinic .floortitle {
  font-size: 3.4rem;
  border-bottom: 3px solid #BAB0A6;
  position: relative;
  margin: 80px 0 45px;
  line-height: 1;
  font-weight: 500;
  padding-bottom: 15px; }
  @media screen and (max-width: 767px) {
    .sec_clinic .floortitle {
      font-size: 3rem;
      margin: 30px 0 25px; } }
  .sec_clinic .floortitle::before {
    content: "";
    width: 120px;
    height: 3px;
    background-color: var(--maincolor);
    position: absolute;
    left: 0;
    bottom: -3px; }
  .sec_clinic .floortitle:first-child {
    margin-top: 0; }
.sec_clinic .box_clinic {
  background-color: #fff;
  box-shadow: 8.95px 8.95px 0px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
  position: relative; }
  @media screen and (max-width: 767px) {
    .sec_clinic .box_clinic {
      box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
      margin-top: 25px; } }
.sec_clinic .box_ttl {
  font-size: 2.0rem;
  font-weight: 500;
  padding: 15px 25px;
  line-height: 1;
  color: #fff; }
  @media screen and (max-width: 767px) {
    .sec_clinic .box_ttl {
      padding: 10px 15px;
      font-size: 1.7rem; } }
.sec_clinic .row_box {
  padding: 0px 40px 35px; }
  @media screen and (max-width: 767px) {
    .sec_clinic .row_box {
      padding: 0px 15px 50px;
      display: block;
      position: relative; }
      .sec_clinic .row_box.withbtn {
        padding-bottom: 60px; } }
  .sec_clinic .row_box .col_l {
    width: 50%;
    margin-right: 7%; }
    @media screen and (max-width: 767px) {
      .sec_clinic .row_box .col_l {
        width: 100%;
        margin-right: 0; } }
  .sec_clinic .row_box .col_r {
    width: 43%;
    width: 400px;
    min-width: 400px;
    margin-top: 30px; }
    @media screen and (max-width: 900px) {
      .sec_clinic .row_box .col_r {
        width: 50%;
        min-width: auto; } }
    @media screen and (max-width: 767px) {
      .sec_clinic .row_box .col_r {
        width: 100%; } }
  .sec_clinic .row_box .btn {
    margin-top: 0px; }
    @media screen and (max-width: 767px) {
      .sec_clinic .row_box .btn {
        position: absolute;
        bottom: 15px;
        left: 15px;
        width: calc(100% - 30px); } }
    .sec_clinic .row_box .btn a {
      display: block;
      text-decoration: none;
      border: 1px solid var(--maincolor);
      border-radius: 4px;
      text-align: center;
      line-height: 40px;
      font-size: 1.6rem;
      color: var(--maincolor);
      font-weight: normal; }
      @media screen and (max-width: 767px) {
        .sec_clinic .row_box .btn a {
          line-height: 27px;
          font-size: 1.1rem; } }
      .sec_clinic .row_box .btn a:hover {
        background-color: var(--maincolor);
        color: #fff; }
  .sec_clinic .row_box .logo {
    max-width: 440px;
    margin: calc(60 / 1036 * 100vw) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    flex-direction: column; }
    @media screen and (min-width: 1036px) {
      .sec_clinic .row_box .logo {
        margin: 60px auto; } }
    @media screen and (max-width: 767px) {
      .sec_clinic .row_box .logo {
        max-width: none;
        min-height: auto;
        margin: 30px auto; } }
    .sec_clinic .row_box .logo.free {
      display: block;
      margin-right: auto; }
      @media screen and (min-width: 1036px) {
        .sec_clinic .row_box .logo.free {
          margin: 30px auto; } }
  .sec_clinic .row_box .nameline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    @media screen and (max-width: 767px) {
      .sec_clinic .row_box .nameline {
        flex-wrap: nowrap; } }
  .sec_clinic .row_box .name {
    font-weight: 500;
    font-size: 2.3rem;
    white-space: nowrap; }
    @media screen and (max-width: 900px) {
      .sec_clinic .row_box .name {
        font-size: 2.0rem; } }
    @media screen and (max-width: 767px) {
      .sec_clinic .row_box .name {
        font-size: 1.7rem; } }
    .sec_clinic .row_box .name span {
      display: inline-block;
      min-width: 4em;
      font-weight: normal;
      font-size: 1.3rem; }
      @media screen and (max-width: 900px) {
        .sec_clinic .row_box .name span {
          font-size: 1.1rem; } }
      @media screen and (max-width: 767px) {
        .sec_clinic .row_box .name span {
          font-size: 1.0rem; } }
  .sec_clinic .row_box .tel {
    font-weight: 500;
    font-size: 2.3rem;
    text-align: right;
    white-space: nowrap; }
    @media screen and (max-width: 900px) {
      .sec_clinic .row_box .tel {
        font-size: 2.0rem; } }
    @media screen and (max-width: 767px) {
      .sec_clinic .row_box .tel {
        font-size: 1.7rem; } }
    .sec_clinic .row_box .tel span {
      display: inline-block;
      font-weight: normal;
      font-size: 1.3rem;
      margin-right: 5px; }
      @media screen and (max-width: 900px) {
        .sec_clinic .row_box .tel span {
          font-size: 1.1rem; } }
      @media screen and (max-width: 767px) {
        .sec_clinic .row_box .tel span {
          font-size: 1.0rem; } }
  .sec_clinic .row_box .timetable {
    margin-top: 10px; }
    .sec_clinic .row_box .timetable table {
      width: 100%;
      border-collapse: collapse; }
    .sec_clinic .row_box .timetable th {
      background-color: var(--subcolor);
      line-height: 1; }
      .sec_clinic .row_box .timetable th.tname {
        padding: 10px 10px;
        font-size: 1.5rem;
        font-weight: normal;
        text-align: left; }
        @media screen and (max-width: 900px) {
          .sec_clinic .row_box .timetable th.tname {
            padding: 10px 6px;
            font-size: 1.3rem; } }
        @media screen and (max-width: 767px) {
          .sec_clinic .row_box .timetable th.tname {
            font-size: 1.1rem; } }
      .sec_clinic .row_box .timetable th.week {
        padding: 10px 5px;
        font-size: 1.6rem;
        font-weight: normal; }
        @media screen and (max-width: 900px) {
          .sec_clinic .row_box .timetable th.week {
            padding: 10px 3px;
            font-size: 1.4rem; } }
        @media screen and (max-width: 767px) {
          .sec_clinic .row_box .timetable th.week {
            font-size: 1.2rem; } }
      .sec_clinic .row_box .timetable th:nth-child(7) {
        color: #0071BC; }
      .sec_clinic .row_box .timetable th:nth-child(8) {
        color: #000000; }
      .sec_clinic .row_box .timetable th:last-child {
        color: #000000;
        padding-right: 10px; }
    .sec_clinic .row_box .timetable td {
      padding: 10px 5px;
      vertical-align: middle;
      border-bottom: 1px solid rgba(61, 42, 35, 0.5);
      font-size: 1.6rem;
      line-height: 1; }
      @media screen and (max-width: 900px) {
        .sec_clinic .row_box .timetable td {
          padding: 10px 3px;
          font-size: 1.4rem; } }
      @media screen and (max-width: 767px) {
        .sec_clinic .row_box .timetable td {
          font-size: 1.2rem; } }
      .sec_clinic .row_box .timetable td:last-child {
        padding-right: 10px; }
      .sec_clinic .row_box .timetable td.timezone {
        padding: 10px 10px;
        font-size: 1.3rem;
        white-space: nowrap; }
        @media screen and (max-width: 900px) {
          .sec_clinic .row_box .timetable td.timezone {
            padding: 10px 5px;
            font-size: 1.1rem; } }
        @media screen and (max-width: 767px) {
          .sec_clinic .row_box .timetable td.timezone {
            font-size: 1.0rem; } }
      .sec_clinic .row_box .timetable td.time {
        padding: 10px 15px 10px 0px;
        font-size: 1.6rem;
        white-space: nowrap;
        text-align: right; }
        @media screen and (max-width: 900px) {
          .sec_clinic .row_box .timetable td.time {
            padding: 10px 10px 10px 0px;
            font-size: 1.4rem; } }
        @media screen and (max-width: 767px) {
          .sec_clinic .row_box .timetable td.time {
            font-size: 1.2rem; } }
  .sec_clinic .row_box .note {
    line-height: 1.4;
    margin-top: 10px;
    font-size: 1.6rem; }
    @media screen and (max-width: 900px) {
      .sec_clinic .row_box .note {
        font-size: 1.4rem; } }
    @media screen and (max-width: 767px) {
      .sec_clinic .row_box .note {
        font-size: 1.2rem; } }
    .sec_clinic .row_box .note p {
      line-height: 1.4;
      font-size: 1.6rem; }
      @media screen and (max-width: 900px) {
        .sec_clinic .row_box .note p {
          font-size: 1.4rem; } }
      @media screen and (max-width: 767px) {
        .sec_clinic .row_box .note p {
          font-size: 1.2rem; } }

.sec_floor {
  padding-bottom: 90px; }
  @media screen and (max-width: 767px) {
    .sec_floor {
      padding-bottom: 15px; } }
  .sec_floor .row_floor {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 860px;
    margin: 0 auto;
    row-gap: 50px; }
    @media screen and (max-width: 767px) {
      .sec_floor .row_floor {
        flex-direction: column;
        margin: 0 calc(calc(135 / var(--break) * 100vw) - 18px); } }
    .sec_floor .row_floor .col {
      width: calc((100% - 11.6%)/2); }
      @media screen and (max-width: 767px) {
        .sec_floor .row_floor .col {
          width: 100%; } }
      .sec_floor .row_floor .col dt {
        border: 1px solid var(--maincolor);
        font-size: 2.2rem;
        font-weight: 500;
        width: 44px;
        height: 44px;
        text-align: center;
        flex-shrink: 0;
        margin-right: 14px;
        line-height: 42px;
        margin-bottom: 20px; }
        @media screen and (max-width: 767px) {
          .sec_floor .row_floor .col dt {
            width: 31px;
            height: 31px;
            line-height: 31px;
            font-size: 1.5rem;
            margin-right: 10px; } }
  .sec_floor .row_gallery {
    padding: 70px 0 0px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px; }
    @media screen and (max-width: 767px) {
      .sec_floor .row_gallery {
        padding: 45px 0 0px;
        column-gap: 5px;
        row-gap: 5px; } }
    .sec_floor .row_gallery .col {
      width: calc((100% - 40px)/3); }
      @media screen and (max-width: 767px) {
        .sec_floor .row_gallery .col {
          width: calc((100% - 10px)/2); } }

.sec_info {
  background-color: var(--yellow);
  padding: 60px 0 50px; }
  @media screen and (max-width: 767px) {
    .sec_info {
      padding: 27px 0 23px; } }
  .sec_info .row_info {
    display: flex;
    justify-content: space-between;
    column-gap: 24px; }
    @media screen and (max-width: 767px) {
      .sec_info .row_info {
        flex-direction: column; } }
    .sec_info .row_info .col {
      flex: 1; }
      @media screen and (max-width: 767px) {
        .sec_info .row_info .col {
          width: 100%; } }
      .sec_info .row_info .col iframe {
        width: 100%;
        height: 360px; }
        @media screen and (max-width: 767px) {
          .sec_info .row_info .col iframe {
            height: 250px; } }
      .sec_info .row_info .col .copy {
        border-top: 1px solid rgba(61, 42, 35, 0.5);
        font-size: 3.7rem;
        text-align: center;
        padding-top: 30px;
        font-weight: 500; }
        @media screen and (max-width: 767px) {
          .sec_info .row_info .col .copy {
            padding: 15px 0 30px;
            font-size: 3rem; } }
      .sec_info .row_info .col dl {
        display: flex;
        border-top: 1px solid rgba(61, 42, 35, 0.5); }
        .sec_info .row_info .col dl dt {
          font-size: 1.6rem;
          width: 6em;
          flex-shrink: 0;
          line-height: 1.5;
          padding: 15px 0; }
          @media screen and (max-width: 767px) {
            .sec_info .row_info .col dl dt {
              font-size: 1.2rem;
              width: 7em;
              padding: 10px 0 10px 10px; } }
        .sec_info .row_info .col dl dd {
          padding: 15px 0;
          width: calc(100% - 6em);
          font-size: 1.6rem;
          line-height: 1.5; }
          @media screen and (max-width: 767px) {
            .sec_info .row_info .col dl dd {
              padding: 10px 0;
              width: calc(100% - 7em);
              font-size: 1.2rem; } }

.sec_submenu {
  background-color: var(--subcolor);
  padding: 25px 0; }
  @media screen and (max-width: 767px) {
    .sec_submenu {
      padding: 20px 0; } }
  .sec_submenu ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    row-gap: 10px; }
    @media screen and (max-width: 767px) {
      .sec_submenu ul {
        row-gap: 7px;
        flex-direction: column; } }
    .sec_submenu ul li {
      width: calc(100% / 2);
      background: url(../images/arrow.svg) no-repeat left top 7px;
      background-size: 12px 12px;
      padding-left: 20px;
      padding-right: 30px; }
      @media screen and (max-width: 767px) {
        .sec_submenu ul li {
          width: 100%;
          background: url(../images/arrow.svg) no-repeat left top 9px; } }
      .sec_submenu ul li a {
        line-height: 1;
        text-decoration: none;
        color: var(--maincolor);
        font-size: 1.7rem; }
        @media screen and (max-width: 767px) {
          .sec_submenu ul li a {
            font-size: 1.3rem; } }

/*ソーシャルメディアポリシー*/
.sec_social p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1em; }
  @media screen and (max-width: 767px) {
    .sec_social p {
      font-size: 1.4rem; } }
.sec_social a {
  text-decoration: underline;
  color: var(--maincolor); }
.sec_social h2 {
  color: #fff;
  background-color: var(--maincolor);
  padding: 15px 20px;
  line-height: 1;
  font-size: 2.0rem;
  letter-spacing: 0.05em;
  margin: 40px 0 25px; }
  @media screen and (max-width: 767px) {
    .sec_social h2 {
      margin: 20px 0 15px;
      padding: 10px 10px;
      line-height: 1.3;
      font-size: 1.6rem; } }
.sec_social .block > ol {
  list-style: none;
  margin-left: 2em; }
.sec_social .block > ul > li,
.sec_social .block > ol > li {
  counter-increment: num;
  padding: 5px 0; }
  @media screen and (max-width: 767px) {
    .sec_social .block > ul > li,
    .sec_social .block > ol > li {
      font-size: 1.4rem; } }
.sec_social .block > ol > li:before {
  content: "(" counter(num) ")";
  width: 2em;
  display: block;
  float: left;
  margin-left: -2em; }
.sec_social .block > ol > li > ol {
  padding-left: 2.5em;
  counter-reset: num;
  padding: 5px 0 5px 2em;
  list-style: none;
  margin-top: 10px; }
  .sec_social .block > ol > li > ol > li {
    counter-increment: num;
    padding: 5px 0; }
    @media screen and (max-width: 767px) {
      .sec_social .block > ol > li > ol > li {
        font-size: 1.4rem; } }
    .sec_social .block > ol > li > ol > li::before {
      display: none; }
    .sec_social .block > ol > li > ol > li > span.num {
      width: 2em;
      display: block;
      float: left;
      margin-left: -2em; }
.sec_social .block > ol > li > ul {
  padding: 5px 0 5px 2em;
  margin-top: 10px;
  list-style: none; }
  .sec_social .block > ol > li > ul > li {
    padding: 5px 0; }
    .sec_social .block > ol > li > ul > li:before {
      content: "・";
      width: 1em;
      display: block;
      float: left;
      margin-left: -1em; }

/*メディカルスクエアとは */
.page-about article {
  background: url(../images/bg_about.png) no-repeat top center;
  background-size: 100% auto;
  min-height: 1000px; }
  @media screen and (max-width: 767px) {
    .page-about article {
      min-height: auto; } }
.page-about .sec_about p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 80px; }
  @media screen and (max-width: 767px) {
    .page-about .sec_about p {
      font-size: 1.4rem;
      margin-bottom: 40px; } }
.page-about .about_ol {
  counter-reset: li;
  list-style: none;
  display: flex;
  justify-content: space-between;
  column-gap: 12px;
  position: relative; }
  @media screen and (max-width: 767px) {
    .page-about .about_ol {
      flex-wrap: wrap;
      width: 100%;
      row-gap: 10px;
      column-gap: 10px; } }
  .page-about .about_ol li {
    position: relative;
    width: calc((100% - 36px) / 4);
    background-color: var(--maincolor);
    aspect-ratio: 23/30;
    border-radius: 10px;
    text-align: center;
    padding: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media screen and (max-width: 767px) {
      .page-about .about_ol li {
        width: calc((100% - 10px) / 2);
        aspect-ratio: inherit; } }
    .page-about .about_ol li::before {
      counter-increment: li;
      content: counter(li);
      font-weight: 500;
      font-size: 4.1rem;
      letter-spacing: 0;
      color: #fff;
      margin-bottom: 10px; }
      @media screen and (max-width: 1200px) {
        .page-about .about_ol li::before {
          font-size: clamp(4rem, 5.0925925926vw + 0.0888888889rem, 6.2rem); } }
      @media screen and (max-width: 767px) {
        .page-about .about_ol li::before {
          font-size: 3rem; } }
    .page-about .about_ol li::after {
      content: "";
      width: 100%;
      height: 125px;
      background-position: bottom center;
      background-repeat: no-repeat;
      display: block;
      margin: 0 auto; }
      @media screen and (max-width: 767px) {
        .page-about .about_ol li::after {
          height: 100px; } }
    .page-about .about_ol li:first-child::after {
      background-image: url(../images/img_about01.svg);
      background-position: center bottom 27px; }
      @media screen and (max-width: 767px) {
        .page-about .about_ol li:first-child::after {
          background-size: auto 50px; } }
    .page-about .about_ol li:nth-child(2)::after {
      background-image: url(../images/img_about02.svg);
      background-position: center bottom 27px; }
      @media screen and (max-width: 767px) {
        .page-about .about_ol li:nth-child(2)::after {
          background-size: auto 50px; } }
    .page-about .about_ol li:nth-child(3)::after {
      background-image: url(../images/img_about03.svg); }
      @media screen and (max-width: 767px) {
        .page-about .about_ol li:nth-child(3)::after {
          background-size: auto 100px; } }
    .page-about .about_ol li:nth-child(4)::after {
      background-image: url(../images/img_about04.svg); }
      @media screen and (max-width: 767px) {
        .page-about .about_ol li:nth-child(4)::after {
          background-size: auto 100px; } }
.page-about .about_ttl {
  font-size: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  color: var(--green);
  font-weight: bold; }
  @media screen and (max-width: 1200px) {
    .page-about .about_ttl {
      font-size: clamp(2rem, 1.8518518519vw + 0.5777777778rem, 2.8rem); } }
  @media screen and (max-width: 767px) {
    .page-about .about_ttl {
      font-size: 2.0rem; } }

:root {
  --maincolor: #3D2A23;
  --subcolor: #E7E3DE;
  --yellow: #F8F9D9;
  --green: #D0DA00;
  --bggreen: #F8F9D9;
  --orange: #DD700A;
  --break: 1200; }
  @media screen and (max-width: 767px) {
    :root {
      --break: 750; } }

.sec_news {
  padding-bottom: 15px; }
  @media screen and (max-width: 767px) {
    .sec_news {
      padding-bottom: 0; } }
  .sec_news .more {
    margin-top: 15px;
    text-align: right; }
    .sec_news .more a {
      text-decoration: none;
      font-size: 1.6rem;
      color: var(--maincolor); }
      @media screen and (max-width: 767px) {
        .sec_news .more a {
          font-size: 1.2rem; } }

.newslist {
  margin-left: 0px; }
  @media screen and (max-width: 767px) {
    .newslist.newsbox {
      padding: 0; } }
  .newslist > ul {
    list-style: none;
    padding: 0; }
    .newslist > ul > li {
      border-bottom: 1px solid rgba(61, 42, 35, 0.7);
      padding: 15px 0; }
      @media screen and (max-width: 767px) {
        .newslist > ul > li {
          padding: 8px 0; } }
      .newslist > ul > li dl {
        padding: 0px 0;
        display: flex; }
        @media screen and (max-width: 767px) {
          .newslist > ul > li dl {
            display: block; } }
        .newslist > ul > li dl dt,
        .newslist > ul > li dl dd {
          padding: 0px 0 0px;
          font-weight: normal; }
        .newslist > ul > li dl dt {
          vertical-align: top;
          overflow: hidden;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          font-size: 1.6rem;
          font-weight: normal;
          width: 10em;
          position: relative;
          line-height: 1.5; }
          @media screen and (max-width: 767px) {
            .newslist > ul > li dl dt {
              font-size: 1.1rem;
              padding-top: 0;
              width: 100%;
              justify-content: flex-start; } }
          .newslist > ul > li dl dt .new-txt {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-40%);
            border: 1px solid #c20000;
            color: #c20000;
            font-weight: bold;
            font-size: 1.1rem;
            display: block;
            width: 34px;
            line-height: 1;
            padding: 3px 3px;
            margin: 0 0px; }
            @media screen and (max-width: 767px) {
              .newslist > ul > li dl dt .new-txt {
                margin-left: 10px;
                position: relative;
                right: auto;
                top: auto;
                transform: translateY(0); } }
        .newslist > ul > li dl dd {
          width: calc(100% - 10em);
          padding-left: 1em;
          vertical-align: middle;
          font-size: 1.6rem;
          font-weight: 500;
          padding-top: 0; }
          @media screen and (max-width: 767px) {
            .newslist > ul > li dl dd {
              width: 100%; } }
          .newslist > ul > li dl dd .title {
            text-align: left;
            display: block;
            font-size: 1.7rem;
            line-height: 1.5;
            text-decoration: none;
            color: #595757;
            font-weight: 500; }
            .home .newslist > ul > li dl dd .title {
              font-size: 1.6rem; }
            @media screen and (max-width: 767px) {
              .newslist > ul > li dl dd .title {
                font-size: 1.3rem !important; } }
            .newslist > ul > li dl dd .title:hover {
              text-decoration: underline; }
      .newslist > ul > li .metaarea {
        font-weight: 400;
        margin: 4px 0 0;
        text-align: left; }
        @media screen and (max-width: 767px) {
          .newslist > ul > li .metaarea {
            display: flex;
            align-items: center;
            font-size: 10px; } }
      .newslist > ul > li .cat {
        text-decoration: none;
        display: inline-block;
        margin-right: 10px;
        font-size: 14px; }
        @media screen and (max-width: 767px) {
          .newslist > ul > li .cat {
            font-size: 10px;
            min-width: 50%;
            padding: 0 3px; } }
        .newslist > ul > li .cat:hover {
          opacity: .8; }
  .newslist .readmore a:hover {
    opacity: .8; }

/*newspage*/
.newsframe {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .newsframe {
      display: block; } }
  .newsframe .main {
    width: calc((100% - 180px) - 4%); }
    @media screen and (max-width: 767px) {
      .newsframe .main {
        width: 100%; } }
  .newsframe .sidebar {
    width: 180px; }
    @media screen and (max-width: 767px) {
      .newsframe .sidebar {
        width: 100%; } }

/*sidebar*/
.widget_categories .widget__title {
  margin-top: 0;
  background-color: var(--maincolor);
  text-align: center;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  font-size: 1.6rem;
  padding: 10px 0;
  letter-spacing: normal;
  margin-bottom: 0; }
  @media screen and (max-width: 767px) {
    .widget_categories .widget__title {
      margin-bottom: 25px; } }
.widget_categories ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 40px; }
  .widget_categories ul li {
    border-bottom: 1px solid rgba(61, 42, 35, 0.5); }
    .widget_categories ul li a {
      padding: 15px 0 15px 35px;
      display: block;
      line-height: 1.3;
      position: relative;
      font-size: 1.6rem;
      text-decoration: none;
      color: #000;
      font-weight: normal;
      display: flex;
      align-items: center; }
      @media screen and (max-width: 767px) {
        .widget_categories ul li a {
          font-size: 1.4rem; } }
      .widget_categories ul li a::before {
        content: "▶︎";
        font-size: 1.3rem;
        margin-right: 5px; }
    .widget_categories ul li ul li.current {
      background-color: #D9E9F5; }
.widget_categories.probar ul li {
  border-color: #007AAD !important; }
  .widget_categories.probar ul li a {
    padding: 18px 0;
    font-size: 14px; }
    .widget_categories.probar ul li a::after {
      display: none; }
.widget_categories.probar .inner {
  background-color: #99CADE;
  padding: 15px 12px; }
  @media screen and (max-width: 767px) {
    .widget_categories.probar .inner {
      padding: 0; } }

/*404*/
.area_notfound {
  min-height: 300px;
  padding: 100px 0; }
  .area_notfound .txt_notfound {
    text-align: center;
    font-size: 2rem; }

:root {
  --maincolor: #3D2A23;
  --subcolor: #E7E3DE;
  --yellow: #F8F9D9;
  --green: #D0DA00;
  --bggreen: #F8F9D9;
  --orange: #DD700A;
  --break: 1200; }
  @media screen and (max-width: 767px) {
    :root {
      --break: 750; } }

/*==================================================
* single
*================================================*/
/**
* .single
*/
.single-sec {
  padding: 65px 0 !important; }
  @media screen and (max-width: 767px) {
    .single-sec {
      padding: 35px 0 !important; } }
.single article .single-head {
  padding: 0 0px;
  margin-bottom: 15px; }
  @media screen and (max-width: 767px) {
    .single article .single-head {
      margin-bottom: 10px; } }
  .single article .single-head .meta {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    margin: 0 0 10px; }
    .single article .single-head .meta .new-txt {
      border: 1px solid #c20000;
      color: #c20000;
      font-size: 11px;
      display: block;
      padding: 2px 3px;
      font-weight: bold;
      line-height: 1;
      margin-left: 10px; }
  .single article .single-head .singletitle {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--maincolor);
    position: relative; }
    @media screen and (max-width: 767px) {
      .single article .single-head .singletitle {
        font-size: 17px; } }
  .single article .single-head .cat {
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
    display: inline-block;
    margin-right: 20px;
    color: var(--maincolor); }
    @media screen and (max-width: 767px) {
      .single article .single-head .cat {
        vertical-align: top;
        display: inline-block;
        margin-right: 10px;
        font-size: 13px;
        vertical-align: middle; } }
  .single article .single-head .date {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center; }
.single article .contfr {
  padding: 20px 0 0; }
.single article .cont {
  margin: 0 0px 40px;
  line-height: 1.8;
  font-size: 15px; }
  .single article .cont ul,
  .single article .cont ol {
    margin-left: 1.5em; }
  .single article .cont h3 {
    font-size: 1.6rem;
    color: #000;
    padding: 0px 0px 10px 0px;
    line-height: 1.5;
    margin-bottom: 35px;
    font-weight: bold;
    position: relative;
    margin-top: 35px;
    border-bottom: 1px solid var(--maincolor); }
    @media screen and (max-width: 767px) {
      .single article .cont h3 {
        font-size: 14px;
        padding-bottom: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
        margin-top: 40px; } }
  .single article .cont h2 {
    font-size: 2.0rem;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 700;
    vertical-align: middle;
    position: relative;
    margin-top: 30px;
    position: relative; }
    @media screen and (max-width: 767px) {
      .single article .cont h2 {
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: 20px;
        padding: 6px 10px;
        font-weight: bold;
        line-height: 1.3; } }
  .single article .cont h4 {
    font-size: 1.7rem;
    font-weight: normal;
    margin: 20px 0;
    line-height: 1.3; }
    @media screen and (max-width: 767px) {
      .single article .cont h4 {
        font-size: 14px;
        line-height: 1.3; } }
  .single article .cont h5 {
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.3; }
    @media screen and (max-width: 767px) {
      .single article .cont h5 {
        font-size: 13px;
        line-height: 1.3; } }
  .single article .cont h6 {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3; }
    @media screen and (max-width: 767px) {
      .single article .cont h6 {
        font-size: 13px;
        line-height: 1.3; } }
  .single article .cont p {
    margin-bottom: 1em;
    line-height: 2;
    font-size: 1.5rem; }
    @media screen and (max-width: 767px) {
      .single article .cont p {
        line-height: 1.5;
        font-size: 14px;
        margin-bottom: 0; } }
  @media screen and (max-width: 767px) {
    .single article .cont img {
      height: auto !important; } }
  .single article .cont table td {
    line-height: 1.8;
    font-size: 16px; }
    @media screen and (max-width: 767px) {
      .single article .cont table td {
        line-height: 1.5;
        font-size: 14px; } }
  @media (max-width: 600px) {
    .single article .cont .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
      margin-bottom: 30px; }
    .single article .cont .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
      padding-left: 0;
      padding-right: 0; } }
.single .linkarea {
  display: flex;
  margin: 100px 0px 0px 0px;
  padding: 0;
  width: 100%;
  position: relative;
  justify-content: center; }
  @media screen and (max-width: 767px) {
    .single .linkarea {
      margin: 56px 0px 0px;
      justify-content: space-between; } }
  .single .linkarea > div {
    margin: 0 10px;
    width: 150px; }
    @media screen and (max-width: 767px) {
      .single .linkarea > div {
        margin: 0;
        width: 30%; } }
  .single .linkarea a {
    width: 100%;
    height: 50px;
    text-align: center;
    border: 1px solid var(--maincolor);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--maincolor);
    font-weight: 500;
    font-size: 1.5rem; }
    @media screen and (max-width: 767px) {
      .single .linkarea a {
        font-size: 1.3rem;
        height: 40px; } }
    .single .linkarea a:hover {
      background-color: var(--maincolor);
      color: #fff; }
    .single .linkarea a i {
      margin: 0 5px 0 0; }
      @media screen and (max-width: 767px) {
        .single .linkarea a i {
          margin: 0 2px 0 0; } }
    .single .linkarea a span + i {
      margin: 0 0 0 5px; }
      @media screen and (max-width: 767px) {
        .single .linkarea a span + i {
          margin: 0 0 0 2px; } }
  .single .linkarea .link-prev a::before {
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    background-image: url(../images/arrow-b.svg);
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    transform: rotate(180deg); }
    @media screen and (max-width: 767px) {
      .single .linkarea .link-prev a::before {
        margin-right: 5px; } }
  .single .linkarea .link-prev a:hover::before {
    background-image: url(../images/arrow-w.svg); }
  .single .linkarea .link-next a::after {
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    background-image: url(../images/arrow-b.svg);
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    margin-left: 10px; }
    @media screen and (max-width: 767px) {
      .single .linkarea .link-next a::after {
        margin-left: 5px; } }
  .single .linkarea .link-next a:hover::after {
    background-image: url(../images/arrow-w.svg); }

.single .resentarea {
  margin-top: 80px; }
  .single .resentarea .sidebar-widget__title {
    border-top: 1px solid var(--maincolor);
    margin-bottom: 45px !important;
    text-align: left;
    color: #000; }
  @media screen and (max-width: 767px) {
    .single .resentarea {
      margin-top: 50px; } }

@media screen and (max-width: 767px) {
  .single .single-post > .snsarea {
    margin: 26px 0px 26px 0px; }

  .single .single-post > .snsarea .sns_btn {
    text-align: center;
    margin: 10px 0 40px; }

  .single .single-post > .snsarea .sns_btn li a {
    width: 100%;
    height: 36px;
    font-size: 12px;
    line-height: 36px;
    font-weight: normal;
    border-radius: 3px; }

  .single .single-post > .snsarea .sns_btn li.ogn_hatebu a {
    font-weight: bold;
    background-color: #3372BB;
    box-shadow: 0 2px 0 0 #245083; }

  .single .single-post > .snsarea .sns_btn li.ogn_tweet a {
    background-color: #1CADEB;
    box-shadow: 0 2px 0 0 #1479A4;
    font-weight: bold; }

  .single .single-post > .snsarea .sns_btn li.ogn_facebook a {
    font-weight: bold;
    background-color: #246CB7;
    box-shadow: 0 2px 0 0 #194B80; }

  .single .single-post > .snsarea .sns_btn li a i:before {
    font-size: 14px !important;
    margin-right: 5px !important; }

  .single .single-post > .snsarea .sns_btn li.ogn_hatebu a i:before {
    content: "";
    display: inline-block;
    background: url(../images/icon-hatebu.png) left center no-repeat;
    background-size: auto 12px;
    width: 16px;
    height: 12px;
    font-style: normal;
    vertical-align: middle;
    margin-right: 5px; }

  .entries .resentarea .fr.between {
    display: -webkit-flex !important;
    display: -webkit-flex !important;
    display: flex !important; } }
/*製品*/
.single-products section h3 {
  font-size: 15px;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
  position: relative;
  margin: 40px 0 30px; }
  @media screen and (max-width: 767px) {
    .single-products section h3 {
      font-size: 17px;
      margin: 30px 0 20px; } }
  .single-products section h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100px;
    background-color: var(--maincolor); }
.single-products section table {
  border-color: transparent;
  border-style: none;
  border-collapse: collapse;
  /*border: 1px solid #ccc;
  /*border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  */
  border-collapse: collapse; }
  .single-products section table thead td {
    /*background-color: #F1F6FC;*/ }
  .single-products section table thead th {
    /*					border-right: 1px solid #ccc;
    					border-bottom: 1px solid #ccc;
    */ }
  .single-products section table th {
    /*				border: 1px solid #ccc;*/
    /*
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    */ }
  .single-products section table td {
    /*				border: 1px solid #ccc;*/
    /*
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    */ }
.single-products section .responsovetable {
  overflow: auto;
  margin-right: -24px; }
  .single-products section .responsovetable table {
    /*width: 1120px !important;*/ }
.single-products section p {
  font-size: 15px;
  line-height: 1.8; }
  @media screen and (max-width: 767px) {
    .single-products section p {
      font-size: 14px; } }
.single-products .first-area {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 50% 50%;
  grid-template-rows: min-content min-content;
  gap: 0px 0px;
  grid-template-areas: "sliderarea titlearea" "sliderarea feature";
  margin: 70px 0 0 0; }
  @media screen and (max-width: 767px) {
    .single-products .first-area {
      display: block;
      margin: 30px 0 0 0; } }
@media only screen and (max-width: 767px) {
  .single-products {
    display: block; } }
.single-products main section {
  padding: 0; }
.single-products .btns a {
  text-decoration: none;
  text-align: center;
  display: block;
  font-size: 13px;
  height: 47px;
  line-height: 45px;
  border-radius: 0;
  color: #F08609;
  border: 1px solid #F08609;
  background-color: #fff;
  margin: 0px 0;
  width: calc(50% - 9px); }
  @media screen and (max-width: 767px) {
    .single-products .btns a {
      width: calc(50% - 3px);
      text-align: center;
      padding: 0;
      margin: 0;
      font-size: 10px;
      height: 35px;
      line-height: 33px; } }
  .single-products .btns a span {
    display: inline-block;
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left center;
    line-height: 13px; }
  .single-products .btns a.dlbtn span {
    background-image: url(../images/icon-dl.svg);
    background-position: 3px center; }
    @media screen and (max-width: 767px) {
      .single-products .btns a.dlbtn span {
        background-position: left center;
        padding-left: 20px; } }
  .single-products .btns a.contactbtn span {
    background-image: url(../images/icon-mail-o.svg); }
.single-products .titlearea {
  grid-area: titlearea; }
  @media only screen and (max-width: 767px) {
    .single-products .titlearea {
      width: 100%;
      padding-left: 0; } }
  .single-products .titlearea .btns {
    border-top: 1px solid #CCCCCC;
    padding: 30px 0 0px;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 767px) {
      .single-products .titlearea .btns {
        padding: 20px 0 20px;
        width: 100%; } }
  .single-products .titlearea .txt {
    border-top: 4px solid var(--maincolor);
    width: 535px;
    margin: 0 0 0 auto;
    padding: 30px 0 0 0; }
    @media only screen and (max-width: 767px) {
      .single-products .titlearea .txt {
        padding: 23px 0 0 0;
        width: auto; } }
    .single-products .titlearea .txt .title {
      margin: 0 0 30px;
      font-size: 22px;
      line-height: 1.5; }
      @media screen and (max-width: 767px) {
        .single-products .titlearea .txt .title {
          margin: 0 0 15px;
          font-size: 16px; } }
    .single-products .titlearea .txt .meta {
      font-size: 14px;
      line-height: 1.5;
      margin: 0 0 30px; }
      @media screen and (max-width: 767px) {
        .single-products .titlearea .txt .meta {
          font-size: 10px;
          margin: 0 0 25px; } }
      .single-products .titlearea .txt .meta > div {
        margin: 0 0 8px; }
        @media screen and (max-width: 767px) {
          .single-products .titlearea .txt .meta > div {
            margin-bottom: 2px; } }
  .single-products .titlearea .makerlink {
    padding: 0 0 30px 0; }
    @media screen and (max-width: 767px) {
      .single-products .titlearea .makerlink {
        padding: 0 0 25px 0; } }
    .single-products .titlearea .makerlink a {
      text-decoration: none;
      color: var(--maincolor);
      padding-left: 25px;
      background-repeat: no-repeat;
      background-position: left center;
      font-size: 13px;
      background-image: url(../images/icon-window.svg); }
      .single-products .titlearea .makerlink a:hover {
        opacity: .8; }
.single-products .feature {
  grid-area: feature;
  margin: 0 0 0 auto;
  width: 535px; }
  @media only screen and (max-width: 767px) {
    .single-products .feature {
      width: auto;
      margin: 0; } }
.single-products .sliderarea {
  grid-area: sliderarea;
  margin: 0; }
  @media only screen and (max-width: 767px) {
    .single-products .sliderarea {
      width: 100%;
      text-align: center;
      margin: 0; } }
  .single-products .sliderarea .mainimg {
    width: 535px;
    margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      .single-products .sliderarea .mainimg {
        margin-bottom: 0;
        width: auto; } }
    .single-products .sliderarea .mainimg .slick-slide {
      outline: none; }
      .single-products .sliderarea .mainimg .slick-slide span {
        display: block;
        padding-top: 75%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center; }
  .single-products .sliderarea .thumbnail {
    width: 535px; }
    @media screen and (max-width: 767px) {
      .single-products .sliderarea .thumbnail {
        width: auto; } }
    .single-products .sliderarea .thumbnail .slick-list {
      position: relative;
      display: block;
      overflow: hidden; }
    .single-products .sliderarea .thumbnail .slick-list:focus {
      outline: none; }
    .single-products .sliderarea .thumbnail .slick-list.dragging {
      cursor: pointer;
      cursor: hand; }
    .single-products .sliderarea .thumbnail .slick-slider .slick-track,
    .single-products .sliderarea .thumbnail .slick-slider .slick-list {
      transform: translate3d(0, 0, 0) !important;
      width: auto !important; }
    .single-products .sliderarea .thumbnail .slick-loading .slick-track {
      visibility: hidden; }
    .single-products .sliderarea .thumbnail .slick-track {
      margin: 0 -6px;
      padding: 0;
      display: flex;
      flex-wrap: wrap; }
      @media screen and (max-width: 767px) {
        .single-products .sliderarea .thumbnail .slick-track {
          margin: 0 -4px; } }
      .single-products .sliderarea .thumbnail .slick-track .slick-slide {
        outline: none;
        width: calc((100% - 48px) /4) !important;
        margin: 12px 6px 0;
        float: none; }
        @media screen and (max-width: 767px) {
          .single-products .sliderarea .thumbnail .slick-track .slick-slide {
            width: calc((100% - 32px) /4) !important;
            margin: 8px 4px 0; } }
        .single-products .sliderarea .thumbnail .slick-track .slick-slide span {
          display: block;
          padding-top: 75%;
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center; }
        .single-products .sliderarea .thumbnail .slick-track .slick-slide:hover {
          opacity: .6; }
.single-products .sec-spec {
  padding: 0; }
.single-products .sec-faq ul {
  list-style: none;
  padding: 0; }
.single-products .sec-faq dl dt {
  background-color: #99CADE;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 16px; }
  @media screen and (max-width: 767px) {
    .single-products .sec-faq dl dt {
      margin: 0 0 16px;
      line-height: 1.3;
      font-size: 13px;
      padding: 0;
      align-items: stretch; } }
  .single-products .sec-faq dl dt h4 {
    margin: 0;
    padding: 10px 20px 10px 0;
    display: flex;
    align-items: center; }
    @media screen and (max-width: 767px) {
      .single-products .sec-faq dl dt h4 {
        padding: 5px 10px 5px 0; } }
  .single-products .sec-faq dl dt::before {
    content: "Q";
    flex-shrink: 0;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--maincolor);
    margin-right: 20px; }
    @media screen and (max-width: 767px) {
      .single-products .sec-faq dl dt::before {
        margin-right: 7px;
        width: 40px;
        height: auto;
        min-height: 40px;
        font-size: 16px; } }
.single-products .sec-faq dl dd {
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  margin: 0 0 26px; }
  @media screen and (max-width: 767px) {
    .single-products .sec-faq dl dd {
      font-size: 13px; } }
  .single-products .sec-faq dl dd::before {
    content: "A";
    flex-shrink: 0;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #2CB5A9;
    margin-right: 20px; }
    @media screen and (max-width: 767px) {
      .single-products .sec-faq dl dd::before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px; } }
  .single-products .sec-faq dl dd p {
    margin: 0;
    padding: 3px 0 0 0;
    line-height: 1.8; }
.single-products .btnarea {
  margin: 80px 0 0;
  background-color: rgba(240, 132, 9, 0.07);
  padding: 27px 0; }
  @media only screen and (max-width: 767px) {
    .single-products .btnarea {
      margin: 50px -24px 0;
      padding: 33px 24px; } }
  .single-products .btnarea .btns {
    display: flex;
    justify-content: center; }
    @media screen and (max-width: 767px) {
      .single-products .btnarea .btns {
        width: 100%; } }
    .single-products .btnarea .btns a {
      margin: 0 9px;
      max-width: 258px; }
      @media screen and (max-width: 767px) {
        .single-products .btnarea .btns a {
          margin: 0 3px; } }

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; }

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%; }
