@charset "UTF-8";
/****************************************

ヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  .teaser {
    height: 210px;
    padding-top: 105px;
    background-size: cover;
  }
  .teaser img {
    height: 50px;
  }
}
/****************************************

コンテンツ

*****************************************/
/****************************************

ページャー

*****************************************/
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 80px;
}

.pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 20px;
  border: 1px solid #66b116;
  background: #fff;
  color: #66b116;
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.pager a.page-numbers:hover {
  background: #66b116;
  color: #fff;
  box-shadow: 0 10px 20px rgba(141, 198, 63, 0.25);
}

.pager .page-numbers.current {
  background: #66b116;
  color: #fff;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(141, 198, 63, 0.25);
}

.pager .next,
.pager .prev {
  padding: 0 28px;
  letter-spacing: 0.05em;
}

.pager a.page-numbers:focus-visible {
  outline: 3px solid #333;
  outline-offset: 2px;
}

@media screen and (max-width: 768px) {
  .pager {
    gap: 8px;
    margin-top: 50px;
  }
  .pager .page-numbers {
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 1.5rem;
  }
  .pager .next,
  .pager .prev {
    padding: 0 18px;
  }
}
@media screen and (max-width: 767px) {
  .pager {
    gap: 8px;
    margin-top: 50px;
  }
  .pager .page-numbers {
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 1.5rem;
  }
  .pager .next,
  .pager .prev {
    padding: 0 18px;
  }
}
/****************************************

ポストナビ

*****************************************/
.post_nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border: 1px solid #66b116;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.02);
}

/* 各ブロック */
.post_nav_item {
  position: relative;
  min-height: 70px;
  transition: background 0.3s ease;
}

/* 区切り線 */
.post_nav_item:not(:last-child) {
  border-right: 1px solid #66b116;
}

/* リンク */
.post_nav_item a,
.post_nav_item.archive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #66b116;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}

