@charset "utf-8";
/* レイアウトのためのCSS */
html{
  height: auto;
}

body{
  background-color: #f1f3f4;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 300;
  font-style: normal;
	color: #333;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
    letter-spacing: 0.2em;
    height: auto;
    width: 100%;
    overflow: hidden;
}

#container{
  height: auto;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #555;
	text-decoration: none;
    outline: none;
}


*{
    box-sizing: border-box
}

.fc_pink{
	color: #d07184;
}

.fc_grey{
	color: #333;
}

.bold{
	font-weight: bold;
}

/*========= font ===============*/
h1{
  font-family:'Poiret One', cursive;
}

h2{
  font-family: 'Allura', cursive;
}

#g-nav ul li a,
h3{
  font-family: "orator-std", monospace;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.1em;
}

.penletter{
font-family: "vdl-penletter", sans-serif;
font-weight: 500;
font-style: normal;
}

a.button1{
  font-family: "orator-std", monospace;
  font-weight: 400;
  font-style: normal;
}

/*========= ふわっと現れる ===============*/
.fadeIn{
animation-name: fadeInAnime;
animation-duration:2s;/*ゆっくり出現するため数値変更*/
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*========= 光りながら現れる ===============*/
.glowAnime span{opacity: 0;}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span{ animation:glow_anime_on 1s ease-out forwards; }

@keyframes glow_anime_on{
	0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
	50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
	100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}

/*==================================================
　ハンバーガーメニュー
===================================*/
/*==================================================
機能編　5-1-25 クリックしたらナビ背景コンテンツがぼかされる※IE11非対応
===================================*/

/*========= ぼかしのためのCSS ===============*/

.mainblur{
	filter: blur(8px);
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(219,199,202,0.8);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
}

#g-nav li a{
	color: #555;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	font-weight: 500;
  font-size: 20px;
}

/*==================================================
機能編　5-2-2 ボタン：2本線が×に
===================================*/

/*ボタン外側*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 70px;
    height:70px;
}

/*ボタン内側*/

.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 3px;
	background-color: #666;
  }


.openbtn span:nth-of-type(1) {
	top:22px;
  	width: 50%;
}

.openbtn span:nth-of-type(2) {
	top:29px;
  	width:30%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

/*==================================================
ページトップリンク
===================================*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#fff;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #d07184;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

#page-top a span{
  font-weight: bold;
  font-size: 20px;
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/*==================================================
アコーディオンパネル
===================================*/
.accordion {
  width: 100%;
  max-width: 360px;
  min-width: 300px;
  margin: 30px auto 20px;
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
 }

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 20px 10px 20px 20px;
  color: #d07184;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i {
  margin-left: 30px;
  font-size: 18px;
  color: #d07184;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  position: absolute;
	top: center;
	right: 12px;
	left: auto;
  font-size: 16px;
}

.accordion li.open .link {
  color: #d07184;
}

.accordion li.open i {
  color: #d07184;
}
.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion li.default .submenu {display: block;}

/*** Submenu
 -----------------------------*/
 .submenu {
  display: none;
  background: #d07184;
  font-size: 14px;
 }

 .submenu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  padding: 20px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
 }

 .submenu a:hover {
  background: #444359;
  color: #FFF;
 }

/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from{
    opacity: 0;
    transform: translateY(100px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}


/*========= header ===============*/
#pink-bg{
  width: 85%;
  height: 100vh;
  background-color: #dbc7ca;
  position: relative;
}

#top_mv{
  width: 65%;
  height: 90%;
  background-image: url(../img/header01.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
   top: 0;
   left: 0;
}

h1{
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 55px;
  position: absolute;
   bottom: 0;
   right:  -70px;
}

/*========= Lifestory/business===============*/
#lifestory,
#business{
  position: relative;
}
#lifestory{
	margin-top: 30px;
}
#business{
	margin-top: 30px;
}
h2{
  font-size: 55px;
  transform: rotate(-12deg);
  color: #e4bcbb;
}

h4{
  color: #d07184;
}

section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

#lifestory img,
#business img{
  width: 50%;
  margin: 0 30px;
}

article{
  padding: 30px;
  position: relative;
}

.white-bg{
  width: 500px;
  height:500px;
  background-color: #fff;
  position: absolute;
   top: 50px;
   left: 50px;
   z-index: -1;
}

