@charset "utf-8";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# RESET
# HTML & BODY
# LINK
# HEADER
## NAVIGATION
# CONTENTS
# FOOTER
# FROM

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# RESET
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
*::before,
*::after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
/* =============================================================================
   COMMON
   ========================================================================== */
.cf::after {
	display: block;
	clear: both;
	content: "";
}

/*並び*/
.flex{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.flexTate {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
}
.order1 {
  order: 1;
}
.order2 {
  order: 2;
}
.order3 {
  order: 3;
}
.order4 {
  order: 4;
}
.order5 {
  order: 5;
}

.brSp {
  display: block;
}
.brPc,
.view-pc {
  display: none;
}

/*--------------------------------------------------------------
# HTML & BODY
--------------------------------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 100%;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%; 
}
body {
	font-size: 1.6rem;
	font-family: "A1明朝";
	color: #231815;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
	font-smoothing: antialiased;
  background-image: url(../images/body_bg.jpg);
	font-size: 1.6rem;
}

body.home #wrapper {
  padding: 0 !important;
}
body.page-template-default #wrapper {
  padding-top: 80px;
}


.ffMin {
  font-family: "A1明朝", "游明朝体", "Yu Mincho", YuMincho, serif;
  font-weight: 500;
}
.ffGo {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.ffA1GoM {
  font-family: "A1ゴシック M";
}


/*--------------------------------------------------------------
# LINK
--------------------------------------------------------------*/
a { color: #371500; }
a:visited { color: #371500; }
a:hover, a:focus, a:active { color: #65353b; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }


/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
#headerWrap {
  position: fixed;
  width: 100%;
  height: 58px;
  top:0;
  left: 0;
  transition: all .3s;
  z-index: 5010;
}
body.home #headerWrap,
body[class*="lang"] #headerWrap {
  top: 32px;
}
body.home.topBar #headerWrap,
body[class*="lang"].topBar #headerWrap {
  top: 0px;
}
#headerWrap >.inner {
	height: 58px;
	margin: auto;
	padding: 5px 15px 0 15px;
	position: relative;
}
#headerWrap h1 {
  opacity: 1;
  line-height: 1;
	width: 120px;
  margin-top: 14px;
  transition: all .5s;
}
body.home #headerWrap h1 {
  opacity: 0;
}
body.home.logoOn #headerWrap h1 {
  opacity: 1;
}
#headerWrap h1 a {
  color: #FFF;
  text-decoration: none;
}

/*---------------------------------------------
## NAVIGATION
---------------------------------------------*/
/* OPEN / CLOSE BTNS */
.menu-btn {
  position: fixed;
  width: 25%;
  height: 52px;
  bottom: 0;
  right: 0;
  z-index: 9001;
  display: inline;
  font-size: 24px;
  line-height: 1;
}
.menu-btn a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  /* safari hack */
}
#gnavWrap.pc .menu-btn {

  width: 100%;
  background-color: rgba(225, 219, 210, 0.8);
}
#gnavWrap.pc .menu-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#gnavWrap.pc .menu-btn a::after {
  position: inherit;
}
.btn-open:after {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 18px;
  color: #514747;
  content: "\f394";
  font-family: "Ionicons";
  -webkit-transition: all .2s linear 0s;
  moz-transition: all .2s linear 0s;
  -o-transition: all .2s linear 0s;
  transition-property: all .2s linear 0s;
}

.btn-open:hover:after {
    color: #8E8E8E;
}
.btn-close:after {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 18px;
  color: #fff;
  content: "\f2d7";
  font-family: "Ionicons";
  -webkit-transition: all .2s linear 0s;
  -moz-transition: all .2s linear 0s;
  -o-transition: all .2s linear 0s;
  transition-property: all .2s linear 0s;
}
.btn-close:hover:after {
  color: #FFF;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
	left: 0;
  z-index: 9000;
  display: none;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #333;
  background-image: url(../images/spmenu_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.overlay nav {
  height: 100%;
}

#gnavWrap .insta {
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 2.4rem;
  line-height: 1;
}
#gnavWrap .insta a {
  color: #000;
}
#gnavWrap .navLogo {
  width: 138px;
  margin: 0 auto 2.4rem;
}
#gnavWrap .conMenu {
  margin: auto;
  width: max-content;
}
#gnavWrap .conMenu > ul {
  padding: 50px 0 100px;
}
#gnavWrap .conMenu li {
  margin: 0 8px;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  line-height: 3.2rem;
  color: #FFF;
}
#gnavWrap .conMenu li a {
  line-height: 1;
  color: #FFF;
  position: relative;
  text-decoration: none;
}
#gnavWrap .conMenu li ul.sub li {
	margin: 0;
}
#gnavWrap .conMenu li ul.sub li::before {
	content:'｜';
  color: #FFF;
}
#gnavWrap .conMenu li a {
  line-height: 1;
  color: #FFF;
  position: relative;
  text-decoration: none;
}

