@charset "UTF-8";
/* ------------------------------ */
/*          リセットCSS */
/* ------------------------------ */
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

​ address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

​ ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

q:before,
q:after {
  content: '';
}

​ abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

​ input,
textarea,
select {
  font-size: 16px;
}

​ textarea {
  resize: vertical;
  display: block;
}

​ button {
  padding: 0;
  cursor: pointer;
}

​ legend {
  color: #000;
}

​ main {
  display: block;
}

​ a {
  text-decoration: none;
  color: inherit;
}

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

​ svg {
  display: block;
}

​ * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/* 色管理 */
/* z-index */
/* ブレイクポイント */
/* mixin */
* {
  box-sizing: border-box;
}

body {
  font-family: “Times New Roman”, “游明朝”, “Yu Mincho”, “游明朝体”, “YuMincho”,
    “ヒラギノ明朝 Pro W3”, “Hiragino Mincho Pro”, “HiraMinProN-W3”, “HGS明朝E”,
    “ＭＳ Ｐ明朝”, “MS PMincho”, serif;
  color: #484747;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  line-height: 1.75;
}

body::after {
  position: fixed;
  content: '';
  background: url(../img/parallax.webp) center/cover no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100lvh;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
button {
  cursor: pointer;
}

img {
  vertical-align: top;
}

iframe {
  width: 100%;
  height: 100%;
}

.ly_container {
  width: 100%;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
}

.ly_container-s {
  width: 100%;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

.ly_contents {
  padding: 32px 0 64px;
}
@media screen and (min-width: 768px) {
  .ly_contents {
    padding: 72px 0 80px;
  }
}

.ly_main {
  position: relative;
}

/* ----------------------------
header
-----------------------------*/
.ly_header {
  position: fixed;
  height: 48px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 8px 0;
  background: #f0efea;
}
@media screen and (min-width: 768px) {
  .ly_header {
    padding: 20px 0;
    background: transparent;
  }
}

.ly_header_inner {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  max-width: 1328px;
}

.ly_header-menu_list {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ly_header-menu_list {
    gap: 20px;
  }
}

.ly_header-menu_btn {
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 12px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .ly_header-menu_btn {
    height: 60px;
    font-size: 20px;
    border-radius: 16px;
  }
}

.ly_header-menu_btn:hover {
  transition: 1s;
}
@media screen and (min-width: 768px) {
  .ly_header-menu_btn:hover {
    background: #b5b094;
    color: white;
  }
}

.ly_header-menu_btn__service {
  padding: 0 16px 0 0;
}
@media screen and (min-width: 768px) {
  .ly_header-menu_btn__service {
    background: #fff;
    border: 3px solid #b5b094;
    padding: 0 32px;
  }
}
.ly_header-menu_btn__service::before,
.ly_header-menu_btn__service::after {
  content: '';
  width: 8px;
  height: 1px;
  background: #484747;
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-block;
  top: 50%;
}
.ly_header-menu_btn__service::before {
  right: -5px;
  transform: rotate(40deg);
}
.ly_header-menu_btn__service::after {
  right: -10px;
  transform: rotate(-40deg);
}
@media screen and (min-width: 768px) {
  .ly_header-menu_btn__service::before,
  .ly_header-menu_btn__service::after {
    display: none;
  }
}

.ly_header-submenu {
  position: relative;
  font-size: 12px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 1s;
  width: 100%;
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .ly_header-submenu {
    font-size: 20px;
    max-width: 190px;
  }
}

.ly_header-submenu_item {
  background: #fff;
  padding: 4px;
}
@media screen and (min-width: 768px) {
  .ly_header-submenu_item {
    padding: 8px 12px;
    background: #f0efea;
  }
}
.ly_header-submenu_item:first-child {
  margin-top: 8px;
}
.ly_header-submenu_item:not(:first-child) {
  margin-top: 4px;
}

.ly_header-menu_btn__contact {
  background: #a40b5d;
  color: #fff;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .ly_header-menu_btn__contact {
    padding: 0 32px;
  }
}

/* ハンバーガー */
.ly_header-ham {
  position: absolute;
  left: 0;
  top: 60px;
}
@media screen and (min-width: 768px) {
  .ly_header-ham {
    position: static;
  }
}
@media screen and (min-width: 1080px) {
  .ly_header-ham {
    margin-left: 20px;
  }
}

.ly_header-ham-btn {
  width: 56px;
  height: 56px;
  background: #fff;
  padding: 12px;
  position: relative;
  outline: 1px solid #b5b094;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .ly_header-ham-btn {
    width: 64px;
    height: 64px;
    background: transparent;
    outline: none;
    padding: 0;
  }
}

