@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Satisfy|Spectral+SC');
@keyframes <identifier> {
    [ [ from | to | <percentage> ] [, from | to | <percentage> ]* block ]*
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

ol, ul {
	list-style: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
	content: '';
	content: none;
  }
  
  /* フォントサイズが小さくなってしまうので、統一*/
  code, kbd, samp {
	font-size: 1em;
  } 

body{
	font-size: 90%;
	font-family:"Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	letter-spacing:0.12em;
	color: #2A416B;
	-webkit-text-size-adjust: none;
	width:100%;
	margin:0;
	padding:0;
	line-height:2;
	word-wrap: break-word;
}
h1, h2, h3, h4{
	font-family: 'Satisfy' , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E" , "Times New Roman" , "mymincho" , "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	text-align:center;
	letter-spacing:0;
}
/*------------------------------------------------------------
 初期：画像
------------------------------------------------------------*/
img{
	outline:none;
	border:none;
	width:100%;

}
ul li{
	list-style:none;	
}
a{
	margin: 0;
	padding: 0;
	text-decoration: none;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
    color:#E8679A;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	text-decoration:none;
}
a:hover, a:active {
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-o-transition: opacity 1s;
	outline: none;
    color: #F5B7C2;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	text-decoration:none !important;
}
a img {
	/*transition使用*/
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}
.caution {
    display: table;
    line-height: 1.4;
    font-size: 86%;
    background: #FEFAFA;
    padding: 10px 20px;
    color: #EC6FA7;
	margin:0.5em auto;
}
/*------------------------------------------------
カラム
------------------------------------------------*/
.flex-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.column1_100{
		width:100%;
		margin:10px auto;
		display:block;
	}
.column3_33 {
	width:32.8%; 
	}
.column2_40 {
	width: 38%;
}
.column2_60 {
    width: 60%;
}
.column2_20 {
    width: 18%;
}
.column2_30 {
    width: 28%;
}
.column2_70 {
    width: 70%;
}
.column2_80 {
    width: 75%;
}
.column2_50 {
    width: 48%;
}

@media screen and (max-width: 640px) {
.column3_33 {
	display:inline-block;
	width:32%;
	margin:2px 2px;
	padding:0;
}
.column2_50, .column2_40, .column2_60, .column2_30, .column2_70, .column2_20, .column2_80{
	display:block;
	width:100%;
	margin:10px auto;
	padding:10px;
	box-sizing:border-box;
}
}
/*------------------------------------------------------------
ボタンcss
------------------------------------------------------------*/
.BTN a {
	width: 96%;
	font-size:17px;	
	background-color: #F5CFDA;
	display:block;
	text-align: center;
	color: #2A416B;
	padding:1em 0;
	clear: both;
	text-decoration:none;
	margin:1em auto 0.3em;
	letter-spacing:0.04em;
	vertical-align:central;
	font-family: 'Satisfy' , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E" , "Times New Roman" , "mymincho" , "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    box-shadow: 0 2px 0 #e09eab;	
}

.BTN a:hover {
	background-color: #2A416B;
	color: #F5CFDA;
    box-shadow: 0 2px 0 #e09eab;	
}

@media screen and (max-width: 640px) {
.BTN a{
	width:100%;
	margin:1.4em auto 0.5em;
}
}
/*------------------------------------------------
ヘッダーとグローバルナビ調整
------------------------------------------------*/
/*----------------
ボタン
-----------------*/
.BTN01 a {
    display: block;
    width: 50%;
    background: #E5ACBB;
    padding: 20px 10px;
    box-sizing: border-box;
    margin: 3em auto 0.5em;
    text-align: center;
	color:#fff;
	border:1px solid #E5ACBB;
}
.BTN01 a:hover{
	background:#FFF;
	border:1px solid #E5ACBB;
	color:#E5ACBB;
}
/*------------------------------------------------------------
トップボタンcss
------------------------------------------------------------*/
.BTN1 a {
	width: 100%;
	font-size:18px;	
	background:url(images/icon_illust.png) no-repeat top, #FBE7E8;
	display:block;
	top:6px;
	text-align: center;
	color: #2A416B;
	padding:80px 0 20px;
	clear: both;
	text-decoration:none;
	margin:1em auto;
	letter-spacing:0.04em;
	vertical-align:central;
	border: 1px solid #FBE7E8;
	font-family: 'Satisfy' , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E" , "Times New Roman" , "mymincho" , "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.BTN1 a:hover {
	background:url(images/icon_illust_on.png) no-repeat top, #2A416B;
	color: #FBE7E8;
	border: 1px solid #2A416B;
}

.BTN2 a {
	width: 100%;
	font-size:18px;	
	background:url(images/icon_design.png) no-repeat top, #FBE7E8;
	display:block;
	top:6px;
	text-align: center;
	color: #2A416B;
	padding:80px 0 20px;
	clear: both;
	text-decoration:none;
	margin:1em auto;
	letter-spacing:0.04em;
	vertical-align:central;
	border: 1px solid #FBE7E8;
	font-family: 'Satisfy' , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E" , "Times New Roman" , "mymincho" , "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.BTN2 a:hover {
	background:url(images/icon_design_on.png) no-repeat top, #2A416B;
	color: #FBE7E8;
	border: 1px solid #2A416B;
}

.BTN3 a {
	width: 100%;
	font-size:18px;	
	background:url(images/icon_line.png) no-repeat top, #FBE7E8;
	display:block;
	top:6px;
	text-align: center;
	color: #2A416B;
	padding:80px 0 20px;
	clear: both;
	text-decoration:none;
	margin:1em auto;
	letter-spacing:0.04em;
	vertical-align:central;
	border: 1px solid #FBE7E8;
	font-family: 'Satisfy' , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E" , "Times New Roman" , "mymincho" , "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.BTN3 a:hover {
	background:url(images/icon_line_on.png) no-repeat top, #2A416B;
	color: #FBE7E8;
	border: 1px solid #2A416B;
}

.BTN4 a {
	width: 50%;
	font-size:18px;	
	background:url(images/icon_insta.png) no-repeat top, #FBE7E8;
	display:block;
	top:6px;
	text-align: center;
	color: #2A416B;
	padding:4em 0 1em;
	clear: both;
	text-decoration:none;
	margin:2em auto;
	letter-spacing:0.04em;
	vertical-align:central;
	border: 1px solid #FBE7E8;
	font-family: 'Satisfy' , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E" , "Times New Roman" , "mymincho" , "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.BTN4 a:hover {
	background:url(images/icon_insta_on.png) no-repeat top, #2A416B;
	color: #FBE7E8;
	border: 1px solid #2A416B;
}
/*----------------
レスポンシブ
-----------------*/
@media only screen and (max-width: 797px){
.BTN01 a {
   width: 80%;
}
.BTN1 a, .BTN2 a, .BTN3 a{
	margin:0.5em auto;
	padding:70px 0 6px;
}
.BTN4 a{
	width:96%;
	margin:0.4em auto 0.2em;
	padding:3.4em 0 0.2em;
}
}
/*------------------------------------------------------------
ナビゲーションcss
------------------------------------------------------------*/
/* pc */
.inner {
    max-width: 1100px;
    margin: 0 auto;
	width:100%;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
 
/* header */
#top-head {
    top: 0;
    position: absolute;
    width: 100%;
    padding: 0;
    line-height: 1;
    z-index: 999;
	background: rgba(243, 205, 215, 0.79);
}
#top-head a,
#top-head {
    color: #fff;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	max-width: inherit;
}
#top-head .logo {
    font-size: 36px;
	color: #2A416B;
	font-family: 'Spectral SC', serif;
	margin-left:30px;
}
#top-head .logo a{
	color: #2A416B;
}
#global-nav{
	width: 90%;
}
#global-nav ul {
    font-size: 18px;
	display: flex;
	justify-content: flex-end;
}
#global-nav ul li {
	font-family: 'Satisfy', cursive;
}
#global-nav ul li a {
    padding: 0 30px;
	color: #2A416B;
	letter-spacing:0;
}
#global-nav ul li a:hover {
	opacity: 0.6;
} 
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(243, 205, 215, 0.79);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #2A416B;
}
#top-head.fixed #global-nav ul li a {
    color: #2A416B;
    padding: 0 20px;
}
 
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
/* SP */
@media screen and (max-width: 809px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
	#top-head .inner{
		padding: 10px 0;
	}
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        width: 100%;
        height: 40px;
        z-index: 999;
        position: relative;
		display: flex;
		align-items: center;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        color: #2A416B;
        font-size: 26px;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #2A416B;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
		flex-wrap: wrap;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
		padding-left:0;
    }
    #global-nav ul li {
        position: static;
		width: 100%;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
		top: 6px;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}

