html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #212326;
  line-height: 1.5;
  letter-spacing: normal;
  font-feature-settings: "palt";
  background-color: #fff;
  word-wrap: break-word;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

main {
  overflow: hidden;
}
img {
  width: auto;
  max-width:100%;
  vertical-align: bottom;
}
a,
button {
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
a,
a:hover,
a:active,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

ol,
ul {
  list-style: none;
  margin: 0;
}

dt {
  font-weight: normal;
}

dd {
  margin: 0;
}

p {
  margin-bottom: 0;
}

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

/*tel link*/
@media screen and (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*contens area*/
.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
@media screen and (max-width: 768px) {
  .sec-inner {
    padding: 50px 20px;
  }
}
/*button*/
.btn-wrap_center {
  margin-top: 40px;
  text-align: center;
  letter-spacing: normal;
}

.btn-round {
  display: inline-block;
  min-width: 220px;
  padding: 20px 30px;
  color: #191919;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: normal;
  border: 1px solid #2a2a2a;
  border-radius: 50px;
}
@media (min-width: 768px) {
  .btn-round {
    padding: 20px 60px;
    font-size: 18px;
  }
}
.btn-round:hover {
  color: #fff;
  background-color: #2a2a2a;
  opacity: 1;
}
.btn-round.black {
  color: #fff;
  background-color: #2a2a2a;
}
.btn-round.black:hover {
  opacity: 0.7;
}
/*-----------------------------------------
header
-----------------------------------------*/
header {
  position: relative;
  width: 100%;
  height: 62px;
  background: #fff;
  border-bottom: 1px solid #caccd6;
}
@media screen and (min-width: 768px) {
  header {
    height: 85px;
  }
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  header .inner {
    padding: 16px;
  }
}
header .logo {
  line-height: 1;
  position: relative;
  z-index: 999;
}
header .logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
header .logo img {
  width: 170px;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  header .logo img {
    width: 230px;
  }
}

header .nav-inner {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 100px 20px 80px;
  z-index: 900;
  overflow-y: auto;
  background-color: #212326;
}
@media screen and (min-width: 768px) {
  header .nav-inner {
    position: static;
    width: auto;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    overflow-y: visible;
    background-color: inherit;
    opacity: 1;
  }
}
header .nav-inner .menu-logo {
  width: 250px;
  height: auto;
  margin: 0 auto;
}
header .nav-list {
  font-size: 0;
}
@media screen and (min-width: 768px) {
  header .nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
header .nav-list li {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03em;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  header .nav-list li {
    margin: 0 12px;
    color: #212326;
    font-weight: 300;
    text-align: left;
  }
}
header .nav-list a {
  display: block;
}
header .nav-list a,
header .nav-list button {
  padding: 8px 16px;
}
@media screen and (min-width: 768px) {
  header .nav-list a {
    padding: 0;
  }
  header .nav-list button {
    padding: 0 16px 0 0;
  }
}
header .nav-list a:hover {
  color: #fff;
  background-color: #151618;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  header .nav-list a:hover {
    color: #45494f;
    background-color: inherit;
    opacity: 1;
  }
}

header .nav-list .dropdown button {
  position: relative;
}
header .nav-list .dropdown button::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  font-weight: 900;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
header .nav-list .dropdown-list {
}
@media screen and (min-width: 768px) {
  header .nav-list .dropdown-list {
    display: none;
    position: absolute;
    top: 35px;
    right: -15px;
    width: auto;
    min-width: 11rem;
    background-color: #fff;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  }
}
header .nav-list .dropdown-list li {
  margin: 0;
}
header .nav-list .dropdown-list li a {
  padding: 5px 16px;
}
header .nav-btn {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 901;
}
@media screen and (min-width: 768px) {
  header .nav-btn {
    display: none;
  }
}
header .hamburger-line {
  position: absolute;
  left: 5px;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: all 0.3s;
}
header .hamburger-line1 {
  top: 0;
}
header .hamburger-line2 {
  top: 7px;
}
header .hamburger-line3 {
  top: 14px;
}

/* 表示された時用のCSS */
.nav-open header .hamburger-line {
  background-color: #fff;
}
.nav-open .hamburger-line1 {
  top: 7px;
  transform: rotate(45deg);
}

.nav-open .hamburger-line2 {
  width: 0;
  left: 50%;
}

.nav-open .hamburger-line3 {
  top: 7px;
  transform: rotate(-45deg);
}

/*-----------------------------------------
footer
-----------------------------------------*/
.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.footer {
  margin-top: auto;
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fff;
}
.footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 0;
}

.footer .menu {
  display: flex;
  justify-content: center;
  padding: 0 0 60px;
  font-size: 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 992px) {
  .footer .menu {
    justify-content: flex-start;
    padding: 0 0 30px;
  }
}
.footer .menu li {
  margin-right: 1rem;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .footer .menu li {
    margin-right: 2rem;
  }
}
.footer .copyright {
  margin-top: 20px;
  color: #8b8b8b;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 992px) {
  .footer .copyright {
    text-align: left;
  }
}

/*-----------------------------------------
404
-----------------------------------------*/
#page-404 {
  margin-top: 80px;
}
@media (min-width: 576px) {
  #page-404 {
    margin-top: 120px;
  }
}
#page-404 .page-ttl-404 {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (min-width: 576px) {
  #page-404 .page-ttl-404 {
    font-size: 38px;
  }
}
#page-404 .ttl {
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
}
@media (min-width: 576px) {
  #page-404 .ttl {
    font-size: 25px;
  }
}
#page-404 p {
  margin-top: 20px;
  text-align: center;
}
#page-404 .btn-default {
  margin-top: 50px;
}

