@charset "UTF-8";

/*---------------------------------------------
	Browser Default Initialization
  ---------------------------------------------*/

body,
dl,
dt,
dd,
ul,
ul li,
h1,
h2,
h3,
h4,
h5,
h6,
div,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
section,
nav,
article,
aside,
hgroup,
header,
address,
figure,
figcaption,
footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
}
q:before,
q:after {
  content: "";
}
object,
embed {
  vertical-align: top;
}
hr,
legend {
  display: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
img,
abbr,
acronym,
fieldset {
  border: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}
ul li {
  list-style-type: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.clear {
  clear: both;
}

.pc {
}
.sp {
  display: none;
}

/*---------------------------------------------
	style定義
  ---------------------------------------------*/

:root {
  --bg-color: #ffffff;
  --main-color: #008000;
}

/*---------------------------------------------
	レイアウト
  ---------------------------------------------*/

body {
  color: #3c3c3c;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif; /*body ボタン内、本文中のフォント*/
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
}
#home {
  max-width: 980px;
  margin: 0 auto;
  background: url("../images/main01.png") no-repeat right top,
    url("../images/home_bg.jpg") repeat-y center top;
  background-size: 100%;
}
#home.en {
  /*background: url(../en/images/main.jpg) no-repeat center top;
  background-color: #fff;*/
}
#wallpaper {
  max-width: 980px;
  margin: 0 auto;
  background-color: #fff;
}
#header_body {
  position: relative;
  width: 100%;
  padding: 0px;
}
#header {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  /*background: url(../images/header.jpg) no-repeat center top;
  background-size: 100%;*/
}
#home #header {
  height: 110px;
}
#home #header h1 {
}
#home #header h1 img {
  max-width: 100%;
}
#wallpaper #header {
}
#main_img_body {
  width: 100%;
}
#main_img {
  width: 100%;
  margin: 0 auto;
}
#menu {
  width: 100%;
  padding: 0;
  /*position: sticky;
  top: 10px;*/
}
ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.menu li {
  margin: 0 0 10px;
  padding: 0;
}
/*以下、メニューボタンとその中のフォント*/
ul.menu li a {
  display: block;
  padding: 14px 10px 11px 15px;
  font-size: 15px;
  font-weight: 500; /*ボタン内のフォントウエイト　700=bold*/
  text-decoration: none;
  color: #000000;
  border: 1px var(--main-color) solid;
  background-color: #fff;
  /*border-radius: 5px;*/ /*←4つの角をまとめて設定*/
  border-top-left-radius: 0px 0px;
  border-top-right-radius: 0px 0px;
  border-bottom-right-radius: 20px 20px;
  border-bottom-left-radius: 0px 0px;
  position: relative;
  transition: 0.3s;
}
ul.menu li a.color2 {
  color: #452b1f;
  background-color: #fef9e1;
}
@media screen and (min-width: 980px) {
  ul.menu li.rows a {
    padding: 8px 10px 6px 15px;
    line-height: 1.3;
  }
  /*  a:hover .imghover {
    opacity: 0.6; */
}
ul.menu li a.now,
ul.menu li a:hover {
  color: #fff;
  border: 1px var(--main-color) solid;
  background-color: var(--main-color);
}
ul.menu li a.color2:hover {
  color: #452b1f;
  background-color: #e9e9e4;
}
ul.menu li.menu_poster {
  margin-top: 1em;
}
.menu li.menu_poster h4 {
  border-bottom: 1px solid #000;
}
.menu li.menu_poster a {
  border: none;
  padding: 1em 0;
}
.menu li.menu_poster a:hover {
  opacity: 0.5;
}
.menu li.menu_banner a {
  border: none;
  padding: 0;
}
.menu li.menu_banner a:hover {
  opacity: 0.5;
}

.menu_poster {
  border: none;
}

.menu li.ondemand_btn a {
  background: #f15a24;
  padding: 20px 10px;
  color: #fff;
  border: 1px solid #f15a24;
}
.menu li.ondemand_btn a:hover {
  color: #f15a24;
}
/*
ul.menu li a::before {
  content: "";
	position: absolute;
	top:50%;
	left: 5px;
	margin-top: -7px;
  display: inline-block;
  width: 10px;
  height: 15px;
  background: url("../images/arrow.png") no-repeat center left;
}
ul.menu li a.now:before,
ul.menu li a:hover:before {
  border-left-color: #003292;
}
*/

/*　コンテンツ　*/
#contents_body {
  width: 100%;
}
#contents {
  width: 100%;
  margin: 0px auto;
  padding: 20px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
}
#home #contents {
  background-color: transparent;
}
/*　左カラム　*/
#col_l {
  width: 200px;
  margin-bottom: 15px;
  padding: 0;
}
.side_banner {
  padding-top: 10px;
}
.side_banner ul li {
  padding-bottom: 10px;
  list-style: none;
}

