@charset "UTF-8";
:root {
  --main-color: #173468;
  /*メインカラー*/
  --sub-color: #2794b4;
  /*サブカラー*/
  --nav-font-color: #fff;
  /*グロナビフォントカラー*/
  --bg-on: #e9eef6;
  /*背景（薄いカラー指定）*/ }

/*ヘッダー*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: var(--main-color);
  z-index: 100; }
  #header h1 {
    text-indent: -9999px;
    overflow: hidden;
    height: 0; }
  #header #h_logo {
    float: left;
    padding-left: 20px;
    line-height: 80px; }
  #header #gnav {
    float: right;
    width: 70%; }
    #header #gnav ul {
      display: flex;
      width: 100%;
      align-items: center; }
      #header #gnav ul li {
        margin: 20px 0;
        width: 20%; }
        #header #gnav ul li a {
          position: relative;
          display: block;
          font-family: "Open Sans", sans-serif;
          font-size: 16px;
          font-size: 1.6rem;
          font-weight: 400;
          color: #fff;
          line-height: 1.2;
          text-align: center;
          border-left: solid 1px #ccc;
          text-align: center; }
          #header #gnav ul li a .ja {
            opacity: .6; }
          #header #gnav ul li a .en {
            display: none;
            color: #fff;
            position: relative; }
          #header #gnav ul li a:hover .ja {
            display: none; }
          #header #gnav ul li a:hover .en {
            display: inline; }
            #header #gnav ul li a:hover .en::after {
              background-color: #fff;
              bottom: -4px;
              content: "";
              height: 2px;
              left: 0;
              position: absolute;
              transform: scale(0, 1);
              transform-origin: center top;
              transition: transform .3s;
              width: 100%; }
            #header #gnav ul li a:hover .en:hover::after {
              transform: scale(1, 1); }
        #header #gnav ul li:last-child a {
          width: 150px;
          height: 40px;
          padding: 0;
          font-weight: 600;
          background-color: var(--sub-color);
          color: #fff;
          line-height: 40px;
          border-radius: 10px;
          font-size: 14px;
          font-size: 1.4rem;
          border-left: none; }
  #header .sp_contact {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-on);
    top: 0;
    right: 50px;
    z-index: 2;
    line-height: 45px;
    text-align: center; }
  #header #nav-toggle, #header #nav-toggle span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer; }
  #header #nav-toggle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--sub-color);
    top: 0;
    right: 0;
    z-index: 2; }
    #header #nav-toggle span {
      position: absolute;
      background: #fff;
      width: 30px;
      height: 2px;
      left: 0;
      right: 0;
      margin: auto; }
      #header #nav-toggle span:nth-of-type(1) {
        top: 15px; }
      #header #nav-toggle span:nth-of-type(2) {
        top: 0;
        bottom: 0; }
      #header #nav-toggle span:nth-of-type(3) {
        bottom: 15px; }
  #header .open #nav-toggle span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg); }
  #header .open #nav-toggle span:nth-of-type(2) {
    opacity: 0; }
  #header .open #nav-toggle span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg); }
  #header #sp_menu {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    background: var(--main-color);
    height: 50px; }
    #header #sp_menu .sp_logo {
      line-height: 50px;
      padding-left: 20px;
      width: 110px; }
  #header #sp_nav {
    display: none;
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 1;
    width: 160px;
    height: auto;
    background-color: rgba(23, 52, 104, 0.97);
    overflow: scroll; }
    #header #sp_nav #sp_navInner {
      padding: 30px 25px; }
    #header #sp_nav li a {
      display: block;
      text-decoration: none;
      color: #fff;
      padding: 15px 20px;
      border-top: solid 1px #4c5c81; }

@media screen and (max-width: 767px) {
  #header {
    height: 50px;
    line-height: 50px; }
    #header #sp_menu {
      display: block;
      line-height: 1; }
    #header #pc_menu {
      display: none; } }
#container.open {
  position: fixed;
  width: 100%; }

/*----------------------------------------------------
	メインビジュアル
----------------------------------------------------*/
#main_visual {
  position: relative;
  width: 100%;
  height: 700px;
  background: url("../img/main_visual_pc.jpg") no-repeat center;
  background-size: cover; }
  #main_visual .mv_txt {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    #main_visual .mv_txt p {
      text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
      color: #fff; }

@media (orientation: landscape) {
  #main_visual {
    height: 100vh; }
    #main_visual .mv_txt {
      width: 1000px; } }
@media screen and (max-width: 767px) {
  #main_visual {
    height: 480px !important;
    background-size: cover;
    margin-top: 50px; } }
/*----------------------------------------------------
	ページトップ
----------------------------------------------------*/
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-indent: -9999px;
  margin: 0; }