/*-----------------------------------------
custom post
-----------------------------------------*/
.custom-post-container {
  max-width: 980px;
  margin: 50px auto;
  font-size: 15px;
  color: #232323;
  line-height: 1.875;
  letter-spacing: 0.08em;
  background-color: #fff;
  font-feature-settings: "palt";
  word-wrap: break-word;
  word-break: break-all;
}
p {
  font-size: 15px;
}
section + section {
  margin-top: 80px;
}
.sec-item-box + div {
  margin-top: 30px;
}
.sec-item-box-bd div {
  padding: 15px 20px;
  background-color: #fff;
}
@media screen and (min-width: 576px) {
  .border-box-txt {
    padding: 15px;
    font-size: 18px;
  }
}
/*title*/
.tit-h2 {
  text-align: center;
  font-size: 18px;
}

.tit-h2 .sub {
  display: inline-block;
  font-size: 14px;
  margin-top: 15px;
}
.tit-h2 .sub::before,
.tit-h2 .sub::after {
  display: inline-block;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #232323;
  vertical-align: middle;
}
.tit-h2 .sub::before {
  margin-right: 10px;
}
.tit-h2 .sub::after {
  margin-left: 10px;
}
.tit-h3 {
  margin-bottom: 30px;
  font-size: 17px;
}
.tit-h3.tit-border {
  position: relative;
  padding-bottom: 10px;
  border-bottom: solid 1px #a7a7a7;
}
.tit-h3.tit-border::after {
  position: absolute;
  bottom: -1px;
  content: " ";
  display: block;
  width: 35%;
  border-bottom: solid 4px #4a4541;
}
.tit-h3.tit-border::before {
  background: none;
}
.tit-h3.tit-bg {
  padding: 5px 15px;
  margin-bottom: 20px;
  color: #fff !important;
  background: #4a4541;
}
.tit-h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
[class*="tit-order"] {
  position: relative;
  padding-left: 36px;
}
[class*="tit-order"]::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  background-color: #5daddd;
  border-radius: 50%;
}
.tit-h4[class*="tit-order"]::before {
  top: 3px;
}
.tit-order_1::before {
  content: "1";
}
.tit-order_2::before {
  content: "2";
}
.tit-order_3::before {
  content: "3";
}
.tit-order_4::before {
  content: "4";
}
.tit-order_5::before {
  content: "5";
}
.tit-order_6::before {
  content: "6";
}
.tit-order_7::before {
  content: "7";
}
.tit-order_8::before {
  content: "8";
}
.tit-order_9::before {
  content: "9";
}
.tit-order_10::before {
  content: "10";
}
.sec-item-box-bd .tit-h4 {
  margin: 0;
  padding: 3px 20px;
  color: #fff !important;
  background-color: #5daddd;
}
.tit-h4.tit-bg-blue {
  padding: 3px 20px;
  color: #fff !important;
  background-color: #265fa9;
}
.tit-h4.tit-bg-orange {
  padding: 3px 20px;
  color: #fff !important;
  background-color: #dba832;
}
@media screen and (min-width: 576px) {
  .tit-h3 {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .tit-h3.tit-border::after {
    width: 20%;
  }
  .tit-h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .tit-h2 {
    font-size: 26px;
  }
  .tit-h2 .sub {
    font-size: 18px;
  }
}
/*list*/
ul,
ol {
  margin: 0 0 10px 0;
}
.ol-st-list li,
.ul-st-list li,
.ul-st2-list li {
  position: relative;
  list-style-type: none;
  counter-increment: cnt;
}
.ul-st-list li,
.ul-st2-list li {
  padding-left: 20px;
}
.ol-st-list li {
  padding-left: 30px;
}
.ol-st-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "（" counter(cnt) "）";
}
.ul-st-list li::before {
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-color: #232323;
  vertical-align: middle;
}
.ul-st2-list li::before {
  display: inline-block;
  content: "※";
}
.ul-st-list li + li,
.ul-st2-list li + li,
.ol-st-list li + li {
  margin-top: 2px;
}
.dl-st-list {
  display: flex;
  flex-wrap: nowrap;
}
.dl-st-list dt,
.dl-st-list dd {
  margin-bottom: 10px;
}
.dl-st-list dt {
  white-space: nowrap;
  margin-right: 15px;
}
.dl-st-list dt.dt-fw-normal {
  font-weight: normal;
}
.dl-st-list dd {
  flex-basis: auto;
}
.dl-st-list dd.last {
  margin-bottom: 30px;
}

