@charset "utf-8";
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
/* CSS Document */
/* -------------------------------------------- Basic Setting */	
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; }
}



/* -------------------------------------------- Layout���� */
.container {
	width:1000px;
	margin:0 auto;
}
.titleWrap {
	text-align:center;
	margin:0 auto 20px;
	padding-top:30px;
}
.titleWrap h1 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
	font-family:'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-size:1.8rem;
	font-weight:900;
	color:#000000;
}

.titleWrap h1:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: black;
}
.titleWrap h1:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: black;
}

.titleWrap h1:before {
  left:0;
}
.titleWrap h1:after {
  right: 0;
}
.titleWrap h3 {
	font-size:1.8rem;
	font-weight:700;
	font-family:'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	margin-top:20px;
}


@media screen and (max-width: 767px){
	.container {
		width:90%;
	}
	.titleWrap h1 {
		font-size:1.3rem;
	}
	.titleWrap h3 {
		font-size:1.2rem;
	}
}
/* -------------------------------------------- Parts���� */
.fixed_btn
{
  position: fixed;
  bottom: 10px; 
  right: 10px;
  padding: 6px 40px;
	z-index:100;
}
/* -------------------------------------------- Font */
.zen {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
}

.dm {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

/* -------------------------------------------- Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, .6);
	backdrop-filter: blur(20px);
	z-index: 100;
	display: flex;
	justify-content: space-between;
	border-bottom:solid 1px #dddddd;
}

header .logo {
	width: 40%;
	height: 80px;
	display:table-cell;
	text-align: center;
	line-height: 80px;
	font-size: 20px;
	font-weight: 600;
	background: #ffffff;
	text-align:left;
	padding-left:40px;
	
}
header .logo img {
	width:40%;
	vertical-align: middle;
}

header nav.pc-menu {
	width: 60%;
}

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:#444444;
	font-weight:bold;
	position:relative;
	border-left:solid 1px #dddddd;
	height:80px;
	padding-top:45px;
	font-family: "DM Serif Display", serif;
	font-size:1rem;
}

header nav.pc-menu ul li a::after{
	position:absolute;
	left:0;
	content:'';
	width:100%;
	height:4px;
	background:#e74543;
	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:#999999;
	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%;		
	}

  #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: black;
    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: 80px;
      left: 0px;
      position: absolute;
      z-index: 10;
      width: 100%;
      background-color: rgba(34, 49, 52, 0.5);
  }

  .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;
		font-family: "VT323", serif;
	}

  .sm ul a {
    
	  color:#ffffff;
   
  }
}
/* -------------------------------------------- Category Title */
.cateFrame {
	max-width:100%;
	width: 100%;
	height:200px;
	margin: 80px auto 0;
	padding:60px 0;
	text-align:center;
	overflow:hidden;
}


.cateFrame h2 {
	font-size:2rem;
	color:#000;
	font-family: "Zen Antique", serif;
}
.cateFrame.itemTitle h2 {
	color:#fff;
}
.cateFrame.commonBack {
	background:#c5aa58;
}
.cateFrame.aboutTitle {
	height:300px;
	padding:120px 0;
	background:url("../img/about/top_back.jpg")top center no-repeat;
	background-size:cover;
}
.cateFrame.itemTitle {
	background:url("../img/item/top_back.jpg")top center no-repeat;
	background-size:cover;
}

@media screen and (max-width: 767px){
	.cateFrame {
		height:140px;
		padding:40px 0;
	}
}

/* -------------------------------------------- Hero */	
.hero {
	max-width:100%;
	width: 100%;
	height:600px;
	margin: 80px auto 0;
	overflow:hidden;
	background:url("../img/hero/back_pc.jpg")top center no-repeat;
	background-size:cover;
	position:relative;
}
.catchFrame {
	position:absolute;
	bottom:15%;
	left:55%;
	right:45%;	
	width:30%;
}


.catchCopy {
	position:relative;
	width:100%;
	height:200px;
	overflow: hidden;
}

.firstCopy, .secondCopy {
    width: 100%;
	height:200px;
    position: absolute;
    top: 0;
    background: center center no-repeat;
    z-index: 0;
    opacity: 0;
}
.firstCopy {
    background: url("../img/hero/catch01.png")top center no-repeat;
	background-size: contain;
    animation: anime 10s 0s 1;
}
.secondCopy {
    background: url("../img/hero/catch02.png")top center no-repeat;
	background-size: contain;
    animation-delay: 7s;
    animation: anime-end 10s 0s 1;
	animation-fill-mode: both;
}

@keyframes anime {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 0;
        z-index: 10;
}
    100% {
        opacity: 0;
    }
}
@keyframes anime-end {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    60% {
        opacity: 1;
        z-index: 10;
}
    100% {
        opacity: 1;
    }
}
.hero h1 {
	position:absolute;
	bottom:15%;
	left:55%;
	right:45%;
	width:30%;
}