/*--------------------------------------------------------------
# CONTENTS
--------------------------------------------------------------*/
#wrapper {
  min-width: 320px;
	min-height: 100%;
	position: relative;
  overflow: hidden;
}

#wrapper > .revBtn {
  display: none;
}

#mainWrap {
	margin: auto;
	text-align: center;
	z-index: 1;
}

#pageMain {
  padding: 58px 0 0;
}
body.home #pageMain {
  padding: 0;
}

#pageContent {
  padding: 60px 0 0;
}

.contentsInner {
  padding: 0 0 60px 0;
}

.sectionTt {
  position: relative;
  margin: 0 auto 40px;
  text-align: center;
}
.sectionTt::after {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -15px;
  width: 54px;
  border-bottom: 2px solid #567B52;
}
.sectionTt img {
  width: auto;
  height: 20px;
}

.pageEnTitle {
  font-family: 'Catamaran', sans-serif;
  font-weight: 400;
  font-size: 2.1rem;
	letter-spacing: 0.6rem;
  margin: 0 auto 30px;
}


/* ACCESS */
#access h2 {
  text-align: center;
  margin: 0 auto 40px;
}
#access h2 img {
  height: 20px;
}

#access .accessInfo {
  padding: 160px 0 30px;
  background-color: #f6f4ed;
  background-image: url(/assets/img/top/access_bg.png);
  background-repeat: no-repeat;
  background-position: -64.4vw top;
  background-size: 174vw;
}
#access .accessInfo .accessInfoInner {
  text-align: left;
  margin: auto;
  width: 90%;
}
#access .accessInfo .accessInfoInner .text {
  margin-bottom: 20px;
  text-align: center;
}
#access .accessInfo .accessInfoInner .text .copy {
  margin: 0 0 30px;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.5rem;
}
#access .accessInfo .accessInfoInner .text .read {
  margin: 0 0 30px;
  font-size: 1.1rem;
  line-height: 2;
}
#access .accessInfo .accessInfoInner .text .btn a {
  display: block;
  font-size: 1.3rem;
  border: 1px solid #000;
  padding: 0 14px;
  height: 28px;
  line-height: 22px;
}

#access .gMap iframe {
  width: 100%;
  height: 320px;
  margin: 0;
  padding: 0;
  line-height: 1;
  vertical-align: bottom;
}


/*-- BUTTON */
.btn {
  display: inline-block;
  line-height: 1;
}
.btn a {
  padding: 15px 25px;
  display: block;
  text-decoration: none;
  transition: all .5s;
}

.btn.toTop a {
  color: #FFF;
  background-color: #000;
  margin-bottom: 80px;
}


/*-- RESERVATION BUTTON */
.revBtn,
.ecBtn {
	background-color: #980C1D;
	display: inline-block;
	font-size: 1rem;
	letter-spacing: 0.2rem;
}
body.home .revBtn,
body.home .ecBtn {
	position: fixed;
	top: 0;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 162px;
  margin: auto;
  z-index: 1500;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	text-orientation: upright;
}
body.home .revBtn {
  top: -180px;
}
body.home .ecBtn {
  bottom: -180px;
}

.revBtn a,
.ecBtn a {
	display: block;
	padding: 15px 18px;
	text-decoration: none;
	color: #FFF;
}

/*-- TICKET */
#ticketBn {
	position: fixed;
  width: 100%;
	bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  background-color: rgba(112, 112, 112, 0.9);
  z-index: 99;
  transition: all .5s;
}
#ticketBn img {
  width: 300px;
}

/*-- COMINGSOON */
.comingsoon {
  position:relative;
  width:100%;
  height:300px;
  display:  table;
}
.comingsoon .inner {
	display:table-cell;
	text-align:center;
	vertical-align:middle;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
#footer {
	width: 100%;
}
#footer .footerInner {
  position: relative;
  margin: auto;
  padding: 30px 0 20px;
}

#footer .logo {
  margin: 0 32% 18px;
}

