@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; }

a,
.hover,
form .button input {
  transition: 0.2s; }

a:hover,
.hover:hover,
form .button input:hover {
  opacity: 0.6; }

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: 20px 10px 0 0;
  width: 250px;
  height: 54px;
  letter-spacing: 3px;
  background: url("../images/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: 17px;
  font-size: 1.7rem;
  letter-spacing: 3.5px;
  margin-bottom: 60px; }
  body#home #menu h2 img, body#home #schedule h2 img, body#home #salon h2 img {
    margin-right: 10px;
    margin-bottom: 2px; }

body#menu header #imageArea h2, body#about header #imageArea h2, body#contact header #imageArea h2 {
  width: 370px;
  height: 100px;
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 6px;
  color: #fff;
  font-weight: 500;
  padding-top: 42px;
  background: url("../images/frame_header.png") center center/370px 100px no-repeat;
  margin: 0 auto;
  text-shadow: 0px 0px 30px #ccc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body#menu section h3, body#about section h3 {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  height: 75px;
  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, body#about section {
  margin: 0 3%;
  padding-top: 100px; }

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

.pc-only {
  display: block; }

.sp-only {
  display: none; }

header {
  position: relative; }
  header #navArea {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    height: 75px;
    padding: 30px 3% 0px;
    position: fixed;
    z-index: 400;
    top: 0px;
    background-color: #fff;
    width: 100%;
    transition: 0.2s; }
    header #navArea h1 img {
      width: 175px;
      height: auto;
      transition: 0.2s; }
    header #navArea nav {
      display: block; }
      header #navArea nav ul {
        display: flex;
        flex-flow: row nowrap;
        gap: 0px 40px; }
        header #navArea nav ul li {
          letter-spacing: 3px;
          font-size: 11px;
          font-size: 1.1rem; }
          header #navArea nav ul li ul {
            display: flex;
            flex-flow: row nowrap;
            gap: 0px 25px; }
            header #navArea nav ul li ul li#instagram {
              margin-top: -3px; }
              header #navArea nav ul li ul li#instagram img {
                width: 18px; }
            header #navArea nav ul li ul li#ameblo {
              margin-top: -5px; }
              header #navArea nav ul li ul li#ameblo img {
                width: 24px; }
            header #navArea nav ul li ul li#line {
              margin-top: -8px; }
  header #navArea.navNarrow {
    height: 55px;
    padding-top: 18px; }
    header #navArea.navNarrow h1 img {
      width: 170px; }

article {
  position: relative; }

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

footer {
  padding: 120px 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 {
    position: absolute;
    background: center center / cover no-repeat fixed;
    height: calc(100% - 3vw);
    width: 94%;
    margin: 0 3%; }
    body#home header #slider li img {
      display: none; }
    body#home header #slider li:nth-of-type(1) {
      background-image: url(../images/main_3.jpg); }
    body#home header #slider li:nth-of-type(2) {
      background-image: url(../images/main_2.jpg); }
    body#home header #slider li:nth-of-type(3) {
      background-image: url(../images/main_4.jpg); }
    body#home header #slider li:nth-of-type(4) {
      background-image: url(../images/main_1.jpg); }
  body#home header #slider_button {
    position: absolute;
    z-index: 100;
    bottom: calc(3vw + 15px);
    left: calc(50% - 43px); }
    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;
    margin-left: auto;
    margin-right: auto;
    top: calc(50vh - 72px);
    color: #ffffff;
    font-size: 19px;
    font-size: 1.9rem;
    letter-spacing: 5px;
    line-height: 2.3em;
    padding-top: 32px;
    width: 529px;
    height: 145px;
    background: url("../images/frame_slide.png") top left/100% 100% no-repeat;
    text-shadow: 0px 0px 40px #999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: bold; }

body#home #message {
  position: relative; }
  body#home #message .top {
    background: url("../images/image_message.png") center center/cover no-repeat;
    height: 0px; }
  body#home #message .bottom {
    background: url("../images/bg_message.png") top left/80px 140px repeat;
    height: 890px;
    opacity: 0.6; }
  body#home #message .text {
    text-align: center;
    position: absolute;
    top: 80px;
    left: calc(50% - 365px);
    background: url("../images/bg_octagon.png") top left/100% 100% no-repeat;
    width: 730px;
    height: 730px;
    padding-top: 140px;
    margin-left: auto;
    margin-right: auto; }
    body#home #message .text h2 {
      margin-bottom: 50px; }
      body#home #message .text h2 img {
        width: 215px;
        height: auto; }
    body#home #message .text p {
      line-height: 2.7em;
      letter-spacing: 1px;
      font-size: 14px;
      font-size: 1.4rem; }
    body#home #message .text .button a {
      margin-top: 50px; }

body#home #menu {
  padding-top: 60px; }
  body#home #menu ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between; }
    body#home #menu ul li {
      width: 29vw; }
      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: 80px; }

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

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: 80px; }

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 {
    height: 25px; }
    body#home #salon table td:nth-of-type(2) {
      width: 25px;
      text-align: center; }

body#menu header {
  padding-top: 75px; }
  body#menu header #imageArea {
    height: 400px;
    background: url("../images/header_menu.png") center center/cover no-repeat;
    padding-top: 150px; }

