@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%;
}
a , a img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.brPc { display:none; }
.brSp { display:block; }
.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%;
    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:before {
    content:"";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    top:  0;
    background: #00a0d8;
}
#header {
    background: #fff;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 55px;
}
#header .inner {
    width: auto;
    max-width: none;
}
#header #nav a {
    text-decoration: none !important;
    font-weight: bold;
    font-size: 16px;
    padding: 15px;
    color: #00a0d8;
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
}
#header #nav a.current {
    color: #f6ae01;
}
#header a.current {
    background: rgba(244, 182, 56, 0.1);
}
#nav {position: relative;}
#nav .cover {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 36, 49, 0.2);
    box-shadow: -8px -3px 5px -3px rgba(0, 0, 0, 0.1) inset;
    z-index: 999;
    display: none;
    cursor: pointer;
}
#nav span {
    width: 55px;
    height: 55px;
    top: 0;
    right: 0;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    display: none;
}
#nav span i{
	display: inline-block;
	width: 25px;
	height: 3px;
	margin-right: 5px;
	border-radius: 3px;
	background: #00a0d8;
	transition: background 0.5s;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
}
#nav span i:before,
#nav span i:after{
	content: "";
	display: block;
	width: 25px;
	height: 3px;
	border-radius: 3px;
	background: #00a0d8;
	position: absolute;
	transform: rotate(0deg);
	transition: all 0.3s !important;
}
#nav span i:before{
	transform: translateY(8px);
}
#nav span i:after{
	transform: translateY(-8px);
}
#nav span.open i{
	background: transparent;
}
#nav span.open i:after{
	transform:translateY(0px) rotate(-45deg);
}
#nav span.open i:before{
	transform:translateY(0px) rotate(45deg);
}
#nav ul {
    overflow-y: auto;
    height: 100vh;
    width: 100%;
    right: 0;
    top: 0;
    padding-bottom: 50px;
    box-sizing: border-box;
    position: absolute;
    transform: translate(100%);
    z-index: 9999;
    background: #fff;
}
#nav li {
    display: block;
    border-bottom: 1px solid #b4deec;
    width: 100%;
    margin: 0;
}
#header #logo {
    float: left;
    width: 80%;
    max-width: 230px;
    padding: 13px 10px;
    box-sizing: border-box;
}
#header #logo a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 115%;
}
#header #logo img {
    width:100%;
}


.breadcrumb {
    font-size: 86%;
    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: 90%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
#content {
    margin-top: 55px;
    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;
}
h2.ttl {
    margin-bottom: 35px;
    overflow: hidden;
}
h2.ttl img {
    height: 12vw !important;
    object-fit: cover;
}
#contentInner table {
    width: 100%;
    border: none !important;
}
#contentInner tr {border: none !important;}
#contentInner th ,
#contentInner td {
    display: block;
}
#contentInner th {
    text-align: center;
    font-weight: bold;
    color: #fff;
    border: none !important;
    background: #73c7e8;
    padding: 10px 20px !important;
}
#contentInner td {
    margin-bottom: 70px;
    border: none !important;
    padding: 10px 0;
}
.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%;
    display: flex;
    flex-direction: column-reverse;
}
#mainPh .ttl {
    /* position: absolute; */
    /* z-index: 1; */
    /* top: 8%; */
    /* left: 5%; */
    /* width: 51%; */
    /* max-width: 425px; */
}

#mainPh .ttl img {
    max-width: 375px;
    position: absolute;
    z-index: 1;
    top: 6%;
    left: 5%;
    width: 51%;
}
#mainPh .ttl .txt {
    font-size: 3.8vw;
    color: #00a0d8;
    margin-top: 1em;
    font-weight: bold;
    text-shadow: .1em .1em 0 #fff;
    text-align: center;
}
#mainPh ul {
    /* width: 65%; */
    /* margin-left: auto; */
    /* height: 80vw; */
    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;
}
.decoration {
    display: none;
}



/*---member---*/
#contentInner #member .inner {
    padding: 20px 0 40px 0;
}
#member .btn.contact {
    /* width: 65%; */
    max-width: 720px;
    /* margin: 0 auto; */
    font-size: 6vw;
    line-height: 14vw;
    height: 14vw;
}
#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---*/

