@charset "UTF-8";
/*
STUDIO UP - 2023 exem02 css -
Last Updated: 2025.02.18
Version: 2.3.1
Author: Minako Murayama
*/
/*===============================

reset.css

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
}

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 {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*
Added by webdesign-trends
https://webdesign-trends.net/entry/8137
*/
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

/* a reset */
a {
  text-decoration: none;
  color: initial;
}
a:active {
  color: unset;
}
a:focus {
  outline: none;
}

/*===============================
body&common
================================*/
@media screen and (max-width: 767px) {
  /*SP*/
  html {
    font-size: 2.666vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /*pc*/
  html {
    font-size: 2.604vw;
  }
}
@media screen and (min-width: 1025px) {
  /*pc*/
  html {
    font-size: 166%;
  }
}
/*body*/
body {
  font-size: 1.6rem;
  font-family: Helvetica, sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: rgba(0, 0, 0, 0.87);
  overflow-wrap: break-word;
  word-wrap: break-word;
  background-color: #FFF;
}

/*common*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

li {
  list-style: none;
}

.anchor {
  padding-top: 20%;
  margin-top: -20%;
}

p {
  line-height: 1.4;
}

a {
  color: #026fca;
}

/*===============================
header
================================*/
/* drawermenu source: https://knoweb.net/html-css/css/responsive-hamburgermenu/ */
#header, nav.globalMenuSp, footer {
  font-size: 2.666vw;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: rgba(0, 0, 0, 0.87);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#header {
  background-color: #333333;
  position: fixed;
  top: 0;
  height: 59px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1001;
  max-width: 100vw;
}
#header img {
  max-width: 100%;
  height: auto;
}