.ly_header-ham-btn:hover .ly_header-ham-btn_bar {
  background: #484747;
  transition: 1s;
}

.ly_header-ham-btn:hover .ly_header-ham-btn_part {
  color: #484747;
  transition: 1s;
}

.ly_header-ham-btn_bar,
.ly_header-ham-btn_part {
  position: absolute;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .ly_header-ham-btn_bar,
  .ly_header-ham-btn_part {
    right: 0;
    left: inherit;
  }
}

.ly_header-ham-btn_bar {
  background: #b5b094;
  height: 1px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 768px) {
  .ly_header-ham-btn_bar {
    height: 3px;
  }
}
.ly_header-ham-btn_bar:first-child {
  width: 40px;
  top: 25%;
}
@media screen and (min-width: 768px) {
  .ly_header-ham-btn_bar:first-child {
    width: 64px;
    top: 20%;
  }
}
.ly_header-ham-btn_bar:nth-child(2) {
  width: 24px;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .ly_header-ham-btn_bar:nth-child(2) {
    width: 54px;
  }
}

.ly_header-ham-btn_part {
  color: #b5b094;
  font-size: 12px;
  top: 75%;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 768px) {
  .ly_header-ham-btn_part {
    font-size: 20px;
  }
}

.ly_header-ham-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px 0;
  background: #b5b094;
  z-index: 9999;
  width: 100%;
  height: 100%;
  transition: 1s;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .ly_header-ham-menu {
    width: 40%;
    max-width: 400px;
    left: inherit;
  }
}

.ly_header-ham-menu_inner {
  background: rgba(255, 255, 250, 0.9);
  margin: 0 30px;
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.ly_header-ham-menu_btn__close {
  position: absolute;
  right: -10px;
  top: -16px;
}

.ly_header-ham_logo {
  max-width: 130px;
}
@media screen and (min-width: 768px) {
  .ly_header-ham_logo {
    max-width: 200px;
  }
}

.ly_header-ham-menu_list {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.ly_header-ham-menu_item {
  text-align: center;
  font-size: 16px;
}

.md_section_title__en {
  font-size: 20px;
  font-weight: 600;
  color: #008475;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .md_section_title__en {
    font-size: 28px;
  }
}

.md_section_title__ja {
  display: block;
  font-weight: normal;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .md_section_title__ja {
    font-size: 18px;
  }
}

.md_btn {
  width: 100%;
  height: 100%;
  background: #fff;
  outline: 1px solid #008475;
  color: #008475;
  box-shadow: 0px 3px 6px rgba(7, 7, 7, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
}
.md_btn:hover {
  background: #008475;
  color: #fff;
  transition: 1s;
}

.md_btn__close {
  width: 42px;
  height: 42px;
  background: #fffffa;
  position: absolute;
  display: block;
  right: -11px;
  top: -26px;
}

.md_btn_inner__close {
  display: block;
  width: 100%;
  height: 100%;
}
.md_btn_inner__close::before,
.md_btn_inner__close::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 30px;
  background: #b5b094;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 15%;
}
.md_btn_inner__close::before {
  transform: rotate(45deg);
}
.md_btn_inner__close::after {
  transform: rotate(-45deg);
}

.md_section_deco {
  position: relative;
}
.md_section_deco::before {
  content: '';
  position: absolute;
  width: 13%;
  max-width: 90px;
  height: 240px;
  background: #008475;
  top: 0;
}
@media screen and (min-width: 768px) {
  .md_section_deco::before {
    height: 410px;
  }
}

.md_section_deco__right::before {
  right: 0;
}

.md_section_deco__left::before {
  left: 0;
}

.md_text_deco {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.md_text_deco::before,
.md_text_deco::after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  top: 80%;
}
@media screen and (min-width: 768px) {
  .md_text_deco::before,
  .md_text_deco::after {
    width: 100px;
    height: 100px;
    top: 100%;
  }
}
.md_text_deco::before {
  left: -18px;
  transform: translate(-100%, -50%);
  background: url(../img/deco_02.webp) center/contain no-repeat;
}
.md_text_deco::after {
  right: -18px;
  transform: translate(100%, -50%);
  background: url(../img/deco_01.webp) center/contain no-repeat;
}

/* contact
-----------------------------*/
.md_contact {
  padding: 80px 0;
  background: linear-gradient(
      rgba(181, 176, 148, 0.6),
      rgba(181, 176, 148, 0.6)
    ),
    url(../img/contact_bg.webp) center;
  position: relative;
}

.md_contact_inner {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 10px 40px;
}

.md_contact_title__en {
  color: #a40b5d;
}

.md_contact_desc {
  margin-top: 38px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .md_contact_desc {
    text-align: center;
    margin-top: 48px;
    font-size: 18px;
  }
}
.md_contact_desc span {
  color: #008475;
}

.md_contact_wrapper {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .md_contact_wrapper {
    margin-top: 69px;
  }
}

.md_contact_wrapper02 {
  margin-top: 16px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .md_contact_wrapper02 {
    margin-top: 36px;
  }
}
.md_contact_wrapper02::before,
.md_contact_wrapper02::after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  top: 120%;
}
@media screen and (min-width: 768px) {
  .md_contact_wrapper02::before,
  .md_contact_wrapper02::after {
    width: 100px;
    height: 100px;
    top: 100%;
  }
}
.md_contact_wrapper02::before {
  left: 0;
  transform: translate(-100%, -50%);
  background: url(../img/deco_02.webp) center/contain no-repeat;
}
.md_contact_wrapper02::after {
  right: 0;
  transform: translate(100%, -50%);
  background: url(../img/deco_01.webp) center/contain no-repeat;
}

