@charset "UTF-8";

/* font
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Oswald:400,700|Roboto:400,700&display=swap');
@import url(//use.fontawesome.com/releases/v5.0.11/css/all.css);
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  /*vertical-align:baseline;*/
  background:transparent;
  font-weight: normal;
}

body {
  line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
  display:block;
}

nav ul {
  list-style:none;
}

ul,ol {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

/* common
----------------------------------------------------*/
* {
  box-sizing:border-box;
}

img{
	border: none;
	vertical-align: bottom;
	width:auto;
	max-width:100%;
	height:auto;
}

/* rollover */
a {
    color: #003366;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
  
a img{
    transition: opacity .2s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

a:hover img {
    opacity: .7;
}

/* clearfix */
.cf {
	zoom: 1;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}

.txt_red {
    color: #f00;
}

/* layout
----------------------------------------------------*/
html,body{
	height: 100%;
}

html {
 	font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
	color: #333;
	line-height: 1.7;
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
	position: relative;
    -webkit-text-size-adjust: 100%;
}

main {
    padding: 50px 0 0;
}

#container{
    width:100%;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0 auto;
	overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

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

.inner {
    width: 90%;
    margin: 0 auto;
}

@media only screen and (min-width: 1024px) {  
  .sp {display:none;}
  .pc {display:block;}

  .inner {
    width: 1140px;
  }
}

/* header
----------------------------------------------------*/
header {
    height: 45px;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 9999;
}

header .logo {
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo img {
    max-width: 100px;
    height: auto;
}

/********** navi_open **********/
header .navi_open {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
   /* background: #fff;*/
	padding-top: 45px;
    display: none;
}

header .navi_open .logo {
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .navi_open .logo img {
    max-width: 100px;
    height: auto;
}

/********** menu_btn **********/
.chlang_btn {
	box-sizing: border-box;
	position:fixed;
	margin:0;
	padding: 0;
	top: 0;
	right: 45px;
	z-index: 999;
}
.chlang_btn a {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	cursor:pointer;
	color: #fff;
	padding: 0 0.6em;
	background: #44b9e4;
	font-size: 1rem;
	font-weight: bold;
	height: 45px;
}
.chlang_btn a:hover {
	text-decoration: none;
	opacity: 0.8;
}

.menu_btn {
    position:fixed;
    cursor:pointer;
    width:45px;
    height:45px;
    margin:0;
    top: 0;
    right: 0;
    background: #005dac;
    z-index: 100;
}

.menu_btn .menu {
    background: #005dac;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.menu_btn span:nth-of-type(1) {
    content:"";
    display:block;
    position:absolute;
    width:60%;
    background:#fff;
    top:15%;
    height:2px;
    margin: 0;
    left:20%;
    transition: all .5s ease-in-out;
}

.menu_btn span:nth-of-type(2) {
    display:block;
    position:absolute;
    width:60%;
    background:#fff;
    top:35%;
    height:2px;
    margin:-1px 0 0 0;
    left:20%;
    transition: all .5s ease-in-out;
}

.menu_btn span:nth-of-type(3) {
    content:"";
    display:block;
    position:absolute;
    width:60%;
    background:#fff;
    top: 50%;
    height:2px;
    margin:0;
    left:20%;
    transition: all .5s ease-in-out;
}

/********** close_btn **********/
.menu_btn.open {
    position:absolute;
    cursor:pointer;
    width:45px;
    height:45px;
    margin:0;
    top: 0;
    right: 0;
    left: auto;
    background: #005dac;
}
.menu_btn.open .menu {
    font-size: 1rem;
}
.menu_btn.open span:nth-of-type(1) {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    content:"";
    display:block;
    position:absolute;
    width:60%;
    background:#fff;
    top:30%;
    height:2px;
    margin: 0;
    left:20%;
    transition: all .5s ease-in-out;
}

.menu_btn.open span:nth-of-type(2) {
    opacity:0;
    display:block;
    position:absolute;
    width:60%;
    background:#fff;
    top:50%;
    height:2px;
    margin:-1px 0 0 0;
    left:20%;
    transition: all .5s ease-in-out;
}

.menu_btn.open span:nth-of-type(3) {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    content:"";
    display:block;
    position:absolute;
    width:60%;
    background:#fff;
    top: 30%;
    height:2px;
    margin:0;
    left:20%;
    transition: all .5s ease-in-out;
}
  
/********** gnavi **********/
#gnavi > ul > li a {
    color: #fff;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    position: relative;
    height: 45px;
    line-height: 45px;
    background: #005dac;
    box-sizing: border-box;
    transition: all .3s linear;
    padding: 0 25px;
}

#gnavi > ul > li a:before {
    position: absolute;
    display: inline-block;
    content: "";
    top: 20px;
    left: 15px;
    width: 3px;
    border: 3px solid transparent;
    border-left: 3px solid #fff;
}

/* second level */
#gnavi > ul > li li a {
    padding: 0 25px 0 35px;
    font-size: 1.4rem;
}

#gnavi > ul > li li a:before {
    position: absolute;
    display: inline-block;
    content: "";
    top: 20px;
    left: 25px;
    width: 3px;
    border: 3px solid transparent;
    border-left: 3px solid #fff;
}

/*#gnavi > ul > li:first-child > a {
    border-top: 1px solid #fff;
}*/

/* second level width 50% */
#gnavi > ul ul.w50 {
    display: flex;
    flex-wrap: wrap;
}