#global-nav ul li.SubNav {
    position: relative;
}
#global-nav ul li.SubNav ul.SabNavIn{
    position: absolute !important;
    color: #24416e;
    visibility: hidden;
    width: 110px;
    top: 28px;
    left: 30px;
    padding: 0;
}
#global-nav ul li.SubNav:hover, #global-nav ul li.SubNav:hover ul.SabNavIn li{
    visibility: visible;
	display: block;
	z-index: 100;
background: rgba(243, 205, 215, 0.79);
	width:auto;
}
#global-nav ul li.SubNav:hover{
	background: transparent;	
}

#global-nav ul li ul.SabNavIn li{
	padding: 6px;
	float: none;
}

#global-nav ul li.SubNav ul.SabNavIn li a{
	display: block;
    padding: 4px 10px;
}
#global-nav ul li.SubNav ul.SabNavIn li a:hover{
	opacity: 0.4;
}
/*----------------
タイトルエリア
-----------------*/
.titleBox{
	padding:0 5em;
	box-sizing:border-box;
	max-width:1100px;
	margin:0 auto;
	width:100%;
	z-index:1
}
.titleBox h1{
	font-size: 310%;
    font-family: 'Satisfy', cursive;
    color: #2A416B;
	text-align:center;
	line-height:1.4em;
    margin: 1.6em auto 0.5em;
	box-sizing:border-box;
}