#news h2.ttl {
    text-align: center;
    font-size: 150%;







    font-weight: bold;
    color: #00a0d8;
    position: relative;
    padding-bottom: 3px;
}
#news h2.ttl:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    background: #00a0d8;
    width: 50%;
    height: 2px;
    bottom: 0;
    margin: auto;
}
#news h2.ttl span {
    display: none;
}
#news li a  {
    color: #333;
    text-decoration: none;
}
#news li a:hover {
    opacity: 0.8;
}
#news ul {
}
#news li {
    padding: 15px 0;
    border-top: 1px solid #ccc;
}
#news li:first-child {
    padding-top: 0;
    border-top: none
    ;
}
#news li a {
}
#news .imgCont {
    position: relative;
    width: 40%;
    height: 0;
    padding-top: 40%;
    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 + div {
    color: #808080;
    font-size: 14px;
    font-weight: bold;
}
#news .ttlCont + div span {
    color: #f6ae01;
    font-weight: bold;
    margin-left: 1em;
}
#news .ttlCont .date {
    color: #000;
    font-weight: bold;
}
#news .ttlCont .ttl {font-weight: bold;}
#news a.btn {
    font-size: 109%;
    line-height: 38px;
    height: 38px;
    margin: auto;
}


#feature img.decoration {
    /* width:auto !important; */
    position: absolute;
}
#feature img.decoration.cloud1 {
    top: 174vw;
    right: 11vw;
    width: 14vw;
    display: block;
}
#feature img.decoration.cloud2 {
    display: block;
    width: 22vw;
    top: 194vw;
    right: -2vw;
}
#feature img.decoration.cloud3 {
    display: block;
    width: 18vw;
    top: 384vw;
    left: 27vw;
}
#feature img.decoration.cloud4 {
    left: 0;
    top: 120vw;
    display: block;
    width: 33vw;
}
#feature img.decoration.cloud5 {
    left: -2vw;
    top: 367vw;
    display: block;
    width: 30vw;
}
#feature.section {
    overflow: hidden;
    position: relative;
    margin-top: 7vw;
}
#feature.section:before {
    content: "";
    display: block;
    width: 170vw;
    height: 102vw;
    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: 4.3vw;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
#feature .txt01 {
    margin-bottom: 21vw;
}
#feature .txt02 {
    text-align: right;
    margin-top: 6vw;
    position: relative;
    z-index: 1;
}
#feature p.txt02 .btn {
    min-width: auto;
    width: 55vw;
    font-size: 100%;
    line-height: inherit;
    height: auto;
    display: inline-block;
    margin-top: 2vw;
}
#feature p.txt02 .btn span{
    
padding: 0;
}
#feature ul {
    position: relative;
    height: 0;
    padding-top: 225%;
}
#feature li {
    position: absolute;
    width: 53vw;
    height: 53vw;
    max-width: 460px;
    max-height: 460px;
    padding: 12% 5% 5% 5%;
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    right: -6vw;
    top: 0;
    box-shadow: -1.5vw 1.5vw 0 #61c0e4;
    text-align: center;
}
#feature li .ttl {
    font-size: 3.7vw;
    font-weight: bold;
    color: #00a0d8;
    margin-bottom: 1vw;
}
#feature li p {
    margin-top:10px;
    text-align: center;
    font-size: 3.5vw;
}
#feature li:nth-child(2) {
    position: absolute;
    width: 90vw;
    height: 90vw;
    max-width: 700px;
    max-height: 700px;
    padding: 13% 10% 10% 10%;
    left: -1vw;
    right: auto;
    top: auto;
    bottom: 0;
    margin: auto 0;
    box-shadow: 1.5vw 1.5vw 0 #61c0e4;
}
#feature li:nth-child(2) .ttl {
    font-size: 5vw;
}
#feature li:nth-child(2) img {
    margin-left: 4%;
}
#feature li:nth-child(3) {
    bottom: auto;
    top: 21.8%;
    right: auto;
    left: -5vw;
    padding: 10% 5% 5% 5%;
    width: 63vw;
    height: 63vw;
}

#feature li:nth-child(3) .ttl {
    margin-bottom: -5vw;
}
#feature .btn.contact {
    margin: 12vw auto 0 auto;
    line-height: initial;
    height: auto;
    font-size: 6vw;
    padding: 3vw 0;
}
#feature .btn.contact span{
    padding:0;
}

