@charset "UTF-8";

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
color: #4D4D4D;
font: 18px/36px "Noto Sans JP", sans-serif;
}

a:link{
text-decoration: none;
color: #009BBF;
}
a:visited {
text-decoration: none;
color: #009BBF;
}
a:hover {
text-decoration:none;
color: #011D64;
}



/* ==================================================TopPage================================================== */
/* TopLogo--------------------------- */
#TopLogoWRP {
width: 300px;
height: 300px;
margin: -150px 0 0 -150px;  /*縦横の半分をネガティブマージンでずらす*/
position: absolute;  /*body要素に対して絶対配置*/
top: 320px;  /*上端位置調整*/
left: 83%;  /*右端位置調整*/
}
.TopLogo {
width: 200px;
height: 160px;
padding: 55px 50px 85px;
border-radius: 150px;
animation: TopLogo 12s infinite;
}
@keyframes TopLogo {
0% { background: #D4ECF3; }
50% { background: #FEECD2; }
100% { background: #F9D3E3; }
}
#TopSNSWRP {
width: 108px;
height: 44px;
margin: -22px 0 0 -46px;  /*縦横の半分をネガティブマージンでずらす*/
position: absolute;  /*body要素に対して絶対配置*/
top: 500px;  /*上端位置調整*/
left: 83%;  /*右端位置調整*/
display: flex;
}
#TopSNSWRP img {
width: 44px;
margin-right: 10px;
}

/* Slider------------------------- */
.slidecontainer {
width: 80%;
height: 600px;
float: left;
border-top-right-radius: 300px;
border-bottom-right-radius: 300px;
z-index: 1;
}
.slider {
position: relative;
width: 100%;
height: 600px;
border-top-right-radius: 300px;
border-bottom-right-radius: 300px;
overflow: hidden;
}
.slider__wrapper {
height: 600px;
list-style: none;
overflow: hidden;
  *zoom: 1;
-webkit-backface-visibility: hidden;
-webkit-transform-style: preserve-3d;
}
.slider__item {
  height: 100%;
  float: left;
  background-size: cover;
  background-position: center;
  clear: none;
}
.slider__arrows-item {
  position: absolute;
  display: block;
  margin-bottom: -20px;
  padding: 20px;
  cursor: pointer;
}
.slider__arrows-item--right {
  bottom: 50%;
  right: 30px;
}
.slider__arrows-item--left {
  bottom: 50%;
  left: 30px;
}
.slider__nav {
position: absolute;
bottom: 10px;
}
.slider__nav-item {
width: 10px;
height: 10px;
float: left;
clear: none;
display: block;
margin: 0 5px;
background: #fff;
border-radius: 5px;
}
.slider__nav-item--current {
background: #009BBF;
}
.slider__nav-item:hover {
background: #CCCCCC;
}
/* TopContents------------------------- */
.TopCopy {
line-height: 40px;
text-align: center;
color: #009BBF;
}
/* ScrollHeader------------------------- */
#headbar {
/* 上部に固定するCSS */
position: fixed;
top: 0px;
left: 0px;
width: 100%;
z-index: 200;
background: rgba(200,231,233,0.9);
}
#ScrollHeader {
width: 1000px;
margin-right: auto;
margin-left: auto;
}
#ScrollLogo {
width: 170px;
height: 64px;
float: left;
padding-top: 8px;
padding-bottom: 8px;
opacity: 1;
}
#ScrollNavi {
width: 830px;
height: 80px;
float: right;
}
#ScrollNavi ul#Menu{
}
#ScrollNavi ul#Menu  li{
position: relative;
float: right;
margin: 0;
padding: 0;
}
#ScrollNavi ul#Menu  li a{
color: #011D64;
text-decoration: none;
font-size: 16px;
line-height: 16px;
display: block;
float: right;
padding: 32px;
opacity: 1;
}
#ScrollNavi ul#Menu li a:hover {
text-decoration: none;
background: rgba(255,255,255,0.7);
}

