@charset "utf-8";
/* フォントサイズ%指定用
10px    72%
11px    79%
12px    86%
13px    93%
14px    100%
15px    108%
16px    115%
17px    122%
18px    129%
19px    136%
20px    143%
21px    150%
22px    158%
23px    165%
24px    172%
25px    179%
26px    186%
*/
body {
    width: 100%;
    min-height: 100%;
    font-family: 'Roboto Condensed' , 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro' , 'メイリオ' , Meiryo , 'ＭＳ Ｐゴシック' , sans-serif;
    font-size: 14px;
    color: #808080;
    line-height: 1.7;
    -webkit-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-text-size-adjust: 100%;
    position: static !important;
}
body > *{
    transform: none !important;
}
a , a img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.brPc { display:block; }
.brSp { display:none; }
.fl {
    float: left;
}
.fr {
    float: right;
}
.btn {
    border: solid 1px #f6ae00;
    color: #fff !important;
    background: #f6ae00;
    background: -moz-linear-gradient(top, #f6ae00 0%, #f88e38 100%);
    background: -webkit-linear-gradient(top, #f6ae00 0%,#f88e38 100%);
    background: linear-gradient(to bottom, #f6ae00 0%,#f88e38 100%);
    width: 100%;
    min-width: 200px;
    height: 48px;
    line-height: 48px;
    font-size: 129%;
    letter-spacing: 2px;
    position: relative;
    display: block;
    box-sizing: border-box;
    border-radius: 8px;
    text-align: center;
    text-decoration: none !important;
    transition: 0.2s cubic-bezier(0.25 , 0.46 , 0.45 , 0.94);
    cursor: pointer;
    overflow: hidden;
}
.btn:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    transition: 0.2s cubic-bezier(0.25 , 0.46 , 0.45 , 0.94);
}
.btn:hover , .btn:active{
    color: #f6ae00 !important;
}
.btn:hover:before , .btn:active:before {
    width: 100%;
}
.btn span {
    position: relative;
    display: block;
    padding: 0 20px;
    font-weight: bold;
    vertical-align: middle;
}
.btn.gray {
    color: #bbb !important;
    border: solid 1px #bbb;
    background: #ddd;
    cursor: default;
}
.btn.gray:hover, .btn.gray:active {
    color: #bbb !important;
}
.btn.gray:hover:before , .btn.gray:active:before {
    width: 0;
}
.btn.prev:before{
    left: inherit;
    right: 0;
}
.ytCont {
  position:relative;
  width:100%;
  padding-top:56.25%;
}
.ytCont iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}


#header {
    background: #fff;
    border-top: #00a0d8 10px solid;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 120px;
    position: fixed;
    transition: .3s;
}
#header .inner {
    padding: 30px 0;
    transition: .3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header a {
    display: block;
    text-decoration: none;
    color: #00a0d8;
    font-weight: bold;
}
#header a:hover , #header a.current {
    color: #f6ae00;
}
#nav {
    margin: 0;
    width: 66%;
    max-width: 470px;
    margin-top: 15px;
}
#header #nav ul {
    display: flex;
    justify-content: space-between;
    width: 100% !important;
}
#header #nav span,
#header #nav .cover {
    display: none !important;
}
#nav li {
    margin: 0 1%;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    color: #7ccbe9;
    font-size: 115%;
}
#header #logo {
    width: 33.5%;
    max-width: 328px;
}
#header #logo img {
    width:100%;
}
#header #nav .member {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}
#header #nav .member a {
    color: #fff;
    background: #00a0d8;
    border-radius: 0 0 8px 8px;
    padding: 0 8px;
    font-size: 90%;
}
#header #nav .member a.current ,
#header #nav .member a:hover {
    background: #f6ae00;
}

#header.fixed {
    height: 60px;
    opacity: .8;
    border-top: #00a0d8 3px solid;
}
#header.fixed .inner {
    padding: 12px 0;
}
#header.fixed:hover {
    opacity: 1;
}
#header.fixed #logo {
    width: 20%;
}
#header.fixed #nav {
    margin-top: 4px;
    width: 78%;
    max-width: 600px;
}
#header.fixed #nav .member {
    position: static;
    padding: 0 8px;
    display: inline-block;
}
#header.fixed #nav .member a {
    border-radius: 8px;
}

.breadcrumb {
    font-size: 93%;
    background: #cfecf6;
}
.breadcrumb li {
    display: inline-block;
    margin: 0 5px;
}
.breadcrumb li .fa-angle-right {
    margin-right: 8px;
    color: #666;
}
.breadcrumb li a {
    text-decoration: none;
    color: #666;
}
.breadcrumb .inner {
    padding: 8px !important;
}



.inner {
    width: 95%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
#content {
    margin-top:  120px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.section .inner {
    padding: 30px 0 50px 0;
}
#contentInner .inner img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
#contentInner .section {
    background: #fff;
}
#contentInner .section:nth-child(even) {
    background: #e6f5fb;
}
#contentInner .section:last-child .inner {
    padding-bottom: 100px;
}
h2.ttl {
    margin-bottom: 35px;
}
.pagination {
    text-align: center;
    font-size: 120%;
}
.pagination span {
    display: inline-block;
    text-align: center;
}
.pagination a {
    color: #808080;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 3px;
    padding: 0 10px;
    box-sizing: border-box;
}
.pagination a:hover {
    background: #87cfeb;
    color: #fff;
}
.pagination .number {
    margin: 0 5px;
}
.pagination .number.current {
    color: #fff;
    background: #00a0d8;
    padding: 0 10px;
    border-radius: 3px;
}
.pagination .disabled {
    padding: 0 10px;
}