/*----------------
レスポンシブ
-----------------*/
@media only screen and (max-width: 640px){
.titleBox h1{
	font-size: 170%;
	width: 100%;
	padding:20px 10px 10px;
	margin:20px auto 0;
}
.titleBox{
	padding:0 2.5em;
}
#global-nav ul li.SubNav:hover, #global-nav ul li.SubNav:hover ul.SabNavIn li{
    visibility:hidden;
	}
}
/*-----------------------------------------------------------------------
共通
----------------------------------------------------------------------*/
/*----------------
ぱんくず
-----------------*/
div#breadcrumb ul {
    margin: 0 auto;
    padding: 0;
    font-size: 70%;
}
div#breadcrumb ul li {
	display: inline-block;
    padding: 12px 0 0 18px;
    margin: 0;
    letter-spacing: 0.02em;
}
div#breadcrumb li a {
    background: #F5D7DF;
    padding: 10px 8px;
    position: relative;
	margin-right: 16px;
}
div#breadcrumb li a:hover {
	color:#fff;
}
div#breadcrumb li a:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(245, 215, 223, 0);
    border-left-color: #F5D7DF;
    border-width: 14px;
    margin-top: -14px;
}
/*----------------
コンテンツエリア
-----------------*/
#contents{
	width:100%;	
	margin:3em auto;
	padding:2em 0 0;
	box-sizing:border-box;
	display:block;
}
#contentsInBox{
	width:100%;
	max-width:1200px;
	margin:2em auto 3em;
}
#contentsInBox h1{
	display:table;
	margin:0.5em auto 0.8em;
	position:relative;
	font-size:260%;
}
#contentsInBox h1::after{
content: '';
position: absolute;
bottom: -4px;
display: inline-block;
width: 60px;
height: 3px;
left: 50%;
-moz-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
background-color: #2A416B;
border-radius: 2px;
}
/*------------------------
ポップアップ来とボックス共通
-------------------------*/	
ul.PopupBox {
  margin: 0 auto;
  padding: 0;
  justify-content: center;
	display:flex;
  flex-wrap: wrap;
}
ul.PopupBox li {
    width: 20%;
	display:block;
	padding:0;
}
ul.PopupBox li img {
    width: 100%;
}
ul.PopupBox li a img {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;
    color: #595153;
}
.ex_imglink{
	display: inline-block;
    padding: 0;
    background-color: #fff;
    line-height: 0;
	margin: 16px;
	box-shadow: 0 0 6px #c1c1c1;
    transition: background-color 0.5s ease-out;
}
/*----------------
タブ切り替え
-----------------*/
.tab-content input[type="radio"] {
  display: none;
}