/* アイコン */
.post_nav_item .icon {
  font-size: 3rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.post_nav_item.prev .icon,
.post_nav_item.next .icon {
  font-size: 1.7rem;
}

/* hover */
.post_nav_item a:hover {
  background: #66b116;
}

.post_nav_item:hover a,
.post_nav_item.archive:hover {
  color: #fff;
  background: #66b116;
}

/* フォーカス */
.post_nav_item a:focus-visible,
.post_nav_item.archive:focus-visible {
  outline: 3px solid #333;
  outline-offset: -3px;
}

@media screen and (max-width: 768px) {
  .post_nav {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .post_nav_item {
    min-height: 80px;
  }
  .post_nav_item a,
  .post_nav_item.archive {
    padding: 18px 15px;
    font-size: 1.6rem;
    gap: 10px;
  }
  .post_nav_item .icon {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .post_nav_item {
    min-height: 50px;
    width: 30%;
  }
  .post_nav_item.archive .icon {
    display: none;
  }
  .post_nav {
    display: flex;
  }
}
/* ================================
SP
================================ */
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
  /*改行解除*/
  .br_pc {
    display: none;
  }
  /*ページャー*/
  .pager {
    margin-top: 20px;
    margin-bottom: 80px;
    padding-bottom: 0;
  }
  /*一覧に戻る*/
  .nav-below {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 80px;
    flex-direction: initial;
  }
  .nav-below .list {
    width: 40%;
  }
  .nav-below .list a {
    font-size: 1.3rem;
  }
  .nav-below > a {
    width: 30%;
    font-size: 1.3rem;
  }
  /*パンくず*/
  .breadcrumb p {
    font-size: 1.2rem;
    text-align: left;
  }
  .breadcrumb_area {
    margin: 0 auto 15px;
  }
}
/****************************************

footer

*****************************************/
@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .br_sp {
    display: none;
  }
  .subhead {
    text-align: center;
    margin-bottom: 60px;
  }
  .single-box {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .single-box h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3.4rem;
    font-weight: bold;
  }
  .single-box .nav-below a {
    padding: 28px 20px;
    position: static;
  }
  .nav-below {
    max-width: 870px;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: none;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  /* spナビ インフォメーション */
  .sp_navi_info {
    margin: 30px auto;
    text-align: center;
  }
  .sp_navi_info a {
    font-size: 1.6rem;
  }
  .foot_bnr {
    width: 200px;
    margin: 0 auto 15px;
  }
  .sp_navi_info_txt,
  .sp_navi_info_txt a {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
  }
  .sp_navi_info_txt a:link,
  .sp_navi_info_txt a:visited,
  .sp_navi_info_txt a:hover,
  .sp_navi_info_txt a:active {
    font-weight: 500;
    text-decoration: none;
  }
  /* ----sp サイトマップ---- */
  .sp_footer_link {
    width: 100%;
    padding: 20px 20px 25px;
    margin-bottom: 20px;
    background: #eee;
    text-align: left;
  }
  .sp_footer_link .menu .menu-item {
    width: 100%;
    border-bottom: 1px solid #c9c9a3;
    cursor: pointer;
    color: #000;
    margin: 0 auto;
    font-size: 1.6rem;
    font-weight: bold;
    box-sizing: border-box;
  }
  .sp_footer_link .menu-item span {
    display: block;
    color: #cc0d1d;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.2;
  }
  .sp_footer_link .menu-item a {
    display: block;
    padding: 14px 20px;
    text-align: left;
    font-weight: 500;
    color: #cc0d1d;
  }
  .sp_footer_link .menu-item a:active,
  .sp_footer_link .menu-item a:hover,
  .sp_footer_link .menu-item a:link,
  .sp_footer_link .menu-item a:visited {
    text-decoration: none;
    color: #cc0d1d;
  }
  .sp_footer_link .sub-menu {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 7px 0;
    display: none;
  }
  .sp_footer_link .sub-menu li {
    position: relative;
    width: 100%;
    margin-bottom: 8px !important;
    border-bottom: none !important;
  }
  .sp_footer_link .sub-menu li a {
    color: #3e281a;
  }
  .sp_footer_link .sub-menu li::before {
    position: absolute;
    content: "";
    top: 40%;
    left: 10px;
    background: #cc0d1d;
    width: 6px;
    height: 8.6602540378px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 1;
  }
  .sp_footer_link .sub-menu li a {
    display: block;
    padding: 7px 10px 6px 25px;
    background: #fff;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: initial;
    color: #cc0d1d;
  }
  .sp_footer_link .sub-menu li a:active,
  .sp_footer_link .sub-menu li a:hover,
  .sp_footer_link .sub-menu li a:link,
  .sp_footer_link .sub-menu li a:visited {
    position: relative;
  }
  .sp_footer_link .menu-item-has-children {
    position: relative;
  }
  .sp_footer_link .menu-item-has-children:before,
  .sp_footer_link .menu-item-has-children:after {
    position: absolute;
    content: "";
    background: #000;
    transition: 0.2s ease-in-out;
  }
  .sp_footer_link .menu-item-has-children:before {
    top: 17px;
    right: 14px;
    width: 1px;
    height: 18px;
  }
  .sp_footer_link .menu-item-has-children:after {
    top: 25px;
    right: 5px;
    width: 18px;
    height: 1px;
  }
  .sp_footer_link .menu-item-has-children.menu_open:before {
    transform: rotate(-90deg);
    transition: 0.2s ease-in-out;
  }
  /* ----sp フローティングバナー---- */
  .sp_bnr {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 55px;
    bottom: 0;
    left: 0;
    z-index: 4;
  }
  .sp_bnr_parts {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    width: 50%;
    background: #cc0d1d;
    border-top: 1px solid #fff;
    letter-spacing: 0;
  }
  .sp_bnr_parts img {
    max-width: 20px;
    height: 20px;
    margin-bottom: 7px;
  }
  .sp_bnr_parts {
    width: 25%;
    flex-direction: column;
  }
  .sp_bnr_parts:last-child {
    background: #002765;
  }
  .sp_bnr_parts:not(:last-child) {
    border-right: 1px solid #fff;
  }
  .sp_bnr_parts p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .sp_bnr_parts a {
    position: absolute;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
}
/****************************************

Contact Form7

*****************************************/
/* フォームカラー */
.wpcf7 {
  width: 100%;
}

.wpcf7-form textarea {
  width: 100%;
  /*本文*/
  max-width: 100%;
  padding: 3px 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: 0.3s;
}
.wpcf7-form select {
  width: auto;
  padding: 3px 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: 0.3s;
}
.wpcf7-form input {
  width: 100% !important;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: 0.3s;
  /*ラジオボタン、チェックボタン*/
}

/* 送信ボタン */
.tc {
  text-align: center;
}

.wpcf7 .tc input[type=submit] {
  cursor: pointer;
  width: 410px !important;
  max-width: 100%;
  padding: 18px;
  box-shadow: none;
  border: 1px #cc0d1d solid;
  border-radius: 0;
  background-color: #cc0d1d;
  color: #fff;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.25s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 30px;
}

.wpcf7 .tc input[type=submit]:disabled {
  cursor: not-allowed;
  box-shadow: none !important;
  border: 1px solid #f8f8f8 !important;
  background-color: #f8f8f8 !important;
  color: #929292 !important;
}
.wpcf7 .tc input[type=submit]:hover {
  box-shadow: 0 0 1px 1px rgba(204, 13, 29, 0.3);
  background-color: #fff;
  color: #cc0d1d;
  transition: all 0.25s;
}
.wpcf7 .tc input[type=submit]:focus {
  outline: 0;
  border: 1px #cc0d1d solid;
  box-shadow: 0 0 2px 2px rgba(204, 13, 29, 0.5);
}

.wpcf7-text {
  width: 100%;
}

.form_row {
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #ccc;
  font-size: 1.2rem;
}
.form_row .form_label {
  width: 280px;
}
.form_row .form_label .required {
  display: inline-block;
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 3px 7px;
  background: #b20000;
  margin-right: 10px;
  border-radius: 0;
  line-height: initial;
}
.form_row .form_label .any {
  display: inline-block;
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 3px 7px;
  background: #888888;
  margin-right: 10px;
  border-radius: 0;
  line-height: initial;
}
.form_row .form_input {
  width: calc(100% - 280px);
}
.form_row .form_input_post {
  width: 180px;
}
.form_row .form_input_post_txt {
  color: #b20000;
  font-weight: normal;
  font-size: 1.3rem;
}

.form_row.last_row {
  padding-bottom: 0;
  border-bottom: none;
}

.wpcf7 .form_input_post input[type=tel],
.wpcf7 .form_input input[type=email],
.wpcf7 .form_input input[type=tel],
.wpcf7 .form_input input[type=text],
.wpcf7 .form_input_post input[type=text],
.wpcf7 .form_input textarea {
  position: relative;
  border-left: 2px solid #cc0d1d;
}

/* フォームの装飾ここから */
/* チェックボックス */
.wpcf7 .form_input input[type=checkbox] {
  display: none;
}
.wpcf7 .form_input input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #cc0d1d;
  border-radius: 4px;
  background-color: #fefefe;
  box-sizing: border-box;
}
.wpcf7 .form_input input[type=checkbox] + span:after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.44em;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #cc0d1d;
  border-right: 3px solid #cc0d1d;
  box-sizing: border-box;
  transform: rotate(40deg);
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span {
  color: #002565;
  transition: all 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:before {
  opacity: 1;
  border: 1px solid #cc0d1d;
  box-shadow: 0 0 2px 2px rgba(204, 13, 29, 0.5);
  background-color: #cc0d1d;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: opacity 0.25s ease;
}

/* ラジオボタン */
.wpcf7 .form_input input[type=radio] {
  display: none;
}
.wpcf7 .form_input input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #666;
  border-radius: 50%;
  background-color: #fefefe;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
  transform: translateY(-50%);
}
.wpcf7 .form_input input[type=radio] + span:after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio]:checked + span:before {
  box-shadow: 0 0 2px 2px rgba(204, 13, 29, 0.5);
}
.wpcf7 .form_input input[type=radio]:checked + span:after {
  opacity: 1;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #cc0d1d;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
  transform: translateY(-50%);
}

/* セレクト */
.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #cc0d1d;
  border-right: 1px solid #cc0d1d;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:focus-within::after {
  border-bottom: 1px solid #cc0d1d;
  border-right: 1px solid #cc0d1d;
}

