@charset "UTF-8";
/* ===== Base Settings ===== */
body {
	font-family : 'Roboto', 'Noto Sans JP', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.42857;
	color: #000;
	background: url("../../images/common/bg_body.png") no-repeat center top / cover;
	background-attachment: fixed;
}

body * {
	margin: 0;
	padding: 0;
}

a, a:active, a:hover, a:visited {
	outline: 0 !important;
}

a {
  color: #c45100;
}

a:focus, a:hover {
  color: #ab0101;
  text-decoration: underline;
}

a img.over {
	opacity: 1;
	transition:0.5s;
}
a:hover img.over {
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition:0.5s;
}

img {
	max-width: 100%;
	-ms-interpolation-mode: bicubic;
}

.container {
	padding: 0;
}

.contents {
	background: rgba(255,255,255,0.7);
}

.main_content {
	padding: 0 1em 30px 1em;
}

#return {
	position: fixed;
	bottom: 5%;
	right: 10px;
	overflow: hidden;
}

#return a {
	display: inline-block;
	width: 64px;
	padding: 26px 0 12px 0;
	font-size: 12px;
	text-align: center;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	background: url(../../images/common/return.png) no-repeat 50% 5px #333;
	text-decoration: none;
}

#return a:hover {
	background-color: #555;
}

.disabled {
	pointer-events: none;
  cursor: default;
	opacity: 0.5;
}

.red {
  color: #f00;
}

.text-decoration {
  text-decoration: underline;;
}

del {
	color: #f00;
	text-decoration: line-through;
 }
del span {
	color: #999;
 }

/* ----------------------------clearfix start */
.cf:before,.cf:after {content:"";display:table;}
.cf:after {clear:both;}
/* For IE 6/7 (trigger hasLayout) */
.cf {zoom:1;}
/* ----------------------------clearfix end */

@media print, screen and (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}

@media print, screen and (min-width: 992px) {
	body {
		background: linear-gradient(to bottom,  rgba(250,207,160,1) 0%,rgba(252,220,174,1) 50%,rgba(250,209,161,1) 100%);
	}
	
  .contents {
    display: flex;
    flex-wrap: wrap;
		box-shadow: 0 0 30px rgba(245,166,111,0.4);
		background: #fff;
  }
  
  .main_content {
    padding: 3rem 1em;
  }
	
	.sub {
		padding: 0 40px;
	}
}

@media print, screen and (min-width: 1024px) {
  .contents {
    width: 1024px;
    margin: 0 auto;
  }
}

/* ===== Header Settings ===== */

header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px;
	background: url("../../images/common/bg_title.png") no-repeat center top / cover;
}

header .logo {
	margin-right: 0.5rem;
  padding: 10px;
	background: #f08a4a;
}


header h1 {
  width: 82%;
  font-size: 1rem;
}

#header {
	display: none;
}

@media screen and (max-width: 991px) {
	header .logo {
		margin-right: 1.5rem;
	}
}

@media print, screen and (min-width: 576px) {
  header {
    padding: 10px;
  }
}

@media print, screen and (min-width: 992px) {
  header {
    display: none;
  }
  
header .logo {
  width: 18%;
  padding: 5px;
	background: #fff;	
	border-radius: 0;
}

  #header {
    display: inherit;
		text-align: center;
		background: url("../../images/common/bg_title.png") no-repeat center top / cover;
  }
  
  #header h1 {
    font-size: 1rem;
		line-height: 160px;
		padding: 0 1rem;
  }
	
  #header h1 img {
		width: 100%;
		max-width: 980px;
  }
}


/* ===== Navi Settings ===== */

#menu .logo,
#menu dl,
#menu p.poster {
  display: none;
}

#menu .bg-light {
	background: #fff;
}

#menu .navbar-collapse {
  overflow: hidden;
}

#menu .lang {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 1.1em auto 0;
	padding-bottom: 1em;
	width: 100%;
	max-width: 500px;
}

#menu .lang li {
	list-style: none;
	width: 43%;
}

#menu .lang li a {
	display: block;
	color: #fff;
	font-size: 80%;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	line-height: 2;
	border-radius: 8px;
}