#ScrollNavi ul#Menu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
#ScrollNavi ul#Menu li:last-child ul{
  left: -100%;
  width: 100%
}
#ScrollNavi ul#Menu li ul li{
overflow: hidden;
height: 0;
-moz-transition: .2s;
-webkit-transition: .2s;
-o-transition: .2s;
-ms-transition: .2s;
transition: .2s;
top: 0px;
z-index: 100;
}
#ScrollNavi ul#Menu li ul li a{
background: rgba(200,231,233,0.9);
text-decoration: none;
text-align: center;
font-size: 14px;
line-height: 14px;
width: 150px;
padding: 18px 30px;
border-left: none;
}
#ScrollNavi ul#Menu li ul li a:hover {
background: rgba(255,255,255,0.9);
}
#ScrollNavi ul#Menu li:hover ul li{
  overflow: hidden;
  height: 50px;
  
  border-bottom: 1px solid #ffffff;
}
#ScrollNavi ul#Menu li:hover ul li:first-child{
  border-top: 0;
}
#ScrollNavi ul#Menu li:hover ul li:last-child{
  border-bottom: 0;
}


/* ==================================================Footer================================================== */
#Footer {
width: 100%;
height: 400px;
}
.FooterLeft {
width: 28%;
height: 400px;
float: left;
z-index: 1;
background-color: #E9E6F3;
border-top-right-radius: 200px;
border-bottom-right-radius: 200px;
position: absolute;
}
.FooterRight {
width: 72%;
height: 400px;
margin-left: 28%;
float: Right;
z-index: 10;
background-color: #C8E7E9;
border-top-left-radius: 200px;
border-bottom-left-radius: 200px;
position: absolute;
}
.FooterLineT {
width: 100%;
height: 14px;
padding-top: 18px;
padding-bottom: 17px;
border-bottom: 1px solid #FFFFFF;
position: relative;
z-index: 20;
font-size: 13px;
line-height: 14px;
color: #333333;
top: 0px;
}
.FooterLineB {
width: 100%;
height: 12px;
padding-top: 18px;
padding-bottom: 19px;
border-top: 1px solid #FFFFFF;
position: relative;
z-index: 20;
font-size: 12px;
line-height: 12px;
color: #333333;
top: 300px;
}
.FooterLink {
text-align: right;
}
.Copyright {
text-align: right;
}
#FooterCONT {
width: 340px;
height: 230px;
margin: -115px 0 0 -170px;  /*縦横の半分をネガティブマージンでずらす*/
position: absolute;  /*body要素に対して絶対配置*/
top: 200px;  /*上端位置調整*/
left: 45%;  /*右端位置調整*/
text-align: center;
}
#FooterLogo {
width: 150px;
height: 120px;
padding-left: 95px;
padding-right: 95px;
margin-bottom: 20px;
}
#FooterName {
font-size: 18px;
line-height: 18px;
font-weight: 700;
color: #011D64;
margin-bottom: 15px;
}
#FooterAdd {
font-size: 14px;
line-height: 14px;
margin-bottom: 10px;
}
#FooterTel {
font-size: 18px;
line-height: 18px;
font-weight: 700;
}
#FooterSNSWRP {
width: 108px;
height: 44px;
margin: -22px 0 0 -46px;  /*縦横の半分をネガティブマージンでずらす*/
position: absolute;  /*body要素に対して絶対配置*/
top: 200px;  /*上端位置調整*/
left: 80%;  /*右端位置調整*/
display: flex;
}
#FooterSNSWRP img {
margin-right: 10px;
width: 44px;
height: 44px;
}