/*background*/
.bg-pd {
  padding: 20px 15px;
}
.bg-red {
  background-color: #ffecec;
}
.bg-red2 {
  background-color: #ece4e6;
}
.bg-blue {
  background-color: #eaf3f9;
}
.bg-gray {
  background-color: #f3f3f3;
}
.border-box {
  border: 1px solid #232323;
}
.border-box-blue {
  border: 1px solid #265fa9;
}
.border-box-orange {
  border: 1px solid #dba832;
}
.border-box-red {
  border: 1px solid #cf2727;
}
.seminar-inner-box {
  padding: 20px;
  background: #fff;
}
.seminar-outer-box {
  padding: 30px;
  background: #f1f3f8;
}
@media (max-width: 600px) {
  .seminar-outer-box {
    padding: 15px;
  }
}
@media (max-width: 600px) {
  .seminar-inner-box {
    padding: 15px;
  }
}
/*column*/

.col-2 {
  display: flex;
}
.col-2 div {
  width: 48%;
  margin-right: 4%;
}
.col-2 div:nth-child(2n) {
  margin-right: 0;
}
.col-2 img {
  width: 100%;
}
.col-3-smcol-2 {
  display: flex;
  flex-wrap: wrap;
}
.col-3-smcol-2 div {
  max-width: 31%;
  margin-right: 3.5%;
}
.col-3-smcol-2 div:nth-child(3n) {
  margin-right: 0;
}
.col-3-smcol-2 img {
  width: 100%;
}
@media (max-width: 600px) {
  .col-3-smcol-2 div {
    max-width: 48%;
    margin-right: 4%;
  }
  .col-3-smcol-2 div:nth-child(3n) {
    margin-right: 4%;
  }
  .col-3-smcol-2 div:nth-child(2n) {
    margin-right: 0;
  }
} /*link*/
.link-icon-txt {
  position: relative;
  padding-left: 28px;
}
.link-icon-txt::before {
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  content: "";
  background-image: url(../img/icon-link.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}
.custom-post-container .anchor-link-txt {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 28px;
  color: #4a4541;
}
.anchor-link-txt::before {
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  background-image: url(../img/icon-link-anchor.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}
.link-icon-pdf {
  position: relative;
  padding-left: 28px;
}
.link-icon-pdf::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  content: "";
  background-image: url(../img/icon-pdf.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 23px;
}
.link-txt-border-gray {
  margin-bottom: 10px;
}
.link-txt-border-gray a {
  display: block;
  padding: 15px 15px 15px 45px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
@media screen and (min-width: 576px) {
  .link-txt-border-gray a {
    font-size: 15px;
  }
}
/**button*/
.btn-st {
  display: block;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  border-radius: 3px;
  letter-spacing: normal;
}
.btn-st-sm {
  padding: 10px 20px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border-radius: 3px;
}
.btn-st a,
.btn-st-sm a {
  color: #fff;
}
.btn-st.btn-orange {
  color: #fff;
  background-color: #e6a91c;
}
.btn-st.btn-thinblue {
  color: #fff;
  background-color: #5daddd;
}
.btn-st.btn-maincolor {
  background-color: #7f1734;
}
@media screen and (min-width: 768px) {
  .btn-st {
    display: inline-block;
    font-size: 15px;
  }
}
/*text*/
.t-black {
  color: #232323;
}
.t-orange {
  color: #e6a91c;
}
.t-blue {
  color: #265fa9;
}
.t-red {
  color: #e22727;
}
.t-red2 {
  color: #cf2727;
}
.t-maincolor {
  color: #7f1734;
}
.t-red-b {
  font-size: 120%;
  color: #e22727;
  font-weight: bold;
}
.q-txt {
  position: relative;
  display: block;
  padding-left: 45px;
}
.q-txt::before {
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  content: "Q";
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background: #7f1734;
}
.a-txt {
  position: relative;
  display: block;
  padding-left: 45px;
}
.a-txt::before {
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  content: "A";
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background: #7f1734;
}
.custom-post-container a {
  color: #266bb1;
  transition: all 0.3s;
}
.custom-post-container a.tel,
.custom-post-container a.mail {
  color: #232323;
}
.custom-post-container a:hover {
  opacity: 0.7;
}
.custom-post-container a.t-black {
  color: #232323;
}
.red-underline {
  display: inline;
  border-bottom: solid 2px #e22727;
}
.t-bold {
  font-weight: bold;
}
.t-center {
  text-align: center;
}
.large-txt {
  font-size: 1.8rem !important;
}
@media (max-width: 600px) {
  .large-txt {
    font-size: 1.6rem;
  }
}
/*余白*/
.m0 {
  margin: 0 !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb150 {
  margin-bottom: 150px !important;
}

/*その他*/
.period-box {
  margin: 30px auto 50px auto;
  text-align: center;
}
.period-box div {
  display: inline-block;
  padding: 15px;
  border-top: 1px solid #232323;
  border-bottom: 1px solid #232323;
}
.period-box p {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.7;
}

hr.stripe {
  height: 12px;
  margin: 50px 0;
  background: linear-gradient(-70deg, transparent 35%, #5daddd 45%, #5daddd 55%, transparent 65%);
  background-size: 8px 12px;
  border: none;
}
@media screen and (min-width: 768px) {
  hr.stripe {
    margin: 80px 0;
  }
}
.clear-b {
  clear: both;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .period-box p {
    font-size: 14px;
  }
  .sp-br {
    display: none;
  }
}
.flow-no {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 2.2rem;
  font-weight: bold;
  background: #7f1734;
}
@media (max-width: 600px) {
  .flow-no {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 1.5rem;
  }
}
.wp-block-image {
  max-width: 980px;
  margin: 50px auto 0;
}
/*----- 2021年「ヴィベケ・リーセRPTMセミナー」受講者募集のご案内 -----*/
.seminar-info .lead-box {
  margin: 50px 0;
}
.seminar-info .lead-box .top-txt {
  position: relative;
  display: inline-block;
  left: 50%;
  margin-bottom: 10px;
  padding: 0 20px;
  font-size: 16px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.seminar-info .top-txt::before,
.seminar-info .top-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 18px;
  height: 1px;
  background-color: #232323;
}
.seminar-info .top-txt::before {
  left: 0;
  transform: rotate(60deg);
}
.seminar-info .top-txt::after {
  right: 0;
  transform: rotate(-60deg);
}
.seminar-info .border-box-txt {
  max-width: 480px;
  margin: 0 auto 50px auto;
  padding: 15px 10px;
  font-size: 14px;
  text-align: center;
  border: solid 5px #95c9e9;
}
.seminar-info .border-box-txt span {
  font-size: 25px;
  font-weight: bold;
  color: #5daddd;
}
/*----- / 2021年「ヴィベケ・リーセRPTMセミナー」受講者募集のご案内ここまで -----*/

/*----- ヴィベケ・リーセについて -----*/
.about .tit-h3 {
  font-size: 18px;
}
.about .lead-box-about {
  margin: 0 auto;
}
.about .top-img-box {
  width: 100%;
  height: auto;
}
.about .top-txt-box {
  width: 100%;
}
.about .top-txt-box .top-txt {
  font-size: 23px;
}
.about .top-txt .or-lg {
  color: #e5ac28;
  font-size: 35px;
  font-weight: bold;
}
.about .t-strong {
  font-size: 23px;
  font-weight: bold;
  color: #265fa9;
}
.about .t-strong-s {
  font-size: 18px;
  font-weight: bold;
  color: #265fa9;
}
.about .img-box3 {
  display: flex;
  justify-content: space-between;
}
.about .img-box3 img {
  width: 33%;
}
.about .catch-txt {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.about .catch-txt span {
  font-size: 30px;
}
.tit-bg-thinblue {
  margin: 0;
  padding: 20px;
  color: #fff !important;
  background-color: #5daddd;
}
.about .imagetxt-box {
  padding: 20px;
}
.about .imagetxt-box img {
  width: 100%;
}
.about .imagetxt-box .txt {
  width: 100%;
}
.about .profile-box {
}
.about .profile-box img {
  width: 100%;
}
.about .profile-box .txt {
  width: 100%;
}
.about .profile-box .txt .name {
  font-size: 23px;
  color: #265fa9;
}
@media screen and (min-width: 576px) {
  .about .top-txt-box .top-txt {
    font-size: 28px;
  }
  .about .top-txt .or-lg {
    color: #e5ac28;
    font-size: 38px;
    font-weight: bold;
  }
}
@media screen and (min-width: 768px) {
  .about .tit-h3 {
    font-size: 25px;
  }
  .about .lead-box-about {
    display: flex;
    justify-content: space-between;
  }
  .about .top-img-box {
    width: 50%;
  }
  .about .top-txt-box {
    width: 50%;
    margin-left: 30px;
  }
  .about .catch-txt {
    text-align: center;
    font-size: 30px;
    letter-spacing: 0.08em;
  }
  .about .catch-txt span {
    font-size: 50px;
  }
  .about .imagetxt-box {
    display: flex;
    justify-content: space-between;
  }
  .about .imagetxt-box img {
    width: 50%;
  }
  .about .imagetxt-box .txt {
    width: 50%;
    padding-left: 30px;
  }
  .about .profile-box {
    display: flex;
    justify-content: space-between;
  }
  .about .profile-box img {
    width: 30%;
  }
  .about .profile-box .txt {
    width: 70%;
    padding-left: 30px;
  }
}
/*----- / ヴィベケ・リーセについて -----*/

/*----- 認定コースについて -----*/
.course .image-box {
  display: flex;
  justify-content: space-between;
}
.course .image-box img {
  width: 49%;
}
/*----- / 認定コースについてここまで -----*/
/*----- 無料聴講制度と有料再受講制度について -----*/
.re-attendance .bc-txt-item {
  margin-right: 10px;
  padding: 2px 10px;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  background-color: #232323;
}
.re-attendance .tit-h4.tit-bg-blue,
.re-attendance .tit-h4.tit-bg-orange {
  font-size: 18px;
}
@media screen and (min-width: 576px) {
  .re-attendance .tit-h3 {
    font-size: 25px;
  }
}
/*----- / 無料聴講制度と有料再受講制度についてここまで -----*/
/*----- 各コースの部屋 -----*/
.nintei-room-movie .movie-cont a {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  background: #f6f6f6;
  border-radius: 5px;
  padding: 15px;
}
.nintei-room-movie img {
  width: 120px;
  height: auto;
}
.nintei-room-movie .movie-link-txt {
  padding-left: 20px;
  line-height: 1.5;
  font-size: 13px;
}
@media screen and (min-width: 576px) {
  .nintei-room-movie .movie-link-txt {
    font-size: 16px;
  }
}
/*----- / 各コースの部屋 -----*/
/*---- / custom postここまで -----*/

/*----- テスト -----*/
.nintei-room-test .ul-st-list li + li {
  margin-top: 15px;
}
.nintei-room-test .btn-st {
  display: block;
  width: 100%;
}
/*----- / テスト -----*/

/*table*/
table th {
  font-weight: normal;
}
table.retable td {
  background-color: #fff;
  border-right: solid 1px #e0e0e0;
}
#body_my-account .woocommerce-address-fields label[for="shipping_state"],
#body_my-account .woocommerce-address-fields label[for="shipping_postcode"],
#body_my-account .woocommerce-address-fields label[for="shipping_first_name"],
#body_my-account .woocommerce-address-fields label[for="shipping_last_name"],
#body_my-account .woocommerce-address-fields label[for="shipping_phone"],
#body_my-account .woocommerce-address-fields label[for="shipping_address_1"],
#body_my-account .woocommerce-address-fields label[for="shipping_city"],
#body_my-account .woocommerce-address-fields label[for="shipping_country"],
table.shop_table.woocommerce-checkout-review-order-table th,
table.shop_table.shop_table_responsive.cart th,
table.retable th {
  background-color: #e9e9e9;
  color: #2e2e2e;
}
table.retable td::after,
table.retable tr:first-child td::before {
  background-color: #9a9a9a;
}
table#user_regist td {
  padding: 0.5em;
}
table.shop_table.woocommerce-checkout-review-order-table th,
table.shop_table.shop_table_responsive.cart th,
table.retable th {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}

.input-text:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
textarea:focus {
  background-color: #f5f7f9;
}

/*YouTubeリンク*/
.youtube-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.youtube-list iframe {
  width: 100%;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .youtube-list iframe {
    width: 48%;
  }
  .youtube-list iframe + iframe {
    margin-left: 2%;
  }
}

/*------------------------------------------
 copy area
 -----------------------------------------*/
.copy-the-code-button {
  width: 100%;
  margin: 20px 0 10px 0;
}
.copy-the-code-wrap .copy-the-code-button {
  position: relative;
  background: #0085ba;
  padding: 20px 15px 20px 35px;
  cursor: pointer;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  border-radius: 0;
  text-transform: capitalize;
  border: none;
  outline: dashed 2px #fff;
  outline-offset: -6px;
}
@media screen and (min-width: 768px) {
  .copy-the-code-wrap .copy-the-code-button {
    font-size: 17px;
  }
}
.copy-the-code-wrap .copy-the-code-button::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  content: "";
  background-image: url(https://salon.vra-rptm.jp/wp-content/uploads/2022/06/icon-copy.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 22px;
}
.copy-the-code-wrap .copy-the-code-button:hover {
  background: #0085ba;
}
.copy-the-code-target {
  background-color: #f5f5f5;
  border: 2px solid #0085ba;
}
/*------------------------------------------
event フォーム入力の説明
 -----------------------------------------*/
#body_event.single #main h4.eventform-detail-title {
  color: #0085ba !important;
  margin-bottom: 20px !important;
  text-align: center;
  font-size: 18px !important;
  font-weight: bold;
  line-height: 1.6;
}
.eventform-detail-box {
  display: flex;
  flex-wrap: wrap;
}
.eventform-detail-box .eventform-detail-txt {
  width: 50%;
}
.eventform-detail-box .eventform-detail-img {
  width: 50%;
}
@media (max-width: 600px) {
  .eventform-detail-box .eventform-detail-txt {
    width: 100%;
  }
  .eventform-detail-box .eventform-detail-img {
    width: 100%;
  }
}
/*------------------------------------------
ショップ
 -----------------------------------------*/
.shop-content .txt {
  font-size: 14px;
}
.shop-content .payment {
  text-align: center;
  margin-top: 30px;
}
.shop-content ul {
  list-style: disc;
  padding-left: 20px;
}
.shop-content .dog-contact {
  margin-top: 20px;
}
.shop-content .dog-contact .ttl {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.shop-content .dog-contact p {
  margin-bottom: 10px;
  font-size: 15px;
  text-decoration: underline;
}

.shop-content .dog-contact p.note {
  font-size: 13px;
  text-decoration: none;
}
.shop-content .dog-contact .dog-contact-btn {
  text-align: center;
}
.shop-content .dog-contact .dog-contact-btn a {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  border-radius: 3px;
  letter-spacing: normal;
  background-color: #4a4541;
  transition: all 0.3s;
}
.shop-content .payment .head {
  margin-bottom: 5px;
  padding: 5px 10px;
  border: 1px solid #000;
}
.shop-content .payment .furikomi .furikomi-box {
  width: 288px;
  margin: 0 auto;
  padding: 20px 12px 30px;
  background-color: rgb(235, 235, 235);
  border-radius: 6px;
}
.shop-content .payment .furikomi .furikomi-box .txt {
  font-size: 14px;
}
.shop-content .payment .furikomi .furikomi-contact-btn {
  text-align: center;
}
.shop-content .payment .furikomi .furikomi-contact-btn a {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  border-radius: 6px;
  letter-spacing: normal;
  background-color: #15bf85;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .shop-content {
    display: flex;
    align-items: flex-start;
  }
  .shop-content .detail {
    flex: 1;
    padding-right: 50px;
  }
  .shop-content .txt {
    font-size: 15px;
  }
  .shop-content .payment {
    margin-top: 0;
  }
}
