@charset "UTF-8";
/* CSS Document */
/* ---------------
Common
Drawer
Header
Footer
Contents
--------------- */
/* Common
=================================================== */
html {
  overflow-y: scroll;
  font-size: 16px;
  width: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #E6DBE3;
  background-image: linear-gradient(90deg, rgba(136, 78, 121, 0.2), rgba(89, 69, 103, 0.2));
  background-repeat: no-repeat;
  background-position: center top;
  letter-spacing: 0.04em;
  width: 100%;
  font-family: 'Quicksand',"游ゴシック", YuGothic,Noto Sans Japanese,Noto Sans JP, sans-serif;
  /*font-family: 'Outfit',Noto Sans Japanese,Noto Sans JP,sans-serif;*/
  /*font-family: 'Outfit',"Sawarabi Gothic",sans-serif;*/
  /*font-family: 'Outfit',"見出ゴMB31",sans-serif;*/
  color: #080808;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,p,blockquote,table,th,td {
  line-height: 1.8;
  box-sizing: border-box;
  margin-top: 0;
}
a,
img,
fill,
stroke,
button {
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a:link {
  color: #594567;
  text-decoration: none;
}
a:visited {
  color: #594567;
  text-decoration: none;
}
a:hover {
  color: #594567;
  text-decoration: none;
}
a:active {
  color: #594567;
  text-decoration: none;
}
a:focus {
  outline: none;
}
img {
  vertical-align: top;
  width: auto;
  max-width: 100%;
  height: auto;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
span{
  letter-spacing: 1.5px;
}

.font-xs{
	font-size: 14px!important;
}
.center {
    text-align: center;
}

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

@media screen and (max-width: 720px){
	.pc{
		display: none!important;
	}
	.sp{
		display: block!important;
	}
}

/*==================================================
　HEADER - グローバルナビ・ハンバーガーメニュー・共通エリア
===================================*/

#header{
    /*はじめの高さを設定*/
	height: 100%;
	width:30%;
	/*以下はレイアウトのためのCSS*/
	display: grid;
	align-items: center;
	text-align: center;
	padding: 20px;
	background: #fff;
	position: relative;
	padding-top: 10%;
}

@media screen and (max-width: 1080px){
	#header{
	width:35vw;
	}
}

@media screen and (max-width: 720px){
	#header{
	height: 80px;
	width:95%;
	/*以下はレイアウトのためのCSS*/
	padding: 20px;
	padding-right: 26%;
	background: #fff;
	}
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
/*
#header.HeightMin{
  position: fixed;
  z-index: 100;
  height:70px;
  animation: DownAnime 0.5s forwards;
	border-bottom: 1.5px solid #5da9bb;
}*/

@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-170px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

h1 {
    height:  auto;
	padding: 0px;
}

nav ul.g-navi{
list-style: none;
display: flex;
justify-content: center;
}

nav ul.g-navi li a{
text-decoration: none;
color: #666;
padding:2px 10px;
}

nav {
	width: 20%;
    position: fixed;
    top: 120px;
	right: 10%;
    text-align: left;
}

section{
padding:0;
}
section#info,section#info2,section.page{
padding-top:80px;
padding-bottom:40px;
}

navi{
	display: block;
}
@media screen and (min-width: 1081px){
nav {
    display: block
}
}

@media screen and (max-width: 720px){
h1 {
    height: 16px;
	padding-left: 40px;
}
}

/*======
　5-3-1 中心から外に線が伸びる（下部）
========*/

#g-navi li a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
  padding-bottom: 14px;
  color: #080808;
}
#g-navi li .menu-re a {
    background: #E4E1E6;
    padding: 4px 10px;
    margin: -14px 6px 10px 0;
    border-radius: 0.5rem;
}
#g-navi li a span{
	color: #594567;
    padding-left: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

#g-navi li{
	border-bottom:1.5px solid;
	border-image: linear-gradient(to right, #E6DBE3, #DDD9E0) 1;
	margin-bottom: 14px;
}

#g-navi li.current a,
#g-navi li a:hover{
	opacity: 0.5;
	transition: all .3s;
}

