@charset "UTF-8";

/*******************************************************************
リセットCSS 
********************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input,label{
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
}

/*******************************************************************
                  　　　　　common
********************************************************************/
html,
body {
	height: 100%;
}
html {
	font-size: 62.5%;
}
body {
  font-family: "游ゴシック体", "YuGothic", "Yu Gothic Medium", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 1.6rem;
  color:#002450;
  background: #fff;
  letter-spacing: 0.02em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
	body {
		font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
	}
}

a{
  text-decoration: none;
  color: #333;
  cursor: pointer;
  transition: .3s;
  -webkit-transition: .3s;
}
a:hover{
  opacity: .8;
}
button{
  outline:none;
}

@media screen and (min-width: 1025px){
  a[href^="tel:"] {
      pointer-events: none;
  }
}
button{
  border: none;
  background: none;
}

img{
  max-width: 100%;
	height: auto;
  line-height: 1.0;
}

/*
 * display
 */
.tmp-show{
  display: inherit;
}
.tmp-show-pc{
	display: inherit;
}
.tmp-show-sp{
	display: none;
}
@media screen and (max-width: 767px) {
	.tmp-show-pc{
		display: none;
	}
	.tmp-show-sp{
		display: inherit;
	}
}

/* font-weight */
.tmp-text-bold{
	font-weight: bold;
}
/* text-arign */
.tmp-text-center{
	text-align: center;
}
.tmp-text-left{
	text-align: left;
}
.tmp-text-right{
	text-align: right;
}
.tmp-text-center-pc{
	text-align: center;
}
.tmp-text-left-pc{
	text-align: left;
}
.tmp-text-right-pc{
	text-align: right;
}
@media screen and (max-width: 767px) {
	.tmp-text-center-pc,
	.tmp-text-left-pc,
	.tmp-text-right-pc{
		text-align: left;
	}
}

/* font-size */
.tmp-text-10{ font-size: 1.0rem; }
.tmp-text-12{ font-size: 1.2rem; }
.tmp-text-14{ font-size: 1.4rem; }
.tmp-text-16{ font-size: 1.6rem; }
.tmp-text-18{ font-size: 1.8rem; }
.tmp-text-20{ font-size: 2.0rem; }
.tmp-text-22{ font-size: 2.2rem; }
.tmp-text-24{ font-size: 2.4rem; }
.tmp-text-26{ font-size: 2.6rem; }
.tmp-text-30{ font-size: 3.0rem; }
.tmp-text-36{ font-size: 3.6rem; }

/*
 * list
 */
.tmp-list-bullet > li,
.tmp-list-asterisk > li {
 position: relative;
 padding-left: 1.2em;
 counter-increment: cnt;
}
.tmp-list-bullet > li::before,
.tmp-list-asterisk > li::before {
 position: absolute;
 top: 0;
 left: 0;
 width: 1.2em;
 height: 1.2em;
}
.tmp-list-bullet > li {
 padding-left: 1.3em;
}
.tmp-list-bullet > li::before {
 content: "・";
}
.tmp-list-asterisk > li {
 padding-left: 1.3em;
}
.tmp-list-asterisk > li::before {
 content: "※";
}

/*
 * flexbox
 */
.tmp-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tmp-flex-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tmp-flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tmp-flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.tmp-flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tmp-flex-end {
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.tmp-flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.tmp-flex-right{
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.tmp-flex-expand{
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 1px;
  flex-basis: 1px;
}


@media screen and (min-width: 768px) {
	.tmp-flex-pc {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
		      flex-wrap: wrap;
	}
}
@media screen and (max-width: 767px) {
	.tmp-flex-pc {
  display: block;
	}
	.tmp-flex-sp {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		  -ms-flex-wrap: wrap;
		      flex-wrap: wrap;
	}
}
/*----------header------------*/
header{
    height:20%;
    margin-bottom: 15px;
    width: 64%;
    margin: 0 auto;
}
header .logo_catch{
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.15em;
    text-align: center;
}
header > div{
    padding: 10px;
}

/*headerの中の直下のdivの、そのまた直下のdiv（2個あれば2個とも）の中のpにスタイルかける
header > div > div > p:not(.tmp-flex){
    padding: 100px;
}
*/
.header_tel span{
    margin-left: 10px;
    font-size: 2.7rem;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    header {
    height: 40%;
    padding: 0;
    width: 100%;
    }
    .header_logo{
        width: 42%;
    }
    .header_tel{
        width: 52%;
    }
    .header_logo img{
        width:93%;
    }
    .header_logo p{
            display: none;
    }
    .header_tel span{
        margin-left: 5px;
        font-size: 1.2rem;
    }
    .header_tel img{
        width:20%;
    }
    .time{
        font-size: 1rem;
    }
}
/*-----------main--------------*/
.main{
    padding: 50px 0;
    background-color:#c4e9fa;
}

.main_inner {
    margin: 0 auto;
    padding: 2em;
    width: 60%;
    background-color: #fff;
    /* 背景色 */
    border: 1px solid #ccc;
    /* 枠線 */
}
.main_ttl{
    margin-bottom: 50px;
}
.main_ttl h1{
    font-size: 2.5rem;
    font-weight: bold;
    color:#004d70;
}
.main_ttl p{
    padding-left: 5px;
    font-size: 1.8rem;
    font-weight: bold;
    color:#8e0008;
}

hr{
   border-width: 1px 0px 0px 0px; /* 太さ */
   border-style: solid; /* 線種 */
   border-color: #004d70;   /* 線色 */
   height: 20px;         /* 高さ(※古いIE用) */
}

#dl_list li{
    padding-bottom: 10px;
}
#dl_list span{
    text-decoration : underline;
}
#example:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../../../common/img/spilm/pdf_archive.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 13px;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .main_ttl h1 {
        font-size: 2.1rem;
    }

    .main_ttl p {
        padding-left: 2px;
        font-size: 1.3rem;
    }
    #example:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../../../common/img/spilm/pdf_archive.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 8px;
    background-repeat: no-repeat;
}
}
/*-------footer--------*/
footer img{
    max-width: 100%;
    height: auto;
    line-height: 1.0;
    display: block;
    margin: 30px auto;
}
footer ul{
        justify-content: center;
}
footer li{
    padding: 0 50px;
    text-decoration : underline;
}

footer p{
    font-size: 0.8rem;
    padding: 20px 0;
    text-align: center;
}
@media screen and (max-width: 767px) {
    footer nav{
        text-align: center;
        font-size: 1.2rem;
    }
}