@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ramabhadra&display=swap');
/* reset
-------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,
p,blockquote,table,th,td, figure, section, article {margin: 0; padding: 0;}
body,button {font:13px/1 "ヒラギノ角ゴ Pro W3", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;}
* html body {font-size: small;}
*:first-child+html body {font-size: small;}
img {border: 0; vertical-align: top;}
h1,h2,h3,h4,h5,h6 {font-size: 100%; font-weight: normal;}
ul,dl,ol {text-indent: 0;}
li {list-style: none;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal; font-weight: normal;}
sup {vertical-align: text-top;}
sub {vertical-align: text-bottom;}
input,textarea,select {font-family: inherit; font-size: inherit; font-weight:inherit;}
* html input,* html textarea,* html select {font-size: 100%;}
*:first-child+html+input,*:first-child html+textarea,*:first-child+html select {font-size: 100%;}
table {border-collapse: collapse; border-spacing: 0; font-size: inherit;}
th,td {text-align: left; vertical-align: top;}
caption {text-align: left;}
pre,code,kbd,samp,tt {font-family: monospace;}
* html pre,* html code,* html kbd,* html samp,* html tt {font-size: 100%; line-height: 100%;}
*:first-child+html pre,*:first-child html+code,*:first-child html+kbd,*:first-child+html+samp,*:first-child+html tt {font-size: 108%; line-height: 100%;}
input,select,textarea {font-size: 100%; font-family: Verdana, Helvetica, sans-serif;}
*:focus {outline: none;}

/* base
-------------------------------------------------------*/
html{
  font-size: 62.5%; /* 1rem = 10px */
}
@media only screen and (max-height: 700px) {
  html{
    font-size: 52%;
  }
}
*{
	box-sizing:border-box;
}
html,body{
	height: 100%;
}
body {
	letter-spacing:0.03em;
}
strong {
	font-weight:bold;
}
a {
	color:#000;
	text-decoration:none;
}
a:hover {
}
.clearfix:after {
	content:"";
	display:block;
	clear:both;
	height:100%;
}
.clear {
	clear:both;
}
.al-center {
	text-align:center;
}
.f-left {
	float:left;
}
.f-right {
	float:right;
}
br.pchide{
  display: none;
}
img{
  max-width: 100%;
  height: auto;
}
img.pc{
  display: inline-block;
}
img.sp{
  display: none;
}
br.pc{
  display: inline;
}
br.sp{
  display: none;
}
.alright{
  text-align: right;
}
.fadein{
  opacity: 0;
  position: relative;
  top: 50px;
  transition: all 1s ease;
}
.fadein.scrollin{
  opacity: 1;
  top: 0;
}

/* header
-----------------------------------------------------*/
header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 15;
}
header #logo{
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translate(-50%, 0);
}
header #logo a svg{
	opacity: 1;
	transition: opacity 0.3s ease;
}
header #logo a:hover svg{
	opacity: 0.6;
}
header #logo svg .a{
	fill:#fff;
}
header .tel{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	color: #fff;
	font-size: 2rem;
	position: absolute;
	top: 66px;
	right: 140px;
	z-index: 15;
	opacity: 1;
	transition: opacity 0.3s ease;
}
header .tel:hover{
	opacity: 0.6;
}
p.headertitle{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	color: #fff;
	position: absolute;
	top: 45px;
	left: 45px;
	z-index: 15;
	font-size: 2rem;
	line-height: 1.25em;
	height: 65px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: left;
}
p.headertitle.black{
	color: #000;
}
p.headertitle small{
	font-size: 1.3rem;
}
.menubtn{
	display: block;
	position: fixed;
	top: 45px;
	right: 29px;
	z-index: 30;
	padding: 20px 15px;
}
.menubtn.white .bar1,
.menubtn.white .bar2,
.menubtn.white .bar3{
	background: #fff;
}
.hamburger{
  display: inline-block;
  cursor: pointer;
	width: 60px;
}
.bar1, .bar2, .bar3 {
	display: block;
  width: 60px;
  height: 1px;
  background-color: #000;
  transition: 0.4s;
}
.hamburger:hover .bar1,
.hamburger:hover .bar2,
.hamburger:hover .bar3{
	background-color: #8C8C8C;
}
.bar2{
  margin: 11px 0;
}
.active .bar1 {
  transform: rotate(-45deg) translate(-7px, 10px);
	background: #fff !important;
}
.active .bar2 {
  opacity: 0;
}
.active .bar3 {
  transform: rotate(45deg) translate(-7px, -10px);
	background: #fff !important;
}
nav#menu{
	position: fixed;
	top: 0;
	right: -570px;
	width: 570px;
	height: 100%;
	background: #000;
	z-index: 20;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.5s ease;
}
nav#menu.active{
	right: 0;
}
#navcloseclickbase{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 19;
	background: rgba(0,0,0,0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s ease;
	/*backdrop-filter: blur(6px);*/
}
#navcloseclickbase.active{
	visibility: visible;
	opacity: 1;
}
nav#menu .animate{
	transform: translate(150px, 0);
	opacity: 0;
	transition:all 0.8s ease;
}
nav#menu.active .animate{
	opacity: 1;
	transform: translate(0, 0);
}
nav#menu .delay02{
	transition-delay: 0.05s;
}
nav#menu .delay03{
	transition-delay: 0.1s;
}
nav#menu .delay04{
	transition-delay: 0.15s;
}
nav#menu .delay05{
	transition-delay: 0.2s;
}
nav#menu .delay06{
	transition-delay: 0.25s;
}
nav#menu .delay06{
	transition-delay: 0.3s;
}
nav#menu .delay07{
	transition-delay: 0.35s;
}
nav#menu .delay08{
	transition-delay: 0.4s;
}
nav#menu .delay09{
	transition-delay: 0.45s;
}
nav#menu .delay10{
	transition-delay: 0.5s;
}
nav#menu a,
nav#menu span{
	color: #fff;
	transition: all 0.3s ease;
}
nav#menu a:hover,
nav#menu a.disabled{
	color: #666;
}
nav#menu h3.logo{
}
nav#menu h4{
	font-size: 1.7rem;
	color: #666666;
	margin-bottom: 2em;
	margin-top: 2em;
}
nav#menu ul li{
	font-size: 2.6rem;
}
nav#menu ul li + li,
nav#menu ul li.child + li.child{
	margin-top: 1em;
}
nav#menu ul li.child{
	font-size: 2rem;
}
nav#menu ul li.child + li{
	margin-top: 1.5em;
}
nav#menu ul li small{
	font-size: 1.3rem;
}
nav#menu ul + ul{
	margin-top: 3em;
}
nav#menu .tel{
	margin-top: 2em;
}
nav#menu .tel a{
	font-size: 3.9rem;
	letter-spacing: 0.05em;
}
nav#menu .sns{
  position: absolute;
  top: 66px;
  right: 130px;
}
nav#menu .sns a,
nav#menu .sns span{
  margin-left: 20px;
}
nav#menu .sns a img,
nav#menu .sns span img{
  height: 25px;
  width: auto;
}
header.black #logo svg .a{
	fill:#000;
}
.menubtn.black .bar1,
.menubtn.black .bar2,
.menubtn.black .bar3{
	background: #000;
}
header.black .tel{
	color: #000;
}
@media screen and (max-height: 720px) and (min-width: 1000px) {
  .menubtn{
    top: 10px;
    right: 0px;
  }
  nav#menu .sns{
    top: 20px;
    right: 100px;
  }
  header .tel{
    top: 35px;
  }
  p.headertitle{
    top: 6px;
  }
}
/* footer
-----------------------------------------------------*/
footer{
	border-top: 1px solid #ededed;
	padding: 70px 20px 50px 20px;
	margin-top: 170px;
}
footer .inner{
	max-width: 1070px;
	margin: 0 auto;
	display: flex;
}
footer .inner nav{
	display: flex;
	margin-left: 150px;
}
footer .inner nav h3{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	color: #c5c5c5;
	font-size: 1.2rem;
	margin-bottom: 30px;
}
footer .inner nav .col + .col{
	margin-left: 65px;
}
footer .inner nav ul li{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	font-size: 1.6rem;
}
footer .inner nav ul li.child{
	font-size: 1.3rem;
}
footer .inner nav ul li + li,
footer .inner nav ul li.child + li.child{
	margin-top: 1em;
}
footer .inner nav ul li.child + li{
	margin-top: 1.5em;
}
footer .inner nav p.tel{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.08em;
	font-size: 2rem;
}
footer .inner nav p.tel + p{
	font-size: 12px;
	margin: 1em 0 2em 0;
}
footer .inner nav .btn a{
	display: inline-block;
	font-size: 1.3rem;
	border: 1px solid #000000;
	width: 220px;
	line-height: 40px;
	text-align: center;
	transition: all 0.3s ease;
}
footer .inner nav .btn a:hover{
	background: #000;
	color: #fff;
}
footer .inner nav a:hover,
footer .inner nav a.disabled{
	color: #666;
}
footer p.copy{
	text-align: center;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	font-size: 1rem;
	margin-top: 60px;
}

