@charset "UTF-8";
/*
Theme Name: スターズ鍼灸整骨院04
Description: スターズ鍼灸整骨院用テーマファイル 2023/02〜
Author: コムデザインラボ
*/
@media screen and (max-width: 768px) {}
:root {
  --main: #0065B2; /* var(--main)で色が出力される */
  --sub: #E5F0F7;
  --sub02: #66A3D1;
  --accent: #FFF200;
  --accent02: #FFF760;
  --base: #666666; /*4D4D4D*/
  --radius: 10px;
}
/*------------------------------------------------------------
BASE
------------------------------------------------------------*/
html {
  font-size: 10px;
  width: 100%;
  height: 100%;
  line-height: 1;
}
body {
  width: 100%;
  min-width: 1200px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Arial, "メイリオ", "Meiryo", sans-serif;
  /*font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;*/
  color: var(--base);
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  padding-top: 0 !important;
  counter-reset: item; /*olの数字カウンターリセットのため*/
}
@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
    line-height: 1.8;
    letter-spacing: 0.05rem;
  }
}
section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}
div::after, ul::after, .clearfix::after {
  content: "";
  display: block;
  clear: both;
}
p {
  margin-bottom: 15px;
  text-align: justify;
}
p:last-child {
  margin-bottom: 0;
}
::selection { /*テキスト選択したとき https://metrograph.jp/text_selection_style/ */
  /*background: var(--main);
  color: #fff;*/
}
/*Firefox*/ ::-moz-selection {
  background: var(--main);
  color: #fff;
}
a {
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  opacity: 0.6;
  transition: 0.2s;
}
ul {
  list-style: none;
}
dl {
  display: flex;
}
dt {
  font-weight: normal;
  text-align: left;
}
table {
  width: 100%;
}
th {
  font-weight: normal;
  text-align: left;
}
thead th, thead td {
  font-weight: bold;
}
h2, h3, h4, h5, h6 {
  font-weight: bold;
}
img {
  max-width: 100%;
  height: auto;
}
svg {
  fill: currentColor;
  border: currentColor;
  max-width: 100%;
  height: auto;
}
/* 基本のスタイル */
.delighter {
  transition: all .9s ease;
  transform: translateY(20%);
  opacity: 0;
}
/* スタート時のスタイル */
.delighter.started {
  transform: none;
  opacity: 1;
}
/* エンド時のスタイル */
.delighter.started.ended {
  /*border: solid red 10px;*/
}
/*------------------------------------------------------------
CUSTOM / カスタム
------------------------------------------------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
.wrap {
  padding: 0;
  overflow: hidden;
}
.inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /*flex-direction: column; 縦に詰む時は入れる*/
}
.flex::after {
  content: none;
}
.opa {
  transition: 0.2s;
}
.opa:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.opa_wrap a {
  transition: 0.2s;
}
.opa_wrap a:hover {
  transition: opacity 0.2s;
  opacity: 0.6;
}
.ja { /*Adobeフォントを読み込んだ場合「Kinuta iroha 22momi StdN R」*/
  font-family: iroha-22momi-stdn, sans-serif;
  /*font-weight: 400;*/
  font-style: normal;
}
.en { /*Adobeフォントを読み込んだ場合「RooneySans Bold」
	font-family: rooney-sans, sans-serif;
	font-weight: 700;
	font-style: normal;*/
  font-family: 'DM Sans', sans-serif;
}
.ul_disc li {
  position: relative;
  padding-left: 1.5rem;
}
.ul_disc li::before {
  position: absolute;
  content: "・";
  left: 0;
}
ol li:before {
  counter-increment: item;
  content: counter(item)'.';
  padding-right: 0.7rem;
  font-weight: bold;
  color: var(--main);
}
.bg_main {
  background: var(--main);
}
.bg_sub {
  background: var(--sub);
}
.bg_sub02 {
  background: var(--sub02);
}
.bg_accent {
  background: var(--accent);
}
.bg_accent02 {
  background: var(--accent02);
}
.bg_white {
  background: #FFF;
}
.p_main {
  color: var(--main);
}
.p_sub {
  color: var(--sub);
}
.title_lead {
  font-weight: bold;
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: .3rem;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .title_lead {
    font-size: 1.3rem;
    letter-spacing: .12em;
  }
}
.btn {
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .btn {
    margin: 25px auto 0;
  }
}
.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
  padding: 10px 25px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background: var(--accent);
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .btn a {
    padding: 15px 10px;
    font-size: 1.4rem;
  }
}
.btn a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("images/arrow_navy_y.svg")no-repeat center / contain;
  transform: translate(-25px, -50%);
  transition: 0.2s;
  right: 0;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .btn a::before {
    width: 25px;
    height: 25px;
    transform: translate(-25px, -50%);
  }
}
.btn_S a {
  font-size: 1.2rem;
  color: var(--main);
  padding: 3px 10px 3px 20px;
  max-width: none;
  display: inline-block;
  padding-right: 35px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .btn_S a {
    max-width: 150px;
    width: 100%;
    font-size: 1.8rem;
    padding: 5px 40px 5px 20px;
  }
}
.btn_S a::before {
  transform: translate(-15px, -50%);
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 768px) {
  .btn_S a::before {
    transform: translate(-20px, -50%);
    width: 22px;
    height: 22px;
  }
}
.btn_white a {
  background: #FFF;
  color: var(--main);
}
.btn_white a::before {
  background: url("images/arrow_yellow.svg")no-repeat center / contain;
}
.btn_border a {
  background: none;
  border: 1px var(--main) solid;
  color: var(--main);
  /* padding: 10px 25px; */
}
.btn_border a::before {
  background: url("images/arrow_navy.svg")no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .btn_border a {
    border: 2px var(--main) solid;
  }
}
.btn_border_n_y a {
  background: none;
  border: 1px var(--main) solid;
  color: var(--main);
}
.btn_border_n_y a::before {
  background: url("images/arrow_navy_y.svg")no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .btn_border_n_y a {
    border: 2px var(--main) solid;
  }
}
.btn_border_w a {
  background: none;
  border: 1px #fff solid;
  color: #fff;
}
.btn_border_w a::before {
  background: url("images/arrow_white.svg")no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .btn_border_w a {
    border: 2px #fff solid;
  }
}
.btn_main a {
  background: var(--main);
  color: #FFF;
}
.btn_main a::before {
  background-image: url(images/arrow_white.svg);
}
.btn_main_y a {
  background: var(--main);
  color: var(--accent);
}
.btn_main_y a::before {
  background-image: url(images/arrow_yellow.svg);
}
.btn_back a {
  max-width: none;
}
.btn_back a::before {
  transform: translate(25px, -50%)rotate(180deg);
  left: 0;
}
.btn_tel a::before {
  background: url("images/icon_tel.svg") no-repeat center;
  width: calc(100px / 5);
  height: calc(150px / 5);
  right: inherit;
  left: 0;
  transform: translate(45px, -50%);
}
.btn_reserve a::before {
  background: url("images/icon_reserve.svg") no-repeat center;
  width: calc(100px / 4);
  height: calc(150px / 4);
  right: inherit;
  left: 0;
  transform: translate(65px, -50%);
}
.btn_tel a span, .btn_reserve a span {
  padding-left: 40px;
}
.btn_line a::before {
  content: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.h_beta {
  background: var(--main);
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  margin: 0 auto 0px;
}
@media screen and (max-width: 768px) {
  .h_beta {
    font-size: 1.4rem;
    padding: 2px 5px;
    letter-spacing: 0.1rem;
    width: 100%;
  }
}
.h_beta_sub {
  background: var(--sub);
  color: var(--main);
}
.h_border {
  margin: 0 auto 50px;
  color: var(--main);
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .h_border {
    margin: 0 auto 35px;
    font-size: 1.6rem;
    line-height: 2.4;
  }
}
.h_border > span {
  padding-bottom: 8px;
  border-bottom: 3px solid var(--main);
}
.h_border_white, .bg_main .h_border, .bg_sub02 .h_border {
  color: #FFF;
}
.h_border_white span, .bg_main .h_border span, .bg_sub02 .h_border span {
  border-color: #FFF;
}
.h_border02 {
  max-width: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .h_border02 {
    max-width: 240px;
  }
}
.h_border02::before, .h_border02::after {
  content: "";
  position: absolute;
  top: 0%;
  background: url(images/h_deco_add.svg) no-repeat center;
  height: 70px;
  width: 70px;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .h_border02::before, .h_border02::after {
    height: calc(70px / 2);
    width: calc(70px/ 2);
  }
}
.h_border02::before {
  left: 0;
  transform: translate(-170%, -10%);
}
@media screen and (max-width: 768px) {
  .h_border02::before {
    transform: translate(-80%, -10%);
  }
}
.h_border02::after {
  right: 0;
  transform: translate(170%, -10%) rotateY(180deg);
}
@media screen and (max-width: 768px) {
  .h_border02::after {
    transform: translate(70%, -10%) rotateY(180deg);
  }
}
.bg_sub .h_border02::before, .bg_sub .h_border02::after {
  background-image: url(images/h_deco_add_navy.svg);
}
.h_border_dot {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .h_border_dot {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    line-height: 3.0;
  }
}
.h_border_dot > span {
  padding-bottom: 15px;
  border-bottom: 2px dotted var(--main);
}
@media screen and (max-width: 768px) {
  .h_border_dot > span {
    padding-bottom: 10px;
  }
}
.h_border_dot > span .p_marker {
  padding: 8px 5px 8px 8px;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .h_border_dot > span .p_marker {
    letter-spacing: 0.2rem;
    font-size: 1.7rem;
  }
}
.h_deco {
  margin: 0 auto 50px;
  max-width: 280px;
  letter-spacing: 0.3rem;
  text-align: center;
  position: relative;
  font-size: 2.4rem;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .h_deco {
    margin: 0 auto 35px;
    max-width: 240px;
    letter-spacing: 0.2rem;
    font-size: 1.6rem;
  }
}
.h_deco::before, .h_deco::after {
  content: "";
  position: absolute;
  top: 0%;
  background: url("images/h_deco_add_yellow.svg") no-repeat center;
  height: 55px;
  width: 55px;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .h_deco::before, .h_deco::after {
    height: calc(55px / 1.5);
    width: calc(55px/ 1.5);
  }
}
.h_deco::before {
  left: 0;
  transform: translate(-150%, -0%);
}
.h_deco::after {
  right: 0;
  transform: translate(150%, -0%) rotateY(180deg);
}
@media screen and (max-width: 768px) {
  .h_deco::before {
    left: 0;
    transform: translate(-80%, 30%);
  }
  .h_deco::after {
    right: 0;
    transform: translate(80%, 30%) rotateY(180deg);
  }
}
.h_ribbon {
  margin: 0 auto 50px;
  max-width: 460px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .h_ribbon {
    max-width: calc(100% - 25px - 25px);
    margin: 0 auto 30px;
  }
}
.h_ribbon::before, .h_ribbon::after {
  content: "";
  position: absolute;
  top: 0%;
  background: url("images/h_deco_add.svg") no-repeat center;
  height: 80px;
  width: 80px;
  background-size: 100% auto;
}
.h_ribbon::before {
  left: 0;
  transform: translate(-170%, -0%);
}
.h_ribbon::after {
  right: 0;
  transform: translate(170%, -0%) rotateY(180deg);
}
.h_ribbon_S::before, .h_ribbon_S::after {
  content: none;
}
.h_border_white::before, .h_border_white::after, .h_ribbon_white::before, .h_ribbon_white::after {
  background-image: url(images/h_deco_add_navy.svg);
}
.h_ribbon > span {
  position: relative;
  max-width: 400px;
  height: 50px;
  width: 100%;
  background: rgba(0, 101, 178, 0.955);
  font-size: 2.0rem;
  color: #FFF;
  padding: 5px 10px;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 768px) {
  .h_ribbon > span {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    padding: 5px 0px 3px;
    height: 40px;
  }
}
.h_ribbon_white > span {
  background: rgba(255, 255, 255, 0.956);
  color: var(--main);
}
.h_ribbon_yellow > span {
  background: var(--accent);
  color: var(--main);
}
.h_ribbon_S > span {
  max-width: 300px;
  letter-spacing: 0.4rem;
}
.h_ribbon > span::before, .h_ribbon > span::after {
  content: "";
  position: absolute;
  top: 50%;
  background: url("images/h_deco_ribon.svg") no-repeat center;
  height: 50px;
  width: 25px;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .h_ribbon > span::before, .h_ribbon > span::after {
    height: 40px;
  }
}
.h_ribbon_white > span::before, .h_ribbon_white > span::after {
  background-image: url("images/h_deco_ribon_white.svg");
}
.h_ribbon_yellow > span::before, .h_ribbon_yellow > span::after {
  background-image: url("images/h_deco_ribon_yellow.svg");
}
.h_ribbon > span::before {
  left: 1px;
  transform: translate(-100%, -50%) rotateY(180deg);
}
.h_ribbon > span::after {
  right: 1px;
  transform: translate(100%, -50%);
}
.h_fuki {
  text-align: center;
  font-weight: bold;
  color: var(--main);
  font-size: 2.4rem;
  letter-spacing: 0.3rem;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .h_fuki {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    margin: 0 auto 30px;
  }
}
.bg_main .h_fuki {
  color: #FFF;
}
.h_fuki > span {
  position: relative;
  display: inline-block;
}
.h_fuki > span::before, .h_fuki > span::after {
  position: absolute;
  content: "";
  background: url('images/h_fuki.svg') no-repeat center;
  width: 30px;
  height: 44px;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .h_fuki > span::before, .h_fuki > span::after {
    width: calc(30px / 1.4);
    height: calc(44px/ 1.4);
  }
}
.bg_main .h_fuki > span::before, .bg_main .h_fuki > span::after {
  background: url('images/h_fuki_white.svg') no-repeat center;
}
.h_fuki > span::before {
  left: 0;
  transform: translate(-150%, -50%);
}
@media screen and (max-width: 768px) {
  .h_fuki > span::before {
    transform: translate(-100%, -50%);
  }
}
.h_fuki > span::after {
  right: 0;
  transform: translate(150%, -50%)rotateY(-180deg);
}
@media screen and (max-width: 768px) {
  .h_fuki > span::after {
    right: 0;
    transform: translate(100%, -50%)rotateY(-180deg);
  }
}
.h_fuki02 {
  max-width: 295px;
  width: 100%;
  margin: 0 auto 40px;
  background: var(--main);
  color: #FFF;
  text-align: center;
  position: relative;
  border-radius: 10px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .h_fuki02 {
    max-width: 75%;
    margin: 0 auto 30px;
  }
}
.bg_main .h_fuki02 {
  background: #FFF;
  color: var(--main);
}
.h_fuki02::before {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-top: 10px solid var(--main);
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 98%);
}
.bg_main .h_fuki02::before {
  border-top: 10px solid #FFF;
}
.h_nami {
  text-align: center;
  font-weight: bold;
  color: var(--accent);
  font-size: 3.5rem;
  letter-spacing: 0.5rem;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .h_nami {
    font-size: 2.0rem;
    letter-spacing: 0.4rem;
  }
}
.h_nami span {
  padding-bottom: 20px;
  background: url('images/h_nami.svg')repeat-x left bottom;
  background-size: auto 7px;
}
@media screen and (max-width: 768px) {
  .h_nami span {
    padding-bottom: 12px;
    background-size: auto 6px;
    line-height: 2.4;
  }
}
.div_deco {
  position: relative;
  border: 2px solid var(--main);
  border-left: none;
  border-right: none;
  padding: 35px 0;
  margin: 40px auto 0;
}
.div_deco_corner {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  border: 12px solid var(--accent02);
  border-radius: 50%;
  color: var(--main);
  background: var(--main);
  padding: 6px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .div_deco_corner {
    height: 6px;
    width: 6px;
    padding: 5px;
    border: 6px solid var(--accent02);
  }
}
.div_deco_corner_TL {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.div_deco_corner_TR {
  top: 0;
  right: 0;
  transform: translate(50%, -52%);
}
.div_deco_corner_BR {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}
.div_deco_corner_BL {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 52%);
}
.div_deco .div_deco_h {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  background: #FFF;
  color: var(--main);
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  display: inline-block;
}
.sup_reg {
  font-size: 150%;
  top: 3px;
}
@media screen and (max-width: 768px) {
  .div_deco .div_deco_h {
    padding: 0 15px;
    font-size: 1.6rem;
  }
}
.div_deco02 {
  position: relative;
  /* border-bottom: 2px var(--main) solid; */
}
.div_deco02::before {
  content: '';
  background: linear-gradient(90deg, var(--main) 14px, var(--main) 116px, transparent 116px, transparent 656px, var(--main) 656px, var(--main) 786px);
  width: calc(100% - 28px);
  height: 2px;
  position: absolute;
  top: -1px;
  left: 14px;
}
.div_deco02::after {
  content: '';
  background: var(--main);
  width: calc(100% - 28px);
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 14px;
}
.div_deco02_inner::before, .div_deco02_inner::after, .div_deco02_inbox::before, .div_deco02_inbox::after {
  content: '';
  background: var(--main);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
}
.div_deco02_inner::before {
  top: -6px;
  left: -6px;
}
.div_deco02_inner::after {
  top: -6px;
  right: -6px;
}
.div_deco02_inbox::before {
  bottom: -6px;
  left: -6px;
}
.div_deco02_inbox::after {
  bottom: -6px;
  right: -6px;
}
@media screen and (max-width: 768px) {
  .div_deco02 {
    padding: 30px 0;
    background: #fff;
  }
  .div_deco02::before {
    background: var(--main);
  }
}
.tag_list > ul, .tag_list .pc ul {
  margin: 0 -10px -15px;
}
.tag_list > ul > li, .tag_list .pc ul li {
  flex-basis: calc(calc(100% / 5) - 20px);
  margin: 0 10px 15px;
}
.tag_list > ul > li > a, .tag_list .pc ul li a {
  background: #FFF;
  display: flex;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.tag_list_more_btn {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.tag_list_more_btn .btn {
  margin: 0;
}
.tag_list_more_btn a {
  font-size: 1.5rem;
  padding: 4px 50px 6px 30px;
}
.tag_list_more_btn a::before {
  transform: translate(-17px, -50%)rotate(90deg);
  width: 17px;
  height: 17px;
}
.tag_list_more_btn a.active::before {
  transform: translate(-17px, -50%)rotate(-90deg);
}
.tag_list_more_bg {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--accent02));
  height: 50px;
  width: 100%;
  bottom: 30px;
}
.information_wrap {
  width: 100%;
  margin: 20px auto 0;
  border: 3px solid #E5F0F7;
  padding: 25px;
  display: flex;
  justify-content: center;
}
.information_wrap table {
  width: auto;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .information_wrap table {
    width: 100%;
    max-width: none;
  }
}
.information_wrap th {
  font-weight: bold;
  color: var(--main);
  width: 130px;
  padding: 4px 5px;
}
@media screen and (max-width: 768px) {
  .information_wrap th {
    width: 37%;
    font-size: 1.2rem;
  }
}
.information_wrap td {
  padding: 4px 5px;
}
@media screen and (max-width: 768px) {
  .information_wrap td {
    font-size: 1.2rem;
  }
}
a.not_link {
  pointer-events: none;
}
.p_marker {
  display: inline;
  padding: 10px 12px 10px 15px;
  color: var(--main);
  background: var(--accent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .p_marker {
    padding: 5px 10px;
  }
}
.box_shadow {
  box-shadow: 10px 10px 0 #B2D1E8;
}
.flow_list {
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .flow_list {
    margin: 40px auto 0;
  }
}
.flow_list ul {
  justify-content: space-between;
  align-items: inherit;
}
@media screen and (max-width: 768px) {
  .flow_list ul {
    justify-content: inherit;
  }
}
.flow_list li {
  flex-basis: 150px;
  margin: 0 0 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow_list li {
    flex-basis: 100%;
    display: flex;
    align-items: center;
  }
}
.flow_num {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--main);
  color: #FFF;
  font-size: 1.8rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-weight: bold;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .flow_num {
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    left: 0%;
    transform: translate(-40%, -50%);
  }
}
/* .flow_img {
  border-radius: 10px;
  overflow: hidden;
} */
@media screen and (max-width: 768px) {
  .flow_img {
    flex-basis: 35%;
  }
}
.flow_p {
  margin: 15px auto 0;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .flow_p {
    margin: 0px auto 0;
    margin-right: 0;
    flex-basis: calc(100% - 35% - 25px);
  }
}
.voice_list {
  display: flex;
  align-items: inherit;
}
.voice_list .slick-track {
  display: flex;
}
.voice_list .slick-slide {
  height: auto !important;
}
.voice_all .voice_list {
  justify-content: space-between;
  align-items: inherit;
}
.voice_list_loop.voice_list {
  justify-content: inherit;
  margin: 0 auto 0;
}
@media screen and (min-width: 768px) {
  .voice_list_wrap {
    margin: 60px auto 0;
  }
}
.voice_list .post_voice {
  display: flex;
  flex-basis: 455px;
  max-width: 455px;
  width: 100%;
  margin: 40px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .voice_list .post_voice {
    flex-basis: 100%;
    max-width: none;
  }
}
.voice_list.voice_list_loop .post_voice {
  margin: 50px 15px 0;
}
@media screen and (max-width: 768px) {
  .voice_list.voice_list_loop .post_voice {
    margin: 0px 0 0;
  }
}
.post_voice > a {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  background: #FFF;
  padding: 35px;
}
@media screen and (max-width: 768px) {
  .post_voice > a {
    padding: 20px 20px 40px;
  }
}
.voice_img {
  width: 100%;
  height: 260px;
  background: url("images/noimg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .voice_img {
    height: 180px;
  }
}
.voice_name {
  text-align: center;
  margin: 15px auto 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .voice_name {
    font-size: 1.4rem;
  }
}
.voice_title {
  margin: 10px auto 0;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .voice_title {
    font-size: 1.5rem;
  }
}
.voice_comment {
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .post_voice .voice_comment {
    font-size: 1.3rem;
  }
}
.voice_symptom {
  margin: 10px auto 0;
}
.voice_symptom ul {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.voice_symptom ul li {
  margin: 8px 4px 0;
}
.voice_symptom ul a {
  position: relative;
  display: flex;
  padding: 2px 13px 2px 23px;
  border: solid 1px var(--base);
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: bold;
}
.voice_symptom ul a::before {
  content: "#";
  position: absolute;
  left: 13px;
}
.voice_pickup {
  position: absolute;
  top: 0;
  left: 20px;
  max-width: 70px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .voice_pickup {
    max-width: 50px;
    left: 15px;
  }
}
.select_wrap select {
  width: 100%;
  background: #FFF;
  padding: 10px 15px;
  border-radius: 10px;
}
.select_wrap {
  position: relative;
}
.select_wrap::before {
  content: "";
  position: absolute;
  border: 7px solid transparent;
  border-top: 10px solid var(--main);
  right: 0;
  top: 50%;
  transform: translate(-100%, -25%);
  pointer-events: none;
}
/*------------------------------------------------------------
HEADER / ヘッダー
------------------------------------------------------------*/
.header_fix {
  width: 100%;
  background: var(--main);
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 100;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 768px) {
  .header_fix {
    transition: 0.2s;
  }
}
@media screen and (max-width: 768px) {
  .header_fix {
    display: none;
    height: 100vh;
    padding: 30px 0;
    /*transition: 0.2s;*/
  } /*
		.header_fix.active {
			display: block;
			transform: translate(0, 0%);
			transition: 0.2s;
		}*/
}
@media screen and (min-width: 768px) {
  .header_fix.hide {
    transform: translate(0, -100%);
    transition: 0.8s;
  }
}
header {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header .inner {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
}
.header_logo {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .header_logo {
    max-width: 100%;
    margin: 30px auto 40px;
    text-align: center;
  }
}
.header_logo img {
  height: 50px; /*flex時svg画像の高さ幅が認識されなくなるため*/
}
@media screen and (max-width: 768px) {
  .header_logo img {
    height: auto;
    width: 66%;
    margin: 0 auto;
  }
}
.header_nav_wrap {
  margin-left: auto;
}
.header_nav > ul {
  display: flex;
  margin-left: auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .header_nav ul {
    /*justify-content: space-between;*/
  }
}
.header_nav li {
  margin: 0 auto;
  position: relative;
  border-left: 1px solid #FFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header_nav li {
    margin: 0;
    flex-basis: 45%;
    text-align: left;
    border: none;
    border-bottom: 1px dotted #FFF;
  }
}
.header_nav li:first-child, .header_nav li:nth-child(2) {
  border-left: none;
}
@media screen and (max-width: 768px) {
  .header_nav li:nth-child(2n) {
    margin-left: auto;
  }
}
.header_nav a {
  position: relative;
  display: flex;
  padding: 0 15px;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header_nav a {
    padding: 20px 0 10px;
    font-size: 1.4rem;
    letter-spacing: 0.3rem;
  }
}
.header_nav_list_parent {
  position: relative;
}
.header_nav_list_parent::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0%;
  background-size: 100% auto;
  width: 12px;
  height: 12px;
  transform: translate(-50%, 300%);
}
@media screen and (max-width: 768px) {
  .header_nav_list_parent::before {
    content: none;
  }
}
.header_nav_list_parent_a {
  pointer-events: none;
}
.header_nav_list_child {
  display: none;
  position: absolute;
  background: var(--sub02);
  padding: 0px 10px;
  top: 35px;
  left: 0;
  z-index: 50;
}
@media screen and (max-width: 768px) {
  .header_nav_list_child {
    position: inherit;
    top: 0;
    left: 0;
    margin: 10px auto;
  }
}
.header_nav ul .header_nav_list_child li {
  margin: 0;
}
.header_nav_list_child li a {
  position: relative;
  padding: 25px 0px 25px;
  border-bottom: 1px solid #FFF;
  height: auto;
  line-height: 1;
  font-weight: bold;
  display: block;
  width: 100%;
  min-width: 190px;
  text-align: left;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .header_nav_list_child li a {
    padding: 20px 0px 20px !important;
    width: 100%;
    min-width: inherit;
  }
}
.header_nav_list_child li:last-child a {
  border-bottom: none;
}
.header_nav_list_child li a span {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .header_nav_list_child li a span {
    padding-left: 0px;
  }
}
.header_nav_list_child li a span:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  background: url('images/arrow_white.svg') no-repeat center;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
}
.header_nav_R {
  display: flex;
  background: var(--accent);
  color: var(--main);
  height: 70px;
}
@media screen and (max-width: 768px) {
  .header_nav_R {
    display: none;
  }
}
.header_nav_R a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  white-space: nowrap;
  font-weight: bold;
  padding: 0 20px;
}
.header_nav_shop_icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_nav_shop_icon img {
  height: 18px;
  width: 20px;
  max-width: inherit;
}
.header_nav_shop_p {
  margin-left: 5px;
  font-size: 1.5rem;
  letter-spacing: .3rem;
}
.header_nav_shop_reserve {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: .18em;
  border: 1px var(--main) solid;
  padding: 0 5px;
}
.fix_btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  max-width: 240px;
  width: 100%;
  z-index: 5;
  transition: display .3s;
}
.fix_btn.is_hide {
  display: none;
}
.fix_btn a {
  padding: 30px;
  background: #fff;
  box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, .05);
  color: var(--main);
  font-weight: bold;
  letter-spacing: .2em;
  transition: 0.5s;
}
.fix_btn_h {
  text-align: center;
}
.fix_btn_h span {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  font-size: 1.2rem;
}
.fix_btn_h span::before {
  content: '';
  background: url(images/icon_first_line.svg) no-repeat center right / contain;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
}
.fix_btn_h em {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-size: 2.2rem;
  font-style: normal;
}
.fix_btn_h em::before {
  content: '';
  background: url(images/h_nami_navy_s.svg) no-repeat bottom center / contain;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 10px;
}
.fix_btn_list li {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 10px;
  padding: 14px 0;
  line-height: 1;
}
.fix_btn_list_order {
  background: var(--main);
  color: #fff;
}
.fix_btn_list_active {
  background: var(--accent);
  color: var(--main);
}
.fix_btn_detail {
  text-align: center;
  margin: 20px 0 0;
}
.fix_btn_detail span {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  font-size: 1.5rem;
  line-height: 1;
}
.fix_btn_detail span::before {
  content: '';
  background: url(images/arrow_navy.svg) no-repeat right center / contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.fix_btn_close {
  position: absolute;
  top: -16px;
  right: -16px;
  transition: 0.5s;
}
.fix_btn_close:hover {
  opacity: .6;
}
@media screen and (max-width: 768px) {
  .fix_btn {
    display: none;
  }
}
.fix_btn.scroll {
  bottom: 25px;
  transition: 1.5s;
}
.fix_btn_reserve {
  max-width: 205px;
  right: 0;
  top: 130px;
  bottom: auto;
  transform: translate(25px, 0);
  transition: 0.2s;
}
.fix_btn a {
  display: block;
  width: 100%;
}
.fix_btn_reserve a {
  padding: 0;
  background: none;
}
.fix_btn_reserve:hover {
  transform: translate(15px, 0);
  transition: 0.2s;
}
.fix_sp_menu_btn_wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
.fix_sp_menu_btn_wrap {
  width: 60px;
  height: 60px;
  padding: 20px 15px;
  background: var(--main);
  float: right;
  color: #FFF;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 101;
  border-radius: 50%;
}
.fix_sp_menu_btn_wrap .fix_sp_menu_btn-txt {
  font-size: 1.0rem;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 0;
}
.fix_sp_menu_btn {
  height: 100%;
  width: 100%;
  position: relative;
}
.header_sp_menu_wrap {
  display: none;
  width: 100%;
  height: 100vh;
  background: url("images/header_menu_bg.png") no-repeat bottom -15px right 40px, rgba(158, 184, 159, 0.9);
  background-size: 90px auto, cover;
  z-index: 10;
  position: relative;
  padding: 40px;
}
.fix_sp_menu_btn-line {
  background: #FFF;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}
.fix_sp_menu_btn-line--center {
  top: 50%;
  transform: translate(0, -50%);
}
.fix_sp_menu_btn-line--bottom {
  bottom: 0;
}
.fix_sp_menu_btn-line--top.active {
  top: 50%;
  transform: rotate(45deg) translate(0, -50%);
}
.fix_sp_menu_btn-line--center.active {
  transform: scaleX(0);
}
.fix_sp_menu_btn-line--bottom.active {
  bottom: 50%;
  transform: rotate(135deg) translate(0, -50%);
}
.fix_sp_B_menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
}
.fix_sp_B_menu li {
  flex-basis: 50%;
}
.fix_sp_B_menu li:first-child {
  border-right: 1px solid var(--main);
}
.fix_sp_B_menu li a {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--main);
  font-weight: bold;
}
.fix_sp_B_menu_icon {
  flex-basis: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
/*------------------------------------------------------------
FOOTER / フッター
------------------------------------------------------------*/
footer {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 0;
  /*background: var(--base);
	color: #FFF;*/
}
.footer_logo {
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    max-width: 70%;
  }
}
.copyright {
  margin: 0px auto 0;
  font-size: 1.3rem;
  background: var(--main);
  color: #FFF;
  text-align: center;
  padding: 20px 25px;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1.0rem;
    padding-bottom: 90px;
  }
}
.footer_shop {
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .footer_shop {
    margin: 40px auto 0;
  }
}
.footer_shop .shop_list {
  align-items: inherit;
  justify-content: center;
}
.footer_shop .post_shop {
  flex-basis: calc(250px + 45px + 45px);
  padding-left: 45px;
  padding-right: 45px;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .footer_shop .post_shop {
    flex-basis: 50%;
    padding-left: 0px;
    padding-right: 10px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
  }
}
.footer_shop .post_shop:nth-child(2) {
  border-left: 1px solid #748AA1
}
@media screen and (max-width: 768px) {
  .footer_shop .post_shop:nth-child(2) {
    padding-left: 10px;
    padding-right: 0px;
  }
}
.footer_shop .shop_list .shop_information_address {
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .footer_shop .shop_list .shop_information_address {
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_shop .shop_list .shop_information_tel {
    margin-top: 10px;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .footer_shop .shop_list .btn {
    margin-top: auto;
  }
}
.recruit_bnr {
  max-width: 900px;
  width: 100%;
  margin: 50px auto;
  position: relative;
  text-align: center;
}
.recruit_bnr::before, .recruit_bnr::after {
  content: "";
  position: absolute;
  background: url('images/deco_tile.svg') no-repeat center;
  background-size: 100% auto;
  height: 253px;
  width: 147px;
  opacity: 0.7;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .recruit_bnr::before, .recruit_bnr::after {
    height: calc(253px / 2.5);
    width: calc(147px / 2.5);
  }
}
.recruit_bnr::before {
  left: 0;
}
.recruit_bnr::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.recruit_bnr a {
  display: block;
  width: 100%;
  padding: 120px 25px 60px;
  background: url("images/recruit_bg.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .recruit_bnr a {
    padding: 90px 25px 50px;
    background: url("images/recruit_bg_sp.jpg") no-repeat center;
    background-size: cover;
  }
}
.recruit_bnr_deco {
  max-width: 300px;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -15%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit_bnr_deco {
    max-width: 70%;
  }
}
.recruit_bnr p {
  text-align: center;
  letter-spacing: 0.3rem;
  line-height: 2.2;
  font-weight: bold;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  .recruit_bnr p {
    letter-spacing: 0.2rem;
    line-height: 1.8;
  }
  .recruit_bnr .h_border {
    margin-bottom: 25px;
  }
}
.common_specialty {
  margin: 80px auto 0;
}
.common_specialty .h_fuki {
  font-size: 1.6rem;
  color: var(--base);
  margin-bottom: 25px;
}
.common_specialty .h_fuki span {
  padding: 0 20px;
}
.common_specialty .h_fuki span::before, .common_specialty .h_fuki span::after {
  position: absolute;
  content: "";
  background: var(--base);
  width: 1px;
  height: 25px;
  top: 50%;
}
.common_specialty .h_fuki span::before {
  left: 0;
  transform: translate(-150%, -50%) rotate(-30deg);
}
.common_specialty .h_fuki span::after {
  transform: translate(150%, -50%) rotate(30deg);
}
.common_specialty_list li {
  flex-basis: calc(100% / 5);
}
@media screen and (max-width: 768px) {
  .common_specialty_list {
    padding: 0 25px;
  }
  .common_specialty_list ul {
    width: 100%;
    margin: 0 auto;
  }
  .common_specialty_list li {
    flex-basis: 100%;
  }
  .common_specialty_list .slick-list {
    z-index: 2;
  }
  .common_specialty_list .slick-arrow:before {
    border: none;
    background: url("images/arrow_slide_navy.svg") no-repeat center;
    transform: translate(0, -40%) rotate(0);
    opacity: 1;
  }
  .common_specialty_list .slick-arrow:before {
    width: 40px;
    height: 40px;
  }
  .common_specialty_list .slick-arrow {
    transition: 0.2s;
  }
  .common_specialty_list .slick-arrow:hover {
    opacity: 0.6;
    transition: 0.2s;
  }
  .common_specialty_list .slick-next:before {
    transform: translate(0, -40%) rotate(180deg);
  }
  .common_specialty_list .slick-prev {
    left: -20px;
  }
  .common_specialty_list .slick-next {
    right: 0px;
  }
}
.common_specialty_img {
  background-color: rgba(185, 185, 185, 0.2);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.common_specialty_list li:nth-child(odd) .common_specialty_img {
  background-color: rgba(185, 185, 185, 0.3);
}
.common_specialty01 .common_specialty_img {
  background-image: url('images/common_specialty_01bg.jpg');
}
.common_specialty02 .common_specialty_img {
  background-image: url('images/common_specialty_02bg.jpg');
}
.common_specialty03 .common_specialty_img {
  background-image: url('images/common_specialty_03bg.jpg');
}
.common_specialty04 .common_specialty_img {
  background-image: url('images/common_specialty_04bg.jpg');
}
.common_specialty05 .common_specialty_img {
  background-image: url('images/common_specialty_05bg.jpg');
}
.common_specialty_logo {
  max-width: 200px;
}
.common_specialty_place {
  margin: 20px auto 0;
  background: #FFF;
  padding: 5px 15px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
}
.common_specialty_name {
  text-align: center;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  background: var(--main);
  padding: 15px 0;
}
.common_specialty01 .common_specialty_name {
  background: #15106D;
}
.common_specialty02 .common_specialty_name {
  background: #D66480;
}
.common_specialty03 .common_specialty_name {
  background: #80B8AE;
}
.common_specialty04 .common_specialty_name {
  background: #4F848A;
}
.common_specialty05 .common_specialty_name {
  background: #211815;
}
.footer_nav {
  padding: 30px 0;
}
.footer_nav ul {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer_nav ul {
    justify-content: inherit;
  }
}
.footer_nav ul li {
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .footer_nav ul li {
    width: 50%;
  }
}
.footer_nav ul li a {
  color: var(--main);
  font-weight: bold;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer_nav ul li a {
    display: block;
    font-size: 1.4rem;
    padding: 5px 0;
  }
}
/*------------------------------------------------------------
PAGETOP / ページトップ
------------------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--main);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: 3px solid #FFf;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
/*------------------------------------------------------------
MAINVIS / メインヴィジュアル
------------------------------------------------------------*/
.mainvis {
  width: 100%;
  height: 900px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainvis {
    width: 100%;
    height: 85vh;
    max-height: 600px;
    min-height: 400px;
    position: relative;
  }
}
.mainvis h1 {
  text-align: center;
  z-index: 1;
  font-size: 1.2rem;
  color: var(--main);
  padding: 0 25px;
}
@media screen and (min-width: 768px) {
  .mainvis h1 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 100%;
  }
}
.mainvis_slider_li {
  background-image: url("images/mainvis01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 900px;
}
@media screen and (max-width: 768px) {
  .mainvis_slider_li {
    height: 85vh;
    max-height: 600px;
    min-height: 400px;
    background-image: url("images/mainvis01_sp.jpg");
  }
}
.mainvis_slider_li_02 {
  background-image: url("images/mainvis02.jpg");
}
.mainvis_slider_li_03 {
  background-image: url("images/mainvis03.jpg");
}
.mainvis_slider_li_04 {
  background-image: url("images/mainvis04.jpg");
}
@media screen and (max-width: 768px) {
  .mainvis_slider_li_02 {
    background-image: url("images/mainvis02_sp.jpg");
  }
  .mainvis_slider_li_03 {
    background-image: url("images/mainvis03_sp.jpg");
  }
  .mainvis_slider_li_04 {
    background-image: url("images/mainvis04_sp.jpg");
  }
}
/*.mainvis_slider_li_04 {
	background-image: url("images/mainvis04.jpg");
}*/
.mainvis_slider_li.slide-animation {
  animation: fadezoom 15s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.mainvis_logo {
  max-width: 310px;
  width: 100%;
  text-align: center;
  position: absolute;
  content: "";
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mainvis_logo {
    max-width: 200px;
    top: 40px;
  }
}
.mainvis_logo img {
  height: 100%;
  width: auto;
}
.mainvis_h {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.7rem;
  writing-mode: vertical-rl;
  white-space: nowrap;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mainvis_h {
    top: 175px;
    transform: translate(-50%, 0%);
    font-size: 1.6rem;
    letter-spacing: 0.6rem;
  }
}
.mainvis_h_bg {
  background: var(--accent);
  color: var(--main);
  margin: 0 12px;
  padding: 15px 0 8px;
  overflow: hidden;
  display: table;
}
.mainvis_h_deco {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 644px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mainvis_h_bg {
    padding: 8px 0 8px;
  }
  .mainvis_h_deco {
    max-width: 320px;
  }
}
.mainvis_corner {
  position: absolute;
  content: "";
  background: url("images/deco_tile.svg") no-repeat center;
  height: 421px;
  width: 244px;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mainvis_corner {
    height: calc(421px / 2.4);
    width: calc(244px / 2.4);
  }
}
.mainvis_corner_TL {
  top: 0;
  left: 0;
}
.mainvis_corner_TR {
  top: 0;
  right: 0;
}
.mainvis_corner_BR {
  bottom: 0;
  right: 0;
}
.mainvis_corner_BL {
  bottom: 0;
  left: 0;
}
.mainvis_corner_TR, .mainvis_corner_BR {
  transform: rotateZ(-180deg);
}
.mainvis_corner_TR, .mainvis_corner_BL {
  background-image: url("images/deco_fill.svg");
  opacity: 0.9;
}
.mainvis .slick-dots {
  bottom: 30px;
}
.mainvis .slick-dots li {
  width: 10px;
}
.mainvis .slick-dots li button:before {
  font-size: 13px;
  color: #FFF;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .mainvis .slick-dots li button:before {
    font-size: 10px;
  }
}
/*------------------------------------------------------------
PAGEVIS / ページヴィジュアル
------------------------------------------------------------*/
.pagevis {
  width: 100%;
  height: 300px;
  margin-top: 70px;
  background: url("images/bg_pattern.svg")repeat center;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 1.0rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .pagevis {
    height: 200px;
    margin-top: 0px;
    font-size: 2.0rem;
    letter-spacing: 0.5rem;
  }
}
.pagevis .en,.pagevis .pagevis_h_shop {
  font-size: 2.0rem;
  display: block;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .pagevis .en,.pagevis .pagevis_h_shop {
    font-size: 1.4rem;
  }
}
/*------------------------------------------------------------
 GALLERY / よく使うギャラリー系
------------------------------------------------------------*/
.slick-dots {
  bottom: -35px;
}
.slick-dots li button:before {
  color: #aaa;
}
.slick-dots li.slick-active button:before, .slick-dots li:hover button:before {
  color: var(--main);
}
.slick-arrow:before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  border: 4px solid var(--main);
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
}
.slick-prev:before {
  transform: rotate(-135deg);
}
/*------------------------------------------------------------
BLOG / ブログ
------------------------------------------------------------*/
.blog_category_list ul {
  display: flex;
  justify-content: center;
  margin: 0 auto 35px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .blog_category_list ul {
    justify-content: flex-start;
  }
}
.blog_category_list ul li {
  border-right: 1px solid #E7E3E2;
  display: flex;
  /*flex-basis: 185px;*/
  justify-content: center;
  /*margin-bottom: 25px;*/
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .blog_category_list ul li {
    flex-basis: 50%;
    margin-bottom: 15px;
  }
}
.blog_category_list ul li:first-child {
  border-left: 1px solid #E7E3E2;
}
@media screen and (max-width: 768px) {
  .blog_category_list ul li:nth-child(2n - 1) {
    border-left: 1px solid #E7E3E2;
  }
}
.blog_category_list ul li a {
  display: inline-block;
  width: 100%;
  padding: 5px 15px;
  text-align: center;
  color: var(--main);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .blog_category_list ul li a {
    padding: 5px 5px;
    letter-spacing: 0.1rem;
  }
}
.blog_category_list ul li.current-cat a {
  background: var(--sub);
  border-radius: 100px;
}
.blog_category_list_child ul {
  display: flex;
  justify-content: center;
  margin: -15px -10px 35px;
  /*align-items: center;*/
  flex-wrap: wrap;
  /*max-width: 800px;*/
  /*width: 100%;*/
}
@media screen and (max-width: 768px) {
  .blog_category_list_child ul {
    justify-content: space-between;
    margin: -15px 0 35px;
  }
  .blog_category_list_child ul::after {
    content: none;
  }
}
.blog_all .div_deco {
  margin-top: 0;
  margin-bottom: 80px;
}
.blog_all .div_deco .blog_category_list_child {
  max-height: 170px;
  overflow: hidden;
  transition: 0.2s;
}
.blog_all .div_deco .blog_category_list_child.active {
  max-height: inherit;
  transition: 0.2s;
}
.blog_all .div_deco .blog_category_list_child ul {
  margin: 0px -10px -15px;
}
.blog_all .div_deco_corner {
  border-color: #FFF;
}
.blog_all .div_deco .tag_list_more_bg {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, transparent, #FFF);
  height: 50px;
  width: 100%;
  bottom: 30px;
}
.blog_all .select_wrap select {
  background: var(--sub);
}
@media screen and (max-width: 768px) {
  .blog_all .archive_title {
    margin-top: -30px;
  }
}
.div_deco .blog_category_list_child ul {
  justify-content: inherit;
}
.blog_category_list_child ul li {
  /*display: flex;*/
  flex-basis: calc(calc(100% / 5) - 20px);
  margin: 0 10px 15px;
  /*justify-content: center;*/
}
@media screen and (max-width: 768px) {
  .blog_category_list_child ul li {
    flex-basis: 48%;
    margin: 0 0 15px;
  }
}
.blog_category_list_child ul li a {
  background: var(--accent);
  display: flex;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.post_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
@media screen and (max-width: 768px) {
  .post_list {
    margin: 0 auto;
    justify-content: space-between;
  }
  .post_list::after {
    content: none;
  }
}
.post_list_non {
  text-align: center;
}
.post {
  flex-basis: calc(100% / 3 - 40px);
  margin: 0 20px 40px;
}
@media screen and (max-width: 768px) {
  .post {
    flex-basis: 47%;
    margin: 0 0 30px;
  }
}
.post_link {
  display: block;
}
.post_img {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0 auto 15px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .post_img {
    height: 120px;
  }
}
.post .post_cat {
  position: absolute;
  padding: 3px 15px 1px;
  min-width: 20%;
  background: var(--main);
  color: #FFF;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .post .post_cat {
    font-size: 1.1rem;
  }
}
.post:not(.post_min) .post_meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post_date {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--main);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .post_date {
    font-size: 1.2rem;
  }
}
.post:not(.post_min) .post_meta .post_date {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .post:not(.post_min) .post_meta .post_date {
    width: 100%;
  }
}
.post_cat_child {
  background: var(--accent);
  border-radius: 100px;
  padding: 1px 10px;
  font-size: 1.2rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .post_cat_child {
    margin-left: 0;
    font-size: 1.0rem;
  }
}
.post_date_last {
  color: var(--main);
  margin-left: 10px;
}
.post_title {
  margin: 7px auto 0;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 768px) {
  .post_title {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.post_tag {
  color: var(--main);
  font-size: 1.2rem;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .post_tag {
    font-size: 1.0rem;
  }
}
.post_tag li {
  float: left;
  margin-right: 10px;
}
.post_tag li > a {
  position: relative;
}
.post_tag li > a::before {
  content: "#";
}
.post_author {
  display: flex;
  width: 100%;
  margin: 10px auto 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .post_author {
    margin: 5px auto 0;
  }
}
.post_author_img {
  flex-basis: 70px;
  height: 70px;
  border-radius: 50%;
  background: url("images/noimg.svg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .post_author_img {
    flex-basis: 40px;
    height: 40px;
  }
}
.post_author_txt {
  flex-basis: calc(100% - 70px - 15px);
  margin-left: auto;
  /*padding-top: 5px;*/ display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--main);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .post_author_txt {
    flex-basis: calc(100% - 40px - 10px);
  }
  .post_author_txt span {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .post_author_info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}
.post_author_info > span {
  line-height: 1.6;
  display: block;
  width: 100%;
}
.post_author_position {
  font-size: 1.0rem;
}
@media screen and (max-width: 768px) {
  .post_author_name {
    font-size: 1.2rem;
  }
  .post_author_info .post_author_name {
    font-size: 1.4rem;
  }
}
.post_author_prof {
  font-weight: normal;
  color: var(--base);
  font-size: 1.3rem;
  margin: 10px 0 0;
}
.post_none_p {
  margin: 80px auto;
}
.post_none_p p {
  text-align: center;
}
.archive_title_wrap {
  text-align: center;
  margin-bottom: 30px;
}
.archive_title {
  font-size: 2.0rem;
}
@media screen and (max-width: 768px) {
  .archive_title {
    font-size: 1.6rem;
    margin: 40px auto 0;
  }
}
.wp-pagenavi {
  display: flex;
  justify-content: center;
  font-weight: bold;
  margin: 45px auto;
}
.wp-pagenavi a:hover, .wp-pagenavi .current {
  color: #FFF;
  text-decoration: none;
  transition: 0.3s;
  background: var(--main);
  border: 1px solid var(--main);
}
.wp-pagenavi a, .wp-pagenavi span {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  padding: 0 6px 0 8px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background: #FFF;
  border: 1px solid #DAD4D0;
  border-radius: 50%;
  color: var(--main);
}
.wp-pagenavi a.previouspostslink::after, .wp-pagenavi a.nextpostslink::after {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  /*top: 50%;
 left: 50%;
 background-size: 11px 16px;
 background-repeat: no-repeat;
 background-position: center;*/
}
.wp-pagenavi a.previouspostslink::after {
  /*background-image: url(images/arrow_L_S.png);
 transform: translate(-50%, -50%);*/
}
.wp-pagenavi a.nextpostslink::after {
  /*background-image: url(images/arrow_R_S.png);
 background-size: 11px 16px;*/
  transform: translate(50%, -50%);
}
/*------------------------------------------------------------
BLOG / ブログ / 最新1記事
------------------------------------------------------------*/
.post_new .post {
  flex-basis: 100%;
}
.post_new .post {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post_new .post_link {
  flex-basis: 540px;
}
@media screen and (max-width: 768px) {
  .post_new .post_link {
    flex-basis: 100%;
    line-height: 1.6;
  }
}
.post_new .post_title {
  font-size: 2.4rem;
}
.post_new .post_img {
  height: 350px;
}
@media screen and (max-width: 768px) {
  .post_new .post_img {
    height: 240px;
  }
}
.post_new .post_meta {
  flex-basis: calc(100% - 540px - 50px);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .post_new .post_meta {
    flex-basis: 100%;
  }
}
.post_new_add {
  font-size: 3.0rem;
  color: var(--main);
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .post_new_add {
    font-size: 2.4rem;
    margin-bottom: 0px;
  }
}
/*------------------------------------------------------------
BLOG / ブログ / 単一記事
------------------------------------------------------------*/
.post_single_wrap {
  align-items: flex-start;
  margin: 70px auto 0;
}
.post_single_wrap .post_cat {
  position: inherit;
  /*display: inline-block;*/
  min-width: inherit;
}
.post_single_wrap .post_cat ul {
  display: flex;
  flex-wrap: wrap;
}
.post_cat li:not(:first-child) {
  margin-left: 10px;
}
.post_cat a {
  background: var(--accent);
  border-radius: 100px;
  padding: 7px 25px;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .post_cat a {
    padding: 5px 15px;
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
  }
}
.post_cat a.post_cat-information, .post_cat a.post_cat-column, .post_cat a.post_cat-staff_blog {
  background: var(--main);
  color: #FFF;
}
.post_author_wrap {
  margin: 35px auto 0;
}
.post_author_wrap .post_author {
  border: 1px solid var(--main);
  padding: 25px;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.1);
}
.post_author_wrap h4 {
  text-align: center;
  margin: 0 auto 15px;
}
.post_author_wrap .post_author_img {
  flex-basis: 140px;
  height: 140px;
}
@media screen and (max-width: 768px) {
  .post_author_wrap .post_author_img {
    flex-basis: 100px;
    height: 100px;
    margin: 0 auto;
  }
}
.post_author_wrap .post_author_txt {
  flex-basis: calc(100% - 140px - 25px);
}
@media screen and (max-width: 768px) {
  .post_author_wrap .post_author_txt {
    flex-basis: 100%;
    margin: 25px auto 0;
  }
}
.post_single_main {
  flex-basis: 620px;
}
@media screen and (max-width: 768px) {
  .post_single_main {
    flex-basis: 100%;
  }
}
.post_single_main .btn a {
  max-width: none;
}
.post_single_main .btn a::before {
  transform: translate(25px, -50%) rotate(-180deg);
  left: 0;
  right: inherit;
}
.post_single_side {
  flex-basis: 280px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .post_single_side {
    flex-basis: 100%;
    margin: 50px auto 0;
  }
}
.post_single_head {
  margin-bottom: 40px;
}
.post_single_head h1 {
  font-size: 2.4rem;
  border-bottom: 2px solid var(--main);
  padding-bottom: 5px;
}
.post_single_head_T {
  /*display: flex;
	align-items: center;*/
}
.post_single_head_T .post_date {
  /*margin-left: 20px;*/
  /*width: 100%;*/
  margin-top: 15px;
  letter-spacing: 0.3rem;
  font-size: 1.2rem;
}
.single_nav_block {
  margin: 30px auto 0;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .single_nav_block {
    justify-content: space-between;
  }
}
.single_nav_block .nav_item {
  flex-basis: 50%;
}
.single_nav_block .nav_item span {
  position: relative;
  display: block;
}
.single_nav_block .nav_item span::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("images/arrow_navy.svg")no-repeat center;
  transform: translate(-25px, -50%);
  transition: 0.2s;
  top: 50%;
}
.single_nav_block .nav_item.right_box span::before {
  right: 0;
  transform: translate(0%, -50%);
}
.single_nav_block .nav_item.left_box span::before {
  left: 0;
  transform: translate(0%, -50%) rotate(-180deg);
}
.single_nav_block .right_box {
  text-align: right;
  border-left: 1px solid #EDEBE9;
}
.single_nav_block .nav_item a {
  display: block;
  width: 100%;
  padding: 5px 15px;
}
.single_nav_block .right_box a {
  padding-right: 45px;
}
.single_nav_block .left_box a {
  padding-left: 45px;
}
.searchfield {
  border: 1px solid var(--main);
  padding: 2px 5px;
  height: 30px;
  font-size: 1.2rem;
  width: 90%;
  float: left;
  border-radius: 2px 0 0 2px;
}
.btn_search {
  width: 10%;
  height: 30px;
  float: left;
  background: url(images/icon_search.svg)no-repeat center, var(--main);
  background-size: 18px auto, auto;
  border: 1px solid var(--main);
  border-left: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  padding: 5px;
}
.post_single_side .block {
  margin-bottom: 40px;
}
.post_single_side .block_head {
  border-bottom: 1px solid var(--main);
  color: var(--main);
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.post_single_side .block_head .en {
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
}
.post_single_side .block_head .ja {
  font-size: 1.2rem;
  margin-left: auto;
  color: #748AA1;
}
.post_min {
  flex-basis: 100%;
  margin-bottom: 15px;
}
.post_min a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post_min .thumbnail {
  height: calc(60px * 0.9);
  width: calc(90px * 0.9);
  background-size: cover;
  background-position: center;
}
.post_min .post_meta {
  flex-basis: calc(100% - calc(90px * 0.9) - 20px);
  margin-left: auto;
}
.post_min .post_title {
  font-size: 1.2rem;
  margin-top: 0;
  line-height: 1.5;
}
.post_min .post_meta_B {
  margin-top: 5px;
}
.post_min .post_cat {
  font-size: 1.0rem;
  padding: 2px 8px 1px;
  min-width: 40%;
}
.post_min .post_date {
  font-size: 1.0rem;
}
.category_list {
  margin-top: -15px;
}
.category_list li {
  border-bottom: 1px dotted var(--main);
}
.category_list li a {
  padding: 10px 10px;
  display: block;
  width: 100%;
  font-weight: bold;
}
.category_list li .count {
  font-size: 1.2rem;
  text-align: right;
  float: right;
  position: relative;
  padding: 0 1rem;
}
.category_list li .count::before {
  content: "（";
  position: absolute;
  left: -0.5rem;
}
.category_list li .count::after {
  content: "）";
  position: absolute;
  right: -0.5rem;
}
.ranking_block .post_min {
  margin: 0 auto 15px;
}
.ranking_block .post_min:first-child {
  max-width: 240px;
}
.ranking_block .post_min:first-child .thumbnail, .ranking_block .post_min:first-child .post_meta {
  flex-basis: 100%;
}
.ranking_block .post_min:first-child .thumbnail {
  height: 145px;
  margin-bottom: 10px;
}
.ranking_block .post_min:first-child .post_meta {
  display: flex;
  flex-wrap: wrap;
}
.ranking_block .post_min:first-child .post_meta .post_meta_B {
  order: -1;
  flex-basis: 100%;
}
.ranking_block .post_min:first-child .post_title {
  flex-basis: 100%;
  margin-top: 5px;
  display: block;
}
.archive_block .archive_list {
  margin-top: -15px;
}
.archive_block .archive_list > li {
  border-bottom: 1px dotted var(--main);
}
.archive_block .archive_list > li .year {
  padding: 10px 5px;
  color: #40353A;
  font-size: 14px;
  font-size: 1.4rem;
  /*font-weight: bold;*/
  line-height: 1.6;
  letter-spacing: 0.15em;
  display: block;
  cursor: pointer;
  position: relative;
}
.archive_block .archive_list > li .year:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.archive_block .archive_list > li .year::after {
  content: "";
  position: absolute;
  border: 5px solid transparent;
  border-top: 5px solid var(--main);
  right: 0;
  top: 50%;
  transform: translate(-100%, 0%);
}
.archive_block .archive_list > li .year.mode_open::after {
  transform: translate(-100%, -100%) rotateX(180deg);
}
.archive_block .archive_list > li ul {
  padding: 0 0 10px 25px;
  display: none;
}
.archive_block .archive_list > li ul li {
  margin: 2px 0 0;
}
.archive_block .archive_list > li ul li:first-child {
  margin-top: 0;
}
.archive_block .archive_list > li ul li a {
  color: #40353A;
  font-size: 14px;
  font-size: 1.4rem;
  /*font-weight: bold;*/
  line-height: 2.0;
}
.archive_block .archive_list > li ul li a .count {
  margin: 0 0 0 2px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  /*color: #ADABAA;*/
}
.related_posts_wrap {
  margin: 80px auto 0px;
  background: var(--sub);
  padding: 60px 0 40px;
}
@media screen and (max-width: 768px) {
  .related_posts_wrap {
    padding: 60px 0 20px;
  }
}
.yarpp-related h4 {
  position: relative;
  text-align: center;
  margin: 0 auto 25px;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .yarpp-related h4 {
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
  }
}
.yarpp-related h4::after {
  position: absolute;
  content: "";
  width: 100%;
  border-top: 1px dotted var(--main);
  left: 0;
  top: 50%;
  transform: translate(-0, -50%);
}
.yarpp-related h4 span {
  position: relative;
  z-index: 2;
  background: var(--sub);
  padding: 0 20px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .yarpp-related h4 span {
    padding: 0 15px;
  }
}
.yarpp-related .post_list::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .yarpp-related .post_list {
    margin: 0 -30px;
  }
}
.yarpp-related .post {
  flex-basis: calc(100% / 4 - 60px);
  margin: 0 30px 40px;
}
@media screen and (max-width: 768px) {
  .yarpp-related .post {
    flex-basis: 48%;
    margin: 0 0 40px;
  }
}
.yarpp-related .post_img {
  height: 140px;
  background-image: url("images/noimg_white.svg");
}
@media screen and (max-width: 768px) {
  .yarpp-related .post_img {
    height: 120px;
  }
}
.yarpp-related .post_cat {
  font-size: 1.0rem;
  padding: 2px 12px 2px;
}
.yarpp-related .post_date {
  font-size: 1.0rem;
}
.yarpp-related .post_cat_child {
  font-size: 1.0rem;
}
.yarpp-related .post_author {
  display: none;
}
/*------------------------------------------------------------
FORM / フォーム
------------------------------------------------------------*/
.form {
  max-width: 800px;
  margin: 0 auto;
}
.form_sec {
  padding: 20px;
}
.form_row {
  border-top: 1px dotted var(--base);
}
.form_row:last-child {
  border-bottom: 1px dotted var(--base);
}
.form_row02 {
  display: flex;
}
.form_row02 .form_sec {
  flex-basis: 50%;
}
.form_h {
  font-weight: bold;
}
.form_cont {
  margin-top: 10px;
}
.form_cont table th, .form_cont table td {
  padding: 10px;
  vertical-align: middle;
}
.form_cont table th {
  padding-left: 0;
}
.form_cont table td {
  padding-right: 0;
}
.form .must {
  color: var(--main);
  margin-left: 10px;
}
.form .note {
  font-size: 1.1rem;
  margin-top: 10px;
  color: var(--main);
}
.form input[type="text"], .form input[type="email"], .form textarea, .form select {
  background: rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 8px 15px;
  font-size: 16px;
}
.form_cont_flex {
  display: flex;
}
.form_cont_flex_sec {
  display: flex;
  flex-basis: auto;
  align-items: center;
  white-space: nowrap;
}
.form_cont_flex_sec input, .form_cont_flex_sec select {
  max-width: auto;
  width: 100%;
  margin: 0 10px;
}
/*ラジオボタン・チェックボタンのカスタマイズ*/
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 20px;
}
.mwform-radio-field input[type=radio] {
  display: none;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}
.mwform-radio-field span.mwform-radio-field-text {
  position: relative;
  padding-left: 30px;
  letter-spacing: 0rem;
}
.mwform-radio-field input[type=radio] + span.mwform-radio-field-text:before {
  content: '';
  background: url(images/icon_radio_off.svg)no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}
.mwform-radio-field input[type=radio]:checked + span.mwform-radio-field-text:before {
  content: '';
  background: url(images/icon_radio_on.svg)no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}
.mwform-checkbox-field input[type=checkbox] {
  display: none;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}
.mwform-checkbox-field span.mwform-checkbox-field-text {
  position: relative;
  padding-left: 30px;
  letter-spacing: 0rem;
}
.mwform-checkbox-field input[type=checkbox] + span.mwform-checkbox-field-text:before {
  content: '';
  background: url(images/icon_check_off.svg)no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}
.mwform-checkbox-field input[type=checkbox]:checked + span.mwform-checkbox-field-text:before {
  content: '';
  background: url(images/icon_check_on.svg)no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}
/*------------------------------------------------------------
INDEX / トップページ 
------------------------------------------------------------*/
.banner_list, .banner_list .slick-slide {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .banner_list {
    /* max-width: 320px; */
    margin-top: 45px;
    padding: 0 10px;
  }
}
.banner_img {
  height: 450px;
  width: 100%;
}
.banner_img img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .banner_img {
    height: auto;
    /* height: 55.555%; */
  }
  .banner_img img {
    /* max-height: 160px; */
    /* height: 55.555%; */
    height: auto;
    object-fit: contain;
  }
}
.banner_list .slick-list {
  z-index: 2;
}
.banner_list .slick-arrow:before {
  border: none;
  background: url("images/arrow_slide_navy.svg") no-repeat center;
  transform: translate(0, -40%) rotate(0);
  width: 80px;
  height: 80px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .banner_list .slick-arrow:before {
    width: 40px;
    height: 40px;
  }
}
.banner_list .slick-arrow {
  transition: 0.2s;
}
.banner_list .slick-arrow:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.banner_list .slick-next:before {
  transform: translate(0, -40%) rotate(180deg);
}
.banner_list .slick-prev {
  left: -40px;
}
.banner_list .slick-next {
  right: 20px;
}
@media screen and (max-width: 768px) {
  .banner_list .slick-prev {
    left: -20px;
  }
  .banner_list .slick-next {
    right: 00px;
  }
}
/* こだわり5つ星 */
.index_originality {
  position: relative;
  padding: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  .index_originality {
    padding: 100px 0;
  }
}
.index_originality::before, .index_originality::after {
  content: '';
  width: 250px;
  height: 430px;
  position: absolute;
  bottom: 0;
}
.index_originality::before {
  background: url("images/deco_fill.svg") no-repeat left / contain;
  left: 0;
}
.index_originality::after {
  background: url("images/deco_tile.svg") no-repeat left / contain;
  right: 0;
  transform: rotate(180deg);
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .index_originality::before, .index_originality::after {
    min-width: 92px;
    width: 30vw;
    height: 40vw;
  }
}
.index_originality .title_lead {
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .index_originality .title_lead {
    margin-bottom: 0;
  }
}
.index_originality_h {
  position: relative;
  text-align: center;
  color: var(--main);
}
.index_originality_h::before {
  content: '';
  background: url("images/line_star.svg") no-repeat center top / contain;
  width: 118px;
  height: 30px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.index_originality_h_p {
  display: inline-block;
  background: var(--sub);
  padding: 0 20px;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: .5rem;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .index_originality_h_p {
    font-size: 1.3rem;
    letter-spacing: .2em;
    line-height: 1.5;
    white-space: nowrap;
    top: -2rem;
  }
}
.index_originality_h_h {
  display: inline-flex;
  align-items: center;
  border: var(--main) solid;
  border-width: 3px 0;
  padding: 0 10px;
  font-size: 3rem;
  letter-spacing: .9rem;
}
.index_originality_h_h em {
  font-style: normal;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .index_originality_h_h {
    display: inline-block;
    font-size: 2.2rem;
    letter-spacing: .2em;
    line-height: 1.3;
    padding: 30px 10px 10px;
  }
  .index_originality_h_h em {
    font-size: 3.5rem;
  }
}
.index_originality_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  counter-reset: org_num 0;
  margin: 0 -20px;
}
.index_originality_list_item {
  position: relative;
  flex-basis: 320px;
  color: var(--main);
  text-align: center;
  margin: 80px 0 0;
  opacity: 0;
  transform: translateY(50px);
  transition: transform .5s, opacity .5s;
}
@media screen and (max-width: 768px) {
  .index_originality_list {
    margin: 0 auto;
  }
  .index_originality_list_item {
    flex-basis: 100%;
  }
}
.index_originality_list_item::before {
  content: none;
}
.index_originality_list_num {
  display: inline-block;
  background: url(images/bg_star.svg) no-repeat center top / contain;
  width: 80px;
  height: 76px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%);
}
.index_originality_list_num::before {
  content: counter(org_num, decimal-leading-zero);
  counter-increment: org_num 1; /*何個ずつカウントアップするか*/
  display: block;
  font-weight: bold;
  font-size: 2.5rem;
  letter-spacing: .03em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}