.md_contact_wrapper03 {
  margin-top: 70px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .md_contact_wrapper03 {
    display: flex;
  }
}

.md_contact_link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.md_contact_link02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  background: #fff;
  border: 1px solid #b5b094;
  padding: 12px 10px;
  width: 100%;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .md_contact_link02 {
    font-size: 16px;
    max-width: inherit;
    width: -moz-fit-content;
    width: fit-content;
    padding: 24px 20px;
  }
}

.md_contact_link__line {
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .md_contact_link__line {
    gap: 40px;
  }
}

.md_contact_link__tel {
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .md_contact_link__tel {
    gap: 44px;
  }
}

.md_contact_img-box__line {
  width: 100%;
  max-width: 64px;
}
@media screen and (min-width: 768px) {
  .md_contact_img-box__line {
    max-width: 156px;
  }
}

.md_contact_img-box__tel {
  max-width: 28px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .md_contact_img-box__tel {
    max-width: 80px;
  }
}

.md_contact_text {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .md_contact_text {
    font-size: 56px;
  }
}

.md_contact_img-box__id {
  max-width: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .md_contact_img-box__id {
    max-width: 64px;
    flex-shrink: 0;
  }
}

.ut_sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .ut_sp-none {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .ut_pc-none {
    display: none;
  }
}

.ut_img100_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ut_img100_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.u_br {
  display: block;
}

.u_bg_brirght {
  background: #fffffa;
}

/* ----------------------------
top
-----------------------------*/
/* fv
-----------------------------*/
.top_fv {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_fv {
    background: #fffffa;
  }
}

.top_fv_bg {
  background: #b5b094;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .top_fv_bg {
    background: #008475;
    width: 42%;
    right: 0;
  }
}

.top_fv_inner {
  position: relative;
  width: 100%;
  padding: 80px 30px 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
}
@media screen and (min-width: 768px) {
  .top_fv_inner {
    padding-top: 100px;
  }
}

