/* ----------
	common
---------- */
body {
	background: #fafafa;
	color: #535043;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif;
}
@media (min-width: 768px) {
	body {
		min-width: 1200px;
	}
}
.container {
	overflow-x: hidden;
	width: 100%;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

table {
    border-collapse: collapse;
    text-indent: initial;
    border-spacing: 2px;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

hr {
   border-width: 1px 0px 0px 0px; /* 太さ */
   border-style: solid; /* 線種 */
   color: #918c75;   /* 線色 */
   height: 1px;         /* 高さ(※古いIE用) */
}

p {
	line-height: 300%;
}

.b {
	font-weight: bold;
}
.big {
	font-size: 1.25em;
}
.small {
	font-size: .8em;
}

.purple{
	color: #aec5eb;
}

.btn a{
	background: #918c75;
	color: #fff;
	padding: 10px 30px;
	text-decoration: none;
}

.btn{
	transition: all .3s;
}

.btn:hover{
	opacity: 0.7 ;
	transition: all .3s;
}

mark {
	background: linear-gradient(transparent 70%, #e9afa3 0%);
}

.marker-animation.active{
    background-position: -100% .5em;
}
 
.marker-animation {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
    font-weight: bold;
}

/*改行*/
@media screen and (min-width: 768px){
.br-sp {display: none; }
}

@media screen and (max-width: 767px){
.br-pc {display: none; }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

@media (min-width: 768px){
	.pc-display-none{
		display: none;
	}
}

@media (max-width: 767px){
	.sp-display-none{
		display: none;
	}
}

/*フワッとさせたい*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

.fadein-left {
  opacity : 0;
  transform: translateX(-1400px);
  transition: all 1.5s;
}

.fadein-load {
  opacity : 0;
  transition: all 2s;
}


/*リンク先位置調整*/
.anchor{
    padding-top: 200px;
    margin-top: -200px;
}
@media (max-width: 767px){
	.anchor{
	    padding-top: 100px;
	    margin-top: -100px;
	}
}




/* ----------
	header
---------- */

header{
	background: #bbbcae;
	height: 80px;
}

nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 25px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #535043;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/*============
.outer-menu
=============*/
.outer-menu{
	display: inline-block;
	width: fit-content;
	margin-right: 100px;
	margin-left: auto;
	margin-top: 15px;
	padding-left: 300px;
}

.outer-menu ul{
	display: flex;
	list-style: none;
}

.outer-menu li a{
	margin: 0 15px;
	text-decoration: none;
	color: #fff;
}

.logo{
	width: 200px;
	margin-left: 50px;
}

@media screen and (max-width: 767px){
	.outer-menu{
		display: none;
	}

	.logo{
		width: 150px;
		margin-top: 35px;
		margin-left: 30px;
	}
}

/* ----------
	footer
---------- */
#site-footer {
	padding-top: 30px;
	text-align: center;
	width: 100%;
	height: fit-content;
	background: #bbbcae;
}

#footer-in{
	padding: 20px 0 0;
}

#footer-in h1{
	font-size: 14px;
	font-weight: normal;
	color: #fff;
}

#footer-in p{
	color: #fff;
}

#copyright{
	padding: 0 0 50px;
	color: #fff;
}


/* ----------
	index
---------- */

/* common */
.index section {
	padding: 80px;
}
@media (max-width: 767px){
	.index section {
		padding: 40px 0;
	}
}

.index h2 {
	font-size: 36px;
	margin: 20px 0 0;
	font-weight: normal;
}

@media (max-width: 767px) {
	.index h2 {
		font-size: 6vw;
	}
}

.index .body {
	padding: 0 200px;
	max-width: 1200px;
}
@media (max-width: 767px) {
	.index .body {
		padding: 0 20px;
	}
}


/* /common */

.img-box {
    position: relative;
}

.sample-box{
	position: relative;
}

.flex-box{
	display: flex;
	flex-wrap: wrap;
}

h3.tit-en{
	font-size: 60px;
	font-weight: normal;
	color: #918c75;
	margin-top: 80px;
	margin-bottom: 5px;
}

img.tit-line{
	display: block;
	width: 100px;
}

p.tit-jpn{
	font-size: 18px;
	color: #918c75;
}

img.italic{
	width: 300px;
	display: block;
  padding-right: 100px;
  margin: 0 auto;
}

.index hr{
	width: 70px;
}