/* common
-----------------------------------------------------*/
a img{
  opacity: 1;
  transition: opacity 0.5s ease;
}
a:hover img{
  opacity: 0.6;
}
.new{
	color: #b60000;
	transition: color 0.3s ease;
}
.en{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
}
.jp{
	font-family: "Yu GothicM", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
}
/* top
-----------------------------------------------------*/
#mainvisual{
	height: 100%;
	position: relative;
}
#mainvisual .sp-slide img{
	object-fit: cover;
	height: 100%;
	width: 100%;
}
#mainvisual .sp-slide.higashiyamareno {
  background: #231815;
}
#mainvisual #slidenav{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: flex;
	align-items: center;
	font-family: 'Ramabhadra', sans-serif;
	letter-spacing: 0.1em;
	color: #fff;
}
#slidenav > div{
	position: relative;
	margin-left: 62px;
}
#slidenav h3{
	font-size: 2.2rem;
	transform: rotate(90deg);
	transform-origin: top left;
	position: absolute;
	top: 149px;
	left: 0;
}
#slidenav ul#slidenavlist{
	margin-left: 40px;
}
#slidenav li{
  position: relative;
  overflow: hidden;
}
#slidenav li.overflowvisible{
  overflow: visible;
}
#slidenav li:nth-child(2){
	margin-top: 47px;
}
#slidenav li:nth-child(3){
	margin-top: 21px;
}
#slidenav li.higashiyama-last{
	margin-top: 60px;
}
#slidenav li.higashiyama-first{
	margin-bottom: 60px;
}
#slidenav li a,
#slidenav li span{
	font-size: 6rem;
	color: #fff;
	transition: color 0.3s ease;
	line-height: 1em;
}
#slidenav li.active a,
#slidenav li a:hover,
#slidenav li a:hover .new{
	color: #000;
}
#slidenav li.child a{
	font-size: 10rem;
}
#slidenav li small{
	font-size: 5rem;
	vertical-align: 11px;
}
#slidenav li br + small{
  position: relative;
  top: -0.7em;
}
#slidenav li p.note{
  position: absolute;
  top: 0;
  left: calc(100% + 80px);
  display: block;
  width: 600px;
  font-size: 3.1rem;
  line-height: 1.2em;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1320px) {
  #slidenav li p.note{
    font-size: 2.2rem;
    width: 440px;
    left: calc(100% + 40px);
    top: 10px;
  }
}
#slidenav li.active p.note{
  visibility: visible;
  opacity: 1;
}
#mainvisual .scroll{
	position: absolute;
	right: 20px;
	bottom: -68px;
	color: #ffffff;
	z-index: 15;
	display: block;
	width: 170px;
	font-size: 1.8rem;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	transform: rotate(90deg);
	transform-origin: right top;
}
#mainvisual .scroll:before,
#mainvisual .scroll:after{
	content: "";
	display: block;
	width: 50px;
	height: 1px;
	position: absolute;
	top: 9px;
}
#mainvisual .scroll:before{
	right: 50px;
	background: #fff;
}
#mainvisual .scroll:after{
	right: 0px;
	background: #ccc;
}
#mainvisual .news{
	position: absolute;
	left: 30px;
	bottom: 30px;
	z-index: 15;
	color: #fff;
}
#mainvisual .news a{
	color: #fff;
	font-size: 1.4rem;
}
#mainvisual .news a:hover{
	opacity: 0.6;
}
#mainvisual .news span{
	font-size: 1.8rem;
}
#mainvisual .news time{
	font-size: 1.4rem;
	margin: 0 1em;
}
#mainvisual .sns{
  position: absolute;
  top: 65px;
  left: 40px;
  z-index: 11;
}
#mainvisual .sns > span,
#mainvisual .sns > a{
  margin-right: 10px;
  color: #fff;
  font-family: "Ramabhadra", sans-serif;
  font-size: 1.9rem;
  vertical-align: middle;
}
#mainvisual .sns > span img,
#mainvisual .sns > a img{
  margin-right: 10px;
  vertical-align: middle;
  width: auto;
  height: 32px;
}
#top_aobadai{
	text-align: center;
}
#top_aobadai .new span{
	color: #b60000;
	border-bottom: 2px solid #b60000;
	padding-bottom: 0;
	font-size: 2.2rem;
}
#top_aobadai .new{
	margin-bottom: 3em;
}
#top_aobadai .new + p{
	text-align: center;
	font-size: 1.5rem;
	line-height: 2em;
}
#top_aobadai .videowrap{
	max-width: 1070px;
	margin: auto;
	margin-top: 60px;
}
body .video-js .vjs-big-play-button{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 0;
	height: 2em;
	line-height: 2em;
	border-radius: 15px;
}
#top_aobadai .videowrap{
    overflow: hidden;
    position: relative;
    width:100%;
}
#top_aobadai .videowrap:after{
	padding-top: 56.25%;
	display: block;
	content: '';
}
#top_aobadai .videowrap iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
#top_studio{
	overflow: hidden;
	padding: 0;
}
#videosliderwrap{
	max-width: 1280px;
	margin: auto;
}
#videoslider{
	margin-top: 60px;
	max-width: 2000px;
}
#videoslider .sp-slide{
	padding-left: 100px;
	padding-right: 100px;
}
#videoslider .videowrap{
	margin-top: 0;
}
#videoslider .videowrap iframe{
	width: 100%;
	height: auto;
}
p.visualmessage{
  text-align: center;
  line-height: 2em;
  font-size: 1.6rem;
  background: #fff;
  padding: 20px;
  font-weight: bold;
}