.hero h1 img {
	width:100%;
}

.hero h2 {
	position:absolute;
	top:36%;
	left:50%;
	right:50%;
	width:11%;
}

.hero h2 img {
	width:100%;
	min-height: 100%;
    min-width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px){
	.hero {
		height:1000px;
		background:url("../img/hero/back_sp.jpg")top center no-repeat;
		background-size:cover;
	}
	.catchFrame {
		position:static;
		width:80%;
		margin:460px auto 0;
	}
	
	
}

@media screen and (min-width: 1400px){
	.hero {
		height:900px;
		background-size:cover;
	}
}
@media screen and (min-width: 1800px){
	.hero {
		height:1100px;
		background-size:cover;
	}
}
/* -------------------------------------------- Thesis */	
.thesis {
	max-width:100%;
	width: 100%;
	margin:0 auto;
	background-color:#1c1c1c;
}
.thesisMain {
	width: 800px;
	margin: 0 auto 0;
	padding:40px;
	overflow:hidden;
	background-color:#000000;
	clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.thesisMain h2 {
	font-size:1.8rem;
	text-align:center;
	font-weight:bold;
	color:#ffffff;
	font-family: "Zen Antique", serif;
	font-weight: normal;
}
.thesisMain p  {	
	font-size:1.2rem;
	text-align:center;
	font-weight:bold;
	color:#ffffff;
	font-family: "Zen Antique", serif;
	font-weight: normal;
}



@media screen and (max-width: 767px){
	.thesisMain {
		width:100%;
		clip-path:none;
	}
	.thesisImage {
		width:100%;
		background-size:cover;
	}
	.thesisImage h3 {
		font-size:1.2rem;
	}
	.firstCopy {
	position:absolute;
	top:15%;
	left:10%;
	}
	.secondCopy {
	position:absolute;
	top:65%;
	right:10%;
	}
	.thirdCopy {
	position:absolute;
	top:88%;
	right:10%;
	}
	.thesisMain h2 {
		font-size:1.3rem;
	}
	.thesisMain p {
		font-size:1rem;
	}
}

/* -------------------------------------------- Partner */	
.partner {
	max-width:100%;
	width: 100%;
	margin:0 auto;
	background-color:#ffffff;
}

.slider{
	width:70%;
	margin:40px auto;
	display:flex;
	justify-content: space-around;
}
.slider a img{
	transition: .5s;
}

.slider a img:hover {
	transform: scale(1.1);
	filter: drop-shadow(5px 5px 5px #aaaaaa);
}

.slider img{
	max-width:90px;
	max-height:90px;
}
.slider .slick-slide {
	display: flex !important;
	align-items: center;
	justify-content: center;
	height:140px!important;
}

.slider_reverse{
	width:70%;
	margin:40px auto;
	display:flex;
	justify-content: space-around;
}
.slider_reverse img{
	width:50px;
}
.slider_reverse .slick-slide {
	display: flex !important;
	align-items: center;
	justify-content: center;
	height:140px!important;
}

/* -------------------------------------------- advantage */	
.advantage {
	max-width:100%;
	width: 100%;
	margin:0 auto;
	background:url("../img/adv/back.jpg")top center no-repeat;
		background-size:cover;
}
.oneStop {
	position:relative;
	height:400px;
	margin:40px auto;
}
.advCon {
	z-index:2;
}

.oneStopBack {
	position:absolute;
	top:0;
	left:0;
	width:70%;
	height:100%;
    padding-left:4em;
	-webkit-clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);  
	background:url("../img/adv/adv_01b.jpg")25% 80%;
	background-size:cover;
	z-index:1;
}


.oneStop dl {	
	position:absolute;
	top:50px;
	right:10%;
	display:flex;
	flex-direction:column;
	width:400px;
	margin:0 auto;
	padding:20px;
	background-color:#ad9043;
	box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
	z-index:2;
}

.oneStop dl dt {
	width:100%;
	margin-bottom:20px;
	font-size:1.4rem;
	color:#ffffff;
}
.oneStop dl dd {
	width:100%;	
	color:#ffffff;
	font-size:1rem;
}

.creDireBack {
	position:absolute;
	top:0;
	right:0;
	width:70%;
	height:100%;
    padding-left:4em;
	-webkit-clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%);  
	background:url("../img/adv/adv_02b.jpg")25% 80%;
	background-size:cover;
	z-index:1;
}