#pagetop a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: var(--main-color);
  transition: opacity .6s ease;
  border-radius: 5px; }

#pagetop a:hover {
  opacity: .3; }

#pagetop a::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF; }

@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 50px; }

  #pagetop a {
    width: 45px;
    height: 45px; }

  #pagetop a::before {
    top: 5px;
    width: 10px;
    height: 10px; } }
/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  border-top: 1px solid #fff;
  padding: 10px 0;
  color: var(--main-color);
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center; }
  #footer .copyright {
    float: left; }
  #footer .sns_list {
    float: right; }
    #footer .sns_list li {
      display: inline-block;
      padding: 0 5px; }

/*----------------------------------------------------
	iframe
----------------------------------------------------*/
@media screen and (max-width: 1280px) {
  .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative; }

  .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; } }
@media screen and (max-width: 767px) {
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%; }

  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important; } }
/*----------------------------------------------------
	共通デザイン
----------------------------------------------------*/
.bold {
  font-weight: 600; }

.key {
  color: var(--main-color); }

a.link_key {
  color: var(--main-color);
  text-decoration: underline; }

a.link_key:hover {
  text-decoration: none; }

.title_style01 {
  margin-bottom: 40px;
  font-size: 44px;
  font-size: 4.4rem;
  text-align: center;
  font-weight: 600;
  line-height: .9; }

.title_style01 span {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--sub-color); }

.title_style02 {
  margin-bottom: 30px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  border-bottom: 1px solid #ccc; }

.line_title {
  margin-bottom: 30px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 600;
  align-items: center;
  display: flex;
  justify-content: center; }

.line_title:before,
.line_title:after {
  background-color: var(--main-color);
  content: "";
  height: 1px;
  width: 60px; }

.line_title:before {
  margin-right: 15px; }

.line_title:after {
  margin-left: 15px; }

.pagetitle {
  padding: 140px 0 40px;
  background-color: var(--bg-on); }

@media screen and (max-width: 767px) {
  .title_style01 {
    margin-bottom: 25px;
    font-size: 28px;
    font-size: 2.8rem; }

  .title_style01 span {
    font-size: 14px;
    font-size: 1.4rem; }

  .title_style02 {
    margin-bottom: 10px;
    font-size: 22px;
    font-size: 2.2rem; }

  .line_title {
    font-size: 17px;
    font-size: 1.7rem;
    margin-bottom: 10px; }
    .line_title:before, .line_title:after {
      width: 30px; }

  .pagetitle {
    padding: 100px 0 10px;
    background-color: var(--bg-on); } }
/*----------------------------------------------------
	コンセプト
----------------------------------------------------*/
#business .business_list li {
  position: relative; }
  #business .business_list li:nth-child(odd) .image img {
    border-radius: 0 200px 200px 0; }
  #business .business_list li:nth-child(even) .image {
    margin: 0 0 0 auto;
    text-align: right; }
    #business .business_list li:nth-child(even) .image img {
      border-radius: 200px 0 0 200px; }

@media screen and (min-width: 767px) {
  #business .business_list li .image {
    position: absolute;
    width: 46%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  #business .business_list li:nth-child(odd) .image {
    left: 0; }
  #business .business_list li:nth-child(odd) h3, #business .business_list li:nth-child(odd) p {
    padding-left: 50%; }
  #business .business_list li:nth-child(even) .image {
    right: 0; }
  #business .business_list li:nth-child(even) h3, #business .business_list li:nth-child(even) p {
    padding-right: 50%; }
  #business .business_list h3 {
    padding-top: 100px; }
  #business .business_list p {
    padding-bottom: 100px; } }
@media screen and (max-width: 767px) {
  #business .business_list li {
    margin-bottom: 40px; }
    #business .business_list li h3 {
      text-align: center;
      font-size: 21px;
      font-size: 2.1rem; }
    #business .business_list li .image {
      margin-bottom: 10px !important; }
      #business .business_list li .image img {
        width: 100%;
        height: 180px;
        object-fit: cover; }
    #business .business_list li:nth-child(odd) .image {
      margin: 0 10px 10px 0 !important; }
    #business .business_list li:nth-child(even) .image {
      margin: 0 0 10px 10px !important; } }
/*----------------------------------------------------
	お知らせ
----------------------------------------------------*/
#products {
  background-color: var(--main-color);
  color: #fff; }
  #products .title_style01 span {
    color: #fff; }
  #products .products_list li {
    margin-bottom: 30px; }
    #products .products_list li .image img {
      border-radius: 40px 0 40px 0; }
  #products .more_btn {
    background-color: #fff;
    display: inline-block;
    width: 200px;
    height: 40px;
    padding: 0;
    margin: 30px 0 20px;
    font-weight: 600;
    color: var(--main-color) !important;
    line-height: 40px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    #products .more_btn:hover {
      opacity: .8; }