/* section .content
-----------------------------------------------------*/
h2.entitle{
	font-size: 5rem;
	text-align: center;
	margin-bottom: 50px;
}
h2.entitle small{
	font-size: 2.2rem;
	display: inline-block;
	margin-bottom: 7px;
}
h2.entitle small strong.num{
	font-size: 3.2rem;
	font-weight: normal;
}
h2.entitle small strong.f{
	font-size: 2.8rem;
	font-weight: normal;
}
h2.entitle .jp{
	font-size: 1.3rem;
	vertical-align: 14px;
}
h2.entitle .new{
	font-size: 3.5rem;
}
section.content{
	margin-top: 140px;
	margin-bottom: 170px;
	padding: 0 20px;
}
.studioimgnav{
	display: flex;
	gap: 14px;
	max-width: 1000px;
	margin: auto;
}
.studioimgnav .col{
	flex: 1 1 0px;
	padding-top: 35px;
	background: #eeeeee;
	text-align: center;
}
.studioimgnav .col > a{
	display: block;
	overflow: hidden;
}
.studioimgnav .col a img{
	transition: transform 0.8s ease;
}
.studioimgnav .col a:hover img{
	opacity: 1;
	transform: scale(1.05);
}
.studioimgnav .col .text{
	padding: 35px;
}
.studioimgnav .col .text h3{
	font-size: 2rem;
}
.studioimgnav .col .text h3 small{
	font-size: 1.4rem;
}
.studioimgnav .col .text h3 small.jp{
	font-size: 1.1rem;
}
.studioimgnav .col .text p{
	font-size: 1.3rem;
	line-height: 1.75em;
	margin: 1em 0;
}
.studioimgnav .col .text .btnbox{
	text-align: center;
}
a.btn{
	display: inline-block;
	width: 140px;
	line-height: 30px;
	text-align: center;
	background: #000;
	color: #fff;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	transition: background 0.3s ease;
}
a.btn:hover{
	background: #333;
}
a.btn_white{
	display: inline-block;
	width: 220px;
	line-height: 40px;
	text-align: center;
	background: #fff;
	border: 1px solid #000;
	transition: all 0.3s ease;
}
a.btn_white:hover{
	color: #fff;
	background: #000;
}
/* aobadai 3F
-----------------------------------------------------*/
#topcontents{
	position:relative;
	height:100%;
}
.panowrap{
	height: 100%;
}
#topcontents #pano,
#topcontents #pano1f,
#topcontents #pano_b{
	height: 100%;
}
.floorbtn{
	position:absolute;
	right:20px;
	bottom:20px;
	z-index:100;
}
#topcontents .ico{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	z-index:15;
}
.panonav{
	color: #fff;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	position: absolute;
	right: 20px;
	top: 50%;
	font-size: 2rem;
	transform: rotate(90deg) translate(50%, 0);
	transform-origin: right top;
}
.panonav a{
	color: #fff;
	opacity: 1;
	transition: opacity 0.3s ease;
}
.panonav a:hover{
	opacity: 0.6;
}
.panonav a.active{
	border-bottom: 1px solid #fff;
}
.panonav a.solar:before{
	content: "";
	display: inline-block;
	width: 35px;
	height: 27px;
	background: url("/img/3F/ico_solar.svg") no-repeat;
	background-size: contain;
	vertical-align: -7px;
	margin-right: 10px;
}
body .slick-prev,
body .slick-next{
	background: #000 !important;
	width: 45px;
	height: 45px;
	border-radius: 50px;
}
body .slick-prev{
	left: -75px;
}
body .slick-next{
	right: -75px;
}
body .slick-prev:before,
body .slick-next:before{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	position: absolute;
	top: 14px;
	left: 10px;
	opacity: 1;
}
body .slick-prev:before{
	left: 17px;
}
body .slick-prev:before{
	transform: rotate(135deg);
}
body .slick-next:before{
	transform: rotate(-45deg);
}
body .slick-dots{
	bottom: -40px;
}
body .panorama-popup{
	padding-left: 100px;
	padding-right: 100px;
}
body .panorama-popup .fancybox-button{
	padding: 0;
	width: 50px;
	height: 50px;
}
body .panorama-popup .fancybox-button svg{
	width: 50px;
	height: 50px;
}
body .slick-dots li.slick-active button:before{
	opacity: 1;
}
body .slick-dots li button:before{
	content: "";
	background: #000;
	border-radius: 100px;
	width: 13px;
	height: 13px;
}
#topcontents .img{
	height: 100%;
}
#topcontents .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
nav#global{
	display: flex;
	justify-content: center;
}
nav#global ul{
	display: flex;
	background: #fff;
	position: relative;
	top: -80px;
	z-index: 15;
	padding: 0 80px;
}
nav#global ul li + li{
	margin-left: 40px;
}
nav#global ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	padding: 0 10px;
	font-size: 2rem;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
}
nav#global ul li a:hover{
	color: #666;
}
nav#global + .content{
	margin-top: 30px;
}
#studiolead{
	max-width: 700px;
	box-sizing: content-box;
	margin: 0 auto;
}
#studiolead h3{
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 1em;
	line-height: 1.5em;
}
#studiolead p{
	font-size: 1.5rem;
	line-height: 2;
}
.newssection{
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	max-width: 1070px;
	margin: 0 auto;
	position: relative;
	padding: 70px 0;
}
article .newssection{
	margin: 180px auto;
}
.newssection h3:first-child{
	position: absolute;
	top: -39px;
	left: 0;
	width: 100%;
	text-align: center;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	font-size: 2.5rem;
}
.newssection h3 span{
	display: inline-block;
	background: #fff;
	padding: 0 20px;
}
.newssection.newspage h3:first-child{
	position: static;
	text-align: left;
}
.newssection.newspage{
	display: flex;
	justify-content:flex-start;
}
.newssection.newspage + .newspage{
	border-top: 0;
}
.newssection.newspage h3{
	width: 360px;
}
.newssection.newspage h3 small{
	font-size: 1.6rem;
	display: inline-block;
	margin-bottom: 10px;
}
.newssection.newspage ul{
	flex-grow: 1;
}
.newssection.newspage .btn{
	margin-left: 7em;
}
.newslist li{
	position: relative;
	font-size: 1.5rem;
}
.newslist li a:hover{
	color: #666;
}
.newslist li + li{
	margin-top: 1.75em;
}
.newslist li .new{
	position: absolute;
	top: 0;
	left: -60px;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #b60000;
	font-size: 1.6rem;
}
.newslist li time{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	display: inline-block;
	width: 7em;
	font-size: 1.3rem;
}
.flexaligncenter{
	display: flex;
	justify-content: center;
}
.newssection .btnbox{
	text-align: center;
	margin-top: 40px;
}
#studio{
padding: 0 66px;
}
#studio h3{
	margin-top: 80px;
	padding: 0 15px;
	font-size: 2.5rem;
	margin-bottom: 40px;
}
#studio h3 small{
  font-size: 15px;
  line-height: 1.5em;
  margin-left: 7.5em;
  text-indent: -4.4em;
}
#studio .solarbtn{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	font-size: 2.5rem;
	padding-right: 12px;
	margin-bottom: 30px;
}
#studio .solarbtn a:before,
#studio .solarbtn > span:before{
	content: "";
	display: inline-block;
	width: 35px;
	height: 27px;
	background: url("/img/3F/ico_solar.svg") no-repeat;
	background-size: contain;
	vertical-align: -7px;
	margin-right: 10px;
}
#studio .solarbtn a span.underline,
#studio .solarbtn span.underline{
	border-bottom: 1px solid #000;
}
#studio h3.beforesolarbtn{
	margin-bottom: 0px;
}
#studio .titleflex{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 80px;
	margin-bottom: 40px;
	padding-right: 12px;
}
#studio .titleflex h3{
	margin-top: 0;
	max-height: 0;
	padding-top: 15px;
	margin-right: 20px;
}
p.attn{
  font-size: 14px;
  line-height: 1.75em;
}
#studio h3.attn{
  display: flex;
}
#studio h3.attn span:first-child{
  flex-shrink: 0;
}
h3.attn span.red,
p.attn span.red{
  color: #a71f24;
  border-bottom: 1px solid #a71f24;
  font-weight: bold;
}
.imgwrap{
	display: flex;
	flex-wrap: wrap;
}
.imgwrap > div{
	width: 33.3%;
	padding: 12px;
	position: relative;
}
.al-bottom{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.imgwrap > div.w25{
	width: 25%;
}
.imgwrap > div.w16{
	width: 16.66%;
}
.imgwrap > div.w50{
  width: 50%;
  padding: 0;
}
.imgwrap >div.w50.flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.imgwrap > div.w50 > .w50{
  width: 50%;
  padding:15px 12px;
}
.imgwrap > div.w50 p.attn{
  flex-grow: 1;
  padding: 0 12px;
  margin-top: 10px;
  justify-content: flex-start;
  position: relative;
}
.imgwrap > div.w50 p.attn .red{
}
.imgwrap > div.w50 p.attn .block{
  display: block;
  margin-top: 0.5em;
}
.imgwrap > div.w50 .attnrow{
  width: 100%;
}
.imgwrap >div.w50.flex .w50{
  height: auto;
  align-self: flex-start;
}
.imgwrap > div.w50 .w33{
  width: 33.3%;
  padding: 12px;
}
.imgwrap > div.w50 .w33:nth-child(1),
.imgwrap > div.w50 .w33:nth-child(2),
.imgwrap > div.w50 .w33:nth-child(3){
  padding-top: 0;
}
.imgwrap > div.w50 .w33:nth-child(1),
.imgwrap > div.w50 .w33:nth-child(4){
}
.imgwrap > div.w50 .w33:nth-child(3),
.imgwrap > div.w50 .w33:nth-child(6){
}
.imgwrap > div.w50 .w66{
	width: 66.7%;
  padding: 0 12px 12px 12px;
}
.imgwrap .alignbottom{
	align-items: flex-end;
}
.imgwrap > div img{
	width: 100%;
	height: auto;
}
.imgwrap > div a{
  display: block;
  position: relative;
}
.imgwrap > div a span.title{
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.5rem;
  z-index: 1;
}
.imgwrap a.swipebox{
	display: block;
	overflow: hidden;
}
.imgwrap a.swipebox img{
	transition: all 0.8s ease;
}
.imgwrap a.swipebox:hover img{
	transform: scale(1.05);
	opacity: 1;
}
.imgwrap p.caption{
	line-height: 1.5;
	margin-top: 2px;
	margin-bottom: -21px;
}
.imgwrap p.caption .en{
	font-size: 1.9rem;
	font-family: "Ramabhadra", sans-serif;
}
.imgwrap p.caption small{
	font-size: 1.3rem;
	font-weight: normal;
	margin-left: 1em;
}
.movie-col{
	margin-bottom: 95px;
	position: relative;
}
.movie-col p.caption{
	bottom: -19px;
}
.movie-col .note{
	position: absolute;
	top: -10px;
	right: 15px;
}
a.playbtn{
	position: relative;
}
a.playbtn::after{
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background: url("/common/img/ico_play.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#studio .row{
	display: flex;
}
#studio .row .col01{
	width: 33.3%;
}
#studio .row .col02{
	width: 66.6%;
}
#studio .row .col01 .imgwrap div{
	width: 100%;
}
#studio .row .col02 .imgwrap div{
  width: 38%;
}
.layoutwrap{
	background: #eeeeee;
	margin: 0 80px;
	padding: 80px 0;
}
#price{
	max-width: none;
}
#price .layoutwrap + .studiocontent{
	margin-top: 70px;
}
#planaoba p{
	font-size:1rem;
	line-height:16px;
}
#planaoba .text{
	position: absolute;
	top: 0;
	right: 0;
	width: 420px;
}
#planaoba{
	position:relative;
	width: 840px;
	margin: auto;
}
#planaoba img + img{
	margin-top:408px;
}
#planaoba.plan2f p{
	width: 450px;
}
#planaoba.plan2f img + img{
	margin-left: 20px;
}
#planaoba .text-note{
	margin-top: 30px;
}
#planaoba .text-note p + p{
	margin-top: 1em;
}
div.bggrey{
	background: #eeeeee;
	padding: 90px 0;
}
div.bggrey .studiocontent{
	margin-top: 0;
	margin-bottom: 0;
}
article.mb0 + footer{
	margin-top: 0;
}
.panorama-popup{
	display: none;
}
.panorama-popup video{
	max-width: 100%;
	height: auto;
}
.panorama-popup h3{
	font-weight: bold;
	font-size: 1.6rem;
	margin-bottom: 25px;
	display: flex;
	align-items: flex-end;
}	
.panorama-popup h3 span{
	margin-left: 20px;
	margin-right: 10px;
	margin-bottom: -5px;
}
.panorama-popup h3 span img{
	vertical-align: -8px;
}
.panorama-popup video + h3{
	margin-top: 100px;
}
/* aobadai 2F
-----------------------------------------------------*/
#topvideo{
	height: 100%;
	position: relative;
}
#topvideo:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.1);
}
#topvideo video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* higashiyama
-----------------------------------------------------*/
#plan.higashiyama{
  max-width: 1050px;
}
#plan.higashiyama img{
  float: none;
}
#plan.higashiyama .text{
  float: none;
  width: auto;
}
#plan.higashiyama{
  display: flex;
}
#plan.higashiyama > div{
  width: 50%;
}
#plan.higashiyama .flex{
  display: flex;
  margin-bottom: 30px;
}
#plan.higashiyama .flex > div:first-child{
  width: 55%;
}
#plan.higashiyama .flex > div:last-child{
  width: 45%;
}
#plan.higashiyama .left{
  padding-right: 50px;
}
#plan.higashiyama .right{
  padding-left: 50px;
}
#plan.higashiyama .left .flex > .img img{
  margin-left: -22%;
}
#plan.higashiyama .right .flex > .img img{
  margin-left: -22%;
}
#plan.higashiyama .left .flex .text .img{
  margin-top: 40px;
}
#plan.higashiyama .left .flex .text .img figure img{
  width: 100%;
}
#plan.higashiyama .left .flex .text .img figcaption{
  text-align: center;
  line-height: 1.5em;
}
#plan.higashiyama .left .flex .text .img figure + figure{
  margin-top: 20px;
}
#plan.higashiyama .flex ul{
  margin-top: 1em;
  margin-bottom: 1em;
}
#plan.higashiyama .flex ul li{
  margin-bottom: 0;
}
#plan.higashiyama .left,
#plan.higashiyama .right{
  display: flex;
  flex-direction: column;
}
#plan.higashiyama .wideimg{
  margin-top: auto;
}
@media only screen and (max-width: 1200px) {
  #plan.higashiyama .wideimg{
    margin-top: 0;
  }
}
#plan.higashiyama .right .wideimg{
  padding-bottom: 20px;
}
#plan.higashiyama .left h2,
#plan.higashiyama .right h2{
  width: 2.25em;
}
.layoutwrap.higashiyama{
  padding-left: 70px;
  padding-right: 20px;
}