.button1 {
  /* スタイル用 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  margin: 20px auto;
  background-image: linear-gradient(45deg, #dbc7ca 0%, #e4bcbb 100%);
  color: #fff;
  border-radius: 30px;
  position: relative;
  transition: .4s;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 2px #d07184;
}

.button1:hover {
  background-image: linear-gradient(45deg, #dbc7ca 0%, #d07184 100%);
}


.button1:before,
.button1:after {
  position: absolute;
  top: 50%;
  right: 22px;
  height: 1px;
  background: #fff;
  content: '';
}

.button1:before {
  width: 30px;
  transform: translateY(-50%);
}

.button1:after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

#business section article h4{
  margin: 40px 0 0 0;
}

.button2{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #dbc7ca;
  letter-spacing: -0.05em;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 2px #d07184;
}

.button2 span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :80px;
  text-align:center;
  color: #f1f3f4;
  font-size: 1.2em;
  line-height: 1.3;
}

.long-btn{
  width: 300px;
}

.short-btn{
	width: 150px;
}

/*========= profile ===============*/
#profile{
  margin-top: 60px;
  text-align: center;
  background-color: #fff;
  padding: 30px 0 30px 0;
}

.title-img{
  position: relative;
}

.title-img h2{
  position: absolute;
   top: -50px;
   left: 15%;
   font-size: 5em;
   color: #dbc7ca;
   opacity: 0.6;
}

#profile h3,
#work h3,
#album h3,
#media h3,
#sns h3{
  font-size: 1.7em;
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
  display: inline-block;
  margin-bottom: 20px;
}

.title{
  text-align: center;
}

.title-img img{
  width: 40%;
}

.profilearea{
  align-items: flex-start;
  gap: 40px;
}

.timeline {
    width: 96%;
    max-width: 940px;
    margin: 28px auto;
    border: 1px solid #eeeeee;
	padding-bottom: 40px;
}

.timeline-list {
    padding: 40px 0;
}

.timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 16px;
}

.timeline-list-item .date {
    width: 40%;
    padding: 0 20px 0 20px;
    color: #888888;
    font-weight: bold;
}

.timeline-list-item .content {
    position: relative;
    width: 60%;
    padding: 0 20px 60px 50px;
    border-left: 1px solid #aaaaaa;
}


.timeline-list-item .content:before {
  content: '';
  width: 20px;
  height: 20px;
  background: #dbc7ca;
  position: absolute;
  left: -10px;
  top: 0;
  border-radius: 100%;
}

.content p{
  text-align: left;
}

/*========= slide ===============*/
#slide p{
	display: block;
	width: 50%;
	margin: 30px auto;
	text-align: center;
}

#slide p.name{
	text-align: right;
}


/*========= work ===============*/
#work{
  margin-top: 60px;
  text-align: center;
  color: #888;
}

#work .title{
  margin: 40px 0;
  font-weight: bold;
}

#work .title span{
  font-size: 14px;
  font-weight: normal;
}

#photos{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  margin-bottom: 500px;
}

#photos img{
  width: 15%;
}

#contentsarea{
  position: absolute;
   bottom: -430px;
   background: rgba(255,255,255,0.8);
   padding: 30px;
}

#contentsarea .title,
#seminararea .title{
  margin-top: 0;
}

#work h3,
#contentsarea.title{
  color: #444;
}

.flex{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -30px;
  margin-bottom: 30px;
}

.flex img{
  width: 20%;
}

#seminararea section{
  background: rgba(219, 199, 202, 0.4);
  padding: 30px;
}

#seminararea{
  background-color: #fff;
  padding: 30px;
  margin: 30px;
  width: 60%；
}

.seminars{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.seminars li{
  background-color: #f1f3f4;
  width: 300px;
  height: 400px;
  border-radius: 50% 50% 5% 5%;
  padding: 50px 30px 30px 30px;
  box-shadow: 2px 2px 4px rgba(68, 68, 68, 0.3);
}

.seminars h5{
  border-bottom: 1px solid #888;
  padding-bottom: 20px;
  font-size: 14px;
}

.seminars h5 span{
  color: #d07184;
  font-size: 16px;
}

.seminars p{
  font-size: 13px;
  padding-top: 20px;
}

.seminars a.button1{
  width: 150px;
  height: 30px;
  margin-bottom: 0;
}

/*========= album ===============*/
#album{
	color: #333;
}