@media screen and (min-width: 767px) {
  #products .products_list {
    display: flex;
    flex-wrap: wrap; }
    #products .products_list li {
      width: 30%;
      margin-right: 5%; }
    #products .products_list li:nth-child(3n) {
      margin-right: 0; } }
@media screen and (max-width: 767px) {
  #products .products_list li {
    margin-bottom: 20px; }
    #products .products_list li h3 {
      font-size: 19px;
      font-size: 1.9rem; }
    #products .products_list li .image img {
      width: 100%;
      height: 180px;
      object-fit: cover; }
  #products .more_btn {
    margin: 20px 0 10px; } }
/*----------------------------------------------------
	よくある質問
----------------------------------------------------*/
#faq {
  background-color: var(--bg-on); }
  #faq .faq_list li {
    background-color: #fff;
    border-radius: 40px 0 40px 0;
    padding: 30px;
    margin-bottom: 20px; }
    #faq .faq_list li .faq_q {
      position: relative;
      padding: 10px 0 10px 60px;
      margin-bottom: 10px;
      min-height: 48px;
      font-weight: 600; }
      #faq .faq_list li .faq_q:before {
        display: block;
        content: 'Q';
        background-color: var(--sub-color);
        color: #fff;
        border-radius: 20px;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 22px;
        font-size: 2.2rem;
        font-weight: 600; }
    #faq .faq_list li .faq_a {
      position: relative;
      padding: 10px 0 10px 60px;
      margin-bottom: 10px;
      min-height: 48px; }
      #faq .faq_list li .faq_a:before {
        display: block;
        content: 'A';
        background-color: var(--main-color);
        color: #fff;
        border-radius: 20px;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 22px;
        font-size: 2.2rem;
        font-weight: 600; }

@media screen and (max-width: 767px) {
  #faq h2 img {
    width: 70px; }
  #faq .faq_list li {
    padding: 15px; }
    #faq .faq_list li .faq_q {
      background-size: 30px;
      padding: 0 0 5px 40px;
      min-height: 30px;
      margin-bottom: 5px; }
      #faq .faq_list li .faq_q:before {
        border-radius: 15px;
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 18px;
        font-size: 1.8rem; }
    #faq .faq_list li .faq_a {
      background-size: 30px;
      padding: 0 0 5px 40px;
      min-height: 30px; }
      #faq .faq_list li .faq_a:before {
        border-radius: 15px;
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 18px;
        font-size: 1.8rem; } }
/*----------------------------------------------------
	サロン情報
----------------------------------------------------*/
#company .company_wrap .image img {
  border-radius: 20px; }
#company .company_wrap table {
  border-top: 1px solid #ccc; }
  #company .company_wrap table th, #company .company_wrap table td {
    border-bottom: 1px solid #ccc; }

@media screen and (min-width: 767px) {
  #company .company_wrap {
    display: flex;
    justify-content: space-between; }
    #company .company_wrap .image {
      width: 49%; }
    #company .company_wrap table {
      width: 49%; } }
/*----------------------------------------------------
	お知らせ
----------------------------------------------------*/
#news.bgon {
  background-color: #f3f3f3; }
#news.page .news_list li {
  border-radius: 0;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 0;
  padding: 20px 20px; }
#news .news_list li {
  display: flex;
  padding: 15px 40px;
  background-size: 7px;
  background-color: #fff;
  color: #1f2048;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem; }
  #news .news_list li .up_ymd {
    width: 150px; }
  #news .news_list li .title a {
    color: var(--sub-color);
    text-decoration: underline; }
    #news .news_list li .title a:hover {
      text-decoration: none; }
#news .more_btn {
  background-color: var(--sub-color);
  display: inline-block;
  width: 200px;
  height: 40px;
  padding: 0;
  margin: 30px 0 20px;
  font-weight: 600;
  color: #fff;
  line-height: 40px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  #news .more_btn:hover {
    opacity: .8; }

@media screen and (max-width: 767px) {
  #news .news_list li {
    display: block;
    padding: 20px 20px;
    background-size: 6px;
    background-position: right 15px center;
    border-radius: 10px; }
    #news .news_list li .date {
      width: 100%;
      margin-bottom: 2px; }
    #news .news_list li span {
      display: block; } }