/* old site css
-----------------------------------------------------*/
.studiocontent{
	max-width: 840px;
	box-sizing: content-box;
	padding: 0 20px;
	margin: 180px auto;
}
h2 + .studiocontent{
	margin-top: 0;
	margin-bottom: 70px;
}
h2.line{
	font-size:1.6rem;
	font-weight:bold;
	border-bottom:1px solid #000;
	padding-bottom:14px;
	margin-bottom:20px;
	margin-top:40px;
}
h2.line span{
	margin-left:1em;
	font-size:1rem;
	font-weight:normal;
}
h2.line span.jp{
}
section > h2.line:first-child{
	margin-top:0;
}
#price{
	margin: 180px 0;
}
#price h2.line span{
	font-size:1.4rem;
}
#price h3{
	line-height:1.5em;
	font-weight:bold;
	margin-top:30px;
	margin-bottom:6px;
	font-size: 1.4rem;
}
#price h4.floor{
	border:1px solid #000;
	padding:2px 5px;
	display:inline-block;
	font-family: Arial, Verdana, 'Helvetica Neue', Helvetica, sans-serif;
	font-weight:bold;
	margin-bottom:5px;
	margin-top:6px;
}
#price p{
	line-height:1.75em;
	font-size: 1.4rem;
}
#price ul li{
	line-height:1.75em;
	margin-left:1em;
	margin-top:0.5em;
	margin-bottom:0.5em;
	font-size: 1.4rem;
}
#price ul li:before{
	content:"・";
	margin-left:-1em;
}
#price table{
	width:100%;
	margin:10px 0;
	table-layout:fixed;
	font-size: 1.4rem;
	line-height: 1.5em;
}
#price table th,
#price table td{
	border:1px solid #000;
	padding:10px 0;
	text-align:center;
}
#price table th{
	font-size:1.1rem;
}
#price table td{
	font-size:1.8rem;
	font-family: Arial, Verdana, 'Helvetica Neue', Helvetica, sans-serif;
	font-weight:bold;
}
#price table td span.small{
	font-size:1.4rem;
	font-weight:normal;
}
.linetrough{
	text-decoration:line-through;
}
.red{
	color: #E60012;
}
a.textlink{
	border-bottom:1px dotted #000;
}
#list h2.line{
	margin-bottom:0;
}
#list .tablewrap > table{
	line-height:1.75em;
	width:100%;
}
#list .tablewrap > table > tbody > tr > th,
#list .tablewrap > table > tbody > tr > td{
	border-bottom:1px solid #ccc;
	padding:5px;
}
#list .tablewrap > table td > table td{
	padding-right:1em;
}
#list .tablewrap > table{
	white-space: nowrap;
}
#list .tablewrap > table > tbody > tr > th{
	font-weight:bold;
	background:#efefef;
}
#list .tablewrap > table .price{
	width:150px;
}
#list .tablewrap > table .fit{
	width:1%;
	white-space: nowrap;
}
#list .tablewrap + p{
	font-size:1.1rem;
	margin-top:20px;
}
#list .tablewrap > table + p{
	margin: 1em 0;
	line-height: 1.5em;
}
a.textlink{
	border-bottom:1px dotted #000;
}
section a:hover{
	color: #666;
}
#map iframe{
  width: 100%;
  margin-bottom: 40px;
}
#map-canvas{
	height:400px;
	margin-bottom:40px;
}
#map h3{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	font-size:1.6rem;
	margin-bottom:15px;
}
#map p{
	line-height:1.75em;
}
#map .left{
	float:left;
}
#map .right{
	float:right;
}
#map p + p{
	margin-top:1em;
}
#map .parkinglink a{
	font-size:1.1rem;
}
#map .parkinglink a img{
	margin-left:5px;
	vertical-align:middle;
}
#plan{
	max-width: 950px;
	margin: auto;
}
#plan h2{
	font-family: Arial, Verdana, 'Helvetica Neue', Helvetica, sans-serif;
	font-weight:bold;
	font-size:1.4rem;
	border:1px solid #000;
	display:inline-block;
	padding:4px 6px;
	margin-bottom:10px;
}
#plan .text{
	float:left;
	width:190px;
}
#plan .text p{
	font-size:1.4rem;
	line-height:1.5em;
}
#plan .text p ~ p{
	margin-top:1em;
}
#plan img{
	float:right;
}
#plan .clearfix{
	position:relative;
	margin-bottom:50px;
}

