@charset "utf-8";
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
/* CSS Document */
/* -------------------------------------------- Basic Setting */	
html { 
	scroll-behavior: smooth;
}

body{
	font: 14px/1.6 "Hiragino Kaku Gothic Pro",Osaka,"メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Arial,sans-serif;
	margin:0;
	color:#313131;
	width: 100%;
	max-width: 100%;	
	
}

/*--
a{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:visited{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover {
    color: #F5A862;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
--*/

@media screen and (min-width: 768px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 767px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

.anchor {
  display: block;
    padding-top: 100px;
    margin-top: -100px;
}

.anchorB {
  display: block;
    padding-top: 300px;
    margin-top: -200px;
}


/* -------------------------------------------- Header */
/*
.header-box {
  height: 80px;
}
@media screen and (max-width: 767px) {
	.header-box {
		height:70px;		
	}
}
*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:rgba(181,161,135,0.7);
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

header .logo {
	width: 20%;
	height: 80px;
	display:table-cell;
	text-align: left;
	line-height: 80px;
	font-size: 20px;
	font-weight: 600;
	padding-left:40px;
	background: #430000;
}
header .logo a img {
	height:70%;
	vertical-align: middle;
	float:left;
	margin-right:10px;
	padding-top:20px;
	transition: .5s;
}
header .logo a:hover img {
	opacity:0.4;
}


header .logo h1 {
	display:block;
	margin-left:10px;
	color:#999999;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight:bold;
	font-size:1rem;
}


@media screen and (max-width: 767px){
	.psBanner {
		width:80%;
	}
}



header nav.pc-menu {
  width: 90%;
}

header nav.pc-menu ul {
  width: 100%;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav.pc-menu ul li {
  width: 33%;
}

header nav.pc-menu ul li a {
  display: block;
  width: 100%;
  text-align: center;
	transition:.5s;
	color:#dccccc;
	font-weight:bold;
	position:relative;
	border-left:solid 1px #000000;
	height:80px;
	padding-top:20px;
}

header nav.pc-menu ul li a::after{
	position:absolute;
	left:0;
	content:'';
	width:100%;
	height:4px;
	background:#d18686;
	bottom:-1px;
	transform:scale(0,1);
	transform-origin:left top;
	transition:transform 0.3s;
}

header nav.pc-menu ul li a:hover::after {
	transform:scale(1,1);
}

header nav.pc-menu ul li a span {
	display:block;
	color:#f07d7d;
	font-size:.6rem;
	font-weight:normal;
	line-height:10px;	
}

.sm {
  display: none;
}



/**********************************　
以下、ハンバーガーメニューの設定　
************************************/

@media screen and (max-width: 767px){
  header nav.pc-menu {
    display: none;
  }
	header .logo {
		width: 80%;	
		padding-left:20px;
	}
	header .logo h1 {
		font-size:.8rem;
		display:none;
	}

  #hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin: 10px 0 0 auto;
    height: 60px;
    width: 60px;
	  z-index:2000;
  }

  #hamburger .icon span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #eeeeee;
    border-radius: 8px;
    transition: ease 0.75s;
  }

  .icon span:nth-of-type(1) {
    top: 16px;
  }
  .icon span:nth-of-type(2) {
    top: 28px;
  }
  .icon span:nth-of-type(3) {
    bottom: 16px;
  }

  .close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
  }

  .close span:nth-of-type(2) {
    opacity: 0;
  }

  .close span:nth-of-type(3) {
      transform: rotate(-45deg);
      top: 28px;
  }

  .sm {
      top: 70px;
      left: 0px;
      position: absolute;
      z-index: 10;
      width: 100%;
      background-color: rgba(34, 49, 52, 0.95);
  }
  .sm ul {
	  width:100%;
	  display:flex;
    flex-direction: column;
  }
	.sm ul li {
		width:100%;
		text-align: center; 
		 border-top: solid 0.5px rgba(255, 255, 255, 0.2);
		padding-top:30px;
		padding-bottom:30px;
	}

  .sm ul a {    
	  color:#dccccc;
	  transition:.5s;
  }
	.sm ul a span {
		display:block;
		color:#f07d7d;
		font-size:.6rem;
		font-weight:normal;
		line-height:10px;	
	}
	.sm ul a {
		
	}
}