#g-navi li.current a,
#g-navi li > a:hover::after{
	font-family: FontAwesome;
    content: '\f101';
    display: flex;
    height: auto;
    position: absolute;
    right: -24px;
    top: 0;
	color: #594567;
	opacity: 1;
}


/*現在地とhoverの設定*/
#g-navi li.current a::after,
#g-navi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}
#g-navi li.menu-active::after{
	font-family: FontAwesome;
    content: '\f060';
    display: flex;
    height: 0;
    position: relative;
    left: -24px;
    top: -43px;
	color: #E6DBE3;
}
#g-navi li:nth-child(5).menu-active::after {
    top: -86px;
}
#g-navi li.menu-active >a{
	pointer-events: none;
}
#g-navi .bnr {
    width: 100%;
}


/*========
　5-2-2 2本線が×に
==========*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn2{
  position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
  width: 80px;
  height:80px;
  cursor: pointer;
  background:#fff;
  top: 0px;
  right: 0px;
  z-index: 500;
  border-radius: 0 0 0 20px;
  background-image: linear-gradient(90deg, rgba(136, 78, 121, 0.2), rgba(89, 69, 103, 0.2));
  box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.6);
}
  
/*ボタン内側*/

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


.openbtn2 span:nth-of-type(1) {
  top:20px; 
    width: 45%;
}

.openbtn2 span:nth-of-type(2) {
  top:30px;
    width:45%;
}
.openbtn2 span:nth-of-type(3) {
  top:40px;
    width:25%;
}
.openbtn2 span:nth-of-type(4) {
  top:46px;
  font-size: 12px;
  height: auto;
  color: #594567;
  background: none;
  left: 20px;
	font-weight: 500;
}

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

.openbtn2.active span:nth-of-type(1) {
    top: 22px;
    left: 22px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}
.openbtn2.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn2.active span:nth-of-type(3) {
    top: 34px;
    left: 22px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}

@media screen and (min-width: 1081px){
.openbtn2 {
    display: none;
}
}

/*========= 開くメニュー ===============*/

@media screen and (max-width: 1080px){
#gnav{
position:fixed;
z-index: 300;
/*ナビのスタート位置と形状*/
top:0;
right: -120%;
width:50vw;
/*height: 100vh;ナビの高さ*/
height:100vh;
/*動き*/
transition: all 0.6s;
}
#gnav #gnav-list{
    opacity: 0;
	-webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
}
@media screen and (max-width: 720px){
#gnav{
width:100%;
}
}

/*アクティブクラスがついたら位置を0に*/
#gnav.panelactive{
    right: 0;
}
#gnav.panelactive #gnav-list{
    opacity: 1;
}

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

/*ナビゲーション*/
#gnav ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    z-index: 300;
	display: block;
    text-align: center;
    font-size: 18px;
    width: 320px;
    margin: 0 auto;
	margin-top: 30px;
}

/*リストのレイアウト設定*/

#gnav li{
	list-style: none;
	text-align: left;
	border-bottom: 1.5px solid;
	border-image: linear-gradient(to right, #E6DBE3, #DDD9E0) 1;
}

::-webkit-full-page-media, :future, :root #gnav li {
	border-image: none;
	border:1px solid #E6DAE2;
}

#gnav li a{
  color: #333333;
  text-decoration: none;
  padding:14px;
  display: block;
  letter-spacing: 0.1em;
	font-weight: 500;
}
#gnav li a span{
  color: #594567;
  padding-left: 10px;
  font-weight: 500;
	letter-spacing: 0.08em;
}
#gnav .logo{
	height: 72px;
	width: 75%;
	padding: 20px;
	margin-top:8px;
}

@media screen and (min-width: 1081px){
#gnav{
    display: none
}
#gnav .logo{
	width: 75%;
}
}


/*==================================================
　FOTTER - 共通エリア
===================================*/

footer {
    padding-top: 56px;
	padding-bottom: 36px;
	background-image: linear-gradient(90deg, rgba(136, 78, 121, 0.2), rgba(89, 69, 103, 0.2));
	color: #594567;
	
}
.copy{
	display: grid;
	background:  rgba(89, 69, 103, 0.8);
	height: 40px;
	text-align: center;
	align-content: center;
	color: #fff;
}
footer .box{
	padding: 20px;
	border-radius: 2rem;
	background-color:#fff;
	margin-bottom: 50px;
}