/*========= media ===============*/
#media{
	padding-bottom: 100px;
}

#media p{
	text-align: center;
	margin-top: 30px;
}

.media-list{
	width: 40%;
}
#media h4{
	background-color: #999;
	color: #fff;
	padding: 5px 15px;
	font-size: 1.3rem;
	text-align: center;
}

/*===========================================================*/
/*モーダル */
/*===========================================================*/
.flexbox{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	width: 100%;
	flex-wrap: wrap;
}
.main{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.main img{
	width: 50%;
  cursor: pointer;
}

.single img{
	width: 70%;
	cursor: pointer;
}
.media_wrapper{
	text-align: center;
}
.graydisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
}
.graydisplay img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  z-index: 9999;
}
/*===========================================================*/
/*もっと見る */
/*===========================================================*/
.hidden-view{
    display: none;
}
.hidden-view.open{
    display: flex;
}
.button::before{
    content: "See More ▼";
	font-size: 1rem;
	letter-spacing: 0.2;
}
.hidden-view.open + .button::before{
    content: "Close ×";
}
.button{
	margin: 30px 0;
	background: rgba(219, 199, 202, 0.4);
	padding: 5px 10px;
	border: 1px solid #d07184;
}
/*========= sns ===============*/
#sns {
  position: relative;
  z-index: 0;
  height: 490px;
}
#sns::before,
#sns::after {
  content: '';
  position: absolute;
  left:0;
  top: 0;
  width: 100%;
}
#sns::before {
  z-index: -1;
  height:30%;
  background: #dbc7ca;
  transform: skewY(5deg);
  transform-origin: top right;
}
#sns::after {
  z-index: -2;
  height:90%;
  background: #dbc7ca;
  transform: skewY(5deg);
  transform-origin: top right;
}

ul.sns{
	margin-top: 300px;
	width: 300px;
	margin: 0 auto;
}

ul.sns li{
	margin-top: 30px;
}

#inquiry{
	margin-bottom: 60px;
	display: flex;
	justify-content: center;
}

#inquiry p{
	text-align: center;
}

#inquiry span{
	font-size: 1.5rem;
}

#copyright{
	text-align: center;
	color: #888;
}
/*===========================================================*/
/*shrine */
/*===========================================================*/
#shrine{
	text-align: center;
	background-image: url("../img/shrine_bg.jpg");
	background-size: cover;
	background-position: center bottom;
	padding: 50px 80px 500px;
}
#shrine h3{
	-ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
	border-right: 1px solid #333;
	border-left: 1px solid #333;
	padding: 10px;
	letter-spacing: 0.3em;
	text-align: left;
}
#shrine section img{
	width: 8%;
}
#shrine section{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
#shrine ul{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80%;
	margin: 70px auto;
	flex-wrap: wrap;
	gap: 30px;
}
#shrine ul li{
	width: 22%;
}
#shrine ul li img{
	width: 100%;
}
.shrine_footer{
	background: #dbc7ca;
	padding-top: 50px;
}
#top-shrine{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: -100px;
	margin-top: 50px;
}
#top-shrine img,
#top-shrine section{
	width: 40%;
}
#top-shrine section{
	display: block;
	margin-top: 30px;
}
#top-shrine section h3{
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	padding: 10px;
	display: inline-block;
	letter-spacing: 0.5em;
}
.link_button{
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid #333;
	text-align: right;
	font-weight: 500;
}
#powerspots{
	margin-top: 80px;
	position: relative;
}
#powerspots h5{
	background: #dbc7ca;
	padding: 10px;
	color: #fff;
	text-align: center;
	font-size: 1.3em;
}
#powerspots .media-list{
	text-align: center;
	margin: 30px;
}
#powerspots h2{
	position: absolute;
	  top: -50px;
	  left: 35%;
}
/*===========================================================*/
/*banner*/
/*===========================================================*/
#banner01{
	width: 50%;
	margin: 50px auto 0;
}
#banner01 h3{
  font-size: 1.4em;
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 0.2em;
}
#banner01 img{
	width: 100%;
}