@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Outfit:wght@500&display=swap');

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

:root {
  --con-width: 1000px;
  --color-1: #6e9861;
  --color-2: #e9b63b;
  --color-3: #efe1b7;
  --border: #c7c7a7;
  --back: #f2f2e9;
  --gray_back: #f1f1f1;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  min-height: 0vw;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1;
  background: var(--back);
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

img {
  display: block;
  border-style: none;
  font-size: 0;
  line-height: 0;
}

a {
  background: transparent;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

.w100 {
  width: 100%;
}

.bold {
  font-weight: bold;
}

.fade {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.fade_on {
  opacity: 1;
}

.movexl {
  opacity: 0;
  translate: -20px 0;
  transition: all 0.4s ease-out;
}
.movexr {
  opacity: 0;
  translate: 20px 0;
  transition: all 0.4s ease-out;
}
.movexl_on,
.movexr_on {
  opacity: 1;
  translate: 0 0;
}

.movey {
  opacity: 0;
  translate: 0 20px;
  transition: all 0.4s ease-out;
}
.movey_on {
  opacity: 1;
  translate: 0 0;
}

.small {
  scale: 1.5;
  opacity: 0;
  transition: all 0.4s ease-out 0.4s;
}
.small_on {
  scale: 1;
  opacity: 1;
}

.move {
  opacity: 0;
}
.move_on {
  opacity: 1;
}

@keyframes m_l {
  0% {
    opacity: 0;
    translate: -20px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes m_r {
  0% {
    opacity: 0;
    translate: 20px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

/* ===================================
ヘッダー
------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
h1 {
width: min(48.484%, 220px);
}

@media screen and (min-width:1080px) {
  header {
    padding: 30px 0 20px 20px;
  }
  .pc_nav {
    ul {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      font-size: 16px;
    }
    a {
      position: relative;
      display: block;
      margin-left: 2em;
      color: #000;
      transition: all 0.3s linear;
    }
    .r_btn {
      padding: 1.5em 2em 1.5em 4.5em;
      background: var(--color-2) url(../img/mail.svg) center left 2em no-repeat;
      background-size: 28px auto;
      border-radius: 100vh 0 0 100vh;
      color: #fff;
      &:hover {
        background: var(--color-1) url(../img/mail.svg) center left 2em no-repeat;
        background-size: 28px auto;
      }
    }
  }
  #navBtn,
  #nav_area {
    display: none;
  }
}
@media screen and (max-width:1079px) {
  header {
    padding: 25px 6%;
  }
  .pc_nav {
    display: none;
  }
  #navBtn {
    position: relative;
    display: block;
    width: 35px;
    height: 25px;
    z-index: 1005;
    cursor: pointer;
    span {
      display: block;
      width: 100%;
      height: 1px;
      background: #000;
      transition: all 0.3s ease;
      &:nth-of-type(2) {
        margin-top: 11px;
      }
      &:nth-of-type(3) {
        margin-top: 11px;
      }
    }
    &.btn_close span {
      &:nth-of-type(1) {
        rotate: -315deg;
        translate: 0 12px;
        transform-origin: center;
        background: #fff;
      }
      &:nth-of-type(2) {
        opacity: 0;
      }
      &:nth-of-type(3) {
        rotate: 315deg;
        translate: 0 -12px;
        transform-origin: center;
        background: #fff;
      }
    }
  }
  #nav_area {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding: 6em 6% 6%;
    background: var(--color-1);
    overflow: auto;
    z-index: 1001;
    transition: all 0.3s linear;
   &.open {
      visibility: visible;
      opacity: 1;
      height: 100%;
    }
    li a {
      display: block;
      text-align: center;
      color: #fff;
      font-weight: 500;
      line-height: 1.2;
      &.r_btn {
        max-width: 400px;
        margin: auto;
        padding: 1em;
        background: var(--color-2) url(../img/mail.svg) center left 2em no-repeat;
        background-size: 28px auto;
        border-radius: 100vh;
      }
    }
    li + li {
      margin-top: 3em;
    }
  }
}

.fixed,
.fixed body {
  height: 100%;
  overflow: hidden;
}


/* ===================================
コンテンツ
------------------------------------*/
main {
  overflow: hidden;
}

.slide-animation {
  animation: fadeScale 8s 0s forwards;
}
@keyframes fadeScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.slider {
  overflow: hidden;
  div {
    height: 100%;
  }
  @media screen and (min-width:769px) {
    height: 80svh;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  
}

.title_m {
  margin-bottom: 1em;
  font-size: 32px;
  text-align: center;
  line-height: 1.4;
  span {
    display: block;
    color: var(--color-1);
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.2em;
  }
}

#about {
  padding: min(8%, 84px) 6% 0;
  .work {
    margin-bottom: 2em;
    background: #fff;
    font-weight: bold;
    dt {
      padding: 0.2em 1em;
      background: var(--color-1);
      color: #fff;
      border-radius: 100vh;
    }
    dd {
      font-size: clamp(20px, 5.3vw, 24px);
      color: var(--color-1);
    }
    @media screen and (max-width:768px) {
      padding: 4% 6%;
      border-radius: 20px;
      dt {
        width: 5em;
        margin: 0.6em 0 0.3em;
      }
    }
    @media screen and (min-width:769px) {
    display: flex;
      justify-content: center;
      align-items: flex-end;
      max-width: 782px;
      margin: 0 auto 2em;
      padding: 1em;
      border-radius: 100vh;
      dt {
        margin-right: 0.7em;
      }
      dd + dt {
        margin-left: 2.2em;
      }
    }
  }
  p {
     line-height: 2;
    @media screen and (min-width:769px) {
      text-align: center;
    }
  }
  .ph_area {
    max-width: 850px;
    margin: min(12%, 45px) auto;
    img {
      border-radius: 10px;
    }
    .ph1 {
      width: min(75.757%, 500px);
      margin: 0 0 0 auto;
    }
    .ph2 {
      width: min(59%, 390px);
      margin-top: -200px;
      @media screen and (max-width:768px) {
        margin-top: -8.787%;
      }
    }
  }
  .move_on {
    .ph1 {
      animation: m_r 0.6s linear both;
    }
    .ph2 {
      animation: m_l 0.6s linear 0.6s both;
    }
  }
  .title_sub {
    margin: 2em 0 1em;
    text-align: center;
    font-size: 26px;
  }
  .box {
    margin-top: min(19.24%, 127px);
  }
  .target {
      text-align: center;
    li {
      display: block;
      width: 9em;
      margin: 0.4em;
      padding: 0.6em;
      background: #fff;
      border: 2px solid var(--color-1);
      border-radius: 100vh;
      text-align: center;
      font-size: 24px;
      color: var(--color-1);
      font-weight: bold;
    }
    @media screen and (min-width:769px) {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    @media screen and (max-width:768px) {
      li {
        margin: 0.4em auto;
      }
    }
  }
  .ph_area2 {
    text-align: center;
    img {
      border-radius: 10px;
    }
    h3 {
      margin: 0.8em 0 0.4em;
      font-size: 24px;
      color: var(--color-1);
    }
    p {
      line-height: 1.6;
    }
    @media screen and (min-width:769px) {
      max-width: 1000px;
      display: flex;
      justify-content: space-between;
      margin: auto;
      li {
        width: 48%;
      }
    }
    @media screen and (max-width:768px) {
      li + li {
        margin-top: 2em;
      }
    }
  }
}

.massage {
  margin: min(26%, 100px) auto;
  .inner {
    padding: min(10%, 30px) 6%;
    background: var(--color-3);
  }
  img {
    border-radius: 10px;
  }
  dt {
    margin-bottom: 1em;
    padding-bottom: 0.6em;
    border-bottom: 1px solid var(--border);
    font-weight: bold;
    span {
      font-size: 24px;
    }
  }
  dd {
    line-height: 2;
  }
  @media screen and (min-width:769px) {
    .box {
      max-width: 848px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: auto;
    }
    dl {
      width: 547px;
    }
  }
  @media screen and (max-width:768px) {
    .ph {
      width: 39.6%;
      margin: 0 auto 6%;
    }
  }
}

#facility {
  margin-top: min(19.24%, 127px);
  p {
    line-height: 2;
  }
  .ph_area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2em auto 0;
  }
  img {
    border-radius: 10px;
  }
  figcaption {
    position: relative;
    margin: 0.4em 0 0.8em;
    color: var(--color-1);
    text-align: right;
    span {
      display: inline-block;
      padding: 0.2em 0.2em 0.2em 1em;
      background: var(--back);
    }
    &::after {
      position: absolute;
      top: 50%;
      left: 0;
      content: "";
      width: 100%;
      height: 1px;
      background: var(--color-1);
      z-index: -1;
    }
  }
  @media screen and (min-width:769px) {
    p {
      text-align: center;
    }
    .ph_area {
      max-width: 1000px;
    }
    .ph1 {
      width: 65.19%;
    }
    .side {
      width: 30.75%;
    }
  }
  @media screen and (max-width:768px) {
    padding: 0 6%;
    .ph_area {
      flex-wrap: wrap;
    }
    .ph1 {
      width: 100%;
    }
    .side {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      figure {
        width: 48%;
      }
    }
  }
  .box {
    max-width: 1000px;
    margin: 4em auto 0;
  }
  .mt2 {
    margin-top: 1.4em;
  }
  .ph_area2 {
    margin-top: 1.4em;
    @media screen and (min-width:769px) {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      li {
        width: 48%;
      }
    }
  }
  .ph_arera3 {
    margin-top: 1.4em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    @media screen and (min-width:769px) {
      li {
      width: 25.092%;
      }
      li:first-child {
        width: 44.526%;
      }
    }
    @media screen and (max-width:768px) {
      li {
      width: 48%;
      margin-bottom: 4%;
      }
      li:first-child {
        width: 100%;
      }
    }
  }
  .notice {
    max-width: 460px;
    margin: 1.5em auto 0;
    padding: 0.4em;
    border: 1px solid #000;
    text-align: center;
    line-height: 1.4;
  }
}

#flow {
  margin: min(26%, 100px) auto;
  .inner {
    padding: 30px 0;
    background: var(--color-3);
  }
  ul {
    position: relative;
    margin: min(10%, 54px) auto 0;
  }
  li {
    font-weight: bold;
    font-size: 20px;
    span {
      position: relative;
      display: block;
      width: 60px;
      height: 60px;
      padding: 10px;
      background: var(--color-1);
      border-radius: 50%;
      font-family: "Outfit", sans-serif;
      font-weight: 500;
      font-size: 40px;
      color: #fff;
      text-align: center;
      z-index: 2;
    }
  }
  @media screen and (min-width:769px) {
    ul {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      max-width: 1000px;
      &::before {
        content: "";
        position: absolute;
        top: 29px;
        left: 50%;
        transform: translateX(-50%);
        width: 83.334%;
        height: 3px;
        background: var(--color-1);
      }
    }
    li {
      width: 16.666%;
      text-align: center;
      span {
        margin: 0 auto 0.5em;
      }
    }
  }
  @media screen and (max-width:768px) {
    .inner {
      padding: 18% 10%;
    }
    ul {
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 29px;
        transform: translateY(-50%);
        width: 3px;
        height: 83.334%;
        background: var(--color-1);
      }
    }
    li {
      display: flex;
      align-items: center;
      span {
        margin-right: 0.3em;
      }
    }
    li + li {
      margin-top: 6%;
    }
  }
}

#company {
  padding: 40px 0 0;
  @media screen and (max-width:768px) {
    padding: 16% 6% 0;
  }
  .philosophy {
    text-align: center;
    .name {
      margin-bottom: 1em;
      font-size: 20px;
      font-weight: bold;
      text-decoration: underline;
      img {
        margin: 0 auto 16px;
        width: min(84%, 280px);
      }
    }
    .mb {
      margin-bottom: 2em;
    }
    .tap {
      display: inline-block;
      margin: 3em auto 0.6em;
      padding: 0.3em 2em;
      border-radius: 100vh;
      background: var(--color-1);
      color: #fff;
    }
    h3 {
      font-size: 26px;
      line-height: 1.6;
    }
    p {
      margin-top: 1em;
      line-height: 2;
    }
    @media screen and (max-width:768px) {
      p {
        text-align: left;
      }
    }
  }
  .profile {
    max-width: 1000px;
    margin: min(16%, 100px) auto 0;
    border-top: 1px solid var(--border);
    dt {
      font-weight: bold;
    }
    @media screen and (min-width:769px) {
      display: flex;
      flex-wrap: wrap;
      dt {
        width: 29%;
        padding: 2em;
        border-bottom: 1px solid var(--border);
       }
      dd {
        width: 71%;
        padding: 2em 0;
        border-bottom: 1px solid var(--border);
      }
    }
    @media screen and (max-width:768px) {
      line-height: 1.8;
      dt {
        padding-top: 1em;
      }
      dd {
        padding-bottom: 1em;
        border-bottom: 1px solid var(--border);
      }
    }
  }
}

#access {
  margin-top: min(20%, 148px);
  text-align: center;
  p {
    line-height: 2;
  }
  .map {
    margin-top: 2em;
    width: 100%;
    height: 430px;
  }
}

#partner {
  margin-top: min(20%, 148px);
  text-align: center;
  ul {
    margin-top: 4em;
  }
  li {
    margin-top: 1.3em;
  }
  a {
    color: #000;
    transition: all 0.3s linear;
    &:hover {
      color: var(--color-1);
      fill: var(--color-1);
    }
  }
  .icon {
    display: inline;
    width: 20px;
  }
}

#form {
  margin-top: min(26%, 100px);
  .inner {
    background: var(--color-3);
  }
  form {
    max-width: 730px;
    margin: auto;
  }
  p {
    margin: 1em 0;
    line-height: 2;
    text-align: center;
    a {
      text-decoration: underline;
    }
  }
  dt {
    padding: 1.8em 0 0.8em;
    font-weight: bold;
    line-height: 1.4;
    span {
      display: inline-block;
      margin-left: 0.8em;
      padding: 0.2em 1em;
      background: #ff7d5f;
      color: #fff;
      font-size: 14px;
    }
  }
  .form_btn {
    display: block;
    width: min(100%, 500px);
    margin: 1em auto 0;
    padding: 1em;
    border-radius: 100vh;
    background: var(--color-2) url(../img/arrow.svg) right 1em center no-repeat;
    background-size: 38px auto;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
    &:hover {
      background: var(--color-1) url(../img/arrow.svg) right 1em center no-repeat;
      background-size: 38px auto;
    }
    @media screen and (max-width:768px) {
      font-size: 22px;
      background-size: 28px auto;
      &:hover {
        background-size: 28px auto;
      }
    }
  }
  @media screen and (max-width:768px) {
    .inner {
      padding: 18% 6%;
    }
    p {
      text-align: left;
    }
  }
}

