@charset "UTF-8";
/*--------------------------------------------
  reset
----------------------------------------------*/
body {
  line-height: 1; }

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

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

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

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

ul li {
  list-style-type: none; }

img {
  margin: 0;
  padding: 0;
  vertical-align: top; }

/*IE*/
/*table { table-layout:fixed; }*/
/*--------------------------------------------
  CSS Animation
----------------------------------------------*/
.delay_1s {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important; }

.delay_2s {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important; }

.delay_3s {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important; }

.delay_4s {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important; }

.delay_5s {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important; }

.delay_6s {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important; }

.delay_7s {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important; }

.delay_8s {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important; }

.delay_9s {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important; }

.delay_10s {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important; }

.delay_11s {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important; }

.delay_12s {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important; }

.delay_13s {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important; }

.delay_14s {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important; }

.delay_15s {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important; }

.delay_16s {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important; }

.delay_17s {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important; }

.delay_18s {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important; }

.delay_19s {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important; }

.delay_20s {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important; }

.ani_1 {
  visibility: hidden; }

.ani_2 {
  visibility: hidden; }

.ani_3 {
  visibility: hidden; }

.ani_4 {
  visibility: hidden; }

.ani_5 {
  visibility: hidden; }

.ani_6 {
  visibility: hidden; }

.ani_7 {
  visibility: hidden; }

.ani_8 {
  visibility: hidden; }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  visibility: visible !important; }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  visibility: visible !important; }

.fadeIn {
  -webkit-animation: fadeIn 0.7s ease 0s 1 normal;
          animation: fadeIn 0.7s ease 0s 1 normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  visibility: visible !important; }

.fadeOut {
  -webkit-animation: fadeOut 0.7s ease 0s 1 normal;
          animation: fadeOut 0.7s ease 0s 1 normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  visibility: hidden !important; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/*--------------------------------------------
  setting
----------------------------------------------*/
html {
  font-size: 62.5%;
  height: 100%; }

html * {
  box-sizing: border-box; }

html img {
  vertical-align: bottom; }

body {
  font-family: 'Roboto',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",'YuGothic Web','ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, sans-serif;
  position: relative;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  height: 100%; }

a, a:link {
  color: #333333;
  text-decoration: none;
  outline: none; }

a:hover {
  color: #333333; }

a:focus {
  outline: none; }

.float_left {
  float: left; }

.float_right {
  float: right; }

.float_clear {
  clear: both; }

h1, h2, h3, h4 {
  font-weight: normal; }

address {
  font-style: normal; }

h1, h2, h3, h4, p, dt, dd, li {
  max-height: 999999px; }

.clearfix {
  *zoom: 1; }

.clearfix:before, .clearfix:after {
  display: table;
  content: ""; }

.clearfix:after {
  clear: both; }

/*--------------------------------------------
  loading
----------------------------------------------*/
#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 12000;
  top: 0;
  left: 0; }
  #overlay #loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px; }
    #overlay #loader #spinner {
      position: absolute;
      left: 1px;
      top: 1px;
      width: 26px;
      height: 26px;
      -webkit-animation: spin 1s infinite linear;
              animation: spin 1s infinite linear; }
    #overlay #loader #mask {
      width: 12px;
      height: 12px;
      overflow: hidden; }
    #overlay #loader #maskedCircle {
      width: 20px;
      height: 20px;
      border-radius: 12px;
      border: 3px solid #333; }

.start {
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
          animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  visibility: visible !important; }

@font-face {
  font-family: 'YuGothic Web';
  src: url("../font/Yu Gothic Medium.otf");
  font-weight: normal; }

@font-face {
  font-family: 'YuGothic Web';
  src: url("../font/Yu Gothic Bold.otf");
  font-weight: bold; }

body#home #message .text .button a, body#home #menu .button a, body#home #schedule .button a {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 10px 0 0;
  width: 100%;
  height: 45px;
  letter-spacing: 3px;
  background: url("../images/sp/frame.png") top left/100% 100% no-repeat; }
  body#home #message .text .button a img, body#home #menu .button a img, body#home #schedule .button a img {
    margin-right: 12px;
    margin-bottom: 5px; }
  body#home #message .text .button a span, body#home #menu .button a span, body#home #schedule .button a span {
    letter-spacing: 1px; }

body#home #menu h2, body#home #schedule h2, body#home #salon h2 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 3px;
  margin-bottom: 40px;
  font-weight: 400; }
  body#home #menu h2 img, body#home #schedule h2 img, body#home #salon h2 img {
    margin-right: 10px;
    margin-bottom: 3px; }

