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

body, h1, h2, h3, h4, h5, h6, p, dl, dd, ol, ul, li, figure {
  margin: 0;
}

article, aside, figcaption, figure, footer, header, nav, section {
  display: block;
}

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

/* Set
-------------------- */
:root {
  --txtColor1:#333;
  --divColor1:#4f6a79;
  --divColor2:#DE5E64;
  --divColor2sub:#df474e;
  --divColor3:#99AEB5;
  --divColor3sub:#6d868f;
}

html {
  font-size: 100%;
}

body {
  min-height: 100vh;
  background-color: #e7e5d6;
  color: var(--txtColor1);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1;
  overflow-wrap: break-word;
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  font-weight: normal;
}

p {
  line-height: 1.66;
}

a {
  color: #0033CC;
  -webkit-tap-highlight-color: transparent;
}
@media print, (min-width: 992px) {
  a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
}

@media print, (min-width: 992px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  height: auto;
  vertical-align: middle;
}

/* header
-------------------- */
.header {
  padding: 10% 3%;
  text-align: center;
}
.header__logo img {
  width: 50%;
  max-width: 240px;
}
.header__desc {
  margin-top: 5%;
  font-size: 0.75rem;
}
@media print, (min-width: 576px) {
  .header__desc {
    font-size: 0.875rem;
  }
}
@media print, (min-width: 992px) {
  .header {
    padding: 80px 3%;
  }
  .header__desc {
    margin-top: 30px;
  }
}

/* footer
-------------------- */
.footer {
  margin-top: calc(3vw + 80px);
  padding: 40px 0;
  border-top: 1px solid #CCC;
  font-size: 0.75rem;
  line-height: 1.5;
}
.footer__link li:not(:first-child) {
  margin-top: 10px;
}
.footer__link a {
  display: inline-block;
  position: relative;
  padding-left: 15px;
  color: var(--txtColor1);
  text-decoration: none;
}
.footer__link a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: calc(50% - 2px);
  left: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid var(--divColor1);
  border-right: 1px solid var(--divColor1);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
  left: 0;
}
.footer__copyright {
  margin-top: 30px;
}
@media print, (min-width: 576px) {
  .footer {
    margin-top: 110px;
    font-size: 0.875rem;
  }
}
@media print, (min-width: 992px) {
  .footer a:hover {
    text-decoration: underline;
  }
}

/* gotop
-------------------- */
.gotop {
  position: fixed;
  z-index: 80;
  right: 110px;
  bottom: 20px;
  width: 50px;
  height: 50px;
}