/* ==================================================Service================================================== */
#ServiceHeader {
width: 80%;
height: 600px;
float: left;
border-top-right-radius: 300px;
border-bottom-right-radius: 300px;
z-index: 1;
background-image: url(../service/images/ServiceIMG.jpg);
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
#ServiceTTL {
width: 830px;
height: 70px;
font-size: 18px;
line-height: 19px;
border: 1px solid #CCCCCC;
color: #009BBF;
text-align: center;
background-color: #C8E7E9;
padding-left: 159px;
padding-right: 9px;
padding-top: 49px;
padding-bottom: 39px;
border-radius: 80px;
margin-bottom: 30px;
}
.GalleryContent {
width: 1024px;
height: auto;
margin-left: auto;
margin-right: auto;
}
.GalleryWRP {
width: 1012px;
height: auto;
padding-left: 12px;
}
.GalleryBox {
width: 227px;
height: 227px;
float: left;
padding: 6px;
border: 1px solid #CCCCCC;
margin-right: 12px;
margin-bottom: 12px;
border-radius: 6px;
}
.PhotoWRP {
width: 227px;
height: 227px;
text-align: center;
display: table-cell;
vertical-align: middle;
}
.LinkCorporate {
background-image: url(../images/BTN_Corporate.png);
background-repeat: no-repeat;
background-size: 140px 140px;
background-position: 9px 9px;
}
.LinkIndividual {
background-image: url("../images/BTN_Individual.png");
background-repeat: no-repeat;
background-size: 140px 140px;
background-position: 9px 9px;
}
.LinkGift {
background-image: url(../service/images/BTN_Gift.png);
background-repeat: no-repeat;
background-size: 140px 140px;
background-position: 9px 9px;
}
.LinkDecoration {
background-image: url("../service/images/BTN_Decoration.png");
background-repeat: no-repeat;
background-size: 140px 140px;
background-position: 9px 9px;
}
.LinkEffect {
background-image: url("../service/images/BTN_Effect.png");
background-repeat: no-repeat;
background-size: 140px 140px;
background-position: 9px 9px;
}
.LinkWorkshop {
background-image: url("../service/images/BTN_Workshop.png");
background-repeat: no-repeat;
background-size: 140px 140px;
background-position: 9px 9px;
}
.LinkEng {
font: 28px Arial, Helvetica, sans-serif;
margin-bottom: 10px;
}


/* ==================================================Profile================================================== */
#ProfileHeader {
width: 80%;
height: 600px;
float: left;
border-top-right-radius: 300px;
border-bottom-right-radius: 300px;
z-index: 1;
background-image: url("../images/ProfileIMG.jpg");
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
.ProfileWRP {
width: 90%;
margin-left: auto;
margin-right: auto;
}
.ListLine {
width: 100%;
border-bottom: 1px solid #DDDDDD;
margin-top: 20px;
margin-bottom: 20px;
clear: both;
}
.ListName {
width: 15%;
float: left;
text-align: center;
font-size: 16px;
line-height: 16px;
}
.ListName2 {
width: 15%;
height: 130px;
float: left;
text-align: center;
font-size: 16px;
line-height: 16px;
}
.ListCont {
width: 83%;
padding-left: 2%;
float: left;
font-size: 16px;
line-height: 16px;
text-align: left;
}
.ListCont2 {
width: 98%;
padding-left: 2%;
float: left;
font-size: 16px;
line-height: 16px;
text-align: left;
}
.ListContWRP {
width: 85%;
float: left;
}


/* ==================================================Access================================================== */
#AccessHeader {
width: 80%;
height: 600px;
float: left;
border-top-right-radius: 300px;
border-bottom-right-radius: 300px;
z-index: 1;
background-image: url("../images/AccessIMG.jpg");
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
.AccessInfo {
text-align: center;
}
.AccessName {
font-size: 24px;
color: #011D64;
font-weight: 700;
}
.AccessTEL {
font-size: 24px;
font-weight: 700;
}
.MapCont {
width: 100%;
height: 600px;
}


/* ==================================================Inquiry================================================== */
#InquiryHeader {
width: 80%;
height: 600px;
float: left;
border-top-right-radius: 300px;
border-bottom-right-radius: 300px;
z-index: 1;
background-image: url("../images/InquiryIMG.jpg");
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
#FormBG {
width: 70%;
padding: 50px 15% 80px;
color: #000000;
font-size: 16px;
background-color: #F6F6F6;
border-radius: 10px;
}
.InquiryTTL {
font-size: 24px;
text-align: center;
font-weight: 500;
color: #009BBF;
margin-bottom: 10px;
}
.required {
height: 12px;
padding: 2px 4px 4px;
color: #FFFFFF;
font-size: 12px;
line-height: 12px!important;
text-align: center;
border-radius: 3px;
background-color: #D7553A;
margin-left: 15px;
display: inline;
}
.InqTTL {
width: 100%;
height: 20px;
line-height: 18px;
margin-bottom: 10px;
}
.InqContWRP {
width: 100%;
}
.InqCont1 {
width: 48%;
padding-right: 4%;
float: left;
}
.InqCont2 {
width: 48%;
float: left;
}
.input {
width: 100%;
height: 24px;
border: 1px solid #DDDDDD;
float: left;
padding: 5px;
font-size: 18px;
line-height: 24px;
border-radius: 5px;
}
.textarea {
width: 100%;
height: 144px;
font-size: 18px;
line-height: 24px;
border: 1px solid #DDDDDD;
padding: 5px;
border-radius: 5px;
}
.submit {
width: 100%;
height: 42px;
line-height: 20px;
font-weight: 700;
font-size: 20px;
background-color: #009BBF;
border: 1px solid #009BBF;
padding-top: 10px;
padding-bottom: 10px;
color: #FFFFFF;
cursor: pointer;
border-radius: 5px;
text-align: center;
}
.submit:hover {
background-color: #D4ECF3;
color: #009BBF;
}