footer .title{
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1.5px solid;
	border-image: linear-gradient(to right, #E6DBE3, #DDD9E0) 1;
}
.tel{
	font-size: 28px;
}
footer img{
	width: 190px;
	margin-bottom: 50px;
}


/*==================================================
　STYLE - テキストが変わるボタンのスタイル
===================================*/

#gnav li a.btntextchange,.btntextchange{
  /*テキストの基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #594567;
  background:#fff;
  border-radius:25px;
  max-width: 100%;
  width: 260px;
  padding: 26px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #594567;
  outline: none;
  /*アニメーションの指定*/
  transition: all .2s;
}

.btntextchange::after{
	font-family: FontAwesome;
    content: '\f061';
    display: flex;
    height: auto;
    position: absolute;
    right: 14px;
    top: 12px;
	transition: all .5s;
}
.btntextchange.back::after {
    font-family: FontAwesome;
    content: '\f060';
    display: flex;
    height: auto;
    position: absolute;
    left: 14px;
    top: 12px;
    transition: all .5s;
}
.btntextchange.page-link::after{
    content: '\f063';
}

.box-area .btntextchange,.box-area .btntextchange:hover,.modaal-container .btntextchange,.modaal-container .btntextchange:hover{
  border: 1px solid #5da9bb;
}

/*hoverした際の変化*/
.btntextchange:hover{
  background:#594567;
  color:#fff;
  border: 1px solid #594567;
}

.btntextchange span{
    /*絶対配置でテキストの位置を決める*/
  position: absolute;
  left: 50%;
  top:50%;
    transform:translate(-50%,-50%);
    /*アニメーションの指定*/
    transition: all .5s;
  /*ブロック要素にしてテキスト折り返しなし*/  
  display: block;
  white-space: nowrap;
}
/*
.btntextchange span:nth-child(1){
  font-size: 16px;
}
.btntextchange span:nth-child(2){
  font-size: 14px;
}*/

/*差し替わるテキストの設定*/
.btntextchange span:nth-child(2){
  opacity:0;/*透過0に*/
}

/*hoverするとテキストが入れ替わる設定*/
.btntextchange:hover span:nth-child(1){
  opacity:0;/*透過0に*/
}

.btntextchange:hover span:nth-child(2){
  opacity:1;/*不透明に*/
}

.comsoon {
    pointer-events: none;
    border: 1px solid #ccc!important;
    color: #ccc!important;
}
.modaal-content-container ul {
    /*max-width: 720px;*/
	max-width: 500px;
    width: 100%;
    margin: 0 auto;
	overflow-wrap:break-word;
	padding-left: 1.3rem;
}
ul.list_dot{
	padding-left: 1em;
}
.list_dot > li {
    padding: 0 0 0 1em;
    position: relative;
	list-style: circle;
    padding-left: 2px;
    padding-bottom: 10px;
	line-height: 1.5;
}
.modaal-content-container li {
    list-style: circle;
    padding-left: 2px;
    padding-bottom: 10px;
}
.modaal-content-container ul.list_star {
    padding: 0;
}
.modaal-content-container li .list_star li{
	list-style: none;
	padding-bottom: 0;
	padding-left: 0;
}
.fa-star:before {
    color: #ccc;
	padding-right: 4px;
}

/*==================================================
　STYLE - 流れる文字のスタイル
===================================*/

.loop03 {
    padding-top: 0;
	padding-bottom: 0;
	position: fixed;
    overflow: hidden;
	bottom: 0;
	left: 0;
}
.loop03__box {
    display: flex;
    width: 100vw;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: #594567;
}
.loop03__item {
    flex: 0 0 auto;
    font-size: 18px;
    white-space: nowrap;
    padding-right: 0px;
    padding-left: 10px;
    color: #fff;
	margin-bottom: 0;
}
.loop03__item a{
    color: #fff;
}

