@charset "utf-8";

/*===============================

2020高校大学受験UP店
2023.08.07
ver1.8

【注意】保守運用性を高めるため、PC･SP共通で使用しています。
ベースがexam02なのでクラス名がexam02である部分がありますがバグではありません。

================================*/

/*===============================

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: 750px) {
  /*SP*/
  html {
    font-size: 2.666vw;
  }
}
@media screen and (min-width: 751px) {
  /*pc*/
  html {
    font-size: 125%;
  }
}
/*body*/
body {
    font-size: 1.6rem;
    line-height: 1.4;
    font-family: 'メイリオ', 'Meiryo','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
    color: rgba(0, 0, 0, 0.87);
    overflow-wrap: break-word;
    word-wrap: break-word;
    background-color: #FFF;
}

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

li {
    list-style: none;
}

p {
    line-height: 1.4;
}

a {
    color: #026fca;
}
.anchor {
    padding-top: 20%;
    margin-top: -20%;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.grayborder{
    margin-bottom: 1rem;
    position: relative;
}
.grayborder::after{
    content: "";
    display: block;
    width: calc(100%);
    height: 0.3rem;
    background-color: #e5e5e5;
    position: absolute;
    left: 0px;
    bottom: -1rem;
}
.aftergrayborder{
    margin-top: 2rem;
}


/*===============================
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: 59px auto 0;
    padding-top: 2px;
}
@media screen and (min-width: 769px) {
  .wrapper {
    max-width: 750px;
    margin: 59px auto 0;
  }

}

/*mainContent*/
#mainContent {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* topmenubanner */
.topmenubanner{
    margin-top: 0.5rem;
}
.topmenubanner ul{
	display: flex;
	justify-content: center;
	align-items: center;
}

.topmenubanner ul li{
	list-style: none;
    width: auto;
	margin: 0 0.5%;
}
.topmenubanner img{
    max-width: 350px
}

/* toptitle */
h2.toptitle{
    margin-top: 0.5rem;
    font-size: 2.3rem;
    font-weight: bold;
    padding-left: 0.5rem;
    border-bottom: 0.3rem solid #dedede;
    padding-bottom: 0.2rem;
    margin-bottom: 0.7rem;
}

.exam3maincontent h2.toptitle{
    font-size: 2.2rem;
    text-align: center;
    margin-top: 1rem;
}


/* exam3maincontent */

.exam3maincontent{
    margin: 0 1rem;
    font-family: 'メイリオ', 'Meiryo','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}

/* 続きを読む */

.contenedor {
    display: table;
    position: relative;
    margin-bottom: 2rem;
}

.expand {
    max-height: 7.5rem; /*見えている部分の高さ*/
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #aaa;
    transition: .5s;
    margin-top: -1.6rem;
}

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

.contenedor input {
    visibility: hidden;
}

.contenedor label {
    position: absolute;
    bottom: -.8em;
    display: block;
    font-size: .9em;
    padding: .20em 1rem;
    right: 0;
    background: #aaa;
    box-shadow:-0.5rem 0 white;
    color: white;
    z-index:999;
    cursor: pointer;
    text-transform: uppercase;
}

.contenedor label[for="leer"]:before,
.contenedor label[for="leer2"]:before{
    content: "続きを読む";
}

.contenedor input#leer:checked + label[for="leer"]:before,
.contenedor input#leer2:checked + label[for="leer2"]:before{
    content: "閉じる"
}

input[type=checkbox]#leer:checked ~ .expand,
input[type=checkbox]#leer2:checked ~ .expand{
    max-height: 1500px;
    background-color: rgba(255,255,255,0.7);
}

input[type=checkbox]#leer:checked ~ .expand:before,
input[type=checkbox]#leer2:checked ~ .expand:before{
    opacity: 0
}

p.toptitlebottom{
    line-height: 1.4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
p.toptitlebottom > a{
    color: #ea0404;
    font-weight: bold;
}

/* bxslider */

.bx-wrapper{
    box-shadow: none!important;
    border: none!important;
	border-right: 0.1rem solid #dedede!important;
    margin-bottom: 1.5rem!important;
}

.slideimg{
	left: 50%;
    transform: translateX(-50%);
}

/* selectbg */
.exam3maincontent.selectbg{
	text-align: center;
	margin-bottom: 3%;
}

.exam3maincontent.selectbg img{
	width: 90%;
	margin-bottom: 0.5rem;
	margin-left: auto;
    margin-right: auto;
}

/* anchor */
#standard,#perfect,#dataoption{
    margin-top: -61px;
    padding-top: 61px;
}
/* standard */