button, textarea, select, input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

/* select要素の矢印を消す */
select::-ms-expand {
  display: none;
}

/* Androidで表示されるタップ時のオレンジの枠を消す */
button {
  box-shadow: none;
  outline: none;
}

input.txt,
textarea {
  width: 100%;
  padding: 1.3em 1.5em;
  background: #fff;
  border-radius: 10px;
  font-size: 20px;
  line-height: 2;
}
::placeholder {
  color: #aaa;
  font-family: "Noto Sans JP", sans-serif;
}
input.txt:focus,
textarea:focus {
  outline: 2px solid var(--color-2);
}

.radio {
  .radio-parts {
    display: inline-block;
    position: relative;
    margin: min(2%, 12px) 3em min(2%, 12px) 0;
    padding: 0.2em 0 0 1.8em;
    cursor: pointer;
  }
  .radio-parts:before {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    content: "";
    width: 1.4em;
    height: 1.4em;
    border-radius: 50%;
    background: #fff;
  }
  .radio-input:checked + .radio-parts:before {
    border: 8px solid var(--color-1);
  }
}

/* お問い合わせ下層ページ */
.contact {
  padding: min(26%, 100px) 6%;
  p {
    margin: 2em 0;
    line-height: 2;
  }
  dl {
    max-width: 730px;
    margin: auto;
    line-height: 2;
    dt {
      margin: 2em 0 1em;
      font-weight: bold;
    }
  }
  .next_btn {
    display: block;
    width: min(100%, 500px);
    margin: 4em auto 0;
    padding: 1em;
    border-radius: 100vh;
    background: var(--color-2) url(../img/arrow.svg) right 1em center no-repeat;
    background-size: 38px auto;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
    &:hover {
      background: var(--color-1) url(../img/arrow.svg) right 1em center no-repeat;
      background-size: 38px auto;
    }
    @media screen and (max-width:768px) {
      font-size: 22px;
      background-size: 28px auto;
      &:hover {
        background-size: 28px auto;
      }
    }
  }
  .prev_btn {
    display: block;
    width: min(50%, 250px);
    margin: 2em auto 0;
    padding: 0.5em;
    border-radius: 100vh;
    background: #c7c7a7;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
    &:hover {
      background: #afaf95;
    }
    @media screen and (max-width:768px) {
      font-size: 22px;
    }
  }
  @media screen and (min-width:769px) {
    p {
      text-align: center;
    }
  }
}