/* ==================================================Privacy================================================== */
#PrivacyHeader {
width: 80%;
height: 600px;
float: left;
border-top-right-radius: 300px;
border-bottom-right-radius: 300px;
z-index: 1;
background-image: url("../images/PrivacyIMG.jpg");
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
.PrivacyTXT {
font-size: 14px;
line-height: 26px;
}
.PrivacyTTL {
width: 980px;
height: 20px;
padding-top: 5px;
padding-bottom: 5px;
float: left;
margin-bottom: 15px;
color: #011D64;
font-size: 20px;
line-height: 20px;
font-weight: 500;
padding-left: 15px;
border-left: 5px solid #011D64;
}


/* ==================================================Common================================================== */
/* HeaderIMG--------------------------- */
#HeaderWrap {
width: 100%;
height: 600px;
padding-top: 30px;
margin-bottom: 50px;
}
/* HeaderCopy--------------------------- */
.HeaderCopyWRP {
width: 1000px;
margin-left: auto;
margin-right: auto;
margin-top: 280px;
position: relative;
}
.HeaderCopy {
width: 88%;
height: 60px;
position: absolute;
color: #FFFFFF;
z-index: 10;
font-family: "Pacifico", cursive;
font-weight: 400;
font-style: normal;
font-size: 60px;
text-shadow: 2px 2px 4px #000000;
}
/* Container--------------------------- */
.Container1000 {
width: 1000px;
margin-left: auto;
margin-right: auto;
}
.Container800 {
width: 800px;
margin-left: auto;
margin-right: auto;
}
/* NaviLinkButton--------------------------- */
.LinkBTNWRP {
width: 100%;
height: auto;
}
#LinkBTN li{
position: relative;
float: left;
padding: 0;
margin-right: 20px;
margin-bottom: 20px;
}
#LinkBTN li.Last {
margin-right: 0px;
}
#LinkBTN li a{
width: 320px;
height: 70px;
display: block;
margin: 0;
font-size: 18px;
line-height: 19px;
border: 1px solid #CCCCCC;
color: #009BBF;
text-align: center;
text-decoration: none;
background-color: #FFFFFF;
padding-left: 159px;
padding-right: 9px;
padding-top: 49px;
padding-bottom: 39px;
border-radius: 80px;
}
#LinkBTN li a:hover {
background-color: #D4ECF3;
}

#LinkBTN2 li{
position: relative;
float: left;
padding: 0;
margin-right: 0px;
margin-bottom: 20px;
}
#LinkBTN2 li.Last {
margin-right: 0px;
}
#LinkBTN2 li a{
width: 630px;
height: 70px;
display: block;
margin: 0;
font-size: 18px;
line-height: 19px;
border: 1px solid #CCCCCC;
color: #009BBF;
text-align: center;
text-decoration: none;
background-color: #FFFFFF;
padding-left: 159px;
padding-right: 9px;
padding-top: 49px;
padding-bottom: 39px;
border-radius: 80px;
}
#LinkBTN2 li a:hover {
background-color: #D4ECF3;
}