.tab-content label {
 	display: inline-block;
	padding: 8px 60px;
	font-weight: bold;
	font-family: 'Satisfy', cursive;
	font-size:140%;
	color: #F3CDD7;
	background-color:#fff;
	border-top:1px solid #F3CDD7;
	border-left:1px solid #F3CDD7;
	border-right:1px solid #F3CDD7;
	letter-spacing: 0;
}
.tab-content label:hover,
.tab-content input[type="radio"]:checked + label {
  background-color: #F3CDD7;
  color: #2A416B;
}

.tab-content .tab-box {
	max-width: 1200px;
	height: auto;
	width:100%;
	padding-top: 10px;
    border-top: 1px solid #facad7;	

}
.tab-content > .tab-box > div {
  display: none;
}
#tab1:checked ~ .tab-box > #tabView1 {
  display: block;
}
#tab2:checked ~ .tab-box > #tabView2 {
  display: block;
}

/*----------------
レスポンシブ
-----------------*/
@media only screen and (max-width: 640px){
#contents{
	margin:1.9em auto 0;
	}
#contentsInBox{
margin:0.6em auto 1.5em;
}
ul.PopupBox li {
    width: 33%;
	display:block;
}
	div#breadcrumb ul li{
		padding:12px 0 0 4px;
	}
.tab-content label {
  padding: 6px 16px;
}
	.ex_imglink{
		margin: 4px;
	}	
#contentsInBox h1{
	margin:0.6em auto;
	font-size:200%;
}
}

/*----------------
ページトップのボタン
-----------------*/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
    background: rgba(243, 205, 215, 0.72);
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 25px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: rgba(42,65,107,0.72);

}
/*------------------------------------
トップページ
----------------------------------*/
/*----------------
エリア1
-----------------*/
.area1 {
    background: #fff;
    position: relative;
    overflow: hidden;
    margin: 0.5em 0;
    padding:1em 20px;
	box-sizing:border-box;
}
.area1InBox{
	padding:0;
	width:94%;
	max-width:1100px;
	margin:0 auto;
	position:relative;
}
ul.InBox{
	display: flex;
	justify-content: space-around;
	flex-wrap:wrap;
	align-items: center;
	padding: 0;
	margin: 0 auto;
}
ul.InBox li{
	width:30%;
}
.area1InBox img{
	width:100%;
	height:auto;
	text-align:center;
	margin:0 auto;
	display:block;	
}
.area1 h2{
	font-size:280%;
	line-height:1.2em;
	color:#2A416B;
	text-align:center;
	font-family: 'Satisfy' , "Noto Sans Japanese" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif, cursive;
}
/*----------------
レスポンシブ
-----------------*/
@media screen and (max-width: 640px) {
.area1 {
    padding:1em 0;
	margin: 0;
}
.area1 h2{
	font-size:200%;
}
}

/*----------------
エリア2
-----------------*/
.area2 {
    background: #fff;
    position: relative;
    overflow: hidden;
    margin: 0.5em 0;
    padding:1em 20px;
	box-sizing:border-box;
}
.area2:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 60%;
  margin: 0 -10%;
  background: #FBF0F0;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(7deg);
  -ms-transform: rotate(7deg);
  transform: rotate(7deg);
  z-index: 0;
}
.area2InBox{
	padding:0;
	width:100%;
	max-width:1100px;
	margin:0 auto;
	position:relative;
}

.area2InBox img{
	width:100%;
	height:auto;
	text-align:center;
	margin:0 auto;
	display:block;	
}
.area2 h2{
	font-size:280%;
	line-height:1.2em;
	color:#2A416B;
	text-align:center;
	position:relative;
	display:table;
	margin:0 auto 2em;
	font-family: 'Satisfy' , "Noto Sans Japanese" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif, cursive;
}
.area2 h2::after{
content: '';
position: absolute;
bottom: -20px;
display: inline-block;
width: 60px;
height: 3px;
left: 50%;
-moz-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
background-color: #2A416B;
border-radius: 2px;
}
p.greeting_text {
    text-align: left;
    font-size: 100%;
    line-height: 2em;
	width: 80%;
	margin:0 auto;
}
/*----------------
レスポンシブ
-----------------*/
@media screen and (max-width: 640px) {
.area2{
	margin:0;	
	}
.area2InBox img{
	width:70%;
	}
.area2:before{
	 height: 70%;
	}
.area2 h2{
	margin:1em auto 1.4em;
	font-size:200%;
}
	p.greeting_text {
		width:100%;
	}	
}
/*----------------
エリア3
-----------------*/
.area3 {
    background: #fff;
    position: relative;
    overflow: hidden;
    margin: 0.5em 0;
    padding:0 20px;
}