.gotop a {
  display: block;
  width: 50px;
  height: 50px;
  padding: 17px 0 0 0;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.gotop svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #FFF;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

@media print, (min-width: 576px) {
  .gotop {
/*
    bottom: 30px;
*/
    right: 140px;
  }
}
@media print, (min-width: 992px) {
  .gotop a:hover {
    background: rgba(0, 0, 0, 0.2);
  }
}
/* Container
-------------------- */
.container {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media print, (min-width: 992px) {
  .container-small {
    max-width: 900px;
  }
}

/* Title
-------------------- */
.title1 {
  color: var(--divColor1);
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
.title1 span {
  position: relative;
  display: inline-block;
}
.title1 span::before,
.title1 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 1em;
  height: 1px;
  background: var(--divColor1);
}
.title1 span::before {
  left: -1.5em;
}
.title1 span::after {
  right: -1.5em;
}
@media print, (min-width: 576px) {
  .title1 {
    font-size: 1.5rem;
  }
  .title1 span::before,
  .title1 span::after {
    width: 2em;
  }
  .title1 span::before {
    left: -3em;
  }
  .title1 span::after {
    right: -3em;
  }
}

.title2 {
  padding: 1em;
  border-radius: 4px;
  background: var(--divColor1);
  color: #FFF;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
}

.title3 {
  color: var(--divColor1);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
}
.title3:not(:first-child) {
  margin-top: 30px;
}

/* List
-------------------- */
/* list1 */
.list1 {
  list-style-type: disc;
  margin-left: 25px;
  line-height: 1.5;
}
.list1:not(:first-child) {
  margin-top: 25px;
}
.list1:not(:last-child) {
  margin-bottom: 25px;
}
.list1 li {
  position: relative;
}
.list1 li:not(:last-child) {
  margin-bottom: 8px;
}
.list1 ul {
  list-style-type: circle;
  margin: 12px 0 15px 20px;
}
.list1 ul ul {
  list-style-type: disc;
}

ol.list1 {
  list-style-type: decimal;
}

/* dl-list1 */
.dl-list1:not(:first-child) {
  margin-top: 30px;
}
.dl-list1:not(:last-child) {
  margin-bottom: 30px;
}
.dl-list1 dt {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--txtColor1);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
.dl-list1 dd dt {
  margin-top: 20px;
  margin-bottom: -5px;
  padding: 0;
  border-bottom: none;
  font-size: 1rem;
}
.dl-list1 dd dt:first-child {
  margin-top: 0;
}
.dl-list1 dd {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.dl-list1 dd dd {
  margin-top: 15px;
}
.dl-list1 li {
  margin: 12px 0;
  position: relative;
  padding-left: 1em;
}
.dl-list1 li::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--txtColor1);
}
@media print, (min-width: 576px) {
  .dl-list1 dd {
    font-size: 1rem;
  }
  .dl-list1 li::before {
    top: 7px;
  }
}

/* Table
-------------------- */
/* table1 */
.table1 {
  max-width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}
.table1:not(:first-child) {
  margin-top: 25px;
}
.table1:not(:last-child) {
  margin-bottom: 25px;
}
.table1__w100 {
  width: 100%;
}
.table1 th {
  border: 1px solid #CCC;
  padding: 10px 5px 8px;
  background: #EEE;
  line-height: 1.3;
  text-align: left;
}
.table1 td {
  border: 1px solid #CCC;
  padding: 10px 5px 8px;
  line-height: 1.3;
  text-align: left;
}
.table1__tdw23 {
  width: 23%;
}
@media print, (min-width: 576px) {
  .table1 {
    font-size: 1rem;
  }
}

/* Utilities ------------------------- */
/* margin padding
-------------------- */
.u-mt-s {
  margin-top: calc(1vw + 25px);
}

.u-mt-m {
  margin-top: calc(2.2vw + 60px);
}

.u-mt-l {
  margin-top: calc(3vw + 80px);
}

@media print, (min-width: 576px) {
  .u-mt-s {
    margin-top: 40px;
  }
  .u-mt-m {
    margin-top: 80px;
  }
  .u-mt-l {
    margin-top: 120px;
  }
}
/* nowrap
-------------------- */
.u-nowrap {
  white-space: nowrap;
}

/* text-align
-------------------- */
.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

/* vertical-align
-------------------- */
.u-vertical-top {
  vertical-align: top !important;
}

.u-vertical-middle {
  vertical-align: middle !important;
}

.u-vertical-bottom {
  vertical-align: bottom !important;
}

/* font
-------------------- */
/* font-size */
.u-font-xsmall {
  font-size: 0.75rem;
}

.u-font-small {
  font-size: 0.875rem;
}

.u-font-medium {
  font-size: 1rem;
}

.u-font-large {
  font-size: 1.25rem;
}

.u-font-xlarge {
  font-size: 1.5rem;
}

/* font-bold */
.u-font-bold {
  font-weight: bold;
}

/* color */
.u-color-red {
  color: #ff0000;
}

/* indexPage
-------------------- */
.search {
  width: 90%;
  max-width: 600px;
  margin: -5% auto 10%;
}
.search__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.search__input, .search__btn {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  font-size: 16px;
  border-top: 1px solid var(--divColor1);
  border-bottom: 1px solid var(--divColor1);
}
.search__input {
  width: calc(100% - 80px);
  padding: 10px 0 10px 15px;
  border-right: none;
  border-left: 1px solid var(--divColor1);
  border-radius: 36px 0 0 36px/36px 0 0 36px;
}
.search__btn {
  width: 80px;
  padding: 10px 5px 10px 0;
  border-right: 1px solid var(--divColor1);
  border-left: none;
  border-radius: 0 36px 36px 0/0 36px 36px 0;
  background: var(--divColor1);
  text-align: center;
}
.search__btn svg {
  width: 16px;
  height: 16px;
  fill: #FFF;
}
.search__result {
  display: none;
  position: relative;
  margin-top: 10px;
}
.search__result.open{
	display: block;
}
.search__resultcontainer {
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  border: 1px solid var(--divColor1);
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.search__resultheader {
  position: relative;
  padding: 15px 0;
  font-size: 0.875rem;
  text-align: center;
}
.search__resultheader button {
  position: absolute;
  top:12px;right:10px;
}
.search__resultlist li {
  border-top: 1px solid #CCC;
  line-height: 1.5;
}
.search__resultlist a,
.search__resultlist p
 {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
}
.search__resulttitle {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: underline;
}
.search__resulttitle_lock {
  padding-left: 21px;
  background: url(../images/i-lock.svg) no-repeat 0 2px/16px 16px;
}
.search__resultexpl {
  display: block;
  margin-top: 3px;
  color: var(--txtColor1);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media print, (min-width: 576px) {
  .search__resulttitle {
    font-size: 1rem;
  }
  .search__resulttitle_lock {
    padding-left: 23px;
    background-position: 0 4px;
  }
  .search__resultexpl {
    font-size: 0.875rem;
  }
}
@media print, (min-width: 992px) {
  .search {
    margin: -50px auto 80px;
  }
  .search__btn {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .search__btn:hover {
    opacity: 0.6;
  }
  .search__resultlist a {
    opacity: 1;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .search__resultlist a:hover {
    background-color: #f6f6f6;
  }
}

.tableofcontents {
  padding: 30px 5%;
  border-radius: 8px;
  background: #FFF;
}
.tableofcontents a {
  text-decoration: none;
}
.tableofcontents .title1 {
  font-size: 1.25rem;
}
.tableofcontents__salon, .tableofcontents__userguide {
  margin-top: 50px;
}
.tableofcontents__list {
  margin-top: 30px;
}
@media print, (min-width: 576px) {
  .tableofcontents {
    padding: calc(5% + 10px) 5%;
  }
  .tableofcontents .title1 {
    font-size: 1.5rem;
  }
  .tableofcontents__salon, .tableofcontents__userguide {
    margin-top: 60px;
  }
}
@media print, (min-width: 992px) {
  .tableofcontents {
    padding: 50px 40px;
  }
  .tableofcontents a:hover {
    text-decoration: underline;
  }
  .tableofcontents__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: -15px;
  }
  .tableofcontents__list .dl-list1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 31%;
            flex: 1 0 31%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .tableofcontents__list .dl-list1:not(:nth-child(3n+1)) {
    margin-left: 3.5%;
  }
}

.voiceList {
  margin-top: 25px;
}
.voiceList__item {
  margin-top: 10px;
}
.voiceList__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5%;
  min-height: 100px;
  background-color: #f6f6f6;
  border-radius: 8px;
  text-decoration: none;
}
.voiceList__item:first-child {
  margin-top: 0;
}
.voiceList__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 27%;
          flex: 0 0 27%;
  margin-left: 5%;
}
.voiceList__img img {
  width: 100%;
  border-radius: 100%;
}
.voiceList__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 68%;
          flex: 1 1 68%;
}
.voiceList__title {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--divColor2);
}
.voiceList__title svg {
  fill: var(--divColor2);
  width: 18px;
  height: 18px;
  margin: 0 5px -2px 0;
}
.voiceList__name {
  margin-top: 3px;
  font-size: 0.75rem;
  color: var(--txtColor1);
}
@media print, (min-width: 576px) {
  .voiceList__item a {
    padding: 20px 5%;
  }
  .voiceList__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
  .voiceList__title {
    font-size: 1rem;
  }
}
@media print, (min-width: 992px) {
  .voiceList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
  .voiceList__item {
    width: 32.66%;
    margin: 0;
  }
  .voiceList__item a {
    height: 100%;
    min-height: auto;
    padding: 20px;
  }
  .voiceList__item a:hover {
    text-decoration: none;
  }
  .voiceList__item:not(:nth-child(3n+1)) {
    margin-left: 1%;
  }
  .voiceList__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
            flex: 0 0 33%;
  }
  .voiceList__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 62%;
            flex: 1 1 62%;
  }
  a:hover .voiceList__title {
    text-decoration: underline;
  }
}

