@charset "UTF-8";

/* fonts
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');
@import url('https://use.fontawesome.com/releases/v6.4.0/css/all.css');

/* reset
----------------------------------------------------*/
/* 
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;
}

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

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

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

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

#container{
  width:100%;
  min-height: 100vh;
  height: auto !important;
  height: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 auto;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: url("../img/bg.png") fixed 50% 0% /cover;
}

#wrapper {
  width: 100%;
  padding-bottom: 70px;
  margin: 0 auto;
}

footer {
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}

* {
  box-sizing:border-box;
}

.inner {
  width: 1120px;
  margin: 0 auto;
}

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

/* link */
a {
  color: #901B09;
  transition: all .2s linear;
  text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

a:hover img {
  opacity: .8;
}

main a.external_link::after {
  display: inline;
  content: "\f35d";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-left: 0.2em;
  color: #993301;
}

main a.pdf_link::before {
  display: inline;
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  margin-right: 0.2em;
  color: #993301;
}

body:not(.home) main p {
  margin-bottom: 1em;
}

body:not(.home) section {
  margin-bottom: 40px;
}

/* header
----------------------------------------------------*/
header {
  z-index: 1;
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  border-top: 5px solid #993301;
}

/********** header.inner **********/
header .inner {
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
}

/***** site_title *****/
header .inner .site_title {
  width: 100%;
  position: relative;
  background: #fff;
}

header .inner .site_title a {
  display: block;
}

header .inner .site_title a img {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* aside
----------------------------------------------------*/
aside {
  width: 240px;
}

/********** gnavi *********/
aside ul.gnavi {
  font-weight: bold;
}

aside ul.gnavi li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  position: relative;
  background: #993301;
}

aside ul.gnavi li a:hover {
  background: #6E2400;
}

aside ul.gnavi li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

aside ul.gnavi li:not(:last-child) {
  border-bottom: 1px solid #fff;
}

aside ul.gnavi li.external_link a::before {
  content: "\f35d";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  border: none;
  -webkit-transform: rotate(0) translateY(-50%);
  transform: rotate(0) translateY(-50%);
  width: auto;
  height: auto;
  font-size: 1rem;
  right: 7px;
}

/********** .sec_leaflet *********/
aside .sec_leaflet {
  margin: 2em 0 0;
  text-align: center;
}

aside .sec_leaflet a {
  color: #993301;
}

aside .sec_leaflet a.pdf_link::before {
  display: inline;
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  margin-right: 0.2em;
  color: #993301;
}



/* footer
----------------------------------------------------*/
footer {
  height: 70px;
  display: flex;
  align-items: center;
}

footer .copyright {
	font-size: 1.4rem;
  text-align: center;
}
	
/* pagetop */
p.pagetop a {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  color: #993301;
  border: 1px solid #993301;
  font-family: "Font Awesome 6 Free";
}

p.pagetop a i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

p.pagetop a:hover {
  opacity: .7;
}


/* conts_wrap
----------------------------------------------------*/
.conts_wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 20px 20px 40px;
  background: #fff;
}

/* main
----------------------------------------------------*/
main {
  width: 820px;
}

body:not(.home):not(.preparation) main {
  background: #fff;
  padding: 20px;
}


main .txt_red {
  color: #f00;
}

main p+h2,
main ul+h2,
main ol+h2,
main dl+h2,
main table+h2{
  margin-top: 30px;
}

main ul+p {
  margin-top: 1em;
}

main del {
  color: #ccc;
}


/* heading
----------------------------------------------------*/
body:not(.home):not(.preparation) h1 {
  padding: 15px;
  background: #993301;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3; 
  margin: -20px -20px 30px -20px;
}

body:not(.preparation) h2 {
  padding: 10px;
  background: #F2D9CD;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

body:not(.preparation) h3 {
  padding: 10px 0;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
  border-bottom: 2px solid #993301;
}

body:not(.preparation) h4 {
  padding: 5px 10px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.3;
  border-left: 4px solid #993301;
}

body:not(.preparation) h5 {
  font-size: 1.8rem;
  font-weight: bold;
}

body:not(.preparation) h6 {
  font-size: 1.6rem;
  font-weight: bold;
}


/* anchor
----------------------------------------------------*/
main .anchor {
  margin-top: -80px;
  padding-top: 80px;
}

/* button
----------------------------------------------------*/
main .btn a,
main .btn_back a,
main .btn_external a,
main .btn_pdf a,
main .btn_file a {
  background: #993301;
  color: #fff;
  display: block;
  width: 100%;
  max-width: 300px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

main .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

main .btn_back a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

main .btn_external a::after {
  position: absolute;
  right: 20px;
  content: "\f35d";
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-left: 0.2em;
  color: #fff;
}

main .btn_pdf a::after {
  position: absolute;
  right: 20px;
  content: "\f1c1";
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-left: 0.2em;
  color: #fff;
}

main .btn_file a::after {
  position: absolute;
  right: 20px;
  content: "\f56d";
  font-size: 1.4rem;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-left: 0.2em;
  color: #fff;
}

main .btn a:hover,
main .btn_back a:hover,
main .btn_external a:hover,
main .btn_pdf a:hover,
main .btn_file a:hover {
  opacity: .7;
}

main ul.btns {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}

main ul.btns li {
  width: 320px;
  margin: 0 1%;
}

main ul.btns li a {
  background: #993301;
  color: #fff;
  display: block;
  width: 100%;
  max-width: 300px;
  height: 60px;
  line-height: 60px;
  margin:  0 auto;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}

main .btn_wrap {
  text-align: center;
  margin: 3em 0;
}

/* list
----------------------------------------------------*/
main ul.list {
  list-style-type: disc;
  padding-left: 1em;
  margin-left: 1em;
}

main ol.list {
  list-style-type: decimal;
  padding-left: 1em;
  margin-left: 1em;
}

main ul.ast {
  padding-left: 1em;
  text-indent: -1em;
}

main ul.ast_num {
  padding-left: 2em;
  text-indent: -2em;
}

main ol.alpha {
  list-style-type: lower-alpha;
  padding-left: 1em;
  margin-left: 1em;
}

/* table
----------------------------------------------------*/
main table {
	border-collapse: collapse;	
  width: 100%;
}

main table th {
	background: #FDEFE8;
	padding: 10px;
	border: 1px solid #EFC4AE;
  line-height: 1.3;
}

main table td {
	padding: 10px;
	border: 1px solid #EFC4AE;
  vertical-align: top;
}

/* dl
----------------------------------------------------*/
/* info_list */
main dl.info_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

main dl.info_list dt  {
  width: 5em;
  font-weight: bold;
}

main dl.info_list dd  {
  width: calc(100% - 5em);
}

main dl.info_list.line dt,
main dl.info_list.line dd {
  border-bottom: 1px solid #ccc;
  padding: 0.5em 0;
}


/* marker
----------------------------------------------------*/
main .marker {
    background: linear-gradient(transparent 60%, #fbef9b 0%);
}

/* sup
----------------------------------------------------*/
main sup {
    font-size: 1.2rem;
}