.top_fv_wrapper {
  background: #fffffa;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_fv_wrapper {
    background: transparent;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

.top_fv_text-box {
  padding: 0 16px 16px;
}
@media screen and (min-width: 768px) {
  .top_fv_text-box {
    padding: 0;
  }
}

.top_fv_logo {
  position: absolute;
  margin: -113px;
  right: 50px;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .top_fv_logo {
    position: static;
    transform: inherit;
    margin: inherit;
  }
}

.top_fv_img-box {
  max-width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 500px) {
  .top_fv_img-box {
    max-width: 170px;
  }
}
@media screen and (min-width: 768px) {
  .top_fv_img-box {
    max-width: 270px;
    background: transparent;
  }
}

.top_fv_copy {
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0px 3px 6px rgba(7, 7, 7, 0.16);
  margin-top: 48px;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top_fv_copy {
    font-size: 38px;
    color: #008475;
    margin-top: 32px;
  }
}

.top_fv_desc {
  font-size: 12px;
  line-height: 1.67;
  margin-top: 10px;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .top_fv_desc {
    font-size: 18px;
  }
}

.top_fv_text-box :nth-child(3) {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top_fv_text-box :nth-child(3) {
    margin-top: 64px;
  }
}

.top_fv_sub-copy {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(transparent 70%, rgba(181, 176, 148, 0.6) 0%);
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .top_fv_sub-copy {
    font-size: 22px;
  }
}

.top_fv-slider_img-box {
  width: 70vw;
  height: 280px;
  flex-shrink: 0;
  box-shadow: 0px 3px 6px rgba(7, 7, 7, 0.16);
}
@media screen and (min-width: 768px) {
  .top_fv-slider_img-box {
    width: 40vw;
    height: 450px;
  }
}
@media screen and (min-width: 1080px) {
  .top_fv-slider_img-box {
    width: 45vw;
    height: 500px;
    margin-right: calc((100vw - 1080px) / -2 + 8px);
  }
}

.top_fv-content {
  margin-top: 10px;
  width: 60vw;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: -30px;
  font-size: 12px;
  padding: 8px 20px;
}
@media screen and (min-width: 500px) {
  .top_fv-content {
    margin-right: 0;
    width: 40vw;
  }
}
@media screen and (min-width: 768px) {
  .top_fv-content {
    font-size: 16px;
    max-width: 300px;
  }
}
@media screen and (min-width: 1080px) {
  .top_fv-content {
    max-width: 420px;
    width: 100%;
    font-size: 20px;
  }
}

.top_fv-content_img-box {
  max-width: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top_fv-content_img-box {
    max-width: 40px;
  }
}

/* hand-therapith
-----------------------------*/
.top_hand-therapith_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 94px 0 104px;
  position: relative;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_container {
    padding: 90px 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 52px;
  }
}
@media screen and (min-width: 1080px) {
  .top_hand-therapith_container {
    gap: 106px;
  }
}

.top_hand-therapith_container02 {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_container02 {
    padding: 72px 0 84px;
  }
}

.top_hand-therapith_container03 {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_container03 {
    padding: 68px 0 80px;
  }
}

.top_hand-therapith_deco {
  position: absolute;
  max-height: 100px;
  height: 76px;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_deco {
    height: 100%;
  }
}
.top_hand-therapith_deco:first-child {
  top: 0;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_deco:first-child {
    top: 15px;
    left: 24%;
  }
}
@media screen and (min-width: 1080px) {
  .top_hand-therapith_deco:first-child {
    top: 60px;
  }
}
.top_hand-therapith_deco:nth-child(2) {
  bottom: 0;
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_deco:nth-child(2) {
    left: 24%;
    bottom: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .top_hand-therapith_deco:nth-child(2) {
    bottom: 60px;
  }
}

.top_hand-therapith_title {
  color: #008475;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  width: calc(100% + 1em);
  line-height: 1.43;
  margin-left: -0.4em;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .top_hand-therapith_title {
    font-size: 28px;
  }
}

.top_hand-therapith_desc {
  font-size: 14px;
  margin-top: 20px;
  padding: 0 14px;
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_desc {
    font-size: 16px;
    margin-top: 56px;
    text-align: center;
  }
}

.top_hand-therapith_desc02 {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_desc02 {
    margin-top: 80px;
    font-size: 20px;
  }
}

.top_hand-therapith_desc03 {
  font-size: 16px;
  margin-top: 32px;
  line-height: 2.25;
  text-align: center;
}

.top_hand-therapith_img-box {
  margin: 0 30px;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_img-box {
    margin: 0;
    width: 40%;
  }
}

.top_hand-therapith-future_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 46px;
  gap: 8px 32px;
  flex-shrink: 0;
}
@media screen and (min-width: 1080px) {
  .top_hand-therapith-future_list {
    margin-top: 84px;
    gap: 8px 150px;
  }
}

.top_hand-therapith-future_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 126px;
  height: 126px;
  background: #fff;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid #b5b094;
  box-shadow: 5px 3px 0 #b5b094;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 1080px) {
  .top_hand-therapith-future_item {
    width: 260px;
    height: 260px;
    max-width: 260px;
    max-height: 260px;
    font-size: 24px;
  }
}

.top_hand-therapith_container03 {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_container03 {
    padding: 72px 0 80px;
  }
}

.top_hand-therapith-feature_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 0;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith-feature_list {
    gap: 64px 24px;
    margin-top: 86px;
  }
}