#gnavi > ul ul.w50 li {
    width: 50%;
}

#gnavi > ul ul.w50 li a {
    border-right: 1px solid #fff;
}
#gnavi > ul ul.w50 li.w100 {
    width: 100%;
}
#gnavi > ul ul.w50 li.w100,
#gnavi > ul ul.w50 li:nth-child(2n) a {
    border-right: none;
}
#gnavi > ul ul.w50.odd li:nth-child(2n) a {
    border-right: 1px solid #fff;
}
#gnavi > ul ul.w50.odd li:nth-child(2n+1) a {
    border-right: none;
}

@media only screen and (min-width: 768px) {


}

/* mv
----------------------------------------------------*/
.mv {
    margin: 0 0 20px;
}
	
  /* quickicon
  ----------------------------------------------------*/
.quickicon {
	box-sizing: border-box;
	margin: 45px 0 0;
	background: #e2f4fa;
}

.quickicon ul {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	
	list-style-type: none;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	background: #c1e7f4;
}
.quickicon ul li {
	list-style-type: none;
	width: 100%;
	margin: 0 0 1px;
	padding: 0;
	background: #fff;
}
.quickicon ul li img {
	width: 100%;
	height: auto;
}
.quickicon ul li a {
	cursor: pointer!important;
}


/* breadcrumb
----------------------------------------------------*/
.breadcrumb {
    font-size: 1.2rem;
    padding: 3px 0;
}

.breadcrumb ul li {
    display: inline-block;
}


@media only screen and (min-width: 1024px) {
/* header
----------------------------------------------------*/
  header {
    height: 80px;
  }
  
  header .logo {
    height: 80px;
  }
  
  header .logo img {
    max-width: 180px;
  }
  
	/********** navi_open **********/
	header .navi_open {
		position: absolute;
		top: 0;
		right: 0;
		left: auto;
		width: 40%;
		/*background: #fff;*/
		padding-top: 80px;
		display: none;
	}

	header .navi_open .logo {
		height: 80px;
	}

	header .navi_open .logo img {
		max-width: 180px;
		height: auto;
	}
	
	  /********** menu_btn **********/
.chlang_btn {
	top: 0;
	right: 80px;
}
.chlang_btn a {
	font-size: 1.7rem;
	height: 80px;
}

  .menu_btn {
    width:80px;
    height:80px;
    top: 0;
    right: 0;
    left: auto;
  }
	
	.menu_btn .menu {
		font-size: 1.4rem;
	}
	.menu_btn.open .menu {
		font-size: 1rem;
	}

	.menu_btn span:nth-of-type(1) {
		width:60%;
		top:15%;
		height:4px;
		margin: 0;
		left:20%;
	}

	.menu_btn span:nth-of-type(2) {
		width:60%;
		top:35%;
		height:4px;
		left:20%;
		transition: all .5s ease-in-out;
	}

	.menu_btn span:nth-of-type(3) {
		width:60%;
		top: 53%;
		height:4px;
		left:20%;
		transition: all .5s ease-in-out;
	}

	/********** close_btn **********/
	.menu_btn.open {
		width:80px;
		height:80px;
	}
	.menu_btn.open .menu {
		font-size: 1.4rem;
	}
	.menu_btn.open span:nth-of-type(1) {
		width:60%;
		top:30%;
		height:4px;
	}

	.menu_btn.open span:nth-of-type(2) {
		width:60%;
		top:50%;
		height:4px;
		margin:-1px 0 0 0;
	}

	.menu_btn.open span:nth-of-type(3) {
		width:60%;
		top: 30%;
		height:4px;
		margin:0;
		left:20%;
	}
	
	/********** gnavi **********/
	#gnavi > ul > li a {
		transition: .3s;
	}
	#gnavi > ul > li a:hover {
		background: #4C8DC5;
	}

	
  /* mv
  ----------------------------------------------------*/
  .mv {
    margin: 0 0 20px;
  }
	
  /* quickicon
  ----------------------------------------------------*/