#mainPh {
    /* margin-bottom: 40px; */
}
#mainPh img {
    width: 100%;
    height: auto;
}
#mainPh .inner {
    max-width: 1200px;
    width: 100%;
}
#mainPh .ttl {
    position: absolute;
    z-index: 1;
    top: 8%;
    left: 5%;
    width: 32%;
    max-width: 425px;
    font-size: clamp(15px, 1.8vw, 23px);
}

#mainPh .ttl img {
    max-width: 375px;
    width: 100%;
}
#mainPh .ttl .txt {
    color: #00a0d8;
    margin-top: 1em;
    font-weight: bold;
}

#mainPh ul {
    width: 70%;
    margin-left: auto;
    aspect-ratio: 3 / 2;
}

.slick-list {
    overflow: visible;
    height: 100% !important;
    max-height: none;
}

.slick-track {
    height: 100%;
}

.slick-slide img {
    opacity: 0.15;
    transition: .5s;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.slick-slide.slick-active img {
    opacity: 1;
}




/*---mainpage---*/
/*---member---*/
#contentInner #member .inner {
    padding: 100px 0;
}
#member .btn.contact {
    width: 65%;
    max-width: 720px;
    margin: 0 auto;
    font-size: 200%;
    line-height: 86px;
    height: 86px;
}
#member img.decoration {
    bottom: -2%;
    position: absolute;
    width: 20%;
    pointer-events: none;
}
#member img.decoration.walk1 {
    left: -5%;
}
#member img.decoration.walk2 {
    right: -5%;
}
/*---news---*/
#contentInner #news {
    background: #e6f5fb;
}
#news .inner {padding-bottom: 40px !important;max-width: 800px;}
#news h2.ttl {
    text-align: center;
    font-size: 186%;
    font-weight: bold;
    color: #00a0d8;
    margin-bottom: 25px;
}
#news h2.ttl span {
    font-size: 70%;
    border-left: 2px solid #00a0d8;
    padding-left: 1em;
    margin-left: 1em;
    font-weight: normal;
}
#news li a  {
    color: #333;
    text-decoration: none;
}
#news li a:hover {
    opacity: 0.8;
}
#news li {
    padding: 1em 0;
}
#news li + li {
    border-top: 1px solid #ccc;
}
#news li:nth-child(3n+2){
    margin-right: 0;
    margin-left: 0;
}
#news .imgCont {
    position: relative;
    width: 47%;
    height: 0;
    padding-top: 47%;
    overflow: hidden;
    background: #f1f6fa;
}
#news .imgCont img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
#news .ttlCont {
    font-size: 17px;
}
#news .ttlCont + div {
    color: #808080;
    font-size: 14px;
    font-weight: bold;
}
#news .ttlCont + div span {
    color: #f6ae01;
    font-size: 17px;
    font-weight: bold;
    margin-left: 1em;
}
#news .ttlCont .date {
    font-weight: bold;
}
#news .ttlCont .ttl {
    font-weight: bold;
}
#news a.btn {
    font-size: 109%;
    line-height: 35px;
    height: 35px;
    margin: 20px auto 0;
}


#feature img.decoration {
    width:auto !important;
    position: absolute;
}
#feature img.decoration.cloud1 {
    top: 210px;
    right: 0;
}
#feature img.decoration.cloud2 {
    top: 30px;
    right:0;
}
#feature img.decoration.cloud3 {
    top: 210px;
    right: 150px;
}
#feature img.decoration.cloud4 {
    right: -10px;
    bottom: 1280px;
}
#feature img.decoration.cloud5 {
    left: -60px;
    bottom: 200px;
}
#feature.section {
    overflow: hidden;
    position: relative;
    margin-top: 100px;
}
#feature.section:before {
    content: "";
    display: block;
    width: 115vw;
    height: 30vw;
    min-height: 400px;
    max-height: 400px;
    position: absolute;
    left: 50%;
    right: 50%;
    top: 0;
    background: #cfecf6;
    border-radius: 0 0 100% 100%;
    z-index: 0;
    transform: translate(-50%, 0);
}
#feature.section:nth-child(even):before {
    background: #fff;
}
#feature .inner {
    padding-top: 0;
    max-width: 980px;
    position: relative;
}
#feature .read {
    color: #00a0d8;
    font-weight: bold;
    font-size: 143%;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
@media screen and ( max-width:980px) {
#feature .read {
    font-size: 2vw;
}
}
#feature .txt01 {
    margin-bottom: 140px;
}
#feature .txt02 {
    text-align: right;
    margin-top: -22%;
    position: relative;
    z-index: 1;
}
#feature p.txt02 .btn {
    max-width: 245px;
    font-size: 80%;
    line-height: 35px;
    height: 35px;
    display: inline-block;
    margin-top: 10px;
}
#feature ul {
    position: relative;
    height: 0;
    padding-top: 108%;
    margin-bottom: 60px;
}
#feature li {
    position: absolute;
    width: 42vw;
    height: 42vw;
    max-width: 500px;
    max-height: 500px;
    padding: 10% 5% 5% 5%;
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    left: -3%;
    top: 0;
    box-shadow: -10px 10px 0 #61c0e4;
    text-align: center;
}
#feature li .ttl {
    font-size: 180%;
    font-weight: bold;
    color: #00a0d8;
    margin-bottom: 15px;
}
@media screen and ( max-width:980px) {
#feature li .ttl {
    font-size: 2.5vw;
}
}
#feature li p {
    margin-top:10px;
    text-align:right;
}
#feature li:nth-child(2) {
    position: absolute;
    width: 63vw;
    height: 63vw;
    max-width: 550px;
    max-height: 550px;
    padding: 8% 6% 6% 6%;
    left: auto;
    right: -3%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    box-shadow: 10px 10px 0 #61c0e4;
}