.exam02maincontent.standardblue{
	border: 1px solid #5bacb7;
	width: 98%;
    margin: 0 auto;
}

.standardtitle{
	background-color: #5bacb7;
    padding: 5% 2.5%;
	display: flex;
    flex-direction: column;
	height: 10rem;
    justify-content: center;
}

.standardtitle h2{
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFF;
    line-height: 1.5;
	text-align: center;
}

.standardtitle h3{
	font-weight: normal;
    font-size: 1.65rem;
	color: #FFF;
	text-align: center;
    line-height: 1.35;
}

.standardbody{
    background-image: url(https://www.studioup.jp/wordpress/wp-content/themes/exam3/2020/img/kd_standard_bg_sp-min.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FFF;
	position: relative;
	height: 45.1rem;
}

.standardpricebox{
	padding-top: 22rem;
}

.standardpricebox ul{
	display: flex;
    justify-content: center;
    align-items: center;
	width: 96%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
	flex-wrap: wrap;
}

.standardpricebox ul li{
	list-style: none;
	width: 50%;
    position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 2%;
}

.standardprice .number{
    background-color: #0d76b8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #FFF;
	width: 34.5%;
    height: auto;
}

.standardprice .number .number_in{
	padding: 50%;
    position: relative;
	width: 100%;
	height: 100%;
}

.standardprice .number .number_in_text{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.standardprice .number .number_in .number_in_text p{
    position: relative;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    line-height: 1;
	font-size: 2rem;
}

.standardprice .number .number_in .number_in_text p span{
    font-size: 1.5rem;
    margin-left: 0.1rem;
}

.standardprice .priceright{
    width: 63%;
    margin-left: 2%;
    text-align: left;
}

.standardprice .priceright p.line1small{
    font-size: 0.9rem;
    color: #00a0ea;
	letter-spacing: -0.05em;
	line-height: 1.5;
	text-shadow: #FFF 1px 1px 0, #FFF -1px -1px 0, #FFF -1px 1px 0, #FFF 1px -1px 0, #FFF 0px 1px 0, #FFF 0-1px 0, #FFF -1px 0 0, #FFF 1px 0 0;
    font-weight: bold;
}

.standardprice .priceright p.line2price{
    font-size: 2.7rem;
    color: #00a0ea;
    font-weight: bold;
    transform: scale(0.9, 1);
    text-shadow: #FFF 1px 1px 0, #FFF -1px -1px 0, #FFF -1px 1px 0, #FFF 1px -1px 0, #FFF 0px 1px 0, #FFF 0-1px 0, #FFF -1px 0 0, #FFF 1px 0 0;
	line-height: 1;
    transform: scale(0.8, 1);
    margin-left: -4.5%;
}

.standardprice .priceright p.line2price span{
    font-size: 2.1rem;
	margin-right: 0.1rem;
    margin-left: -0.3rem;
}

.standardprice .priceright p.line2price.narrow{
    font-size: 2.4rem;
}

.standardrsv{
	background-color: #5bacb7;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.standardrsv a,
.standardrsv a:visited{
	color: #FFF!important;
    width: 100%;
    display: block;
    height: auto;
    padding: 5%;
}

.standardrsv a p{
	text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.2;
	margin-left: 20%;
}

img.icon_3arrow{
    width: 13.5%!important;
    vertical-align: top!important;
	margin-left: 1%!important;
	display: inline-block!important;
}

/* standardtop */

.standardtoptext{
	position: absolute;
    top: -0.7rem;
    right: -0.3rem;
    color: #0d76b8;
    font-size: 1.05rem;
	text-shadow: #FFF 1px 1px 0, #FFF -1px -1px 0, #FFF -1px 1px 0, #FFF 1px -1px 0, #FFF 0px 1px 0, #FFF 0-1px 0, #FFF -1px 0 0, #FFF 1px 0 0;
    font-weight: bold;
}

/* standardbottom */

.standardpricebox ul li.standardbottomtext{
    width: 100%;
    display: block;
    color: #0d76b8;
    font-size: 1.5rem;
	margin-top: 2%;
    margin-bottom: 0;
	text-align: center;
}

/* standardoption */

.exam02maincontent.standardgray{
	border: 1px solid #a2a2a2;
    width: 98%;
    margin: 0.5rem auto 0;
    border-top: none;
}

.standardoptiontitle{
    background-image: url(https://www.studioup.jp/wordpress/wp-content/themes/exam3/2020/img/kd_standard_option_sp-min.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-height: 8.1rem;
    height: auto;
}

.standardoptiontitle h3{
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFF;
    padding: 5.5% 5% 5% 5%;
	text-align: center;
}

.standardoptioncontent ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.standardoptioncontent ul li{
	list-style: none;
	width: 92%;
	padding: 3% 0;
	color: #424242;
}

.standardoptioncontent ul li:nth-of-type(1),
.standardoptioncontent ul li:nth-of-type(3){
	border-bottom: 1px solid #424242;
}

/* li1 */

.standardoptioncontent ul li h4{
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.1;
	font-weight: bold;
}

.standardoptioncontent ul li h4 span{
	font-size: 2.1rem;
    font-weight: normal;
}

/* li2 */

.standardoptioncontent ul li img{
	width: 100%;
}

.standardoptioncontent ul li:nth-of-type(2){
	padding-bottom: 0;
}

/* li3&4 */

.standardoptioncontent ul li:nth-of-type(3){
	padding-top: 0;
}

.standardoptioncontent ul li:nth-of-type(3),
.standardoptioncontent ul li:nth-of-type(4){
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
	font-size: 1.7rem;
}

.standardoptioncontent ul li p.dataleft{
	width: 75%;
}

.standardoptioncontent ul li p.dataright{
	width: 25%;
	font-weight: bold;
}

/* li5 */

.standardoptioncontent ul li p.datasmallblue{
	font-size: 1.3rem;
    color: #0d76b8;
    text-align: right;
    line-height: 1.3;
	font-weight: bold;
}

/* standardoptiontop */

.standardoptiontoptext{
	position: absolute;
    top: 0.5rem;
    right: 0;
    color: #424242;
    font-size: 1.4rem;
}

/*sp-naminami*/

.sp-naminami{
	width: 100%;
	background-image: url(https://www.studioup.jp/wordpress/wp-content/themes/exam02/2020/img/line_naminami-min.png);
	background-size: contain;
	background-repeat: no-repeat;
	height: 1.2rem;
	margin: 0.8rem 0 0.4rem 0.4rem;
}

/* perfecttop */

h2.sp-perfecttop{
	font-size: 2.1rem;
	color: #a98450;
	text-align: center;
}

.exam02maincontent.perfecttop img{
	display: block;
	width: 97%;
	margin: 0.5rem auto;
}

.hairsetpopbuttongreen{
    background-image: url(https://www.studioup.jp/wordpress/wp-content/themes/exam02/2020/img/img_button_green_hairset-min.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-size: cover;
    width: 97%;
    height: 100%;
    max-height: 8.5rem;
	margin: 0.5rem auto 0;
}

.hairsetpopbuttongreen a{
	width: 100%;
    display: block;
    color: #FFF;
    font-size: 1.9rem;
    font-weight: bold;
}

.hairsetpopbuttongreen a p{
    line-height: 1.4;
    text-align: right;
    padding-top: 5%;
    padding-right: 4.5%;
    padding-bottom: 5%;
}

.exam02maincontent.perfecttop img.icon_3arrow{
	margin-top: 0;
}

/* perfect */

.exam02maincontent.perfectbrown {
    border: 1px solid #98c72d;
    width: 98%;
    margin: 0 auto;
}

.perfecttitle {
    background-color: #98c72d;
    padding: 3% 4%;
    display: flex;
    flex-direction: column;
}

.perfecttitle h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFF;
    line-height: 1.5;
	border-bottom: 1px #FFF solid;
	text-align: center;
}

.perfecttitle h2 span.plantitletoptext_small{
	font-size:1.4rem;
}

.perfecttitle h2 {
    font-size: 1.6rem;
    line-height: 1.1;
}

.perfecttitle h3 {
    font-weight: normal;
    font-size: 1.6rem;
    color: #FFF;
    line-height: 1.35;
	margin-top: 0.5rem;
	text-align: left;
}

.perfectbody {
    background-image: url(https://www.studioup.jp/wordpress/wp-content/themes/exam3/2020/img/kd_perfect_bg_sp-min.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FFF;
    height: 44.5rem;
}

.perfecttoptext {
    position: absolute;
    top: 0.6rem;
    right: -0.2rem;
    color: #424242;
    font-size: 1.05rem;
	text-shadow: #FFF 1px 1px 0, #FFF -1px -1px 0, #FFF -1px 1px 0, #FFF 1px -1px 0, #FFF 0px 1px 0, #FFF 0-1px 0, #FFF -1px 0 0, #FFF 1px 0 0;
    font-weight: bold;
}

.perfectprice .number {
    background-color: #0d76b8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #FFF;
    width: 34%;
    height: auto;
	border-radius: 50%;
}

.perfectprice .number .number_in {
    padding: 50%;
    position: relative;
	width: 100%;
	height: 100%;
}

.perfectprice .number .number_in_text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.perfectprice .number .number_in .number_in_text p {
    position: relative;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 2rem;
}

.perfectprice .number .number_in .number_in_text p span {
    font-size: 1.5rem;
    margin-left: 0.1rem;
}

.perfectprice .priceright {
    text-align: right;
	width: 61%;
}

.perfectprice .priceright p.line1small {
    font-size: 0.9rem;
    color: #424242;
    letter-spacing: -0.05em;
    line-height: 1.5;
	text-align: right;
    margin-right: 6%;
	text-shadow: #FFF 1px 1px 0, #FFF -1px -1px 0, #FFF -1px 1px 0, #FFF 1px -1px 0, #FFF 0px 1px 0, #FFF 0-1px 0, #FFF -1px 0 0, #FFF 1px 0 0;
    font-weight: bold;
}

.perfectprice .priceright p.line2price {
    font-size: 2.6rem;
    color: #0d76b8;
    font-weight: bold;
    text-shadow: #FFF 1px 1px 0, #FFF -1px -1px 0, #FFF -1px 1px 0, #FFF 1px -1px 0, #FFF 0px 1px 0, #FFF 0-1px 0, #FFF -1px 0 0, #FFF 1px 0 0;
    line-height: 1;
	text-align: right;
    transform: scale(0.9, 1);
}
.perfectprice .priceright p.line2price span {
    font-size: 2.1rem;
    margin-right: 0.1rem;
    margin-left: -0.3rem;
}

.perfectbody ul{
	display: flex;
	justify-content: space-between;
}

.perfectbody li{
	list-style: none;
}

.perfectbody li.perfectbodyleft{
	width: 44%;
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.perfectbody li.perfectbodyright{
	width: 55%;
	position: relative;
	margin-right: 1%;
}

.perfectbodyright ul{
	display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
	margin: 5% 0 0;
}

.perfectbody li.perfectprice{
	width: 100%;
	display: flex;
    justify-content: flex-end;
    align-items: center;
	margin-bottom: 2.5%;
}

.perfectprice .priceright p.line2price.narrow {
    font-size: 2.4rem;
}

.standardrsv,
.perfectrsv{
	background-color: #98c72d;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
}

.standardrsv{
	background-color: #5bacb7;
}

.standardrsv a,
.standardrsv a:visited,
.perfectrsv a,
.perfectrsv a:visited{
	color: #FFF;
    width: 100%;
    display: block;
    height: auto;
    padding: 5%;
}

.standardrsv a p,
.perfectrsv a p{
	text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
	margin-left: 20%;
}

.standardrsv .greencircle,
.perfectrsv .greencircle{
    position: absolute;
    left: 2%;
    background-color: #98c72d;
    border-radius: 50%;
    width: 63px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    line-height: 1.2;
}

.perfectrsv .greencircle{
    background-color: #5bacb7;
}


.perfectrsv img.icon_3arrow{
	margin-top: 1%;
}

.perfectbodyleft .perfectrsvsmall{
    color: #FFF;
    font-size: 10px;
    line-height: 1.1;
	box-sizing: border-box;
    height: 39px;
	margin-bottom: 3%;
    margin-left: -1px;
}

.perfectbodyleft .perfectrsvsmall a{
    color: #FFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
    line-height: 0;
    width: 100%;
    height: 39px;
}

.perfectbodyleft .perfectrsvsmall.green{
	background-color: #98c72d;
}

.perfectbodyleft .perfectrsvsmall.brown{
	background-color: #5bacb7;
}

.exam02maincontent .perfectbodyleft .perfectrsvsmall img.lamp{
	width: 16%;
    margin-left: 2%;
    margin-top: -2%;
}

.perfectbodyleft .perfectrsvsmall p{
	line-height: 1.2;
	display: block;
    width: 77%;
    margin-top: 2%;
}

/* rental */

.exam02maincontent.perfectbottom{
	width: 92%;
    margin: 0 auto;
}

.perfectbottombanner{
    background-repeat: no-repeat;
    background-size: 100%;
	margin: 1.5% 0;
	box-sizing: border-box;
	padding: 3% 6% 0;
    height: 93px;
}
.perfectbottombanner.rental{
    background-image: url(https://www.studioup.jp/wordpress/wp-content/themes/exam02/2020/img/img_perfect_banner_rental-min.png);
}

.perfectbottombanner.super{
    background-image: url(https://www.studioup.jp/wordpress/wp-content/themes/exam02/2020/img/img_perfect_banner_super-min.png);
}

.perfectbottombanner h3{
    font-size: 1.7rem;
    border-bottom: 1px solid;
    line-height: 1.2;
    text-align: center;
}

.perfectbottombanner.rental h3{
	width: 74%;
}

.perfectbottombanner.super h3{
    width: 79%;
    margin-left: -2%;
}

.perfectbottombanner h3 span{
	font-size: 1.5rem;
}

.perfectbottombanner p{
	font-size: 1.5rem;
    padding: 1.5% 2% 0;
    line-height: 1.2;
}

.perfectbottombanner p.perfectbottomtextsmall{
    font-size: 1.2rem;
    padding: 0% 17% 0;
}

.perfectbottombanner p.perfectbottomtextsmall strong{
    font-size: 1.5rem;
}

.perfectbottombanner.super p{
    margin-left: -5%;
}

.perfectbottombanner.super p.perfectbottomtextsmall {
	padding: 0% 0 0 39%;
}

.articles2020info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.articles2020info h3 {
    width: 100%;
    text-align: center;
}
.articles2020info a {
    width: 48%;
    margin-right: 1%;
    margin-left: -1%;
}

/*remodal start*/
/* VOICE by2019 */
#voice{
    margin-bottom:4rem;
	display: flex;
	flex-wrap: wrap;
	line-height: 0;
}

#voice img {
	line-height: 0;
    width:100%;
    height:auto;
}

.voice-l{
	width:52%;
}

.voice-r{
	width: 47.8%;
}

.voice-modal .imgbox{
	margin:0 0 2rem 0;
}

.voice-modal h3{
	color: #666;
	margin:0 0 2rem 0;
}

.voice-modal p{
	text-align: left;
}

/* VOICE-COMMON by2019 */
#voice{
    margin-bottom:4rem;
	display: flex;
	flex-wrap: wrap;
	line-height: 0;
}

#voice img {
	line-height: 0;
    width:100%;
    height:auto;
}

.voice-l{
	width:52%;
}

.voice-r{
	width: 47.8%;
}

.voice-modal .imgbox{
	margin:0 0 2rem 0;
}

.voice-modal h3{
	color: #666;
	margin:0 0 2rem 0;
}

.voice-modal p{
	text-align: left;
}

/* VOICE 2020 */

.imgbox img{
width: 100%;
}

.remodal.voice-modal{
font-size: 1.5rem;
line-height: 1.6;
}

#voice{
margin-bottom: 0px;
}

img[usemap] {
width: 100%;
    max-width: 71.6rem;
    height: auto;
}

.remodal{
top: 0;
left:0;
margin-left: 2%;
margin-right: 2%;
margin-top: 2%;
width: 96%;
}

.remodal h2{
line-height: 1.2;
margin-bottom: 1rem;
}

.voice-modal h3 {
margin: 0 0 1rem 0;
}

.remodal-confirm, .remodal-cancel{
margin: 1rem 0 0 0;
}

.voice-modal .imgbox {
margin: 0 0 1rem 0;
}

/* exam02 remodal 2020 */

.remodal h2{
	font-size: 1.4rem;
    margin-top: 9%;
	color: #513824;
	padding-bottom: 2%;
}

.remodal h2 img{
	width: 7%;
    margin-right: 1%;
    vertical-align: middle;
    margin-top: -2%;
}

.voice-modal p{
	color: #513824;
	font-size: 1.3rem;
    width: 94%;
    margin: 0 auto;
}

.voice-modal p.hairset4photos{
	text-align: center;
	width: 100%;
}

.voice-modal p.hairset4photos img{
	width: 90%;
	margin-top: 2%;
}

.voice-modal p.hairsettext{
    line-height: 1.3;
    margin: 1% auto;
}

.voice-modal h3{
	color: #513824;
	font-size: 1.6rem;
	text-align: center;
	font-weight: bold;
}

.perfectrsvpopbutton{
	width: 94%;
	margin: 2% auto;
}

.perfectrsvpopbutton a {
	display: block;
    width: 100%;
    line-height: 0;
}

.perfectrsvpopbutton a img{
	width: 100%;
}

.remodal-confirm, .remodal-cancel{
    font-size: 1.4rem;
    margin-bottom: 4%;
}
.remodal-cancel {
    margin: 2rem 0 0 0;
    padding: 0.8rem;
}
/* komadobutton */
.komadobutton{
    margin-top: 5%;
    margin-bottom: 10%;
    display: flex;
    justify-content: center;
}
.komadobutton a img{
    max-width: 100%;
    width: 100%;
    height: auto;
}
/*calendar*/
.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-top{
    font-size: 1.6rem;
    font-family: 'Noto serif JP' , serif;
    margin: 0 3%;
    padding: 2% 1% 2% 3%;
    text-align: left;
    border: 0.45rem solid #e1dddd;
}
.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-right: 1rem;
    margin-left: 1rem;
}
.remodal.remodal_calendar .txtbox{
    text-align: left;
    margin-top: 1rem;
    padding: 0 1rem 0.5rem;
    margin-bottom: 1rem;
}

/*remodal end*/

/* optionlist */

.optionlist{
	position: relative;
    padding-top: 8%;
    margin-bottom: 8%;
}

.optionlist .optionlisttoptext{
    position: absolute;
    right: 2%;
    top: 3%;
    font-size: 1.1rem;
}

.optionlist ul{
	display: flex;
	width: 97%;
    margin: 0 auto;
}

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

.optionlist ul li.option{
	width: 70%;
	background-color: #eff3e7;
}

.optionlist ul li.price{
	width: 30%;
	padding-left: 5%;
}

.optionlist ul li.note{
	display:none;
}

.optionlist ul li.th{
	background-color: #313131;
	color: #FFF;
	text-align: center;
}

.optionlist ul li.th.price{
	padding-left: 3%;
}






/*20191111*/
h2.toptitle{
	font-size:1.9rem;
}

h2.toptitle img.h2_onepoint{
	display: inline-block;
}

.perfectprice .number.first,
.standardprice .number.first{
    background-color: #5bacb7;
}

.perfectprice .priceright p.line2price.first{
	color: #5bacb7;
}


.standardtitle h2,
.perfecttitle h2{
	border-bottom: 2px solid #FFF;
}

.standardtitle h3,
.perfecttitle h3{
	margin-top: 0.5rem;
}

.datasmallblue.green{
	color:#98c72d;
}

.standardoptioncontent ul li p.datacenter{
	width: 100%;
	text-align: center;
}

.standardoptiontitle.green{
    background-image: url(https://www.studioup.jp/wordpress/wp-content/themes/exam3/2020/img/kd_perfect_option_sp-min.png);
}

.exam02maincontent.exam3{
	width:98%;
	margin: 3.5% auto;
}

.suitselect{
    font-size: 1.5rem;
    color: #FFF;
    line-height: 1.25;
    background-color: #231816;
    box-sizing: border-box;
    padding: 6% 4%;
}

.suitselect img{
	width: 100%;
	margin: 0 auto;
}

.suitselect img.suitselecttitle{
	max-width: 31.3rem;
}

.suitselect img.suitselectimg{
	max-width: 23.6rem;
}

.suitselect p{
	padding-bottom: 1rem;
}

.suitselect p.center{
	text-align: center;
	padding-bottom: 0.5rem;
}

.suitselect p.red{
	color:#ea0404;
}

h2.suitselect_h2{
	font-size: 1.7rem;
	font-weight: bold;
	color: #ea0404;
	margin-top: 2%;
    margin-bottom: 4%;
    text-align: center;
}

.bannersection{
	margin-top: 1rem;
}

.bannersection img.superbanner{
	max-width: 355x;
	margin-bottom: 1rem;
}

.bannersection img.telrsvbanner{
	max-width: 356px;
}

/*===============================

320px

================================*/

@media only screen and (max-width: 360px) {

h2.toptitle{
    font-size: 20px;
}

p.toptitlebottom{
	font-size: 15px;
}

.standardtitle h2{
    font-size: 15px;
}

.standardtitle h3{
	font-size: 13px;
}

.standardprice .number .number_in .number_in_text p{
	font-size: 16px;
}

.standardprice .priceright p.line2price{
	font-size: 22px;
}
.standardprice .priceright p.line2price.narrow{
	font-size: 20px;
}

.standardprice .priceright p.line1small{
	transform: scale(0.8, 1);
    width: 120%;
    margin-left: -8%;
}

.standardtoptext{
	top: -10px;
}

.standardpricebox ul li.standardbottomtext{
	font-size: 12.5px;
}

.standardbody{
	height: 430px;
}

.standardpricebox {
    padding-top: 210px;
}

.standardoptiontitle h3{
	font-size: 15px;
}

.standardoptioncontent ul li h4{
	font-size: 21px;
}

.standardoptioncontent ul li h4 span{
	font-size: 18px;
}

.standardoptiontoptext{
	font-size: 11px;
}

.standardoptioncontent ul li:nth-of-type(3), .standardoptioncontent ul li:nth-of-type(4){
	font-size: 14px;
}

.hairsetpopbuttongreen{
	width: calc(97% + 2px);
    height: 85px;
    max-height: 85px;
}

.hairsetpopbuttongreen a p{
    font-size: 16px;
    padding-top: 7%;
}

.perfecttitle h2{
	font-size: 15px;
}

.perfecttitle h3{
	font-size: 14px;
}

.perfectbodyleft .perfectrsvsmall p{
	width: 85%;
	transform: scale(0.9, 1);
}

.exam02maincontent .perfectbodyleft .perfectrsvsmall img.lamp{
	width: 10%;
}

.perfectprice .number .number_in .number_in_text p{
	font-size: 17px;
}

.perfectprice .priceright p.line2price,
.perfectprice .priceright p.line2price.narrow{
	font-size: 21px;
}

.perfectprice .priceright p.line1small{
	margin-right: 0;
}

.perfecttoptext {
    top: 3px;
    right: -7px;
    font-size: 9px;
	text-shadow: #FFF 1px 1px 0, #FFF -1px -1px 0, #FFF -1px 1px 0, #FFF 1px -1px 0, #FFF 0px 1px 0, #FFF 0-1px 0, #FFF -1px 0 0, #FFF 1px 0 0;
    font-weight: bold;
}

.standardrsv a p,
.perfectrsv a p{
	font-size: 18px;
}

.perfectbottombanner h3{
	font-size: 13px;
}

.perfectbottombanner h3 span{
	font-size: 14px;
}

.perfectbottombanner p{
	font-size: 13px;
}

.perfectbottombanner p.perfectbottomtextsmall{
	font-size: 10px;
	padding: 0% 15% 0;
}

.perfectbottombanner p.perfectbottomtextsmall strong{
	font-size: 13px;
}

.perfectbottombanner.super p.perfectbottomtextsmall{
	padding: 0% 0 0 40%;
}

.perfectbottombanner{
	height: 84px;
}

.optionlist .optionlisttoptext{
	top: 2%;
}

.optionlist ul li{
	font-size: 13px;
}

.remodal h2{
	font-size: 12px;
}

.voice-modal p{
	font-size: 10px;
}

}

/*===============================

320pxのみ

================================*/

@media only screen and (max-width: 321px) {

.perfectbody{
	height: 385px;
}
	
.standardoptiontitle{
	background-size: contain;
    height: 81px;
}

}

/* 20220824 relocate*/
.banner.relocate {
    display: block;
    margin: 6% auto 6%;
    width: 88%;
}

/*===============================
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.sns_icon_x{
    width: 8%;
}
#sns a:last-of-type {
  margin-right: 0;
}

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: calc(210 / 375 * 100vw);
    max-width: 19rem;
    height: auto;
  }