/* プライバシーポリシー */
.privacy {
  max-width: 1000px;
  margin: auto;
  padding: min(26%, 100px) 6%;
  h3 {
    font-size: 20px;
    color: var(--color-1);
  }
  p {
    margin: 1em 0 2em;
    line-height: 2;
  }
}


/* ===================================
フッター
------------------------------------*/
footer {
  overflow: hidden;
  margin-top: min(26%, 100px);
  text-align: center;
  dl {
    padding: 0 6%;
    text-align: center;
    font-size: 14px;
    .f_logo {
      width: min(60%, 200px);
      margin: auto;
    }
    dt {
      margin: 1em 0;
      color: #18450a;
      font-weight: bold;
    }
    dd {
      span {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.8;
      }
    }
  }
  ul {
    margin: 3em 0 5em;
    font-size: 16px;
    a {
      color: #000;
      transition: all 0.3s linear;
    }
    @media screen and (min-width:769px) {
      display: flex;
      justify-content: center;
      
      li + li {
        margin-left: 2em;
      }
      a:hover {
        color: var(--color-1);
      }
    }
    @media screen and (max-width:768px) {
      border-top: 1px solid var(--border);
      li {
        text-align: left;
        border-bottom: 1px solid var(--border);
      }
      a {
        display: block;
        padding: 1.4em 6%;
      }
    }
  }
  .pp {
    font-size: 14px;
    color: #000;
    transition: all 0.3s linear;
    &:hover {
      color: var(--color-1);
    }
  }
  small {
    padding: 1em 6%;
    display: block;
    font-size: 12px;
    color: var(--color-1);
  }
}