.top_hand-therapith-feature_item {
  background: #fff;
  border: 1px solid #008475;
  padding: 16px 18px;
  position: relative;
  counter-increment: title;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith-feature_item {
    width: 48%;
    padding: 28px 10px;
  }
}
.top_hand-therapith-feature_item::before {
  content: '0' counter(title);
  position: absolute;
  width: 56px;
  height: 56px;
  background: #008475;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  left: -4px;
  top: -8px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith-feature_item::before {
    width: 96px;
    height: 96px;
    font-size: 40px;
    left: -20px;
    top: -30px;
  }
}

.top_hand-therapith-feature_title {
  color: #008475;
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith-feature_title {
    -moz-text-align-last: left;
    text-align-last: left;
    margin-left: 90px;
    font-size: 24px;
  }
}

.top_hand-therapith-feature_desc {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.86;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith-feature_desc {
    font-size: 16px;
    margin-top: 28px;
    min-height: 130px;
  }
}

.top_hand-therapith_title-sub {
  color: #008475;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top_hand-therapith_title-sub {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
}
@media screen and (min-width: 1080px) {
  .top_hand-therapith_title-sub {
    font-size: 28px;
  }
}

/* instagram
-----------------------------*/
.top_instagram {
  padding: 32px 0 72px;
}
@media screen and (min-width: 768px) {
  .top_instagram {
    padding: 80px 0;
  }
}

.top_instagram_title {
  position: relative;
}
.top_instagram_title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../img/contact_instagram.webp) center/contain no-repeat;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .top_instagram_title::after {
    width: 92px;
    height: 92px;
  }
}

.top_instagram_list {
  margin-top: 82px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .top_instagram_list {
    gap: 20px;
  }
}

.top_instagram_list li {
  position: relative;
  width: calc((100% - 20px) / 3);
}
@media screen and (min-width: 768px) {
  .top_instagram_list li {
    width: calc((100% - 40px) / 3);
  }
}

.top_instagram_list li::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.top_instagram_list a {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.top_instagram_list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* service
-----------------------------*/
.top_service {
  background: #f0efea;
}

.top_service-tab-menu_list {
  display: grid;
  margin-top: 44px;
  grid-template: 'item1 item1' auto 'item2 item3' auto 'item4 item5' auto/50% 50%;
}
@media screen and (min-width: 1080px) {
  .top_service-tab-menu_list {
    grid-template: 'item1 item2 item3' auto 'item1 item4 item5' auto;
    row-gap: 24px;
    justify-content: center;
    align-items: center;
  }
}

.top_service-tab-menu_item {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #008475;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .top_service-tab-menu_item {
    border-radius: 10px;
    outline: 1px solid #008475;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.16);
  }
}
.top_service-tab-menu_item:first-child {
  width: 100%;
  padding: 24px 0;
  grid-area: item1;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .top_service-tab-menu_item:first-child {
    font-size: 24px;
    margin-right: 48px;
  }
}
@media screen and (min-width: 1080px) {
  .top_service-tab-menu_item:first-child {
    padding: 30px 22px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 28px;
  }
}
.top_service-tab-menu_item:not(:first-child) {
  width: 100%;
  height: 100%;
  padding: 10px 0;
  border-top: 1px solid #b5b094;
  font-size: 12px;
}
@media screen and (min-width: 1080px) {
  .top_service-tab-menu_item:not(:first-child) {
    width: -moz-fit-content;
    width: fit-content;
    padding: 15px 30px;
    border-top: inherit;
    font-size: 16px;
    margin-right: 28px;
  }
}
.top_service-tab-menu_item:nth-child(odd):not(:first-child) {
  border-left: 1px solid #b5b094;
}
@media screen and (min-width: 1080px) {
  .top_service-tab-menu_item:nth-child(odd):not(:first-child) {
    border-left: inherit;
  }
}
.top_service-tab-menu_item:nth-child(2) {
  grid-area: item2;
}
.top_service-tab-menu_item:nth-child(3) {
  grid-area: item3;
}
.top_service-tab-menu_item:nth-child(4) {
  grid-area: item4;
}
.top_service-tab-menu_item:nth-child(5) {
  grid-area: item5;
}
.top_service-tab-menu_item:hover {
  background: rgba(181, 176, 148, 0.6);
}

.top_service-content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_service-content {
    margin-top: 96px;
  }
}

.top_service-content_wrapper {
  display: none;
}
.top_service-content_wrapper.is-active {
  display: block;
}

.top_service-content_unit {
  display: grid;
  grid-template: 'item1' auto 'item2' 'item3' auto/100%;
  place-content: center;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .top_service-content_unit {
    grid-template: 'item2 item1' 70px '. item3' auto/auto auto;
    gap: 0 90px;
  }
}