#footer .footerContents {
  margin: 0 auto 15px;
  font-size: 1.6rem;
}
#footer .footerContents .hotelInfo,
#footer .footerContents .list1,
#footer .footerContents .list2 {
  
}
#footer .footerContents .hotelInfo {
  font-size: 1.2rem;
  text-align: center;
  margin: auto;
}
#footer .footerContents .hotelInfo .telNumber {
  font-size: 1.8rem;
}
#footer .footerContents .contentList {
  display: none;
}
#footer .footerContents .contentList.mobile {
  display: block;
  text-align: center;
}
#footer .footerContents .contentList ul {
  display: inline-block;
  margin: 20px auto;
}
#footer .footerContents .contentList li {
  font-size: 1.3rem;
  display: inline-block;
}
#footer .footerContents .contentList li + li::before {
  content: '／';
  display: inline-block;
}
#footer .footerContents .contentList a {
  text-decoration: none;
}


/* FOOTER FIXED BAR */
.footerBarList {
  background: #eeebdf;
  border-top: 1px solid #ddd;
  font-size: 12px;
  position: fixed;
  bottom: 0;
  table-layout: fixed;
  text-align: center;
  width: 100%;
  z-index: 5001;
  display: table;
  /*! display: none; */
}
.footerBarList a {
  display: block;
  text-decoration: none;
  padding: 5px 0;
  line-height: 1;
  font-size: 1.2rem;
  color: #514747;
}

.footerBar {
  display: table-cell;
  height: 52px;
  vertical-align: middle;
}
.footerBar + .footerBar {
  border-left: 1px solid #ddd;
}
.footerBar:only-child .dp-footer-bar-icon {
  display: block;
  position: relative;
}
.footerBar:only-child .dp-footer-bar-icon:before {
  position: absolute;
  right: 15px;
}

.footerBar a:before {
  display: block;
  font-family: 'Material Icons';
  font-size: 16px;
  margin-bottom: .1em;
}
.footerBar-acc a:before {
  content: "\e55f";
}
.footerBar-tel a:before {
  content: "\e0cd";
}
.footerBar-fair a:before {
  content: "\e614";
}
.footerBar-res {
  background: #919261;
}
.footerBar-res a {
  color: #FFF;
}
.footerBar-res a:before {
  content: "\e614";
}
.footerBar-men a:before {
  content: "";
}
.footerBar-men .ft-menu {
  height: 100%;
}
.footerBar-men .footerBarIcon {
  display: inline-block;
  height: 39px;
}

#footer #footerCopy {
	font-size: 1rem;
  text-align: center;
  padding: 10px;
}


/* LANGUAGE */
#gnavLangWrap {
  position: fixed;
  top: 17px;
  right: 136px;
  width: 74px;
  text-align: center;
  transition: all .3s;
  z-index: 2000;
}
body.home #gnavLangWrap,
body[class*="lang"] #gnavLangWrap{
  position: absolute;
  top: 17px;
  right: 64px;
}
body.home.topBar #gnavLangWrap {
  position: fixed;
  top: 17px;
}
body.gn-close #gnavLangWrap {
  display: none;
}
body.page-lang #gnavLangWrap {
  position: absolute;
  right: 0;
  width: 100px;
}
#gnavLangWrap > p {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 100%;
  line-height: 1;
  color: #090909;
  margin: 0 0 5px 0;
  cursor:  pointer;
}
#gnavLangWrap > p a {
  color: #000;
  text-decoration: none;
}
#gnavLangWrap > p span {
  vertical-align: middle;
}
body.page-lang #gnavLangWrap > p {
  color: #000;
}
#gnavLangWrap > p::before{
  font-family: 'Material Icons';
  content: "\e894";
  font-size: 2.4rem;
  position: absolute;
  display:  block;
  top: 50%;
  left: 0;
  margin: -1rem 0 0 0;
}
#gnavLangWrap > p::after{
  font-family: 'Material Icons';
  content: "\e5c5";
  font-size: 2.4rem;
  position: absolute;
  display:  block;
  top: 50%;
  right: 0;
  margin: -1.2rem 0 0 0;
}
#gnavLangWrap .langChage {
  display: none;
}
#gnavLangWrap .langChage ul {
  background: rgba(0,0,0,0.9);
    visibility: hidden;
    opacity: 0;
}
#gnavLangWrap:hover .langChage {
  display: block;
}
#gnavLangWrap:hover .langChage ul {
    visibility: visible;
    opacity: 1;
}
#gnavLangWrap .langChage li{
  line-height: 1;
  border-bottom: 1px solid #333333;
}
#gnavLangWrap .langChage li:last-child{
  margin-bottom: 0;
  border-bottom: none;
}
#gnavLangWrap .langChage li a {
  color: #ffffff;
  display: block;
  padding: 15px 0;
  text-align: center;
  text-decoration:  none !important;
  transition: all 0.4s ease 0s;
}
#gnavLangWrap .langChage li a:hover,
#gnavLangWrap .langChage li a.active{
  color: #555;
}