#menu .lang li:first-of-type a { background: #ff510d; }
#menu .lang li:first-of-type a:hover { background: #de4002; }
#menu .lang li:last-of-type a { background:  #e5004f; }
#menu .lang li:last-of-type a:hover { background: #bf0444; }

#menu .navbar {
  padding: .5rem;
	background: #f08a4a;
}

#menu .navbar-light .navbar-brand {
  font-size: 1rem;
  color: #fff;
}

#menu .navbar-light .navbar-toggler {
	background: #fff;
	border: none;
}

#menu .navbar-nav {
	margin-top: 0.5rem;
	border-top: 1px solid #f3a065;
}

#menu .navbar-nav li {
	border-bottom: 1px solid #f3a065;
}

#menu .navbar-nav li a {
  font-weight: 700;
	color: #fff;
	padding: 0;
}

#menu .navbar-nav li a span {
	display: block;
	line-height: 1.2;
	padding: 0.75rem 0 0.75rem 45px;
	text-shadow: 0 0 10px #d74a00;
	background: url("../../images/common/icon_nav02.svg") no-repeat 15px center;
}


#menu .navbar-nav li a:hover span,
#menu .navbar-nav li.active span {
	background: url("../../images/common/icon_nav01.svg") no-repeat 15px center;
}

#menu .navbar-nav li a.disabled:hover {
  border: none;
}

@media screen and (max-width: 991px) {
  #menu .navbar-nav li a br {
    display: none;
  }
}

@media print, screen and (min-width: 992px) {
	button {
		display: none;
	}
	.navbar-expand-lg .navbar-collapse {
		display: block!important;
		border-top: 1px solid #f5b078;
	}
	
  #menu {
    width: 220px;
		padding-bottom: 3rem;
		background: #f3a065;
  }

  #menu .logo {
    display: inherit;
		line-height: 160px;
    text-align: center;
  }
  
  #menu .navbar {
    display: inherit;
    padding: 0;
    background: none;
  }
	
	#menu .bg-light {
		background: none !important;
	}
  
  #menu .navbar-light .navbar-brand {
    display: none;
  }
  
  #menu .navbar-nav {
    display: inherit !important;
    width: 100%;
		margin-top: 0;
    box-sizing: border-box;
  }
  
  #menu .navbar-expand-lg .navbar-nav {
    flex-direction: column;
  }
	
	#menu .navbar-nav li {
		border-bottom: 1px solid #f5b078;
	}
	
	#menu .navbar-nav li a span {
		display: block;
		line-height: 1.2;
		padding: 0.75rem 00.75rem 0.75rem 45px;
		text-shadow: 0 0 10px #d74a00;
		background: url("../../images/common/icon_nav02.svg") no-repeat 15px center;
	}

}


/* ===== Page Content Base Settings ===== */


/* ===== Page Content Settings ===== */

.main h2 {
	color: #e06027;
	font-size: 1.8rem;
  font-weight: 700;
	text-align: center;
	padding: 2rem 0;
}

.main h2 span:after {
	content: " ";
	display: block;
	width: 2em;
	height: 3px;
	margin: 1.5rem auto 0 auto;
	background: #e06027;
	border-radius: 1.5px;
}

.main h3 {
	font-size: 1.1rem;
	font-weight: bold;
	color: #f39a5d;
	margin: 3rem 0 1rem 0;
	padding: 0.75rem 1.5rem;
	border: 1px solid #f39a5d;
	border-radius: 4px;
}

.main h4 {
	font-size: 1.1rem;
	font-weight: bold;
	color: #e06027;
	margin: 2rem 0 1rem 0;
	padding: 0.5rem;
  border-bottom: 1px solid #e06027;
}

.main ul.btn,
.main p.btn {
  display: flex;
	justify-content: center;
	flex-wrap: wrap;
  list-style: none;
  margin: 2rem auto;
  padding: 0;
	gap: 20px;
}

.main ul.btn li,
.main p.btn li {
	width: 300px;
}

.main ul.btn a,
.main p.btn a {
  display: block;
  color: #fff;
  font-weight: 700;
	text-decoration: none;
  padding: 1rem;
  background: #7a71b3;
  border-radius: 2rem;
	opacity: 1;
	transition:0.5s;
}