.quickicon {
	box-sizing: border-box;
	margin: 80px 0 0;
	background: #e2f4fa;
}

.quickicon ul {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	
	list-style-type: none;
	width: 100%;
	max-width: 1960px;
	margin: 0 auto;
	padding: 0;
	background: #c1e7f4;
}
.quickicon ul li {
	list-style-type: none;
	width: 50%;
	max-width: 980px;
	margin: 0 0 1px;
	padding: 0;
	background: #fff;
}
.quickicon ul li img {
	width: 100%;
	height: auto;
}
.quickicon ul li a {
	cursor: pointer!important;
}


}



/* footer
----------------------------------------------------*/
footer {
    width: 100%;
    bottom: 0;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
}

/* bnr_area */
footer .bnr_area {
    padding: 50px 0;
    background: #ddf1f8;
}

footer .bnr_area ul.bnr_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

footer .bnr_area ul.bnr_list li {
    width: 48%;
    margin: 0 1% 10px;
}

footer .bnr_area ul.sns_icons {
    text-align: center;
}
footer .bnr_area ul.sns_icons li {
    display: inline-block;
    margin: 0 5px;
}

footer .bnr_area ul.sns_icons li img {
    width: 40px;
    height: auto;
}

/* sitemap_area */
footer .sitemap_area {
    padding: 10px 0;
    background: #afe3f6;
}

footer .sitemap_area ul {
    max-width: 900px;
    margin: 0 auto;
}

footer .sitemap_area ul li {
    display: inline-block;
    margin: 0 0.8em;
}

footer .sitemap_area ul li a {
    color: #333;
    position: relative;
    padding-left: 10px;
}

footer .sitemap_area ul li a:before {
    position: absolute;
    display: inline-block;
    content: "";
    top: 8px;
    left: 0;
    width: 3px;
    border: 3px solid transparent;
    border-left: 3px solid #005dac;
}

/* link_area */
footer .link_area {
    padding: 10px 0;
    background: #84cfea;
}

footer .link_area ul li {
    display: inline-block;
}

footer .link_area ul li a {
    color: #fff;
    border-right: 1px solid #fff;
    padding: 0 1em;
}

/* siteinfo_area */
footer .siteinfo_area {
    padding: 10px 0;
    background: #44b9e4;
}
  
footer .siteinfo_area .pagetop {
    font-family: 'Oswald', sans-serif;
	position: fixed;
	bottom: 10px;
	right: 10px;
	display: none;
}

footer .siteinfo_area .pagetop a {
	color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all .3s linear;
    position: relative;
    padding-top: 15px;
	width: 70px;
	height: 40px;
	background-color: #005dac;
	border-radius: 5px;
}

footer .siteinfo_area .pagetop a::after {
	position: absolute;
    top: 8px;
    left: 50%;
    margin: auto;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
}

footer .siteinfo_area .copyright {
    text-align: center;
    font-size: 1.2rem;
}

footer .siteinfo_area .siteinfo .logo img{	
    width: 190px;	
    margin-bottom: 20px;	
}

footer .siteinfo_area .siteinfo .address a{
    color: #fff !important;
    text-decoration:none !important;
}

@media only screen and (min-width: 1024px) {
    footer .siteinfo_area .siteinfo {	
        max-width: 900px;	
        margin: 0 auto 20px;	
        display: flex;	
    }	
    footer .siteinfo_area .siteinfo .logo,	
    footer .siteinfo_area .siteinfo .address{	
        width: 50%;	
    }	
    footer .siteinfo_area .siteinfo .address{	
        text-align: left;	
    }
    footer .bnr_area ul.bnr_list li {
        width: 23%;
    }
	footer .siteinfo_area .pagetop a {
		transition: opacity .3s;
	}
	footer .siteinfo_area .pagetop a:hover {
		opacity: .7;
	}
}

/* table
----------------------------------------------------*/
table.table {
    width: 100%;
    margin: 0 auto 20px;
    border-bottom: 1px solid #afe3f6;
}

table.table thead {
    display: none;
}
  
table.table thead th {
    border: 1px solid #afe3f6;
    background: #44b9e4;
    padding: 10px;
    font-weight: bold;
    color: #fff;
}
table.table tbody th {
    border: 1px solid #afe3f6;
    background: #44b9e4;
    display: block;
    padding: 10px;
    font-weight: bold;
    /*border-bottom: none;*/
    color: #fff;
    vertical-align: top;
}
table.table tbody td {
    border: 1px solid #afe3f6;
    display: block;
    padding: 10px;
    /*border-bottom: none;*/
    vertical-align: top;
}