.loop03__item:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}
.loop03__item:nth-child(even) {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
/*　↑　流れる文字のスタイル　*/

#tel {
    position: fixed;
    width: 82px;
	bottom: 0px;
	z-index: 1;
}

/*==================================================
　CONTENTS - モバイルファーストのコンテンツ
===================================*/

#main{
    position: fixed;
    max-width: 30vw;
    width: 100%;
    /*margin: 0 max(23.75vw, 23.75rem) 0 auto;*/
    min-height: 100vh;
	height: -webkit-fill-available;
	display: block;
    background: #fff;
    overflow: hidden;
	overflow-y: scroll;
	top: 0;
	right: 34vw;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.25);
}
/*
footer{
	max-width: 26.5rem;
	width: 100%;
	margin: 0 max(23.75vw, 23.75rem) 0 auto;
	
}
*/
#main::-webkit-scrollbar{
  display:none;
}

@media screen and (max-width: 1080px){
#main{
    max-width: 50vw;
	right: 0;
}
}

@media screen and (max-width: 720px){
#main{
	position: relative;
    max-width: 45rem;
    width: 100%;
    margin: 0 max(23.75vw, 23.75rem) 0 auto;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
	overflow-y: scroll;
	right: 0;
	box-shadow: none;
}
}
/*
section#kv {
    padding-top: 0px;
    background: none;
}*/
.wrapper{
	width:86%;
	max-width: 1000px;
	margin: 0 auto;
}
.wrap{
	width:82%;
	margin: 0 auto;
}
/*==================================================
　HOME - トップページコンテンツ
===================================*/

.page .title{
	margin-bottom: 40px;
	margin-left: 20px;
	display: flex;
}

.title::after{
    content: '';
	background-image: url("../img/common/logo3.png");
    display: flex;
	width: 280px;
    height: 170px;
    position: absolute;
    right: -24px;
    top: 16px;
	transition: all .5s;
	opacity: 0.1;
}

.title span{
	color: #594567;
	font-size: 14px;
	padding-top: 4px;
}

.title span::before{
    content: '/';
    display: inline;
    margin: 0 10px;
    color: #594567;
}

/*========= HOMEページのスタイル ===============*/

#home .title, footer .title{
	text-align: center;
	margin-bottom: 30px;
	display: block!important;
}

#home .title h3{
	font-size: 20px;
	margin-bottom: 0;
}
#home .title span::before, #info .title span::before, footer .title span::before{
	display: none!important;
}
#home .title::after,#info .title::after,footer .title::after{
	display: none;
}


#kv{
	text-align: left;
    margin-top: 80px;
}
#kv h2{
	font-size: 24px;
	color: #594567;
	line-height: 1.5;
	margin-bottom: 10px;
}
#kv span{
	font-size: 14px;
	color: #594567;
	line-height: 1.5;
	display: block;
    margin-bottom: 30px;
}

#news .date,#info .date{
	font-size: 14px;
	color: #594567;
	display: inline-block;
	margin-bottom: 8px;
	margin-top: 10px;
}
.page li span,#info li span,.blog span{
	font-size: 12px;
	padding: 4px;
	color: #fff;
	background: #ccc;
	margin-left: 6px;
	border-radius: 4px;
}
#news h4,#info h4{
	font-size: 16px;
	font-weight: 300;
	text-align: left;
	color: #333;
	line-height: 1.6;
}
#news .para,#info .para{
	font-size: 16px;
	margin-bottom: 10px;
	color: #333;
}
#news ul,#info ul{
	margin-bottom: 30px;
}
#news .page li,#info li{
	border-bottom: 1.5px solid;
	border-image: linear-gradient(to right, #E6DBE3, #DDD9E0) 1;
	padding-top: 16px;
    padding-bottom: 10px;
}
#info li:first-child,.info li:first-child{
	border-top: 1.5px solid;
	border-image: linear-gradient(to right, #E6DBE3, #DDD9E0) 1;
}
/*#news li:first-child,*/

#news.detail .page h4{
	text-align: left;
	font-size: 18px;
	margin-bottom: 20px;
}
#news.detail .wrap > img{
	margin-bottom: 20px;
}
/*
#news.detail .wrap p a {
    text-decoration: underline;
}*/