/*----------------------------------------------------
	お問い合わせ
----------------------------------------------------*/
#contact {
  /* ボタンにカーソルを当てたとき、ボタンを半透明にする */
  /* クリックで表示させるテキストを隠す */ }
  #contact.top {
    background-color: var(--main-color);
    color: #fff; }
  #contact h2 span {
    color: #fff; }
  #contact .form_wrap {
    padding: 50px 80px;
    background-color: #fff;
    color: var(--main-color);
    border-radius: 20px; }
    #contact .form_wrap table {
      font-size: 18px;
      font-size: 1.8rem; }
      #contact .form_wrap table th {
        position: relative;
        vertical-align: top; }
        #contact .form_wrap table th .required {
          position: absolute;
          right: 15px;
          top: 15px;
          background-color: var(--sub-color);
          color: #fff;
          font-size: 14px;
          font-size: 1.4rem;
          border-radius: 5px;
          padding: 2px 5px; }
      #contact .form_wrap table input[type=text],
      #contact .form_wrap table input[type=email],
      #contact .form_wrap table input[type=tel],
      #contact .form_wrap table textarea {
        width: 100%;
        vertical-align: middle;
        line-height: 30px;
        height: 36px;
        border: 1px solid #ccc;
        padding: 6px 1.2%;
        background-color: #fafafa;
        font-size: 100%;
        margin: 8px 0;
        border-radius: 5px; }
      #contact .form_wrap table textarea {
        height: auto;
        line-height: 1.5;
        min-height: 200px;
        resize: vertical; }
      #contact .form_wrap table .privacy_box {
        background-color: #eee;
        padding: 10px;
        height: 200px;
        overflow: scroll;
        margin: 8px 0;
        border-radius: 5px;
        font-size: 16px;
        font-size: 1.6rem; }
        #contact .form_wrap table .privacy_box dl dt {
          font-weight: 600;
          margin-bottom: 5px; }
        #contact .form_wrap table .privacy_box dl dd {
          margin-bottom: 20px; }
    #contact .form_wrap .mfp_element_submit {
      padding: 0 40px; }
  #contact .btn-container {
    text-align: center; }
  #contact button {
    background-color: #173468;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    display: inline-block;
    border-radius: 10px;
    height: 40px;
    padding: 5px 10px;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    text-align: center;
    min-width: 220px;
    border: none; }
  #contact button:hover {
    opacity: 0.7; }
  #contact .hidden {
    display: none; }
  #contact #sampleBtn-text {
    margin: 16px 0;
    font-size: 14px;
    color: red; }

@media screen and (max-width: 767px) {
  #contact .form_wrap {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px; }
    #contact .form_wrap table {
      font-size: 15px;
      font-size: 1.5rem; }
      #contact .form_wrap table th {
        padding: 0;
        vertical-align: middle; }
        #contact .form_wrap table th .required {
          top: 0;
          right: 0;
          font-size: 12px;
          font-size: 1.2rem;
          border-radius: 3px; }
      #contact .form_wrap table td {
        padding: 0 0 20px; }
        #contact .form_wrap table td label {
          display: inline-block; }
      #contact .form_wrap table .privacy_box {
        height: 150px;
        margin: 5px 0;
        font-size: 13px;
        font-size: 1.3rem; }
        #contact .form_wrap table .privacy_box dl dt {
          margin-bottom: 3px; }
        #contact .form_wrap table .privacy_box dl dd {
          margin-bottom: 10px; } }
/*----------------------------------------------------
	下層共通
----------------------------------------------------*/
#wrapper .pNav {
  padding: 5px 0; }
  #wrapper .pNav a {
    text-decoration: underline; }
    #wrapper .pNav a:hover {
      text-decoration: none; }

#wrapper.page {
  border-bottom: 1px solid #ccc; }

.pager {
  margin-top: 40px;
  text-align: center;
  clear: both; }

/*ページャーボタン*/
.pager a {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 3px 7px 2px;
  text-decoration: none;
  margin: 0 1px;
  border-radius: 3px; }

.pager a.current {
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
  padding: 3px 7px 2px;
  margin: 0 1px;
  text-decoration: none;
  border-radius: 3px; }

.pager a:hover {
  background: var(--main-color);
  color: #fff; }

.backORcloseBtn {
  text-align: center;
  margin-top: 50px; }

.detailUpfile {
  margin-top: 30px; }

.backORcloseBtn a {
  display: inline-block;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 3px 7px 2px;
  margin: 0 auto;
  border-radius: 3px; }
  .backORcloseBtn a:hover {
    background: var(--main-color);
    color: #fff; }

/*----------------------------------------------------
	お知らせ詳細
----------------------------------------------------*/
#detail i {
  font-style: italic; }
  #detail i span {
    font-style: italic; }
#detail b {
  font-weight: bolder; }
  #detail b span {
    font-weight: bolder; }
#detail ol {
  list-style-type: decimal;
  list-style-position: inside; }
#detail ul {
  list-style-type: disc;
  list-style-position: inside; }
#detail a {
  text-decoration: underline;
  color: var(--main-color); }
  #detail a:hover {
    text-decoration: none; }