.login {
  margin: 25px 0;
  padding: 40px 3%;
  background: #7D7D7D;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.login__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  margin: 15px auto 0;
}
.login__input, .login__btn {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  font-size: 16px;
}
.login__input {
  width: calc(100% - 85px);
  padding: 10px 0 10px 15px;
  border: 1px solid #FFF;
  border-radius: 36px;
}
.login__btn {
  width: 80px;
  margin-left: 5px;
  padding: 10px;
  border: none;
  border-radius: 36px;
  color: #7D7D7D;
  font-size: 14px;
  background: #FFF;
  text-align: center;
}
.login__error{
  height: 1em;
  margin: 0.5em 0 -1.5em;
  color: #FF9999;
}
@media print, (min-width: 576px) {
  .login {
    margin: 40px 0;
  }
  .login__btn {
    width: 100px;
    font-size: 16px;
  }
}
@media print, (min-width: 992px) {
  .login__btn {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .login__btn:hover {
    opacity: 0.6;
  }
}

.faqDetail {
  position: relative;
  margin-top: 30px;
  padding: 7% 5%;
  border-radius: 8px;
  background: #FFF;
}
.faqDetail::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--divColor1);
}
.faqDetail dt {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--divColor1);
  color: var(--divColor1);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
.faqDetail dd {
  font-size: 0.875rem;
}
.faqDetail dd p:not(:last-child) {
  margin-bottom: 0.75em;
}
@media print, (min-width: 576px) {
  .faqDetail {
    margin-top: 40px;
    padding: 5%;
  }
  .faqDetail::after {
    top: 12px;
    left: 12px;
  }
  .faqDetail dt {
    margin-bottom: 25px;
    padding-bottom: 8px;
    font-size: 1.25rem;
  }
  .faqDetail dd {
    font-size: 1rem;
  }
}