#feature li:nth-child(2) img {
    margin-left: 4%;
}
#feature li:nth-child(3) {
    bottom: 0;
    top: auto;
    padding: 7% 5% 5% 5%;
}
#feature li:nth-child(3) .ttl {margin-bottom: -5%;}
#feature .btn.contact {
    max-width: 744px;
    margin: 50px auto 0 auto;
    font-size: 200%;
    line-height: 86px;
    height: 86px;
}


#info ul li {
    border-bottom: #c1c1c1 solid 1px;
}
#info ul li:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
#info ul li span {
    display: block;
    padding: 15px 0;
    margin: 0 10px;
}
#info ul .date + span {
    margin-left: 8em;
}






#info ul .date {
    width: 7.5em;
    float: left;
    padding: 3px 0;
    background: #e8ecf3;
    text-align: center;
    font-size: 86%;
    margin-top: 15px;
}
#info ul a {
    text-decoration: none;
    color: #333;
    display: block;
}





#info ul a:hover {
    background: rgba(32, 66, 141, 0.05);
    color: #20428d;
    color: #0095c5;
}
#info .ttl {
    margin-bottom: 0;
}
#info .btn {
    width: 60%;
    margin: 25px auto 0 auto;
}


/*---information---*/


.information #contentInner li a  {
    color: #333;
    text-decoration: none;
}
.information #contentInner .category a {
    color: #f6ae01;
    text-decoration: none;
}
.information .main {
    width: 77%;
    float: left;
}
.information .widget-area {
    width: 19.2%;
    float: right;
}
.information .widget-area > div {
    margin: 15px 0;
    background: #ceecf5;
    padding: 8% 10%;
}
.information .widget-area > div:first-of-type {
    margin-top: 0;
}
.information .widget-area .ttl{
    text-align: center;
    color: #00a0d8;
    font-size: 143%;
    font-weight: bold;
    margin-bottom: 10px;
}
.information .widget-area .ttl:after{
    content: "";
    width: 45%;
    height: 3px;
    display: block;
    background: #00a0d8;
    margin: 0 auto;
}
.information .widgetCategories li {
    margin-top: 8px;
}
.information .widgetCategories li:first-child {
    margin-top: 0;
}
.information .widgetCategories .category {
    display: block;
    width: 80%;
    margin: 0 auto;
}
.information .widgetMonthly .year {
    color: #00a0d8;
    font-size: 115%;
}
.information .widgetMonthly .year:not(.open) {
    cursor: pointer;
}
.information .widgetMonthly .year i {
    margin-right: 5px;
    color: #f6ae01;
    width: 0.6em;
}

.information #newsList .clrFix {
    max-width: 960px;
    margin: 0 auto;
}
.information #newsList .main ul {
    display: flex;
    flex-wrap: wrap;
}
.information #newsList .main li {
    width: 29.4%;
    margin-bottom: 5%;
}
.information #newsList .main li a {
    display: block;
    width: 100%;
    height: 100%;
}
.information #newsList .main li a:hover {
    opacity: 0.8;
}
.information #newsList .main li a:after {
    content: "＞くわしく見る";
    color: #f6ae01;
    text-align: right;
    display: block;
}
.information #newsList .main li:nth-child(3n+2){
    margin: 0 5.9% 5%;
}
.information #newsList .main .imgCont {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    background: #f1f6fa;
}
.information #newsList .main .imgCont img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.information #newsList .main .date,
.information #newsList .main .category {
    display: inline-block;
    margin-top: 10px;
}
.information #newsList .main .date {
    width: 57%;
    color: #000;
    font-weight: bold;
}
.information #newsList .main .category {
    text-align: center;
    border: #f6ae01 1px solid;
    background: #fff;
    color: #f6ae01;
    box-sizing: border-box;
    width: 40%;
    max-width: 90px;
    padding: 0 6px;
    font-size: 86%;
    border-radius: 5px;
}
.information #newsList .main .ttl {
    margin: 8px 0;
}

.information #newsDetail .main .date,
.information #newsDetail .main .category {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
}
.information #newsDetail .main .date {
    margin-right: 8px;
    font-size: 108%;
}
.information #newsDetail .main .category {
    width: 40%;
    max-width: 115px;
    font-size: 86%;
    border-radius: 5px;
    border: solid 1px #f6ae00;
    background: #f6ae00;
    background: -moz-linear-gradient(top, #f6ae00 0%, #f88e38 100%);
    background: -webkit-linear-gradient(top, #f6ae00 0%,#f88e38 100%);
    background: linear-gradient(to bottom, #f6ae00 0%,#f88e38 100%);
    height: 24px;
    line-height: 24px;
    letter-spacing: 2px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    transition: 0.2s cubic-bezier(0.25 , 0.46 , 0.45 , 0.94);
    cursor: pointer;
    overflow: hidden;
}
.information #newsDetail .main .category:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    transition: 0.2s cubic-bezier(0.25 , 0.46 , 0.45 , 0.94);
}
.information #newsDetail .main .category:hover:before ,
.information #newsDetail .main .category:active:before {
    width: 100%;
}
.information #newsDetail .main .category a {
    position: relative;
    display: block;
    padding: 0 20px;
    font-weight: bold;
    color: #fff !important;
    vertical-align: middle;
    text-decoration: none !important;




}
.information #newsDetail .main .category:hover a ,
.information #newsDetail .main .category:active a {
    color: #f6ae00 !important;
}
.information #newsDetail a.prev,
.information #newsList a.prev {
    margin: 50px auto 0 auto;
    width: 60%;
    line-height: 38px;
    height: 38px;
}
.information #newsDetail .main .ttl {
    color: #00a0d8;
    margin-bottom: 15px;
    font-size: 186%;
	font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height:1.4;
}
.information #newsDetail img {
    width: inherit !important;
}
.information #newsDetail img.fl {
    margin: 0 10px 0 0 ;
}
.information #newsDetail img.fr {
    margin: 0 0 0 10px ;
}
.information #newsDetail .sentence {
    margin-bottom: 10px;
    word-wrap: break-word;
	font-weight:400;
	font-family: 'Noto Sans JP', sans-serif;
}
.information #newsDetail .main .sentence strong {
	font-weight:700;
}