/* TTLBox------------------------- */
.TTLBox {
width: 260px;
height: 160px;
padding: 60px 20px 80px;
border-radius: 150px;
font-size: 20px;
font-weight: 700;
line-height: 20px;
color: #011D64;
text-align: center;
animation: TTLBox 12s infinite;
}
@keyframes TTLBox {
0% { background: #D4ECF3; }
50% { background: #FEECD2; }
100% { background: #F9D3E3; }
}
.LogoBox {
width: 150px;
height: 120px;
margin-left: 55px;
margin-right: 55px;
margin-bottom: 20px;
}

/* SubTTL------------------------- */
.TTLbarWRP {
width: 1000px;
margin-left: auto;
margin-right: auto;
}
.TTLbar {
width: 100%;
height: 65px;
font-size: 20px;
font-weight: 700;
line-height: 20px;
color: #011D64;
text-align: center;
background-color: #D4ECF3;
padding-top: 15px;
border-radius: 40px;
margin-bottom: 12px;
}
.TTLEng {
font: 32px/30px "Pacifico", cursive;
color: #FFFFFF;
}

/* PageTop------------------------- */
.pagetop {
	position: fixed;
	bottom: -80px;
	right: 80px;
	z-index: 200;
}
.pagetop a {
	display: block;
	width: 70px;
	height: 70px;
	background-color: #011D64;
	text-align: center;
	color: #fff;
	font-size: 36px;
	text-decoration: none;
	line-height: 64px;
	border-radius: 35px;
}
.pagetop a:hover {
	background-color: #009BBF;
}

/* Layout--------------------------- */
.BoxH {
width: 100%;
height: 100px;
clear: both;
}
.BoxM {
width: 100%;
height: 60px;
clear: both;
}
.BoxL {
width: 100%;
height: 30px;
clear: both;
}
.mgn10R {
margin-right: 10px;
}
.Column {
max-width: 100%;
display: flex;
}
.indent {
text-indent: -1.2em;
padding-left: 1.2em;
}
.Red {
color: #C8161D!important;
}
.cl {
clear: both;
}
.br-pc { display:block; }
.br-sp { display:none; }














/* ==================================================////////////////////タブレット////////////////////================================================== */
@media screen and (min-width: 960px) {
	/* 959px以下に適用されるCSS（タブレット用） */

.hamburger {
display: none;
}
nav.globalMenuSp {
display: none;
}
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
color: #000000
}

}












/* ==================================================////////////////////スマートフォン////////////////////================================================== */
@media screen and (max-width: 959px){
body {
color: #4D4D4D;
font: 16px/32px "Noto Sans JP", sans-serif;
}

.pc { display:none; }
.sp { display:inline; }

.br-pc { display:none; }
.br-sp { display:block; }

#headbar {
display: none;
}
#ScrollHeader {
display: none;
}

/* Menu------------------------- */
/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 120;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #333333;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 110;
  top  : 0;
  left : 0;
  color: #011D64;
  background: #D4ECF3;
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#009BBF;
}
nav.globalMenuSp ul li a {
  display: block;
  font-size: 14px;
  color: #011D64;
  padding: 2em 0;
  text-decoration :none;
}
/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}