.caution {
  padding: 25px 3%;
  border: 1px solid #CCC;
  background: #f6f6f6;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.66;
}
.caution a {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  padding-left: 20px;
}
.caution a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: calc(50% - 2px);
  left: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 5px;
  top: calc(50% - 1px);
}
.caution a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: calc(50% - 7px);
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background: var(--divColor1);
}
@media print, (min-width: 576px) {
  .caution {
    font-size: 1rem;
  }
}

.voiceDetail__img {
  margin-bottom: 15px;
  text-align: center;
}
.voiceDetail__img img {
  width: 160px;
  border: 1px solid #eeeeee;
  border-radius: 80px;
}
.voiceDetail__name {
  color: var(--divColor2);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
.voiceDetail__title {
  position: relative;
  margin-top: 5px;
  padding-bottom: 15px;
  color: var(--divColor2);
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.voiceDetail__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
  width: 60px;
  height: 1px;
  background: var(--divColor2);
}
.voiceDetail__description {
  margin-top: 20px;
  font-size: 0.875rem;
}
.voiceDetail__description p:not(:last-child) {
  margin-bottom: 0.75em;
}
@media print, (min-width: 576px) {
  .voiceDetail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .voiceDetail__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    margin-bottom: 0;
    margin-right: 5%;
  }
  .voiceDetail__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 160px - 30px);
            flex: 1 1 calc(100% - 160px - 30px);
  }
  .voiceDetail__name {
    font-size: 0.875rem;
    text-align: left;
  }
  .voiceDetail__title {
    margin-top: 10px;
    font-size: 1.25rem;
    text-align: left;
  }
  .voiceDetail__title::after {
    left: 0;
    width: 60px;
  }
  .voiceDetail__description {
    font-size: 1rem;
  }
}