.information .widgetCategories li {
    border: solid 1px #f6ae00;
    background: #f6ae00;
    background: -moz-linear-gradient(top, #f6ae00 0%, #f88e38 100%);
    background: -webkit-linear-gradient(top, #f6ae00 0%,#f88e38 100%);
    background: linear-gradient(to bottom, #f6ae00 0%,#f88e38 100%);
    width: 100%;
    height: 32px;
    line-height: 32px;
    letter-spacing: 2px;
    position: relative;
    display: block;
    box-sizing: border-box;
    border-radius: 8px;
    text-align: center;
    transition: 0.2s cubic-bezier(0.25 , 0.46 , 0.45 , 0.94);
    cursor: pointer;
    overflow: hidden;
}
.information .widgetCategories li:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    transition: 0.2s cubic-bezier(0.25 , 0.46 , 0.45 , 0.94);
}
.information .widgetCategories li:hover:before ,
.information .widgetCategories li:active:before {
    width: 100%;
}
.information .widgetCategories li a {
    position: relative;
    display: block;
    padding: 0 20px;
    font-weight: bold;
    color: #fff !important;
    vertical-align: middle;
    text-decoration: none !important;
}
.information .widgetCategories li:hover a ,
.information .widgetCategories li:active a {
    color: #f6ae00 !important;
}

/*---column---*/


.column #contentInner li a  {
    color: #333;
    text-decoration: none;
}
.column #contentInner .category a {
    color: #f6ae01;
    text-decoration: none;
}
.column .main {
    width: 77%;
}
.column .widget-area {
    width: 19.2%;
    min-width: 200px;
    margin-left: 20px;
}
.column .widget-area > div {
    margin: 15px 0;
    background: #ceecf5;
    padding: 8% 10%;
}
.column .widget-area > div:first-of-type {
    margin-top: 0;
}
.column .widget-area .ttl{
    text-align: center;
    color: #00a0d8;
    font-size: 143%;
    font-weight: bold;
    margin-bottom: 10px;
}
.column .widget-area .ttl:after{
    content: "";
    width: 45%;
    height: 3px;
    display: block;
    background: #00a0d8;
    margin: 0 auto;
}
.column .widgetCategories li {
    margin-top: 8px;
}
.column .widgetCategories li:first-child {
    margin-top: 0;
}
.column .widgetCategories .category {
    display: block;
    width: 80%;
    margin: 0 auto;
}
.column .widgetMonthly .year {
    color: #00a0d8;
    font-size: 115%;
}
.column .widgetMonthly .year:not(.open) {
    cursor: pointer;
}
.column .widgetMonthly .year i {
    margin-right: 5px;
    color: #f6ae01;
    width: 0.6em;
}

.column #newsList .clrFix,
.column #newsDetail .clrFix {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
}
.column #newsList .main ul {
}
.column #newsList .main li {
}

.column #newsList .main li + li {
    border-top: 1px solid #ccc;
}
.column #newsList .main li a {
    display: block;
    padding: 1em 0;
}
.column #newsList .main li a:hover {
    opacity: 0.8;
}
.column #newsList .main li:nth-child(3n+2){
    /* margin: 0 5.9% 5%; */
}
.column #newsList .main .imgCont {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    background: #f1f6fa;
}
.column #newsList .main .imgCont img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.column #newsList .main .date,
.column #newsList .main .category {
    display: inline-block;
}
.column #newsList .main .date {
    font-weight: bold;
}
.column #newsList .main .category {
    text-align: center;
    border: #f6ae01 1px solid;
    background: #fff;
    color: #f6ae01;
    box-sizing: border-box;
    padding: 0 6px;
    font-size: 86%;
    border-radius: 5px;
    margin-left: 1em;
}
.column #newsList .main .category.kokuho {
    color: #6fc584;
    border: #6fc584 1px solid;
}
.column #newsList .main .ttl {
    margin: 0.2em 0;
    font-size: 110%;
}
.column #newsList .main .ttl + div {
    color: #f6ae01;
}
.column #newsDetail .main .date,
.column #newsDetail .main .category {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
}
.column #newsDetail .main .date {
    margin-right: 8px;
    font-size: 108%;
}
.column #newsDetail .main .category a {
    display: block;
    font-size: 86%;
    border-radius: 5px;
    border: solid 1px #f6ae00;
    color: #f6ae00;
    height: 24px;
    line-height: 24px;
    letter-spacing: 2px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    padding: 0 1em;
}
.column #newsDetail .main .category.kokuho a {
    border: solid 1px #6fc584;
    color: #6fc584;
}
.column #newsDetail a.prev,
.column #newsList a.prev {
    margin: 50px auto 0 auto;
    width: 60%;
    line-height: 38px;
    height: 38px;
}
.column #newsDetail .main .ttl {
    color: #00a0d8;
    margin-bottom: 15px;
    font-size: 186%;
	font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height:1.4;
}
.column #newsDetail img {
    width: inherit !important;
}
.column #newsDetail img.fl {
    margin: 0 10px 0 0 ;
}
.column #newsDetail img.fr {
    margin: 0 0 0 10px ;
}
.column #newsDetail .sentence {
    margin-bottom: 10px;
    word-wrap: break-word;
	font-weight:400;
	font-family: 'Noto Sans JP', sans-serif;
}
.column #newsDetail .main .sentence strong {
	font-weight:700;
}