.creDirection {
	position:relative;
	height:400px;
	margin:40px auto;
}
.creDirection dl {	
	position:absolute;
	top:50px;
	left:10%;
	display:flex;
	flex-direction:column;
	width:400px;
	margin:0 auto;
	padding:20px;
	background-color:#ad9043;
	box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
	z-index:2;
}

.creDirection dl dt {
	width:100%;
	margin-bottom:20px;
	font-size:1.4rem;
	color:#ffffff;
}
.creDirection dl dd {
	width:100%;	
	color:#ffffff;
	font-size:1rem;
}


.linkBtn {
	float:right;
  display: inline-block;
  width: 100%;
  max-width: 200px; /* ボタン幅 */
  position: relative;
  background: #000000; /* 背景色 */
  padding: .5em 2em;
	margin-top:10px;
  font-weight: bold;
  color: #ffffff; /* 文字色 */
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
}

.linkBtn:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #ffffff; /* 矢印の色 */
  border-right: 2px solid #ffffff; /* 矢印の色 */
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
}

/* マウスオーバーした際のデザイン */
.linkBtn:hover {
  background: #444444; /* 背景色 */
  color: #ffffff; /* 文字色 */
}

.linkBtn:hover:after {
  border-top: 2px solid #ffffff; /* 矢印の色 */
  border-right: 2px solid #ffffff; /* 矢印の色 */
}

@media screen and (max-width: 767px){
	.oneStop {
		width:100%;
		height:700px;
	}
	.oneStopBack {
		top:0;
		height:400px;
		width:100%;
		-webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
		clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);  
	}
	.oneStop dl {
		top:47%;
		left:5%;
		right:5%;
		width:90%;
	}
	.creDirection {
		width:100%;
		height:700px;
	}	
	.creDireBack {
		top:0;
		height:400px;
		width:100%;
		-webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
		clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%); 
		background-position:top center;
	}
	.creDirection dl{
		top:47%;
		left:5%;
		right:5%;
		width:90%;		
	}
	.oneStop dl dt,.creDirection dl dt {
		font-size:1.2rem;
	}
}
/* -------------------------------------------- Price Link */	
.priceLink {
	max-width:100%;
	width: 100%;
	margin:0 auto;
	padding-top:100px;
	padding-bottom:100px;
}


.priceBtn a {
    background: #000;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
    padding: 10px 25px;
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	font-size:1.5rem;
}
.priceBtn a:hover {
    background: #666;
    color: #FFF;
}
.priceBtn a:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #ffffff; /* 矢印の色 */
  border-right: 2px solid #ffffff; /* 矢印の色 */
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
    transition: 0.3s ease-in-out;
}
.priceBtn a:hover:after {
    border-color: #FFF;
}
@media screen and (max-width: 767px) {
	.priceLink {
		width:80%;
	}
}

/* -------------------------------------------- PRICE PAGE */
.priceFrame {
	max-width:100%;
	width: 600px;
	padding-top:40px;
	padding-bottom:40px;
	margin:0 auto;
}
.priceFrame h3 {
	display:inline-block;
	width:100%;
	font-size:1.2rem;
	font-weight:bold;
	color:#ffffff;
	font-family:'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	background:#000000;
	padding:4px 8px;
	margin-bottom:10px;
}

.priceSection {
	width:100%;
}

.priceSection h4 {
	font-size:1rem;
	font-weight:bold;
	font-family:'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	border-bottom:solid 1px #000000;
}
.priceCon {
	width:100%;
	padding:10px;
	background:#eeeeee;
	margin:5px auto 5px;
} 
.priceCon:last-child {	
	margin:5px auto 30px;
}
.priceCon dl {
	display:flex;
	margin-bottom:5px;
}
.priceCon dl dt {
	width:69%;
}
.priceCon dl dd {
	width:29%;
	text-align:right;
}
.priceCon span {
	font-size:.8rem;	
}