body#menu header #imageArea h2, body#about header #imageArea h2, body#contact header #imageArea h2 {
  width: 80%;
  height: 18vw;
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 4px;
  color: #fff;
  font-weight: 500;
  padding-top: calc(9vw - 9px);
  background: url("../images/sp/frame_header.png") center center/100% 18vw no-repeat;
  margin: 0 auto;
  text-shadow: 0px 0px 35px #bbb; }

body#menu header, body#about header, body#contact header {
  padding-top: 60px;
  height: 100%; }
  body#menu header #imageArea, body#about header #imageArea, body#contact header #imageArea {
    height: 100%;
    padding-top: calc(50vh - 98px); }

body#menu section h3, body#about section h3 {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  background: url("../images/icon.png") left 5px/27px 9px no-repeat;
  line-height: 1.5em;
  padding-left: 40px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  body#menu section h3 img, body#about section h3 img {
    margin-right: 8px;
    margin-bottom: 4px; }

body#home #menu, body#home #schedule, body#home #salon, body#menu section.large, body#menu .column section, body#about section {
  margin: 0 5%;
  padding-top: 80px; }

ul.caption {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.8px;
  line-height: 1.6em; }
  ul.caption li {
    text-indent: -1em;
    margin-top: 5px;
    margin-left: 1em; }
    ul.caption li:nth-of-type(1) {
      margin-top: 0px; }

.pc-only {
  display: none; }

.sp-only {
  display: block; }

header {
  position: relative; }
  header #navArea {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    height: 60px;
    padding: 22px 5% 0px;
    position: fixed;
    z-index: 400;
    top: 0px;
    background-color: #fff;
    width: 100%;
    transition: 0.2s; }
    header #navArea h1 img {
      width: 155px;
      height: auto;
      transition: 0.2s; }
    header #navArea nav {
      visibility: hidden;
      opacity: 0;
      transition: 0.5s; }
      header #navArea nav.active {
        display: block;
        opacity: 1;
        visibility: visible; }
      header #navArea nav > ul {
        position: absolute;
        left: 0px;
        top: 60px;
        width: 100vw;
        height: 100vh;
        padding-top: calc(50vh - 245px);
        background-color: #fff; }
        header #navArea nav > ul > li {
          letter-spacing: 4px;
          font-size: 15px;
          font-size: 1.5rem;
          margin-bottom: 50px;
          text-align: center; }
          header #navArea nav > ul > li:nth-last-of-type(1) {
            margin-bottom: 0px; }
          header #navArea nav > ul > li > ul {
            display: flex;
            flex-flow: row nowrap;
            justify-content: center;
            gap: 0px 20px; }
            header #navArea nav > ul > li > ul li#instagram img {
              width: 20px; }
            header #navArea nav > ul > li > ul li#ameblo {
              margin-top: -3px; }
              header #navArea nav > ul > li > ul li#ameblo img {
                width: 28px; }
            header #navArea nav > ul > li > ul li#line {
              margin-top: -4px; }
  header .menu-trigger,
  header .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    cursor: pointer; }
  header .menu-trigger {
    position: fixed;
    z-index: 100;
    width: 26px;
    height: 22px;
    top: 20px;
    right: 5%; }
    header .menu-trigger span {
      position: absolute;
      right: 0;
      height: 2px;
      background-color: #333;
      border-radius: 2px; }
      header .menu-trigger span:nth-of-type(1) {
        top: 0;
        width: 80%; }
      header .menu-trigger span:nth-of-type(2) {
        top: 10px;
        width: 65%; }
      header .menu-trigger span:nth-of-type(3) {
        bottom: 0;
        width: 100%; }
  header .menu-trigger.active span {
    width: 100%; }
    header .menu-trigger.active span:nth-of-type(1) {
      -webkit-transform: translateY(10px) rotate(-45deg);
              transform: translateY(10px) rotate(-45deg); }
    header .menu-trigger.active span:nth-of-type(2) {
      opacity: 0; }
    header .menu-trigger.active span:nth-of-type(3) {
      -webkit-transform: translateY(-10px) rotate(45deg);
              transform: translateY(-10px) rotate(45deg); }

article {
  position: relative; }

#pagetop {
  display: none;
  visibility: hidden;
  position: fixed;
  right: 3vw;
  bottom: 50px;
  z-index: 400; }
  #pagetop img {
    width: 40px;
    height: auto; }

footer {
  padding: 80px 0 20px; }
  footer p {
    text-align: center;
    letter-spacing: 1.2px;
    font-size: 10px;
    font-size: 1rem; }