.column .widgetCategories li {
    border: solid 1px #f6ae00;
    background: #f6ae00;
    width: 100%;
    height: 32px;
    line-height: 32px;
    letter-spacing: 2px;
    position: relative;
    display: block;
    box-sizing: border-box;
    border-radius: 8px;
    text-align: center;
    transition: 0.2s cubic-bezier(0.25 , 0.46 , 0.45 , 0.94);
    cursor: pointer;
    overflow: hidden;
}
.column .widgetCategories li:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    transition: 0.2s cubic-bezier(0.25 , 0.46 , 0.45 , 0.94);
}
.column .widgetCategories li:hover:before ,
.column .widgetCategories li:active:before {
    width: 100%;
}
.column .widgetCategories li a {
    position: relative;
    display: block;
    padding: 0 20px;
    font-weight: bold;
    color: #fff !important;
    vertical-align: middle;
    text-decoration: none !important;
}
.column .widgetCategories li:hover a ,
.column .widgetCategories li:active a {
    color: #f6ae00 !important;
}

.column .widgetCategories li:nth-of-type(2) {
    border: solid 1px #6fc584;
    background: #6fc584;
}
.column .widgetCategories li:nth-of-type(2):hover a ,
.column .widgetCategories li:nth-of-type(2):active a {
    color: #6fc584 !important;
}


#businessMain .read{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content:space-between;
    align-items:center; 
}
#businessMain .read img {
    width: 50%;
    max-width: 490px;
    display: block;
}
#businessMain .read > div {
    width: 46%;
}
#businessMain .read h3 {
    color: #00a0d8;
    font-size: 242%;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 20px;
}
#businessMain .read p {
    font-size: 129%;
    line-height: 1.5;
}
#businessMain .detailLink {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    margin-top: 60px;
}
#businessMain  .detailLink ul {
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: space-between;
    margin-top: 20px;
}
#businessMain .detailLink li {
    width: 49%;
    max-width: 320px;
}
#businessMain .detailLink li a {
    height: auto;
    line-height: 1.5;
    padding: 25px 15px 25px 0;
}
#businessMain .detailLink li a div {
    font-size: 188%;
    font-weight: bold;
}
#businessMain .detailLink li a i {
    font-size: 50px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    height: 52px;
    opacity: .4;
}
#businessMain .detailLink h4 {
    font-size: 142%;
    line-height: 1.5;
}
#businessMain .detailLink h4 span {
    font-size: 188%;
    font-weight: bold;
    color: #f6ae01;
}

#businessContact .inner {
    padding: 50px 0 70px 0 !important;
}
#businessContact h3 {
    text-align: center;
    color: #3eb3e0;
    font-size: 150%;
    line-height: 1.5;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
#businessContact h3 span {
    font-size: 160%;
    font-weight: bold;
}
#businessContact h3:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    background: #fff;
    width: 69%;
    height: 2px;
    bottom: 0;
    margin: auto;
}
#businessContact ol {
    max-width: 780px;
    margin: 0 auto;
    list-style-type: decimal;
    list-style-position: inside;
    position: relative;
}
#businessContact ol li {
    margin-bottom: 13px;
    font-size: 124%;
    line-height: 1.6;
    padding-left: 1em;
    text-indent: -1em;
    z-index: 1;
    position: relative;
}
#businessContact img.decoration {
    width: 19.5% !important;
    position: absolute;
    bottom: 105px;
    right: 10px;
}
#businessContact .adviser {
    border: 1px solid #3eb3e0;
    background: #fff;
    padding: 1% 2%;
    color: #3eb3e0;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    max-width: 880px;
    margin: 40px auto;
    box-sizing: border-box;
    position: relative;
}
#businessContact .adviser h4 {
    font-weight: bold;
    font-size: 170%;
    line-height: 1.4;
}
#businessContact .adviser ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto); /* 縦に3段 */
    gap: 0.4em;
    margin-top: 1em;
}
#businessContact .adviser li {
    font-weight: bold;
}
#businessContact .btn.contact {
    max-width: 744px;
    margin: 50px auto 0 auto;
    font-size: 200%;
    line-height: 86px;
    height: 86px;
}