table.table tbody td::before {
    content: attr(label);
    font-weight:bold;
}

table.table tbody td.target {
    font-weight: bold;
    background: #ceebf6;
}

table.table tbody td.display_none {
    display: none;
}


@media only screen and (min-width: 1024px) {
    table.table thead {
        display: table-header-group;
    }
    
    table.table tbody th {
        display: table-cell;
        text-align: left;
        background: none;
        color: #333;
    }

    table.table tbody td {
        display: table-cell;
        text-align: left;
    }
    
    table.table tbody td::before {
        content: none;
    }
    
    table.table tbody td.target {
        font-weight: normal;
        background: none;
    }
    
    table.table tbody td.display_none {
        display: table-cell;
    }
}

/* list
----------------------------------------------------*/
ul.list > li {
    position: relative;
    padding: 0 0 0 1em;
    margin-bottom: 0.5em;
}

ul.list > li::before {
    position: absolute;
    top: 0.6em;
    left: 0;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #005dac;
    content: "";
}

ul.ast > li {
    position: relative;
    padding: 0 0 0 1em;
    margin-bottom: 0.5em;
}

ul.ast > li:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

/* 画像横並び
----------------------------------------------------*/
.img_wrap img {
    margin-bottom: 20px;
}

@media only screen and (min-width: 1024px) {
    .img_wrap {
        display: flex;
        justify-content: space-between;
    }
    
    .img_wrap img {
        width: 48%;
    }
}

/* 囲み
----------------------------------------------------*/
.border {
    border: 4px solid #ceebf6;
    padding: 30px;
    margin-top: 30px;
}