.header_logo {
  width: 31.8666666667%;
  max-width: 120px;
  margin-left: 8%;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 1001;
  right: 10px;
  top: 6px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger::before {
  content: "";
  display: block;
  width: 1px;
  height: 59px;
  background-color: #000000;
  position: absolute;
  top: -6px;
  left: -10px;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 6px;
  background: #FFF;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  opacity: 0;
  display: none;
}
nav.globalMenuSp.active {
  opacity: 100;
  overflow-y: scroll;
  height: 100%;
  display: block;
  -webkit-animation: menuShow 0.6s linear 0s;
          animation: menuShow 0.6s linear 0s;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  padding-top: 55px;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  background: #333;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 0.6em 0;
  text-decoration: none;
  font-size: 1.4em;
  text-align: left;
  padding-left: 1.5em;
  padding-right: 1em;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  nav.globalMenuSp {
    width: 52.0833333333vw;
    max-width: 500px;
    font-size: 12px;
  }
}
@media screen and (min-width: 1367px) {
  nav.globalMenuSp {
    font-size: 0.5rem;
  }
}
@-webkit-keyframes menuShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes menuShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*newheader*/
.header-webrsv, .header-tel {
  display: block;
  position: fixed;
  z-index: 1001;
  top: 6px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  right: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: 1px;
}

.header-webrsv {
  right: 70px;
  background-image: url(https://www.studioup.jp/wordpress/wp-content/uploads/webrsv84-84bgn.png);
}

.header-tel {
  right: 130px;
  background-image: url(https://www.studioup.jp/wordpress/wp-content/uploads/tel84-84bgn.png);
}

.header-webrsv:before, .header-tel:before {
  content: "";
  display: block;
  width: 1px;
  height: 55px;
  background-color: #000000;
  position: absolute;
  top: -6px;
  left: -10px;
}

.header-webrsv a, .header-tel a {
  display: block;
  width: 100%;
  height: 100%;
}

/*===============================
main
================================*/
/* wrapper */
.wrapper {
  margin-top: 59px;
  padding-top: 2px;
}
@media screen and (min-width: 769px) {
  .wrapper {
    max-width: 1024px;
    margin: 59px auto 0;
  }
}

/*main*/
#mainContent {
  margin-top: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.mv {
  margin-bottom: 1.5rem;
}

/* topmenubanner */
.topmenubanner ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.topmenubanner ul li {
  list-style: none;
  width: 48%;
  margin: 0 0.5%;
}
.topmenubanner ul li img {
  width: 100%;
}

/* exam02maincontent */
.exam02maincontent {
  margin: 0 1rem;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  /* toptext */
  /*perfect*/
  /*standard*/
  /*standard.photoonly*/
  /*standard*/
  /*extra*/
  /*miraicompass*/
  /*qa*/
}
.exam02maincontent p {
  text-align: left;
}
.exam02maincontent p.text-center {
  text-align: center;
}
.exam02maincontent img {
  width: 100%;
}
.exam02maincontent.toptext h2.toptitle {
  margin-top: 1rem;
  font-size: 1.9rem;
  font-weight: bold;
  padding-left: 0.5rem;
  border-bottom: 0.3rem solid #dedede;
  padding-bottom: 0.2rem;
  margin-bottom: 0.7rem;
}
@media only screen and (max-width: 360px) {
  .exam02maincontent.toptext h2.toptitle {
    font-size: 2rem;
  }
}
.exam02maincontent.toptext p.toptitlebottom {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.exam02maincontent.toptext p.toptitlebottom span {
  color: red;
}
.exam02maincontent.toptext .contenedor {
  display: table;
  position: relative;
  margin-bottom: 2rem;
}
.exam02maincontent.toptext .contenedor input {
  visibility: hidden;
}
.exam02maincontent.toptext .contenedor label {
  position: absolute;
  bottom: -0.8em;
  display: block;
  font-size: 0.9em;
  padding: 0.2em 1rem;
  right: 0;
  background: #aaa;
  box-shadow: -0.5rem 0 white;
  color: white;
  z-index: 999;
  cursor: pointer;
  text-transform: uppercase;
}
.exam02maincontent.toptext .contenedor label:before {
  content: "続きを読む";
}
.exam02maincontent.toptext .contenedor input:checked + label:before {
  content: "閉じる";
}
.exam02maincontent.toptext .contenedor input[type=checkbox]:checked ~ .expand {
  max-height: 80rem;
}
.exam02maincontent.toptext .contenedor input[type=checkbox]:checked ~ .expand:before {
  opacity: 0;
}
.exam02maincontent.toptext .contenedor .expand {
  max-height: 7.6rem;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #aaa;
  transition: 0.5s;
  margin-top: -1.6rem;
}
.exam02maincontent.toptext .contenedor .expand::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
  transition: 1s;
}
.exam02maincontent.perfect {
  font-family: "Noto Sans JP", sans-serif;
  border: 3px solid #a98450;
  width: 92%;
  margin: 0 auto;
}
.exam02maincontent.perfect .perfect_title {
  background-color: #a98450;
  padding: 2% 2.5% 4%;
}
.exam02maincontent.perfect .perfect_title h2 {
  font-size: 2.35rem;
  line-height: 1.2;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.exam02maincontent.perfect .perfect_title h2 span {
  font-size: 1.8rem;
}
.exam02maincontent.perfect .perfect_title h2 span:first-of-type {
  font-weight: bold;
}
.exam02maincontent.perfect .perfect_title h2 span:nth-of-type(2) {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .exam02maincontent.perfect .perfect_title h2 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.exam02maincontent.perfect .perfect_body {
  font-size: 1.8rem;
  color: #333333;
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.exam02maincontent.perfect .perfect_body .c_red {
  background-color: #e10404;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  width: 28%;
  height: auto;
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.exam02maincontent.perfect .perfect_body .c_red .c_red_in {
  padding: 50%;
  position: relative;
  width: 100%;
  height: 100%;
}
.exam02maincontent.perfect .perfect_body .c_red .c_red_in .c_red_in_text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.exam02maincontent.perfect .perfect_body .c_red .c_red_in .c_red_in_text p {
  position: relative;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-size: 1.8rem;
}
.exam02maincontent.perfect .perfect_body ul {
  margin-top: 1rem;
}
.exam02maincontent.perfect .perfect_body ul li {
  font-size: 1.6rem;
  line-height: 1.4;
  list-style: none;
}
.exam02maincontent.perfect .perfect_body ul li.perfect_price {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2.5%;
}
.exam02maincontent.perfect .perfect_body ul li span {
  color: #e10404;
}
.exam02maincontent.perfect .perfect_body ul li a {
  font-size: 1.5rem;
  color: #333333;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.exam02maincontent.perfect .perfect_body p.perfect_price {
  width: 68%;
  margin-top: 1rem;
}
.exam02maincontent.perfect .perfect_body p:nth-of-type(2) {
  width: 48%;
  margin-bottom: 0.5rem;
}
.exam02maincontent.perfect a.plan_reserve {
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  display: block;
  position: relative;
  background-color: #a98450;
  padding: 1.5rem 2rem;
}
.exam02maincontent.perfect a.plan_reserve::after {
  content: "";
  background: url(https://www.studioup.jp/wordpress/wp-content/themes/exam02/2022/img/img_arrows_3.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  width: 5.7rem;
  height: 3.4rem;
}
.exam02maincontent.standard {
  font-family: "Noto Sans JP", sans-serif;
  border: 3px solid #0d76b8;
  width: 92%;
  margin: 1.6rem auto 0;
}
.exam02maincontent.standard .standard_title {
  background-color: #0d76b8;
  padding: 2% 2.5% 4%;
}
.exam02maincontent.standard .standard_title h2 {
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.exam02maincontent.standard .standard_title h2 span {
  font-size: 1.8rem;
  font-weight: normal;
}
.exam02maincontent.standard .standard_body {
  font-size: 1.8rem;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.exam02maincontent.standard .standard_body ul {
  margin-top: 1rem;
}
.exam02maincontent.standard .standard_body ul li {
  font-size: 1.6rem;
  line-height: 1.4;
}
.exam02maincontent.standard .standard_body .standard_price {
  width: 66%;
  margin-top: 1rem;
}
.exam02maincontent.standard .standard_body p:nth-of-type(3) {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  margin-bottom: 2rem;
}
.exam02maincontent.standard a.plan_reserve {
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  display: block;
  position: relative;
  background-color: #0d76b8;
  padding: 1.5rem 2rem;
}
.exam02maincontent.standard a.plan_reserve::after {
  content: "";
  background: url(https://www.studioup.jp/wordpress/wp-content/themes/exam02/2022/img/img_arrows_3.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  width: 5.7rem;
  height: 3.4rem;
}
.exam02maincontent.standard.photoonly {
  border: 3px solid #98c72d;
}
.exam02maincontent.standard.photoonly .standard_title {
  background-color: #98c72d;
}
.exam02maincontent.standard.photoonly .standard_title h2 {
  font-size: 2rem;
}
.exam02maincontent.standard.photoonly .standard_body img.plan_image {
  width: 93.3130699088%;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}
.exam02maincontent.standard.photoonly .standard_body .standard_price {
  padding-bottom: 1rem;
  margin-top: 1.5rem;
}
.exam02maincontent.standard.photoonly a.plan_reserve {
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  display: block;
  position: relative;
  background-color: #98c72d;
  padding: 1.5rem 2rem;
}
.exam02maincontent.standard.photoonly a.plan_reserve::after {
  content: "";
  background: url(https://www.studioup.jp/wordpress/wp-content/themes/exam02/2022/img/img_arrows_3.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  width: 5.7rem;
  height: 3.4rem;
}
.exam02maincontent.standard.photoonly a.plan_reserve {
  font-size: 1.85rem;
}
.exam02maincontent.extra {
  margin-top: 2.75rem;
}
.exam02maincontent.extra h2.hairstyle {
  font-size: 2rem;
  color: #a98450;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 0.2rem solid #a98450;
  margin: 0 4.5%;
}
.exam02maincontent.extra > img {
  display: block;
  width: 91%;
  margin: 1rem auto 0.5rem;
}
.exam02maincontent.extra p {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}
.exam02maincontent.extra .c-banner {
  margin: 2% auto;
  width: 97%;
}
.exam02maincontent.miraicompass {
  border: 2.5px solid #a98450;
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
}
.exam02maincontent.miraicompass h2 {
  font-size: 1.8rem;
  text-align: center;
  border-bottom: 2px solid #c3c3c3;
  padding-bottom: 0.5rem;
}
.exam02maincontent.miraicompass img {
  margin: 1.2rem auto;
  padding: 0 1.5rem;
}
.exam02maincontent.miraicompass p:first-of-type {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.exam02maincontent.miraicompass p:nth-of-type(2) {
  font-size: 1.5rem;
  font-weight: bold;
}
.exam02maincontent.access {
  max-width: 950px;
  margin: 5.75rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Noto serif JP";
}
.exam02maincontent.access h2 {
  margin-bottom: 0;
  font-size: 2.2rem;
}
.exam02maincontent.access > div {
  line-height: 0;
}
.exam02maincontent.access .map {
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .exam02maincontent.access .map {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .exam02maincontent.access .map {
    width: 54.9048316252vw;
    max-width: 719px;
  }
}
.exam02maincontent.access > p {
  text-align: center;
  margin-bottom: 2.3rem;
  line-height: 1.857;
}
.exam02maincontent.access > p.access_news {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
}
.exam02maincontent.access > p.access_news span {
  color: #ff0000;
}
.exam02maincontent.access .access_link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exam02maincontent.access .access_link p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴ Pro", "メイリオ", san-serif;
  font-weight: bold;
}
.exam02maincontent.access .access_link .btn05 {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .exam02maincontent.access .access_link .btn05:before {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-color: #fff;
    transition: 0.5s;
  }
  .exam02maincontent.access .access_link .btn05:hover {
    color: #3B4043;
  }
  .exam02maincontent.access .access_link .btn05:hover:before {
    left: 0;
  }
}
.exam02maincontent.access .access_link a.btnCommon {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  border: 1px solid #333;
  color: #fff;
  line-height: 1;
  padding: 1.142em 1.142em 1.142em 1.714em;
}
@media screen and (min-width: 768px) {
  .exam02maincontent.access .access_link a.btnCommon {
    transition: 0.5s;
  }
}
.exam02maincontent.access .access_link .btn_access {
  background-color: #333;
}
.exam02maincontent.access .access_link .btn_access a {
  color: #fff;
}
.exam02maincontent.access .access_link .btn_access a .btn_hover {
  width: 2.6666666667vw;
  height: 2.3333333333vw;
  margin-left: 0.628em;
  position: absolute;
  bottom: 1.8rem;
  opacity: 0;
}
.exam02maincontent.access .access_link .btn_access a::after {
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.4 7.5'%3E%3Cpath fill='%23fff' d='M4.925 7.225c-.1 0-.3-.1-.4-.2-.3-.2-.3-.6 0-.8l2.5-2.5-2.5-2.5c-.2-.2-.2-.6 0-.8.2-.2.6-.2.8 0l2.9 2.9c.2.2.2.6 0 .8l-2.9 2.9c-.1.2-.3.2-.4.2zm-3.7-.2l2.9-2.9c.2-.2.2-.6 0-.8l-2.9-2.9c-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8l2.5 2.5-2.5 2.5c-.2.2-.2.6 0 .8.1.1.3.2.4.2s.3 0 .4-.2z' /%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.6666666667vw;
  height: 2.3333333333vw;
  margin-left: 0.628em;
}
@media screen and (min-width: 768px) {
  .exam02maincontent.access .access_link .btn_access a {
    font-size: 1.3rem;
    padding: 1.269em 1.846em 1.269em 2.461em;
  }
  .exam02maincontent.access .access_link .btn_access a::after {
    width: 1.0666666667vw;
    height: 0.9333333333vw;
    margin-bottom: 0.1rem;
    margin-left: 1.365em;
  }
  .exam02maincontent.access .access_link .btn_access a:hover {
    border-color: #3B4043;
  }
  .exam02maincontent.access .access_link .btn_access a:hover .btn_hover {
    opacity: 1;
    transition: 0.5s;
  }
  .exam02maincontent.access .access_link .btn_access a:hover .btn_hover::after {
    opacity: 0;
    transition: 0.5s;
  }
  .exam02maincontent.access .access_link .btn_access a .btn_hover {
    bottom: 1.8rem;
    width: 1.0666666667vw;
    height: 0.9333333333vw;
    margin-bottom: 0.1rem;
    margin-left: 1.365em;
  }
}
.exam02maincontent.qa {
  margin-top: 10%;
}
.exam02maincontent.qa h2 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  color: #845e39;
  margin-top: 5%;
}
.exam02maincontent.qa h2 img {
  width: 3.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  margin-top: -0.5rem;
}
.exam02maincontent.qa h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #CCC;
  line-height: 1.5;
  color: #845e39;
  margin-top: 3%;
  margin-bottom: 1%;
}
.exam02maincontent.qa p {
  margin: 3%;
}
@media only screen and (min-width: 750px) {
  .exam02maincontent.qa p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.exam02maincontent.qa p .sentoubrown {
  color: #845e39;
  font-weight: bold;
}
.exam02maincontent.qa p img {
  max-width: 100%;
  width: auto;
}
.exam02maincontent.qa p img.meganegirl {
  width: 60%;
  max-width: 353px;
  border: 1px solid #ccc;
}

/*option*/
#option {
  margin-top: -20%;
}
#option .optionlist {
  position: relative;
  padding-top: 7%;
  margin-bottom: 8%;
}
#option .optionlist .optionlisttoptext {
  position: absolute;
  right: 2%;
  top: 3%;
  font-size: 1.1rem;
}
#option .optionlist ul {
  display: flex;
  width: 97%;
  margin: 0 auto;
}
#option .optionlist ul li {
  font-size: 1.6rem;
  border: 1px solid #e5e7e1;
  color: #464645;
  list-style: none;
  line-height: 1.3;
  padding: 3% 2%;
  word-wrap: break-word;
}
#option .optionlist ul li.option {
  width: 70%;
  background-color: #eff3e7;
}
#option .optionlist ul li.price {
  width: 30%;
  padding-left: 5%;
}
#option .optionlist ul li.note {
  display: none;
}
#option .optionlist ul li.th {
  background-color: #313131;
  color: #FFF;
  text-align: center;
}
#option .optionlist ul li.th.price {
  padding-left: 3%;
}
@media only screen and (max-width: 360px) {
  #option .optionlist .optionlisttoptext {
    font-size: 1.4rem;
    top: 2%;
  }
  #option .optionlist ul li {
    font-size: 1.5rem;
  }
}