#machidukuri h3,
#kenkoudukuri h3 {
    color: #f6ae01;
    font-size: 220%;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 30px;
    text-align:center;
}
#machidukuri h4,
#kenkoudukuri h4 {
    color: #fff;
    background: #00a0d8;
    font-size: 180%;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 30px;
    text-align:center;
    padding: 5px;
}
#machidukuri h5,
#kenkoudukuri h5 {
    text-align: center;
    color: #3eb3e0;
    font-size: 180%;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 8px;
}
#machidukuri h5:after,
#kenkoudukuri h5:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    background: #00a0d8;
    width: 54%;
    height: 2px;
    bottom: 0;
    margin: auto;
}
#machidukuri h3+ul,
#kenkoudukuri h3+ul {
    display: flex;
    max-width: 780px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 100px;
}
#machidukuri h3+ul li,
#kenkoudukuri h3+ul li {
    width: 47%;
    min-height: 260px;
    background: #e7f5fb;
    margin-bottom: 3%;
}
#machidukuri h3+ul a,
#kenkoudukuri h3+ul a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5% 4% 2% 4%;
    box-sizing: border-box;
    color: #808080;
    font-size: 122%;
    text-align: center;
    border-radius: 5px;
}
#machidukuri h3+ul .ttl,
#kenkoudukuri h3+ul .ttl {
    font-size: 150%;
    font-weight: bold;
    color: #00a0d8;
    margin-bottom: 4px;
}
#machidukuri h3+ul img,
#kenkoudukuri h3+ul img {
    width: auto !important;
    display: block;
    margin: 0 auto;
}
#machidukuri h3+ul li:nth-child(4n+2),
#machidukuri h3+ul li:nth-child(4n+3) {
    background: #fef7e8;
}
#machidukuri a.prev,
#kenkoudukuri a.prev {
    height: auto;
    padding: 18px 0 18px 18px;
    max-width: 390px;
    margin: 100px auto 0 auto;
    font-size: 180%;
}
#machidukuri a.prev i,
#kenkoudukuri a.prev i {
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    height: 32px;
    opacity: .4;
}
.suggestion {
    max-width:900px;
    margin:0 auto;
}
.suggestion > ul > li {
    margin-top: 150px;
}
.suggestion > ul > li:first-child {
    margin-top: 50px;
}
.suggestion .detailCont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 115%;
}
.suggestion .detailCont > img {
    width: auto !important;
}
.suggestion .detail {
    margin-right: 4%;
    position: relative;
    z-index: 1;
}
.suggestion .case {
    background: #fef7e8;
    padding: 15px;
    position: relative;
    margin-top: 50px;
}
.suggestion .case h6,
.suggestion .case ul {

    position: relative;
    z-index: 1;
}
.suggestion .case h6 {
    color: #00a0d8;
    font-weight: bold;
}
.suggestion .case li {
    list-style-type: disc;
    list-style-position: inside;
    text-indent: -1.5em;
    padding-left: 1.5em;
    margin-top: 7px;
    line-height: 1.5;
}
.suggestion .case .decoration {
    position: absolute;
    width: auto !important;
    z-index: 0;
}
#training .case .decoration {
    top: -60px;
    right: -60px;
    z-index: 0;
}
#nature .case .decoration {
    top: -14px;
    left: 65%;
}
#gym .case .decoration {
    top: -50px;
    left: 78%;
}
#health p {width: 126%;}
#health .case .decoration {
    top: -60px;
    left: 50%;
}
#prevention p {
    width: 117%;
}
#prevention .case .decoration {
    top: -25px;
    left: 60%;
}
#parenting p {
    width: 130%;
}
#parenting .case .decoration {
    bottom: -10%;
    right: -10%;
    left: 70%;
    margin: auto;
}




#introduction h3.ttl,
#companyProfile h3.ttl,
#purpose h3.ttl,
#services h3.ttl {
    text-align: center;
    position:relative;
    font-size: 180%;
    margin: 60px 0;
    letter-spacing: 5px;
    color: #00a0d8;
    font-weight: bold;
}
#introduction h3.ttl:before,
#companyProfile h3.ttl:before,
#purpose h3.ttl:before,
#services h3.ttl:before {
    content:"";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    background: #00a0d8;
    width: 10%;
    height: 2px;
    bottom: 0;
    margin: auto;
}
#introduction img.decoration,
#companyProfile img.decoration,
#purpose img.decoration,
#services img.decoration {
    width:auto !important;
    position: absolute;
}
#introduction .section .inner,
#companyProfile .section .inner,
#purpose .section .inner,
#services .section .inner {
    padding: 30px 0 80px 0;
}
#introduction .inner{padding-bottom: 230px;}
#introduction .inner > div:first-of-type{
    display: flex;
    align-items: flex-start;
    max-width: 830px;
    margin: 0 auto;
}

#introduction .inner > div:first-of-type img {
    width: 22%;
    max-width: 170px;
}
#introduction .text {
    position: relative;
    z-index: 1;
    margin-left: 1.5em;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}
#introduction .text .name {
    text-align:right;
    margin-top: auto;
}
#introduction .profile {
    background:#e6f5fb;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-top: 60px;
    max-width: 880px;
    box-sizing: border-box;
    font-size: 93%;
    margin: 60px auto 150px auto;
}
#introduction .profile h4 {
    color: #00a0d8;
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 108%;
}
#introduction .profile img {
    width: auto !important;
    margin-right: 20px;
}
#introduction img.decoration.balloon {
    top: 170px;
    right: 200px;
}
#introduction img.decoration.cloud1 {
    top: 200px;
    right: 0;
}
#introduction img.decoration.cloud2 {
    top: 530px;
    left: 0;
    display: none;
}
#introduction img.decoration.everyone{
    bottom: 0;
}
#companyProfile table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    font-size: 108%;
}
#companyProfile th ,
#companyProfile td {
    padding: 15px 20px;
}
#companyProfile th {
    border-right: 1px solid #00a0d8;
    border-bottom: 1px solid #00a0d8;
    text-align: center;
    color: #00a0d8;
}
#companyProfile td {
    border-bottom: 1px solid #00a0d8;
}
#companyProfile tr:last-child th,
#companyProfile tr:last-child td{
    border-bottom: none;
}
#companyProfile img.decoration{
    bottom: -10px;
    right: -38px;
}
#purpose p {
    \: 70%;
    max-width: 686px;
    margin: 0 auto;
    font-size :108%;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
#purpose img.decoration.cloud1{
    top: 140px;
    left: 0;
}
#purpose img.decoration.cloud2{
    bottom: 50px;
    right: 0;
}
#services ol {
    max-width: 686px;
    margin: 0 auto;
    font-size :108%;
    list-style-type: disc;
    list-style-position: inside;
    position: relative;
    z-index: 1;
}
#services li {
    padding-left:1em;
    text-indent:-1em;
    margin-top:8px;
}
#services img.decoration{
    bottom: 60px;
}
#services img.decoration.right{
    right: -10%;
}
#services img.decoration.left{
    left: -87%;
    right: 20%;
    margin: auto;
}