@media screen and (max-width: 767px){
	.priceFrame {
		width:90%;
	}
}
/* -------------------------------------------- ITEM PAGE */
.itemFrame {
	max-width:100%;
	width: 1000px;
	padding-top:40px;
	padding-bottom:40px;
	margin:0 auto;
}
.itemSubTitle {
	max-width:100%;
	margin:0 auto;
	text-align:center;
}
.itemSubTitle h3 {
	position: relative;
  display: inline-block;
	font-size:1.6rem;
	font-weight:bold;
	color:#000000;
	font-family:'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	padding:4px 40px;
	margin:0 auto 50px;
}

.itemSubTitle h3:before, .itemSubTitle h3:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.itemSubTitle h3:before {
  left:0;
}
.itemSubTitle h3:after {
  right: 0;
}

.imageFolder {
	width:90%;
	margin:0 auto 40px;
}
.imageFolder img {
	width:100%;
}

.imageFolder a:hover {
  opacity: 0.5;
	transition:.5;
}
.cls-1 {
        fill: #5ec7da;
	
        stroke: #3293a0;
        stroke-miterlimit: 10;
        stroke-width: 2.83px;
      }

.blinking{
	-webkit-animation:blink 2.2s ease-in-out infinite alternate;
    -moz-animation:blink 2.2s ease-in-out infinite alternate;
    animation:blink 2.2s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0.2;}
    100% {opacity:0.8;}
}
@-moz-keyframes blink{
    0% {opacity:0.2;}
    100% {opacity:0.8;}
}
@keyframes blink{
    0% {opacity:0.2;}
    100% {opacity:0.8;}
}
/* -------------------------------------------- PRICE PAGE */
.aboutFrame {
	max-width:100%;
	width: 1000px;
	padding-top:40px;
	padding-bottom:40px;
	margin:0 auto;
}
.aboutThesis {
	width: 800px;
	margin: 0 auto 0;
	padding:40px;
	overflow:hidden;
}
.aboutThesis h2 {
	font-size:1.4rem;
	text-align:center;
	color:#000000;
	font-family: "Zen Antique", serif;
}

.aboutSubTitle {
	max-width:100%;
	margin:0 auto;
	text-align:center;
}
.aboutSubTitle h3 {
	position: relative;
  display: inline-block;
	font-size:1.6rem;
	font-weight:bold;
	color:#000000;
	font-family:'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	padding:4px 40px;
	margin:0 auto 50px;
}

.aboutSubTitle h3:before, .aboutSubTitle h3:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.aboutSubTitle h3:before {
  left:0;
}
.aboutSubTitle h3:after {
  right: 0;
}

.aboutDetail {
	width:90%;
	margin:0 auto;
}

.aboutDetail dl {
	width:100%;
	display:flex;
	border-bottom:solid 1px #cccccc;
	padding-top:10px;
	padding-bottom:10px;
}

.aboutDetail dl:first-child {
	border-top:solid 1px #cccccc;
}

.aboutDetail dl dt {
	width:30%;
	font-size:1rem;
	font-weight:bold;
	padding:0;
}
.aboutDetail dl dd {
	width:70%;
	font-size:1rem;
	padding:0;
}
.gMapFrame {
  max-width: 75%; /* ここに横幅を指定 */
	margin-top:10px;
	margin-bottom:20px;
}
.gMap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.gMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
	.aboutThesis {
		width:100%;
	}
	.aboutThesis h2  {
		font-size:1rem;
	}
}


/* -------------------------------------------- Footer */	
footer {
	width:100%;
	background-color:#000000; 
	text-align:center;
	overflow:hidden;
	margin-top:40px;
}
.fCon {
	width:100%;
	background-color:#d0cfcf;
	text-align:center;
	padding:40px 0;
}
.fCon h2{
	margin:0 auto 40px auto;
	width:120px;
}
.fCon h2 img {
	width:100%;
}

ul.fNav {
	display:flex;
	justify-content: space-between;
	width:500px;
	margin:0 auto;
	padding:0 0 10px 0;
}
ul.fNav li{
	width:10%;
	margin:0 15px 0 0;
	color:#999999
	
}
ul.fNav li a{
	
		transition:.5s;
}
ul.fNav li a img {
	width:100%;
}
ul.fNav li a:hover{	
	
	
	opacity:.5;
}
footer p {
	margin-top:10px;
	margin-bottom:10px;
	clear:both;
	color:#666666;
}

@media screen and (max-width: 767px) {
	ul.fNav {
		width:80%;
	}
	ul.fNav li {
		width:15%;
	}
}