.top_service-content_title-box {
  grid-area: item1;
}

.top_service-content_title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .top_service-content_title {
    font-size: 24px;
  }
}
.top_service-content_title > span {
  font-size: 14px;
  padding-bottom: 8px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .top_service-content_title > span {
    font-size: 16px;
  }
}

.top_service-content_img-box {
  width: 60%;
  aspect-ratio: 1/1;
  max-width: 420px;
  max-height: 420px;
  margin: 32px 0 0 18px;
  box-shadow: -18px 18px 0 #008475;
  grid-area: item2;
}
@media screen and (min-width: 768px) {
  .top_service-content_img-box {
    width: 100%;
    margin: 440px 0 0 40px;
    box-shadow: -40px 40px 0 #008475;
  }
}
@media screen and (min-width: 1080px) {
  .top_service-content_img-box {
    margin: 600px 0 0 40px;
  }
}

.top_service-content_text-box {
  margin-top: 42px;
  grid-area: item3;
}
@media screen and (min-width: 768px) {
  .top_service-content_text-box {
    margin-top: 50px;
  }
}

.top_service-content_desc {
  font-size: 16px;
  line-height: 2;
}

.top_service-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}

.top_service-table-wrapper {
  width: 50%;
  margin-left: 30px;
}

.top_service-table_caption {
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .top_service-table_caption {
    text-align: left;
    margin-top: 40px;
    font-size: 20px;
  }
}

.top_service-table_tr-desc {
  padding-top: 16px;
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top_service-table_tr-desc {
    padding-top: 8px;
    padding-left: 102px;
  }
}

.top_service-table_title,
.top_service-table_title-sub {
  color: #008475;
  vertical-align: baseline;
}

.top_service-table_title {
  font-size: 18px;
  width: 55px;
  padding-right: 48px;
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .top_service-table_title {
    font-size: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 768px) {
  .top_service-table_title > span {
    font-size: 18px;
  }
}

.top_service-table_title-sub {
  font-size: 16px;
  color: #008475;
}

.top_service-table_tr-text {
  width: 48px;
  font-size: 16px;
}

.top_service-content-submenu_text {
  padding-top: 16px;
}

.top_service-content-submenu_text02 {
  padding-top: 8px;
}

.top_service-content_desc02 {
  font-size: 16px;
  margin-top: 24px;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .top_service-content_desc02 {
    font-size: 18px;
    margin-top: 36px;
  }
}

.top_service_btn {
  max-width: 240px;
  height: 52px;
  margin: 24px auto 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_service_btn {
    margin: 40px auto 0;
  }
}

.top_service-content_desc03 {
  font-size: 12px;
  margin: 24px 0 0;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top_service-content_desc03 {
    padding: 40px 0 0;
  }
}

/* product
-----------------------------*/
/* Swiper */
.swiper {
  margin-top: 70px;
  max-width: 1080px;
}
@media screen and (min-width: 768px) {
  .swiper {
    margin-top: 90px;
  }
}

/*Swiperの中身*/
.swiper-slide img {
  aspect-ratio: 1/1;
}

.top_product_title {
  text-align: center;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .top_product_title {
    margin-top: 32px;
  }
}

.top_product_text {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top_product_text {
    margin-top: 80px;
    font-size: 20px;
  }
}

/* about
-----------------------------*/
.top_about {
  background: #f0efea;
}

.top_about_wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  margin: 40px auto 0;
  gap: 48px;
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .top_about_wrapper {
    flex-direction: row;
    margin: 72px auto 0;
  }
}

.top_about_text,
.top_about_text02 {
  font-size: 16px;
  line-height: 2;
}

.top_about_text02 {
  margin-top: 16px;
}

.top_about_text03 {
  font-size: 20px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top_about_text03 {
    margin-top: 64px;
  }
}

.top_about_list {
  margin-top: 20px;
}

.top_about_item {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  background: #fff;
  border: 1px solid #b5b094;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 22px;
}
.top_about_item:not(:first-child) {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .top_about_item:not(:first-child) {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .top_about_item {
    font-size: 16px;
  }
}

.top_about_img-box {
  position: relative;
  z-index: 50;
  width: 76%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top_about_img-box {
    max-width: 380px;
    max-height: 488px;
    margin-top: 56px;
  }
}
.top_about_img-box::after {
  content: '';
  position: absolute;
  width: 97%;
  height: 90%;
  background: #008475;
  left: 24px;
  top: 44px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top_about_img-box::after {
    width: calc((100vw - 1080px) / 2 + 362px);
    height: 126%;
    top: -56px;
    left: 100px;
    bottom: 0;
    max-width: 520px;
  }
}

/* information
-----------------------------*/
.top_info {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .top_info {
    padding: 72px 0 80px;
  }
}

.top_info-name_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top_info-name_wrapper {
    flex-direction: row;
    gap: 48px;
    margin-top: 56px;
  }
}

