@charset "utf-8";
/* CSS Document */
/* コンテンツ全体 */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  line-height: 1.8em;
  font-size: 14px;
}
header {
  height: 24px;
  background: #E60012;
}
.header-contents {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.header-logo{
	width: 37%;
	margin-left: 0.5em;
}
.header-logo img {
  max-width: 232px;
  width: 100%;
  height: auto;
	vertical-align:middle;
}
main {
  margin-left: auto;
  margin-right: auto;
}
h2 {
  padding-bottom: 1.8em;
}
h3 {
  font-size: 20px;
  background: linear-gradient(90deg, #EF7E09 0px, #EF7E09 16px, #E60012 16px, #E60012 100%);
  color: #fff;
  font-weight: bold;
  padding: 0.3em 0 0.3em 1.8em;
  text-shadow: 1px 1px #000;
}
section {
  padding: 2.7em 0;
}
section:last-child {
  padding: 0;
}
.sec_0{
	padding: 1.8em 0 0 0;
}
.container {
  width: 100%;
  max-width: 1000px;
}
p {
  margin-top: 1em;
}
a {
  cursor: pointer;
}
iframe {
  margin-top: 1em;
}
/*背景*/
.bg-top_img {
  background-image: url("../img/bg_top.png");
  background-repeat: repeat-x;
  background-position: top;
}
.bg-bottom_img {
  background-image: url("../img/bg_bottom.png");
  background-repeat: repeat-x;
  background-position: bottom;
}
.bg-orange {
  background-image: linear-gradient(-45deg, #EADA4A 25%, #E9BF3C 25%, #E9BF3C 50%, #EADA4A 50%, #EADA4A 75%, #E9BF3C 75%, #E9BF3C 100%);
  background-size: 40px 40px;
  box-shadow: 0 0 8px #777;
}
/*SNSアイコンエリア*/
.sns {
  padding-top: 0;
}
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon a {
  height: auto;
  margin-right: 3.6em;
}
.icon a:last-child {
  margin-right: 0;
}
.icon a img {
  width: 45px;
  height: auto;
}
/*ページ下部バナーエリア*/
.bnr {
  background: url("../img/bg_bnr.png"), linear-gradient(45deg, #EF7E09 0%, #FAEF62 33%, #FAEF62 66%, #EF7E09 100%);
  padding: 1em;
}
/* グラデ赤～黄
.bnr {
  background: url("../img/bg_bnr.png"), linear-gradient(45deg, #E60012 0%, #EF7E09 10%, #FAEF62 30%, #FAEF62 60%, #EF7E09 90%, #E60012 100%);
  padding: 1em;
}
*/
.bnr .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.bnr .container a {
  display: block;
  margin-bottom: 1em;
}
.bnr .container a:last-child {
  margin-bottom: 0;
}
.bnr .container img {
  width: 100%;
  max-width: 466px;
  height: auto;
}
/*フッターエリア*/
footer {
  padding: 1em;
  color: #fff;
  background: #E60012;
  font-size: 14px;
}
/*トップへ戻るボタン*/
.to_top {
  position: fixed;
  bottom: 1.8em;
  right: 1.8em;
  z-index: 10000;
  transition: .3s;
	opacity: 0;
}
/* width 414px以下*/
@media screen and (max-width: 414px) {
  /* width 414px以下*/
  .icon a {
    margin-right: 1.8em;
  }
  .to_top {
    bottom: 1em;
    right: 1em;
  }
}
/*PCサイズ*/
@media screen and (min-width: 768px) {
  header{
    height: 40px;
	}
	.header-logo img{
		  max-width: 150px;
	}
  a img:hover{
	  opacity:0.7;
  }
  body {
    font-size: 16px;
  }
  .container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .bnr .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .bnr .container a {
    width: 50%;
  }
  .bnr .container img {
    width: calc(100% - 1em);
    height: auto;
  }
}