body#home header {
  height: 100%; }
  body#home header #slider li {
    background: url("../images/sp/main_1.jpg") center center/cover no-repeat;
    position: absolute;
    height: calc(100% - 5vw);
    width: 90%;
    margin: 0 5%; }
    body#home header #slider li:nth-of-type(1) {
      background-image: url(../images/sp/main_2.jpg); }
    body#home header #slider li:nth-of-type(2) {
      background-image: url(../images/sp/main_3.jpg); }
    body#home header #slider li:nth-of-type(3) {
      background-image: url(../images/sp/main_4.jpg); }
    body#home header #slider li:nth-of-type(4) {
      background-image: url(../images/sp/main_1.jpg); }
  body#home header #slider_button {
    position: absolute;
    z-index: 100;
    bottom: calc(5% + 18px);
    left: calc(50% - 44px); }
    body#home header #slider_button a {
      opacity: 0.3;
      background-color: #FFF;
      width: 10px;
      height: 10px;
      border-radius: 5px;
      display: inline-block;
      margin-left: 6px;
      margin-right: 6px; }
      body#home header #slider_button a:hover, body#home header #slider_button a.choice {
        opacity: 1; }
  body#home header #copy {
    position: relative;
    z-index: 100;
    text-align: center;
    top: calc(50vh - 120px);
    color: #fff;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 2.1px;
    line-height: 2.6em;
    padding-top: 25px;
    font-weight: bold;
    width: 70%;
    height: 195px;
    background: url("../images/sp/frame_slide.png") top left/100% 100% no-repeat;
    text-shadow: 0px 0px 25px #555;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    body#home header #copy span {
      display: block; }

body#home #message {
  position: relative; }
  body#home #message .top {
    background: url("../images/image_message.png") left center/cover no-repeat;
    height: 0px; }
  body#home #message .bottom {
    background: url("../images/bg_message.png") top left/50px 85px repeat;
    width: 100%;
    height: 850px;
    opacity: 1; }
  body#home #message .text {
    text-align: center;
    position: absolute;
    top: 65px;
    background: url("../images/bg_octagon.png") top left 50%/720px 720px no-repeat;
    width: 100%;
    height: 720px;
    padding-top: 100px;
    padding-left: 5%;
    padding-right: 5%; }
    body#home #message .text h2 {
      margin-bottom: 45px; }
      body#home #message .text h2 img {
        width: 190px;
        height: auto; }
    body#home #message .text p {
      line-height: 2.4em;
      font-size: 14px;
      font-size: 1.4rem; }
      body#home #message .text p span {
        display: block; }
    body#home #message .text .button a {
      width: 240px;
      margin-top: 40px; }

body#home #menu ul li {
  width: 100%;
  margin-top: 40px; }
  body#home #menu ul li:nth-of-type(1) {
    margin-top: 0px; }
  body#home #menu ul li a {
    display: block; }
  body#home #menu ul li img {
    width: 100%;
    height: auto; }
  body#home #menu ul li p {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

body#home #menu .button a {
  margin-top: 50px; }

body#home #schedule iframe {
  margin-bottom: 30px;
  height: 450px; }

body#home #schedule .text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8em;
  letter-spacing: 2px;
  margin-bottom: 20px; }

body#home #schedule .button a {
  margin-top: 50px; }

body#home #salon iframe {
  margin-bottom: 35px; }

body#home #salon p.address,
body#home #salon table {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 2px; }

body#home #salon p.address {
  margin-bottom: 30px; }

body#home #salon table {
  margin-bottom: 15px; }
  body#home #salon table td {
    line-height: 1.5em;
    padding-bottom: 10px; }
    body#home #salon table td:nth-of-type(1) {
      width: 62px; }
    body#home #salon table td:nth-of-type(2) {
      width: 20px;
      text-align: center; }
    body#home #salon table td span {
      display: block; }

body#menu header #imageArea {
  background: url("../images/sp/header_menu.png") center center/cover no-repeat; }

body#menu #monitorPrice {
  position: relative;
  top: 40px;
  border: 1px solid #db58b3;
  padding: 13px 20px;
  margin: 0px 5% 15px;
  color: #db58b3;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 1px;
  line-height: 1.6em; }

body#menu section table tr td {
  text-align: left;
  border: solid 1px #c9c9c9;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 6px 10px;
  line-height: 1.6;
  letter-spacing: 1px;
  vertical-align: middle;
  width: 50%; }
  body#menu section table tr td span {
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0px; }