.main ul.btn a:hover,
.main p.btn a:hover {
  text-decoration: none;
  opacity: 0.7;
	transition:0.5s;
}

.main ul.btn a:after,
.main p.btn a:after {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  margin-left: 1rem;
  border-left: 10px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.main ul.btn a.disabled,
.main p.btn a.disabled {
  pointer-events: none;
	opacity: 0.7;
	color: #bbb;
	background: #dfdfdf;
}

.main ul.btn a.disabled:after,
.main p.btn a.disabled:after {
  border-left: none;
  margin-left: 0;
}

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

.main table th,
.main table td {
	padding: 0.5rem;
	border: 1px solid #ccc;
}

.main table th {
	text-align: center;
	background: #efefef;
}

.mbz { margin-bottom: 0 !important; }
.mb10 { margin-bottom: 1rem !important; }
.mb20 { margin-bottom: 2rem !important; }
.mb30 { margin-bottom: 3rem !important; }

.mtz { margin-top: 0 !important; }
.mt10 { margin-top: 1rem !important; }
.mt20 { margin-top: 2rem !important; }
.mt30 { margin-top: 3rem !important; }

.ptz { padding-top: 0 !important; }
.pt10 { padding-top: 1rem !important; }
.pt20 { padding-top: 2rem !important; }
.pt30 { padding-top: 3rem !important; }

@media screen and (max-width: 767px) {
  .pc {display: none;}
	}
  
@media print, screen and (min-width: 768px) {
  .sp {display: none;}
  
	.main h2 {
		font-size: 32px;
	}
  
}

@media print, screen and (min-width: 992px) {
  .main {
    width: calc(100% - 220px);
    padding: 0 0 30px 0;
  }
  
  .main h2 {
    margin: 0 0 2rem 0;
  }
}



/* ===== Page Settings ===== */

/*------ greetings ------*/

.greetings .sub p {
  text-indent: 1em;
  margin-top: 0.75rem;
}

.greetings .sub p:last-of-type {
	text-indent: 0;
}

.greetings .sub p b {
	font-size: 1.1rem;
}

.greetings .sub img {
  display: block;
  margin: 0 auto;
}

@media print, screen and (min-width: 768px) {
	.greetings .sub p:last-of-type {
		text-align: right;
	}
	
  .greetings .sub p {
    margin-top: 1rem;
  }
	
  .greetings .sub img {
    float: right;
    margin: 0 0 2rem  2rem;
  }
}


/*------ Outline ------*/

.main .outline dl {
  border: 1px solid #ccc;
}

.main .outline dl dt {
  font-weight: 700;
  padding: 0.5rem;
  background: #D9E9C4;
}

.main .outline dl dd {
  padding: 0.5rem;
}

.main .outline dl dd dl {
  border: none;
}

.main .outline dl dd dl dt {
  font-weight: 500;
  background: none;
  border: 1px solid #ccc;
  border-radius: 3px;
}

@media print, screen and (min-width: 768px) {
  .main .outline dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .main .outline dl dt {
    width: 8em;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }
  
  .main .outline dl dd {
    width: calc(100% - 8em);
    border-bottom: 1px solid #ccc;
  }
  
  .main .outline dl dt:last-of-type,
  .main .outline dl dd:last-of-type {
    border-bottom: none;
  }

  .main .outline dl dd dl dt {
    width: 11em;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
  }

  .main .outline dl dd dl dd {
    width: calc(100% - 11em);
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    border: none;
  }
  
  .main .outline dl dd dl dd:last-of-type {
    margin-bottom: 0;
  }
}




/* ===== Footer Settings ===== */

#footer {
  color: #fff;
	text-align: center;
	padding: 0.25rem;
	background: #bd7a4b;
}

#footer .container .copyright small {
  display: block;
	font-size: 0.7rem;
	font-weight: 300;
}

@media print, screen and (min-width: 768px) {
  #footer {
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0.25rem;
  }

  #footer .container .copyright small {
    font-size: 0.8rem;
  }
}

@media print, screen and (min-width: 1024px) {
  #footer {
    width: 1024px;
  }
}



/* ===== Print Settings ===== */
@media print {
		#menu .navbar-nav li a {
		text-decoration: none !important;
		}	
}

/*# sourceMappingURL=style.css.map */