.top_info-name_text-box {
  text-align: center;
  font-size: 18px;
  line-height: 2;
}

.top_info-name_img-box {
  width: 120px;
}

.top_info-access_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top_info-access_wrapper {
    flex-direction: row;
    margin-top: 56px;
  }
}

.top_info-access_map {
  width: 100%;
  max-width: 396px;
  max-height: 290px;
}
.top_info-access_map iframe {
  aspect-ratio: 21/16;
}

.top_info-access_text-box {
  background: #f0efea;
  padding: 24px;
  line-height: 1.7;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_info-access_text-box {
    padding: 24px 24px 24px 30px;
    margin-top: 84px;
  }
}

.top_info-access_text,
.top_info-access_text02,
.top_info-access_text03 {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .top_info-access_text,
  .top_info-access_text02,
  .top_info-access_text03 {
    font-size: 16px;
  }
}

.top_info-access_text03 {
  margin-top: 1rem;
}

.top_info-access_text04 {
  margin-top: 1rem;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .top_info-access_text04 {
    font-size: 14px;
  }
}

/* parallax
-----------------------------*/
.top_parallax {
  height: 184px;
}
@media screen and (min-width: 768px) {
  .top_parallax {
    height: 248px;
  }
}

/* partnership
-----------------------------*/
.top_partnership {
  padding: 32px 0 56px;
}
@media screen and (min-width: 768px) {
  .top_partnership {
    padding: 72px 0 80px;
  }
}

.top_partnership-name_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top_partnership-name_wrapper {
    flex-direction: row;
    gap: 48px;
    margin-top: 56px;
  }
}

.top_partnership-name_text-box {
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .top_partnership-name_text-box {
    font-size: 24px;
  }
}

.top_partnership-name_img-box {
  width: 120px;
}

.top_partnership_img-box {
  width: 100%;
  margin: 10px auto 0;
  max-width: 390px;
}
@media screen and (min-width: 768px) {
  .top_partnership_img-box {
    margin: 56px auto 0;
  }
}

.top_partnership-access_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top_partnership-access_wrapper {
    flex-direction: row;
    margin-top: 56px;
  }
}

.top_partnership-access_map {
  width: 100%;
  max-width: 396px;
  max-height: 290px;
}
.top_partnership-access_map iframe {
  aspect-ratio: 21/16;
  width: 100%;
  height: 100%;
}

.top_partnership-access_text-box {
  background: #f0efea;
  padding: 24px;
  line-height: 1.7;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_partnership-access_text-box {
    padding: 24px 24px 24px 30px;
    margin-top: 84px;
  }
}

.top_partnership-access_text,
.top_partnership-access_text02,
.top_partnership-access_text03 {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .top_partnership-access_text,
  .top_partnership-access_text02,
  .top_partnership-access_text03 {
    font-size: 16px;
  }
}

.top_partnership-access_text03 {
  margin-top: 1rem;
}

.top_partnership-access_text04 {
  margin-top: 1rem;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .top_partnership-access_text04 {
    font-size: 14px;
  }
}

/* school
-----------------------------*/
.top_school {
  padding: 32px 0 56px;
}
@media screen and (min-width: 768px) {
  .top_school {
    padding: 80px 0;
  }
}

.top_school_title {
  font-size: 16px;
  margin-top: 38px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top_school_title {
    font-size: 24px;
    margin-top: 48px;
  }
}
.top_school_title span {
  display: block;
}

.top_school_title-sub {
  text-align: center;
  color: #b5b094;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top_school_title-sub {
    font-size: 20px;
    margin-top: 20px;
  }
}

.top_school_title02 {
  color: #008475;
  margin-top: 36px;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top_school_title02 {
    margin-top: 58px;
    font-size: 32px;
  }
}

.top_school_youtube {
  margin-top: 40px;
  width: 100%;
  height: 180px;
  background: #008475;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top_school_youtube {
    margin-top: 60px;
    width: 100%;
    height: 100%;
  }
}
.top_school_youtube iframe {
  display: block;
  max-width: 1000px;
  height: 100%;
  border: 0;
}
@media screen and (min-width: 768px) {
  .top_school_youtube iframe {
    height: 560px;
  }
}