body#menu section table .monitor {
  color: #db58b3; }

body#menu section .description {
  background-color: #fafafa;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8em;
  letter-spacing: 0.5px; }
  body#menu section .description .caption {
    margin-top: 10px; }

body#menu section.large:nth-of-type(1) {
  padding-top: 60px; }

body#menu section.large ul.image {
  margin-bottom: 45px; }
  body#menu section.large ul.image li {
    width: 100%;
    margin-top: 5vw; }
    body#menu section.large ul.image li:nth-of-type(1) {
      margin-top: 0; }
    body#menu section.large ul.image li img {
      width: 100%;
      height: auto; }

body#menu section.large .flow .left {
  width: 100%; }

body#menu section.large .flow .right {
  width: 100%;
  margin-top: 25px; }
  body#menu section.large .flow .right table {
    margin-top: 40px; }

body#menu section.large .flow ul.list > li {
  display: flex;
  flex-flow: row nowrap;
  margin-top: 25px;
  letter-spacing: 1.2px;
  line-height: 1.6em; }
  body#menu section.large .flow ul.list > li:nth-of-type(1) {
    margin-top: 0px; }
  body#menu section.large .flow ul.list > li .number {
    font-size: 12px;
    font-size: 1.2rem;
    padding-top: 5px;
    width: 28px;
    height: 32px;
    background: url("../images/hexagon.png") left top/28px 32px no-repeat;
    text-align: center; }
  body#menu section.large .flow ul.list > li .text {
    width: calc(100% - 28px - 15px);
    padding-top: 5px;
    margin-left: 15px; }
  body#menu section.large .flow ul.list > li .caption {
    margin-top: 10px; }

body#menu section.large table {
  width: 100%; }

body#menu section.large .description {
  margin-top: 40px;
  padding: 25px 30px; }

body#menu .column section div.image {
  margin-bottom: 45px; }
  body#menu .column section div.image img {
    width: 100%; }

body#menu .column section table {
  width: 100%;
  margin-bottom: 40px; }

body#menu .column section .description {
  padding: 20px 25px; }

body#about header #imageArea {
  background: url("../images/sp/header_about.png") center center/cover no-repeat; }

body#about section:nth-of-type(1) {
  padding-top: 60px; }

body#about section div.image {
  margin-bottom: 30px; }
  body#about section div.image img {
    width: 100%;
    height: auto; }

body#about section ul.image {
  margin-bottom: 30px; }
  body#about section ul.image li {
    width: 100%;
    margin-top: 5vw; }
    body#about section ul.image li:nth-of-type(1) {
      margin-top: 0; }
    body#about section ul.image li img {
      width: 100%;
      height: auto; }

body#about section ul.text li {
  text-indent: -1em;
  margin-left: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 1.3px;
  line-height: 1.6em;
  margin-bottom: 10px; }
  body#about section ul.text li:nth-last-of-type(1) {
    margin-bottom: 0px; }

body#about section div.text p {
  line-height: 1.8em;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 1.3px; }

body#about section div.text ul.text {
  margin: 15px 0px; }
  body#about section div.text ul.text li {
    margin-bottom: 0px;
    line-height: 2.2em; }

body#about section #profile_inner #profile_image {
  width: 100%;
  margin-bottom: 30px; }
  body#about section #profile_inner #profile_image img {
    width: 100%; }

body#about section #profile_inner #profile_text {
  width: 100%;
  position: relative; }
  body#about section #profile_inner #profile_text p {
    line-height: 1.8em;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 1px; }
  body#about section #profile_inner #profile_text ul#qualification_list {
    margin-top: 22px; }
    body#about section #profile_inner #profile_text ul#qualification_list li {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.8em;
      text-indent: -1em;
      margin-left: 1em; }
  body#about section #profile_inner #profile_text .caption {
    margin-top: 10px; }
  body#about section #profile_inner #profile_text #qualification {
    display: flex;
    flex-flow: row wrap; }
    body#about section #profile_inner #profile_text #qualification #qualification_image {
      margin-top: 22px; }
      body#about section #profile_inner #profile_text #qualification #qualification_image .facetype_image {
        width: 58px;
        height: auto; }
      body#about section #profile_inner #profile_text #qualification #qualification_image .kimono_image {
        width: 80px;
        height: auto; }
      body#about section #profile_inner #profile_text #qualification #qualification_image .lapis_image {
        width: 55px;
        height: auto;
        margin-left: 10px; }

body#contact header #imageArea {
  background: url("../images/sp/header_contact.png") center center/cover no-repeat; }