.wpcf7 .form_input select {
  cursor: pointer;
  width: 250px;
  max-width: 100%;
  margin: 0;
  padding: 0.5em 3.5em 0.5em 1em;
  border: 1px solid #cc0d1d;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  background-image: linear-gradient(90deg, rgba(204, 13, 29, 0.7), rgba(204, 13, 29, 0.7));
  background-position: 100% 0;
  background-size: 2em 3.5em;
  background-repeat: no-repeat;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  box-sizing: border-box;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.wpcf7 .form_input select:-ms-expand {
  display: none;
}

.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 60%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}

/* テキストフィールド フォーカス時 */
.wpcf7 .form_input input[type=text]:focus,
.wpcf7 .form_input input[type=tel]:focus,
.wpcf7 .form_input input[type=email]:focus,
.wpcf7 .form_input input[type=url]:focus,
.wpcf7 .form_input input[type=date]:focus,
.wpcf7 .form_input input[type=number]:focus,
.wpcf7 .form_input_post input[type=text]:focus,
.wpcf7 .form_input textarea:focus,
.wpcf7 .form_input_post input[type=tel]:focus {
  outline: 0;
  border: 1px #002565 solid;
  box-shadow: 0 0 1px 1px rgba(204, 13, 29, 0.3);
}

.wpcf7 .form_input select:focus {
  outline: 0;
  border: 1px #002565 solid;
  box-shadow: 0 0 1px 1px rgba(204, 13, 29, 0.3);
}