#contact h3 {
    font-size: 122%;
    font-weight: bold;
    color: #f6ae01;
}
#contact .method li {
    margin-top: 8px;
}
#contact .method li:first-child {
    margin-top: 0;
}
#contact .method span {
    font-size: 158%;
    font-weight: bold;

}
#contact span.notes {
    color: #ff0000;
    margin-top: 20px;
    font-weight: bold;
    font-size: 100%;
}
#contact .flow {
    margin: 35px 0;
    border: 1px solid #808080;
    display: flex;
    justify-content: space-between;
}

#contact .flow li {
    width: 100%;
    text-align: center;
    background:#fff;
    color: #444;
    font-size: 115%;
    font-weight: bold;
    position: relative;
    height: 50px;
    line-height: 50px;
}
#contact .flow li a {
    display: block;
    text-decoration: none;
    color: #444;
    font-weight: bold;
}
#contact .flow li:after,
#contact .flow li:before  {
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 15px;
    border-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
#contact .flow li:after {
    border-left-color: #fff;
    right: -15px;

}
#contact .flow li:before {
    border-left-color: #808080;
    right: -16px;
}
#contact .flow li:last-child:before,
#contact .flow li:last-child:after {
    content:none;
}
#contact .flow li span {
    font-weight:bold;
    display: inline;
    padding: 3px 8px;
    background: #f6ae01;
    color: #fff;
    margin-right: 10px;
}
#contact .flow li.current {
    background:#f6ae01;
}
#contact .flow li.current:after {
    border-left-color: #f6ad01;
}
#contact .flow li.current:before {
}
#contact .flow li.current span {
    background: #ffffff;
    color: #444;
}
#mailform {
    margin: 30px 0 0 0;
}
#mailform .need {
    color: #D70000;
}
#mailform dl {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 0 0;
}
#mailform dt {
    width: 26%;
    margin-bottom: 10px;
}
#mailform dd {
    width: 74%;
    margin-bottom: 10px;
}
#mailform .message {
    width: 100%;

    margin-bottom: 0;
}
#mailform dl input,
#mailform dl textarea {
    width: 100%;
    padding: 10px;
    height: 45px;
    box-sizing: border-box;
    border: none;
    background: #e7f5f9;
    transition: .3s;
}

#mailform dl input:focus,
#mailform dl textarea:focus {
    background: #fdf5de;
}
#mailform dl textarea {
    resize: vertical;
    overflow: auto;
    height: 250px;
    /*----- 追加 -----*/
    margin-bottom: 10px;
}
#mailform dl label {
    display: block;
    height: 45px;
    box-sizing: border-box;
    padding: 0 10px;
    line-height: 45px;
    background: #ceecf5;
    cursor: pointer;
    color: #000;
}
:focus {
    outline: none;
}
#mailform .btn span:after ,
#mailform .btn:hover span:after {
    background: none;
}
#mailform p {
    margin: 30px 0;
    text-align: center;
}
#mailform p label {
    margin-top: 10px;
}
#mailform input[type="radio"] ,
#mailform input[type="checkbox"] {
  display: none;
}
#mailform label.radio {
    position: relative;
    display: inline-block;
    padding: 5px 5px 5px 35px;
    cursor: pointer;
    border: #ddd 1px solid;
    border-radius: 8px;
}
#mailform label.radio:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
    left: 8px;

    width: 14px;
    height: 14px;
    background: #eee;
    border: 1px solid #bebebe;
    border-radius: 100%;
}
#mailform input[type="radio"]:checked + label {
    background: #edf4ff;
    border: 1px solid #4881d9;
}
#mailform input[type="radio"]:checked + label:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
    left: 12px;
    width: 8px;
    height: 8px;

    background: #3498db;
    border-radius: 100%;
}
#mailform label.checkbox {
    position: relative;
    display: inline-block;

    padding: 5px 5px 5px 35px;
    cursor: pointer;
    border: #ddd 1px solid;
    border-radius: 8px;
}
#mailform label.checkbox:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
    left: 8px;
    width: 14px;

    height: 14px;
    background: #eee;
    border: 1px solid #bebebe;
    border-radius: 2px;
}
#mailform input[type="checkbox"]:checked + label {
    background: #edf4ff;
    border: 1px solid #4881d9;
}

#mailform input[type="checkbox"]:checked + label:after {
    position: absolute;

    top: 50%;
    left: 12px;
    display: block;
    margin-top: -7px;
    width: 5px;
    height: 9px;
    border-right: 3px solid #0095c5;
    border-bottom: 3px solid #0095c5;
    content: '';
    -webkit-transform: rotate(45deg);

    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#mailform ul {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
}
#mailform li {
    width: 48%;
}




/*---404,500---*/
#error .inner {
}
#error h2,
#error p {
    text-align: center;
}
#error h2 {
    font-size: 300%;
    font-weight: bold;
    margin: 40px 0;
    line-height: 1.5;
    color: #f6ae01;
}

/*---footer---*/
#footer {
    background: #00a0d8;
    color: #fff;
    font-size: 100%;
    position: relative;
    bottom:0;
    width:100%;
    z-index:0;
}
#footer .inner a {
    color: #fff;
    text-decoration: none;
}
#footer a:hover {
    opacity:.8;
}
#footer li {
    display: inline-block;
    padding: 0 1em;
}
#footer .sitemap {
    text-align: center;
    margin-bottom: 15px;
}
#footer .sitemap li {
    border-left: 1px solid #fff;
}
#footer .sitemap li:first-child {
    border-left: none;
}
#footer .link {
    text-align: center;
    margin: 15px 0;
    border: 1px solid #fff;
    padding: 10px;
}
#footer .inner {
    padding: 20px 0;
}
#footer:after {
    content:"";
    display: block;
    max-width: 1000px;
    height: 105px;
    margin: 0 auto;
    background: url(../img/footer_bg.png) no-repeat;
}
#footer .copy {
    font-size: 86%;

}
#footer .addressCont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer .address {
    width: 78%;
}
#footer .pageTop {
    position: relative;
    height: 47px;
    width: 120px;
}