.area3InBox{
	padding:0.5em;
	width:100%;
	max-width:1100px;
	margin:0.5em auto;
	position:relative;
	box-sizing:border-box;
	overflow: hidden;
}
.area3InBox img{
	width:100%;
	height:auto;	
}
.area3 h2{
	font-size:280%;
	line-height:1.2em;
	color:#2A416B;
	text-align:center;
	position:relative;
	display:table;
	margin:0 auto 2em;
	font-family: 'Satisfy' , "Noto Sans Japanese" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif, cursive;
}
.area3 h2::after{
content: '';
position: absolute;
bottom: -20px;
display: inline-block;
width: 60px;
height: 3px;
left: 50%;
-moz-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
background-color: #2A416B;
border-radius: 2px;
}

/*----------------
レスポンシブ
-----------------*/
@media screen and (max-width: 640px) {
.area3 {
margin:0 auto 0.5em;
}
.area3 h2{
	margin:0 auto 1.4em;
	font-size:200%;
}
}
/*------------------------------------------------------------
共通
------------------------------------------------------------*/
/*----------------
エリア1カラー
-----------------*/
.area_bgc01 {
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0.5em 0 5em;
    padding:1em 20px;
	box-sizing:border-box;
}
.area_bgc01:before {
	position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 80%;
    height: calc(160% - 228px);
    background-color: #E2F9F6;
    content: '';
    -webkit-transform: skewX(-12deg);
    transform: skewX(-12deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
	z-index:-1;
}
.area_bgc01InBox{
	padding:1em 0;
	margin:0 auto;
	width:100%;
	max-width:1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.area_bgc01InBox h1{
	display:table;
	margin:20px auto 0.3em;
	position:relative;
	font-size:300%;
	z-index:2;
}
.area_bgc01InBox h1::after{
content: '';
position: absolute;
bottom: -14px;
display: inline-block;
width: 60px;
height: 3px;
left: 50%;
-moz-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
background-color: #2A416B;
border-radius: 2px;
}
.area_bgc01InBox h2 {
    font-size: 200%;
    display: table;
    border-bottom: 2px solid;
    border-top: 2px solid;
    margin: 0.5em auto 1em;
    padding: 5px 20px;
}
p.about_text{
	padding: 0 0 0 2em;
    line-height: 2;
    border-left: 1px solid;
    margin-bottom: 2em;
}
p.hobby_text {
    padding: 0.8em 0.8em 0.2em;
    line-height: 2.4;
    background: #fff;
	font-size:90%;
	border: 2px solid #CEF7F2;
}
span.h_title {
    background: #E2F9F6;
    padding: 0px 15px;
    margin-right: 10px;
    display: inline-block;
    width: 30%;
    text-align: center;
    margin-bottom: 10px;
	letter-spacing: 0.03em;
    font-weight: bold;
}
span.Fbig {
    font-size: 220%;
    line-height: 1.4;
    font-family: 'Satisfy', san-serif;
}
span.Fbig2 {
    font-size: 220%;
    line-height: 1.4;
	display:block;
    font-family: 'Satisfy', san-serif;
}
.ex_work_env {
    width: 100%;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    margin: 1em auto 0;
    border: 2px solid #CEF7F2;
}
.ex_work_env p {
    margin: 2px 0 6px;
    font-weight: bold;
    font-size: 130%;
}
.ex_work_env span {
    font-size: 62%;
    font-family: 'Satisfy', cursive;
	letter-spacing:0;	
}
/*----------------
エリア2カラー
-----------------*/
.area_bgc02 {
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0.5em 0 5em;
    padding:2em 20px;
	box-sizing:border-box;
}
.area_bgc02:before {
	position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 80%;
    height: 100%;
    background-color: #FDDEE7;
    content: '';
    -webkit-transform: skewX(-12deg);
    transform: skewX(-12deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
	z-index:-1;
}
.area_bgc02InBox{
	padding:0;
	margin:0 auto;
	width:100%;
	max-width:1200px;
}
.area_bgc02InBox .column2_50 {
    background: #FFF;
	padding:20px;
	box-sizing:border-box;
	border: 2px solid #F5CFDA;
}
.area_bgc02InBox h2 {
    font-size: 200%;
    display: table;
    border-bottom: 2px solid;
    border-top: 2px solid;
    margin: 0.8em auto 1.2em;
    padding: 5px 20px;
}
.img_round img {
    border-radius: 50%;
	width:100%;
}
.area_bgc02InBox h3{
	position: relative;
	background: #ddfaf6;
	border: 2px solid;
	padding:6px;
	margin-top:-40px;
}
.area_bgc02InBox h3:after, .area_bgc02InBox h3:before {
	top: 100%;
	left: 50%;
	border: solid;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.area_bgc02InBox h3:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ddfaf6;
	border-width: 10px;
	margin-left: -10px;
}
.area_bgc02InBox h3:before {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #2A416B;
	border-width: 13px;
	margin-left: -13px;
}
.area_bgc02InBox p {
    font-size: 95%;
    letter-spacing: 0.02em;
    text-align: center;
	color:#FD6A91;
}
ul.list {
    padding-left: 6px;
    letter-spacing: 0.03em;
    font-size: 88%;
	margin:2px 0;
}
ul.list li {
    position: relative;
    padding-left: 14px;
	line-height: 1.3;
}
ul.list li:before, .ul.list li:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    width: 0;
    height: 0;
    margin-top: -5px;
    border-top: 5px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #9BADD3;
}
ul.list li:after {
	z-index: 1;
	margin-left: -3px;
	border-left-color: #f8f8f8;
}
.area_bgc02InBox ul.list li {
    line-height: 1.8;
}
/*----------------
レスポンシブ
-----------------*/
@media only screen and (max-width: 640px){
.area_bgc01 {
    margin: 0.5em 0;
}
.area_bgc02 {
    margin: 0.5em 0;
}
.area_bgc01InBox h1{
	margin:1em auto;
	font-size:200%;
}
p.hobby_text {
	text-align:center;
}
span.h_title {
    padding: 0px 15px;
    margin-right: 10px;
    display: block;
    width: 100%;
    text-align: center;
	margin-bottom:10px;
	box-sizing:border-box;
}
.area_bgc02InBox .column2_50, .area_bgc02InBox .column2_70{
		margin: 40px auto 0;
	}	
}
/*------------------------------------------------------------
イラストデザイン共通
------------------------------------------------------------*/	
h2.intro {
    text-align: left;
    border-top: 2px solid;
    padding: 8px 0 8px 20px;
    font-size: 170%;
}
h2.intro span {
    font-size: 55%;
    font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
    letter-spacing: 0.1em;
}
.exp {
    padding: 0 20px 6px;
    font-size: 110%;
	text-align:center;
}
.exp a {
    display: inline-block;
    background: #F3CDD7;
    padding: 6px 14px;
    border-radius: 100px;
    color: #2A416B;
	line-height: 1.4;
	margin-top:2px;
	letter-spacing: 0em;
	box-shadow: 0 2px 0 #e09eab;
	margin-left: 8px;
    font-family:'Satisfy', "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;	
}
.exp a:hover {
	background: #2A416B;
	color: #F3CDD7;
}
ul.illustBox{
	display: flex;
	justify-content: space-around;
	margin: 2% auto;
	padding: 0;
}
ul.illustBox li{
	width: 42%;
	padding:10px;
	text-align: center;
	font-family: 'Satisfy' , "Noto Sans Japanese" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif, cursive;
	letter-spacing: 0;
	font-size: 200%;
	line-height: 1.3;
	box-sizing: border-box;
}
ul.illustBox li a{
	color: #2A416B;
}
ul.illustBox li img{
	border-radius: 150%;
}

/*----------------
レスポンシブ
-----------------*/
@media only screen and (max-width: 640px){
.exp {
    line-height:1.3;
    font-size: 80%;
}
	ul.illustBox li{
		font-size: 140%;
	}	
}
/*------------------------------------------------------------
ラインスタンプページ
------------------------------------------------------------*/
body .Linebox h2 {
    font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
    font-weight: normal;
    box-sizing: border-box;
    letter-spacing: 0.05em;
    font-size: 130%;
    position: relative;
    background: #E2F9F6;
    border: 2px solid #C6F1EB;
    padding: 12px 6px;
    border-radius: 40px;
    width: 96%;
    margin: 20px auto 0;
}
body .Linebox h2:after, body .Linebox h2:before {
	top: 100%;
	left: 50%;
	border: solid;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
body .Linebox h2:before {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #C6F1EB;
    border-width: 13px;
    margin-left: -13px;
}
body .Linebox h2:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #E2F9F6;
    border-width: 10px;
    margin-left: -10px;
}	

/*----------------
フレックスボックス
-----------------*/
.LineBoxFlex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:100%;
}
.LineInBox{
	border: 2px solid #F5D7DF;
    background: #FEFAFA;
    border-radius: 4px;
    width: 31%;
    margin-bottom: 30px;
	padding: 20px;
	box-sizing: border-box;	
}
ul.LineBoxFlex{
	padding: 0;
}
ul.LineBoxFlex::after {
    content: "";
    display: block;
    width: 33%;
}
.LineBoxFlex h2{
    font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
    font-weight: normal;
    box-sizing: border-box;
    letter-spacing: 0.02em;
    font-size: 120%;
	line-height: 1.2;
	font-weight: bold;
    position: relative;
    background: #E2F9F6;
    border: 2px solid #C6F1EB;
    padding: 12px 6px;
    border-radius: 40px;
    width: 96%;
    margin: 20px auto 0;	
}
.LineBoxFlex h2::after, .LineBoxFlex h2::before {
	top: 100%;
	left: 50%;
	border: solid;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.LineBoxFlex h2::before {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #C6F1EB;
    border-width: 13px;
    margin-left: -13px;	
}
.LineBoxFlex h2::after{
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #E2F9F6;
    border-width: 10px;
    margin-left: -10px;	
}
.LIBmain{
	width:100%;
	display: flex;
	margin: 20px auto;
	align-items: center;
	justify-content: space-between;
}
.LIBmain img, .LIBmain p{
    margin: 0 auto;
	width:48%;
}
.LIBmain p{
	line-height: 1.6;
	letter-spacing: 0.02em;
}
ul.Lines-slist {
    display: flex;
    justify-content: space-around;
    padding-left: 0;
}
ul.Lines-slist li{
	width: 24%;
}
ul.Lines-slist li img{
	width: 100%;
}
@media screen and (max-width: 900px) {
.LIBmain {
    flex-direction: column;
}
.LIBmain img, .LIBmain p{
	width: 90%;
	margin: 10px auto;
	}
}
@media screen and (max-width: 768px) {
	.LineInBox{
		width:95%;
		margin: 2% auto;
	}
}
/*----------------
フレックスボックスaboutページ
-----------------*/
.WCHD {
    padding: 20px;
    background: #fff;
    margin-bottom: 2em;
    border: 2px solid #fcccda;
	margin: 40px auto 0;
	width: 80%;	
}
.WCHD h3{
	position: relative;
	background: #ddfaf6;
	border: 2px solid;
	padding:10px 8px;
	margin-top:-40px;
	font-size: 115%;
	line-height: 1.5;
	font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}
.WCHD h3:after, .WCHD h3:before {
	top: 100%;
	left: 50%;
	border: solid;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.WCHD h3:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ddfaf6;
	border-width: 10px;
	margin-left: -10px;
}
.WCHD h3:before {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #2A416B;
	border-width: 13px;
	margin-left: -13px;
}
ul.Img_boxli {
    margin: 1.8em auto 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.Img_boxli li {
    width: 24%;
    padding: 10px;
    background: #f9ecef;
    box-sizing: border-box;		
}

ul.Img_boxli li img {
    border-radius: 100%;
}
ul.Img_boxli li p {
	font-size: 110%;
	font-weight: bold;
	line-height: 1.3;
	margin: 4px 0;
}
ul.Img_boxli li p span {
    display: block;
    line-height: 1.2;
    border-radius: 6px;
	font-size:80%;
}
li.typeA, li.typeB, li.typeC, li.typeD{
	position: relative;
}
li.typeA::before, li.typeB::before, li.typeC::before, li.typeD::before{
    position: absolute;
    top: -12px;
    left: 6px;
    background: #fcccda;
    line-height: 32px;
    border-radius: 100%;
    padding: 10px;
    font-family: 'Satisfy';
    letter-spacing: 0;
}
li.typeA::before{
    content: "TypeA";	
}
li.typeB::before{
    content: "TypeB";	
}
li.typeC::before{
    content: "TypeC";	
}
li.typeD::before{
    content: "TypeD";	
}
p.ex_text{
	color:#2A416B;
	font-size: 120%;
	font-weight: bold;
	line-height: 1.5;
}

/*----------------
レスポンシブ
-----------------*/
@media only screen and (max-width: 640px){
.Linebox{
	margin:0 auto;
	}
.column2_50.LBox{
	margin:0 auto 10px;
	width:100%;
}
.column2_50.b_mdl{
margin:2px auto;
padding:0;
width:100%;
}
.column2_50.b_mdl img {
    width: 60%;
	margin:0 auto;
	display:block;
}
.LinBoxFlex{
	flex-direction: column;
}
.LineInBox01{
	width:90%;
	margin:10px auto;
	}
ul.Img_boxli li{
		width: 100%;
		padding: 20px;
		margin: 0 auto 20px;
	}
.WCHD{
		width:90%;
	}
.WCHD h3{
		line-height: 1.4;
		padding: 12px 8px;
	}	
}
/*------------------------------------------------------------
sns footer共通
------------------------------------------------------------*/	
.SNSBox{
	width: 100%;
    margin: 0 auto;
	clear: left;
    height: auto;
    box-sizing: border-box;
    background: url(images/bg2.png) repeat scroll 0 0 transparent;
}
.SNSBox .InBox {
    max-width: 1024px;
	width:100%;
    padding: 20px 0 0;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    display: block;
}
.SNSBox h2{
	font-size:280%;
	background: none;
	border: none;
	line-height:1.2em;
	color:#2A416B;
	text-align:center;
	position:relative;
	display:table;
	margin:1em auto 2em;
	font-family: 'Satisfy' , "Noto Sans Japanese" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif, cursive;
}
.SNSBox h2::after{
content: '';
position: absolute;
bottom: -20px;
display: inline-block;
width: 60px;
height: 3px;
left: 50%;
-moz-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
background-color: #2A416B;
border-radius: 2px;
}
.icon_box {
    width: 86%;
    margin: 0 auto;
	text-align:center;
}
.icon_box img {
    margin: 2.5% auto;
	padding:0 10px;
	width:8%;
}
/*----------------
レスポンシブ
-----------------*/
@media screen and (max-width: 640px) {
.icon_box img {
	width:18%;
}
.SNSBox h2{
	font-size:200%;
}
}
/*------------------------------------------------------------
footer共通
------------------------------------------------------------*/
footer{
	width:100%;
	clear: left;
	margin:0 auto;
	position:relative;
	height:auto;
	bottom:0;
	background:#FBE7E8 bottom; 
    font-family:"游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}
.footIn{
	width:100%; 
	max-width:1100px;
	height:auto; 
	margin:0 auto;
	overflow:hidden;
	padding:20px;  
	box-sizing:border-box;
	display: flex;
	}
.FTILeft{
	width:55%;
	font-size:11px; 
	border-right:#FEB7D1 solid 1px; 
	color:#2A416B;;
	box-sizing:border-box;
	display:inline-block;
	}
.FTIRight{
	width:40%; 
	border-left:#FEDBE8 solid 1px; 
	font-size:11px;
	display:inline-block; 
	box-sizing:border-box;
	color:#2A416B;
	padding-left: 20px;
	}
p.f_logo {
    font-family: 'Satisfy', cursive;
    font-size: 140%;
    line-height: 1.2;
    padding: 0;
    margin: 5px 0 10px;
}	
/*----------------
レスポンシブ
-----------------*/
@media screen and (max-width: 640px) {
footer .footIn{
	width:100%;
	text-align:center;
}
.footIn .FTILeft{
	text-align:center;
	width:98%;
	border-right:none;
	display:block;
	margin:0 auto;
	float:none;
}
.footIn .FTIRight{
	width:98%;
	margin-top:20px;
	text-align:center;
	display:block;
	margin:0 auto;
	float:none;
}
}
/*----------------
cssアニメーション
-----------------*/
.m_left{
	animation:motionImg 0.5s linear 1s 1 normal;
	animation-fill-mode: both;
}

@keyframes motionImg {
    0% {
        opacity:0;
		transform:translateX(-100px);
    }
    100% {
        opacity:1;
		transform:translateX(0);
    }
}