/* news
-----------------------------------------------------*/
h1.newstitle{
	margin-top: 300px;
	margin-bottom: 110px;
	text-align: center;
}
h1.newstitle .en{
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	font-size: 5rem;
}
h1.newstitle .jp{
	font-size: 1.3rem;
	display: inline-block;
	margin-top: 15px;
}
.newstitle + .newssection{
	margin-top: 0;
}
article.post{
	max-width: 840px;
	margin: 0 auto;
	padding: 0 20px;
}
.postmeta{
	display: flex;
	justify-content: center;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	font-size: 1.5rem;
}
.postmeta time{
	margin-left: 2em;
}
h1.posttitle{
	text-align: center;
	font-size: 2.4rem;
	margin-top: 1em;
	line-height: 1.5em;
}
h2.cattitle{
	text-align: center;
	font-size: 2.4rem;
	margin-top: 1em;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
}
.wp-pagenavi{
	text-align: center;
	margin-top: 80px;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: 0.05em;
	font-size: 1.5rem;
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink{
	display: inline-block;
	border: 1px solid #000;
	padding: 10px 13px;
	margin: 0 5px;
}
.wp-pagenavi .current{
	background: #000;
	color: #fff;
}
.wp-pagenavi .pages{
	margin-right: 1em;
}
.wp-pagenavi .nextpostslink{}

/* form
-----------------------------------------------------*/
.contactwrap{
	display: flex;
	justify-content: center;
	margin-bottom: 80px;
}
main{
	display: block;
	line-height: 1.5em;
	max-width: 700px;
	width: 100%;
}
main h2{
	font-size: 20px;
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid #000;
}
#contact .btnbox{
  text-align: center;
}
#contact .btnbox a,
#contact .btnbox button{
  display: inline-block;
  vertical-align: top;
  width: 280px;
  line-height: 65px;
  height: 65px;
  text-align: center;
  color: #fff;
  background: #000;
  border: 0;
  cursor: pointer;
  font-size: 18px;
}
#contact .btnbox a + a{
  margin-left: 20px;
}