#footer .pageTop a {
    text-decoration: none;
    right: 2%;
    bottom: 2%;
    z-index: 999;
    position: absolute;
}
#footer .pageTop a.fixed {
    position: fixed;
    color: #8dd1ec;
}
#footer .pageTop a i {
    background: #ffffff;
    width: 47px;
    height: 47px;
    box-sizing: border-box;
    line-height: 47px;
    border: 1px solid rgba(0, 160, 216, 0.5);
    color: #8dd1ec;
    font-size: 143%;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
}

/*----- 追加 -----*/

.error-message {
    flex-basis:  100%;
    margin-top: -10px;
    margin-bottom: 5px;
    color: #D70000;
}

#flashMessage {
    color: #D70000;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}


/*----- メンバーページ -----*/


.memberPage {
    background: #fef7e8;
}
.memberPage .inner {
    padding: 30px 0 50px 0;
}
.memberPage h2.ttl {margin-bottom: 0;}

/*-- メンバーログイン --*/

.memberPage .form {
    min-height: 480px;
}
.memberPage .form .description {
    text-align: center;
    font-size: 150%;
    margin-top: 40px;
}
.memberPage .form-group {
    display: flex;
    justify-content: center;
    color: black;
    margin-top: 50px;
}
.memberPage .form-group > label,
.memberPage .form-group .inputBody {
    margin-right: 8px;
}
.memberPage .form-group > label {
    font-size: 190%;
}

.memberPage .form-group input.form-control {
    padding: 5px;
    font-size: 190%;
}
.memberPage .form-group .btn {
    height: 45px;
    line-height: 45px;
    min-width: 150px;
}
.memberPage .logoutBtn {
    text-align:right;
    margin-bottom: 35px;
}
.memberPage .logout {
    display: inline-block;
    width: auto;
    height: 38px;
    line-height: 38px;
    font-size: 129%;
}



/*-- 情報一覧 --*/

.memberPage .date,
.memberPage .ttl {
    color: #000;
}
.memberPage h3.ttl {
    text-align: center;
}
.memberPage h3.ttl {
    text-align: center;
    position:relative;
    font-size: 180%;
    margin-bottom: 70px;
    letter-spacing: 5px;
    color: #000;
    font-weight: bold;
}
.memberPage h3.ttl:before {
    content:"";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    background: #f6ae00;
    width: 10%;
    height: 2px;
    bottom: 0;
    margin: auto;
}
.memberPage .description {
    max-width: 680px;
    margin: 0 auto 70px auto;
}
.memberPage #newsList li a  {
    color: #333;
    text-decoration: none;
}
.memberPage #newsList li a:hover {
    opacity: 0.8;
}
.memberPage #newsList ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 920px;
    margin: 0 auto;
}
.memberPage #newsList li {
    width: 30.6%;
    margin: 0 0 5% 0;
}
.memberPage #newsList li a {
    display: block;
    width: 100%;
    height: 100%;

}
.memberPage #newsList li:nth-child(3n+2){
    margin: 0 4% 5% 4%;
}
.memberPage #newsList .imgCont {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
    background: #f1f6fa;
}
.memberPage #newsList .imgCont img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto !important;

    height: auto !important;
}
.memberPage #newsList li .date {
    margin-top: 5px;
}
.memberPage #newsList li .ttl {
    font-weight: bold;
}
.memberPage #newsList li .sentence {
    word-wrap: break-word;
    margin-top: 5px;
}

/*-- 情報詳細 --*/

.memberPage #newsDetail .main {
    margin: 0 auto;
    max-width: 735px;
}
.memberPage #newsDetail .main .ytCont + .date {
    margin-top: 20px
}
.memberPage #newsDetail .main .ttl {
    font-size: 186%;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Noto Sans JP', sans;
    line-height:1.4;
}
.memberPage #newsDetail .main .sentence {
	font-weight:400;
	font-family: 'Noto Sans JP', sans;
}
.memberPage #newsDetail .main .sentence strong {
	font-weight:700;
}

.memberPage #newsDetail .main a.btn {
    margin: 50px auto 0 auto;
    width: 60%;
    line-height: 38px;
    height: 38px;
}
.memberPage #newsDetail .main img {
    width: inherit;
}

/*-- 個人情報保護方針 --*/
#privacy {
    font-size: 110%;
}
#privacy dt {
    font-size: 160%;
    margin: 40px 0 10px 0;
    letter-spacing: 2px;
    color: #f6ae00;
    font-weight: bold;
    padding-left: 1em;
    text-indent: -1em;
}
#privacy table {
    width: 100%;
    margin: 20px auto;
    position: relative;
}
#privacy th ,
#privacy td {
    border: 1px solid #666;
    padding: 15px 20px;
    vertical-align: middle;
}
#privacy th {
    text-align: center;
    background: #EDF4FE;
    font-weight: bold;
}
#privacy th:first-of-type {
    background: #D7E5F9;
}
#privacy li {
    list-style-type: decimal;
    margin-left: 1em;
    margin-top: 0.5em;
}
#privacy li:first-child {
    margin-top: 0;
}
#privacy p + ul {
    margin: 1em 0 0 1em;
}
#privacy dd:last-of-type {
    font-size: 120%;
}
#privacy dd .tel {
    font-size: 130%;
    font-weight: bold;
    margin-right: 1em;
}
#privacy a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: #808080;
}