@charset "UTF-8";
body {
	position: relative;
	overflow-x: hidden;
}
html,body{
    width: 100%;
}

.didot-font{
	font-family: linotype-didot, serif;
	font-weight: 400;
	font-style: normal;
}

/* 共通設定
======================================*/
/* コンテナ */
/* ワイド幅のコンテナ header、footer、個別ページ*/
.container-wide{
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 50px;
}
@media (max-width:768px){
	.container-wide{
		padding: 0 20px;
	}
}

/* 通常の本文コンテナ */
.container{
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 70px;
}
@media (max-width:768px){
	.container{
		padding: 0 20px;
	}
}


/* 見出し */
h1,
h2,
h3{
	font-family: linotype-didot, serif;
	font-weight: 400;
	font-style: normal;
}

/* ヘッダー */
header{
	font-family: linotype-didot, serif;
	font-weight: 400;
	font-style: normal;
}
.nav-type-1{
	margin-top: 30px;
	margin-bottom: 20px;
}
.nav-type-1 .logo-title{
	font-size: 3.0rem;
	font-weight: normal;
	line-height: 1;
}
@media (max-width:768px){
	.nav-type-1 .logo-title{
		font-size: 2.4rem;
	}
}
.nav-type-1 p{
	line-height: 1;
	font-size: 1.4rem;
}
@media (max-width:768px){
	.nav-type-1 p{
		font-size: 1.2rem;
	}
}


/* ヘッダーTOP、ポートフォリオ個別 type-1 */
.nav-type-1{
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	-webkit-align-items: flex-end;    /* Safari etc. */
	-ms-align-items    : flex-end;    /* IE10        */
	align-items        : flex-end;
}
.nav-type-1 .header-nav-top{
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	line-height: 1;
}

.nav-type-1 nav{
	margin-left: auto;
}

.nav-type-1 .header-nav-top li{
	margin-left: 30px;
}

.nav-type-1 .header-nav-top a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.nav-type-1 .header-nav-top a:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #eed7db;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.nav-type-1 .header-nav-top a:hover:after {
  transform: scale(1, 1);
}
@media (max-width:768px){
	.nav-type-1 .header-nav-top a{
		display: none;
	}
	.nav-type-1 .header-nav-top{
		display: none;
	}
}
/* ハンバーガーメニュー type-1 */
@media screen and (max-width: 768px) {
	.secondary-toggle-type-1 {
		position: fixed;
		top: 0;
		right: 0;
		width: 60px;
		height: 70px;
		z-index: 100000;
		cursor: pointer;
		transition: .5s;
	}
	.secondary-toggle-type-1:before {
		content: "";
		position: absolute;
		top: 5px;
		right: 0px;
		background:rgba(240,231,215,1.00);
		width: 40px;
		height: 40px;
		border-radius: 50%;
	}
	.secondary-toggle-type-1.active:before {
		background:transparent;
	}
	.secondary-toggle-type-1 .secondary-toggle_line._1 {
		top: 34px;
	}
	.secondary-toggle-type-1 .secondary-toggle_line._2 {
		top: 43px;
		width: 40px;
	}
	.secondary-toggle-type-1 .secondary-toggle_line._3 {
		top: 52px;
		width: 30px;
	}

	.secondary-toggle-type-1 .secondary-toggle_line {
		display: block;
		position: absolute;
		right: 20px;
		width: 50px;
		height: 1px;
		background-color: #EED7DB;
		transform: translate(0, 0);
		transition: all .22s ease 0s;
	}
}
.secondary-toggle-type-1 .secondary-toggle_line.active{
	background-color: #EED7DB;
}
.secondary-toggle-type-1 ._1.active{
	top: 34px;
	width: 40px;
	transform: rotate(45deg);
}
.secondary-toggle-type-1 ._2.active{
	transform:scaleX(0);
}
.secondary-toggle-type-1 ._3.active{
	top: 34px;
	width: 40px;
	transform: rotate(135deg);
}
/*gnav*/
.gnav-type-1{
	background:rgba(255,255,255,0.9);
	top: 0;
	display: none;
	height: 100%;
	position: fixed;
	width: 100%;
	z-index: 98;
}
.gnav-type-1 .gnav__wrap{
	align-items:center;
	display: flex;
	height: 100%;
	justify-content: center;
	position: absolute;
	width: 100%;
}
.gnav-type-1 .gnav__menu__item{
	margin: 40px 0;
}
.gnav-type-1 .gnav__menu__item a{
	color: #222222;
	font-size: 2.0rem;
	font-weight: bold;
	padding: 40px;
	text-decoration: none;
	transition: .5s;
}