/* -------------------------------------------- Layout共通 */
.wrapper {
	width:100%;
	max-width: 100%;
}

.container {
	width:900px;
	margin:0 auto;
}

@media screen and (max-width: 767px){
	.container {
		width:90%;
	}
	.wrapper {
		width:100%;
		max-width: 100%;
	}
}
/* -------------------------------------------- title共通 */
.cmnTitle {
	margin:0 auto 60px;
	padding-top:20px;
	text-align:center;
}

.cmnTitle h2 {
  position: relative;
  display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:3.5vh;
}
.cmnTitle h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 50px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ad2f2f;
  border-radius: 2px;
}

/* -------------------------------------------- Hero */
.hero {
	width: 100%;
	background-image:url("../i/hero_pc_02.jpg"); 
	background-repeat:no-repeat;
	background-position:top center;
	background-size:contain;
	background-color:#000000;
}
.hero::before {
	content: '';
	display: block;
	padding-top:27%;
}

@media screen and (max-width: 767px){
	.hero {
		background-image:url("../i/hero_sp_02.jpg"); 
		
	}
	.hero::before {
		padding-top:55%;
	}
}

/* -------------------------------------------- Thesis */
.thesis {
	width: 100%;
	max-width: 100%;
	background-color:#000000;
	background-image:url("../i/galaxy_back.jpg");
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: 50% 30%;
	margin:0;
	padding:50px 0;
}


.thesis h3 {
	text-align:center;
	font-size:1.1rem;
	font-weight:normal;
	color:#ffffff;
	font-family: "Zen Antique", serif;
	margin-bottom:10px;
	
}

.thesis h3 span {
	font-size:1.4rem;
	font-weight:500;
}

.thesis h2 {
	text-align:center;
	font-size:1.8rem;
	font-weight:500;
	color:#ffffff;
	font-family: "Zen Antique", serif;
	border-bottom:solid 2px #ffffff;
	margin-bottom:40px;
}

p.thesisNotice {
	text-align:center;
	font-size:.7rem;
	color:#b5a687;
}

@media screen and (max-width: 767px) {
	.thesis {
		background-size: 200%;
	}
	.thesis h2 {
		font-size:1.6rem;		
	}
}

/* -------------------------------------------- keyCopy */
.keyCopyWrapper {
	width: 100%;
	max-width: 100%;
	background:#c1c3c2;
	margin:0;
	padding:50px 0;
}


.keyCopy {
	width: 80%;
	margin:0 auto;
	padding:40px 0;
	background-image:url("../i/quatation_left.png"),url("../i/quation_right.png");
	background-repeat: no-repeat, no-repeat;
	background-size:15%;
	background-position:top left,100% 100%;
}


.keyCopy p {
	text-align:center;
	font-size:1.1rem;
	font-weight:normal;
	color:#000000;
	font-family: "Zen Antique", serif;
	
}

.keyCopy p span {
	font-size:1.4rem;
	font-weight:500;
}

.keyCopy h2 {
	text-align:center;
	font-size:1.3rem;
	font-weight:500;
	color:#000000;
	font-family: "Zen Antique", serif;
	margin-bottom:20px;
	
}
@media screen and (max-width: 767px) {
	.keyCopy h2 {
		font-size:1.1rem;		
	}
	.keyCopy p {
		font-size:.8rem;
	}
	.keyCopy {
		background-position:top left,100% 92%;
	}
}