body#menu #monitorPrice {
  position: relative;
  border: 1px solid #db58b3;
  padding: 13px 20px;
  margin: 50px 3% 0px;
  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: 7px 15px;
  letter-spacing: 1px;
  line-height: 1.6;
  vertical-align: middle; }
  body#menu section table tr td:nth-of-type(n+1) {
    width: 35%; }
  body#menu section table tr td:nth-of-type(n+2) {
    width: 65%; }
  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 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 45px; }
  body#menu section.large ul.image li {
    width: 29vw; }
    body#menu section.large ul.image li img {
      width: 100%;
      height: auto; }

body#menu section.large .flow {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: relative; }
  body#menu section.large .flow .left {
    width: 45%; }
  body#menu section.large .flow .right {
    width: 50%; }
    body#menu section.large .flow .right table {
      position: absolute;
      bottom: 0px;
      width: 50%; }
    body#menu section.large .flow .right table.upper {
      position: absolute;
      top: 0px;
      width: 50%; }
  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 .text-small {
      font-size: 1.3rem;
      margin-top: 15px; }
    body#menu section.large .flow ul.list > li .text-small__list {
      text-indent: -0.6em;
      margin-left: 0.6em; }
    body#menu section.large .flow ul.list > li .caption {
      margin-top: 10px; }

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

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

body#menu .column {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch; }
  body#menu .column section {
    width: 29vw;
    margin-left: 3.5vw; }
    body#menu .column section:nth-of-type(1) {
      margin-left: 0; }
    body#menu .column section div.image {
      margin-bottom: 40px; }
      body#menu .column section div.image img {
        width: 100%; }
    body#menu .column section table {
      width: 100%;
      margin-bottom: 40px; }
      body#menu .column section table.nomonitor {
        margin-bottom: 68px; }
    body#menu .column section .description {
      padding: 20px 25px; }

body#about header {
  padding-top: 75px; }
  body#about header #imageArea {
    height: 400px;
    background: url("../images/header_about.png") center center/cover no-repeat;
    padding-top: 150px; }

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 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 30px; }
  body#about section ul.image li {
    width: 29vw; }
    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: 2.2em;
  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 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between; }
  body#about section #profile_inner #profile_image {
    width: 29vw; }
    body#about section #profile_inner #profile_image img {
      width: 100%; }
  body#about section #profile_inner #profile_text {
    width: 61vw;
    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 {
  padding-top: 75px; }
  body#contact header #imageArea {
    height: 400px;
    background: url("../images/header_contact.png") center center/cover no-repeat;
    padding-top: 150px; }

body#contact article {
  width: 680px;
  margin: 0 auto;
  margin-top: 60px; }
  body#contact article ul.guide {
    margin-bottom: 25px; }
    body#contact article ul.guide li {
      margin-top: 15px;
      letter-spacing: 0.5px; }
      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: 60px;
    background-color: #fafafa;
    padding: 20px; }
    body#contact article ul.caution li {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 1.6em;
      margin-top: 10px;
      text-indent: -0.5em;
      margin-left: 0.5em;
      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 {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 30px; }
    body#contact article div.section p.title {
      width: 150px;
      margin-top: 11px;
      letter-spacing: 1.5px;
      font-size: 13px;
      font-size: 1.3rem; }
      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: 530px; }
    body#contact article div.section p.form.half {
      width: 250px; }
  body#contact article hr {
    margin-bottom: 30px;
    border: none; }
  body#contact article input:focus,
  body#contact article select,
  body#contact article textarea {
    outline: 0; }
  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: 35px;
    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: 35px;
    width: 250px;
    background: #fafafa url(../images/cursol_select.png) right 8px top 9px no-repeat; }
  body#contact article span.wpcf7-list-item {
    position: relative;
    display: block;
    line-height: 1.6;
    margin-left: 0px; }
    body#contact article span.wpcf7-list-item:nth-of-type(n+2) {
      margin-top: 20px; }
  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: -4px;
    left: 6px;
    width: 7px;
    height: 16px;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    border-bottom: 3px solid #777;
    border-right: 3px solid #777; }
  body#contact article textarea {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    font-size: 1.4rem; }
  body#contact article span.wpcf7-not-valid-tip {
    display: block;
    margin-top: 5px;
    color: #ff0000;
    font-size: 12px;
    font-size: 1.2rem; }
  body#contact article div.wpcf7-response-output {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 50px;
    padding: 15px 20px;
    letter-spacing: 0.3px;
    line-height: 1.6em; }
  body#contact article div#confirm {
    display: flex;
    flex-flow: row nowrap;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto; }
    body#contact article div#confirm input[type="submit"],
    body#contact article div#confirm input[type="button"] {
      background-color: #555;
      color: #fff;
      letter-spacing: 0.5px;
      border-radius: 0px;
      font-size: 14px;
      font-size: 1.4rem;
      padding: 10px 20px;
      margin-right: 15px;
      cursor: pointer;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none; }

.banner_16type_color {
  width: 275px; }

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

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

.u-mt-40px-pc {
  margin-top: 40px; }

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

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