#info2 .box,.page .box{
	padding: 20px;
	border-radius: 2rem;
	background-image: linear-gradient(90deg, rgba(136, 78, 121, 0.2), rgba(89, 69, 103, 0.2));
}
#point a{
	padding:30px 24px;
	width: 100%;
}
#point .wide{
	width: 100%;
	height: 195px;
	background-image: url("../img/home/img_01.jpg");
	background-size:cover;
	border-bottom: 1px solid #fff;
}
#point .wide:hover {
    background-color: #ccc;
    background-blend-mode: hard-light;
    transition: all 0.3s;
}
.box-area{
	display: flex;
}
#point .box-area a{
	width: 50%;
	height: 195px;
	background-image: url("../img/home/img_02.jpg");
	background-size:cover;
}
#point .box-area a:last-child{
	width: 50%;
	height: 195px;
	background-image: url("../img/home/img_03.jpg");
	background-size:cover;
	border-left: 1px solid #fff;
}
#point .box-area a:hover {
    background-color: #ccc;
    background-blend-mode: hard-light;
    transition: all 0.3s;
}
#point .box-area a:hover:last-child {
    background-color: #ccc;
    background-blend-mode: hard-light;
    transition: all 0.3s;
}

#point h3{
	font-size: 18px;
	font-weight: 300;
	color: #fff;
}
#point span{
	font-size: 14px;
	color: #BCA0DD;
}
#point img{
	width: 50px;
	margin: 30px 0 0 auto;
    display: flex;
}


.wide h3{
    -webkit-text-stroke: 0.5px #fff;
}

.page h4 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.info.page h4 {
    margin-bottom: 0;
}

p{
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 1.8;
}
img {
	width: 100%;
}
.font_xs{
	font-size: 14px!important;
}
.font_xxs{
	font-size: 12px!important;
}
.font_m{
	font-size: 16px!important;
}

.bnr {
	width: 70%;
    margin: 0 auto;
}

#gnav-list .bnr{
    margin-top: 50px;
}

ul.flex {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
	justify-content: center;
}
/*
.box-area ul.flex > li {
    width: 310px;
    background: #fff;
    border-radius: 2rem;
    padding: 30px;
    margin: 10px;
    margin-bottom: 30px;
	color: #080808;
}
*/
/*
.box-area ul.flex > li:first-child, .box-area ul.flex li:nth-child(4) {
    margin-left: 0px;
}
.box-area ul.flex > li:last-child, .box-area ul.flex > li:nth-child(3){
    margin-right: 0px;
}
*/

ol {
    margin-left: 20px;
    margin-bottom: 20px;
}
.profile{
	text-align: center;
	margin-bottom: 30px;
}
.profile img{
	width: 212px;
	margin-bottom: 20px;
}
.profile p{
	font-size: 18px;
}
.profile span{
	font-size: 14px;
}
.text {
    margin-bottom: 30px;
}
.text > h3 {
    margin-top: 30px;
}
.main {
    background: #fff;
    border-radius: 2rem;
    color: #333;
	padding: 50px;
	height: 100%;
}
.main h4 span{
	color: #5DA9BB;
	-webkit-text-stroke: 0.5px #5DA9BB;
}
.main .btntextchange {
    border: 1px solid #5da9bb;
	width: 300px;
	max-width: 100%;
	height: 70px;
    line-height: 1.6;
}
.next img{
	width: 34px;
	margin: 40px auto;
}
.main .wrap {
    width: 100%;
	max-width: 680px;
}
table {
    border-collapse: collapse;
	text-align: left;
	margin-bottom: 80px;
}
th {
    width: 28%;
	border-bottom: 1px solid #594567;
    padding: 20px 0;
	font-weight: 300;
}
td {
	border-bottom: 1px dashed #594567;
    padding: 20px 0;
	/*padding-right: 50px;*/
	width: 320px;
}

@media screen and (max-width: 720px){
	th {
		width:20%
	}
	td {
		width: 40%;
		min-width: 300px;
	}
}
@media screen and (max-width: 520px){
	th {
		width:20%
	}
	td {
		width: 50%;
		min-width: auto;
	}
}

