@charset "UTF-8";
/*
    Template: swell
    Theme Name: sw_andmake
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/************************************
** 一時的に非表示
************************************/

#trainer {
    display: none;
}

/************************************
** root
************************************/
:root {
  --main-color: #44c4d5;
  --pilatesmusk-color: #b3b3b3;
  --naturafit-color: #00a199;
  --andmake-color: #44c4d5;
}

/************************************
** Base / Layout
************************************/
.top #content {
  padding-top: 0;
}
.l-content {
  margin: 0 auto;
  padding-top: 0;
}
.fw {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.wrap {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 480px) {
  .wrap {
    width: auto;
    padding: 30px 15px;
  }
}

.pc {
  display: block;
}
.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/************************************
** Components
************************************/

/* Heading */
.heading {
  text-align: center;
  margin-bottom: 60px;
  h2 {
    position: relative;
    color: #444;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.15em;
    &::before {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 5px;
      background-color: var(--main-color);
      border-radius: 2px;
    }
  }
  span.s1 {
    font-size: 32px;
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 18px;
    }
    span.s1 {
      font-size: 24px;
    }
  }
}

/* Heading 03*/
.heading03 {
  text-align: center;
  margin-bottom: 30px;
  .sttl {
    font-size: 18px;
  }
  .ttl {
    font-size: 48px;
    color: var(--main-color);
    letter-spacing: 0.05em;
  }
  @media (max-width: 768px) {
    .ttl {
      font-size: 36px;
    }
  }
}

/* Link */
.link a {
  font-size: 20px;
  color: #222;
  transition: opacity 0.5s ease;
  i {
    padding-left: 1em;
  }
  &:hover {
    opacity: 0.7;
  }
}

/* Link02 */
.link02 a {
  display: block;
  text-align: center;
  background: #fff;
  padding: 20px 0;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  width: 400px;
  font-size: 20px;
  color: #000;
  position: relative;
  transition: 0.7s ease;
  &::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color);
    transform: rotate(135deg);
    position: absolute;
    right: 25px;
    top: 45%;
    transition: transform 0.7s ease;
  }
  &:hover {
    background: var(--main-color);
    color: #fff;
    &::after {
      border-top: 2px solid #fff;
      border-left: 2px solid #fff;
    }
  }
}

/************************************
** Page-KV
************************************/
.page-kv {
  padding-bottom: 60px;
  .page-kv__item {
    position: relative;
    .ttl {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 400px;
      text-align: center;
      color: var(--main-color);
      background: #fff;
      padding: 30px;
      border-left: 5px solid var(--main-color);
      border-right: 5px solid var(--main-color);
    }
  }
  @media screen and (max-width: 767px) {
    padding-bottom: 30px;
    .page-kv__item {
      .ttl {
        display: block;
        width: calc(100% - 30px);
        margin: 0 auto;
      }
    }
  }
}

/************************************
** sp menu
************************************/
@media screen and (max-width: 480px) {
  .p-spMenu__inner::before {
    background: var(--main-color);
  }
  .p-spMenu__closeBtn {
    .c-iconBtn {
      color: #fff;
    }
  }
  .p-spMenu__body {
    padding: 30px 20px;
    .c-widget__title.-spmenu {
      display: none;
    }
    .p-spMenu__nav {
      a {
        padding: 1.25em;
        color: #fff;
        font-size: 16px;
        &:before {
          left: 90%;
        }
      }
    }
    .p-spMenu__nav li:nth-child(3) {
      .sub-menu {
        padding-left: 1.5em;
      }
    }
    .menu-item-292 > a:before {
      display: none;
    }
  }
}