/* type-2 */
.nav-type-2{
	margin-top: 30px;
	margin-bottom: 20px;
}
.nav-type-2 .logo-area{
	text-align: center;
}
.nav-type-2 .logo-title{
	font-size: 3.0rem;
	font-weight: normal;
	line-height: 1;
}
@media (max-width:768px){
	.nav-type-2 .logo-title{
		font-size: 2.4rem;
	}
}
.nav-type-2 p{
	line-height: 1;
	font-size: 1.4rem;
}
@media (max-width:768px){
	.nav-type-2 p{
		font-size: 1.2rem;
	}
}

/* ハンバーガーメニュー type-2 */
.secondary-toggle-type-2 {
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 70px;
	z-index: 100000;
	cursor: pointer;
	transition: .5s;
}
.secondary-toggle-type-2:before {
	content: "";
	position: absolute;
	top: 5px;
	right: 0px;
	background:rgba(240,231,215,1.00);
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.secondary-toggle-type-2.active:before {
	background:transparent;
}
.secondary-toggle-type-2 .secondary-toggle_line._1 {
	top: 34px;
}
.secondary-toggle-type-2 .secondary-toggle_line._2 {
	top: 43px;
	width: 40px;
}
.secondary-toggle-type-2 .secondary-toggle_line._3 {
	top: 52px;
	width: 30px;
}

.secondary-toggle-type-2 .secondary-toggle_line {
	display: block;
	position: absolute;
	right: 20px;
	width: 50px;
	height: 1px;
	background-color: #EED7DB;
	transform: translate(0, 0);
	transition: all .22s ease 0s;
}
.secondary-toggle-type-2 .secondary-toggle_line.active{
	background-color: #EED7DB;
}
.secondary-toggle-type-2 ._1.active{
    top: 34px;
	width: 40px;
    transform: rotate(45deg);
}
.secondary-toggle-type-2 ._2.active{
    transform:scaleX(0);
}
.secondary-toggle-type-2 ._3.active{
    top: 34px;
	width: 40px;
    transform: rotate(135deg);
}
/*gnav*/
.gnav-type-2{
    background:rgba(255,255,255,0.9);
	top: 0;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}
.gnav-type-2 .gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.gnav-type-2 .gnav__menu__item{
    margin: 40px 0;
}
.gnav-type-2 .gnav__menu__item a{
    color: #222222;
    font-size: 2.0rem;
    font-weight: bold;
    padding: 40px;
    text-decoration: none;
    transition: .5s;
}



/* サブページタイトル */
.sub-title {
	margin-top: 70px;
	margin-bottom: 100px;
}
/* サブページ h1 */
.sub-page-h1{
	font-size: 4.0rem;
	line-height: 1.0;
}
@media (max-width:768px){
	.sub-page-h1{
		font-size: 3.0rem;
	}
}
/* サブページ 小見出し */
.sub-headline p{
	font-size: 1.2rem;
	color: #838080;
}

/* サブナビ */

.sub-nav{
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	flex-wrap: wrap;
	-webkit-align-items: center;    /* Safari etc. */
	-ms-align-items    : center;    /* IE10        */
	align-items        : center;
}

.sub-nav .header-nav-sub{
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	line-height: 1;
	margin-left: auto;
}
.sub-nav .header-nav-sub a{
	text-align: center;
}
.sub-nav .header-nav-sub p{
	line-height: 1.1;
	margin-bottom: 0;
}
.sub-nav .header-nav-sub p.nav-main-line{
	font-family: linotype-didot, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.3rem;
}
.sub-nav .header-nav-sub p.nav-sub-line{
	font-size: 1.0rem;
	color: #838080;
}
.sub-nav .header-nav-sub li{
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
}

.sub-nav .header-nav-sub li:before{
	content: '';
	padding: 0 25px;
	display: inline-block;
	width: 20px;
	height: 35px;
	background: url("../img/common/sep.png") no-repeat center;
	background-size: contain;
}
.sub-nav .header-nav-sub li:first-child:before{
	padding: 0;
	background: none;
}
.sub-nav .header-nav-sub-toggle{
	display: none;
}
.sub-nav .gnav-sub{
	display: none;
}
@media (max-width:768px){
	.nav-type-2 .logo-area{
		text-align: left;
	}
	.sub-nav .header-nav-sub{
		display: none;
	}
	.sub-nav .header-nav-sub-toggle{
		display: block;
		position: relative;
		margin-left: auto;
	}
	.sub-nav .header-nav-sub-toggle p{
		margin-left: 10px;
	}
	.sub-nav .header-nav-sub-toggle img{
		height: 8px;
		margin-left: 8px;
	}
	.sub-nav .gnav-sub{
		position: absolute;
		background:rgba(238,215,219,0.8);
		top: 30px;
		left: 0;
	}
	.sub-nav .gnav_sub_menu li{
		padding: 10px 20px;
	}
}

/* フッター */
footer{
	background: #EED7DB;
}
.footer-nav-wrap{
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	padding: 30px 0;
}
@media (max-width:768px){
	.footer-nav-wrap{
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
}
.sns-area{
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	margin-left: auto;
	-webkit-box-ordinal-group:2;
	-ms-flex-order:2;
	-webkit-order:2;
	order:2;
}
@media (max-width:768px){
	.sns-area{
		-webkit-box-ordinal-group:1;
		-ms-flex-order:1;
		-webkit-order:1;
		order:1;
		margin: 0 auto;
	}
}
.footer-nav{
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	-webkit-box-ordinal-group:1;
	-ms-flex-order:1;
	-webkit-order:1;
	order:1;
}
@media (max-width:768px){
	.footer-nav{
		-webkit-box-ordinal-group:2;
		-ms-flex-order:2;
		-webkit-order:2;
		order:2;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
}
.footer-nav-wrap a{
	color: #ffffff;
}
.sns{
	color: #ffffff;
	font-size: 2.0rem;
}

.sns-area li{
	margin-left: 35px;
}
@media (max-width:768px){
	.sns-area li{
		margin: 0 25px 50px;
	}
}
.footer-nav li{
	margin-right: 30px;
}
@media (max-width:768px){
	.footer-nav li{
		margin-right: 0px;
		margin-bottom: 30px;
	}
}


/* ボタン */
.btn-area{
	text-align: center;
	margin-bottom: 200px;
}
.button-double{
	background: #EED7DB;
	font-size: 2.5rem;
	padding: 30px 80px;
	color: #fff;
	display: inline-block;
	position: relative;
}
.button-double:before {
    display: inline-flex;
    content:attr(data-inverted);
	font-size: 2.5rem;
    color: rgba(255,255,255,0.0);
    padding: 29px 79px;
    border: 1px solid #AEB8DE;
    position: absolute;
    right: -5px;
    top: 5px;
}

@media (max-width:768px){
	.button-double{
		background: #EED7DB;
		font-size: 1.8rem;
		padding: 25px 40px;
	}
}
@media (max-width:768px){
	.button-double:before {
		font-size: 1.8rem;
		padding: 24px 39px;
		right: -5px;
		top: 5px;
	}
}


/* アニメーション設定
======================================*/

/* スライドイン */
/* トップ画像 */
.slideInUp {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
    visibility: visible; }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100); } }

@keyframes slideInUp {
  0% {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
    visibility: visible; }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100); } }

/* ロゴ・ナビ */
.slideInUp-logo {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-animation-name: slideInUp-logo;
          animation-name: slideInUp-logo;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

@-webkit-keyframes slideInUp-logo {
  0% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
    visibility: visible; }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100); } }

@keyframes slideInUp-logo {
  0% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
    visibility: visible; }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    filter: alpha(opacity=100); } }


.time-msg{
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.time-scroll{
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* 文字列のフェードイン JS*/
/* 上から */
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}