#contact .btnbox button{
  margin-left: 10px;
}
main#contact .btnbox{
  margin-top: 2em;
  margin-bottom: 1em;
}
#contact table{
  width: 100%;
	margin: 50px 0;
	font-size: 1.5rem;
}
#contact table.inputtable{
	margin-top: 0;
}
#contact form > table th,
#contact form > table td{
  padding: 15px 0;
  vertical-align: middle;
  line-height: 1.5em;
}

#contact form > table th{
	white-space: nowrap;
}
#contact form > table td{
}
#contact form input,
#contact form select,
#contact form textarea{
  border: 1px solid #eeeeee;
  padding: 15px 10px;
	background: #eeeeee;
	width: 100%;
}
#contact form input:focus,
#contact form select:focus,
#contact form textarea:focus{
	background: #ddd;
}

#contact form input[type="text"],
#contact form input[type="email"]{
  width: 100%;
}
#contact form textarea{
  width: 100%;
  height: 10em;
}
#contact form textarea#addresstextarea{
	height: 3em;
}
#contact form input[type="number"]{
}
#contact form label{
  display: inline-block;
  margin: 5px 0;
}
#contact .required{
  color: #b60000;
}
#contact form > table td table{
  width: auto;
	margin: 0;
}
#contact form > table td table th,
#contact form > table td table td{
  border: 0;
  background: none;
  padding: 5px;
}
#contact form > table td table th{
  text-align: right;
	font-size: 1.5rem;
}
#contact form > table td div.row + div.row{
  margin-top: 10px;
}
#contact form > table p{
	word-break: break-all;
}
#contact form > table p + p{
	margin-top: 1em;
}
/* confirmation form
-----------------------------------------------------*/
#confirmation .flexwrap{
  padding: 60px 0;
}
#confirmation .flexwrap .flexinner{
  width: 100%;
  max-width: 740px;
  padding: 0 20px;
  margin: auto;
}
#confirmation h1{
  text-align: center;
	font-family: "Ramabhadra", sans-serif;
  font-size: 5rem;
}
#confirmation p.logo{
  text-align: center;
  margin-top: 10px;
}
#confirmation h2{
  text-align: center;
  font-size: 1.9rem;
  margin: 3em 0;
}
#confirmation h3{
  font-weight: bold;
  border-left: 8px solid #000;
  padding-left: 10px;
  font-size: 2.1rem;
  margin-bottom: 45px;
}
#confirmation h4{
  font-weight: bold;
  font-size: 2.1rem;
  margin-bottom: 0.5em;
}
#confirmation h5{
  font-weight: bold;
  font-size: 1.8rem;
}
#confirmation .row{
  margin-bottom: 30px;
}
#confirmation input[type="text"],
#confirmation input[type="password"],
#confirmation input[type="date"],
#confirmation select{
  display: block;
  width: 100%;
  border: 0;
  background: #ebeae9;
  font-size: 1.5rem;
  padding: 16px 20px;
  border-radius: 2px;
  color: #000;
}
#confirmation select{
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  position: relative;
  background: #ebeae9 url("../../img/confirm/ico_arrow_down.svg") no-repeat right 20px center;
}
#confirmation .btnbox{
  text-align: center;
  margin-top: 100px;
}
#confirmation .btnbox button{
  background: #ae1e18;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  width: 300px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 100px;
  margin: auto;
  cursor: pointer;
}
#confirmation .btnbox button:disabled{
  background: #666;
}
#confirmation .row.message{
  background: #ebeae9;
  padding: 20px;
  margin-top: 60px;
}
#confirmation .row.message p:first-child{
  font-size: 1.5rem;
  line-height: 1.75em;
}
#confirmation .row.message p:last-child{
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.75em;
}
#confirmation .red{
  color: #ae1e18;
}
#confirmation .ui-datepicker{
  font-size: 1.7rem;
}
#confirmation .formelement{
  position: relative;
}
#confirmation .formelement .password_eye{
  display: block;
  width: 35px;
  height: 35px;
  background: url("../../img/confirm/ico_showpass.svg") no-repeat;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}