#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 {
}
.information .widget-area {margin-top: 50px;}
.information .widget-area > div {
    margin: 15px 0;
    background: #ceecf5;
    padding: 5%;
}
.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 {
}
.information #newsList .main ul {
}
.information #newsList .main li {
    padding: 15px 0;
    border-top: 1px solid #ccc;
}
.information #newsList .main li:first-child {
    padding-top: 0;
    border-top: none;
}
.information #newsList .main li a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    justify-content: space-between;
}
.information #newsList .main li a:hover {
    opacity: 0.8;
}
.information #newsList .main li .txt:after {
    content: "＞くわしく見る";
    color: #f6ae01;
    text-align: right;
    display: block;
    font-size: 86%;
}
.information #newsList .main .imgCont {
    position: relative;
    width: 40%;
    height: 0;
    padding-top: 40%;
    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 .txt {width: 56%;}
.information #newsList .main .date,
.information #newsList .main .category {
    display: inline-block;
}
.information #newsList .main .date {
    color: #000;
    font-weight: bold;
    font-size: 86%;
}
.information #newsList .main .category {
    text-align: center;
    border: #f6ae01 1px solid;
    background: #fff;
    color: #f6ae01;
    box-sizing: border-box;
    padding: 0 6px;
    font-size: 76%;
    border-radius: 5px;

    margin-top: 0;
}
.information #newsList .main .ttl {
    margin: 8px 0 0 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;
    line-height: 38px;
    height: 38px;
}
.information #newsDetail .main .ttl {
    color: #00a0d8;
    margin-bottom: 15px;
    font-size: 150%;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height:1.4;
}
.information #newsDetail .main 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 .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 {
}
.column .widget-area {margin-top: 50px;}
.column .widget-area > div {
    margin: 15px 0;
    background: #ceecf5;
    padding: 5%;
}
.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 #newsList .main ul {
}
.column #newsList .main li {
    border-top: 1px solid #ccc;
}
.column #newsList .main li:first-child {
    border-top: none;
}
.column #newsList .main li a {display: block;padding: 1em 0;}
.column #newsList .main li a:hover {
    opacity: 0.8;
}
.column #newsList .main .imgCont {
    position: relative;
    width: 40%;
    height: 0;
    padding-top: 40%;
    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 .txt {}
.column #newsList .main .date,
.column #newsList .main .category {
    display: inline-block;
}
.column #newsList .main .date {
    color: #000;
    font-weight: bold;
    font-size: 86%;
}
.column #newsList .main .category {
    text-align: center;
    border: #f6ae01 1px solid;
    background: #fff;
    color: #f6ae01;
    box-sizing: border-box;
    padding: 0 6px;
    font-size: 76%;
    border-radius: 5px;
    margin-top: 0;
}
.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;
    line-height: 38px;
    height: 38px;
}
.column #newsDetail .main .ttl {
    color: #00a0d8;
    margin-bottom: 15px;
    font-size: 150%;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height:1.4;
}
.column #newsDetail .main 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 .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{
    display: flex;
    flex-direction: column;
}
#businessMain .read h3 {
    color: #00a0d8;
    font-size: 160%;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 20px;
}
#businessMain .read p {
    line-height: 1.5;
}
#businessMain .detailLink {
    text-align: center;
    margin-top: 40px;
}
#businessMain  .detailLink ul {
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: space-between;
    margin-top: 20px;
    flex-direction: column;
}
#businessMain .detailLink li {
    width: 100%;
    margin-bottom: 10px;
}

#businessMain .detailLink li a {
    height: auto;
    line-height: 1.5;
    padding: 15px 15px 15px 0;
    font-size: initial;
}
#businessMain .detailLink li a div {
    font-size: 150%;
    font-weight: bold;
}
#businessMain .detailLink li a i {
    font-size: 40px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    height: 42px;
    opacity: .4;
}
#businessMain .detailLink h4 {
    line-height: 1.5;
}
#businessMain .detailLink h4 span {
    font-size: 120%;
    font-weight: bold;
    color: #f6ae01;
}