.index_originality_list_item:nth-of-type(1) {
  transition-delay: .1s;
}
.index_originality_list_item:nth-of-type(2) {
  transition-delay: .2s;
}
.index_originality_list_item:nth-of-type(3) {
  transition-delay: .3s;
}
.index_originality_list_item:nth-of-type(4) {
  transition-delay: .4s;
}
.index_originality_list_item:nth-of-type(5) {
  transition-delay: .5s;
}
.index_originality_list_item.is_show {
  opacity: 1;
  transform: translateY(0);
}
.index_originality_list_item.is_show .index_originality_list_num {
  animation: rotateXAnime 1s forwards;
}
.index_originality_list_img {
  margin: 0 10px;
}
.index_originality_list_p {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  margin: 30px auto 10px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .2rem;
}
.index_originality_list_p::before, .index_originality_list_p::after {
  content: '';
  background: var(--main);
  width: 1px;
  height: 18px;
  position: absolute;
  top: 50%;
}
.index_originality_list_p::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.index_originality_list_p::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}
.index_originality_list_h {
  display: inline-block;
  background: linear-gradient(transparent 60%, var(--accent) 40%);
  padding: 0 5px;
  font-size: 2.1rem;
  letter-spacing: .12em;
  line-height: 1.3;
  text-align: center;
}
.index_originality .btn {
  padding: 0 20px;
}
.index_news {
  margin-top: 60px;
}
.news_h {
  flex-basis: 25%;
  color: var(--main);
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news_h {
    font-size: 2.0rem;
    flex-basis: 100%;
    margin-bottom: 15px;
  }
}
.news_h .btn {
  margin-top: 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .news_h .btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
.news_data {
  flex-basis: 75%;
}
@media screen and (max-width: 768px) {
  .news_data {
    flex-basis: 100%;
    font-size: 1.2rem;
  }
}
.news_data dl {
  display: flex;
  flex-wrap: wrap;
}
.news_data dt {
  flex-basis: 18%;
  letter-spacing: 0.3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news_data dt {
    flex-basis: 100%;
    margin-top: 10px;
  }
}
.news_data dd {
  flex-basis: 82%;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .news_data dd {
    flex-basis: 100%;
  }
}
.news_data dd a:hover {
  text-decoration: underline;
}
.news_more {
  flex-basis: 8%;
}
.index_covid {
  display: none;
}
.index_covid h2 + p {
  text-align: center;
  margin-top: -20px;
}
.index_covid_list ul {
  justify-content: space-between;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .index_covid_list ul {
    margin: 25px auto 0;
  }
}
.index_covid_list li {
  flex-basis: 160px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index_covid_list li {
    flex-basis: 100%;
    text-align: left;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
  }
}
.index_covid_list_img {
  background: #FFF;
  height: 110px;
  max-width: 110px;
  border-radius: 50%;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .index_covid_list_img {
    height: 60px;
    flex-basis: 60px;
  }
}
.index_covid_list_h {
  margin: 15px auto 0;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .index_covid_list_h {
    flex-basis: calc(100% - 60px - 30px);
    font-size: 1.5rem;
    margin: 0px auto 0;
    letter-spacing: 0.0rem;
  }
}
.index_message {
  padding: 0;
  background: var(--accent02);
}
@media screen and (min-width: 768px) {
  .index_message {
    background: url("images/index_message_bg.jpg")no-repeat center;
    background-size: cover;
  }
}
.index_message_bg {
  position: relative;
  padding: 80px 0 130px;
}
@media screen and (max-width: 768px) {
  .index_message_bg {
    padding: 0px 0 50px;
  }
}
.index_message_bg .inner {
  position: relative;
  z-index: 2;
}
.index_message_bg_img {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("images/index_message_deco.svg")no-repeat center bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .index_message_bg_img {
    padding: 0px 0 60px;
  }
}
.index_message_bg_img::before {
  content: "";
  position: absolute;
  background: url("images/index_message_deco_b.svg")no-repeat center center;
  background-size: 100% auto;
  bottom: 0;
  left: 50%;
  max-width: 1280px;
  width: 100%;
  height: 120px;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 768px) {
  .index_message_bg_sp {
    height: 100%;
    background-image: url("images/index_message_bg.jpg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
    /*padding: 60px 0;*/
  }
}
.index_message_bg_img.delighter {
  transform: scale(0, 1);
  transition: all 1.5s ease;
}
.index_message_bg_img.delighter.started {
  transform: scale(1, 1);
}
.index_message_deco {
  max-width: 367px;
  width: 100%;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .index_message_deco {
    max-width: 160px;
    padding-top: 50px;
  }
}
.index_message .h_border {
  color: #666666;
  font-size: 3.0rem;
  letter-spacing: 0.8rem;
  line-height: 2.2;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .index_message .h_border {
    font-size: 1.8rem;
    letter-spacing: 0.4rem;
    margin: 20px auto 0px;
    padding-bottom: 50px;
  }
}
.index_message .h_border span {
  padding-bottom: 10px;
  border-bottom: 1px solid #666666;
}
.index_message_p {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .index_message_p {
    margin: 60px auto 0;
  }
}
.index_message_p p {
  line-height: 2.6;
  color: #666666;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .index_message_p p {
    line-height: 2.0;
    text-align: justify;
    margin-bottom: 15px;
  }
}
.index_voice {
  position: relative;
  padding-top: 80px;
}
.index_voice::before {
  content: '';
  background: url(images/arrow_bg_sub.svg) no-repeat top center / contain;
  width: 100%;
  height: 54px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .index_voice {
    padding-top: 50px;
  }
  .index_voice::before {
    height: 40px;
  }
}
.index_voice .title_lead {
  font-size: 2rem;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .index_voice .title_lead {
    font-size: 1.6rem;
  }
}
.index_voice .h_ribbon {
  max-width: 880px;
  margin: 50px auto;
}
.index_voice .h_ribbon::before, .index_voice .h_ribbon::after {
  content: none;
}
.index_voice .h_ribbon > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 820px;
  height: 80px;
  font-size: 2.6rem;
}
.index_voice .h_ribbon > span::before, .index_voice .h_ribbon > span::after {
  height: 80px;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .index_voice .h_ribbon {
    max-width: calc(100% - 40px);
    margin: 30px auto;
  }
  .index_voice .h_ribbon > span {
    display: inline-block;
    min-height: 60px;
    height: 70px;
    font-size: 1.8rem;
    line-height: 1.5;
    padding-top: 8px;
  }
  .index_voice .h_ribbon > span::before, .index_voice .h_ribbon > span::after {
    height: 70px;
    width: 32px;
  }
}
.index_voice_list .voice_list .post_voice {
  width: 500px;
  transform: scale(.9);
  transition: 0.8s;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .index_voice_list .voice_list .post_voice {
    width: 100%;
    transform: scale(1);
    margin: 0 25px;
  }
}
.index_voice_list .voice_list .slick-center {
  transform: scale(1);
  transition: 0.8s;
}
.index_worry {
  position: relative;
  padding: 80px 0 0;
}
.index_worry h2 + p {
  text-align: center;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .index_worry h2 + p {
    text-align: justify;
  }
}
.index_worry_wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .index_worry_wrap {
    flex-direction: column;
  }
}
.index_worry_box {
  flex-direction: column;
  flex-basis: 50%;
  padding: 0 20px;
}
.index_worry_box dt {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 2px var(--main) solid;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .3rem;
  color: var(--main);
  text-align: center;
  margin-bottom: 30px;
}
.index_worry_box dt::before, .index_worry_box dt::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.index_worry_box dt::before {
  border-width: 16px 17px 0 17px;
  border-color: var(--main) transparent transparent transparent;
  bottom: -16px;
}
.index_worry_box dt::after {
  border-width: 15px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
  bottom: -14px;
}
.index_worry_box dt em {
  font-size: 2.4rem;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .index_worry_box dt {
    font-size: 1.6rem;
    letter-spacing: .12em;
  }
  .index_worry_box dt em {
    font-size: 2rem;
  }
}
.index_worry_box dd {
  display: flex;
}
.index_worry_box figure {
  flex-basis: 55%;
  padding: 0 20px;
  text-align: center;
}
.index_worry_txt {
  flex-grow: 2;
}
.index_worry_txt span {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: .3rem;
  text-align: right;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .index_worry_wrap {
    flex-direction: column;
  }
  .index_worry_box figure {
    flex-basis: 45%;
    padding: 0 30px 0 0;
  }
  .index_worry_txt span {
    font-size: 1.2rem;
  }
}
.index_worry_list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .3rem;
  color: var(--main);
}
.index_worry_list li::before {
  content: '';
  background: url(images/icon_checkbox.svg) no-repeat left center / contain;
  width: 38px;
  height: 35px;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .index_worry_list li {
    padding-left: 40px;
    font-size: 1.5rem;
  }
  .index_worry_list li::before {
    width: 30px;
    height: 28px;
  }
}
.index_worry_anchor {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  letter-spacing: .2em;
  padding: 25px 0 15px;
  margin-top: 30px;
  border-radius: 5px;
}
.index_worry_anchor strong {
  display: block;
  font-size: 2.7rem;
  letter-spacing: .3rem;
  line-height: 1.5;
}
.index_worry_anchor_detail {
  position: relative;
  display: inline-block;
  padding-right: 30px;
}
.index_worry_anchor_detail::before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .index_worry_anchor {
    font-size: 1.2rem;
    padding: 15px 0;
  }
  .index_worry_anchor strong {
    font-size: 2rem;
  }
  .index_worry_anchor_detail {
    padding-right: 20px;
  }
  .index_worry_anchor_detail::before {
    width: 12px;
    height: 12px;
  }
}
.index_worry_box.is_order {
  padding: 0 40px 0 0;
}
.index_worry_box.is_active {
  padding: 0 0 0 40px;
  border-left: 2px var(--main) dotted;
}
@media screen and (max-width: 768px) {
  .index_worry_box.is_order {
    padding: 0 0 30px;
  }
  .index_worry_box.is_active {
    padding: 30px 0 0;
    border-left: none;
    border-top: 2px var(--main) dotted;
  }
}
.index_worry_box.is_order .index_worry_anchor {
  background: var(--main);
  box-shadow: 5px 5px 0px 0px var(--accent);
  color: #fff;
}
.index_worry_box.is_order .index_worry_anchor_detail::before {
  background: url(images/arrow_white.svg) no-repeat right center / contain;
}
.index_worry_box.is_active .index_worry_anchor {
  background: var(--accent);
  box-shadow: 5px 5px 0 0 var(--main);
  color: var(--main);
}
.index_worry_box.is_active .index_worry_anchor_detail::before {
  background: url(images/arrow_navy_y.svg) no-repeat right center / contain;
}
.index_worry_box.is_active .sup_reg {
  font-size: 120%;
}
.index_worry_item {
  position: relative;
  text-align: center;
  padding: 110px 0 280px;
}
.index_worry_item_wrap {
  position: relative;
  box-shadow: 10px 10px 15px 0 rgb(0 0 0 / 20%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .index_worry_item {
    padding: 80px 0 0;
  }
  .index_worry_item_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.index_worry_item_inner {
  padding: 80px 50px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .index_worry_item_inner {
    padding: 50px 15px;
  }
}
.is_active .index_worry_item_inner {
  color: var(--main);
}
.index_worry_item_p {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 2px var(--main) solid;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: .3rem;
  color: var(--main);
  text-align: center;
  white-space: nowrap;
  padding: 5px 55px;
  margin-bottom: 30px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.index_worry_item_p::before, .index_worry_item_p::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.index_worry_item_p::before {
  border-width: 16px 17px 0 17px;
  border-color: var(--main) transparent transparent transparent;
  bottom: -16px;
}
.index_worry_item_p::after {
  border-width: 15px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
  bottom: -14px;
}
.index_worry_item_p em {
  font-size: 2.4rem;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .index_worry_item_p {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 5px 20px;
    margin-bottom: 30px;
    top: -30px;
  }
  .index_worry_item_p em {
    font-size: 1.6rem;
  }
}
.index_worry_item h3 span {
  display: inline-block;
  font-size: 5.5rem;
  letter-spacing: .3rem;
  line-height: 1.5;
  border-bottom: 3px #fff solid;
  padding: 0 5px;
  transition: .3s ease-in-out;
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transform-origin: left;
  opacity: 0;
}
.index_worry_item h3 span.is_show {
  transform: translate3d(0, 0, 0) skewY(0);
  opacity: 1;
}
.index_worry_item.is_active h3 span {
  border-bottom: 3px var(--main) solid;
}
.index_worry_item h3 .sup_reg {
  font-size: 110%;
  top: 0;
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .index_worry_item h3 span {
    font-size: 2.8rem;
    line-height: 1.8;
  }
}
.index_worry_item .title_lead {
  font-size: 1.6rem;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .index_worry_item .title_lead {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: justify;
  }
}
.index_worry_item_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 30px;
  margin-top: 50px;
}
.index_worry_item_list li img {
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.index_worry_item_list li figcaption {
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .index_worry_item_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }
  .index_worry_item_list li {
    margin: 0 10px;
  }
  .index_worry_item_list li img {
    width: 35vw;
  }
}
.index_worry_item_caution {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  text-align: center;
}
.index_worry_item_caution::after {
  content: '';
  background: url(images/h_nami_yellow_s.svg) repeat-x left bottom / contain;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.index_worry_item_caution span {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: .3rem;
  color: var(--accent);
  padding: 0 0 5px;
}
.index_worry_item_caution span:first-of-type {
  padding: 0 0 5px 35px;
}
.index_worry_item_caution span:first-of-type:before {
  content: '※';
  position: absolute;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .index_worry_item_caution::after {
    content: none;
  }
  .index_worry_item_caution span {
    font-size: 1.7rem;
    letter-spacing: .12em;
    padding: 0 0 5px;
  }
  .index_worry_item_caution span:first-of-type {
    padding: 0 0 5px 20px;
    margin-bottom: 10px;
  }
  .index_worry_item_caution span:first-of-type:before {
    left: 0;
  }
  .index_worry_item_caution span::after {
    content: '';
    background: url(images/h_nami_yellow_s.svg) repeat-x left bottom / contain;
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.index_worry_item_image {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 500px;
}
.index_worry_item_image_child {
  height: 100%;
  padding-top: 500px;
}
.index_worry_item_image_child.slide-animation {
  animation: fadezoom 15s 0s forwards;
}
.index_worry_item.is_order .index_worry_item_image_child.child01 {
  background: url(images/bg_index_order01_pc.jpg) no-repeat bottom center / cover;
}
.index_worry_item.is_order .index_worry_item_image_child.child02 {
  background: url(images/bg_index_order02_pc.jpg) no-repeat bottom center / cover;
}
.index_worry_item.is_active .index_worry_item_image_child.child01 {
  background: url(images/bg_index_active01_pc.jpg) no-repeat bottom center / cover;
}
.index_worry_item.is_active .index_worry_item_image_child.child02 {
  background: url(images/bg_index_active02_pc.jpg) no-repeat bottom center / cover;
}
@media screen and (max-width: 768px) {
  .index_worry_item_image {
    position: relative;
    height: 240px;
  }
  .index_worry_item_image_child {
    padding-top: 240px;
  }
  .index_worry_item.is_order .index_worry_item_image_child.child01 {
    background: url(images/bg_index_order01_sp.jpg) no-repeat bottom center / cover;
  }
  .index_worry_item.is_order .index_worry_item_image_child.child02 {
    background: url(images/bg_index_order02_sp.jpg) no-repeat bottom center / cover;
  }
  .index_worry_item.is_active .index_worry_item_image_child.child01 {
    background: url(images/bg_index_active01_sp.jpg) no-repeat bottom center / cover;
  }
  .index_worry_item.is_active .index_worry_item_image_child.child02 {
    background: url(images/bg_index_active02_sp.jpg) no-repeat bottom center / cover;
  }
}
.index_worry_item_h.h_ribbon {
  max-width: 880px;
  margin: 50px auto;
}
.index_worry_item_h.h_ribbon::before, .index_worry_item_h.h_ribbon::after {
  content: none;
}
.index_worry_item_h.h_ribbon > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 820px;
  height: 60px;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: .2em;
}
.index_worry_item_h.h_ribbon > span::before, .index_worry_item_h.h_ribbon > span::after {
  height: 60px;
  width: 30px;
}
.index_worry_item_h.h_ribbon > span em {
  font-size: 3.4rem;
  font-style: normal;
}
.index_worry_item_h.h_ribbon > span span {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .index_worry_item_h.h_ribbon {
    max-width: calc(100% - 40px);
    margin: 30px auto;
  }
  .index_worry_item_h.h_ribbon > span {
    display: inline-block;
    min-height: 70px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .index_worry_item_h.h_ribbon > span::before, .index_worry_item_h.h_ribbon > span::after {
    height: 70px;
    width: 32px;
  }
  .index_worry_item_h.h_ribbon > span em {
    font-size: 2.4rem;
  }
  .index_worry_item_h.h_ribbon > span span {
    font-size: 1.2rem;
  }
}
.index_worry_item_approach {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 40px;
  margin-top: 50px;
  counter-reset: app_num 0;
}
.index_worry_item_approach li {
  position: relative;
}
.index_worry_item_approach li::before {
  content: none;
}
.index_worry_item_approach_num {
  display: inline-block;
  background: url(images/fuki_bg_border.svg) no-repeat left top / contain;
  width: 58px;
  height: 58px;
  position: absolute;
  top: -15px;
  left: -30px;
}
.index_worry_item_approach_num::before {
  content: counter(app_num, decimal-leading-zero);
  counter-increment: app_num 1;
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 2.5rem;
  letter-spacing: .03em;
  line-height: 58px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.index_worry_item_approach li img {
  background: #fff;
  border-radius: 10px;
}
.index_worry_item_approach li figcaption {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: .15em;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .index_worry_item_approach {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 10px 0;
  }
  .index_worry_item_approach_num {
    background: url(images/fuki_bg_border_sp.svg) no-repeat left top / contain;
    width: 40px;
    height: 40px;
    top: -10px;
    left: -20px;
  }
  .index_worry_item_approach_num::before {
    font-size: 1.7rem;
    line-height: 40px;
  }
  .index_worry_item_approach li figcaption {
    font-size: 1.4rem;
  }
}
.index_campaign {
  position: relative;
  background: #fff;
  padding: 60px;
  font-weight: 700;
  color: var(--main);
  letter-spacing: .3rem;
  /* z-index: 1; */
}
.index_campaign::before {
  content: '';
  width: 100%;
  height: 54px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.index_campaign.is_order::before {
  background: url(images/arrow_bg_navy.svg) no-repeat top center / contain;
}
.index_campaign.is_active::before {
  background: url(images/arrow_bg_yellow.svg) no-repeat top center / contain;
}
@media screen and (max-width: 768px) {
  .index_campaign {
    padding: 60px 15px;
  }
  .index_campaign::before {
    height: 40px;
  }
}
.index_campaign_p {
  text-align: center;
}
.index_campaign_p span {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font-size: 2rem;
}
.index_campaign_p span::before, .index_campaign_p span::after {
  content: '';
  background: var(--main);
  width: 2px;
  height: 24px;
  position: absolute;
  top: 50%;
}
.index_campaign_p span::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.index_campaign_p span::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}
.index_campaign_h {
  font-size: 3.6rem;
  text-align: center;
}
.index_campaign_h .sup_reg {
  font-size: 120%;
}
.index_campaign_price {
  font-size: 1.8rem;
  text-align: center;
}
.index_campaign_price em {
  font-size: 8.8rem;
  font-style: normal;
  line-height: 1;
}
.index_campaign .btn a {
  max-width: 522px;
  padding: 25px;
  font-size: 1.8rem;
  letter-spacing: .12em;
}
@media screen and (max-width: 768px) {
  .index_campaign_p span {
    padding: 0 20px;
    font-size: 1.6rem;
  }
  .index_campaign_h {
    font-size: 2.4rem;
  }
  .index_campaign_price {
    font-size: 1.4rem;
  }
  .index_campaign_price em {
    font-size: 6rem;
  }
  .index_campaign .btn a {
    display: block;
    padding: 10px 20px;
    font-size: 1.5rem;
    text-align: center;
  }
}
.index_feature {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .index_feature {
    padding-bottom: 60px;
  }
}
.index_feature::before, .index_feature::after {
  position: absolute;
  content: "";
  background: url(images/deco_tile.svg) no-repeat center;
  width: 250px;
  height: 430px;
  top: 0;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .index_feature::before, .index_feature::after {
    width: calc(250px / 2.5);
    height: calc(430px / 2.5);
  }
}
.index_feature::before {}
.index_feature::after {
  right: 0;
  transform: rotateY(-180deg);
}
.index_feature_cont {
  background: #FFF;
  padding: 40px 40px 80px;
  position: relative;
  margin: 190px auto 0;
}
@media screen and (max-width: 768px) {
  .index_feature_cont {
    padding: 25px 25px 50px;
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 768px) {
  .index_feature_cont::before, .index_feature_cont::after {
    content: "";
    position: absolute;
    top: -110px;
    background: url("images/h_deco_add_water.svg") no-repeat center;
    height: 80px;
    width: 80px;
    background-size: 100% auto;
  }
  .index_feature_cont::before {
    left: 0;
    transform: translate(180%, -0%);
  }
  .index_feature_cont::after {
    right: 0;
    transform: translate(-180%, -0%) rotateY(180deg);
  }
}
.index_feature_deco {
  position: absolute;
  left: 50%;
  top: -60px;
  max-width: 50px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  transform: translate(-50%, -100%);
}
@media screen and (max-width: 768px) {
  .index_feature_deco {
    top: -10px;
    max-width: 40px;
  }
}
.index_feature_h {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  color: var(--main);
  letter-spacing: 0.6rem;
  line-height: 1.8;
  z-index: 1;
  margin: -75px auto 0;
}
@media screen and (max-width: 768px) {
  .index_feature_h {
    font-size: 2.0rem;
    letter-spacing: 0.4rem;
    margin: 0px auto 0;
  }
}
.index_feature_h::before {
  content: "";
  position: absolute;
  width: 755px;
  height: 785px;
  background: #FFF;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100px);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .index_feature_h::before {
    width: 70%;
    height: 100px;
    transform: translate(-50%, -60px);
  }
}
.index_feature_p, .index_feature_sec, .index_feature_plus, .index_feature_sec {
  position: relative;
  z-index: 1;
}
.index_feature_p {
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .index_feature_p {
    margin: 15px auto 0;
  }
}
.index_feature_p p {
  text-align: center;
  letter-spacing: 0.2rem;
  line-height: 2.0;
}
@media screen and (max-width: 768px) {
  .index_feature_p p {
    text-align: justify;
    line-height: 1.8;
  }
}
.index_feature_sec_h {
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
}
.index_feature_sec_h .h_border {
  color: var(--main);
}
.index_feature_sec_h .h_border > span {
  border-color: var(--main);
}
.index_feature_list {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.index_feature_list ul {
  justify-content: center;
  margin: 0 -20px 0;
}
@media screen and (max-width: 768px) {
  .index_feature_list ul {
    justify-content: inherit;
    align-items: inherit;
    margin: 0 -15px 0;
  }
}
.index_feature_list li {
  flex-basis: 140px;
  position: relative;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .index_feature_list li {
    flex-basis: calc(100% / 2 - 30px);
    position: relative;
    margin: 0 15px 30px;
  }
}
.index_feature_list_num {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-40%, -40%);
  background: url('images/fuki_bg_border.svg')no-repeat center;
  width: 58px;
  height: 58px;
  color: var(--main);
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index_feature_list_num {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
}
.index_feature_list_img {
  position: relative;
  background: var(--sub);
  max-width: 140px;
  height: 140px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .index_feature_list_img {
    height: 130px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 320px) {
  .index_feature_list_img {
    height: 120px;
  }
}
.index_feature_list_h {
  color: var(--main);
  font-size: 2.0rem;
  text-align: center;
  margin: 10px auto 0;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .index_feature_list_h {
    font-size: 1.6rem;
  }
}
.index_feature_list_add {
  position: absolute;
  content: "";
  right: -30px;
  top: 50%;
  transform: translate(100%, -60%);
  margin: 0 0 0 25px;
}
@media screen and (max-width: 768px) {
  .index_feature_list_add {
    position: inherit;
    right: -0px;
    top: 0%;
    transform: translate(0%, 0%);
    margin: 0 0 0 0px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--main);
    border-left: none;
    border-right: none;
  }
}
.index_feature_list_add_inner {
  position: relative;
  color: var(--main);
  text-align: left;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .index_feature_list_add_inner {
    text-align: center;
    padding: 15px 0;
  }
}
@media screen and (min-width: 768px) {
  .index_feature_list_add_inner::before, .index_feature_list_add_inner::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--main);
    left: 0;
  }
  .index_feature_list_add_inner::before {
    top: 0;
    transform: rotate(-20deg);
  }
  .index_feature_list_add_inner::after {
    bottom: 0;
    transform: rotate(20deg);
  }
}
.index_feature_list_add_h {
  font-size: 1.5rem;
  margin-top: 5px;
  width: 240px;
  letter-spacing: 0.3rem;
  line-height: 2.0;
}
@media screen and (max-width: 768px) {
  .index_feature_list_add_h {
    width: 100%;
  }
}
.index_feature_list_add_h .p_marker {
  padding: 2px;
}
.index_feature_plus {
  max-width: 35px;
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .index_feature_plus {
    margin: 40px auto 0;
  }
}
.index_feature_sec_h {
  position: relative;
}
.index_feature_sec_h_add {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}
.index_feature_sec_h_add_img {
  max-width: 155px;
  width: 100%;
  transform: translate(100px, -160px);
}
@media screen and (max-width: 768px) {
  .index_feature_sec_h_add_img {
    max-width: 120px;
    transform: translate(55px, -115px);
  }
}
.index_feature_plus + .index_feature_sec .index_feature_list_img {
  background: #BFD9EC;
}
.index_feature_sec_h_add_deco {
  max-width: 40px;
  width: 100%;
  transform: translate(-60px, -45px);
}
@media screen and (max-width: 768px) {
  .index_feature_sec_h_add_deco {
    max-width: 30px;
    transform: translate(-65px, -25px);
  }
}
@media screen and (min-width: 768px) {
  .index_feature_cont .btn {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    margin-top: 0;
  }
  .index_feature_cont .btn a {
    width: 400px;
  }
}
.index_menu {
  position: relative;
}
@media screen and (max-width: 768px) {
  .index_menu {
    padding-top: 80px;
  }
}
.index_menu::before {
  position: absolute;
  content: "";
  background: url('images/arrow_bg_navy.svg')no-repeat center bottom;
  left: 50%;
  top: 0;
  transform: translate(-50%, -20%);
  width: 350px;
  height: 50px;
}
.index_menu_active {
  width: 100%;
  position: relative;
}
.index_menu_h {
  max-width: 415px;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .index_menu_h {
    max-width: none;
    width: calc(100% - 20px);
    font-size: 1.3rem;
    letter-spacing: 0rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.index_menu_active_cont {
  padding: 60px 25px 50px;
  text-align: center;
  border: 4px solid var(--main);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .index_menu_active_cont {
    padding: 50px 15px 30px;
  }
}
.index_menu_active_sub, .index_menu_active_h {
  color: var(--main);
  font-weight: bold;
}
.index_menu_active_sub {
  font-size: 2.3rem;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 768px) {
  .index_menu_active_sub {
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
  }
}
.index_menu_active_h {
  font-size: 4.8rem;
  letter-spacing: 0.9rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .index_menu_active_h {
    font-size: 3.0rem;
    letter-spacing: 0.4rem;
  }
}
.index_menu_active_p {
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .index_menu_active_p {
    margin: 20px auto 0;
  }
}
.index_menu_active_p p {
  text-align: center;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .index_menu_active_p p {
    text-align: justify;
  }
}
@media screen and (min-width: 768px) {
  .index_menu_active_p p {
    margin-bottom: 0;
  }
}
.index_menu_active_p a {
  color: var(--main);
  text-decoration: underline;
}
.index_menu_active_bg {
  height: 400px;
  background: url('images/index_menu_active.jpg') no-repeat center;
  background-size: cover;
  border: 4px solid var(--main);
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .index_menu_active_bg {
    height: 200px;
  }
}
.index_menu_active_btn {
  position: relative;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
}
.index_menu_active_btn a {
  display: block;
  background: url(images/arrow_corner.svg)no-repeat right bottom, var(--main);
  padding: 45px 25px;
  background-size: 100px 100px, auto;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .index_menu_active_btn a {
    background-size: 40px 40px, auto;
  }
}
.index_menu_active_btn_deco {
  position: absolute;
  content: "";
  max-width: 51px;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .index_menu_active_btn_deco {
    max-width: 40px;
  }
}
.index_menu_active_btn p {
  text-align: center;
  letter-spacing: 0.3rem;
}
.index_menu_active_btn_price {
  font-size: 2.0rem;
  letter-spacing: 0.4rem;
  line-height: 1;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .index_menu_active_btn_price {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}
.index_menu_active_btn_price .en {
  font-size: 8.8rem;
}
@media screen and (max-width: 768px) {
  .index_menu_active_btn_price .en {
    font-size: 5.0rem;
  }
}
.index_menu_menus .flex {
  justify-content: space-between;
}
.index_menu_menus li {
  flex-basis: 460px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .index_menu_menus li {
    flex-basis: 100%;
    margin-top: 25px;
  }
}
.index_menu_menus li a {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: url("images/arrow_corner.svg")no-repeat right bottom, var(--main);
  background-size: 40px 40px, auto;
  color: #FFF;
  text-align: center;
  justify-content: center;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
}
.index_menu_menus_img {
  border: 4px solid var(--main);
  height: 185px;
  width: 100%;
  background-size: cover;
  border-radius: 10px 10px 0 0;
}
.index_menu_menus_h {
  padding: 5px 25px 8px;
}
.index_menu_insurance .index_menu_menus_img {
  background-image: url("images/index_menu_insurance.jpg");
}
.index_menu_own .index_menu_menus_img {
  background-image: url("images/index_menu_own.jpg");
}
@media screen and (max-width: 768px) {
  .index_note {
    padding-bottom: 80px;
  }
}
.index_note_menu {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFF;
  box-shadow: 10px 10px 15px 0 rgb(0 0 0 / 20%);
  margin-bottom: 80px;
}
.index_note_menu_img {
  flex-basis: 50%;
}
.index_note_menu_txt {
  flex-basis: 50%;
  padding: 25px 60px 40px;
  text-align: center;
}
.index_note_menu_txt h3 {
  font-size: 3.3rem;
  letter-spacing: .12em;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .index_note_menu {
    flex-direction: column;
    margin-bottom: 80px;
  }
  .index_note_menu_txt {
    padding: 25px 25px 40px;
    width: 100%;
  }
  .index_note_menu_txt h3 {
    font-size: 2rem;
  }
}
.index_note_list ul {
  align-items: inherit;
  justify-content: space-between;
  margin: 50px auto 0;
}
.index_note_list li {
  flex-basis: 470px;
  background: #FFF;
  box-shadow: 10px 10px 15px 0 rgb(0 0 0 / 20%);
  padding: 25px 25px 40px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index_note_list li {
    flex-basis: 100%;
  }
  .index_note_list li:nth-child(2) {
    margin-top: 80px;
  }
}
.index_note_list_deco {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  max-width: 140px;
  width: 100%;
  height: 140px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0 0;
}
.index_note_list_traffic .index_note_list_deco img {
  max-width: 56px;
  transform: translate(-5px, 0);
}
.index_note_list_insurance .index_note_list_deco img {
  max-width: 41px;
}
.index_note_list_h, .index_note_list_cont {
  position: relative;
  z-index: 1;
}
.index_note_list_h {
  font-size: 1.7rem;
  letter-spacing: 0.3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .index_note_list_h {
    font-size: 1.4rem;
    line-height: 2.2;
    letter-spacing: 0.2rem;
  }
}
.index_note_list_h span {
  border-bottom: 1px solid var(--base);
  padding: 0 0 8px;
}
.index_note_list_cont {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.4rem;
  position: relative;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .index_note_list_cont {
    font-size: 2.2rem;
    line-height: 1.8;
  }
}
.index_note_list_cont .p_marker {
  background: linear-gradient(to bottom, transparent, transparent 60%, var(--accent) 60%, var(--accent));
  padding: 5px 0 5px 3px;
}
.index_note_list_cont_price {
  font-size: 9.0rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .index_note_list_cont_price {
    font-size: 8.0rem;
  }
}
.index_note_list_cont_price_add {
  font-size: 1.2rem;
  color: var(--base);
  position: absolute;
  right: 0;
  top: 50%;
  letter-spacing: 0.2rem;
  transform: translate(-20%, -50%);
}
@media screen and (max-width: 768px) {
  .index_note_list_cont_price_add {
    font-size: 1.1rem;
    transform: translate(-0%, -50%);
    letter-spacing: 0.1rem;
  }
}
.index_note_list li .btn a {
  max-width: 300px;
  /* position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%); */
}
.index_representative .flex {
  align-items: flex-start;
}
.index_representative .div_L {
  flex-basis: 400px;
}
@media screen and (max-width: 768px) {
  .index_representative .div_L {
    flex-basis: 100%;
  }
}
.index_representative .div_R {
  flex-basis: 530px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .index_representative .div_R {
    flex-basis: 100%;
  }
}
.index_representative .div_R p {
  line-height: 2.0;
  margin-bottom: 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .index_representative .div_R p {
    line-height: 1.8;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
}
.index_representative_h {
  font-size: 2.0rem;
  color: #FFF;
  letter-spacing: 0.3rem;
  line-height: 2.4;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .index_representative_h {
    font-size: 1.8rem;
    margin: 20px 0 20px;
    letter-spacing: 0.2rem;
  }
}
.index_representative_h .p_marker {
  background: #fff;
  color: var(--main);
}
.index_representative_prof {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.2rem;
  color: #fff;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .index_representative_prof {
    text-align: right;
  }
}
.index_representative_prof .font_S {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .index_representative_prof .font_S {
    margin-right: 15px;
    font-size: 1.1rem;
  }
}
.index_recommender {
  margin: 50px auto 0;
}
.index_recommender_list li {
  width: 360px;
  margin: 0 30px 30px;
  flex-basis: 360px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index_recommender_list li {
    width: 100%;
    margin: 0 25px 30px;
    flex-basis: 100%;
  }
}
.index_recommender_list_name {
  display: inline-block;
  max-width: 310px;
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  color: #fff;
  margin: 15px auto;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .index_recommender_list_name {
    max-width: 90%;
    font-size: 1.6rem;
  }
}
.index_recommender_list_name .font_S {
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  margin-bottom: 8px;
  display: inline-block;
}
.index_recommender_list li p {
  text-align: left;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .index_recommender_list li p {
    text-align: left;
    font-size: 1.4rem;
  }
}
/*------------------------------------------------------------
ABOUT / 当院について 
----------------------------------------a--------------------*/
.about_concept {
  background: url('images/about_concept_bg.jpg') no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .about_concept {
    background-image: url('images/about_concept_bg_sp.jpg');
    padding-bottom: 240px;
    background-position: bottom;
    background-size: 100% 200px;
  }
}
.about_concept_cont {
  max-width: 530px;
  margin-left: auto;
}
.about_concept_cont_h {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  line-height: 2.6;
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about_concept_cont_h {
    font-size: 1.9rem;
    letter-spacing: 0.3rem;
    margin-top: 0;
  }
}
.about_concept_cont_h .p_marker {
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  .about_concept_cont_h .p_marker {
    padding: 10px 10px;
  }
}
.about_concept_cont_p {
  margin-top: 25px;
  letter-spacing: 0.2rem;
  line-height: 2.2;
}
.about_concept_cont_p p {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about_concept_cont_p p {
    font-size: 1.4rem;
    line-height: 2.0;
  }
}
.about_offer {
  position: relative;
}
.about_offer::before {
  position: absolute;
  content: "";
  background: url(images/arrow_bg_sub.svg)no-repeat center bottom;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 80%);
  width: 350px;
  height: 50px;
}
.about_offer_list ul {
  justify-content: space-between;
  align-items: inherit;
}
.about_offer_list li {
  flex-basis: 160px;
}
@media screen and (max-width: 768px) {
  .about_offer_list li {
    flex-basis: 50%;
  }
}
.about_offer_list_img {
  max-width: 130px;
  width: 100%;
  margin: 0 auto;
  background: var(--sub02);
  border-radius: 200px;
}
.about_offer_list_p {
  margin: 25px 0;
}
.about_offer_list_p p {
  color: var(--main);
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}
.about_totalsupport {
  padding-top: 100px;
}
.about_totalsupport .h_fuki {
  line-height: 2.5;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .about_totalsupport .h_fuki {
    line-height: 2.2;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  }
}
.about_totalsupport .h_fuki > span {
  max-width: 650px;
  width: 100%;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about_totalsupport .h_fuki > span {
    max-width: none;
  }
  .about_totalsupport .h_fuki span::before {
    transform: translate(-50%, -50%);
  }
  .about_totalsupport .h_fuki span::after {
    transform: translate(50%, -50%)rotateY(-180deg);
  }
}
.about_totalsupport_deco {
  max-width: 450px;
  width: 100%;
  display: inline-block;
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .about_totalsupport_deco {
    max-width: 80%;
    margin: 5px 10px 15px;
  }
}
.about_totalsupport .h_fuki02 {
  max-width: 180px;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
.about_totalsupport_list ul {
  justify-content: space-between;
  align-items: inherit;
  max-width: 870px;
  width: 100%;
  margin: 0 auto;
}
.about_totalsupport_list li {
  flex-basis: 170px;
  color: #FFF;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .about_totalsupport_list li {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 768px) {
  .about_totalsupport_list li:nth-child(2) {
    position: relative;
  }
  .about_totalsupport_list li:nth-child(2)::before, .about_totalsupport_list li:nth-child(2)::after {
    position: absolute;
    content: "";
    border: 16px solid transparent;
    bottom: 0;
    left: 50%;
  }
  .about_totalsupport_list li:nth-child(2)::before {
    border-top: 12px solid #FFF;
    transform: translate(-50%, 150%);
  }
  .about_totalsupport_list li:nth-child(2)::after {
    border-top: 12px solid var(--sub02);
    transform: translate(-50%, 220%);
  }
}
.about_totalsupport_list li h4 {
  font-size: 2.3rem;
  border-bottom: 1px dotted #FFF;
  display: inline-block;
  letter-spacing: 0.4rem;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .about_totalsupport_list li h4 {
    font-size: 2.0rem;
    letter-spacing: 0.3rem;
    margin-top: 15px;
  }
}
.about_totalsupport_list li p {
  margin: 10px auto 0;
  text-align: center;
  line-height: 1.6;
}
.about_shop_menu_active {
  position: relative;
  z-index: 2;
}
.about_shop_menu_active .shop_menu_active {
  box-shadow: none;
}
.about_shop_menu_active .shop_menu_active::before {
  content: "";
  position: absolute;
  max-width: 980px;
  width: 100%;
  height: 100%;
  border: 1px solid #FFF;
  border-radius: 10px;
  top: 7px;
  left: 7px;
  z-index: -1;
}
.h_deco_radial {
  position: relative;
  font-size: 5.2rem;
  padding: 0 0px 0 5px;
}
.h_deco_radial::before {
  position: absolute;
  content: "";
  background: url('images/h_deco_radial.svg')no-repeat center;
  width: calc(300px / 6);
  height: calc(114px / 6);
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
}
@media screen and (max-width: 768px) {
  .about_reason .h_deco {
    margin: 15px auto 15px;
    font-size: 1.7rem;
    line-height: 1;
  }
}
.about_reason_sec {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .about_reason_sec:last-of-type {
    margin-bottom: 0px;
  }
}
.about_reason_sec .div_W {
  align-items: inherit;
}
.about_reason_sec .div_img {
  flex-basis: 460px;
}
.about_reason_sec .div_txt {
  flex-basis: 470px;
}
@media screen and (max-width: 768px) {
  .about_reason_sec .div_img, .about_reason_sec .div_txt {
    flex-basis: 100%;
  }
  .about_reason_sec .div_img {
    margin-bottom: 25px;
  }
}
.about_reason_sec .div_R {
  margin-left: auto;
  order: 2;
}
@media screen and (max-width: 768px) {
  .about_reason_sec .div_R {
    order: 0;
  }
}
.about_reason_sec h3 {
  color: var(--main);
  font-size: 2.4rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .about_reason_sec h3 {
    font-size: 2.0rem;
    letter-spacing: 0.3rem;
    text-align: center;
    flex-basis: 100%;
    justify-content: center;
    line-height: 1.6;
  }
}
.about_reason01 h3, .about_reason02 h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.about_reason_num {
  max-width: 100px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .about_reason_num {
    max-width: 80px;
    margin-bottom: 20px;
  }
  .about_reason_h {
    flex-basis: 100%;
  }
}
.about_reason_sec h3 + p {
  margin-top: 20px;
  line-height: 1.9;
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
}
.about_reason_sec .div_txt .about_reason_num {
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .about_reason_sec .div_txt .about_reason_num {
    margin-right: 0px;
    flex-basis: 100%;
  }
}
.about_reason_list ul {
  justify-content: space-between;
}
.about_reason_list li {
  flex-basis: 300px;
}
@media screen and (max-width: 768px) {
  .about_reason_list li {
    flex-basis: 100%;
    margin-bottom: 50px;
  }
}
.about_reason_list li h3 {
  text-align: center;
}
.about_reason_list li .about_reason_num {
  margin: 0 auto 20px;
}
.about_starsstory {
  position: relative;
  background: url(images/index_message_bg.jpg) no-repeat center / cover;
  padding: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .about_starsstory {
    position: relative;
    background: none;
    padding: 0;
  }
}
.about_starsstory .inner {
  position: relative;
  z-index: 1;
}
.about_starsstory_add {
  position: absolute;
  content: "";
  min-width: 554px;
  width: 42%;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about_starsstory_add {
    min-width: inherit;
  }
}
.about_starsstory_add_L {
  left: 0;
  transform: rotateY(180deg);
}
.about_starsstory_add_R {
  right: 0;
}
.about_starsstory_deco {
  max-width: 425px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .about_starsstory_deco {
    max-width: 80%;
  }
}
.about_starsstory_h, .about_starsstory_p p {
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about_starsstory_h, .about_starsstory_p p {
    margin-bottom: 0;
  }
}
.about_starsstory_h h2 {
  color: var(--main);
  font-size: 2.0rem;
  letter-spacing: 0.4rem;
  margin: 0px auto 0;
}
@media screen and (max-width: 768px) {
  .about_starsstory_h h2 {
    font-size: 1.8rem;
    margin: 15px auto 0;
  }
}
.about_starsstory_h_p {
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.6rem;
  line-height: 1.7;
  color: #666666;
  text-align: center;
  margin: 40px auto !important;
}
@media screen and (max-width: 768px) {
  .about_starsstory_h_p {
    font-size: 2.2rem;
    letter-spacing: 0.4rem;
    margin: 30px auto;
  }
}
.about_starsstory_p p {
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .about_starsstory_p p {
    text-align: justify;
    line-height: 1.8;
  }
}
.about_starsstory .div_deco02 {
  max-width: 800px;
  margin: 90px auto 50px;
}
@media screen and (max-width: 768px) {
  .about_starsstory .div_deco {
    max-width: none;
    margin: 50px auto 0;
    padding: 50px 0 50px;
  }
  .about_starsstory .div_deco02 {
    margin: 0 auto;
  }
}
.about_starsstory .div_deco_corner {
  border-color: #FFF;
}
.about_starsstory .h_ribbon {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about_starsstory .h_ribbon {
    max-width: 540px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 55px;
  }
}
.about_starsstory .h_ribbon::before, .about_starsstory .h_ribbon::after {
  content: none;
}
.about_starsstory .h_ribbon span {
  max-width: 500px;
}
.about_starsstory .div_W {
  margin: 0 auto;
  padding: 75px 25px 50px;
  background: #fff;
}
.about_starsstory .div_L {
  flex-basis: 390px;
  font-weight: 500;
}
.about_starsstory .div_L p {
  line-height: 2.0;
}
.about_starsstory .div_R {
  flex-basis: 300px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about_starsstory .div_W {
    padding: 0 25px;
  }
  .about_starsstory .div_L p {
    line-height: 1.8;
  }
  .about_starsstory .div_R {
    flex-basis: 100%;
    padding: 10px 30px 40px;
    margin-left: 0;
    order: -1;
  }
}
.about_starsstory_bg {
  height: 420px;
  width: 100%;
  background: url('images/about_starsstory_bg.jpg')no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .about_starsstory_bg {
    height: 200px;
  }
}
.about_starsstory_bg_img {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("images/index_message_deco.svg")no-repeat center bottom;
  background-size: cover;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .about_starsstory_bg_img {
    padding: 0px 0 60px;
  }
}
.about_starsstory_bg_img::before {
  content: "";
  position: absolute;
  background: url("images/index_message_deco_b_y.svg")no-repeat center center;
  background-size: 100% auto;
  bottom: 0;
  left: 50%;
  max-width: 1280px;
  width: 100%;
  height: 120px;
  transform: translate(-50%, 50%);
  pointer-events: none;
}
.about_starsstory_bg_img.delighter {
  transform: scale(0, 1);
  transition: all 1.5s ease;
}
.about_starsstory_bg_img.delighter.started {
  transform: scale(1, 1);
}
.about_starsstory_box {
  position: relative;
  z-index: 1;
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  .about_starsstory_box {
    padding: 50px 25px;
    background: url(images/index_message_bg_sp.jpg) no-repeat center bottom / cover;
  }
  .about_starsstory_decowrap {
    padding: 50px 25px;
    background: var(--accent);
  }
}
.about_originality {
  padding: 180px 0 80px;
}
@media screen and (max-width: 768px) {
  .about_originality {
    padding: 100px 0 80px;
  }
}
.about_originality_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  counter-reset: org_num 0;
}
.about_originality_list_item {
  position: relative;
  flex-basis: 470px;
  background: #fff;
  box-shadow: 10px 10px 10px 0 rgb(0 0 0 / 5%);
  padding: 40px 35px 60px;
  margin-top: 80px;
}
.about_originality_list_item::before {
  content: none;
}
@media screen and (max-width: 768px) {
  .about_originality_list_item {
    padding: 40px 25px 60px;
    margin-top: 50px;
  }
}
.about_originality_list_num {
  display: inline-block;
  background: url(images/bg_star.svg) no-repeat center top / contain;
  width: 100px;
  height: 96px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.about_originality_list_num.is_show {
  animation: rotateXAnime 1s forwards;
}
.about_originality_list_num::before {
  content: counter(org_num, decimal-leading-zero);
  counter-increment: org_num 1;
  display: block;
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: .03em;
  color: var(--main);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}
.about_originality_list_h_p {
  margin: 30px auto 10px;
  text-align: center;
  letter-spacing: .3rem;
  color: var(--main);
}
.about_originality_list_h_p span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0 20px;
}
.about_originality_list_h_p span::before, .about_originality_list_h_p span::after {
  content: '';
  background: var(--main);
  width: 1px;
  height: 18px;
  position: absolute;
  top: 50%;
}
.about_originality_list_h_p span::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.about_originality_list_h_p span::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 768px) {
  .about_originality_list_h_p span {
    padding: 0 15px;
  }
}
.about_originality_list_h_h {
  font-size: 3rem;
  letter-spacing: .12em;
  line-height: 1.3;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about_originality_list_h_h {
    font-size: 2.4rem;
  }
}
.about_originality_list_h_h .sup_reg {
  font-size: 120%;
}
.about_originality_list_in {
  display: flex;
  justify-content: space-between;
  counter-reset: org_num 0;
  margin-top: 120px;
}
.about_originality_list_in li {
  position: relative;
  flex-basis: 190px;
}
.about_originality_list_in li:before {
  content: none;
}
.about_originality_list_in li span {
  display: inline-block;
  background: url(images/fuki_bg02.svg) no-repeat center top / contain;
  width: 50px;
  height: 54px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.about_originality_list_in li span::before {
  content: counter(org_num, decimal-leading-zero);
  counter-increment: org_num 1;
  width: 100%;
  height: 100%;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: .03em;
  line-height: 50px;
  color: #fff;
  text-align: center;
}
.about_originality_list_in_wrap {
  flex-direction: column;
}
.about_originality_list_in li dt {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: var(--main);
  border-bottom: 1px var(--main) solid;
  margin-bottom: 10px;
}
.about_originality_list_in li dd {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
  .about_originality_list_in {
    flex-direction: column;
    margin-top: 0;
  }
  .about_originality_list_in li {
    flex-basis: 100%;
    margin-top: 80px;
  }
  .about_originality_list_in li dt {
    font-size: 1.8rem;
  }
  .about_originality_list_in li dd {
    font-size: 1.4rem;
  }
}
.about_originality_list_img {
  margin-top: 30px;
}
/* .about_originality_list_img a {
  position: relative;
  display: block;
} */
.movie_wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* .about_originality_list_img a::before {
  content: '';
  background: url(images/arrow_navy.svg) no-repeat center center / contain;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .about_originality_list_img a::before {
    width: 40px;
    height: 40px;
  }
} */
.about_originality_list_gallery {
  display: grid;
  gap: 0 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .about_originality_list_gallery {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
}
.about_originality_list_p {
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: .08em;
  text-align: center;
  margin: 30px auto 0;
}
.about_originality_list_p .p_marker {
  display: inline-block;
  padding: 0 5px;
  color: var(--base);
}
@media screen and (max-width: 768px) {
  .about_originality_list_p {
    font-size: 1.4rem;
    text-align: justify;
  }
  .about_originality_list_p .p_marker {
    display: inline;
    padding: 2px 5px;
  }
}
.about_originality_list_passport {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px #cce0f0 solid;
  padding-top: 40px;
  margin-top: 30px;
}
.about_originality_list_passport img {
  max-width: 320px;
  width: 100%;
}
.about_originality_list_passport figcaption {
  flex-basis: 500px;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
  .about_originality_list_passport {
    flex-wrap: wrap;
    padding-top: 40px;
    margin-top: 30px;
  }
  .about_originality_list_passport img {
    max-width: none;
  }
  .about_originality_list_passport figcaption {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.about_originality_list_item.is_full {
  flex-basis: 100%;
  padding: 40px 60px 60px;
}
.about_originality_list_item.is_full .about_originality_list_h_p span {
  font-size: 1.8rem;
}
.about_originality_list_item.is_full .about_originality_list_h_h {
  font-size: 4rem;
}
.about_originality_list_item .btn a {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .about_originality_list_item.is_full {
    padding: 40px 25px 60px;
  }
  .about_originality_list_item.is_full .about_originality_list_h_p span {
    font-size: 1.6rem;
  }
  .about_originality_list_item.is_full .about_originality_list_h_h {
    font-size: 2.4rem;
  }
  .about_originality_list_item .btn a {
    max-width: 300px;
  }
}
.about_machine .h_border + p {
  text-align: center;
  margin-top: -15px;
}
.about_machine_list {
  margin: 40px auto 0;
}
.about_machine_list ul {
  justify-content: space-between;
}
.about_machine_list li {
  flex-basis: 470px;
  border: 1px solid var(--sub02);
  padding: 25px;
  margin-bottom: 35px;
  box-shadow: 7px 7px 0 rgba(0, 101, 178, 0.15);
}
.about_machine_list li .div_L {
  flex-basis: 140px;
}
@media screen and (max-width: 768px) {
  .about_machine_list li {
    flex-basis: 100%;
    padding: 25px 15px;
  }
  .about_machine_list li .div_L {
    flex-basis: 100%;
    padding: 0 50px;
  }
}
.about_machine_list li .div_R {
  flex-basis: 240px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about_machine_list li .div_R {
    flex-basis: 100%;
    margin-top: 15px;
  }
}
.about_machine_list li .div_R h3 {
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .about_machine_list li .div_R h3 {
    text-align: center;
  }
}
.about_machine_list li .div_R p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-top: 10px;
}
.about_operator {
  padding: 0;
  margin-top: 80px;
}
.about_operator .h_border {
  font-size: 2rem;
}
.about_operator_logo {
  margin: 40px auto 0;
  max-width: 330px;
}
@media screen and (max-width: 768px) {
  .about_operator_logo {
    max-width: 70%;
  }
}
.about_operator_table {
  max-width: 540px;
  margin: 0 auto 0;
}
.about_operator_table table {
  width: 100%;
}
.about_operator_table table tr {
  border-bottom: 1px solid var(--main);
}
.about_operator_table table th, .about_operator_table table td {
  font-weight: bold;
  font-size: 1.5rem;
  padding: 5px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .about_operator_table table th, .about_operator_table table td {
    font-size: 1.4rem;
  }
  .about_operator_table table th {
    width: 32%;
  }
}
/*------------------------------------------------------------
GUIDE / はじめての方へ
------------------------------------------------------------*/
.guide_first .h_fuki02 {
  font-size: 2.4rem;
  max-width: 700px;
  letter-spacing: 0.4rem;
  border-radius: 200px;
}
@media screen and (max-width: 768px) {
  .guide_first .h_fuki02 {
    font-size: 1.8rem;
    max-width: none;
    letter-spacing: 0.2rem;
    line-height: 1.5;
  }
}
.guide_first .h_fuki02::before {
  border: 20px solid transparent;
  border-top: 20px solid var(--main);
}
.guide_first_img {
  position: relative;
}
.guide_first_img_main {
  max-width: 128px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.guide_first_cloud {
  position: absolute;
  content: "";
  background: url('images/cloud_bg.svg')no-repeat center;
  width: 120px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .guide_first_cloud {
    width: calc(120px / 1.2);
    height: calc(86px / 1.2);
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}
.guide_first_cloud01 {
  left: 20%;
  bottom: 15%;
}
@media screen and (max-width: 768px) {
  .guide_first_cloud01 {
    left: -5%;
    bottom: 5%;
  }
}
.guide_first_cloud02 {
  left: 30%;
  bottom: 50%;
}
@media screen and (max-width: 768px) {
  .guide_first_cloud02 {
    left: 5%;
    bottom: 45%;
  }
}
.guide_first_cloud03 {
  right: 30%;
  bottom: 50%;
}
@media screen and (max-width: 768px) {
  .guide_first_cloud03 {
    right: 5%;
    bottom: 45%;
  }
}
.guide_first_cloud04 {
  right: 20%;
  bottom: 15%;
}
@media screen and (max-width: 768px) {
  .guide_first_cloud04 {
    right: -5%;
    bottom: 5%;
  }
}
.guide_first_p {
  margin: 25px auto 0;
}
.guide_first_p p {
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .guide_first_p p {
    text-align: justify;
    font-size: 1.4rem;
  }
}
.guide_difference {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .guide_difference {
    overflow-x: scroll;
  }
}
.guide_difference table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .guide_difference table {
    width: 730px;
  }
}
.guide_difference table tr {
  border-bottom: 1px dotted #FFF;
}
.guide_difference table th, .guide_difference table td {
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  padding: 10px;
}
.guide_difference table th {
  font-size: 1.8rem;
  background: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .guide_difference table th {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.guide_difference table td {
  font-size: 1.5rem;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .guide_difference table td {
    font-size: 1.4rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.guide_difference table td:nth-child(2) {
  background: #e5f0f7;
}
.guide_difference table td:nth-child(3) {
  background: #d1e3f1;
}
.guide_difference table td:nth-child(4) {
  background: #e5f0f7;
}
.guide_difference table td:nth-child(5) {
  background: rgba(255, 242, 0, 0.2);
}
.guide_difference table thead td {
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .guide_difference table thead td {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .guide_difference table thead th, .guide_difference table thead td, .guide_difference table tbody th {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .guide_difference table thead th {
    z-index: 2;
  }
}
.guide_difference table thead td:nth-child(2) {
  background: var(--main);
}
.guide_difference table thead td:nth-child(3) {
  background: var(--sub02);
}
.guide_difference table thead td:nth-child(4) {
  background: #3384c1;
}
.guide_difference table thead td:nth-child(5) {
  background: var(--accent);
}
.guide_difference table thead tr {
  border-bottom: 1px solid #FFF;
}
.guide_difference table thead .logo {
  max-width: 105px;
  margin: 0 auto;
}
.guide_difference table tbody td {
  width: 20%;
  color: var(--main);
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .guide_difference table tbody td {
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.guide_difference table .font_S {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .guide_difference table .font_S {
    font-size: 1.2rem;
  }
}
.mark {
  margin: 0 auto 5px;
}
.mark.batsu {
  background: url('images/icon_batsu.svg')no-repeat center;
  width: 27px;
  height: 27px;
}
.mark.sannkaku {
  background: url('images/icon_sannkaku.svg')no-repeat center;
  width: 32px;
  height: 29px;
}
.mark.maru {
  background: url('images/icon_maru.svg')no-repeat center;
  width: 27px;
  height: 27px;
}
.guide_promise {
  background: url('images/guide_promise_bg.jpg') no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .guide_promise {
    background: url('images/guide_promise_bg_sp.jpg') no-repeat center;
  }
}
.guide_promise h2 + p {
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .guide_promise h2 + p {
    text-align: justify;
  }
}
.guide_promise .h_border02::before, .guide_promise .h_border02::after {
  content: none;
}
.guide_promise_list {
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .guide_promise_list {
    margin: 50px auto 0;
  }
}
.guide_promise_list .flex {
  justify-content: space-between;
}
.guide_promise_list li {
  background: #FFF;
  flex-basis: 300px;
  padding: 50px 30px 25px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide_promise_list li {
    flex-basis: 100%;
    margin: 0 auto 60px;
  }
}
.guide_promise_list_num {
  position: absolute;
  content: "";
  color: #FFF;
  background: url('images/fuki_bg02.svg') no-repeat;
  width: 80px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 3.6rem;
  letter-spacing: 0.2rem;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.guide_promise_list_h {
  color: var(--main);
  font-weight: bold;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .guide_promise_list_h {
    font-size: 1.8rem;
  }
}
.guide_promise_list_h span {
  border-bottom: 1px dotted var(--main);
  padding-bottom: 0px;
  display: inline-block;
  width: 100%;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .guide_promise_list_h span {
    padding-top: 7px;
  }
}
.guide_promise_list p {
  text-align: center;
  margin: 20px auto 0;
}
.guide_flow_cont {
  position: relative;
}
.guide_flow_cont::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  border-left: 1px dotted var(--main);
  left: 127px;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont::before {
    content: none;
  }
}
.guide_flow_cont_sec {
  position: relative;
}
.guide_flow_cont_sec_h {
  display: flex;
  margin-bottom: 20px;
}
.guide_flow_cont_sec_h > .div_L {
  flex-basis: 127px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_sec_h {
    align-items: center;
  }
  .guide_flow_cont_sec_h > .div_L {
    flex-basis: 18%;
  }
}
.guide_flow_cont_sec_h > .div_R {
  flex-basis: 853px;
  padding: 0 0 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_sec_h > .div_R {
    flex-basis: 82%;
    padding: 0 0 0 25px;
  }
}
.guide_flow_cont_sec_h > .div_R::after {
  content: "";
  position: absolute;
  background: var(--main);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_sec_h > .div_R::after {
    width: 12px;
    height: 12px;
    transform: translate(-50%, 12 0%);
  }
}
.guide_flow_cont_box {
  padding-left: 167px;
  margin-bottom: 40px;
}
.guide_flow_cont_box > p {
  line-height: 2.0;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_box {
    padding-left: 0;
    margin-bottom: 0;
  }
  .guide_flow_cont_box > p {
    line-height: 1.8;
  }
}
.guide_flow_cont_box > p > a {
  color: var(--main);
  text-decoration: underline;
}
.guide_flow_cont_num {
  max-width: 80px;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_num {
    max-width: 40px;
    /* margin-top: 5px; */
  }
}
.guide_flow_cont_h {
  font-size: 2.4rem;
  color: var(--main);
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_h {
    font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 1.6;
  }
}
.guide_flow_cont_img {
  margin: 50px 0 25px -170px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_img {
    margin: 50px 0 25px 0;
  }
}
.guide_flow_cont_sec .btn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: none;
}
.guide_flow_cont_sec .btn::after {
  content: none;
}
.guide_flow_cont_sec .btn a {
  flex-basis: 390px;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_sec .btn a {
    flex-basis: 100%;
    margin-top: 15px;
    padding: 15px 5px 15px 62px;
    font-size: 1.3rem;
    text-align: left;
    justify-content: inherit;
  }
}
.guide_flow_cont_sec .btn a::before {
  background: url('images/fuki_add.svg') no-repeat center;
  width: 15px;
  transform: translate(-30px, -50%);
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_sec .btn a::before {
    width: 12px;
    transform: translate(-20px, -50%);
  }
}
.guide_flow_cont_sec .btn a:nth-child(1)::after {
  content: "";
  position: absolute;
  background: url('images/icon_insurance.svg')no-repeat center;
  width: 43px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translate(75%, -50%)
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_sec .btn a:nth-child(1)::after {
    width: calc(43px / 1.5);
    height: calc(30px / 1.5);
  }
}
.guide_flow_cont_sec .btn a:nth-child(2)::after {
  content: "";
  position: absolute;
  background: url('images/icon_traffic.svg')no-repeat center;
  width: 50px;
  height: 32px;
  left: 0;
  top: 50%;
  transform: translate(60%, -50%);
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_sec .btn a:nth-child(2)::after {
    width: calc(50px / 1.5);
    height: calc(32px / 1.5);
  }
}
.guide_flow_cont_inner {
  border: 2px solid var(--sub);
  padding: 25px 35px;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_inner {
    padding: 25px 15px;
    margin-bottom: 30px;
  }
}
.guide_flow_cont_inner .div_L {
  flex-basis: 300px;
}
.guide_flow_cont_inner .div_R {
  flex-basis: 400px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_inner .div_L, .guide_flow_cont_inner .div_R {
    flex-basis: 100%;
  }
}
.guide_flow_cont_inner .div_R h4 {
  font-size: 2.0rem;
  color: var(--main);
  letter-spacing: 0.2rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_inner .div_R h4 {
    margin: 10px 0 10px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.guide_flow_cont_inner h4 span.font_S {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_inner h4 span.font_S {
    font-size: 1.4rem;
  }
}
.guide_flow_cont_inner p {
  margin-bottom: 0;
  line-height: 2.0;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_inner p {
    line-height: 1.8;
    font-size: 1.3rem;
  }
}
.guide_flow_cont_inner p .p_marker {
  color: var(--base);
  font-weight: bold;
  padding: 2px;
}
.guide_flow_cont_inner ul.flex {
  justify-content: space-between;
  align-items: inherit;
  /*margin-bottom: -15px;*/
}
.guide_flow_cont_inner ul.flex li {
  flex-basis: 50%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_inner ul.flex li {
    flex-basis: 100%;
    font-size: 1.3rem;
  }
}
.guide_flow_cont_inner ul.flex li h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_inner ul.flex li h4 {
    font-size: 1.4rem;
  }
}
.guide_flow_cont_inner ul.flex li img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .guide_flow_cont_inner ul.flex li img {
    max-width: 80%;
  }
  .guide_flow_cont_inner ul.flex li:nth-child(2) {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .guide_flow_cont_inner ul.flex li:nth-child(2)::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 72px;
    background: var(--sub);
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.guide_flow_cont_inner + p {
  margin: 30px 0 0 !important;
}
.guide_flow_cont_sec:last-child > .div_R {
  padding-bottom: 0;
}
.guide_recommend {
  background: #dde9f2;
  position: relative;
  margin-top: 250px;
}
@media screen and (max-width: 768px) {
  .guide_recommend {
    margin-top: 100px;
  }
}
.guide_recommend::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 0;
  background: #99c2e0;
  opacity: .2;
  width: 100%;
  z-index: -1;
  height: 100%;
  transform: skewY(10deg);
  transition: transform .3s;
}
.guide_recommend::after {
  content: "";
  position: absolute;
  top: -25%;
  right: 0;
  background: #99c2e0;
  opacity: .2;
  width: 100%;
  z-index: -1;
  height: 100%;
  transform: skewY(-10deg);
  transition: transform .3s;
}
@media screen and (max-width: 768px) {
  .guide_recommend::before, .guide_recommend::after {
    height: 150px;
    background-size: auto 150px;
    top: -50px;
  }
}
@media screen and (min-width: 1500px) {
  .guide_recommend::before {
    transform: skewY(7deg);
  }
  .guide_recommend::after {
    transform: skewY(-7deg);
  }
}
.guide_recommend .inner {
  margin-top: -150px;
}
@media screen and (max-width: 768px) {
  .guide_recommend .inner {
    margin-top: -50px;
  }
}
.guide_recommend_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.guide_recommend_wrap::after {
  content: none;
}
.guide_recommend_item {
  flex-basis: 470px;
  background: #fff;
  box-shadow: 10px 10px 10px 0 rgb(0 0 0 / 5%);
  padding: 40px 35px;
}
@media screen and (max-width: 768px) {
  .guide_recommend_item {
    padding: 40px 25px;
  }
  .guide_recommend_item:not(:first-of-type) {
    margin-top: 30px;
  }
}
.guide_recommend_p {
  margin: 0 auto 10px;
  text-align: center;
  letter-spacing: .3rem;
  color: var(--main);
}
.guide_recommend_p span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0 20px;
}
.guide_recommend_p span::before, .guide_recommend_p span::after {
  content: '';
  background: var(--main);
  width: 1px;
  height: 18px;
  position: absolute;
  top: 50%;
}
.guide_recommend_p span::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.guide_recommend_p span::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 768px) {
  .guide_recommend_p span {
    padding: 0 15px;
  }
}
.guide_recommend_h {
  font-size: 3rem;
  letter-spacing: .12em;
  line-height: 1.3;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .guide_recommend_h {
    font-size: 2.4rem;
  }
}
.guide_recommend_h .sup_reg {
  font-size: 120%;
}
.guide_recommend_img {
  margin-top: 30px;
}
.guide_recommend_item .btn a {
  max-width: 300px;
}
.guide_support h2 + p {
  text-align: center;
  color: #FFF;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .guide_support h2 + p {
    text-align: justify;
  }
}
.guide_support_list {
  position: relative;
  margin: 40px auto 0;
}
.guide_support_list_deco {
  max-width: 307px;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, -80%);
}
@media screen and (max-width: 768px) {
  .guide_support_list_deco {
    max-width: 150px;
    transform: translate(-10%, -60%);
  }
}
.guide_support_list ul {
  justify-content: space-between;
}
.guide_support_list li {
  flex-basis: 470px;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .guide_support_list li {
    flex-basis: 100%;
    margin-bottom: 40px;
  }
  .guide_support_list li:last-child {
    margin-bottom: 0;
  }
}
.guide_support_list_img {
  margin-bottom: 15px;
}
.guide_support_list h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2.0rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .guide_support_list h3 {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.guide_support_list p {
  font-size: 1.5rem;
  letter-spacing: .12em;
}
.guide_correspondence_sec {
  background: #FFF;
  margin: 90px 0 0;
  padding: 45px 40px 60px;
  box-shadow: 10px 10px 0 #b2d1e8;
  position: relative;
}
.guide_correspondence_sec .btn a {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_sec {
    background: #FFF;
    margin: 80px 0 0;
    padding: 25px 15px 50px;
  }
}
.guide_correspondence_deco {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -20%);
  max-width: 230px;
  width: 100%;
  height: 230px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_deco {
    max-width: 180px;
    height: 180px;
    padding: 20px 0 0;
  }
}
.guide_correspondence_deco img {
  max-width: 56px;
  transform: translate(-5px, 0);
}
@media screen and (max-width: 768px) {
  .guide_correspondence_deco img {
    max-width: 40px;
  }
}
.guide_correspondence_insurance .guide_correspondence_deco img {
  max-width: 41px;
  transform: translate(0px, 0);
}
@media screen and (max-width: 768px) {
  .guide_correspondence_insurance .guide_correspondence_deco img {
    max-width: 35px;
  }
}
.guide_correspondence_inner {
  position: relative;
  z-index: 2;
}
.guide_correspondence_h {
  font-size: 2.0rem;
  color: var(--main);
  text-align: center;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_h {
    font-size: 1.8rem;
  }
}
.guide_correspondence_h + p {
  margin: 20px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_h + p {
    text-align: justify;
  }
}
.guide_correspondence_insurance_list {
  margin: 10px auto 0;
}
.guide_correspondence_insurance_list ul {
  justify-content: space-between;
  align-items: inherit;
}
.guide_correspondence_insurance_list li {
  flex-basis: 440px;
  border: 2px solid var(--sub);
  padding: 25px;
  text-align: center;
  position: relative;
  margin: 35px 0 0;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_insurance_list li {
    flex-basis: 100%;
    padding: 35px 25px 25px;
    margin: 30px 0 0;
  }
}
.guide_correspondence_insurance_list li::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('images/icon_check_navy.svg') no-repeat;
  width: 38px;
  height: 38px;
}
.guide_correspondence_insurance_list h4 {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_insurance_list h4 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.guide_correspondence_insurance_list h4 .p_main {
  font-size: 2.0rem;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_insurance_list h4 .p_main {
    font-size: 1.8rem;
  }
}
.guide_correspondence_insurance_list li p {
  text-align: center;
  font-size: 1.3rem;
}
.guide_correspondence_insurance_list ul + p {
  text-align: center;
  margin: 30px auto;
}
.guide_correspondence_note {
  text-align: center;
  position: relative;
  margin-top: 60px;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_note {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.guide_correspondence_note .div_deco_corner {
  border-color: #FFF;
}
.guide_correspondence_note_h {
  position: absolute;
  content: "";
  width: 100px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFF;
  text-align: center;
  color: var(--main);
  letter-spacing: 0.3rem;
  font-size: 1.6rem;
}
.guide_correspondence_note .icon {
  max-width: 45px;
  margin: 0 auto 10px;
  display: block;
}
.guide_correspondence_note p {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_note p {
    text-align: justify;
    font-size: 1.5rem;
  }
}
.guide_correspondence_note .font_S {
  font-weight: normal;
  font-size: 1.3rem;
  margin: 10px auto 0;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_note .font_S {
    font-size: 1.2rem;
    letter-spacing: 0.0rem;
    text-align: center;
    display: block;
  }
}
.guide_correspondence_traffic .h_fuki02 {
  margin: 35px auto 50px;
  font-size: 1.6rem;
  font-weight: bold;
  max-width: 210px;
  border-radius: 0;
  letter-spacing: 0.2rem;
}
.guide_correspondence_traffic_list ul {
  justify-content: space-between;
}
.guide_correspondence_traffic_list li {
  flex-basis: 280px;
  background: var(--sub);
  padding: 50px 25px 25px;
  position: relative;
  line-height: 2.0;
}
@media screen and (max-width: 768px) {
  .guide_correspondence_traffic_list li {
    flex-basis: 100%;
    padding: 40px 25px 25px;
    margin-bottom: 60px;
  }
}
.guide_correspondence_traffic_list li:last-child {
  margin-bottom: 0px;
}
.guide_correspondence_traffic_list_h {
  color: var(--main);
  letter-spacing: 0.3rem;
  border-bottom: 1px dotted var(--main);
  padding-bottom: 10px;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.guide_correspondence_traffic_list li:not(:last-child)::after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
}
@media screen and (min-width: 768px) {
  .guide_correspondence_traffic_list li:not(:last-child)::after {
    border-left: 10px solid var(--main);
    top: 50%;
    right: 0;
    transform: translate(150%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .guide_correspondence_traffic_list li:not(:last-child)::after {
    border-top: 10px solid var(--main);
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 170%);
  }
}
.guide_correspondence_traffic_list li::before {
  content: "01";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.0rem;
  color: var(--main);
  font-weight: bold;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.2rem;
}
.guide_correspondence_traffic_list li:nth-child(2)::before {
  content: "02";
}
.guide_correspondence_traffic_list li:nth-child(3)::before {
  content: "03";
}
.guide_qa dl {
  margin: -20px auto 0;
  flex-wrap: wrap;
}
.guide_qa dt, .guide_qa dd {
  flex-basis: 100%;
  color: #FFF;
  padding: 12px 35px;
  display: flex;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .guide_qa dt, .guide_qa dd {
    padding: 12px 25px;
    font-size: 1.4rem;
  }
}
.guide_qa dt {
  align-items: center;
  border: 1px solid #FFF;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  margin-top: 25px;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .guide_qa dt {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    margin-top: 20px;
    line-height: 1.6;
  }
}
.guide_qa dt:hover {
  opacity: 0.6;
}
.guide_qa dt::after {
  position: absolute;
  content: "";
  border: 8px solid transparent;
  border-top: 10px solid #FFF;
  right: 35px;
  top: 50%;
  transform: translate(0, -25%);
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .guide_qa dt::after {
    border: 5px solid transparent;
    border-top: 7px solid #FFF;
    right: 15px;
  }
}
.guide_qa dt.active {
  background: #FFF;
  color: var(--main);
  transition: 0.2s;
}
.guide_qa dt.active::after {
  border-top: 10px solid var(--main);
  transform: translate(0, -75%)rotateX(180deg);
  transition: 0.5s;
}
.guide_qa dd {
  padding-top: 25px;
  line-height: 2.0;
  display: none;
}
@media screen and (max-width: 768px) {
  .guide_qa dd {
    padding-right: 0;
    line-height: 1.8;
  }
}
.guide_qa_h {
  font-size: 3.6rem;
  margin-right: 15px;
  line-height: 1;
  flex-basis: 45px;
  width: 45px;
  float: left;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .guide_qa_h {
    font-size: 2.8rem;
    margin-right: 10px;
    flex-basis: 35px;
    width: 35px;
  }
}
.guide_qa_p {
  flex-basis: calc(100% - 45px - 15px);
  width: calc(100% - 45px - 15px);
  float: left;
}
@media screen and (max-width: 768px) {
  .guide_qa_p {
    flex-basis: calc(100% - 35px - 20px);
    width: calc(100% - 35px - 20px);
  }
}
/*------------------------------------------------------------
CAMPAIGN / アクティブ整体
------------------------------------------------------------*/
.campaign .pagevis {
  height: auto;
  background: url(images/bg_pattern.svg) top center;
  background-size: 45%;
  flex-direction: column;
  padding: 120px 25px 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .campaign .pagevis {
    padding: 80px 0;
  }
}
.campaign .pagevis .title_lead {
  font-size: 2rem;
  letter-spacing: .2em;
  color: var(--base);
}
@media screen and (max-width: 768px) {
  .campaign .pagevis .title_lead {
    font-size: 1.6rem;
  }
}
.campaign_plan_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .campaign_plan_wrap {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.campaign_plan_wrap::after {
  content: none;
}
.campaign_plan_item {
  flex-direction: column;
  flex-basis: 470px;
  box-shadow: 10px 10px 10px 0 rgb(0 0 0 / 10%);
  padding: 40px 35px;
}
.campaign_plan_item dt {
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: .12em;
  text-align: center;
  margin-bottom: 20px;
}
.campaign_plan_item dt span {
  display: inline-block;
  padding: 0 5px;
}
.campaign_plan_txt {
  font-size: 1.5rem;
  letter-spacing: .12em;
  line-height: 2.1;
  text-align: center;
}
.campaign_plan_item .btn a {
  max-width: 300px;
  font-size: 1.5rem;
  letter-spacing: .2em;
}
.campaign_plan_item .btn a::before {
  transform: translate(-25px, -50%) rotate(90deg);
}
.campaign_plan_item.is_order {
  background: var(--main);
  color: #fff;
}
.campaign_plan_item.is_order dt span {
  border-bottom: 2px #fff solid;
}
.campaign_plan_item.is_active {
  background: var(--accent);
  color: var(--main);
}
.campaign_plan_item.is_active dt span {
  border-bottom: 2px var(--main) solid;
}
@media screen and (max-width: 768px) {
  .campaign_plan_item {
    padding: 40px 25px;
  }
  .campaign_plan_item:not(:first-of-type) {
    margin-top: 30px;
  }
  .campaign_plan_item dt {
    font-size: 2.4rem;
  }
  .campaign_plan_txt {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .campaign_item {
    padding: 50px 15px;
  }
}
.campaign_item_inner {
  position: relative;
  background: #fff;
  padding: 80px 60px 0;
}
.campaign_item_inner::after {
  content: '';
  background: url(images/arrow_bg_white.svg) no-repeat center bottom;
  background-size: auto 50px;
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .campaign_item_inner {
    padding: 40px 15px 0;
  }
  .campaign_item_inner::after {
    height: 40px;
  }
}
.campaign_item_inner .title_lead {
  margin-top: 50px;
  letter-spacing: .2em;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .campaign_item_inner .title_lead {
    margin-top: 30px;
    line-height: 1.8;
    text-align: left;
  }
}
.campaign_item_p {
  margin: 0 auto 10px;
  text-align: center;
  letter-spacing: .3rem;
  color: var(--main);
}
.campaign_item_p span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 20px;
}
.campaign_item_p span::before, .campaign_item_p span::after {
  content: '';
  background: var(--main);
  width: 2px;
  height: 30px;
  position: absolute;
  top: 50%;
}
.campaign_item_p span::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.campaign_item_p span::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 768px) {
  .campaign_item_p span {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.campaign_item_h {
  font-size: 5.5rem;
  letter-spacing: .12em;
  line-height: 1.3;
  color: var(--main);
  text-align: center;
}
.campaign_item_h span {
  display: inline-block;
  border-bottom: 3px var(--main) solid;
}
.campaign_item_h .sup_reg {
  font-size: 120%;
}
@media screen and (max-width: 768px) {
  .campaign_item_h {
    font-size: 2.4rem;
  }
}
.campaign_item_gallery {
  display: grid;
  gap: 0 20px;
  grid-template-columns: repeat(3, 1fr);
  margin: 40px auto 60px;
}
@media screen and (max-width: 768px) {
  .campaign_item_gallery {
    gap: 0 10px;
    margin: 30px auto;
  }
}
.campaign_item_recommend {
  padding: 0 0 50px;
}
.campaign_item_title {
  font-size: 2.2rem;
  letter-spacing: .2em;
  text-align: center;
  color: var(--main);
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .campaign_item_recommend {
    padding: 0 0 30px;
  }
  .campaign_item_title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.campaign_item_recommend_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.campaign_item_recommend_inner figure {
  flex-basis: 340px;
  padding: 0 70px;
}
.campaign_item_recommend_inner figure img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .campaign_item_recommend_inner {
    flex-wrap: wrap;
  }
  .campaign_item_recommend_inner figure {
    margin-bottom: 20px;
  }
}
.campaign_item_recommend_list {
  flex-basis: 490px;
}
.campaign_item_recommend_list li {
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: .2em;
  color: var(--main);
  margin-bottom: 10px;
}
.campaign_item_recommend_list li:before {
  content: '';
  background: url(images/icon_checkbox.svg) no-repeat left / contain;
  width: 34px;
  height: 30px;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .campaign_item_recommend_list {
    flex-basis: 90%;
    margin: 0 auto;
  }
  .campaign_item_recommend_list li {
    font-size: 1.5rem;
  }
  .campaign_item_recommend_list li:before {
    width: 30px;
    height: 28px;
  }
}
.campaign_item_symptoms {
  position: relative;
  padding: 50px 0;
}
.campaign_item_symptoms::before {
  content: '';
  background: var(--sub);
  width: calc(100% + 120px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -60px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .campaign_item_symptoms {
    padding: 30px 0;
  }
  .campaign_item_symptoms::before {
    width: calc(100% + 60px);
    left: -30px;
  }
}
.campaign_item_symptoms_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 30px;
  max-width: 740px;
  margin: 0 auto;
  z-index: 1;
}
.campaign_item_symptoms_list li img {
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.campaign_item_symptoms_list li figcaption {
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .campaign_item_symptoms_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .campaign_item_symptoms_list li figcaption {
    font-size: 1.4rem;
  }
}
.campaign_item_why {
  padding: 80px 0 0;
}
.campaign_item_why .title_lead {
  font-size: 1.7rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .campaign_item_why {
    padding: 50px 0 0;
  }
  .campaign_item_why .title_lead {
    font-size: 1.4rem;
    text-align: justify;
  }
}
.campaign_item_why_step {
  display: flex;
  justify-content: space-around;
  max-width: 700px;
  margin: 0 auto;
}
.campaign_item_why_step li {
  position: relative;
  padding: 0 14px;
}
.campaign_item_why_step li::before {
  content: none;
}
.campaign_item_why_step li:not(:first-of-type)::before {
  content: '';
  border: 15px solid transparent;
  border-left: 15px #bfd9ec solid;
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
}
.campaign_item_why_step li img {
  max-width: 110px;
  width: 100%;
}
.campaign_item_why_step li figcaption {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .2em;
  margin-top: 10px;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .campaign_item_why_step {
    flex-direction: column;
    align-items: center;
  }
  .campaign_item_why_step li {
    position: relative;
    padding: 0 14px;
  }
  .campaign_item_why_step li:not(:first-of-type) {
    margin-top: 50px;
  }
  .campaign_item_why_step li:not(:first-of-type)::before {
    border: 15px solid transparent;
    border-top: 15px #bfd9ec solid;
    padding: 0;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .campaign_item_why_step li figcaption {
    font-size: 1.6rem;
  }
}
.campaign_item_why_result {
  text-align: center;
  color: var(--main);
  padding-bottom: 40px;
}
.campaign_item_why_result_img {
  max-width: 150px;
  margin: 50px auto 40px;
}
.campaign_item_why_result p {
  text-align: center;
}
.campaign_item_why_result em {
  display: inline-block;
  font-weight: bold;
  font-size: 2.6rem;
  font-style: normal;
  letter-spacing: .2em;
  line-height: 1.8;
  border-bottom: 2px var(--main) dotted;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .campaign_item_why_result_img {
    max-width: 120px;
    margin: 30px auto 10px;
  }
  .campaign_item_why_result em {
    display: inline;
    font-size: 1.8rem;
    letter-spacing: .02em;
    line-height: 2.5;
    padding-bottom: 5px;
  }
}
.campaign_item_trial {
  position: relative;
  padding: 80px 100px 140px;
}
@media screen and (max-width: 768px) {
  .campaign_item_trial {
    padding: 80px 15px 50px;
  }
}
.campaign_item_trial_h.h_ribbon {
  max-width: 770px;
}
.campaign_item_trial_h.h_ribbon::before, .campaign_item_trial_h.h_ribbon::after {
  content: none;
}
.campaign_item_trial_h.h_ribbon > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  height: 75px;
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: .12em;
  color: var(--accent);
}
.campaign_item_trial_h.h_ribbon.h_ribbon_yellow > span {
  color: var(--main);
}
.campaign_item_trial_h.h_ribbon > span::before, .campaign_item_trial_h.h_ribbon > span::after {
  height: 75px;
  width: 36px;
}
@media screen and (max-width: 768px) {
  .campaign_item_trial_h.h_ribbon {
    max-width: calc(100% - 40px);
  }
  .campaign_item_trial_h.h_ribbon > span {
    display: inline-block;
    min-height: 60px;
    height: 70px;
    font-size: 1.8rem;
    line-height: 1.5;
    padding-top: 8px;
  }
  .campaign_item_trial_h.h_ribbon > span::before, .campaign_item_trial_h.h_ribbon > span::after {
    height: 70px;
    width: 32px;
  }
  .campaign_item_trial_h.h_ribbon > span::after {
    transform: translate(100%, -50%);
  }
}
.campaign_item_trial_menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.campaign_item_trial_menu::after {
  content: none;
}
.campaign_item_trial_menu li {
  position: relative;
  flex-basis: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: .12em;
  line-height: 1.5;
  color: var(--main);
  text-align: center;
}
.campaign_item_trial_menu li:not(:first-of-type)::before {
  content: '';
  background: url(images/icon_plus.svg) no-repeat left center / contain;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: -75px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .campaign_item_trial_menu {
    /* justify-content: center;
    flex-wrap: wrap; */
    margin-bottom: 10px;
  }
  .campaign_item_trial_menu li {
    flex-basis: 23vw;
    height: 23vw;
    font-size: 3.5vw;
  }
  .campaign_item_trial_menu li:not(:first-of-type)::before {
    width: 5vw;
    height: 5vw;
    left: -6vw;
  }
}
.campaign_item_trial_hour {
  text-align: center;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 30px;
}
.campaign_item_trial_price {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: url(images/h_nami_navy.svg) no-repeat bottom left / contain;
  font-weight: bold;
  color: var(--main);
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .campaign_item_trial_price {
    flex-wrap: wrap;
    justify-content: center;
    background: url(images/h_nami_navy_s.svg) no-repeat bottom left / contain;
    padding-bottom: 10px;
  }
}
.campaign_item_trial_price_before {
  position: relative;
  text-align: center;
  margin-right: 75px;
}
.campaign_item_trial_price_before::before, .campaign_item_trial_price_before::after {
  content: "";
  position: absolute;
  border: 20px solid transparent;
  border-left: 15px solid var(--sub02);
  top: 50%;
  right: -30px;
  transform: translate(100%, -50%);
}
.campaign_item_trial_price_before::after {
  border-left-color: var(--main);
  right: -55px;
}
.campaign_item_trial_price_before_usually {
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  letter-spacing: .2em;
  margin: 0;
}
.campaign_item_trial_price_before_usually em {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-size: 3.6rem;
  letter-spacing: .03em;
  line-height: 1;
  padding-left: 10px;
}
.campaign_item_trial_price_before_usually em::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FFF;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(10deg);
}
.campaign_item_trial_price_before span {
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .campaign_item_trial_price_before {
    margin: 0 auto 40px;
  }
  .campaign_item_trial_price_before::before, .campaign_item_trial_price_before::after {
    border: 12px solid transparent;
    border-top: 8px solid var(--sub02);
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%, 120%);
  }
  .campaign_item_trial_price_before::after {
    border-top-color: var(--main);
    transform: translate(-50%, 180%);
  }
  .campaign_item_trial_price_before_usually {
    font-size: 1.8rem;
  }
  .campaign_item_trial_price_before span {
    font-size: 1.3rem;
  }
}
.campaign_item_trial_price_after {
  font-size: 2rem;
  letter-spacing: .2em;
}
.campaign_item_trial_price_after em {
  font-size: 8.8rem;
  font-style: normal;
  letter-spacing: .03em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .campaign_item_trial_price_after {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  .campaign_item_trial_price_after em {
    font-size: 5.5rem;
  }
}
.campaign_item_trial .btn {
  max-width: 750px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 60px auto 0;
}
.campaign_item_trial .btn a {
  max-width: 750px;
  background: #fff;
  border: 3px var(--main) solid;
  box-shadow: 10px 10px 0px 0 rgb(0 0 0 / 20%);
  font-size: 1.8rem;
  letter-spacing: .2em;
  padding: 35px 25px;
}
.campaign_item_trial .btn a::before {
  width: 40px;
  height: 40px;
  right: 40px;
}
.campaign_item_trial .btn a em {
  font-style: normal;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .campaign_item_trial .btn {
    position: relative;
    margin: 40px auto 0;
  }
  .campaign_item_trial .btn a {
    font-size: 1.3rem;
    padding: 20px 10px;
    text-align: center;
  }
  .campaign_item_trial .btn a::before {
    width: 20px;
    height: 20px;
    right: -10px;
  }
  .campaign_item_trial .btn a em {
    font-size: 2rem;
  }
}
.campaign_item_notes {
  padding: 80px 40px 0;
}
.campaign_item_notes .index_worry_item_caution span {
  font-size: 2.6rem;
  /* padding: 0 0 5px 40px; */
}
.campaign_item_notes .index_worry_item_caution span:first-of-type {
  padding: 0 0 5px 40px;
}
.campaign_item_notes .title_lead {
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .campaign_item_notes {
    padding: 30px 0 0;
  }
  .campaign_item_notes .index_worry_item_caution span {
    font-size: 1.7rem;
  }
  .campaign_item_notes .index_worry_item_caution span:first-of-type {
    padding: 0 0 5px 20px;
  }
  .campaign_item_notes .title_lead {
    font-weight: normal;
    font-size: 1.5rem;
    color: #fff;
  }
}
.campaign_item_notes_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.campaign_item_notes_list::after {
  content: none;
}
.campaign_item_notes_list_item {
  position: relative;
  flex-basis: 440px;
  border: 1px #fff solid;
  padding: 30px 0;
  margin-top: 35px;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: .12em;
  color: #fff;
  text-align: center;
}
.campaign_item_notes_list_item::before {
  content: '';
  background: url(images/icon_check_yellow.svg) no-repeat center top / contain;
  width: 38px;
  height: 38px;
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
}
.campaign_item_notes_list_item em {
  display: inline-block;
  font-size: 2rem;
  font-style: normal;
  letter-spacing: .2em;
}
@media screen and (max-width: 768px) {
  .campaign_item_notes_list_item {
    padding: 30px 20px 20px;
  }
  .campaign_item_notes_list_item em {
    font-size: 1.8rem;
    letter-spacing: .12em;
    margin-bottom: 10px;
  }
}
/*プランごとの違い*/
.campaign_item.is_active .campaign_item_trial_menu li:not(:first-of-type)::before {
  background: url(images/icon_plus_white.svg) no-repeat left center / contain;
}
.campaign_item.is_active .campaign_item_trial_hour {
  color: #fff;
}
.campaign_item.is_active .campaign_item_trial_price {
  background: url(images/h_nami_white_l.svg)no-repeat bottom left / contain;
}
.campaign_item.is_active .campaign_item_trial_price_before {
  color: #fff;
}
.campaign_item.is_active .campaign_item_trial_price_before::before, .campaign_item.is_active .campaign_item_trial_price_before::after {
  border-left: 15px solid var(--sub02);
}
.campaign_item.is_active .campaign_item_trial_price_before::after {
  border-left-color: var(--sub);
}
.campaign_item.is_active .campaign_item_trial_price_before_usually em::before {
  background: var(--accent);
}
.campaign_item.is_active .campaign_item_trial_price_after {
  color: var(--accent);
}
@media screen and (max-width: 768px) {
  .campaign_item.is_active .campaign_item_trial_price {
    background: url(images/h_nami_white_s.svg)no-repeat bottom left / contain;
  }
  .campaign_item.is_active .campaign_item_trial_price_before::before, .campaign_item.is_active .campaign_item_trial_price_before::after {
    border-left: 12px solid transparent;
    border-top: 8px solid var(--sub02);
  }
  .campaign_item.is_active .campaign_item_trial_price_before::after {
    border-left-color: transparent;
    border-top-color: var(--sub);
  }
}
.campaign_item_charm {
  position: relative;
  padding: 0;
  margin-top: 40px;
}
.campaign_item_charm.charm01 {
  margin-top: 100px;
}
.campaign_item_charm .inner {
  background: #fff;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .campaign_item_charm.charm01 {
    margin-top: 40px;
  }
  .campaign_item_charm .inner {
    padding: 40px 15px;
  }
}
.campaign_item_charm h3 {
  text-align: center;
  margin-bottom: 30px;
}
.campaign_item_charm h3 span {
  display: inline-block;
  font-size: 2.8rem;
  letter-spacing: .2em;
  color: var(--main);
  text-align: center;
  border-bottom: 3px var(--main) solid;
}
@media screen and (max-width: 768px) {
  .campaign_item_charm h3 span {
    font-size: 2.4rem;
  }
}
.campaign_item_charm_p {
  margin: 0 auto 10px;
  text-align: center;
  letter-spacing: .3rem;
  color: var(--main);
}
.campaign_item_charm_p span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 20px;
}
.campaign_item_charm_p span::before, .campaign_item_charm_p span::after {
  content: '';
  background: var(--main);
  width: 2px;
  height: 30px;
  position: absolute;
  top: 50%;
}
.campaign_item_charm_p span::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.campaign_item_charm_p span::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_p span {
    font-size: 1.6rem;
  }
}
.campaign_item_charm_h {
  position: relative;
  max-width: 750px;
  padding: 0 40px;
  margin: 0 auto;
}
.campaign_item_charm_h::before, .campaign_item_charm_h::after {
  content: '';
  background: url(images/h_deco_radial.svg) no-repeat center / contain;
  width: 86px;
  height: 50px;
  position: absolute;
  top: 50%;
}
.campaign_item_charm_h::before {
  left: -20px;
  transform: translateY(-50%) rotate(-90deg);
}
.campaign_item_charm_h::after {
  right: -20px;
  transform: translateY(-50%) rotate(90deg);
}
.campaign_item_charm_h p {
  text-align: center;
  font-weight: bold;
}
.campaign_item_charm_h strong {
  display: inline-flex;
  align-items: center;
  background: var(--main);
  font-size: 3.6rem;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 10px;
  padding: 0 10px;
}
.campaign_item_charm_h strong em {
  font-style: normal;
  font-size: 5.5rem;
  line-height: 1;
}
.campaign_item_charm_h strong span {
  font-size: 2rem;
}
.campaign_item_charm_h p > span {
  font-size: 1.6rem;
  letter-spacing: .12em;
  color: var(--main);
}
.campaign_item_charm_h p > em {
  font-size: 3.6rem;
  font-style: normal;
  letter-spacing: .2em;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_h {
    padding: 0 15px;
  }
  .campaign_item_charm_h::before, .campaign_item_charm_h::after {
    width: 60px;
    height: 30px;
  }
  .campaign_item_charm_h::before {
    left: -20px;
  }
  .campaign_item_charm_h::after {
    right: -20px;
  }
  .campaign_item_charm_h strong {
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 5px;
  }
  .campaign_item_charm_h strong em {
    font-size: 2.2rem;
  }
  .campaign_item_charm_h strong span {
    font-size: 1.2rem;
  }
  .campaign_item_charm_h p > span {
    font-size: 1.2rem;
    line-height: 1.8;
    display: inline-block;
  }
  .campaign_item_charm_h p > em {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.campaign_item_charm .index_worry_item_approach {
  color: var(--main);
  text-align: center;
}
.campaign_item_charm .index_worry_item_approach li img {
  background: var(--accent);
}
.campaign_item_charm_approach_box {
  padding: 0;
  margin-top: 50px;
}
.campaign_item_charm_approach_box h4 {
  font-size: 2rem;
  letter-spacing: .12em;
  line-height: 2.2;
  text-align: center;
}
.campaign_item_charm_approach_box.approach01 h4 {
  color: var(--main);
}
.campaign_item_charm_approach_box.approach02 h4 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_approach_box h4 {
    font-size: 1.8rem;
  }
}
.campaign_item_charm_approach_wrap {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 35px; */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.campaign_item_charm_approach_wrap::after {
  content: none;
}
.campaign_item_charm_approach_item {
  flex-basis: 410px;
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
}
.campaign_item_charm_approach_item img {
  /* flex-basis: 170px; */
  border-radius: 5px;
  max-width: 170px;
}
.campaign_item_charm_approach_item > figcaption {
  position: relative;
  flex-grow: 2;
  margin-left: 30px;
  font-weight: 500;
  font-size: 1.5rem;
}
.campaign_item_charm_approach_item > figcaption em {
  font-weight: bold;
  font-style: normal;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_approach_item {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .campaign_item_charm_approach_item img {
    border-radius: 10px;
    max-width: 85%;
    margin: 0 auto 20px;
  }
  .campaign_item_charm_approach_item > figcaption {
    font-size: 1.4rem;
  }
}
.campaign_item_charm_approach_item .index_worry_item_approach_num {
  width: 45px;
  height: 45px;
  left: -50px;
  font-weight: bold;
  font-size: 2rem;
  line-height: 45px;
  text-align: center;
  color: var(--main);
}
.campaign_item_charm_approach_item .index_worry_item_approach_num::before {
  content: '';
}
.approach_point {
  padding: 12px;
  display: flex;
}
.approach_point > section {
  padding: 0;
  flex-basis: 210px;
}
.approach_point h5 {
  font-size: 2rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.approach_point p {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: #fff;
  margin-right: 10px;
}
.approach_point_inner {
  flex-basis: 180px;
  background: #fff;
  padding: 10px 15px;
}
.approach_point_inner figure {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.approach_point_inner figcaption {
  color: var(--main);
  font-weight: bold;
  font-size: 1rem;
  /* margin-left: 5px; */
}
.approach_point_inner img {
  flex-basis: 74px;
}
@media screen and (max-width: 768px) {
  .approach_point > section {
    flex-basis: 100%;
  }
  .approach_point_inner {
    flex-basis: 100%;
    margin-top: 10px;
  }
  .approach_point_inner figcaption {
    flex-grow: 2;
    font-size: 1.2rem;
  }
  .approach_point_inner img {
    flex-basis: 90px;
    margin: 0;
  }
}
.campaign_item_charm_approach_why {
  border: 2px var(--main) dotted;
  padding: 40px 30px 30px;
  margin-top: 40px;
}
.campaign_item_charm_approach_why h4 {
  font-size: 1.8rem;
  letter-spacing: .12em;
  text-align: center;
}
.campaign_item_charm_approach_why .title_lead {
  font-weight: 500;
  font-size: 1.5rem;
}
.campaign_item_charm_approach_why_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.campaign_item_charm_approach_why_wrap::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_approach_why {
    padding: 40px 20px 30px;
    margin-top: 30px;
  }
  .campaign_item_charm_approach_why h4 {
    font-size: 1.6rem;
  }
  .campaign_item_charm_approach_why .title_lead {
    font-size: 1.4rem;
    text-align: justify;
    margin: 20px auto 0;
  }
  .campaign_item_charm_approach_why_wrap {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.campaign_item_charm_approach_why_item {
  position: relative;
  flex-basis: 380px;
  flex-direction: column;
}
.campaign_item_charm_approach_why_item dt {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2.5;
  text-align: center;
  margin-bottom: 5px;
}
.campaign_item_charm_approach_why_item .check_list li {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 5px;
}
.campaign_item_charm_approach_why_item.approach01::before {
  content: '';
  border: 18px solid transparent;
  border-left: 12px solid var(--accent);
  position: absolute;
  top: 5px;
  right: -45px;
  /* transform: translate(100%, -50%); */
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_approach_why_item dt {
    font-size: 1.6rem;
    line-height: 2;
  }
  .campaign_item_charm_approach_why_item .check_list li {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .campaign_item_charm_approach_why_item.approach01 {
    margin-bottom: 30px;
  }
  .campaign_item_charm_approach_why_item.approach01::before {
    border: 18px solid transparent;
    border-top: 12px solid var(--accent);
    position: absolute;
    top: 102%;
    right: 50%;
    transform: translate(50%, 0);
  }
}
.campaign_item_charm_treatment {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}
.campaign_item_charm_treatment::after {
  content: none;
}
.campaign_item_charm_treatment_item {
  position: relative;
  flex-basis: 400px;
}
.campaign_item_charm_treatment_item figcaption {
  display: inline-block;
  background: var(--base);
  width: 120px;
  padding: 3px 0;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .2em;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_treatment {
    flex-wrap: wrap;
    margin: 30px auto;
  }
  .campaign_item_charm_treatment_item:not(:first-of-type) {
    margin-top: 20px;
  }
  .campaign_item_charm_treatment_item figcaption {
    width: 90px;
    font-size: 1.6rem;
  }
}
.campaign_item_charm_proposal_p {
  margin: 0 auto 10px;
  text-align: center;
  letter-spacing: .3rem;
  color: var(--main);
}
.campaign_item_charm_proposal_p span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0 20px;
}
.campaign_item_charm_proposal_p span::before, .campaign_item_charm_proposal_p span::after {
  content: '';
  background: var(--main);
  width: 2px;
  height: 30px;
  position: absolute;
  top: 50%;
}
.campaign_item_charm_proposal_p span::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}
.campaign_item_charm_proposal_p span::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_proposal_p span {
    font-size: 1.6rem;
    padding: 0 15px;
    line-height: 1.5;
  }
  .campaign_item_charm_proposal .title_lead {
    letter-spacing: .05em;
  }
}
.campaign_item_charm_proposal .title_lead a {
  display: inline-block;
  color: var(--main);
  text-decoration: underline;
}
.campaign_item_charm_proposal_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .campaign_item_charm_proposal_gallery {
    gap: 0 10px;
    margin-top: 30px;
  }
}
.campaign_item_charm_approach_why_item.approach01 dt {
  color: var(--main);
}
.campaign_item_charm_approach_why_item.approach02 dt {
  color: #fff;
}
.pagevis_h_box {
  background: #FFF;
  border: 2px solid var(--main);
  max-width: 630px;
  width: 100%;
  margin: 120px auto 0;
  padding: 50px 25px;
  text-align: center;
  color: var(--main);
  position: relative;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .pagevis_h_box {
    margin: 80px auto 0;
    padding: 50px 15px;
  }
}
.pagevis_h_box_sub {
  font-size: 3.0rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .pagevis_h_box_sub {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
.pagevis_h_box_main {
  font-size: 6.2rem;
  transform: translate(20px, 0);
}
@media screen and (max-width: 768px) {
  .pagevis_h_box_main {
    font-size: 3.5rem;
    transform: translate(0px, 0);
    letter-spacing: 0.1rem;
  }
}
.pagevis_h_box_add {
  position: absolute;
  content: "";
  max-width: 318px;
  width: 100%;
  bottom: 0;
  right: 0;
  transform: translate(40%, 50%);
}
@media screen and (max-width: 768px) {
  .pagevis_h_box_add {
    max-width: 200px;
    transform: translate(10%, 50%);
  }
}
.active_about {
  position: relative;
  padding-top: 40px;
}
.active_about::before, .active_about::after {
  position: absolute;
  content: "";
  background: url(images/deco_tile.svg) no-repeat center;
  width: 250px;
  height: 430px;
  top: -50px;
  opacity: 0.15;
}
@media screen and (max-width: 768px) {
  .active_about::before, .active_about::after {
    width: calc(250px / 2.5);
    height: calc(430px / 2.5);
    top: -40px;
  }
}
.active_about::before {}
.active_about::after {
  right: 0;
  transform: rotateY(-180deg);
}
.active_about_h {
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
  position: relative;
  margin: 50px auto 0;
  color: #FFF;
  letter-spacing: 0.6rem;
  line-height: 2.2;
  max-width: 820px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .active_about_h {
    font-size: 2.0rem;
    margin: 50px auto 0;
    letter-spacing: 0.3rem;
    line-height: 2.2;
    max-width: none;
  }
}
.active_about_h::before, .active_about_h::after {
  content: "";
  position: absolute;
  background: url('images/h_deco_radial_white.svg')no-repeat center;
  width: 95px;
  height: 37px;
  background-size: 100% auto;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .active_about_h::before, .active_about_h::after {
    width: calc(95px / 1.5);
    height: calc(37px / 1.5);
  }
}
.active_about_h::before {
  left: 0;
  transform: translate(-100%, -50%) rotate(270deg);
}
@media screen and (max-width: 768px) {
  .active_about_h::before {
    transform: translate(-50%, -50%) rotate(270deg);
  }
}
.active_about_h::after {
  right: 0;
  transform: translate(100%, -50%) rotate(-270deg);
}
@media screen and (max-width: 768px) {
  .active_about_h::after {
    transform: translate(50%, -50%) rotate(-270deg);
  }
}
.active_about_list {
  margin: 50px auto 0;
}
.active_about_list .h_fuki02 {
  background: var(--sub02);
  color: #FFF;
  border-radius: 0;
  font-size: 1.6rem;
  max-width: 380px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .active_about_list .h_fuki02 {
    font-size: 1.4rem;
    max-width: none;
    letter-spacing: 0.2rem;
  }
}
.active_about_list .h_fuki02::before {
  border-top-color: var(--sub02);
}
.active_about_list ul {
  justify-content: center;
  margin: 0 auto -30px;
}
@media screen and (max-width: 768px) {
  .active_about_list ul {
    justify-content: flex-start;
  }
}
.active_about_list li {
  flex-basis: 130px;
  margin: 0 15px 30px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .active_about_list li {
    flex-basis: calc(50% - 30px);
  }
}
.active_about_list_img {
  background: #FFF;
  border-radius: 100%;
  max-width: 130px;
  height: 130px;
  margin: 0 0 25px;
}
@media screen and (max-width: 768px) {
  .active_about_list_img {
    margin: 0 auto 10px;
  }
}
.active_what {
  padding-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .active_what {
    padding-bottom: 80px;
  }
}
.active_what::before {
  position: absolute;
  content: "";
  background: url(images/arrow_bg_white.svg)no-repeat center bottom;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 80%);
  width: 350px;
  height: 50px;
}
.active_what_list {
  margin: 40px auto 0;
}
.active_what_list ul {
  justify-content: space-between;
}
.active_what_list li {
  flex-basis: 280px;
  border-radius: 10px;
  text-align: center;
  padding: 30px 25px;
  background: #FFFCCC;
  margin: 0 0 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .active_what_list li {
    flex-basis: 100%;
    padding: 25px 25px;
  }
}
.active_what_list li:not(:last-child)::before {
  position: absolute;
  content: "";
  border: 17px solid transparent;
}
@media screen and (min-width: 768px) {
  .active_what_list li:not(:last-child)::before {
    border-left: 17px solid var(--main);
    top: 50%;
    right: 0%;
    transform: translate(175%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .active_what_list li:not(:last-child)::before {
    border-top: 17px solid var(--main);
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 150%);
  }
}
.active_what_list li:nth-child(2) {
  background: var(--sub);
}
.active_what_list li:nth-child(3) {
  background: #BFD9EC;
}
.active_what_list_img {
  max-width: 177px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .active_what_list_img {
    max-width: 120px;
  }
}
.active_what_list_h {
  margin: 20px auto 0;
  color: var(--main);
  font-weight: bold;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .active_what_list_h {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .active_what_list_p p {
    text-align: center;
  }
}
.active_what_namely {
  margin: 50px auto 0;
}
.active_what_namely .h_fuki {
  max-width: 100px;
  margin-bottom: 10px;
}
.active_what_namely_p p {
  text-align: center;
  color: var(--main);
  font-size: 2.0rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .active_what_namely_p p {
    font-size: 1.4rem;
    letter-spacing: 0rem;
  }
}
.active_what_namely_p p span {
  border-bottom: 1px dotted var(--main);
  padding-bottom: 8px;
}
.active_what_pursuit {
  position: relative;
  border: 3px solid var(--main);
  padding: 70px 25px;
  margin: 180px auto 0;
  background: #FFF;
  box-shadow: 15px 15px 0 var(--accent);
}
@media screen and (max-width: 768px) {
  .active_what_pursuit {
    padding: 70px 25px;
    margin: 150px auto 0;
  }
}
.active_what_pursuit_add {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  max-width: 155px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit_add {
    max-width: 65px;
    transform: translate(32%, -50%);
  }
}
@media screen and (min-width: 768px) {
  .active_what_namely_p p {
    font-size: 1.7rem;
    letter-spacing: 0.1rem;
  }
}
.active_what_pursuit .h_fuki {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -250%);
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit .h_fuki {
    max-width: 280px;
    width: 100%;
    transform: translate(-50%, -350%);
    font-size: 1.4rem;
  }
}
.active_what_pursuit .h_fuki > span {
  padding: 0 30px;
}
.active_what_pursuit .h_fuki > span::before, .active_what_pursuit .h_fuki > span::after {
  width: 2px;
  height: 25px;
  background: var(--main);
}
.active_what_pursuit .h_fuki > span::before {
  transform: translate(0%, -50%) rotate(-25deg);
}
.active_what_pursuit .h_fuki > span::after {
  transform: translate(0%, -50%) rotate(25deg);
}
.active_what_pursuit .p_marker {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.0rem;
  text-align: center;
  font-weight: bold;
  border: 10px solid #FFF;
  line-height: 1.0;
  letter-spacing: 0.7rem;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit .p_marker {
    font-size: 2.2rem;
    letter-spacing: 0.3rem;
    line-height: 1.6;
  }
}
.active_what_pursuit .p_marker span {
  white-space: nowrap;
}
.active_what_pursuit_p p {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .active_what_pursuit_p p {
    text-align: center;
  }
}
.active_what_pursuit_sec {
  margin: 50px auto 0;
  max-width: 860px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit_sec {
    margin: 40px auto 0;
    max-width: none;
  }
}
.active_what_pursuit_sec .h_beta {
  padding: 5px;
  font-size: 1.8rem;
}
.active_what_pursuit_list ul {
  margin: 0 -17.5px 0;
  align-items: inherit;
}
.active_what_pursuit_list li {
  flex-basis: 410px;
  margin: 30px 17.5px 0;
}
.active_what_pursuit_list li .div_W {
  display: flex;
  flex-wrap: wrap;
}
.active_what_pursuit_list li .div_L {
  flex-basis: 170px;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit_list li .div_L {
    flex-basis: 100%;
    padding: 0 35px 15px;
  }
}
.active_what_pursuit_list li .div_L img {
  border-radius: 10px;
}
.active_what_pursuit_list li .div_R {
  flex-basis: 210px;
  margin-left: auto;
  font-size: 1.5rem;
  line-height: 2.0;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit_list li .div_R {
    flex-basis: 100%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    line-height: 1.8;
  }
}
.active_what_pursuit_list li .div_R .p_main {
  font-weight: bold;
}
.active_what_pursuit_list_h {
  position: relative;
  color: var(--main);
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit_list_h {
    font-size: 1.8rem;
    text-align: center;
    display: inline-block;
    margin: 0 auto 15px;
    margin-left: 50px;
  }
}
.active_what_pursuit_list_num {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  top: 0;
  left: 0;
  background: url('images/fuki_bg_border.svg');
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  transform: translate(-130%, -20%);
}
.active_what_pursuit_note {
  border: 1px dotted var(--main);
  padding: 30px 30px;
  max-width: 860px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit_note {
    padding: 30px 20px;
    max-width: none;
  }
}
.active_what_pursuit_note h3 {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit_note h3 {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  }
}
.active_what_pursuit_note h3 + p {
  margin: 15px auto 0;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 768px) {
  .active_what_pursuit_note h3 + p {
    text-align: center;
  }
}
.active_what_pursuit_note_list {
  margin: 25px auto 0;
}
.active_what_pursuit_note_list > ul {
  justify-content: space-between;
}
.active_what_pursuit_note_list > ul > li {
  flex-basis: 380px;
}
@media screen and (max-width: 768px) {
  .active_what_pursuit_note_list > ul > li {
    flex-basis: 100%;
  }
  .active_what_pursuit_note_list > ul > li:nth-child(2) {
    margin: 30px auto 0;
  }
}
.check_list {
  margin: 15px auto 0;
}
.check_list li {
  color: var(--main);
  font-weight: bold;
  position: relative;
  padding: 2px 0 2px 30px;
}
.check_list li::before {
  top: 5px;
  left: 0;
  position: absolute;
  content: "";
  background: url('images/icon_check.svg') no-repeat center;
  width: 25px;
  height: 20px;
}
.check_list li span {
  font-size: 1.2rem;
  font-weight: normal;
}
.active_flow {
  position: relative;
}
.active_flow::before {
  position: absolute;
  content: "";
  background: url(images/arrow_bg.svg)no-repeat center bottom;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 80%);
  width: 350px;
  height: 50px;
}
.active_flow_sec {
  border-radius: 10px;
  background: var(--sub);
  position: relative;
}
.active_flow_sec:not(:first-of-type) {
  margin: 65px auto 0;
}
.active_flow_sec::before, .active_flow_sec_list_li::before {
  content: "";
  position: absolute;
  border: 27px solid transparent;
  border-top: 18px solid var(--main);
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 155%);
}
.active_flow_sec_add {
  max-width: 196px;
  width: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(15%, -35%);
}
@media screen and (max-width: 768px) {
  .active_flow_sec_add {
    max-width: 110px;
    transform: translate(-10%, -35%);
  }
}
.active_flow_sec02 .active_flow_sec_add {
  max-width: 223px;
}
@media screen and (max-width: 768px) {
  .active_flow_sec02 .active_flow_sec_add {
    max-width: 120px;
  }
}
.active_flow_sec_inner {
  max-width: calc(850px + 25px + 25px);
  width: 100%;
  margin: 0px auto;
  padding: 60px 25px;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_inner {
    max-width: none;
    padding: 50px 25px;
  }
}
.active_flow_sec .h_border_dot > span {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--main);
  padding-bottom: 5px;
  letter-spacing: 0.3rem;
  line-height: 1.6;
}
.active_flow_sec_list ul {
  justify-content: center;
}
.active_flow_sec_list li {
  flex-basis: 100px;
  margin: 50px 15px 0;
}
.active_flow_sec_list_img {
  position: relative;
  background: #FFF;
  max-width: 100px;
  width: 100%;
  height: 100px;
  border-radius: 10px;
}
.active_flow_sec:not(.bg_main) .active_flow_sec_list_img::before {
  position: absolute;
  content: "";
  background: url('images/h_deco_check.svg') no-repeat center;
  width: 77px;
  height: 60px;
  right: 0;
  top: 50%;
  transform: translate(130%, -50%);
}
@media screen and (max-width: 768px) {
  .active_flow_sec:not(.bg_main) .active_flow_sec_list_img::before {
    width: calc(77px / 1.2);
    height: calc(60px / 1.2);
    transform: translate(130%, -50%);
  }
}
.active_flow_sec_list_num {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  background: url(images/fuki_bg_border.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  font-size: 1.5rem;
  font-weight: bold;
  transform: translate(-50%, -50%);
}
.active_flow_sec_list_h {
  text-align: center;
  color: var(--main);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 15px;
  white-space: nowrap;
}
.active_flow_sec_p p {
  margin: 25px auto 0;
}
@media screen and (min-width: 768px) {
  .active_flow_sec_p p {
    text-align: center;
  }
}
.active_flow_sec_first {
  position: relative;
  border-radius: 0 0 10px 10px;
}
.active_flow_sec_first .h_ribbon {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  width: 760px;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_first .h_ribbon {
    width: calc(100% - 70px);
  }
}
.active_flow_sec_first .h_ribbon::before, .active_flow_sec_first .h_ribbon::after {
  content: none;
}
.active_flow_sec_first .h_ribbon span {
  max-width: none;
  height: 60px;
  font-size: 2.5rem;
  color: var(--accent);
}
@media screen and (max-width: 768px) {
  .active_flow_sec_first .h_ribbon span {
    max-width: none;
    height: 50px;
    font-size: 1.6rem;
    padding-top: 10px;
  }
}
.active_flow_sec_first .h_ribbon span::before, .active_flow_sec_first .h_ribbon span::after {
  height: 60px;
  width: 30px;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_first .h_ribbon span::before, .active_flow_sec_first .h_ribbon span::after {
    height: 50px;
    width: 25px;
  }
}
.active_flow_sec_first_price, .active_price_sec_first_price {
  display: flex;
  color: var(--main);
  font-weight: bold;
  font-size: 2.0rem;
  max-width: 770px;
  margin: 0 auto;
  background: url('images/h_nami_navy.svg')no-repeat bottom left;
  padding: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_first_price, .active_price_sec_first_price {
    font-size: 2.0rem;
    background-size: auto 9px;
  }
}
.price_before, .price_after {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.3rem;
  align-items: baseline;
}
.price_before {
  position: relative;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .price_before, .price_after {
    text-align: center;
    justify-content: center;
  }
  .price_after {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .price_before {
    margin-right: 75px;
  }
}
@media screen and (max-width: 768px) {
  .price_before {
    margin-top: -10px;
    margin-bottom: 10px;
    margin: 0 auto 5px;
    padding-bottom: 10px;
  }
}
.price_before::before, .price_before::after {
  content: "";
  position: absolute;
  border: 20px solid transparent;
}
@media screen and (min-width: 768px) {
  .price_before::before, .price_before::after {
    border-left: 15px solid var(--sub02);
    top: 50%;
    right: -20px;
    transform: translate(100%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .price_before::before, .price_before::after {
    border: 12px solid transparent;
    border-top: 8px solid var(--sub02);
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 90%);
  }
}
@media screen and (min-width: 768px) {
  .price_before::after {
    border-left-color: var(--main);
    right: -43px;
  }
}
@media screen and (max-width: 768px) {
  .price_before::after {
    border-top-color: var(--main);
    transform: translate(-50%, 150%);
  }
}
.price_before_T, .price_before_B {
  line-height: 1.3;
}
.price_before_B {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
.price_before_T::after, .price_before_B::after {
  content: none;
}
.price_before_T {
  align-items: center;
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .price_before_T::after {
    border-top-color: var(--main);
    transform: translate(-50%, 140%);
  }
}
.price_before .font_S {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.price_before .num {
  font-size: 3.6rem;
  position: relative;
  padding-left: 10px;
  margin-left: auto;
}
.price_before .num::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FFF;
  top: 0;
  left: 0;
  transform: translate(0, 30px) rotate(10deg);
}
.price_before_B {
  align-items: center;
  position: relative;
  display: flex;
}
.price_after .num {
  font-size: 8.8rem;
  letter-spacing: 0.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .price_after .num {
    font-size: 5.7rem;
    letter-spacing: 0.1rem;
  }
  .price_after .font_S {
    font-size: 1.3rem;
  }
}
.active_flow_sec_first_cont {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_first_cont {
    margin: 40px auto 0;
  }
}
.active_flow_sec_first_cont .div_W {
  display: flex;
  flex-wrap: wrap;
}
.active_flow_sec_first_cont .div_L {
  flex-basis: 335px;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_first_cont .div_L {
    flex-basis: 100%;
  }
}
.active_flow_sec_first_cont .div_R {
  flex-basis: 480px;
  margin-left: auto;
  letter-spacing: 0.2rem;
  line-height: 2.0;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_first_cont .div_R {
    flex-basis: 100%;
    margin-top: 25px;
    line-height: 1.8;
  }
}
.active_flow_sec_first_cont .div_R h3 {
  color: var(--main);
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_first_cont .div_R h3 {
    font-size: 2.0rem;
    letter-spacing: 0.1rem;
    line-height: 1.6;
  }
}
.active_flow_sec_list_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.active_flow_sec_list_wrap::after {
  content: none;
}
.active_flow_sec_list {
  flex-basis: 460px;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_list {
    flex-basis: 100%;
  }
}
.active_flow_sec_list_li {
  margin: 65px 0 0;
  position: relative;
  text-align: center;
}
.active_flow_sec_list_li > .active_flow_sec_list_h {
  background: var(--sub);
  border-radius: 10px;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
  color: var(--main);
  padding: 20px 25px;
}
@media screen and (max-width: 768px) {
  .active_flow_sec_list_li > .active_flow_sec_list_h {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    padding: 20px 25px;
  }
}
.active_flow_sec_list_li:last-child::before, .active_flow_sec.bg_main::before {
  content: none;
}
.active_flow_sec_list_p {
  color: #FFF;
  margin: 30px auto 0;
}
.active_flow_sec.bg_main {
  background: var(--main);
  padding: 20px 25px;
}
.active_flow_sec.bg_main .active_flow_sec_inner {
  padding: 20px 0;
}
.active_flow_sec.bg_main .h_border_dot > span, .active_flow_sec.bg_main .active_flow_sec_list_h {
  color: #FFF;
}
.active_flow_sec.bg_main .h_border_dot > span {
  border-color: #FFF;
}
.active_flow_sec.bg_main .active_flow_sec_list_num {
  background-image: url('images/fuki_bg_yellow.svg');
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .active_flow_sec.bg_main .active_flow_sec_list ul {
    justify-content: space-between;
  }
}
.active_example {
  background: url('images/active_example_bg.jpg') no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .active_example {
    padding-top: 100px;
    background-image: url('images/active_example_bg_sp.jpg');
  }
}
.active_example_list ul {
  justify-content: space-between;
  align-items: inherit;
}
.active_example_list li {
  background: #FFF;
  border-radius: 10px;
  padding: 35px 25px 40px;
  flex-basis: 300px;
}
@media screen and (max-width: 768px) {
  .active_example_list li {
    flex-basis: 100%;
    margin-bottom: 40px;
  }
}
.active_example_list .h_ribbon, .active_example_list .h_ribbon span {
  font-size: 1.5rem;
  max-width: 180px;
  height: 40px;
}
.active_example_list .h_ribbon {
  margin-bottom: 30px;
}
.active_example_list .h_ribbon > span::before, .active_example_list .h_ribbon > span::after {
  height: 40px;
}
.active_example_list .h_ribbon .font_S {
  font-size: 1.3rem;
}
.active_example_list_flow {
  background: var(--sub);
  border-radius: 10px;
  text-align: center;
  color: var(--main);
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  position: relative;
  margin-top: 40px;
  padding: 7px;
}
@media screen and (max-width: 768px) {
  .active_example_list_flow {
    font-size: 1.5rem;
  }
}
.active_example_list_flow:first-of-type {
  margin-top: 0;
}
.active_example_list_flow:not(:last-child)::before {
  content: "";
  position: absolute;
  border: 14px solid transparent;
  border-top: 10px solid var(--main);
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 170%);
}
.active_example_list_flow.not::before {
  content: none;
}
.active_example_list_p {
  font-size: 1.3rem;
  margin: 20px auto 0;
}
.active_homecare {
  position: relative;
}
.active_homecare::before {
  position: absolute;
  content: "";
  background: url(images/arrow_bg.svg)no-repeat center bottom;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 80%);
  width: 350px;
  height: 50px;
}
.active_homecare .font_S {
  font-size: 1.3rem;
}
.active_price {
  background: url("images/bg_active.jpg")no-repeat center bottom;
  background-size: cover;
  padding-bottom: 420px;
}
@media screen and (max-width: 768px) {
  .active_price {
    background-image: url("images/bg_active_sp.jpg");
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.active_price_sec {
  border-radius: 10px;
  margin: 80px auto 0;
  padding: 80px 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .active_price_sec {
    margin: 60px auto 0;
    padding: 60px 25px;
  }
}
.active_price_sec .h_ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 740px;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .active_price_sec .h_ribbon {
    width: calc(100% - 70px);
  }
}
.active_price_sec .h_ribbon span {
  max-width: none;
  height: 60px;
  font-size: 2.5rem;
  color: var(--accent);
}
@media screen and (max-width: 768px) {
  .active_price_sec .h_ribbon span {
    max-width: none;
    height: 50px;
    font-size: 1.5rem;
    padding-top: 10px;
    letter-spacing: 0.2rem;
  }
}
.active_price_sec .h_ribbon span::before, .active_price_sec .h_ribbon span::after {
  height: 60px;
  width: 30px;
}
@media screen and (max-width: 768px) {
  .active_price_sec .h_ribbon span::before, .active_price_sec .h_ribbon span::after {
    height: 50px;
    width: 25px;
  }
}
.active_price_sec .h_fuki {
  font-size: 2.3rem;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 768px) {
  .active_price_sec .h_fuki {
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
  }
}
.active_price_sec .h_fuki .font_B {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .active_price_sec .h_fuki .font_B {
    font-size: 3.0rem;
  }
}
.active_price_sec .h_fuki > span::before {
  transform: translate(-200%, -0%);
}
@media screen and (max-width: 768px) {
  .active_price_sec .h_fuki > span::before {
    transform: translate(-70%, -0%);
  }
}
.active_price_sec .h_fuki > span::after {
  transform: translate(200%, -0%)rotateY(-180deg);
}
@media screen and (max-width: 768px) {
  .active_price_sec .h_fuki > span::after {
    transform: translate(70%, -0%)rotateY(-180deg);
  }
}
.active_price_list {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .active_price_list {
    margin-top: 30px;
  }
}
.active_price_list ul {
  max-width: 770px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .active_price_list ul {
    max-width: none;
    align-items: center;
    justify-content: center;
  }
}
.active_price_list li {
  margin: 0 0 20px;
}
.active_price_list_li {
  background: #FFF;
  border-radius: 200px;
  flex-basis: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: var(--main);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .active_price_list_li {
    background: #FFF;
    border-radius: 10px;
    flex-basis: 100%;
    height: auto;
    font-size: 1.6rem;
    padding: 20px 25px;
  }
}
.active_price_list .plus {
  flex-basis: 35px;
}
.active_price_list_q {
  max-width: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .campaign .shop_reserve {
    margin-top: 0;
  }
}
/*------------------------------------------------------------
VOICE / 患者様の声 
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .voice_first_p p {
    text-align: center;
  }
}
.voice_tag_list_wrap {
  margin: 80px auto 0;
}
.voice_tag_list_wrap .tab_area {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 100%;
}
.tab_area ul {
  justify-content: center;
}
.tab_area ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 140px;
  height: 40px;
  text-align: center;
  background: var(--main);
  color: #FFF;
  border-radius: 10px 10px 0 0;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 15px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .tab_area ul li {
    font-size: 1.2rem;
    flex-basis: 36%;
    margin: 0 5px;
  }
}
.tab_area ul li:not(.active):hover {
  transition: 0.2s;
  opacity: 0.6;
  cursor: pointer;
}
.tab_area ul li.active {
  position: relative;
  background: inherit;
  border: 2px solid var(--main);
  border-bottom: 2px solid var(--accent02);
  color: var(--main);
}
.tab_area ul li.active::before, .tab_area ul li.active::after {
  content: "";
  position: absolute;
  background: var(--main);
  height: 2px;
  width: 2px;
  bottom: -2px;
}
.tab_area ul li.active::before {
  left: -2px;
}
.tab_area ul li.active::after {
  right: -2px;
}
.tab_panel {
  display: none;
}
.tab_panel.active {
  display: inherit;
}
.voice_tag_list_wrap .panel_area {
  max-height: 170px;
  overflow: hidden;
}
.panel_area.active {
  max-height: inherit;
}
@media screen and (max-width: 768px) {
  .voice_list_wrap .archive_title_wrap {
    margin-bottom: 0;
  }
}
.voice_single {
  padding-bottom: 0;
}
.voice_single .voice_img {
  height: 600px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .voice_single .voice_img {
    height: 220px;
  }
}
.voice_single .voice_title {
  text-align: center;
  color: var(--main);
  font-size: 2.4rem;
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .voice_single .voice_title {
    font-size: 2.0rem;
  }
}
.voice_single .voice_about {
  text-align: center;
  color: var(--main);
  display: flex;
  justify-content: center;
  font-weight: bold;
}
.voice_about .voice_gender, .voice_about .voice_name {
  position: relative;
  padding-left: 1.8rem;
  margin-left: 1.1rem;
}
@media screen and (max-width: 768px) {
  .voice_about .voice_gender, .voice_about .voice_name {
    padding-left: 1.5rem;
  }
}
.voice_about .voice_gender::before, .voice_about .voice_name::before {
  position: absolute;
  content: "/";
  left: 0;
}
.voice_about .voice_name {
  text-align: inherit;
  margin: 0;
  margin-left: 1.1rem;
}
.voice_single .voice_symptom ul a {
  margin: 10px 5px;
}
@media screen and (max-width: 768px) {
  .voice_single .voice_symptom ul a {
    margin: 5px 4px;
  }
}
.voice_information {
  max-width: 620px;
}
@media screen and (min-width: 768px) {
  .voice_information {
    max-width: 620px;
  }
}
.voice_wysiwyg {
  margin: 60px auto 80px;
}
@media screen and (min-width: 768px) {
  .voice_wysiwyg {
    max-width: 620px;
  }
}
.voice_comment_wrap {
  max-width: 960px;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.voice_img_face_wrap {
  flex-basis: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .voice_img_face_wrap {
    flex-basis: 100%;
    order: -1;
  }
}
.voice_img_face {
  background-image: url("images/icon_people.svg");
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-position: center;
  background-size: cover;
}
.voice_img_face_wrap .voice_name {
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1.5;
}
.voice_comment_wrap_staff .voice_img_face_wrap .voice_name {
  color: var(--main);
}
.voice_comment_fuki {
  flex-basis: calc(100% - 110px - 40px);
  margin-left: auto;
  background: var(--accent02);
  border-radius: 10px;
  padding: 30px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .voice_comment_fuki {
    flex-basis: 100%;
    padding: 25px;
    margin-top: 35px;
  }
}
.voice_comment_wrap_staff .voice_comment_fuki {
  background: var(--sub);
  order: -1;
  margin-left: 0;
  margin-right: auto;
}
.voice_comment_fuki::before {
  content: "";
  position: absolute;
  border: 15px solid transparent;
}
@media screen and (min-width: 768px) {
  .voice_comment_fuki::before {
    top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .voice_comment_wrap_guest .voice_comment_fuki::before {
    border-bottom: 25px solid var(--accent02);
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}
@media screen and (min-width: 768px) {
  .voice_comment_wrap_guest .voice_comment_fuki::before {
    border-right: 25px solid var(--accent02);
    left: 0;
    transform: translate(-100%, 0);
  }
}
@media screen and (max-width: 768px) {
  .voice_comment_wrap_staff .voice_comment_fuki::before {
    border-bottom: 25px solid var(--sub);
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}
@media screen and (min-width: 768px) {
  .voice_comment_wrap_staff .voice_comment_fuki::before {
    border-left: 25px solid var(--sub);
    right: 0;
    transform: translate(100%, 0);
  }
}
.voice_name_h {
  background: var(--main);
  color: #FFF;
  border-radius: 50px;
  max-width: 110px;
  width: 100%;
  font-size: 1.0rem;
  font-weight: bold;
  padding: 2px;
  text-align: center;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .voice_shop {
    margin-right: 10px;
  }
}
.voice_pagenavi {
  max-width: 640px;
  margin: 50px auto 80px;
}
.voice_list_loop {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
.voice_list_loop .slick-list {
  z-index: 2;
}
.voice_list_loop .slick-arrow:before {
  border: none;
  background: url("images/arrow_slide_navy.svg") no-repeat center;
  transform: translate(0, -40%) rotate(0);
  width: 80px;
  height: 80px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .voice_list_loop .slick-arrow:before {
    width: 40px;
    height: 40px;
  }
}
.voice_list_loop .slick-arrow {
  transition: 0.2s;
}
.voice_list_loop .slick-arrow:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.voice_list_loop .slick-next:before {
  transform: translate(0, -40%) rotate(180deg);
}
.voice_list_loop .slick-prev {
  left: -40px;
}
.voice_list_loop .slick-next {
  right: 20px;
}
@media screen and (max-width: 768px) {
  .voice_list_loop .slick-prev {
    left: -20px;
  }
  .voice_list_loop .slick-next {
    right: 0px;
  }
}
.voice_pickup_wrap {
  margin: 80px auto -100px;
  padding: 80px 0 60px;
}
.wp-pagenavi a, .wp-pagenavi span {
  border: none;
}
/*------------------------------------------------------------
SHOP / 店舗一覧 
------------------------------------------------------------*/
.shop_list {
  /*justify-content: space-between;*/
  align-items: inherit;
  margin: 0 -30px 0;
}
@media screen and (max-width: 768px) {
  .shop_list {
    margin: 0 0px 0;
  }
}
.post_shop {
  flex-basis: 460px;
  text-align: center;
  margin: 0 30px 60px;
}
@media screen and (max-width: 768px) {
  .post_shop {
    flex-basis: 100%;
    text-align: center;
    margin: 0 auto 60px;
  }
}
.shop_img {
  height: 300px;
  background-image: url("images/noimg_white.svg");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .shop_img {
    height: 220px;
  }
}
.shop_title {
  margin: 30px auto 0;
}
.shop_list .shop_information_address {
  margin: 20px auto 0;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
}
.shop_list .shop_information_tel {
  color: var(--main);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
.shop_list .btn {
  margin: 15px auto 0;
}
.shop_list .btn a {
  margin: 0 5px 5px;
}
@media screen and (max-width: 768px) {
  .shop_list .btn a {
    font-size: 1.4rem;
  }
}
.shop_list .btn a.more {
  background: var(--main);
  color: #FFF;
}
.shop_list .btn a.more::before {
  background: url(images/arrow_white.svg)no-repeat center / contain;
}
.shop_about {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .shop_about {
    padding-bottom: 0px;
  }
}
.shop_img_main {
  height: 600px;
  background-image: url('images/noimg.svg');
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .shop_img_main {
    height: 240px;
  }
}
.shop_information {
  max-width: 700px;
  position: relative;
  padding-top: 55px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .shop_information {
    max-width: none;
    padding-top: 40px;
    margin-top: 50px;
  }
}
.shop_information th {
  width: 90px;
}
@media screen and (max-width: 768px) {
  .shop_information th {
    width: 100%;
    float: left;
    padding-bottom: 0;
    font-size: 1.5rem;
    padding-top: 8px;
  }
  .shop_information td {
    width: 100%;
    float: left;
    padding-top: 0;
    padding-bottom: 8px;
    font-size: 1.4rem;
    border-bottom: 1px dotted var(--main);
    line-height: 1.8;
  }
  .shop_information tr:last-child td {
    border: none;
  }
}
.shop_information_name {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.shop_information_name span {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .shop_information_name span {
    width: 220px;
  }
}
.shop_map_url .btn {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .shop_map_url .btn a {
    max-width: 120px;
    font-size: 1.4rem;
    padding: 4px 30px 4px 10px;
    margin: 5px 0 15px;
  }
}
.shop_information_postcode {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .shop_information_postcode {
    margin-right: 0px;
    width: 100%;
    display: block;
  }
}
.shop_information_address {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .shop_information_address {
    margin-right: 0px;
    width: 100%;
    display: block;
  }
}
.shop_reserve {
  position: relative;
  padding: 85px 25px 60px;
}
@media screen and (max-width: 768px) {
  .shop_reserve {
    margin-top: 50px;
    padding: 50px 25px 40px;
  }
}
.shop_reserve::before, .shop_reserve::after {
  position: absolute;
  content: "";
  background: url("images/deco_tile.svg") no-repeat center;
  width: 140px;
  height: 243px;
  top: 0;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .shop_reserve::before, .shop_reserve::after {
    width: calc(140px/ 1.8);
    height: calc(243px/ 1.8);
  }
}
.shop_reserve_common.shop_reserve::before, .shop_reserve_common.shop_reserve::after {
  width: 250px;
  height: 430px;
}
@media screen and (max-width: 768px) {
  .shop_reserve_common.shop_reserve::before, .shop_reserve_common.shop_reserve::after {
    width: calc(250px / 2.8);
    height: calc(430px/ 2.8);
  }
}
.shop_reserve::before {
  left: -2px;
}
.shop_reserve::after {
  right: -2px;
  transform: rotateY(-180deg);
}
.shop_reserve_h {
  color: #FFF;
  font-size: 3.2rem;
  text-align: center;
  margin: 0 auto 40px;
  line-height: 1.6;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .shop_reserve_h {
    font-size: 2.4rem;
    margin: 0 auto 30px;
    letter-spacing: 0.2rem;
  }
}
.shop_reserve_h_name {
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .shop_reserve_h_name {
    font-size: 1.8rem;
  }
}
.shop_reserve_btn .flex {
  justify-content: center;
  margin: 0 -20px;
}
.shop_reserve_btn .btn {
  max-width: 300px;
  margin: 0 20px 20px;
}
.shop_reserve_common .shop_reserve_btn .btn {
  max-width: 750px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .shop_reserve_common .shop_reserve_btn .btn {
    max-width: none;
    margin: 0 auto 0px;
  }
}
.shop_reserve_btn .btn a {
  padding: 45px 25px;
  color: var(--main);
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .shop_reserve_btn .btn a {
    padding: 25px 15px;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
  }
}
.shop_reserve_common .shop_reserve_btn .btn a {
  width: 100%;
  display: block;
  /* color: var(--base); */
  font-size: 3.0rem;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .shop_reserve_common .shop_reserve_btn .btn a {
    font-size: 2.2rem;
  }
}
.shop_reserve_common .shop_reserve_btn .btn a::before {
  width: 45px;
  height: 45px;
  transform: translate(-60px, -50%);
}
@media screen and (max-width: 768px) {
  .shop_reserve_common .shop_reserve_btn .btn a::before {
    width: 30px;
    height: 30px;
    transform: translate(-30px, -50%);
  }
}
.shop_news {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .shop_news {
    padding: 10px 0 0;
  }
}
.shop_news.div_deco {
  max-width: 900px;
  margin: 70px auto 0;
}
.shop_news .div_deco_corner {
  border: 12px solid #FFF;
}
.shop_gallery {
  padding: 20px 0 0;
}
.shop_gallery ul {
  margin: 0px -20px 0;
}
@media screen and (max-width: 768px) {
  .shop_gallery ul {
    margin: 0px 0px 0;
  }
}
.shop_gallery li {
  /*flex-basis: calc(100% / 3);*/
  flex-basis: 300px;
  margin: 40px 20px 0;
}
@media screen and (max-width: 768px) {
  .shop_gallery li {
    flex-basis: 100%;
    margin: 30px 0px 0;
  }
}
.shop_gallery_img {
  height: 200px;
  width: 100%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
.shop_youtube {
  margin: 0px auto 0;
  text-align: center;
  padding: 50px 0 80px;
}
.shop_youtube iframe {
  width: 700px;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .shop_youtube iframe {
    width: 100%;
    height: 260px;
  }
}
.shop_menu {
  padding: 80px 0;
  margin: 70px auto 0;
}
.shop_menu_active {
  position: relative;
  background: linear-gradient(to right, transparent 0%, transparent 35%, #FFF 45%, #FFF 100%), url("images/shop_menu_active.jpg") no-repeat, #FFF;
  background-size: auto, contain, auto;
  background-position: center center, left -30% center;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 7px 7px 0 var(--main);
  padding: 40px 70px;
}
@media screen and (max-width: 768px) {
  .shop_menu_active {
    padding: 40px 25px 160px;
    background: url("images/shop_menu_active.jpg") no-repeat, #FFF;
    background-position: bottom 0% center;
    background-size: contain, auto;
  }
}
.shop_menu_active_sub, .shop_menu_active_h {
  max-width: 440px;
  width: 100%;
  flex-basis: 100%;
  margin-left: auto;
  text-align: center;
  color: var(--main);
  font-weight: bold;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 768px) {
  .shop_menu_active_sub, .shop_menu_active_h {
    max-width: none;
    letter-spacing: 0.2rem;
  }
}
.shop_menu_active_sub {
  font-size: 2.3rem;
  border-bottom: 1px solid var(--main);
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .shop_menu_active_sub {
    font-size: 1.6rem;
  }
}
.shop_menu_active_h {
  font-size: 4.8rem;
  letter-spacing: 0.9rem;
}
@media screen and (max-width: 768px) {
  .shop_menu_active_h {
    font-size: 3.0rem;
    letter-spacing: 0.2rem;
  }
}
.shop_menu_active .btn, .shop_menu_active .btn a {
  margin-right: inherit;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .shop_menu_active .btn a {
    padding: 15px 0px;
  }
  .shop_menu_active .btn a span {
    padding-right: 25px;
  }
  .shop_menu_active .btn a::before {
    width: 20px;
    height: 20px;
    transform: translate(-20px, -50%);
  }
}
.shop_menu_active_add {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  max-width: 104px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .shop_menu_active_add {
    transform: translate(40%, -40%);
    max-width: 90px;
  }
}
.shop_menu_menus .flex {
  justify-content: space-between;
}
.shop_menu_menus li {
  flex-basis: 460px;
  margin-top: 40px;
}
.shop_menu_menus li a {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: url("images/arrow_corner.svg")no-repeat right bottom, var(--main);
  background-size: 40px 40px, auto;
  color: #FFF;
  text-align: center;
  justify-content: center;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
}
.shop_menu_menus_img {
  border: 4px solid var(--main);
  height: 185px;
  width: 100%;
  background-size: cover;
  border-radius: 10px 10px 0 0;
}
.shop_menu_menus_h {
  padding: 5px 25px 8px;
}
.shop_menu_insurance .shop_menu_menus_img {
  background-image: url("images/shop_menu_insurance.jpg");
}
.shop_menu_own .shop_menu_menus_img {
  background-image: url("images/shop_menu_own.jpg");
}
.shop_free {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  /*.shop_free .inner {
    max-width: 800px;
    margin: 0 auto;
  }*/
}
.shop_staff {
  padding: 80px 0;
}
.shop_staff .flex {
  margin: 0 -30px -40px;
  align-items: inherit;
}
@media screen and (max-width: 768px) {
  .shop_staff .flex {
    margin: 0 -0px -40px;
    justify-content: space-between;
  }
}
.post_staff {
  text-align: center;
  flex-basis: 200px;
  margin: 0 30px 40px;
}
@media screen and (max-width: 768px) {
  .post_staff {
    flex-basis: 47%;
    margin: 0 0 40px;
  }
}
.staff_img {
  max-width: 200px;
  width: 100%;
  height: 200px;
  background-image: url("images/noimg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .staff_img {
    max-width: 150px;
    width: 100%;
    height: 150px;
    margin: 0 auto;
  }
}
.staff_shoulder {
  margin: 20px auto 0;
  color: var(--main);
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .staff_shoulder {
    text-align: center;
  }
}
.staff_name {
  font-size: 2.2rem;
  color: var(--main);
  font-weight: bold;
  line-height: 1.5;
}
.post_staff .btn {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .post_staff .btn a {
    padding: 4px 30px 4px 10px;
    font-size: 1.3rem;
    max-width: 100px;
  }
  .post_staff .btn a::before {
    transform: translate(-10px, -50%);
    width: 20px;
    height: 20px;
  }
}
.staff_popup {
  background: #FFF;
  width: 980px;
  padding: 50px 25px;
}
@media screen and (max-width: 768px) {
  .staff_popup {
    width: 100%;
  }
}
.staff_popup .flex {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .staff_popup .flex {
    max-width: none;
  }
}
.staff_popup .div_L {
  flex-basis: 220px;
}
@media screen and (max-width: 768px) {
  .staff_popup .div_L {
    flex-basis: 100%;
  }
}
.staff_popup .div_R {
  flex-basis: 575px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .staff_popup .div_R {
    flex-basis: 100%;
    margin-left: auto;
  }
  .staff_popup .staff_data {
    margin: 25px auto 0;
  }
  .staff_popup .staff_name {
    text-align: center;
  }
}
.staff_alphabet {
  color: #B2D1E8;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin-left: 10px;
}
.staff_profile {
  margin: 15px 0 0;
}
.staff_link {
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .staff_link {
    margin: 50px auto 0;
  }
}
.staff_link .flex {
  position: relative;
  padding-left: 145px;
}
@media screen and (max-width: 768px) {
  .staff_link .flex {
    position: relative;
    padding-left: 0;
    justify-content: center;
  }
  .staff_link .flex li {
    flex-basis: 100%;
  }
}
.staff_link .flex::before {
  content: "";
  position: absolute;
  background: url('images/staff_fuki.svg') no-repeat center;
  width: 145px;
  height: 48px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .staff_link .flex::before {
    background: url('images/staff_fuki_sp.svg') no-repeat center;
    width: calc(181px * 1.2);
    height: calc(20px * 1.2);
    left: 50%;
    top: 0;
    transform: translate(-50%, -80%);
  }
}
.staff_link .btn {
  margin: 0;
}
.staff_link .btn button[type="submit"] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
  font-weight: bold;
  text-align: center;
  background: var(--accent);
  border-radius: 200px;
  color: var(--base);
  padding: 15px 25px;
  width: 200px;
  font-size: 1.4rem;
  margin-left: 10px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .staff_link .btn button[type="submit"] {
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
    margin-left: 0px;
  }
}
.staff_link .btn_main button[type="submit"] {
  color: #FFF;
  background: var(--main);
}
.staff_link .btn button[type="submit"]::before {
  content: "";
  position: absolute;
  background: url("images/arrow_navy.svg")no-repeat center;
  transform: translate(-25px, -50%);
  transition: 0.2s;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
}
.staff_link .btn_main button[type="submit"]::before {
  background: url("images/arrow_white.svg")no-repeat center;
}
.staff_link .btn button[type="submit"]:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.shop_voice {
  padding: 80px 0;
}
.shop_voice .voice_list_wrap {
  margin-top: 0;
}
.shop_voice .voice_list .post_voice {
  margin-top: 0;
}
.shop_review {
  padding: 80px 0;
}
.shop_access_iframe {
  position: relative;
}
.shop_access_iframe iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .shop_access_iframe iframe {
    height: 300px;
  }
}
.shop_access_iframe_btn {
  /*position: absolute;
  content: "";
  right: 0;
  bottom: 0;*/
  text-align: center;
}
.shop_access_iframe_btn a {
  /*display: inline-block;
  color: #FFF;
  background: var(--main);
  padding: 10px 25px;
  font-weight: bold;
  letter-spacing: 0.2rem;*/
}
.shop_navi {
  margin: 100px auto 0;
  position: relative;
  padding: 45px 25px;
}
.shop_navi_add {
  position: absolute;
  content: "";
  max-width: 230px;
  width: 100%;
  height: 230px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -20%);
  background: var(--sub);
  display: flex;
  justify-content: center;
  border-radius: 50%;
  padding: 25px 25px 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .shop_navi_add {
    height: 180px;
  }
}
.shop_navi_add img {
  width: 24px;
  height: 38px;
}
.shop_navi h2 {
  text-align: center;
  color: var(--main);
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .shop_navi h2 {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  }
}
.shop_navi_open {
  margin-top: 10px;
}
.shop_navi_open a {
  max-width: 500px;
  padding: 7px 25px;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .shop_navi_open a {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  }
}
.shop_navi_open a::before {
  transform: translate(-25px, -50%) rotate(90deg);
}
.shop_navi_close a {
  max-width: 280px;
  padding: 7px 25px;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .shop_navi_close a {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  }
}
.shop_navi_close a::before {
  transform: translate(-25px, -50%) rotate(-90deg);
}
.shop_navi_list {
  max-width: 900px;
  margin: 50px auto 0;
  display: none;
  position: relative;
  z-index: 2;
}
.shop_navi_list ul {
  align-items: inherit;
  margin: 0 -15px -50px;
}
.shop_navi_list li {
  background: #FFF;
  padding: 40px 25px 25px;
  flex-basis: 280px;
  margin: 0 15px 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .shop_navi_list li {
    flex-basis: 100%;
    margin: 0 15px 70px;
    padding: 30px 25px 25px;
  }
}
.shop_navi_list li:not(:last-child)::before {
  content: "";
  position: absolute;
  border: 7px solid transparent;
}
@media screen and (min-width: 768px) {
  .shop_navi_list li:not(:last-child)::before {
    border-left: 10px solid var(--main);
    top: 50%;
    right: 0;
    transform: translate(160%, -50%);
  }
  .shop_navi_list li:nth-child(3n)::before {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  .shop_navi_list li:not(:last-child)::before {
    border-top: 10px solid var(--main);
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 220%);
  }
}
.shop_navi_list li::after {
  content: "01";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.0rem;
  color: var(--main);
  font-weight: bold;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.2rem;
}
.shop_navi_list li:nth-child(2)::after {
  content: "02";
}
.shop_navi_list li:nth-child(3)::after {
  content: "03";
}
.shop_navi_list li:nth-child(4)::after {
  content: "04";
}
.shop_navi_list li:nth-child(5)::after {
  content: "05";
}
.shop_navi_list li:nth-child(6)::after {
  content: "06";
}
.shop_navi_list li:nth-child(7)::after {
  content: "07";
}
.shop_navi_list li:nth-child(8)::after {
  content: "08";
}
.shop_navi_list li:nth-child(9)::after {
  content: "09";
}
.shop_navi_list li:nth-child(10)::after {
  content: "10";
}
.shop_navi_list li:nth-child(11)::after {
  content: "11";
}
.shop_navi_list li:nth-child(12)::after {
  content: "12";
}
.shop_navi_img {
  height: 150px;
  width: 100%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 20px;
}
.shop_navi_p {}
/*------------------------------------------------------------
MENU / メニュー一覧
------------------------------------------------------------*/
.menu_tag_list_wrap .tab_area {
  padding: 50px 0 0;
}
.menu_tag_list_wrap .tab_area ul li {
  flex-basis: 300px;
  height: 70px;
  font-size: 2.0rem;
  border: none;
  background: var(--sub);
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .menu_tag_list_wrap .tab_area ul li {
    flex-basis: 45%;
    height: 60px;
    font-size: 1.3rem;
    letter-spacing: 0rem;
    margin: 0 5px;
  }
}
.menu_tag_list_wrap .tab_area ul li.active::before, .menu_tag_list_wrap .tab_area ul li.active::after {
  content: none;
}
.menu_tag_list_wrap .tab_area ul li.tab_btn_menu {
  background: var(--sub02);
  color: #FFF;
}
.tag_list section {
  padding: 70px 0 100px;
}
.tab_btn span {
  position: relative;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .tab_btn span {
    padding-right: 20px;
  }
}
.tab_btn span::before {
  position: absolute;
  content: "";
  background: url('images/arrow_white.svg') no-repeat center;
  width: 25px;
  height: 25px;
  right: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .tab_btn span::before {
    width: 15px;
    height: 15px;
  }
}
.tag_list ul.flex.symptom_list {
  align-items: inherit;
}
@media screen and (max-width: 768px) {
  .tag_list ul.flex.symptom_list {
    justify-content: space-between;
  }
}
.tag_list .flex.symptom_list {
  margin: 0 -30px auto;
}
@media screen and (max-width: 768px) {
  .tag_list .flex.symptom_list {
    margin: 0 auto auto;
  }
}
.tag_list .flex.symptom_list > li {
  flex-basis: 200px;
  margin: 0 30px 30px;
}
@media screen and (max-width: 768px) {
  .tag_list .flex.symptom_list > li {
    flex-basis: 48%;
    margin: 0 0 30px;
  }
}
.tag_list .symptom_list_cat {
  margin: 15px auto 0;
}
.tag_list .symptom_list_cat > li:nth-child(odd) {
  background: rgba(255, 255, 255, 0.5);
}
.tag_list .symptom_list_cat > li > a {
  display: block;
  padding: 5px 10px 5px 20px;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .tag_list .symptom_list_cat > li > a {
    padding: 5px 5px 5px 10px;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
.menu_list {
  margin-top: -150px;
  padding-top: 150px;
}
.menu_list_cat {
  margin: 0 auto 60px;
}
.menu_list_cat_min {
  margin: -30px -12.5px 0;
  align-items: inherit;
}
@media screen and (max-width: 768px) {
  .menu_list_cat_min {
    margin: -30px 0 0;
    justify-content: space-between;
  }
}
.menu_list_cat li {
  margin: 30px auto 0;
}
.menu_list_cat_min li {
  flex-basis: 310px;
  margin: 20px 12.5px 0;
}
@media screen and (max-width: 768px) {
  .menu_list_cat_min li {
    flex-basis: 100%;
    margin: 20px 0 0;
  }
}
.menu_list_cat li a {
  padding: 40px;
  display: block;
  border-radius: 0 0 10px 0;
  background: url("images/arrow_corner.svg") no-repeat bottom right, #FFF;
  background-size: 50px 50px, auto;
}
@media screen and (max-width: 768px) {
  .menu_list_cat li a {
    padding: 30px 25px;
  }
}
.menu_list_cat_min li a {
  padding: 20px;
  background: url("images/arrow_corner.svg") no-repeat bottom right, #FFF;
  background-size: 50px 50px, auto;
}
.menu_list_cat li a.not_link {
  background: #FFF;
  border-radius: 0 0 0px 0;
}
.menu_img {
  flex-basis: 280px;
  height: 180px;
  background-image: url("images/noimg.svg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .menu_img {
    flex-basis: 100%;
  }
}
.menu_list_cat_min .menu_img {
  flex-basis: 80px;
  height: 52px;
}
.menu_cont {
  flex-basis: 580px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .menu_cont {
    flex-basis: 100%;
  }
}
.menu_list_cat_min .menu_cont {
  flex-basis: calc(100% - 80px - 25px);
  display: flex;
  align-items: center;
}
.menu_cont .menu_p {
  margin: 20px auto 0;
}
.menu_h {
  border-bottom: 1px solid var(--main);
  padding-bottom: 5px;
  font-size: 2.2rem;
  color: var(--main);
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .menu_h {
    margin-top: 20px;
    font-size: 2.0rem;
    letter-spacing: 0.1rem;
    text-align: center;
  }
}
.menu_list_cat_min .menu_h {
  font-size: 1.4rem;
  border-bottom: none;
  padding-bottom: 0;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .menu_list_cat_min .menu_h {
    margin-top: 0px;
  }
}
.menu_price {
  float: right;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .menu_price {
    float: none;
    text-align: center;
    display: block;
    font-size: 1.5rem;
  }
}
.menu_price_add {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .menu_price_add {
    font-size: 1.1rem;
  }
}
.menu_p {
  margin: 20px auto 0;
}
/*------------------------------------------------------------
MENU / 症状別詳細ページ
------------------------------------------------------------*/
.symptom_trouble {
  position: relative;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .symptom_trouble {
    padding: 70px 0 50px;
  }
}
.symptom_trouble::before {
  position: absolute;
  content: "";
  background: url('images/arrow_bg.svg')no-repeat center bottom;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 80%);
  width: 350px;
  height: 50px;
}
.symptom_trouble .div_W {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .symptom_trouble .div_W {
    max-width: 100%;
  }
}
.symptom_img {
  background-image: url("images/noimg.svg");
  border-radius: 50%;
  height: 300px;
  flex-basis: 300px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .symptom_img {
    height: 200px;
    flex-basis: 200px;
    margin: 0 auto;
  }
}
.symptom_trouble_list {
  flex-basis: 480px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .symptom_trouble_list {
    margin-top: 35px;
    flex-basis: 100%;
  }
}
.symptom_trouble_li li {
  color: #FFF;
  font-size: 2.0rem;
  font-weight: bold;
  position: relative;
  padding-left: 45px;
  margin-bottom: 10px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .symptom_trouble_li li {
    font-size: 1.6rem;
    padding-left: 30px;
    letter-spacing: 0.2rem;
  }
}
.symptom_trouble_li li::before {
  content: "";
  position: absolute;
  background: url('images/icon_star.svg') no-repeat center;
  width: 29px;
  height: 28px;
  left: 0;
  top: 50%;
  transform: translate(0, -60%);
}
@media screen and (max-width: 768px) {
  .symptom_trouble_li li::before {
    width: calc(29px /1.4);
    height: calc(28px /1.4);
    top: 0%;
    transform: translate(0, 20%);
  }
}
.symptom_applicable {
  position: relative;
}
.symptom_applicable::before, .symptom_applicable::after {
  position: absolute;
  content: "";
  background: url(images/deco_tile.svg) no-repeat center;
  width: 250px;
  height: 430px;
  bottom: 0;
  opacity: 0.2;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .symptom_applicable::before, .symptom_applicable::after {
    width: calc(250px / 2.5);
    height: calc(430px / 2.5);
  }
}
.symptom_applicable::before {
  transform: rotateX(-180deg);
}
.symptom_applicable::after {
  right: 0;
  transform: rotateZ(-180deg);
}
.symptom_applicable_h {
  text-align: center;
  margin: 0 auto;
  font-size: 2.5rem;
  line-height: 2.4;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 768px) {
  .symptom_applicable_h {
    margin-top: 20px;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
}
.symptom_applicable_check_wrap {
  background: var(--main);
  border-radius: 10px;
  padding: 80px 25px;
  margin: 80px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .symptom_applicable_check_wrap {
    padding: 60px 20px;
    margin: 60px auto 0;
  }
}
.symptom_applicable_check_wrap::before {
  position: absolute;
  content: "";
  background: url('images/deco_binder.svg')no-repeat center;
  top: 0;
  left: 50%;
  width: 400px;
  height: 75px;
  transform: translate(-50%, 55%);
}
@media screen and (max-width: 768px) {
  .symptom_applicable_check_wrap::before {
    transform: translate(-50%, 100%);
    width: calc(400px / 2);
    height: calc(75px/ 2);
  }
}
.symptom_applicable_check_wrap::after {
  position: absolute;
  content: "";
  background: url('images/symptom_check_deco.svg')no-repeat center;
  top: 0;
  left: 0%;
  width: 298px;
  height: 170px;
  transform: translate(-10%, -10%);
}
@media screen and (max-width: 768px) {
  .symptom_applicable_check_wrap::after {
    width: calc(298px / 2);
    height: calc(170px/ 2);
    transform: translate(-10%, -50%);
  }
}
.symptom_applicable_check {
  background: #FFF;
  border-radius: 10px;
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 25px 60px;
}
@media screen and (max-width: 768px) {
  .symptom_applicable_check {
    max-width: none;
    padding: 35px 20px 40px;
  }
}
.symptom_applicable_li {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .symptom_applicable_li {
    max-width: none;
  }
}
.symptom_applicable_li li {
  position: relative;
  background: var(--sub);
  padding: 8px 70px;
  border-radius: 0 100px 100px 0;
  font-size: 2.0rem;
  font-weight: bold;
  color: var(--main);
  margin: 20px auto 0;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .symptom_applicable_li li {
    padding: 8px 10px 8px 50px;
    line-height: 1.5;
    border-radius: 100px;
    font-size: 1.5rem;
    letter-spacing: 0.0rem;
  }
}
.symptom_applicable_li li::before {
  content: "";
  position: absolute;
  background: url('images/icon_check_yellow.svg')no-repeat center;
  width: 65px;
  height: 65px;
  left: 0;
  top: 50%;
  transform: translate(-20%, -50%);
}
@media screen and (max-width: 768px) {
  .symptom_applicable_li li::before {
    width: calc(65px/ 1.2);
    height: calc(65px/ 1.2);
    transform: translate(-20%, -50%);
  }
}
.symptom_applicable_p {
  margin: 60px auto 0;
  max-width: 760px;
  width: 100%;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .symptom_applicable_p {
    margin: 30px auto 0;
    max-width: none;
    width: 100%;
    line-height: 1.8;
  }
}
.symptom_cause {
  position: relative;
}
@media screen and (max-width: 768px) {
  .symptom_cause {
    padding-top: 80px;
  }
}
.symptom_cause::before, .symptom_cause::after {
  position: absolute;
  content: "";
  background: url(images/deco_tile.svg) no-repeat center;
  width: 250px;
  height: 430px;
  top: 0;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .symptom_cause::before, .symptom_cause::after {
    width: calc(250px / 2.5);
    height: calc(430px / 2.5);
  }
}
.symptom_cause::before {}
.symptom_cause::after {
  right: 0;
  transform: rotateY(-180deg);
}
.symptom_cause_p {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .symptom_cause_p {
    max-width: 840px;
    font-size: 1.5rem;
  }
}
.symptom_qa {
  background: #FFF;
  padding: 60px 25px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .symptom_qa {
    margin: 50px auto 0;
    padding: 50px 25px;
  }
}
.symptom_qa_sec {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .symptom_qa_sec {
    max-width: none;
  }
}
.symptom_qa_a {
  align-items: inherit;
  margin: 30px auto 0;
}
.symptom_qa_img {
  width: 120px;
  height: 120px;
  background: url('images/icon_qa_q.svg')no-repeat center;
}
@media screen and (max-width: 768px) {
  .symptom_qa_img {
    width: 110px;
    height: 110px;
    margin: 30px auto 0;
  }
}
.symptom_qa_a .symptom_qa_img {
  background: url('images/icon_qa_a.svg')no-repeat center;
  order: 2;
}
.symptom_qa_fuki {
  flex-basis: 690px;
  padding: 10px 35px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .symptom_qa_fuki {
    flex-basis: 100%;
    padding: 15px 25px;
  }
}
.symptom_qa_fuki::before {
  position: absolute;
  content: "";
  border: 10px solid transparent;
}
.symptom_qa_q .symptom_qa_fuki {
  background: var(--main);
  color: #FFF;
  font-size: 2.0rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .symptom_qa_q .symptom_qa_fuki {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    line-height: 1.6;
    order: -1;
  }
}
@media screen and (max-width: 768px) {
  .symptom_qa_q .symptom_qa_fuki::before {
    border-top: 10px solid var(--main);
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 100%);
  }
}
@media screen and (min-width: 768px) {
  .symptom_qa_q .symptom_qa_fuki::before {
    border-right: 10px solid var(--main);
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
  }
}
.symptom_qa_a .symptom_qa_fuki {
  background: var(--accent02);
  padding-top: 30px;
  padding-bottom: 25px;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .symptom_qa_a .symptom_qa_fuki {
    line-height: 1.8;
  }
  .symptom_qa_a .symptom_qa_fuki::before {
    border-top: 10px solid var(--accent02);
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 100%);
  }
}
@media screen and (min-width: 768px) {
  .symptom_qa_a .symptom_qa_fuki::before {
    border-left: 10px solid var(--accent02);
    top: 60px;
    right: 0;
    transform: translate(100%, -50%);
  }
}
.symptom_method_p {
  color: #FFF;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.2rem;
}
.symptom_method_sec {
  background: #FFF;
  padding: 40px;
  margin: 40px auto 0;
  align-items: inherit;
}
@media screen and (max-width: 768px) {
  .symptom_method_sec {
    padding: 25px;
    margin: 30px auto 0;
  }
}
.symptom_method_img {
  height: 260px;
  flex-basis: 400px;
  background-image: url("images/noimg.svg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .symptom_method_img {
    height: 200px;
    flex-basis: 100%;
  }
}
.symptom_method_cont {
  flex-basis: 450px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .symptom_method_cont {
    flex-basis: 100%;
    margin-left: auto;
    margin-top: 25px;
  }
}
.symptom_method_cont h3 {
  color: #FFF;
  font-size: 2.2rem;
  background: var(--main);
  border-radius: 100px;
  padding: 10px 25px;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 768px) {
  .symptom_method_cont h3 {
    font-size: 1.8rem;
    padding: 10px 20px;
    letter-spacing: 0.2rem;
    text-align: center;
  }
}
.symptom_method_cont p {
  line-height: 2.2;
  margin: 20px auto 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .symptom_method_cont p {
    line-height: 1.8;
    font-size: 1.4rem;
  }
}
.symptom_free {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .symptom_free .inner {
    max-width: 800px;
    margin: 0 auto;
  }
}
.symptom_course_btn a {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 5px solid var(--main);
  padding: 20px 25px;
  box-shadow: 7px 7px 0 var(--main);
}
@media screen and (max-width: 768px) {
  .symptom_course_btn a {
    max-width: none;
  }
}
.symptom_course_btn a::before {
  position: absolute;
  content: "";
  background: url('images/symptom_recoommend_deco.svg') no-repeat center;
  width: 308px;
  height: 170px;
  right: 0;
  bottom: 0;
  transform: translate(15%, 35%);
}
@media screen and (max-width: 768px) {
  .symptom_course_btn a::before {
    width: calc(308px / 2);
    height: calc(170px / 2);
    transform: translate(15%, 35%);
  }
}
.symptom_course_btn .div_L {
  flex-basis: 320px;
  height: 195px;
  background-image: url('images/noimg.svg');
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .symptom_course_btn .div_L {
    flex-basis: 100%;
    height: 170px;
  }
}
.symptom_course_btn .div_R {
  flex-basis: 340px;
  margin-left: auto;
  margin-right: 20px;
  letter-spacing: 0.3rem;
  background: url('images/arrow_navy.svg') no-repeat center right;
  background-size: 35px 35px;
  height: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  justify-content: flex-start;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .symptom_course_btn .div_R {
    flex-basis: 100%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.2rem;
    background-size: 30px 30px;
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.symptom_blog .post_date {
  display: none;
}
.symptom_blog .post_cat_child {
  margin-left: 0;
}
.symptom_blog .post_author {
  display: none;
}
/*------------------------------------------------------------
MENU / 施術メニュー別詳細ページ
------------------------------------------------------------*/
.menu_sec {
  border-radius: 10px;
  margin: 80px auto 80px;
  padding: 0px 0px;
}
@media screen and (max-width: 768px) {
  .menu_sec {
    margin: 80px auto 60px;
  }
}
.menu_sec_inner {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .menu_sec_inner {
    max-width: none;
    padding: 25px;
  }
}
.menu_sec .menu_h {
  padding-top: 80px;
  border-bottom: 2px solid var(--main);
}
@media screen and (max-width: 768px) {
  .menu_sec .menu_h {
    padding-top: 0px;
  }
}
.menu_about {
  align-items: inherit;
  margin: 30px auto 0;
}
.menu_sec .menu_img {
  flex-basis: 400px;
  height: 260px;
}
@media screen and (max-width: 768px) {
  .menu_sec .menu_img {
    flex-basis: 100%;
    height: 190px;
  }
}
.menu_p {
  flex-basis: 400px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .menu_p {
    flex-basis: 100%;
    margin-top: 25px;
    line-height: 1.8;
  }
}
.menu_content {
  margin: 50px auto 50px;
}
.menu_sec .div_deco_corner {
  border: 12px solid var(--sub);
}
.menu_content_h {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu_content_h span {
  padding: 2px 20px;
  background: var(--sub);
  color: var(--main);
  font-size: 1.6rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .menu_content_h span {
    padding: 2px 15px;
    font-size: 1.4rem;
  }
}
.menu_content p {
  text-align: center;
}
.menu_recommend {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 50px auto 50px;
}
@media screen and (max-width: 768px) {
  .menu_recommend {
    padding: 30px 20px 20px;
  }
}
.menu_recommend .h_border {
  font-size: 1.6rem;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .menu_recommend .h_border {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}
.menu_recommend li {
  color: #FFF;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .menu_recommend li {
    padding-left: 25px;
    margin-bottom: 5px;
  }
}
.menu_recommend li::before {
  content: "";
  position: absolute;
  background: url(images/icon_star_white.svg) no-repeat center;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translate(0, -60%);
}
@media screen and (max-width: 768px) {
  .menu_recommend li::before {
    width: 15px;
    height: 15px;
    top: 0%;
    transform: translate(0, 35%);
  }
}
.menu_option {
  background: #FFF;
  padding: 40px 25px;
  margin: 40px auto;
}
.menu_option .div_W {
  max-width: 760px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .menu_option .div_W {
    max-width: none;
  }
}
.menu_option .div_L {
  flex-basis: 165px;
}
@media screen and (max-width: 768px) {
  .menu_option .div_L {
    flex-basis: 100%;
  }
}
.menu_option_h {
  background: var(--main);
  color: #FFF;
  font-weight: bold;
  text-align: center;
  font-size: 1.7rem;
  padding: 5px 5px;
  border-radius: 100px;
  width: 100%;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .menu_option_h {
    font-size: 1.5rem;
  }
}
.menu_option .div_R {
  flex-basis: 560px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .menu_option .div_R {
    flex-basis: 100%;
    margin-top: 15px;
  }
}
.menu_option_table tr {
  border-bottom: 1px dotted var(--main);
}
.menu_option_table td, .menu_option_table th {
  padding: 10px;
  color: var(--main);
  font-weight: bold;
  font-size: 1.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .menu_option_table td, .menu_option_table th {
    font-size: 1.4rem;
    width: 100%;
    float: left;
  }
}
.menu_option_table td {
  font-size: 1.7rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .menu_option_table th {
    padding-bottom: 0;
    line-height: 1.6;
  }
  .menu_option_table td {
    font-size: 1.4rem;
    text-align: right;
    padding-top: 0;
  }
}
.menu_option_table td .menu_price_add {
  font-size: 1.2rem;
}
.menu_option_table + .menu_option_p {
  margin: 15px auto 0;
}
.menu_shop {
  margin-top: 60px;
  position: relative;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .menu_shop {
    margin-top: 50px;
  }
}
.menu_shop_h {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform:
    translate(-50%, -50%);
  background: #FFF;
  border: 4px solid var(--main);
  color: var(--main);
  font-size: 1.5rem;
}
.menu_shop_h::before {
  border-top-color: #FFF;
  transform: translate(-50%, 95%);
}
.menu_shop_list {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .menu_shop_list {
    padding: 20px 0;
  }
}
.menu_shop_list ul {
  justify-content: space-between;
}
.menu_shop_list .btn {
  width: auto;
  flex-basis: 400px;
  margin: 20px 0 0;
}
.menu_free02 {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .menu_free02 {
    max-width: 840px;
    margin: 0 auto;
  }
}
/* animation */
@keyframes rotateXAnime {
  from {
    transform: translateX(-50%) rotateY(0);
  }
  to {
    transform: translateX(-50%) rotateY(-360deg);
  }
}
/* 追加 */
.about_originality_list .title_lead {
  text-align: left;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .about_originality_list .title_lead {
    text-align: center;
  }
}