/*　右カラム　*/
#col_r {
  width: 100%;
  max-width: 740px;
  min-height: 500px;
  margin-left: auto;
  padding: 0 0 10px 20px;
}
#col_r h1 {
  margin-bottom: 10px;
  padding: 8px 15px 8px 15px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 5px;
  background-color: var(--main-color);
  position: relative;
}
/*
#col_r h1::before {
  content: "";
	position: absolute;
	top:10px;
	left: 12px;
  width: 6px;
  height: 60%;
  padding-right:3px;
  background: url("../images/icon.png") no-repeat center center;
}
h2.home_title:after,
#col_r h1:after{
	content: "";
	width: 110px;
	height: 100px;
	background: url(../images/ttl_icon.png) no-repeat center center;
	position: absolute;
	top: -24px;
	right: 0px;
}
*/
h2.home_title {
  height: 40px;
  padding: 10px 0 5px 12px;
  color: var(--main-color);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-bottom: 1px var(--main-color) solid;
  position: relative;
}
h3.home_title {
  margin-bottom: 10px;
  padding: 5px 15px 3px;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  border-radius: 5px;
  background-color: var(--main-color);
}
#home .main_space {
  height: 650px;
  padding: 0;
}
#home .block {
  padding: 0 0 25px;
}
#home .news_block {
  margin-bottom: 20px;
}
.whatsnew_box {
  padding: 10px;
}
.whatsnew {
  width: 100%;
  margin: 0 0 10px;
  max-height: 590px;
  min-height: 590px;
  overflow: auto;
}
.sp-bn {
  display: flex;
  flex-wrap: space-around;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}
.banner_block {
  display: flex;
  justify-self: auto;
  flex-wrap: wrap;
  gap: 30px 24px;
  padding-bottom: 10px;
}
.banner_block ul {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  padding-left: 10px;
}
.banner_block ul li {
  padding-right: 10px;
  margin-bottom: 20px;
}
.zimu_block {
  padding-bottom: 20px;
}
.zimu_block .zimu_box {
  padding-top: 10px;
}
.zimu_block .zimu_box p {
  padding: 0 12px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn p {
  padding: 0 20px;
}
.btn i {
  display: inline-block;
  padding-left: 20px;
}
.btn i img {
  width: 24px;
  margin-top: -2px;
  vertical-align: middle;
}
.btn a {
  display: block;
  min-width: 240px;
  padding: 8px;
  text-align: center;
  color: #fff !important;
  font-weight: bold;
  background-color: #e13f22;
  text-decoration: none !important;
  border: solid 3px #e13f22;
  border-radius: 5px;
  transition: all 0.4s;
}
.btn a:hover {
  color: #e13f22 !important;
  background-color: #d5dce3;
  border: solid 3px #d5dce3;
}

.btn02 a {
  background-color: #0f73b9;
  border: solid 3px #0f73b9;
}
.btn02 a:hover {
  color: #0f73b9 !important;
  background-color: #d5dce3;
  border: solid 3px #d5dce3;
}

.btn03 a {
  background-color: #da6da5;
  border: solid 3px #da6da5;
}
.btn03 a:hover {
  color: #da6da5 !important;
  background-color: #d5dce3;
  border: solid 3px #d5dce3;
}

.btn04 a {
  background-color: #0f73b9;
  border: solid 3px #0f73b9;
}
.btn04 a:hover {
  color: #0f73b9 !important;
  background-color: #d5dce3;
  border: solid 3px #d5dce3;
}

/*　フルカラム　*/
#col {
  max-width: 800px;
  margin-bottom: 15px;
}

/*　フッター　*/
#footer_body {
  width: 100%;
}
#footer {
  max-width: 980px;
  margin: 0 auto;
  padding: 25px 0;
  color: #fff;
  background-color: var(--bg-color);
}
#footer p {
  font-size: 12px;
  text-align: center;
}

.page_top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  padding-top: 10px;
  border-radius: 50%;
  font-size: 13px;
  color: #008000;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  background-color: #66cdaa;
  box-sizing: border-box;
  z-index: 9;
}
@media screen and (max-width: 979px) and (min-width: 768px) {
  #col_l {
    width: 22%;
  }
  #col_r {
    width: 78%;
  }
  #home #header {
    height: 12vw;
  }
  #home .main_space {
    height: 56vw;
    padding: 0;
  }
  .pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  /*=============================
  .btn-trigger
  =============================*/
  .gnav_btn {
    position: fixed;
    right: 12px;
    top: 16px;
    width: 40px;
    height: 40px;
    padding: 7px 5px;
    cursor: pointer;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99;
  }
  .btn-trigger {
    position: relative;
    width: 30px;
    height: 26px;
    cursor: pointer;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
  }
  .btn-trigger,
  .btn-trigger span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /*=============================
  #btn01
  =============================*/
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
  }

  #home {
    background: url(../images/main_sp.jpg) no-repeat right top,
      url("../images/home_bg.jpg") repeat-y center top;
    background-size: 100%;
  }
  #home #header {
    height: 16vw;
  }
  #header {
    height: auto;
  }
  #contents {
    padding: 20px 10px;
  }
  #col_l {
    display: none;
  }
  #col_l.active {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 98;
    overflow-y: auto;
  }
  #col_l.active #menu {
    width: 70%;
    padding: 60px 0;
    margin: 0 auto;
    position: relative;
  }
  #col_l.active #menu .menu {
  }
  body.active {
    overflow: hidden;
  }
  #col_r {
    padding: 0 0 10px;
  }
  #home .main_space {
    height: 76vw;
    padding: 0;
  }
  #home .block {
    padding: 0 0 25px;
  }
  .whatsnew {
    width: 100%;
    max-height: 360px;
    min-height: 50px;
  }
  .banner_block ul li {
    width: 100%;
  }
  .btn {
    flex-flow: wrap;
  }
  .btn p {
    padding: 0 20px 15px !important;
  }

  .page_top {
    position: fixed;
    right: 10px;
    bottom: 10px;
  }

  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