/* ==================================================TopPage================================================== */
/* TopLogo--------------------------- */
#TopLogoWRP {
width: 240px;
height: 240px;
margin: -120px 0 0 -240px;  /*縦横の半分をネガティブマージンでずらす*/
position: absolute;  /*body要素に対して絶対配置*/
top: 400px;  /*上端位置調整*/
left: 98%;  /*右端位置調整*/
}
.TopLogo {
width: 160px;
height: 128px;
padding: 44px 40px 68px;
border-radius: 120px;
animation: TopLogo 12s infinite;
}
@keyframes TopLogo {
0% { background: #D4ECF3; }
50% { background: #FEECD2; }
100% { background: #F9D3E3; }
}
#TopSNSWRP {
width: 108px;
height: 44px;
margin: 0 0 0 0;  /*縦横の半分をネガティブマージンでずらす*/
position: absolute;  /*body要素に対して絶対配置*/
top: 440px;  /*上端位置調整*/
left: 5%;  /*右端位置調整*/
display: flex;
}
#TopSNSWRP img {
width: 44px;
margin-right: 10px;
}

/* Slider------------------------- */
.slidecontainer {
width: 100%;
height: 360px;
float: left;
border-top-right-radius: 180px;
border-bottom-right-radius: 180px;
z-index: 1;
}
.slider {
position: relative;
width: 100%;
height: 360px;
border-top-right-radius: 180px;
border-bottom-right-radius: 180px;
overflow: hidden;
}
.slider__wrapper {
height: 360px;
list-style: none;
overflow: hidden;
  *zoom: 1;
-webkit-backface-visibility: hidden;
-webkit-transform-style: preserve-3d;
}
.slider__item {
  height: 100%;
  float: left;
  background-size: cover;
  background-position: center;
  clear: none;
}
.slider__arrows-item {
  position: absolute;
  display: block;
  margin-bottom: -20px;
  padding: 20px;
  cursor: pointer;
}
.slider__arrows-item--right {
  bottom: 50%;
  right: 30px;
}
.slider__arrows-item--left {
  bottom: 50%;
  left: 30px;
}
.slider__nav {
display: none;
}
.slider__nav-item {
width: 10px;
height: 10px;
float: left;
clear: none;
display: block;
margin: 0 5px;
background: #fff;
border-radius: 5px;
}
.slider__nav-item--current {
background: #009BBF;
}
.slider__nav-item:hover {
background: #CCCCCC;
}

/* TopContents------------------------- */
.TopCopy {
line-height: 40px;
text-align: center;
color: #009BBF;
}


/* ==================================================Footer================================================== */
#Footer {
width: 100%;
height: 300px;
}
.FooterLeft {
width: 30%;
height: 300px;
float: left;
z-index: 1;
background-color: #E9E6F3;
border-top-right-radius: 150px;
border-bottom-right-radius: 150px;
position: absolute;
}
.FooterRight {
width: 94%;
height: 300px;
margin-left: 6%;
float: Right;
z-index: 10;
background-color: #C8E7E9;
border-top-left-radius: 150px;
border-bottom-left-radius: 150px;
position: absolute;
}
.FooterLineT {
width: 100%;
height: 29px;
padding-top: 0px;
padding-bottom: 0px;
border-bottom: 1px solid #FFFFFF;
position: relative;
z-index: 20;
top: 0px;
}
.FooterLineB {
width: 100%;
height: 10px;
padding-top: 9px;
padding-bottom: 10px;
border-top: 1px solid #FFFFFF;
position: relative;
z-index: 20;
font-size: 10px;
line-height: 10px;
color: #333333;
top: 240px;
}
.FooterLink {
display: none;
}
#FooterCONT {
width: 340px;
height: 180px;
margin: -95px 0 0 -170px;  /*縦横の半分をネガティブマージンでずらす*/
position: absolute;  /*body要素に対して絶対配置*/
top: 155px;  /*上端位置調整*/
left: 50%;  /*右端位置調整*/
text-align: center;
}
#FooterLogo {
width: 125px;
height: 100px;
padding-left: 120px;
padding-right: 120px;
margin-bottom: 10px;
}
#FooterName {
font-size: 16px;
line-height: 16px;
font-weight: 700;
color: #011D64;
margin-bottom: 10px;
}
#FooterAdd {
font-size: 12px;
line-height: 12px;
margin-bottom: 5px;
}
#FooterTel {
font-size: 16px;
line-height: 16px;
font-weight: 700;
}
#FooterSNSWRP {
width: 44px;
height: 108px;
margin: -49px 0 0 -44px;  /*縦横の半分をネガティブマージンでずらす*/
position: absolute;  /*body要素に対して絶対配置*/
top: 150px;  /*上端位置調整*/
left: 98%;  /*右端位置調整*/
display: inherit;
}
#FooterSNSWRP img {
margin-right: 0px;
margin-bottom: 10px;
width: 44px;
height: 44px;
}


/* ==================================================Service================================================== */
#ServiceHeader {
width: 100%;
height: 360px;
float: left;
border-top-right-radius: 180px;
border-bottom-right-radius: 180px;
z-index: 1;
background-image: url(../service/images/ServiceIMG.jpg);
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
#ServiceTTL {
width: 230px;
height: 50px;
font-size: 16px;
line-height: 16px;
border: 1px solid #CCCCCC;
color: #009BBF;
text-align: center;
background-color: #C8E7E9;
padding-left: 109px;
padding-right: 9px;
padding-top: 29px;
padding-bottom: 29px;
border-radius: 55px;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto;
}
.GalleryContent {
width: 370px;
height: auto;
margin-left: auto;
margin-right: auto;
}
.GalleryWRP {
width: 360px;
height: auto;
padding-left: 10px;
}
.GalleryBox {
width: 160px;
height: 160px;
float: left;
padding: 4px;
border: 1px solid #CCCCCC;
margin-right: 10px;
margin-bottom: 10px;
border-radius: 5px;
}
.PhotoWRP {
width: 160px;
height: 160px;
text-align: center;
display: table-cell;
vertical-align: middle;
}
.LinkCorporate {
background-image: url(../images/BTN_Corporate.png);
background-repeat: no-repeat;
background-size: 90px 90px;
background-position: 9px 9px;
}
.LinkIndividual {
background-image: url("../images/BTN_Individual.png");
background-repeat: no-repeat;
background-size: 90px 90px;
background-position: 9px 9px;
}
.LinkGift {
background-image: url(../service/images/BTN_Gift.png);
background-repeat: no-repeat;
background-size: 90px 90px;
background-position: 9px 9px;
}
.LinkDecoration {
background-image: url("../service/images/BTN_Decoration.png");
background-repeat: no-repeat;
background-size: 90px 90px;
background-position: 9px 9px;
}
.LinkEffect {
background-image: url("../service/images/BTN_Effect.png");
background-repeat: no-repeat;
background-size: 90px 90px;
background-position: 9px 9px;
}
.LinkWorkshop {
background-image: url("../service/images/BTN_Workshop.png");
background-repeat: no-repeat;
background-size: 90px 90px;
background-position: 9px 9px;
}
.LinkEng {
font: 21px Arial, Helvetica, sans-serif;
margin-bottom: 10px;
}