#confirmation .formelement .password_eye.active{
  background-position: -35px;
}
.formError .formErrorContent{
  line-height: 1.5em;
}
#confirmation p.error{
  color: #ae1e18;
  margin: 30px 0;
  font-size: 1.5rem;
  text-align: center;
}
#confirmation span.req{
  background: #ae1e18;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  padding: 4px 10px;
  font-weight: normal;
  font-size: 1.2rem;
  vertical-align: 2px;
}
#confirmation span.req:first-child{
  margin-right: 15px;
}
#confirmation .twocol{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#confirmation .twocol .formelement{
  width: 70%;
}
#confirmation #dateselect .date02{
	display: none;
}
#confirmation #dateselect{
	margin-bottom: 15px;
}
#confirmation #dateselect.selectmultiple{
	display: flex;
	align-items: center;
}
#confirmation #dateselect.selectmultiple .datecol{
	width: 50%;
}
#confirmation #dateselect.selectmultiple .date02{
	display: block;
}
#confirmation span.arrow{
	font-size: 2rem;
	padding: 0 1em;
	font-weight: bold;
}
#confirm_header{
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 1px dashed #9d9e9e;
}
#confirm_header h3{
  margin-bottom: 0;
}
#confirmation .border{
  border-bottom: 1px dashed #9d9e9e;
  padding: 60px 20px;
}
#confirmation .border > h2,
#confirmation .wrap > h2{
  text-align: left;
  margin: 0 auto 50px auto;
  font-size: 2.3rem;
}
#confirmation .border > h2{
  max-width: 840px;
}
#confirmation .border .flex{
  display: flex;
  align-items: flex-start;
  max-width: 840px;
  margin: auto;
}
#confirmation .border .flex h4{
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-weight: normal;
  font-size: 1.8rem;
  width: 38%;
  padding-left: 70px;
  position: relative;
  padding-right: 25px;
  margin-top: 4px;
}
#confirmation .border .flex .right{
  flex-grow: 1;
}
#confirmation .border .flex h4 .num{
  display: block;
  width: 33px;
  height: 33px;
  line-height: 32px;
  border: 1px solid #000;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  top: -9px;
  left: 0;
}
#confirmation .border .flex h4 .req{
  margin-left: auto;
}
#confirmation .border.step01 .right p{
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5em;
}
#confirmation .border.step01 .right p + p{
  margin-top: 0.5em;
}
#confirmation .border.step01 .right p.grey{
	font-weight: normal;
	font-size: 1.8rem;
	margin-top: 1.5em;
}
#confirmation .border.step02 .h5input{
	margin-bottom: 15px;
}
#confirmation #inputform{
  padding-bottom: 60px;
}
#confirmation #inputform .btnbox{
  margin-top: 60px;
}
#confirmation input[type="time"]{
  border: 1px solid #9d9e9e;
  padding: 10px;
  display: block;
  width: 100%;
}
#confirmation .border .flex .right p:first-child{
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
}
#confirmation .h5input{
  display: flex;
  width: 100%;
  align-items: flex-start;
}
#confirmation .h5input h5{
  background: #ededed;
  text-align: center;
  height: 45px;
  line-height: 45px;
  margin-bottom: 15px;
}
#confirmation .h5input .box{
  flex: 1 1 0;
}
#confirmation .h5input .box input{
	margin-bottom: 10px;
}
#confirmation .h5input.time .arrow{
  background: #ededed;
  height: 45px;
  line-height: 45px;
}
#confirmation .h5input.time .arrow img{
  vertical-align: 2px;
}
#confirmation p.grey{
  color: #727171;
  line-height: 1.75em;
  font-size: 1.8rem;
  margin-top: 1em;
}
#confirmation #inputform input,
#confirmation #inputform select{
  background-color: #fff;
  border: 1px solid #727171;
}
#confirmation #inputform input:disabled{
  background: #ededed;
  border-color: #9d9e9e;
}
#confirmation .radiobox{
  display: flex;
	align-items: baseline;
  flex-wrap: wrap;
  font-size: 1.8rem;
}
#confirmation .radiobox label{
  margin-right: 1em;
  cursor: pointer;
  margin-bottom: 1em;
  position: relative;
}
#confirmation .radiobox input[type="radio"]{
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
#confirmation .radiobox span.ico{
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../../img/confirm/checkbox.svg") no-repeat;
  opacity: 0.5;
  vertical-align: -7px;
  margin-right: 5px;
}
#confirmation .radiobox span.txt{
  color: #9d9e9e;
  font-weight: bold;
}
#confirmation .radiobox input[type="radio"]:checked + span.ico{
  opacity: 1;
}
#confirmation .radiobox input[type="radio"]:checked + span.ico + span.txt{
  color: #000;
}
#confirmation .radiobox input[type="text"]{
	width: 100%;
	padding: 10px 20px;
	vertical-align: baseline;
}
#confirmation .radiobox > div{
	flex-grow: 1;
}
#confirmation .right .row + .row{
  margin-top: 15px;
}
#confirmation .wrap{
  width: 100%;
  max-width: 950px;
  margin: auto;
  padding: 35px 20px;
}
#confirmation .wrap .h5input.singlerow{
  align-items: center;
}
#confirmation .wrap .h5input.singlerow h5,
#confirmation .wrap .h5input.singlerow label{
  margin-bottom: 0;
}
#confirmation .wrap .h5input.singlerow p{
  font-size: 1.8rem;
}
#confirmation .wrap .h5input.singlerow h5{
  margin-right: 1em;
}
#confirmation .wrap .h5input h5{
  text-align: left;
  padding: 0 15px;
  font-size: 1.5rem;
}
#confirmation .wrap .h5input .box:nth-child(2) input{
}
#confirmation .wrap .h5input .box:nth-child(1) h5 + div{
  padding-right: 5px;
}
#confirmation .wrap .h5input .box:nth-child(2) h5 + div{
  padding: 0 5px;
}
#confirmation .wrap .h5input .box:nth-child(3) h5 + div{
  padding-left: 5px;
}
#confirmation .wrap .h4wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 30px;
}
#confirmation .wrap .h4wrap p{
  font-size: 1.8rem;
  margin-left: auto;
}
#confirmation .billing{
  border: 1px solid #9d9e9e;
  padding: 0;
}
#confirmation .billing .border:last-child{
  border-bottom: 0;
}
#confirmation .billing .border .flex h4{
  justify-content: flex-start;
  padding-left: 0;
  width: 27%;
}
#confirmation .billing .border .flex h4 .req{
  margin-left: 0;
}
#confirmation .billing .h5input + .h5input{
  margin-top: 20px;
}
#confirmation .billing .border .payment{
  display: flex;
  align-items: center;
}
#confirmation .billing .border .payment > div{
  display: flex;
  align-items: center;
}
#confirmation .billing .border .payment span{
  font-size: 1.8rem;
  margin: 0 0.5em;
}
#confirmation .billing .border .payment input{
  width: 9em;
}
#confirmation .billing .border .payment + p{
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-top: 1em;
}
#confirmation .billing .border .zip{
	margin-bottom: 10px;
}
#confirmation .billing .border .zip input{
	width: 10em;
}
#confirmation .billing-confirm{
	display: flex;
	align-items: baseline;
	font-size: 1.5rem;
}
#confirmation .billing-confirm > div:first-child{
	flex-grow: 1;
}
#confirmation .billing-confirm > div.register{
	padding-left: 20px;
}
#confirmation .billing-confirm input[type="checkbox"]{
	margin-bottom: 0;
	vertical-align: -2px;
}
.formError .formErrorContent{
  white-space: nowrap;
}
#confirmation table.confirmtable{
  width: 100%;
  font-size: 1.8rem;
  line-height: 2em;
}
#confirmation table.confirmtable th{
	width: 31%;
}
#confirmation table.confirmtable th,
#confirmation table.confirmtable td{
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  padding: 10px 15px;
}
#confirmation table.confirmtable td{
  font-weight: bold;
}
#confirmation p.btntext{
  text-align: center;
  line-height: 1.75em;
  font-weight: bold;
  font-size: 1.8rem;
}
#confirmation .complete h1{
  font-size: 3.1rem;
  font-weight: bold;
  font-family: "ヒラギノ角ゴ Pro W3", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  margin-bottom: 1.5em;
}
#confirmation .complete p{
  font-size: 2rem;
  line-height: 1.75em;
  margin: 1em auto;
  text-align: center;
}
#confirmation .complete .message p{
  text-align: left;
}
#confirmation #btn_end{
  position: absolute;
  top: 30px;
  right: 30px;
}
#confirmation .wrap > h2.mb{
  margin-bottom: 30px;
}
#confirmation .wrap > h2.mb + .h4wrap{
  margin-top: 0;
}