/*========= モーダルウィンドウ ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
.modaal-container {
    border-radius: 2rem!important;
    height: 80vh;
	overflow-y: scroll;
}
.modaal-content-container p {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
	margin-bottom: 20px;
}
.bnr_area {
    display: flex;
    width: 600px;
    max-width: 70%;
    margin: 0 auto;
}
.bnr_area a {
    width: 250px;
    margin: 0 auto;
}
.bnr_area a:hover img {
	opacity: 0.8;
}

/*.modaal-outer-wrapper {
    height: auto!important;
}*/

.img {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
	margin-bottom: 20px;
}


/*==================================================
そのた
===================================*/
#container{
	position: fixed;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width:90%;
	height: 80%;
	background: #fff;
	border-radius: 2rem;
	padding: 30px;
	margin: 70px;
}
@media screen and (max-width: 720px){
	#container{
	position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width:100%;
	height: 100%;
	background: #fff;
	border-radius: 0;
	padding: 0;
	margin: 0;
}
}


.mb00{
	margin-bottom: 0!important;
}
.mb10{
	margin-bottom: 10px!important;
}
.mb20{
	margin-bottom: 20px!important;
}
.mb30{
	margin-bottom: 30px!important;
}
.mb40{
	margin-bottom: 40px!important;
}
.mb50{
	margin-bottom: 50px!important;
}
.mb60{
	margin-bottom: 60px!important;
}
.mb80{
	margin-bottom: 80px!important;
}
.mb100{
	margin-bottom: 100px!important;
}
.right{
	text-align: right;
}

@media screen and (max-width: 720px){
h1 {
	padding-left: 0px;
}
.box-area li {
    width: 100%;
}
/*th {
    width: 30%;
}
td {
    padding-right: 20px;
}*/
.bnr_area {
    flex-wrap: wrap;
}
.bnr_area a {
    width: 100%;
}

.slick-list.draggable {
    height: 380px;
}
.main{
	padding: 30px;
}
}

.contact img {
	width: 200px;
}
.blue{
	color: #5DA9BB;
}

.logo-w{
	position: fixed;
	top: 10px;
	width: 250px;
	left: 80px;
}
.data{
	margin-bottom: 50px;
}
.data  h5{
	font-size: 18px;
}
.data  h5{
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: normal;
}
.data  img{
	margin-bottom: 20px;
}
.data  p{
	font-size: 14px;
	margin-bottom: 10px;
}
.btntextchange .font_xxs {
    line-height: 1.4;
}
.btntextchange strong {
    font-size: 16px;
}
#about h5{
	font-size: 18px;
	margin-bottom: 10px;
}

/*==================================================
エントリーフォーム
===================================*/
#formWrap {
	width: 90%;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:16px;
}

table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
	margin-bottom: 20px;
}

table.formTable th, table.formTable td {
	width:auto;
	display:block;
	padding: 0 0 20px 0;
	border-bottom: 1px dashed #A18CAF;
}
table.formTable th {
	padding-bottom: 10px;
	border-bottom:0;
	padding: 20px 0 10px 0;
}
#check table.formTable th {
	font-weight: 600;
}
table.formTable tr:last-child td {
	border-bottom: none;
}
table.formTable span {
	color: #D14747;
	font-size: 14px;
}
form input[type="text"], form textarea {
	width:100%;
	padding:5px;
	font-size:110%;
	display:block;
	border: 1px solid #ccc;
    border-radius: 4px;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	padding:14px;
}
#formWrap select {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px;
    text-align: center;
}
iframe.map {
    width: 100%;
    height: 280px;
}
.color{
	color: #604C6E;
}
a.ub {
    text-decoration: underline;
}
a.nobr {
    display: inline;
}

@media screen and (max-width: 720px){
.infotext{
	width: 90%;
	margin: 0 auto;
}
.news{
	width: 86%;
	padding: 20px;
	margin-top: 50px;
}
#star .flex{
	display: block;
}
#star .flex .text,#star .flex .img{
	width: 100%;
}
}