/* -------------------------------------------- Message */
.message {
	width: 100%;
	max-width: 100%;
	margin:0;
	padding:40px 0;
	border-top: 4px solid #eac676;	
	border-image: linear-gradient(to right, #d87f00 0%, #ffde98 10%, #d59d3c 50%, #d87f00 80%, #ffde98 100%);
	border-image-slice: 1;
	background:#2f1602;
}
.message dl {
	width:1100px;
	margin:0 auto;
	display:flex;
	justify-content: space-between;	
	color:#ffffff;
}

.message dl dt {
	width:40%;
}
.message dl dt dl {
	width:100%;
	display:flex;
	justify-content: space-between;
}

.message dl dt dl dt {
}
.message dl dt dl dt img{
	width:100%;
	border:solid 1px #805d5a;
}
.message dl dt dl dd {
}

.message dl dt dl dd h2{
	font-size:1.7rem;
	font-weight:bold;
	font-family: "Zen Antique", serif;
}
.message dl dt dl dd h5 {
	display:block;
	widht:100%;
	font-size:.9rem;
	font-weight:bold;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	border-bottom:solid 1px #805d5a;
	margin-bottom:10px;
	padding-bottom:5px;
}
.message dl dt dl dd h6 {
	font-size:.8rem;
}
.message dl dd {
	width:55%;
	font-size:1.1rem;
	font-weight:300;
	font-family: "Zen Antique", serif;
}
@media screen and (max-width: 767px) {
	.message dl {
		width:85%;
		justify-content:center;
		flex-direction:column;
	}
	.message dl dt {
		width:100%;
		margin-bottom:20px;
	}
	.message dl dd {
		width:100%;
	}
	.message dl dt dl dt {
		text-align:center;
	}
	.message dl dt dl dt img {
		width:70%;
	}
}


/* -------------------------------------------- bookGuide */
.bookGuide {
	width: 100%;
	max-width: 100%;
	background-image:linear-gradient(to bottom, #2f1602 0%, #050505 100%);
	margin:0;
	padding-bottom:20px;
}
.bgTitle {
	width: 100%;
	max-width: 100%;
	padding:20px 0;
	margin:0 auto 40px;
	background-image:linear-gradient(to right, #b58531 0%, #dbc080 10%, #d59d3c 50%, #b58531 80%, #dbc080 100%);
}


.bgTitle h2 {
	text-align:center;
	font-size:1.8rem;
	font-weight:500;
	color:#2d1509;
	font-family: "Zen Antique", serif;
	
}
@media screen and (max-width: 767px) {
	.bgTitle h2 {
		font-size:1.4rem;		
	}
}

.bookGuide h3 {
	text-align:center;
	font-size:1.1rem;
	font-weight:normal;
	color:#ffffff;
	font-family: "Zen Antique", serif;	
}

.bookGuide h3 span {
	font-size:1.4rem;
	font-weight:500;
}

.bookGuide p {
	width:700px;
	margin:0 auto 10px;
	font-size:1.3rem;
	font-weight:normal;
	color:#ffffff;
	font-family: "Zen Antique", serif;
}
.bookGuide p:last-child {
	margin:0 auto 60px;
}

@media screen and (max-width: 767px) {
	.bookGuide p {
		width:90%;
	}
}

.bookChapter {
	width:700px;
	margin:0 auto 20px;
	text-align:center;
}

.bookChapter h2 {
	position: relative;
	display: inline-block;
	padding: 0 55px;
	margin:0 auto 20px;
	color:#fffa98;
	font-size:2rem;
	font-family: "Zen Antique", serif;
	text-shadow:2px 2px 0 #050505,-2px 2px 0 #050505,-2px -2px 0 #050505,2px -2px 0 #050505;
}
.bookChapter h2:before, .bookChapter h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 3px;
}

.bookChapter h2:before {
	left:0;
	background-image:linear-gradient(to right, #d8a100 0%,  #d5ad3c 50%, #fffa98 100%);
}
.bookChapter h2:after {
	right: 0;
	background-image:linear-gradient(to left, #d8a100 0%,  #d5ad3c 50%, #fffa98 100%);
}


.bookLessonWrapper {
	width:100%;
	margin:0 auto 10px;
	display:flex;
	justify-content: space-between;
}

.bookLesson {
	width:49%;
}
.bookLesson dl {
	width:100%;
	display: table;
	margin-bottom:10px;
}
.bookLesson dl dt {
	width:90px;
	text-align:center;
	color:#ffffff;
	font-weight:bold;
	font-family: "Zen Antique", serif;
	font-size:.8rem;
	display: table-cell;
    vertical-align: middle;
	background-image:linear-gradient(45deg, #b58531 0%,  #dbc080 100%);
	padding:3px 10px;
}

.bookLesson dl dt span {
	margin-left:10px;
	font-size:1.1rem;
}

.bookLesson dl dd {
	display: table-cell;
    vertical-align: middle;
	text-align:left;
	color:#bab25f;
	font-size:1rem;
	font-weight:bold;
	padding-left:5px;	
}
p.chSupplement {
	text-align:right;
	font-size:.7rem;
	color:#b5a687;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media screen and (max-width: 767px) {	
	.bookChapter {
		width:90%;
	}
	.bookLessonWrapper {
		width:70%;
		flex-direction: column;
	}
	.bookLesson {
		width:100%;
	}
}
/* -------------------------------------------- Limited */
.limitedWrapper {
	width:100%;
	background-color:#000000;
	padding:50px;
} 
.limited {
	width:1000px;
	margin:0 auto 40px;
	padding:30px;
	background-color:#f2f2e8;
	border: 4px solid #eac676;	
	border-image: linear-gradient(to right, #eac676 0%, #f7e9b2 10%, #eac676 50%, #f7e9b2 80%, #eac676 100%);
	border-image-slice: 1;
}
.limited h2 {
	text-align:center;
	margin:0 auto 20px;
	color:#000000;
	font-weight:bold;
	font-family: "Zen Antique", serif;
	font-size:1.2rem;
	line-height:140%;
}
.limited h2 span {
	font-size:1.7rem;
}

.limitedTitle {
	width:100%;
	display:flex;
	justify-content: center;
	background-color:#ffffff;
	border-top: 4px solid #eac676;	
	border-bottom: 4px solid #eac676;
	padding:20px;
	border-image: linear-gradient(to right, #c6b563 0%, #f7e9b2 80%, #c6b563 100%);
	border-image-slice: 1;
	margin-bottom:20px;
}

 .limitedBox {
	width:12%;
}

.limitedBox img{
	width:100%;
}
p.imageNotice {
	font-size:.7rem;
}
.limitedTitle dl {
	width:700px;
	margin-right:20px;
}
.limitedTitle dl dt {
	display:flex;
	justify-content: space-between;
	border-bottom:solid 1px #000000;
}

.limitedTitle dl dt h3{
	font-size:1.4rem;
	font-weight:bold;
	font-family: "Zen Antique", serif;
	line-height:100%;
	background:linear-gradient(to top, #7a614b 0%,  #dec87f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter:drop-shadow(0 1px #000000);
	text-shadow:none;	
}

.limitedTitle dl dt h3 span {
	font-size:1rem;
}

.limitedTitle dl dt h4 {
	font-size:1.2rem;
	color:#827666;	
}
.limitedTitle dl dt h4 span {
	font-size:3rem;
}
.limitedTitle dl dd {
	text-align:center;
	font-size:1.6rem;
	color:#000000;
	font-family: "Noto Serif JP", serif;
}


@media screen and (max-width: 767px) {
	.limitedWrapper {
		padding:10px;
	}
	.limited {
		width:100%;
	}
	.limitedTitle {
		flex-direction: column;
		text-align:center;
	}
	.limitedTitle dl {
		width:100%;		
	}
	.limitedTitle dl dt {
		flex-direction:column;
		justify-content: center;
	}
	.limitedTitle dl dt h3 {
		font-size:1.2rem;
	}
	.limitedTitle dl dd {
		font-size:1.05rem;		
	}
	.limitedBox {
		width:50%;
		margin:0 auto;
	}
}
/* -------------------------------------------- Special Offer */
.specialOffer {
	width:100%;
	margin:0 auto;
	display:flex;
	justify-content: space-between;
}

.specialOffer dl {
	width:31%;
	border-top: 4px solid #eac676;
	border-image: linear-gradient(to right, #c6b563 0%, #f7e9b2 80%, #c6b563 100%);
	border-image-slice: 1;
	background-color:#ffffff;
	padding:10px;
	justify-content: space-between;
	display: flex;
  flex-direction: column;

}
.specialOffer dl dt {
	width:96%;
	margin:0 auto 10px;
	padding-bottom:4px;
	border-bottom:solid 1px #999999;
	
	
}
.specialOffer dl dt h5 {
	width:90px;
	text-align:center;
	color:#ffffff;
	font-weight:bold;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size:.8rem;
	display: table-cell;
    vertical-align: middle;
	background-image:linear-gradient(45deg, #c6b563 0%,  #f7e9b2 100%);
	padding:3px 10px;	
}

.specialOffer dl dt h3 {
	color:#977750;
	font-size:1.1rem;
	font-weight:bold;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.specialOffer dl dd {
	width:100%;
	color:#000000;
	font-size:1rem;
	font-family: "Noto Serif JP", serif;
	font-weight:bold;
}

.specialOffer dl dd ol {
	width:100%;
	list-style-type: decimal;
}
.specialOffer dl dd ol li {
	margin-bottom:5px;
	padding-left:20px;
	list-style-position:inside;
}
.specialOffer dl dd span {
	font-size:.7rem;
}

.specialOffer dl dd.imageInfo {
	width:100%;
	text-align:right;
	font-size:.7rem;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	display: flex;
  flex-direction: column;
	 margin-top: auto;	
}
.specialOffer dl dd.imageInfo img {
	width:100%;	
}

 p.supplement {
	 margin:20px 0;
	 font-size:.7rem;
	 font-family: "Zen Kaku Gothic Antique", sans-serif;	 
}

@media screen and (max-width: 767px) {
	.specialOffer {
		flex-direction: column;
	}
	.specialOffer dl {
		width:100%;
	}
}
/* -------------------------------------------- reccomed */
.recommend {
	width: 100%;
	max-width: 100%;
	margin:0;
	padding:0 0 40px 0;
	
}
.recsTitle {
	width:100%;
	margin:0 auto 20px;
	background-image: linear-gradient(to right, #c6b563 0%, #f7e9b2 50%, #c6b563 100%);
}

.recsTitle h2 {
	width:200px;
	position: relative;
	color:#ffffff;
	font-size:.8rem;
	font-weight:bold;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	background: #2f120c;
	transform: skewX(-45deg);/*傾斜をつける*/
}
.recsTitle h2 span {
	display: block;
	font-size:.8rem;
	transform: skewX(45deg);/*テキストのみ傾斜を戻す*/
}

.recsTitle h2:before, .recsTitle h2:after {
	content: '';
	position: absolute;
	top: 45%;
	display: inline-block;
	width: 17px;
	height: 2px;
	background-color: #2f120c;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.recsTitle h2:before {
	left:-13px;
}
.recsTitle h2:after {
	right: -13px;
}
.recommend dl {
	width:100%;
	margin:0 auto;
	display:flex;
	justify-content: space-between;	
	color:#0000000;
}

.recommend dl dt {
	width:45%;
}
.recommend dl dt dl {
	width:100%;
	text-align:left;
	display:flex;
	justify-content: space-between;
}

.recommend dl dt dl dt {
	width:40%;
}
.recommend dl dt dl dt img{
	width:100%;	
}
.recommend dl dt dl dd {
}
.recommend dl dt dl dd h2{
	text-align:left;
	font-size:1.5rem;
	font-weight:bold;
	font-family: "Zen Antique", serif;
}
.recommend dl dt dl dd h5 {
	display:block;
	widht:100%;
	font-size:.8rem;
	font-weight:bold;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	margin-bottom:10px;
	padding-bottom:5px;
}
.recommend dl dt dl dd h6 {
	font-size:.8rem;
}
.recommend dl dd {
	width:53%;
	font-size:1.1rem;
	font-weight:300;
	font-family: "Zen Antique", serif;
}
@media screen and (max-width: 767px) {
	.recommend dl {
		width:90%;
		justify-content:center;
		flex-direction:column;
	}
	.recommend dl dt {
		width:100%;
		margin-bottom:20px;
	}
	.recommend dl dd {
		width:100%;
	}
	.recsTitle h2 {
		width:120px;
	}
	.recommend dl dt dl dt {
		text-align:center;
		width:100%;
	}
	.recommend dl dt dl dt img{
		width:80%;
	}
	.recommend dl dt dl dd h2 {
		margin-bottom:0;
	}
}

/* -------------------------------------------- Apply */
.apply {
	width:100%;
	background:#b7a387;
	padding:40px 0 20px;
	margin:0 auto 80px;
}
.applyDetail {
	width:800px;
	margin:0 auto 40px;
}

.applyDetail dl {
	width:100%;
	margin:0;
	display:flex;
	justify-content: space-between;
	align-self:flex-end;
}
.applyDetail dl dt {
	width:90%;
}
.applyDetail dl dd {
	width:12%;
}
.applyDetail dl dd img {
	width:100%;
}
p.applyImageNotice {
	font-size:.7rem;
	color:#000000;
}
.applyDetail dl dt dl {
	display:flex;
	width:100%;
	justify-content: space-between;
	align-self:flex-end;
	margin-bottom:10px;
}

.applyDetail dl dt dl dt {
	text-align:center;
	width:110px;
	display:table;
}
.applyDetail dl dt dl dt h5{
	width:110px;
	color:#000000;
	font-weight:bold;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size:.8rem;
	display: table-cell;
    vertical-align: middle;
	background-image:linear-gradient(45deg, #c6b563 0%,  #f7e9b2 100%);
	padding:3px 10px;	
}

.applyDetail dl dt dl dd {
	flex-grow:1;
	font-size:1.2rem;
	font-family: "Zen Antique", serif;
	color:#000000;
	margin-left:20px;
	display: table-cell;
    vertical-align: middle;
	line-height:100%;
}
.applyDetail dl dt dl dd span.date {
	font-size:2.5rem
}
.applyDetail dl dt dl dd span.price {
	font-size:2rem;
}
.applyDetail dl dt dl dd span.notion {
	font-size:.8rem;
}

 p.memberNotice {
	 margin:20px 0;
	 font-size:.7rem;
	 font-family: "Zen Kaku Gothic Antique", sans-serif;	 
}
@media screen and (max-width: 767px){
	.apply {
		padding:40px 20px 20px;
	}
	.applyDetail {
		width:100%;
	}
	.applyDetail dl {
		flex-direction: column-reverse;
	}
	.applyDetail dl dt {
		width:100%;
	}
	.applyDetail dl dd {
		width:100%;
		text-align:center;
		margin-bottom:10px;
	}
	.applyDetail dl dd img {
		width:80%;
	}
	.applyDetail dl dt dl {
		flex-direction: column;
	}
	.applyDetail dl dt dl dt {
		margin-bottom:10px;
	}
	.applyDetail dl dt dl dd {
		text-align:left;
		line-height:120%;
	}
}

/* -------------------------------------------- Order BTN */
.orderWrap {
	width:400px;
	margin:0 auto 40px;
	text-align:center;
}
.orderBtn{
    position: relative;
    padding: 20px 90px;
	transition:.5s;
	background-color:#000000;
	height:120px;
	color:#ffffff;
}
.orderBtn::before{
    content: "";
    position: absolute;
    top: 50%;   /* 縦軸をセンタリングする */ 
    right: 5px;
	color:#ffffff;
    transform: translateY(-50%);   /* 縦軸をセンタリングする */  
    border: 5px solid transparent;
    border-left: 8px solid #ffffff;   /* 好みで色を変えてください */  
	
}
.orderBtn:hover {
	opacity:.5;
}
@media screen and (max-width: 767px){
	.orderWrap {
		width:100%;
	}
}

/* -------------------------------------------- Footer */	
footer {
	width:100%;
	height:250px;
	background-color:#ffffff; 
	text-align:center;
	overflow:hidden;
}
ul.fNav {
	display:flex;
	justify-content: center;
	width:300px;
	margin:0 auto;
	padding:0 0 10px 0;
}
ul.fNav li{	
	margin:0 15px 0 0;
	color:#313131
	
}
ul.fNav li a{
	color:#313131;
		transition:.5s;
}
ul.fNav li a:hover{	
	color:#666666;
	border-bottom:solid 1px #666666;
	opacity:.5;
}
p {
	clear:both;
}