.c-banner {
  display: block;
  margin: 4% auto 2%;
  width: 92%;
}
.c-banner img {
  width: 100%;
  vertical-align: middle;
}
.c-banner.relocate {
  display: block;
  margin: 6% auto 6%;
  width: 88%;
}

.link_gallery {
  margin-top: 0;
}

/*fixedMaruBox*/
#fixedMaruBox {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0%;
  height: 22.1333333333vw;
  z-index: 999;
  width: 100%;
  text-align: center;
  background-color: #fff;
}
#fixedMaruBox p {
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 1%;
  padding-bottom: 1%;
  color: #333333;
  font-family: "Noto Serif JP", serif;
}
#fixedMaruBox a {
  display: inline-block;
  width: 32%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #fixedMaruBox {
    max-width: 768px;
    max-height: 170px;
    right: 50%;
    transform: translate(50%, 0);
  }
  #fixedMaruBox p {
    font-size: 1.2rem;
  }
}

/*===============================
footer
================================*/
#sns {
  text-align: center;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 769px) {
  #sns {
    max-width: 1024px;
    margin: 0 auto 0.2rem;
  }
}

section.bg-w {
  background: #FFF;
}

#sns a {
  display: inline-block;
  width: 9.4%;
  height: auto;
  margin-right: 1.8rem;
}
#sns a:last-of-type {
  margin-right: 0;
}
#sns a.sns_icon_x {
  width: 8%;
}