/************************************
** contact-wrap
************************************/
.contact-wrap {
  margin-bottom: 60px;
  .rw {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  @media (max-width: 767px) {
    .rw {
      display: block;
    }
    .link02 a {
      width: auto;
      margin-bottom: 20px;
    }
  }
}

/************************************
** fb
************************************/
.w-beforeFooter {
  margin: 0em auto;
  overflow: hidden;
  background: #faf7f2;
}
.fb {
  background: #f6f2ea;
  .wrap {
    padding: 60px 0;
  }
  .heading {
    margin-bottom: 60px;
  }
  .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    .item-01 {
      .iw {
        margin-bottom: 10px;
        width: 260px;
        img {
          width: 100%;
        }
      }
    }
    .item-02 {
      grid-row: span 2 / span 2;
      grid-column-start: 1;
      grid-row-start: 2;
      .box p {
        font-size: 20px;
        line-height: 1.8em;
      }
    }
    .item-03 {
      grid-row: span 3 / span 3;
      grid-column-start: 2;
      grid-row-start: 1;
      .gmap {
        position: relative;
        width: 100%;
        padding-top: 44.25%;
        /* 16:9のアスペクト比 56.25% */
        height: 0;
      }
      .gmap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .fb {
    .wrap {
      padding: 60px 15px;
    }
    .items {
      display: flex;
      flex-direction: column;
      .item-01 {
        order: 1;

        .iw {
          width: 100%;
          text-align: center;
          margin-bottom: 30px;

          img {
            width: 50%;
          }
        }
      }
      .item-02 {
        order: 3;
        .box p {
          font-size: 16px;
        }
      }
      .item-03 {
        order: 2;
        margin-bottom: 1em;
        .gmap {
          position: relative;
          width: 100%;
          padding-top: 50.25%;
          /* 16:9のアスペクト比 */
          height: 0px;
        }
        .gmap iframe {
          height: 100%;
        }
      }
    }
  }
}

/************************************
** 固定ページ
************************************/
@media (min-width: 600px) {
  .l-topTitleArea {
    min-height: 400px;
    padding: 1em 0;
  }
  .c-pageTitle {
    display: none;
  }
}

/************************************
** page contact
************************************/
.contact-box {
  width: 900px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.inquiry-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  line-height: 1.8;
  margin-bottom: 20px;
}
.inquiry-table th {
  background-color: #967c62;
  color: #fff;
  border: 1px solid #e6e6e6;
  padding: 20px;
  font-size: 16px;
}
span.haveto {
  padding: 10px;
  color: #ffeb3b;
}
.inquiry-table td {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  padding: 20px;
}
.inquiry-table td .caption {
  line-height: 1.2;
  font-size: 14px;
  margin-top: 10px;
}
.submit-box {
  text-align: center;
  border: 1px solid #e6e6e6;
  padding: 30px 0;
}
.box-inner-1 {
  padding: 30px 0;
}
.submit {
  width: 50%;
  margin: 0 auto;
  margin-top: 1em;
  margin-bottom: 1em;
}
input[type="text"],
input[type="email"] {
  width: 100%;
  max-width: 100%;
}
input[type="submit"] {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  background-color: #967c62;
  border: 1px solid #967c62;
  color: #fff;
  transition: 0.5s all;
}
input[type="submit"]:hover {
  background-color: #fff;
  border: 1px solid #444;
  color: #444;
}

@media screen and (max-width: 767px) {
  .contact-box {
    width: auto;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .contact-box-tel {
    font-size: 1.5em;
  }
  .inquiry-table tr {
    display: flex;
    flex-wrap: wrap;
  }

  .inquiry-table th,
  .inquiry-table td {
    padding: 10px;
    width: 100%;
    max-width: 100%;
  }
  textarea {
    width: 100%;
  }
  .submit {
    width: 100%;
  }
  .submit-box {
    padding: 30px 20px;
    text-align: left;
  }
}

/************************************
** ffw
************************************/
.p-fixBtnWrap {
  bottom: 110px;
}
@media screen and (max-width: 767px) {
  .p-fixBtnWrap {
    bottom: 100px;
  }
}
.ffw {
  position: fixed;
  bottom: 2%;
  right: 10px;
  z-index: 100;
  .items {
    display: flex;
    gap: 20px;
    .item {
      a {
        display: block;
        width: 300px;
        background: var(--main-color);
        color: #ffffff;
        padding: 20px;
        text-align: center;
        border-radius: 10px 10px;
        border: 2px solid #fff;
        transition: all 0.7s ease;
      }
      &:nth-child(1) a {
        &:hover {
          border: 2px solid var(--main-color);
          background: #fff;
          color: var(--main-color);
        }
      }
      &:nth-child(2) a {
        background: #fff;
        color: #222;
        border: 2px solid #c2a044;
        &:hover {
          background: #c2a044;
          color: #fff;
        }
      }
    }
  }
}
@media screen and (max-width: 767px) {
  .ffw {
    left: 0;
    right: 0;
    bottom: 1%;
    .items {
      display: flex;
      justify-content: center;
      gap: 10px;
      .item a {
        width: calc(50vw - 10px);
      }
    }
  }
}