#businessContact .inner {
    padding: 30px 0 !important;
}
#businessContact h3 {
    text-align: center;
    color: #3eb3e0;
    line-height: 1.5;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
    font-size: 13px;
}
#businessContact h3 span {
    font-size: 180%;
    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 {
    list-style-type: decimal;
    list-style-position: inside;
    position: relative;
}
#businessContact ol li {
    margin-bottom: 13px;
    line-height: 1.6;
    padding-left: 1em;
    text-indent: -1em;
    z-index: 1;
    position: relative;
}
#businessContact img.decoration {
    display: block;
    width: 42% !important;
    max-width: 174px;
    position: absolute;
    bottom: 7%;
    right: -4%;
}
#businessContact .adviser {
    border: 1px solid #3eb3e0;
    background: #fff;
    padding: 5%;
    color: #3eb3e0;
    display: flex;
    margin: 30px auto;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
}
#businessContact .adviser h4 {
    font-weight: bold;
    font-size: 130%;
    line-height: 1.4;
}
#businessContact .adviser ul {
    margin-top: 10px;
    width: 70%;
    position: relative;
    z-index: 1;
}
#businessContact .adviser li {
    font-weight: bold;
    text-indent: -1em;
    padding-left: 1em;
}
#businessContact .btn.contact {
    font-size: 140%;
    line-height: 70px;
    height: 70px;
}


#machidukuri h3,
#kenkoudukuri h3 {
    color: #f6ae01;
    font-size: 125%;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 30px;
    text-align:center;
}
#machidukuri h4,
#kenkoudukuri h4 {
    color: #fff;
    background: #00a0d8;
    font-size: 150%;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 10px;
    text-align:center;
    padding: 5px;
}
#machidukuri h5,
#kenkoudukuri h5 {
    text-align: center;
    color: #3eb3e0;
    font-size: 150%;
    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 {
    margin-bottom: 40px;
}
#machidukuri h3+ul li,
#kenkoudukuri h3+ul li {
    background: #e7f5fb;
    margin-bottom: 3%;
}
#machidukuri h3+ul a,
#kenkoudukuri h3+ul a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5%;
    box-sizing: border-box;
    color: #808080;
    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 .ttl + div,
#kenkoudukuri h3+ul .ttl + div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#machidukuri h3+ul img,
#kenkoudukuri h3+ul img {
    width: 40% !important;
    margin-left: 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: 5px 0 5px 18px;
    margin: 40px auto 0 auto;
}
#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: 80px;
}
.suggestion > ul > li:first-child {
    margin-top: 60px;
}
.suggestion .detailCont {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}
.suggestion .detailCont img {
}
.suggestion .detail {
    margin-top: 10px;
    width: 100%;
}
.suggestion .case {
    background: #fef7e8;
    padding: 5%;
    position: relative;
    margin-top: 10px;
}
.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;
}




#introduction h3.ttl,
#companyProfile h3.ttl,
#purpose h3.ttl,
#services h3.ttl {
    text-align: center;
    position:relative;
    font-size: 150%;
    margin: 0 0 40px 0;
    letter-spacing: 5px;
    padding-bottom: 8px;
    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: 20%;
    height: 2px;
    bottom: 0;
    margin: auto;
}
#introduction .inner {
    padding-top: 30px;
    padding-bottom: 0;
}
#introduction .inner > div:first-of-type img{
	max-width: 170px;
	margin: 0 auto 1.5em;
	display: block;
}
#introduction .text .name {
    text-align:right;
    margin-top: 25px;
}
#introduction .profile {
    background:#e6f5fb;
    padding: 5%;
    margin-top: 60px;
    font-size: 93%;
}
#introduction .profile:after {
    content: "."; 
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
#introduction .profile h4 {
    color: #00a0d8;
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 108%;
}
#introduction .profile img {
    width: 30%;
    margin-right: 10px;
    float: left;
}
#introduction img.decoration.everyone{
    display: block;
    margin-top: 10px;
}
#companyProfile table {
    margin: 0 auto;
    position: relative;
}
#companyProfile tr:last-child th,
#companyProfile tr:last-child td{
    border-bottom: none;
}
#services ol {
    list-style-type: disc;
    list-style-position: inside;
}
#services li {
    padding-left: 1.3em;
    text-indent: -1.3em;
    margin-top:8px;
}






#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: 25px 0;
    border: 1px solid #808080;
    display: flex;
    justify-content: space-between;
}