.wpcf7-response-output {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
  .feature {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  main#top_main {
    margin: 0;
  }
  .sp_none {
    display: none;
  }
  .wpcf7-form textarea {
    width: 100% !important;
    /*本文*/
  }
  .wpcf7-form input {
    max-width: 100% !important;
    /*ラジオボタン、チェックボタン*/
  }
  .wpcf7-submit {
    width: 100%;
  }
  .wpcf7 .tc input[type=submit] {
    font-size: 16px;
  }
  .form_row {
    flex-direction: column;
    padding: 0 0 30px;
  }
  .form_row .form_label {
    width: 100%;
    margin-bottom: 10px;
  }
  .form_row .form_input {
    width: 100%;
  }
  .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
  }
  .wpcf7-radio .wpcf7-list-item {
    margin-left: 10px;
  }
  .ajax-loader {
    width: auto;
  }
  .wpcf7-response-output {
    font-size: 1.3rem;
  }
}
/****************************************

追加分

*****************************************/
@media screen and (max-width: 767px) {
  .top_box01 {
    padding: 40px 10px;
    margin: 0;
  }
  .top_box01 p {
    text-align: left;
    font-size: 1.5rem;
  }
  .top_headline_new {
    height: 114px;
    background-size: 395px auto;
    background-position: center top;
    margin-bottom: 20px;
  }
  .top_box01_img {
    margin: 30px 0;
  }
  .bnr {
    width: 310px;
    margin: 0 auto;
  }
  .top_box02_bg {
    padding: 50px 0 40px;
  }
  .top_box02 {
    margin: 0;
    padding: 0 10px;
  }
  .top_tit01 {
    margin-bottom: 15px;
  }
  .top_box02_link li .top_box02_inner {
    padding: 40px 20px 30px;
  }
  .top_box02_link li .top_box02_inner h3 {
    margin-bottom: 10px;
  }
  .top_box02_link li .top_box02_inner .bnr02 {
    margin: 20px auto 0;
  }
  .top_box02_link img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 220px;
  }
}
/*ホーム*/
.top_box03 {
  padding: 60px 0 40px;
  margin: 0;
}
.top_box03 .bnr {
  margin: 0 auto;
}

.top_tit03 {
  margin-bottom: 10px;
}

.news_post {
  margin: 0 0 30px;
  padding: 0 10px;
}

.top_box04 {
  padding: 30px 20px 240px;
  margin: 0 10px 60px;
  width: calc(100% - 20px);
}

.nav-below {
  width: 80%;
}
.nav-below a {
  padding: 28px 70px;
  position: static;
}
.nav-below p {
  flex-wrap: nowrap;
  width: 100%;
}
.nav-below .return {
  position: static;
}

.nav-below a:first-of-type:after,
.nav-below a:nth-of-type(3):after {
  display: none;
}

.pc-floating__btn {
  position: fixed;
  right: 0;
  bottom: 90px;
  z-index: 99999;
}