/* ==================================================Profile================================================== */
#ProfileHeader {
width: 100%;
height: 360px;
float: left;
border-top-right-radius: 180px;
border-bottom-right-radius: 180px;
z-index: 1;
background-image: url("../images/ProfileIMG.jpg");
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
.ProfileWRP {
width: 350px;
margin-left: auto;
margin-right: auto;
}
.ListLine {
width: 100%;
border-bottom: 1px solid #DDDDDD;
margin-top: 15px;
margin-bottom: 15px;
clear: both;
}
.ListName {
width: 60px;
float: left;
text-align: center;
font-size: 14px;
line-height: 20px;
}
.ListName2 {
width: 60px;
height: 122px;
float: left;
text-align: center;
font-size: 14px;
line-height: 20px;
}
.ListCont {
width: 280px;
padding-left: 10px;
float: left;
font-size: 14px;
line-height: 20px;
text-align: left;
}
.ListCont2 {
width: 280px;
padding-left: 10px;
float: left;
font-size: 14px;
line-height: 20px;
text-align: left;
}
.ListContWRP {
width: 290px;
float: left;
}


/* ==================================================Access================================================== */
#AccessHeader {
width: 100%;
height: 360px;
float: left;
border-top-right-radius: 180px;
border-bottom-right-radius: 180px;
z-index: 1;
background-image: url("../images/AccessIMG.jpg");
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
.AccessName {
font-size: 20px;
color: #011D64;
font-weight: 700;
}
.AccessTEL {
font-size: 16px;
font-weight: 700;
}


/* ==================================================Inquiry================================================== */
#InquiryHeader {
width: 100%;
height: 360px;
float: left;
border-top-right-radius: 180px;
border-bottom-right-radius: 180px;
z-index: 1;
background-image: url("../images/InquiryIMG.jpg");
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
#FormBG {
width: 90%;
padding: 30px 5% 50px;
color: #000000;
font-size: 14px;
background-color: #F6F6F6;
border-radius: 10px;
}
.InquiryTTL {
font-size: 20px;
text-align: center;
font-weight: 500;
color: #009BBF;
margin-bottom: 10px;
}
.required {
height: 10px;
padding: 2px 4px 3px;
color: #FFFFFF;
font-size: 10px;
line-height: 10px!important;
text-align: center;
border-radius: 3px;
background-color: #D7553A;
margin-left: 10px;
display: inline;
}
.InqTTL {
width: 90%;
height: 20px;
line-height: 18px;
margin-bottom: 5px;
}
.InqContWRP {
width: 100%;
}
.InqCont1 {
width: 46%;
padding-right: 6%;
float: left;
}
.InqCont2 {
width: 46%;
float: left;
}
.input {
width: 97%;
height: 20px;
border: 1px solid #DDDDDD;
float: left;
padding: 5px;
font-size: 16px;
line-height: 20px;
border-radius: 5px;
}
.textarea {
width: 97%;
height: 144px;
font-size: 16px;
line-height: 20px;
border: 1px solid #DDDDDD;
padding: 5px;
border-radius: 5px;
}
.submit {
width: 100%;
height: 42px;
line-height: 20px;
font-weight: 700;
font-size: 20px;
background-color: #009BBF;
border: 1px solid #009BBF;
padding-top: 10px;
padding-bottom: 10px;
color: #FFFFFF;
cursor: pointer;
border-radius: 5px;
text-align: center;
}


