@charset "UTF-8";
/*
STUDIO UP - studio css -
Last Updated: 2024.09.14
Version: 1.0
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: 750px) {
  /*SP*/
  html {
    font-size: 2.666vw;
  }
}
@media screen and (min-width: 751px) {
  /*pc*/
  html {
    font-size: 125%;
  }
}
/*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 {
  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: 769px) {
  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: 750px;
    margin: 59px auto 0;
  }
}

.pcbr {
  display: none;
}
@media screen and (min-width: 769px) {
  .pcbr {
    display: block;
  }
}

main {
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
main h2 {
  margin-bottom: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.4;
}

section {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

section,
main h2,
h3 {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

article {
  width: 100%;
  margin: 0 auto;
}

a:link,
a:visited {
  color: unset;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.text_b {
  font-weight: bold;
}

.mb20 {
  margin-bottom: 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 .footer_logo_studioup {
  width: 35.4929577465%;
  height: auto;
  max-width: 252px;
}

footer .footer_logo_phototakano {
  fill: #fff;
  width: calc(210 / 375 * 100vw);
  max-width: 19rem;
  height: auto;
}

/* ----------
fixed_maru
---------- */
#fixedMaruBox {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  padding: 0.8rem;
  width: 100%;
  background-color: #fff;
}
#fixedMaruBox > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  max-width: 37rem;
  margin: 0 auto;
}
#fixedMaruBox img {
  width: 100%;
  vertical-align: middle;
}

footer {
  padding: 2.8rem 2.8rem 8rem;
}
@media screen and (min-width: 769px) {
  footer {
    padding: 3rem 2.8rem 10rem;
  }
}



/* common */
li{
	list-style: none;
}

.subpage_title h2 {
	padding: 0.2em 0.5em 0.1em;
	color: #303030;
	background: transparent;
	border-left: solid 0.5rem #418dae;
	font-size: 30px;
	font-weight: bold;
}

.subpage_title{
	border-bottom: 2px solid #cecece;
	padding-bottom: 1%;
	padding-top: 3%;
}

.subpage p a,
.subpage p a:active,
.subpage p a:visited{
	color:#e50404;
	text-decoration: none;
	font-weight: bold;
}

.subpage p a:hover{
	opacity:0.5;
}

.sectionparts.subpage ul li p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.2;
    padding-bottom: 0;
}

.sectionparts.subpage ul {
    margin-top: 3.4%;
	margin-bottom: 2.1%;
}

.bx-wrapper {
    margin-top: 5%;
	margin-bottom: 0;
}


/* mainvisual */
#mainContent{
  margin-top: 2px;
  padding-left: 10px;
  padding-right: 10px;
}
#mainContent > h1 {
  text-align: center;
  color: #fff;
  background-color: #333;
  width: calc(100% + 20px);
  margin-left: -10px;
  font-size: 2.24rem;
  line-height: 1.6;
  padding-bottom: 0.2em;
}
.news {
  font-weight: bold;
  text-align: center;
  margin: 3% 0;
}
.news h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}
.mainvisual .subpage h2 {
  font-size: 1.75rem;
}
.mainvisual > p{
  font-size: 1.9rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
}
.mainvisual .subpage > p,
.mainvisual > p {
  font-size: 1.6rem;
}

.entrance_img{
	margin: 0 auto;
}

.mainvisual > p > img{
	width: 100%;
}

.sectionparts.subpage > img {
	width: 100%;
	display: block;
	margin: 0 auto;
}

.mainvisual .subpage > p {
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 3% 3.3% 0;
    letter-spacing: -0.02em;
}

.address_list {
    margin-bottom: 2.1%;
}

.address_list li:last-child {
    content: "";
	display: flex;
    justify-content: center;
    align-items: center;
}

.address_list li:last-child > p{
	color: #000;
}

.sectionparts.subpage ul li p {
  font-size: 1.8rem;
}

.exit_icon {
    width: 4rem;
}


/*metrobox*/
.metrobox > p {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-top: 1rem;
}

.metrobox ul {
  width: 90%;
  margin: 3.4% auto 0;
  display: flex;
  flex-flow: wrap;
  flex-direction: column;
  align-items: flex-start;
}

.metrobox ul li{
	list-style: none;
}

.metro_circle {
    margin: 0 1% 1%;
    font-size: 1.4rem;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.metro_circle:last-child {
    margin-bottom: 0;
}

.metro_circle img{
	width: 3.85rem;
}


.sectionparts.subpage .metro_circle p {
    text-align: left;
    margin-left: 0.5rem;
}

.subpage_title h2 {
  font-size: 1.6rem;
}

/*SP*/
@media screen and (max-width: 750px) {
  .exit_icon {
    width: 3.2rem;
  }
  .metrobox ul {
    width: 80%;
  }
  .metrobox > p {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-top: 3%
  }

  .metro_circle img{
    width: 4.8rem;
  }
  .sectionparts.subpage ul li p {
    font-size: 1.44rem;
  }
}
@media only screen and (max-width: 320px) {
  .subpage_title h2 {
    font-size: 0.9rem;
  }	
}
/*PC*/
/* @media only screen and (min-width: 481px) {

#mainContent > h1,
.news {
	display: none;
}
} */

.map {
  border: 0.1rem solid #333;
}