body#contact article {
  width: 90%;
  margin: 0 5%;
  margin-top: 35px; }
  body#contact article ul.guide {
    margin-bottom: 25px; }
    body#contact article ul.guide li {
      margin-top: 15px;
      letter-spacing: 0.5px;
      line-height: 1.6em;
      font-size: 13px;
      font-size: 1.3rem; }
      body#contact article ul.guide li:nth-of-type(1) {
        margin-top: 0px; }
      body#contact article ul.guide li span {
        color: #ee0000; }
  body#contact article ul.caution {
    margin-bottom: 40px;
    background-color: #fafafa;
    padding: 20px; }
    body#contact article ul.caution li {
      font-size: 11.5px;
      font-size: 1.15rem;
      line-height: 1.6em;
      margin-top: 10px;
      text-indent: -1.2em;
      margin-left: 1.2em;
      letter-spacing: 0.5px; }
      body#contact article ul.caution li:nth-of-type(1) {
        margin-top: 0px; }
      body#contact article ul.caution li span {
        color: #ee0000; }
  body#contact article div.section {
    margin-bottom: 30px; }
    body#contact article div.section p.title {
      width: 100%;
      letter-spacing: 1.5px;
      margin-bottom: 10px; }
      body#contact article div.section p.title span {
        color: #ff0000; }
    body#contact article div.section p.title.top {
      margin-top: 3px; }
    body#contact article div.section p.form {
      width: 100%; }
    body#contact article div.section p.form.half {
      width: 100%; }
    body#contact article div.section#menu {
      margin: 30px 0 60px; }
    body#contact article div.section#otoiawase {
      margin-top: 35px; }
  body#contact article hr {
    margin-bottom: 0px;
    border: none; }
  body#contact article span.wpcf7-not-valid-tip {
    display: block;
    margin-top: 10px;
    color: #ff0000;
    font-size: 12px;
    font-size: 1.2rem; }
  body#contact article input[type="text"],
  body#contact article input[type="tel"],
  body#contact article input[type="email"],
  body#contact article input[type="date"],
  body#contact article select,
  body#contact article textarea {
    border: 1px solid #ddd;
    background-color: #fafafa;
    letter-spacing: 0.5px;
    border-radius: 0px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
  body#contact article input[type="text"],
  body#contact article input[type="tel"],
  body#contact article input[type="email"],
  body#contact article input[type="date"] {
    height: 40px;
    width: 100%;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0 8px; }
  body#contact article input[type="text"].hasDatepicker {
    background: #fafafa url(../images/cursol_select.png) right 8px top 9px no-repeat;
    margin-bottom: 15px; }
  body#contact article select {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0 8px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    height: 40px;
    width: 100%;
    background: #fafafa url(../images/cursol_select.png) right 8px top 12px no-repeat; }
  body#contact article textarea {
    width: 100%;
    padding: 8px;
    height: 300px; }
  body#contact article span.wpcf7-list-item {
    position: relative;
    display: block;
    margin-top: 25px;
    margin-left: 0px;
    line-height: 1.6em; }
  body#contact article input[type="checkbox"] {
    display: none; }
  body#contact article span.wpcf7-list-item-label {
    display: inline-block;
    margin-left: 25px; }
  body#contact article input[type="checkbox"] + span.wpcf7-list-item-label::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    background-color: #fafafa; }
  body#contact article input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
    content: "";
    display: block;
    position: absolute;
    top: -3px;
    left: 6px;
    width: 7px;
    height: 15px;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    border-bottom: 3px solid #777;
    border-right: 3px solid #777; }
  body#contact article div.wpcf7-response-output {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 20px;
    padding: 15px 20px;
    letter-spacing: 0.3px;
    line-height: 1.6em; }
  body#contact article div#confirm {
    display: flex;
    flex-flow: row nowrap;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto; }
    body#contact article div#confirm input[type="submit"],
    body#contact article div#confirm input[type="button"] {
      background-color: #666;
      color: #fff;
      letter-spacing: 0.5px;
      border-radius: 0px;
      font-size: 14px;
      font-size: 1.4rem;
      padding: 10px 20px;
      margin-right: 15px;
      cursor: pointer;
      border-radius: none;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none; }

.banner_16type_color {
  width: 100%; }

.u-mt-20px-sp {
  margin-top: 20px; }

.u-mt-30px-sp {
  margin-top: 30px; }

.u-mt-50px-sp {
  margin-top: 50px; }

.u-img-fix {
  width: 100%;
  height: auto; }