#contact .flow li {
    width: 33%;
    text-align: center;
    background:#fff;
    color: #444;
    font-weight: bold;
    position: relative;
    height: 21vw;
    padding: 3vw 1vw;
    font-size: 3.8vw;
    line-height: 4vw;
    box-sizing: border-box;
}
#contact .flow li:last-child {
    padding: 5vw 1vw;
}
#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: 11vw 0 11vw 10px;
    border-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
#contact .flow li:after {
    border-left-color: #fff;
    right: -10px;
}
#contact .flow li:before {
    border-left-color: #808080;
    right: -11px;
}
#contact .flow li:last-child:before,
#contact .flow li:last-child:after {
    content:none;
}
#contact .flow li span {
    font-weight:bold;
    padding: 0.5vw;
    background: #f6ae01;
    color: #fff;
    display: block;
    width: 60%;
    margin: 0 auto 6px auto;
    box-sizing: border-box;
}
#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: 100%;
}
#mailform dd {
    width: 100%;
    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: 20px 0;
}
#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: 10px 5px 10px 35px;
    cursor: pointer;
    border: #ddd 1px solid;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}
#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: column;
}
#mailform li {
    margin-top: 10px;
}




/*---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;
    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 li.ttl {
    font-weight: bold;
    margin-bottom: 8px;
    border-bottom: 1px solid #fff;
    display: block;
    padding-bottom: 5px;
}
#footer .sitemap {
    text-align: center;
}

#footer .sitemap li {
}
#footer .sitemap li:first-child {
}
#footer .link {
    text-align: center;
    margin: 10px 0;
    border: 1px solid #fff;
    padding: 10px;
}

#footer .addressCont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer .address {
    width: 78%;
    font-size: 86%;
}
#footer .inner {
    padding: 30px 0 0 0;
    position: static;
}
#footer:after {
    content:"";
    display: block;
    width: 100%;
    padding-top: 11%;
    background: url(../img/footer_bg.png) no-repeat;
    background-size: contain;
}
#footer .copy {
    font-size: 86%;
}


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

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

.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;
}

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

.form h2.ttl {
    position: static;
    padding-bottom: 0;
}
.memberPage .form .description {
}
.memberPage .form-group {
    display: flex;
    color: black;
    margin-top: 30px;
    flex-direction: column;
}
.memberPage .form-group > label {
    font-size: 150%;
}

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



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

.memberPage .txt{width: 49%;}
.memberPage .date,
.memberPage .ttl {
    color: #000;
}
.memberPage h3.ttl {
    text-align: center;
}
.memberPage h3.ttl {
    text-align: center;
    position:relative;
    font-size: 150%;
    margin-bottom: 50px;
    letter-spacing: 3px;
    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 {
    margin-top: 20px;
}
.memberPage #newsList li a  {
    color: #333;
    text-decoration: none;
}
.memberPage #newsList li a:hover {
    opacity: 0.8;
}
.memberPage #newsList ul {
    margin: 20px auto;
}
.memberPage #newsList li {
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid #ccc;
}


.memberPage #newsList li:first-child {
    padding-top: 15px;
    border-top: none;
}
.memberPage #newsList li a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.memberPage #newsList li:nth-child(even){
    margin-right: 0;
}
.memberPage #newsList .imgCont {
    position: relative;
    width: 46%;
    height: 0;
    padding-top: 25.875%;
    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 .ttl {
    margin-top: 5px;
    font-weight: bold;
}
.memberPage #newsList li .sentence {
    word-wrap: break-word;
    margin-top: 5px;
}

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

.memberPage #newsDetail .main {
}
.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;
    line-height: 38px;
    height: 38px;
}
.memberPage #newsDetail .main img {
    width: inherit;
}

/*-- 個人情報保護方針 --*/
#privacy {
    font-size: 110%;
}
#privacy h2.ttl img {
    width: 160% !important;
    max-width: none !important;
}
#privacy dt {
    font-size: 130%;
    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 !important;
    padding: 3% !important;
    margin: 0;
    vertical-align: middle;
    color: #808080;
    display: table-cell;
}
#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%;
    text-align: center;
}
#privacy dd .tel {
    font-size: 7.4vw;
    font-weight: bold;
}