/* ページ送り
----------------------------------------------------*/
/* 記事詳細ページ用(next/prev) */
ul.navi_prev_next {
    margin: 30px 0;
    border-top: 1px solid #ceebf6;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}
ul.navi_prev_next li {
	width: 80px;
}
ul.navi_prev_next li a {
	display: inline-block;
	width: 80px;
	background: #005dac;
	border-radius: 5px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	padding: 10px 0;
}

/* アーカイブページ用 (1,2,3...)*/
.pagination {
    margin-bottom: 50px;
    text-align: center;
}

.pagination span {
    display: inline-block;
    margin: 2px 2px 2px 0;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    width: auto;
    color: #44b9e4;
}

.pagination a {
    display: inline-block;
    margin: 2px 2px 2px 0;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    width: auto;
    color: #fff;
    background: #84cfea;
}
.pagination a:hover{
    color: #fff;
    background: #44b9e4;
}
.pagination .current{
    padding: 10px 15px 10px 15px;
    color: #fff;
    background: #44b9e4;
}

@media only screen and (min-width: 1024px) {
	ul.navi_prev_next li {
		width: 200px;
	}
	ul.navi_prev_next li a {
		width: 200px;
		transition: .3s;
	}
	ul.navi_prev_next li a:hover {
		background-color: #4C8DC5;
	}
}

/* パンフレットダウンロード
----------------------------------------------------*/
.pamphlet_wrap {
    border: 4px solid #ceebf6;
    padding: 30px;
    margin-top: 30px;
}
.pamphlet_wrap h3 {
    font-size: 2.4rem;
    color: #369fc6;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

main.sub .pamphlet_wrap h3 {
    border-bottom: none;
}

.pamphlet_wrap ul.pamphlet_dl li {
    margin-bottom: 30px;
}

.pamphlet_wrap ul.pamphlet_dl li:last-of-type {
    margin-bottom: 0;
}

.pamphlet_wrap ul.pamphlet_dl li dl {
    text-align: center;
}

.pamphlet_wrap ul.pamphlet_dl li dl dt {
    margin-bottom: 20px;
}
.pamphlet_wrap ul.pamphlet_dl li dl dd a .fas {
    margin-left: 10px;
}

@media only screen and (min-width: 1024px) {
    .pamphlet_wrap ul.pamphlet_dl {
        display: flex;
        justify-content: space-around;
    }
  
    .pamphlet_wrap ul.pamphlet_dl li {
        margin-bottom: 0;
        width: 48%;
    }
}



/* 申請書ダウンロード
----------------------------------------------------*/
.docdl_wrap {
    border: 4px solid #ceebf6;
    padding: 30px;
    margin-top: 30px;
}
.docdl_wrap h3 {
    font-size: 2.4rem;
    color: #369fc6;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

main.sub .docdl_wrap h3 {
    border-bottom: none;
}

.docdl_wrap ul.doc_dl li {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ceebf6;
}

.docdl_wrap ul.doc_dl li:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.docdl_wrap ul.doc_dl li dl dt {
    margin-bottom: 20px;
}

.docdl_wrap ul.doc_dl li dl dd a .fas {
    margin-left: 10px;
}

@media only screen and (min-width: 1024px) {
    .docdl_wrap ul.doc_dl li dl {
        display: flex;
        justify-content: space-around;
    }

    .docdl_wrap ul.doc_dl li dl dt {
        text-align: left;
        width: 58%;
    }

    .docdl_wrap ul.doc_dl li dl dt h4 {
        text-align: left;
        margin-bottom: 10px;
    }
    .docdl_wrap ul.doc_dl li dl dd {
        width: 38%;
    }
}

/* ご注意とお願い
----------------------------------------------------*/
.attention {
    border: 4px solid #fabfc0;
    padding: 20px;
    margin-top: 30px;
    color: #f34f50;
}

.attention ul.list > li::before {
    background-color: #f34f50;
}

.attention .fax_wrap {
    color: #333;
    padding: 10px 0;
}

.attention .fax_wrap .fax {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #005dac;
}

.attention .photo_wrap {
    color: #333;
    padding: 10px 0
}

.attention .photo_wrap p {
    margin-bottom: 1em;
}

.attention ul.ast > li {
    font-size: 1.4rem;
}


/* sub
----------------------------------------------------*/
main.sub {
    padding: 50px 0;
}

main.sub section {
    padding: 100px 0 50px;
}

main.sub h1 {
    font-size: 1.2rem;
    color: #005dac;
    line-height: 1;
    text-align: center;
    margin-bottom: 30px;
}

main.sub h1 span {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 3rem;
    display: block;
}

main.sub h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
}

main.sub h2 span {
    background: linear-gradient(transparent 75%, #fce74c 0%);
    font-weight: bold;
}

main.sub h3 {
    font-size: 2.2rem;
    color: #369fc6;
    border-bottom: 2px solid #ceebf6;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

main.sub h4 {
    font-size: 2rem;
    color: #005dac;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

main.sub .lead {
    text-align: center;
    margin-bottom: 50px;
}

main.sub .anchor_area {
    background: #84cfea;
    padding: 30px 0;
    margin-bottom: 50px;
}

main.sub .anchor_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

main.sub .anchor_area ul li {
    width: 100%;
    text-align: center;
    margin: 0 0 10px;
}

main.sub .anchor_area ul li a {
    display: block;
    background: #fff;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    color: #369fc6;
    font-weight: bold;
    position: relative;
}

main.sub .anchor_area ul li a:hover {
    text-decoration: none;
    background: #369fc6;
    color: #fff;
}

main.sub .anchor_area ul li a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: solid 5px transparent;
    border-left: solid 5px #369fc6;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

main.sub .anchor_area ul li a:hover::after {
    border-top: solid 5px #fff;
}

main.sub .wrap {
    margin-bottom: 50px;
}

@media only screen and (min-width: 1024px) {
    main.sub .anchor_area ul {
        justify-content: center;
    }

    main.sub .anchor_area ul li {
        width: 31%;
        margin: 0 1% 10px;
    }
}


/* button
----------------------------------------------------*/
.btn a {
    display: block;
    background: #44b9e4;
    color: #fff;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    margin: 0 auto;
    text-align: center;
    background-size: 200% auto;
    transition: all .3s linear;
    box-shadow: 5px 5px #369fc6;
    font-weight: bold;
}

.btn a:hover {
    opacity: .7;
}


@media only screen and (min-width: 1024px) {
    .btn a {
        max-width: 320px;
    }
}

/* お問い合わせ
----------------------------------------------------*/
dl.contact_box {
    width: 100%;
    margin: 0 auto 50px;
}

dl.contact_box dt {
    background: #369fc6;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

dl.contact_box dd {
    border: 1px solid #369fc6;
    padding: 10px;
    text-align: center;
}

dl.contact_box dd .tel {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #005dac;
}

dl.contact_box dd .openhour {
    margin-bottom: 20px;
}

dl.contact_box dd .openhour span {
    display: block;
    font-weight: bold;
}

dl.contact_box dd .holidays {
    color: #f34f50;
}

dl.contact_box dd .holidays span {
    display: block;
    font-weight: bold;
}


@media only screen and (min-width: 1024px) {
    dl.contact_box {
        width: 600px;
    }
}