/* ==================================================Privacy================================================== */
#PrivacyHeader {
width: 100%;
height: 360px;
float: left;
border-top-right-radius: 180px;
border-bottom-right-radius: 180px;
z-index: 1;
background-image: url("../images/PrivacyIMG.jpg");
background-position: 50% 50%;
background-size: cover;
background-repeat: no-repeat;
}
.PrivacyTTL {
width: 95%;
height: 18px;
padding-top: 5px;
padding-bottom: 5px;
float: left;
margin-bottom: 10px;
color: #011D64;
font-size: 18px;
line-height: 18px;
font-weight: 500;
padding-left: 2%;
border-left: 5px solid #011D64;
}


/* ==================================================Common================================================== */
/* Header--------------------------- */
#HeaderWrap {
width: 100%;
height: 500px;
padding-top: 60px;
margin-bottom: 20px;
}
/* HeaderCopy--------------------------- */
.HeaderCopyWRP {
width: 90%;
margin-left: 5%;
margin-right: 5%;
margin-top: 160px;
position: relative;
}
.HeaderCopy {
width: 95%;
height: 32px;
position: absolute;
color: #FFFFFF;
z-index: 10;
font-family: "Pacifico", cursive;
font-weight: 400;
font-style: normal;
font-size: 40px;
text-shadow: 2px 2px 4px #000000;
}
/* Container--------------------------- */
.Container1000 {
width: 96%;
margin-left: 2%;
margin-right: 2%;
}
.Container800 {
width: 96%;
margin-left: 2%;
margin-right: 2%;
}
/* NaviLinkButton--------------------------- */
.LinkBTNWRP {
width: 350px;
height: auto;
margin-left: auto;
margin-right: auto;
}
#LinkBTN li{
position: relative;
float: left;
padding: 0;
margin-right: 0px;
margin-bottom: 20px;
}
#LinkBTN li a{
width: 230px;
height: 50px;
display: block;
margin: 0;
font-size: 16px;
line-height: 16px;
border: 1px solid #CCCCCC;
color: #009BBF;
text-align: center;
text-decoration: none;
background-color: #FFFFFF;
padding-left: 109px;
padding-right: 9px;
padding-top: 29px;
padding-bottom: 29px;
border-radius: 55px;
}

#LinkBTN2 li{
position: relative;
float: left;
padding: 0;
margin-right: 0px;
margin-bottom: 20px;
}
#LinkBTN2 li a{
width: 230px;
height: 50px;
display: block;
margin: 0;
font-size: 16px;
line-height: 16px;
border: 1px solid #CCCCCC;
color: #009BBF;
text-align: center;
text-decoration: none;
background-color: #FFFFFF;
padding-left: 109px;
padding-right: 9px;
padding-top: 29px;
padding-bottom: 29px;
border-radius: 55px;
}


/* TTLBox------------------------- */
.TTLBox {
width: 200px;
height: 160px;
padding: 35px 20px 45px;
border-radius: 120px;
font-size: 18px;
font-weight: 700;
line-height: 18px;
color: #011D64;
text-align: center;
animation: TTLBox 12s infinite;
}
.LogoBox {
width: 150px;
height: 120px;
margin-left: 25px;
margin-right: 25px;
margin-bottom: 20px;
}

/* SubTTL------------------------- */
.TTLbarWRP {
width: 350px;
margin-left: auto;
margin-right: auto;
}
.TTLbar {
width: 100%;
height: 45px;
font-size: 16px;
font-weight: 700;
line-height: 16px;
color: #011D64;
text-align: center;
background-color: #D4ECF3;
padding-top: 15px;
border-radius: 30px;
margin-bottom: 10px;
}
.TTLEng {
font: 24px/21px "Pacifico", cursive;
color: #FFFFFF;
}

/* PageTop------------------------- */
.pagetop {
	position: fixed;
	bottom: -80px;
	right: 20px;
}
.pagetop a {
	display: block;
	width: 48px;
	height: 48px;
	background-color: #011D64;
	text-align: center;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	line-height: 44px;
	z-index: 200;
	border-radius: 24px;
}

/* Layout--------------------------- */
.BoxH {
width: 100%;
height: 50px;
clear: both;
}
.BoxM {
width: 100%;
height: 30px;
clear: both;
}
.BoxL {
width: 100%;
height: 20px;
clear: both;
}