footer {
  background-color: #418dae;
  color: #FFF;
  padding-top: 2.43rem;
  width: 100%;
  text-align: center;
  line-height: 1.8;
}
footer a {
  color: #FFF;
  text-decoration: none;
}
footer a:hover {
  opacity: 0.5;
}

.accessmap {
  margin: 1.75rem auto 2.63rem;
  width: 92%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  max-width: 750px;
}
.accessmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

footer h2 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 0.3rem;
}
footer h2.shoptitle {
  font-weight: bold;
  margin-top: 0.3rem;
}
footer .accesstext {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.4em;
  letter-spacing: 0.02em;
  margin-bottom: 1.46rem;
}
footer .accesstext.hrtop {
  margin-bottom: 1.95rem;
}
footer hr {
  margin: 0 3%;
  border-top: #FFF solid 1px;
  opacity: 0.8;
  margin-bottom: 1.46rem;
}
footer .copyright {
  margin-top: 2.53rem;
  padding-bottom: 9.37rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.6em;
}
@media screen and (min-width: 769px) {
  footer .copyright {
    padding-bottom: 170px;
  }
}

@media screen and (min-width: 1367px) {
  footer h2 {
    font-size: 0.96rem;
  }
}
@media screen and (min-width: 1367px) {
  footer .accesstext {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1367px) {
  footer .copyright {
    font-size: 0.75rem;
  }
}
/*logo img*/
.footer_logo_studioup {
  width: 35.4929577465%;
  height: auto;
  max-width: 252px;
}

.footer_logo_phototakano {
  fill: #fff;
  width: 56vw;
  max-width: 19rem;
  height: auto;
}

/*===============================
remodal
================================*/
.imgbox img {
  width: 100%;
}

.remodal {
  top: 0;
  left: 0;
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 2%;
  width: 96%;
}
.remodal h2 {
  font-size: 1.9rem;
  line-height: 1.2;
  text-align: center;
  color: #4e3420;
  margin-top: 9%;
  margin-bottom: 1rem;
  padding-bottom: 2%;
}
@media screen and (min-width: 769px) {
  .remodal h2 {
    font-size: 38px;
  }
}
.remodal h2 span {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .remodal h2 span {
    font-size: 32px;
  }
}
.remodal h2 img {
  width: 7%;
  margin-right: 1%;
  vertical-align: middle;
  margin-top: -2%;
}
.remodal .komadobutton {
  margin-top: 5%;
  margin-bottom: 10%;
  display: flex;
  justify-content: space-around;
}
.remodal .komadobutton a {
  display: block;
  width: 34%;
}
.remodal .komadobutton a:nth-of-type(3) {
  width: 28%;
}
.remodal .txtbox {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .remodal .txtbox {
    font-size: 32px;
  }
}
.remodal .txtbox span {
  color: #f70602;
}
.remodal.hairset-change h2 {
  font-size: 1.4rem;
  color: #513824;
}
@media screen and (min-width: 769px) {
  .remodal.hairset-change h2 {
    font-size: 28px;
  }
}
.remodal.hairset-change p {
  color: #513824;
  font-size: 1.3rem;
  width: 94%;
  margin: 0 auto;
}
@media only screen and (max-width: 360px) {
  .remodal.hairset-change p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .remodal.hairset-change p {
    font-size: 26px;
  }
}
.remodal.hairset-change p.hairset4photos {
  text-align: center;
  width: 100%;
}
.remodal.hairset-change p.hairset4photos img {
  width: 90%;
  margin-top: 2%;
}
.remodal.hairset-change p.hairsettext {
  line-height: 1.6;
  margin: 4% auto;
  font-weight: bold;
}
.remodal.remodal_calendar {
  padding: 35px 0;
}
.remodal.remodal_calendar h2 {
  border-bottom: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.remodal.remodal_calendar h2 img {
  width: 100%;
  margin-right: 0;
  margin-top: 0;
}
.remodal.remodal_calendar .txtbox {
  margin-left: 20px;
  margin-right: 20px;
}
.remodal.remodal_calendar .txtbox-top {
  font-size: 1.55rem;
  font-family: "Noto serif JP", serif;
  margin: 0 3%;
  padding: 2% 1% 2% 3%;
  text-align: left;
  border: 0.45rem solid #e1dddd;
}
@media screen and (min-width: 769px) {
  .remodal.remodal_calendar .txtbox-top {
    font-size: 31px;
  }
}
.remodal.remodal_calendar .imgbox {
  width: 95%;
  margin: 0 auto;
}
.remodal.remodal_calendar .imgbox img {
  margin-top: 10%;
}
.remodal.remodal_calendar .komadobutton {
  margin-top: 15%;
  margin-left: 20px;
  margin-right: 20px;
}

.remodal-confirm, .remodal-cancel {
  font-size: 1.4rem;
  width: 32%;
  margin: 1rem 0 1.2rem;
  padding: 0.8rem 0;
}
@media screen and (min-width: 769px) {
  .remodal-confirm, .remodal-cancel {
    font-size: 28px;
  }
}

/*20230903*/
.exam02maincontent.perfect .perfect_body p.perfect_price.-pp2023 {
  width: 94.8328267477%;
  margin-top: 2.5rem;
}
.exam02maincontent.perfect .perfect_body p.perfect_price.-pp2024 {
  width: 94.8328267477%;
}
.exam02maincontent.perfect .perfect_body p.perfect_price.-pp2024:first-of-type {
  margin-top: 1.5rem;
}
.exam02maincontent.perfect .perfect_body p.perfect_price.-pp2024:nth-of-type(2) {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.exam02maincontent.perfect .perfect_body a.-pp2023 {
  width: 94.5288753799%;
  margin: 1.5rem 0;
}

/*20240907*/
p.weekday-disct {
  display: block;
  width: 94.5288753799%;
  margin: 0 0 1.5rem;
}

.remodal.tomowari .-bgorange {
  margin-top: 2.5rem;
  background-color: #f69137;
  padding: 1.5rem;
  color: #FFFFFF;
}
.remodal.tomowari .-bgorange h2 {
  margin-top: 1rem;
  color: #FFFFFF;
  line-height: 1.3em;
  border: none;
}
.remodal.tomowari .-bgorange h2 span {
  font-weight: normal;
  font-size: 1.3rem;
}
.remodal.tomowari .-bgorange img.-imgtitle {
  width: 76.8421052632%;
}
.remodal.tomowari .-bgorange img.-img1000 {
  width: 100%;
}
.remodal.tomowari .-bgorange img.-imgchild {
  margin-top: 1rem;
  width: 46.5%;
}
.remodal.tomowari .-bgorange p {
  margin-top: 1rem;
  text-align: left;
  font-size: 1.4rem;
}
.remodal.tomowari p.-toptext {
  text-align: left;
  margin-top: 2rem;
  font-size: 1.5rem;
}
.remodal.tomowari p.-textcenter {
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
  font-size: 1.5rem;
}
.remodal.tomowari p.-textleft {
  font-size: 1.5rem;
  text-align: left;
  margin-top: 0.5rem;
}
.remodal.tomowari .-border {
  border-bottom: 1px solid #333;
  margin: 1rem 0 2rem;
}
.remodal.tomowari span.-red {
  color: #e00806;
}
.remodal.tomowari img.-imgscreen {
  margin-top: 1.5rem;
  width: 94.1666666667%;
  margin-bottom: 2rem;
}
/*# sourceMappingURL=style.css.map */