/*--------------------------------------------------------------
# FROM
--------------------------------------------------------------*/
#formBody {
  margin: 0 auto 50px;
  padding: 0;
  text-align: left;
}

#formBody >p.read {
  width: 90%;
  text-align: left;
  margin: 0 auto 30px;
  font-size: 1.3rem;
}

#formBody .formTable {
  width: 94%;
  margin: auto;
}

#formBody table {
  margin: 0 auto 20px;
  border-collapse: separate;
  border-spacing: 3px;
}

#formBody th,
#formBody td {
  font-size: 1.4rem;
  background-color: #EFEFEF;
  padding: 8px !important;
  width: 100%;
  display:block;
  box-sizing: border-box;
}
#formBody td {
  padding: 0 8px 8px 8px !important;
}
#formBody td .memo {
  font-size: 1.1rem;
}

#formBody th {
  font-weight: bold;
}
#formBody th span {
  font-size: 1.2rem;
  display: inline-block;
  padding: 0 .4em 1px;
  border-radius: 2px;
  letter-spacing: .2em;
  text-indent: .2em;
  font-size: 1rem;
  background-color: #c20d23;
  color: #fff;
  margin: 2px 0 0 0;
  float: right;
}

#formBody .douiWrap {
  border: 1px solid #ccc;
  font-size: 12px;
  margin-bottom: 15px;
  padding: 15px;
  clear: both;
  background-color: #feffff;
}
#formBody .douiWrap li {
  list-style: disc;
  list-style-position: inside;
}
#formBody .douiWrap .douiBtn {
  text-align: center;
  padding: 5px 0;
  background-color: #f8eaea;
}

#formBody .mwform-radio-field label {
	line-height: 1;
  margin-right: 20px;
  display: inline-block;
}

input[type="radio"],
input[type="checkbox"]{
  -webkit-transform: scale(1.3) translate3d(0, 0, 0);
  transform: scale(1.3) translate3d(0, 0, 0);
  margin-right: 0.5em;
  -webkit-backface-visibility: hidden;
  outline: 1px solid transparent;
}

#formBody input[type=text],
#formBody input[type=email],
#formBody input[type=tel],
#formBody input[type=date],
#formBody input[type=number],
#formBody textarea {
	border: 0;
	padding: 6px 4px;
	color: #5E5851;
	border: 1px solid #ccc;
	margin: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #FFF;
	font-size: 1.6rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	-webkit-appearance: none;
}
#formBody textarea {
  box-sizing: border-box;
  width: 100%;
}
#formBody input[type=number].ninzu {
  width: 80px;
}

#formBody input[type=text]:focus,
#formBody input[type=email]:focus,
#formBody input[type=tel]:focus,
#formBody input[type=date]:focus,
#formBody textarea:focus { border: solid 1px #EEA34A; }

#formBody select {
  width: 100%;
	border: 0;
	padding: 8px;
	color: #5E5851;
	border: 1px solid #ccc;
	margin: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #FFF;
}

#formBody .radio {
	line-height: 21px;
	height: 21px;
}

#formBody .zipWrap {
  margin-bottom: 5px;
}
#formBody .zipWrap input {
  width: 120px;
}
#formBody .prefWrap {
  margin-bottom: 5px;
}
#formBody .addrWrap input {
  width : 96%;
  width : -webkit-calc(100% - 3em) ;
  width : calc(100% - 3em) ;
}

#formBody .revday1 input,
#formBody .revday2 input {
  width: 180px;
}
#formBody .formNop input {
  width: 5em !important;
}
#formBody .revday1 select,
#formBody .revday2 select {
  width: 140px;
}

#formBody .revday1 .error,
#formBody .revday2 .error {
  display: inline-block;
}

#formBody label em {
	font-size: 14px;
	font-style: normal;
	color: #C00;
}

#formBody p.note {
	margin-left: 140px;
	font-size: 10px;
	color: #333;
}

#formBody p.note2 {
	font-size: 12px;
	color: #286693;
	line-height: 1.4;
}

#formBody div.putbtn {
	margin: 0 auto 20px;
	text-align: center;
	padding: 15px 0 0 0;
}

#formBody .formEndmessage {
	padding: 15px;
	background-color: #FAFBFC;
}

#formBody .parsley-custom-error-message {
  color: #c20d23;
}