.top_school_list {
  width: 100%;
  padding: 0 30px;
  margin: 32px auto 0;
  max-width: 1140px;
}
@media screen and (min-width: 768px) {
  .top_school_list {
    margin-top: 56px;
    max-width: 700px;
  }
}

.top_school_item:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top_school_item:not(:first-child) {
    margin-top: 56px;
  }
}

.top_school_head {
  width: 100%;
  text-align: left;
  background: #b5b094;
  padding: 12px 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top_school_head {
    font-size: 20px;
  }
}
.top_school_head::before,
.top_school_head::after {
  content: '';
  width: 16px;
  height: 2px;
  background: #707070;
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-block;
  top: 50%;
}
.top_school_head::before {
  right: 37px;
  transform: rotate(30deg);
}
.top_school_head::after {
  right: 24px;
  transform: rotate(-30deg);
}

.top_school_desc-box {
  background: #f0efea;
  position: relative;
  font-size: 16px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 1s;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top_school_desc-box {
    font-size: 20px;
  }
}

.top_school_item.is-open .top_school_head::before {
  right: 37px;
  transform: rotate(-30deg);
}
.top_school_item.is-open .top_school_head::after {
  right: 24px;
  transform: rotate(30deg);
}

.top_school_item.is-open .top_school_desc-box {
  height: auto;
  opacity: 1;
  padding: 24px 20px;
  transition: 1s;
}
@media screen and (max-width: 360px) {
  .top_school_item.is-open .top_school_desc-box {
    padding: 24px 20px 140px;
  }
}
@media screen and (min-width: 768px) {
  .top_school_item.is-open .top_school_desc-box {
    padding: 50px;
  }
}

.top_school_desc__point {
  position: absolute;
  background: #008475;
  color: #fff;
  border-radius: 9999px;
  width: 94px;
  height: 94px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  right: 20px;
  bottom: 24px;
}
@media screen and (min-width: 768px) {
  .top_school_desc__point {
    width: 104px;
    height: 104px;
    font-size: 16px;
    line-height: 1.75;
    right: 50px;
    bottom: 50px;
  }
}

.top_school_desc {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.top_school_desc__period {
  display: flex;
  margin-top: 25px;
  font-size: 16px;
  gap: 16px;
  letter-spacing: 0.1em;
}
.top_school_desc__period > dt {
  grid-area: title;
}
.top_school_desc__period > dd {
  grid-area: desc;
}
@media screen and (min-width: 768px) {
  .top_school_desc__period {
    gap: 40px;
  }
}

.top_school_desc__content {
  width: 100%;
  display: flex;
  font-size: 16px;
  gap: 4px 16px;
  margin-top: 16px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top_school_desc__content {
    gap: 40px;
  }
}
.top_school_desc__content > div {
  display: block;
}
@media screen and (min-width: 768px) {
  .top_school_desc__content > div {
    display: flex;
    gap: 32px;
  }
}

.js-nav {
  pointer-events: none;
  opacity: 0;
  background: #b5b094;
}

/* サービス アクティブ時 */
.js-acc.is-open .ly_header-submenu {
  height: auto;
  opacity: 1;
  transition: 1s;
}

.js-acc.is-open .ly_header-menu_btn__service::before,
.js-acc.is-open .ly_header-menu_btn__service::after {
  transition: 0.4s;
}
.js-acc.is-open .ly_header-menu_btn__service::before {
  transform: rotate(-40deg);
}
.js-acc.is-open .ly_header-menu_btn__service::after {
  transform: rotate(40deg);
}

.ly_header-menu_btn__contact {
  padding: 0 10px;
  background: #a40b5d;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .ly_header-menu_btn__contact {
    padding: 0 32px;
  }
}

/* ハンバーガー アクティブ */
.js-body.is-open .ly_header-ham-menu_item {
  color: #707070;
}

.js-body.is-open .ly_header-ham {
  right: 0;
  left: inherit;
}

.js-body.is-open .ly_header-ham-btn_bar {
  height: 1px;
  width: 24px;
}
@media screen and (min-width: 768px) {
  .js-body.is-open .ly_header-ham-btn_bar {
    height: 3px;
  }
}

.js-body.is-open .ly_header-ham-menu {
  opacity: 1;
  pointer-events: inherit;
}

/* タブアクティブ時 */
.js-tab-trigger.is-active {
  background: #008475;
  color: #fff;
}

/* 日本語 */ /*# sourceMappingURL=style.css.map */