/*SP表示*/
@media (max-width: 767px){
	h3.tit-en{
		font-size: 2.0rem;
	}

	img.tit-line{
		width: 50px;
	}

	p.tit-jpn{
		font-size: 0.8rem;
		margin-top: 0;
	}

	img.italic{
		width: 200px;
	  padding-right: 70px;
	  margin: 50px auto 0;
	}

	.index hr{
		width: 40px;
	}
}





/* section-1 */
/*PC表示*/
.index #section-1{
	background-image: url(../img/title-back-flow.png);
	background-repeat: no-repeat;
	background-position-x: 80px;
	background-position-y: 80px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.index #section-1 .section-tit{
	margin-left: 70px;
}

.index #section-1 .section-txt img{
	width: 180px;
	display: block;
	margin: 50px auto 50px;
	border-style: none;
	border-radius: 50%;
}

.index #section-1 .section-txt p{
	text-align: center;
	
}

.index #section-1 img.italic{
	width: 350px;
}


/*SP表示*/
@media (max-width: 767px){
	.index #section-1{
		background-size: 60vw;
		background-position-x: 20px;
		background-position-y: 85px;
		padding-bottom: 0;
	}

	.index #section-1 .section-tit{
		margin-left: 40px;
	}

	.index #section-1 .section-txt{
		width: 90%;
		padding: 0 20px 20px;
		margin: 0px auto;
	}

	.index p.font-size1rem{
		font-size: 1rem;
	}

	.index #section-1 .section-txt img{
	width: 40%;
	}

	.index #section-1 .section-txt p{
		font-size: 0.8rem;
		margin-bottom: 20px;
	}

	.index #section-1 img.italic{
		width: 250px;
	}

}




/* section-2 */

/*PC表示*/
.index #section-2{
	padding-top: 0;
}

.index #section-2 h4{
	font-weight: normal;
	font-size: 24px;
}

.index #section-2 p{
	line-height: 200%;
}


.index #section-2 .flow{
	margin-bottom: 60px;
	position: relative;
}

.index #section-2 .flow img{
	position: absolute;
	top: -30px;
	left: 150px;
	width: 100px;
}

.index #section-2 .flow-bkg{
	width: 900px;
	padding: 10px 50px 20px 80px;
	margin: 0 auto;
}

.index #section-2 .flow-1-bkg{
	background: rgba(229, 224, 210, 0.2);
}

.index #section-2 .flow-2-bkg{
	background: rgba(229, 224, 210, 0.3);
}


.index #section-2 .flow-3-bkg{
	background: rgba(229, 224, 210, 0.4);
}


.index #section-2 .flow-4-bkg{
	background: rgba(229, 224, 210, 0.5);
}


.index #section-2 .flow-5-bkg{
	background: rgba(229, 224, 210, 0.6);
}


.index #section-2 .flow-6-bkg{
	background: rgba(229, 224, 210, 0.7);
}


.index #section-2 .flow-7-bkg{
	background: rgba(229, 224, 210, 0.8);
}


/*SP表示*/
@media (max-width: 767px){

	.index #section-2{
		margin-top: 30px;
	}

	.index #section-2 .flow-bkg{
		width: 90%;
		padding: 20px;
		margin: 0 auto;
	}

	.index #section-2 h4{
		font-weight: normal;
		font-size: 18px;
		text-align: center;
	}

	.index #section-2 p{
		line-height: 200%;
		font-size: 0.8rem;
	}

	.index #section-2 .flow img{
		top: -30px;
		left: 20px;
		width: 100px;
	}

}





/* contact */
#contact{
	background-image: url(../img/AdobeStock_124820403.jpeg);
	background-size: 100%;
	background-repeat: no-repeat;
	padding: 80px;
}

#contact .contact-bkg{
	background: #fafafa;
	border: solid #6d653b 1px;
	background-image: url(../img/contact.png);
	background-size: 130px;
	background-position-x: 20px;
	background-position-y: 20px;
	background-repeat: no-repeat;
	width: 700px;
	height: fit-content;
	margin: 0 auto;
	padding: 40px;
}

#contact .contact-bkg p{
	text-align: center;
}


#contact .contact-bkg .btn{
	width: fit-content;
	margin: 0 auto;
}

#contact .contact-bkg .btn a{
	padding: 15px 60px;
	background-image: url(../img/contact-btn-background.png);
	background-size: 100%;
}


@media (max-width: 767px){
	#contact{
		background-size: cover;
		padding: 50px 0;
	}

	#contact .contact-bkg{
		width: 90%;
		background-size: 100px;
		padding: 40px 20px;
	}

	#contact .contact-bkg p{
		font-size: 0.8rem;
	}

	#contact .contact-bkg .btn a{
		padding: 10px 30px;
		font-size: 0.8rem;
	}
}