#formBody .formCheck {
  display: table;
  border: 1px solid #828282;
  padding: 10px;
  width: 90%;
  margin: 0 auto 20px;
  background-color: #fefdfc;
}
#formBody .formCheckBtn {
  text-align:center;
}
#formBody .formCheckBtn,
#formBody .formCheckTxt {
  padding: 0 10px;
  font-size: 1.2rem;
  vertical-align: middle;
}

#formBody .formBtn {
  text-align:center;
}
#formBody input[type=reset],
#formBody input[type=submit] {
	border: solid 1px #ccc;
	padding: 15px 60px;
	margin: 0 auto 20px;
	font-size: 1.6rem;
	cursor: pointer;
	background-color: #000;
	color: #fff;
	-webkit-appearance: none;
}

#formBody input[type=reset]:hover,
#formBody input[type=submit]:hover { background-color: #646464; }

#formBody input[type=reset]:active,
#formBody input[type=submit]:active {
	background-color: #6A6A6A;
	padding: 15px 75x;
}


#formBody .formNote {
  font-size: 1.2rem;
  margin: 0 auto 20px;
}


#fromEndWrap {
  margin: auto;
  width: 90%;
  text-align: left;
}
#fromEndWrap .fromEndRead1 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: bold;
}
#fromEndWrap .fromEndRead2 {
  margin-bottom: 30px;
}
#fromEndWrap .fromEndRead3 {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
#fromEndWrap .formEndInfo {
  font-size: 1.6rem;
}


/* ====================
# DLIGHT GROUP
==================== */
#groupFooterWrap {
  margin: auto;
  padding-bottom: 80px;
}
#groupFooterWrap .dlightLogo {
  text-align: center;
}
#groupFooterWrap .dlightLogo img {
  width: 160px;
  height: auto;
}

#footerBar {
  padding:10px 0;
  text-align: center;
}
#footerBar li {
  display: -moz-inline-box;
  display: inline-block;
  zoom: 1;
  font-size: 1.4rem;
}
#footerBar li a {
	color:#FFFFFF;
	padding:0 10px;
	text-decoration:none;
}
#footerBar li a:hover {
  color: #E8E8E8;
}
#footerBar li:first-child::before,
#footerBar li::after {
	content:"  ／  ";
	color:#FFF;
	font-size:14px;
  line-height: 1;
}
#groupLinkWrap {
  background-color: #efefef;
}
#groupLink {
  margin: auto;
  text-align: left;
  font-size: 1.1rem;
  color: aliceblue;
}
#groupLink a {
  color:rgba(245,245,245,1.00);
  text-decoration:none;
  display: block;
  padding: 3px;
}
#groupLink a:hover {
  color:rgb(185, 176, 157);
}
#groupLink > ul > li {
  margin: 0 0 15px 0;
}
#groupLink h1 {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
#groupLink h2 {
  font-size: 1.2rem;
  font-weight: normal;
  clear: both;
  line-height: 1.5;
}
#groupLink > ul li h2:first-child {
  clear: none;
}
#groupLink > ul li > ul li {
  white-space: nowrap;
  line-height: 1.5;
  margin-bottom: 6px;
  border-bottom: 1px solid #b3ada2;
}
#groupLink #glClose {
  text-align: center;
  font-size: 1.2rem;
}

.accordionbox{
	width: 90%;
	background: #ffffff;
	margin: 10px auto 20px;
	padding: 5px;
	display: block;
}
.accordionlist dt{
    display:block;
    background: #4c4c4c;
    padding: 10px 0 10px 5px;
    border-top: 1px solid #DFDFDF;
    color: #FFF;
}
.accordionlist dt:first-child{
    border-top: none !important;
}
.accordionlist dt .title{
    padding-left: 10px;
    float: left;
    line-height: 1;
}
.accordionlist dd{
    display:none;
    background: #4c4c4c;
    padding: 0 15px 20px 15px;
}
.accordion_icon,
.accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.accordion_icon {
	position: relative;
	width: 30px;
	float: right;
	margin-top: 2px;
	margin-right: 5px;
}
.accordion_icon span {
	position: absolute;
	left: 6px;
	width: 50%;
	height: 2px;
	background-color: #ffffff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}
.accordion_icon span:nth-of-type(1) {
    top: 5px;
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
    top: 5px;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
/*＋、×切り替え*/
.accordion_icon.active span:nth-of-type(1) {
	top: 5px;
    transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.accordion_icon.active span:nth-of-type(2) {
	top: 5px;
    transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