@media screen and (max-width: 767px) {
  /*ヘッダー*/
  .nav-below {
    width: 100%;
  }
  .nav-below p {
    gap: 1%;
  }
  .nav-below a {
    padding: 25px 10px;
    font-size: 1.4rem;
    margin: 0;
  }
  #toggle {
    position: fixed;
    right: 10px;
    top: 10px;
    width: 49px;
    height: 49px;
    background: rgba(204, 13, 29, 0.95);
    border: 1px solid rgba(225, 225, 225, 0.9);
    padding: 12px;
    border-radius: 50px;
    z-index: 999999;
  }
  #toggle span {
    background: #fff;
    filter: initial;
    height: 2px;
  }
  #toggle span:first-child {
    top: 0px;
  }
  #toggle span:nth-child(2) {
    top: 10px;
  }
  #toggle span:nth-child(3) {
    top: 20px;
  }
  #toggle p {
    padding-top: 19px;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 0.06em;
  }
  .open_navi #toggle span {
    background: #fff;
    transform: translateY(-50%) rotate(315deg) !important;
  }
  .open_navi #toggle span:first-child {
    top: 10px;
  }
  .open_navi #toggle span:nth-child(3) {
    top: 10px;
    transform: translateY(-50%) rotate(405deg) !important;
  }
  #sp-slider {
    position: relative;
    width: 100%;
    left: auto;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #sp-slider .sp_slider_txt {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    z-index: 9;
  }
  #sp-slider .metaslider img {
    width: 100%;
    height: calc(100vh - 230px);
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  #sp-slider li:nth-child(2) img {
    -o-object-position: left top;
       object-position: left top;
  }
  #sp-slider li:nth-child(4) img {
    -o-object-position: 34% top;
       object-position: 34% top;
  }
  .menu-sp_footer_link-container {
    background: url(images/gallery01.jpg) no-repeat right bottom;
    background-size: cover;
  }
  #sp_navi,
  #menu-sp_footer_link {
    background: rgba(204, 13, 29, 0.9);
  }
  #sp_navi .menu,
  #menu-sp_footer_link .menu {
    border-top: 1px solid rgba(225, 225, 225, 0.26) !important;
    margin: 0 15px;
    padding: 0 0 30px !important;
  }
  #sp_navi .menu a,
  #menu-sp_footer_link .menu a {
    font-size: 1.7rem;
    font-weight: 500;
    color: #cc0d1d;
  }
  #sp_navi .menu a span,
  #menu-sp_footer_link .menu a span {
    color: rgba(225, 225, 225, 0.1);
    font-size: 1.2rem;
  }
  #sp_navi .menu .menu-item-has-children.menu_open:before,
  #menu-sp_footer_link .menu .menu-item-has-children.menu_open:before {
    top: 12px;
    transform: rotate(180deg);
  }
  #sp_navi .menu-item,
  #menu-sp_footer_link .menu-item {
    text-align: left !important;
    color: #cc0d1d !important;
    padding: 0 10px !important;
    border-bottom: 1px solid rgba(225, 225, 225, 0.26) !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    font-weight: 600;
  }
  #sp_navi .menu-item::before,
  #menu-sp_footer_link .menu-item::before {
    border: none;
    top: 12px;
    right: 10px;
    width: 30px;
    height: 30px;
    transform: rotate(360deg);
    background: url(images/sp_navi_arrow.svg) no-repeat top left;
  }
  #sp_navi .menu-item,
  #menu-sp_footer_link .menu-item {
    font-weight: 500;
  }
  #sp_navi .sp_navi_logo img,
  #menu-sp_footer_link .sp_navi_logo img {
    width: auto;
  }
  #sp_navi .sub-menu,
  #menu-sp_footer_link .sub-menu {
    padding: 0 0 10px;
  }
  #sp_navi .sub-menu li,
  #menu-sp_footer_link .sub-menu li {
    border: none !important;
    margin-bottom: 5px !important;
    padding: 0 !important;
  }
  #sp_navi .sub-menu li:last-child a,
  #menu-sp_footer_link .sub-menu li:last-child a {
    padding: auto;
  }
  #sp_navi .sub-menu li a,
  #menu-sp_footer_link .sub-menu li a {
    font-size: 1.4rem;
    padding: 8px 12px !important;
    background: rgba(255, 255, 255, 0.16);
    color: #3e281a;
  }
  #sp_navi .sub-menu li a::before,
  #menu-sp_footer_link .sub-menu li a::before {
    display: none;
  }
  #menu-sp_footer_link {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 15px 30px;
  }
  #menu-sp_footer_link .menu a {
    color: #3e281a;
  }
  .sp_navi_info .sp_navi_list .tel {
    font-size: inherit;
    background-size: contain;
    line-height: normal;
    margin-bottom: 10px;
    padding-left: 40px;
  }
  .sp_navi_info .sp_navi_list .tel a {
    color: #cc0d1d;
    font-size: 2.4rem;
  }
  .sp_navi_info .bottom_area_txt {
    font-size: 1.4rem;
    text-align: center !important;
  }
  .logo {
    left: 15px;
  }
  /*全ページ共通*/
  dd,
  dt,
  li,
  p,
  tr,
  tt {
    font-size: 1.4rem;
  }
  .breadcrumb_area {
    margin-bottom: 25px;
  }
  .txt520,
  .txt590,
  .txt600,
  .txt620,
  .txt650 {
    margin-bottom: 20px;
  }
  span.orange,
  span.green {
    font-size: 2.6rem;
  }
  .footer_logo {
    margin: 20px;
    width: 180px;
  }
  .sp_footer_box .info {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
  }
  .footer_btn {
    flex-direction: initial;
  }
  .footer_btn div {
    padding-left: 15px;
    margin-top: 0;
  }
  .footer_btn a {
    font-size: 1.4rem;
  }
  #bottom_area .bottom_area_tel a {
    color: #3e281a;
  }
  #bottom_area .bottom_area_txt {
    font-size: 1.4rem;
    text-align: center !important;
  }
  .greeting_box01_txt .tit_wrap {
    justify-content: center;
  }
  .greeting_box01_txt .tit_wrap .store_name {
    width: 130px;
  }
  .greeting_box01_txt p {
    text-align: left;
    display: flex;
    justify-content: center;
  }
  .news_list {
    margin-right: 0;
  }
  .news_list a {
    font-size: 1.4rem;
  }
  .top_box03 {
    padding-top: 50px;
  }
  /*こだわり*/
  .commitment_box01_txt .tit_wrap .first-letter {
    padding: 9px 11px 13px;
  }
  .commitment_box01_txt h2 {
    background: linear-gradient(transparent 50%, #e0cc79 50%) !important;
  }
  /*店舗ギャラリー*/
  .gallery_list_parts {
    margin: 0 2% 10px 0;
  }
  /*ブログ*/
  .blog_parts figure {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px;
  }
  /*お問い合わせ*/
  .contact_box01 {
    text-align: left;
    margin-bottom: 30px;
  }
  .sitepolicy {
    text-align: left;
    padding: 25px;
  }
  /*フッター*/
  .sp_footer_box {
    padding: 20px 0 30px;
    background: url(images/sp_footer_bg.jpg) left top no-repeat !important;
    background-size: auto !important;
  }
  .sp_footer_box .map {
    margin-bottom: 10px;
  }
  .sp_footer_box .map iframe {
    height: 300px;
  }
  /*下層共通*/
  .pagetit {
    font-size: 2.6rem !important;
  }
  .subhead {
    font-size: 2.5rem;
  }
  .tit01 {
    font-size: 1.8rem;
  }
  .left_img {
    margin-bottom: 20px;
  }
  .bottom_contact {
    display: none;
  }
  .mb80 {
    margin-bottom: 50px;
  }
  /*ご挨拶*/
  .name {
    margin-top: 15px;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .table01 tr th,
  .table01 tr td {
    width: 100%;
    display: block;
  }
  .menu_table02 tr {
    width: 100% !important;
  }
  /*フッター*/
  #bottom_area .bottom_area_tel .num {
    margin: 0 auto 10px;
  }
  #bottom_area {
    text-align: center;
    margin: 0 10px 15px;
  }
  .btn01 a,
  .btn02 a {
    color: #fff;
  }
  #main_visual img {
    position: static;
    width: 100%;
    left: auto;
  }
  .sp_logo {
    width: 200px;
    margin: 5px 0 0 15px;
    padding: 15px 0px;
  }
  #teaser {
    height: 140px;
    margin-bottom: 10px;
  }
  #teaser img {
    width: 220%;
    left: -60%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  h1.headline {
    margin-bottom: 20px;
  }
  .page06_box01 .flex_box,
  .page08_box02 .flex_box {
    flex-direction: initial;
    flex-wrap: wrap;
  }
  .page06_box01 .flex_box li,
  .page08_box02 .flex_box li {
    width: 47.5%;
    margin: 0 auto 10px;
  }
  #sp_navi .sp_navi_logo {
    max-width: 200px;
    margin: 15px 20px 20px;
  }
  .sp_navi_info .btn {
    display: inline-block;
    background: url(images/icon02.png) no-repeat 0 7px;
    padding-left: 30px;
    margin-bottom: 10px;
  }
  .sp_navi_info .btn a {
    font-weight: bold;
    color: #030303;
    text-decoration: none;
    font-size: 1.6rem;
  }
  .sp_navi_info .tel {
    margin-top: 15px;
  }
  .top_bana_box01 li::before {
    z-index: 2;
  }
  .menu-item::before {
    border: none;
    top: 12px;
    right: 10px;
    width: 30px;
    height: 30px;
    transform: rotate(360deg);
    background: url("images/sp_navi_arrow.svg") no-repeat top left;
  }
  .menu-item-has-children.menu_open:before {
    transform: rotate(-90deg);
    transition: 0.2s ease-in-out;
  }
  .sp_foot_info li {
    text-align: center;
  }
  .sp_foot_info li:first-child {
    margin-bottom: 15px;
  }
  .sp_foot_info img {
    width: auto;
  }
  #sp_navi .menu a {
    color: #fff;
  }
  #sp_navi .menu-item::before {
    top: 15px;
  }
  #sp_navi .sub-menu li a {
    font-weight: 400;
    color: #3e281a;
  }
  .sp_bana div img {
    max-width: 28px;
    height: 20px;
  }
  .sp_bana div:nth-child(4) {
    background: #002765;
  }
  .sp_navi_info .footer_banner img {
    width: auto;
  }
  .font_size22 {
    font-size: 2rem;
  }
  .txt_center {
    text-align: left;
  }
  .footer_txt {
    margin-bottom: 20px;
  }
  .footer_txt p {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    font-size: 1.5rem;
  }
  .footer_wrap {
    display: block;
  }
  .copyright {
    color: #ccc;
  }
  /* ----sp サイトマップ---- */
  #sp_footer .menu {
    background: #fff;
    background-size: 230px;
    padding: 20px 20px 30px;
  }
  #menu-sp_footer_link .sub-menu {
    border-color: #ddd;
  }
  #menu-sp_footer_link .sub-menu li a {
    background: rgba(204, 13, 29, 0.8);
    padding: 2px 10px !important;
    color: #fff !important;
    text-decoration: none;
    font-weight: 400;
    font-family: "Noto Sans JP", "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  #menu-sp_footer_link .menu-item-has-children {
    position: relative;
  }
  #menu-sp_footer_link .menu-item-has-children::before {
    position: absolute;
    content: "";
    border: none;
    top: 12px;
    right: 10px;
    width: 30px;
    height: 30px;
    transform: rotate(360deg);
    background: url(images/sp_navi_arrow02.svg) no-repeat top left;
  }
  #menu-sp_footer_link .menu-item-has-children.menu_open:before {
    top: 12px;
    transform: rotate(180deg);
  }
  #menu-sp_footer_link .menu-item {
    padding: 10px 0 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    font-size: 1.7rem;
  }
  #menu-sp_footer_link .menu-item a {
    padding: 10px 0;
    text-decoration: none;
    font-weight: 400;
    color: #cc0d1d;
  }
  .sp_footer_content {
    background: rgba(204, 13, 29, 0.3);
    margin: 0;
    padding-bottom: 30px;
  }
  .top_access_map {
    height: 260px;
  }
  .top_access_map iframe {
    height: 100%;
  }
  #menu-sp_footer_link .sub-menu {
    padding-top: 10px;
  }
  #menu-sp_footer_link .sub-menu::before {
    display: none;
  }
  #menu-sp_footer_link .sub-menu {
    display: none;
  }
  #menu-sp_footer_link .sub-menu a {
    display: block;
  }
  #menu-sp_footer_link .menu-item.is-open > .sub-menu {
    display: block;
    padding: 5px 0 5px 28px;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
  }
  #sp_header {
    padding: 19px;
  }
  .header__top {
    position: static;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
  }
  .header__logo {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
  }
  .header__logo img {
    width: 85px;
  }
  #sp-slider {
    padding-top: 57px;
  }
  a.btn01 {
    padding: 25px 20px;
  }
  .top-box02__list {
    margin-bottom: 2%;
  }
  .top-box02,
  .top-box03 {
    padding: 50px 0;
  }
  .top-box03 {
    padding: 50px 0 100px;
  }
  #contents .top-box03 {
    padding-bottom: 100px;
  }
  .women__inner li .title-hidden {
    padding: 10px;
    font-size: 1.5rem;
  }
  .top-box04 {
    margin: 54px auto 0;
    padding: 0;
  }
  .top-box04__title {
    font-size: 2.3rem;
    padding: 0 15px;
    margin-bottom: 20px;
  }
  .slider-btn {
    transform: translateX(-50%);
    top: auto;
    bottom: 40px;
  }
  .catch {
    right: auto;
    left: auto;
    top: auto;
    transform: initial;
  }
  .sp-footer__btn {
    border-top: 1px solid #fff;
  }
  .top-box03__list {
    text-align: center;
    max-width: 100%;
  }
  .top-box03__list img {
    width: auto;
    margin: 0 auto;
  }
  .top-box03__list .top-box03__list__bottom {
    text-align: left;
  }
  .sp-footer__box {
    padding: 35px 20px;
    background: #f3ede6;
    border-top: 1px solid #bbb;
  }
  .sp-footer__info {
    background: url(images/sp_footer-info.png) no-repeat top center;
    height: 166px;
    margin-bottom: 26px;
    padding-bottom: 25px;
    border-bottom: 1px solid #bbb;
  }
  main#page-main {
    margin: 0;
  }
  main#page-main h1 {
    text-align: center;
    margin-bottom: 35px;
  }
  .headline_wrap {
    padding: 30px 0 0;
  }
  h1.headline {
    font-size: 3rem;
    margin-bottom: 25px;
  }
  .main-visual {
    -o-object-fit: cover;
       object-fit: cover;
    height: 130px;
  }
  .main-visual img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left top;
       object-position: left top;
  }
  .greeting {
    margin: 0;
    padding-top: 45px;
  }
  .top-box01__txt {
    padding: 50px 15px;
  }
  .top-box01__btn,
  .top-box02__btn,
  .top-box04__btn {
    margin: 30px auto 0;
    max-width: 280px;
    padding: 0;
  }
  .top-box02__inner {
    padding: 0 15px;
  }
  .women-btn,
  .men-btn {
    margin: 0 auto 10px;
  }
  .top-box03__title {
    margin-bottom: 35px;
  }
  .top-box04 {
    margin-top: 45px;
  }
  .top-box04__txt {
    background: none;
    padding: 0 15px 50px;
  }
  .greeting__txt {
    padding: 0 15px 45px;
    background: none;
  }
  .about-box02__txt {
    background: none;
    padding: 0 15px 45px;
    margin-top: 115px;
  }
  .about-box02 {
    margin: 0;
  }
  #greeting__title {
    position: relative;
  }
  .greeting__txt {
    padding-bottom: 50px;
  }
  .subhead02 {
    padding-bottom: 50px;
  }
  .subhead02 span.en {
    font-size: 3rem;
  }
  .subhead02 span.jp {
    font-size: 1.7rem;
    padding-top: 26px;
  }
  .price {
    padding: 45px 15px;
  }
  .price__title {
    font-size: 2.6rem;
  }
  .contact {
    padding: 25px 12px;
    display: none;
  }
  .contact__title {
    font-size: 1.9rem;
    margin-bottom: 15px;
    text-align: left;
  }
  #contents {
    padding: 45px 0 0;
  }
  #contents .top-box03 {
    padding: 45px 0;
  }
  .treatment__box {
    padding: 205px 15px 45px;
    background: url(images/treatment__box-bg.png) no-repeat center top 47px, #f3ede6;
    background-size: auto 180px;
  }
  .treatment__box__title {
    padding: 0;
    margin-bottom: 40px;
  }
  .treatment__box__title .xs {
    font-size: 1.6rem;
  }
  .treatment__box__title .l {
    font-size: 4.6rem;
  }
  .treatment__box__title .s {
    font-size: 2.2rem;
  }
  .treatment__box__inner {
    padding: 0;
  }
  .point__title {
    margin-bottom: 15px;
    font-size: 2rem;
  }
  .worries__title {
    font-size: 2.2rem;
  }
  .worries {
    padding: 0;
  }
  .worries__box__title {
    font-size: 1.8rem;
    padding: 6px 0;
  }
  .worries__txt {
    font-size: 1.6rem;
  }
  .treatment__box02 {
    padding: 45px 15px;
  }
  .treatment__box02__title {
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .treatment__box02__title span {
    height: 40px;
    background-position: center;
  }
  .treatment__box02__inner {
    padding-top: 180px;
    margin-top: 20px;
  }
  .treatment__box02__inner::before {
    background-size: contain;
    z-index: 0;
    left: 50%;
    top: 0;
    padding-top: 0;
    height: 180px;
    background-position: center top;
    transform: translateX(-50%);
  }
  .treatment__box02 {
    z-index: -1;
  }
  .treatment__box02__inner .container {
    padding: 0;
  }
  .treatment__box02__inner__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .treatment__box02__inner__title span {
    background-position: center;
  }
  .feature {
    margin-top: 30px;
    padding: 0;
    gap: 2%;
    justify-content: center;
  }
  .feature li {
    font-size: 2.6rem;
    aspect-ratio: 1/1;
    margin-bottom: 2%;
    border-radius: 100vmax;
    height: 100%;
    max-width: 170px;
  }
  .feature li span {
    font-size: 2.4rem;
  }
  .treatment__box02__inner02__txt {
    text-align: left;
  }
  .treatment__box02__inner02 {
    padding: 0;
  }
  .headspa__box {
    padding: 45px 15px 100px;
  }
  .subhead02--33 {
    padding-bottom: 30px;
  }
  .subhead02--33::after {
    top: 43%;
  }
  .subhead02--33 span.jp {
    padding-top: 36px;
  }
  .aroma__list {
    padding: 15px 15px 25px;
  }
  .effect {
    display: inline-block;
    padding: 3px 15px;
    width: 100%;
    height: auto;
  }
  .aroma__title {
    font-size: 2.1rem;
  }
  .contact--02,
  .contact--03 {
    width: calc(100% - 20px);
    margin: 45px auto;
  }
  .perm__box {
    padding: 0 15px;
  }
  .perm__box__inner__txt {
    padding-bottom: 30px;
  }
  .perm__box02 {
    margin-top: 45px;
  }
  .perm__box02__inner__left h3 span {
    font-size: 2.7rem;
  }
  .perm__box02__inner__left .en {
    font-size: 5rem;
  }
  .perm__box03 {
    padding: 15px 0 0;
  }
  .perm__box03__title {
    margin-bottom: 30px;
  }
  .perm__box03__title span {
    font-size: 2.8rem;
  }
  .perm__box03__title .jp {
    font-size: 4rem;
  }
  .perm__box03__inner02 {
    margin-top: 40px;
    padding: 0 15px 70px;
  }
  .perm__box03__list h4 {
    min-height: initial;
  }
  .items__txt {
    text-align: left;
    padding: 0 15px;
  }
  .items__box {
    padding: 45px 15px;
  }
  .items__box__right {
    padding: 0;
  }
  .items__box__title .black {
    margin-top: 20px;
  }
  .items__box__txt__inner {
    margin-top: 25px;
  }
  .items__box__txt__inner .title {
    font-size: 1.8rem;
  }
  .items__box__inner02 {
    padding: 0;
    flex-direction: initial;
    gap: 2%;
  }
  .items__box__inner02 .font-size30 {
    font-size: 2.2rem;
  }
  .items__box__inner02 .font-size24 {
    font-size: 2rem;
  }
  .items__box__inner02 .font-size22,
  .items__box__inner02 .font-size23 {
    font-size: 1.8rem;
  }
  .items__box__inner02 li {
    width: 49%;
    aspect-ratio: 1/1;
    margin-bottom: 2%;
    padding: 0 20px;
    height: auto;
  }
  .items__box__inner02 li span {
    margin-bottom: 5px;
  }
  .items__box__inner02 li p {
    text-align: left;
  }
  .items__box__inner02 li p br {
    display: none;
  }
  .items__box__inner03__title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .items__box02__inner {
    flex-direction: column-reverse;
  }
  .items__box02 {
    padding: 45px 15px 100px;
  }
  .items__box02__txt .title {
    margin-bottom: 10px;
  }
  .women__inner li {
    margin-bottom: 2%;
  }
  .overview__table th {
    width: 130px;
  }
  .overview__table {
    background: url(images/border.jpg) no-repeat -60px 0, url(images/border.jpg) no-repeat -60px bottom;
  }
  .ggmap {
    height: 260px;
  }
  #sp-slider {
    padding: 0;
  }
  .pc-footer__logo {
    margin-bottom: 20px;
    text-align: center;
  }
  .pc-footer__logo img {
    width: 120px;
  }
  .contact--02,
  .contact--03 {
    margin-bottom: 100px;
    display: none;
  }
  .overview {
    padding: 45px 0;
  }
  .gallery {
    padding-bottom: 100px;
  }
  .about-box02__inner {
    padding-bottom: 0;
  }
  #menu-sp_footer_link .sub-menu {
    padding: 10px;
  }
  .custom-single__title {
    font-size: 2.4rem;
  }
  .single-box {
    padding: 10px 15px;
  }
  .single-box .nav-below {
    gap: 2%;
    padding: 0;
  }
  .single-box .nav-below a {
    position: static;
  }
  .single-box h2 {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .custom-single .nav-below {
    gap: 2%;
    padding: 0 15px;
  }
}