.imgset1:not(:first-child) {
  margin-top: 25px;
}
.imgset1:not(:last-child) {
  margin-bottom: 25px;
}
.imgset1__item:not(:last-child) {
  margin-bottom: 25px;
}
.imgset1__img {
  padding-top: 4px;
  text-align: center;
}
.imgset1__img img {
  max-width: 100%;
}
.imgset1__caption {
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .imgset1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .imgset1__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 48%;
            flex: 1 1 48%;
  }
  .imgset1__item:nth-child(n) {
    margin-bottom: 0;
  }
  .imgset1__item:not(:first-child) {
    margin-left: 4%;
  }
  .imgset1__caption {
    margin-top: 15px;
  }
}
@media print, (min-width: 992px) {
  .imgset1__item:not(:first-child) {
    margin-left: 30px;
  }
}

.youtube {
  position: relative;
  padding-top: 56.25%;
}
.youtube:not(:first-child) {
  margin-top: 25px;
}
.youtube:not(:last-child) {
  margin-bottom: 25px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.download:not(:first-child) {
  margin-top: 25px;
}
.download:not(:last-child) {
  margin-bottom: 25px;
}
.download__item {
  width: 49%;
  padding: 3%;
  background: #f6f6f6;
  font-size: 0.75rem;
  line-height: 1.5;
}
.download__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  color: var(--txtColor1);
  text-decoration: none;
}
.download__item:nth-child(2n) {
  margin-left: 2%;
}
.download__item:nth-child(n+3) {
  margin-top: 2%;
}
.download__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.download__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  position: relative;
  margin-top: 5px;
  padding-top: 100%;
  background: #FFF;
}
.download__img img {
  position: absolute;
  top: 7%;
  left: 7%;
  width: 86%;
  height: 86%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media print, (min-width: 576px) {
  .download__item {
    padding: 20px;
    font-size: 0.875rem;
  }
  .download__img {
    margin-top: 10px;
  }
}
@media print, (min-width: 992px) {
  .download__item {
    width: 32.66%;
  }
  .download__item:nth-child(n) {
    margin-top: 0;
    margin-left: 0;
  }
  .download__item:not(:nth-child(3n+1)) {
    margin-left: 1%;
  }
  .download__item:nth-child(n+4) {
    margin-top: 1%;
  }
}

.blockquote1 {
  padding: 3%;
  background: #f6f6f6;
  border: 1px dotted #333;
}
.blockquote1:not(:first-child) {
  margin-top: 25px;
}
.blockquote1:not(:last-child) {
  margin-bottom: 25px;
}

.line {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
}
.line a {
  width: 100%;
  height: 100%;
}
.line img {
  width: 100%;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
@media print, (min-width: 576px) {
  .line {
/*
    bottom: 30px;
    right: 30px;
*/
    width: 110px;
    height: 110px;
  }

}

.tableofcontents__salon .title1,
.salon .title3 {
  color: var(--divColor2);
}

.salon .faqDetail dt {
  color: var(--divColor2);
  border-bottom-color: var(--divColor2);
}

.tableofcontents__salon .title1 span::before,
.tableofcontents__salon .title1 span::after,
.salon .title2,
.salon .faqDetail::after {
  background: var(--divColor2);
}

.salon .title1 {
  color: var(--divColor2sub);
}

.salon .title1 span::before,
.salon .title1 span::after {
  background: var(--divColor2sub);
}

.before .title3 {
  color: var(--divColor3);
}

.before .faqDetail dt {
  color: var(--divColor3);
  border-bottom-color: var(--divColor3);
}

.before .title2,
.before .faqDetail::after {
  background: var(--divColor3);
}

.tableofcontents__before .title1,
.before .title1 {
  color: var(--divColor3sub);
}

.tableofcontents__before .title1 span::before,
.tableofcontents__before .title1 span::after,
.before .title1 span::before,
.before .title1 span::after {
  background: var(--divColor3sub);
}