@charset "UTF-8";
/**scss共通***/
img {
  width: 100%;
}

img.climg {
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width:800px) {
  img.climg {
    image-rendering: auto;
  }
}

.test {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
.onmouse {
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
}

.onmouse:hover {
  opacity: 0.6;
  cursor: pointer;
}
@media screen and (max-width:800px) {
  .onmouse:hover {
    opacity: 1 !important;
  }
}

html {
  overflow-y: scroll;
}

body {
  /*
  overflow-x: hidden;
  */
}

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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

img {
  border: 0;
  vertical-align: bottom;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}

body {
  font-size: 14px;
  /*
  font-family: 'Noto Sans JP', BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
  */
  font-family: "Noto Serif JP", serif;
  text-align: left;
  line-height: 160%;
  color: #333;
  font-feature-settings: "palt";
}

.clearfix {
  zoom: 1;
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}

/* link_nomal */
a {
  text-decoration: none;
  color: #333;
}

a:link {
  text-decoration: none;
  color: #333;
}

a:visited {
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #333;
}

a:active {
  text-decoration: none;
  color: #333;
}

a {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/**テキスト揃え**/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_only_inline {
  display: inline-block;
}

.sp_only_inline {
  display: none;
}

@media screen and (max-width:800px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .pc_only_inline {
    display: none;
  }
  .sp_only_inline {
    display: inline-block;
  }
}
.fade__up {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 30px);
}
.fade__up.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__big {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: scale(1.1);
}
.fade__big.active {
  opacity: 1;
  transform: scale(1);
}

.anime_a_time1 {
  clip-path: inset(0% 0% 100% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time1 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time1.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time2 {
  clip-path: inset(0% 100% 0% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time2 {
    transition: clip-path 1s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  }
}
.anime_a_time2.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time3 {
  clip-path: inset(0% 0% 0% 100% round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time3 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time3.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.fill_bules {
  -ms-filter: blur(6px);
  filter: blur(6px);
  transition: all 1.8s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
  opacity: 0;
}
.fill_bules.active {
  opacity: 1;
  -ms-filter: blur(0px);
  filter: blur(0px);
}

.delay1 {
  transition-delay: 0s;
}

.delay2 {
  transition-delay: 0.3s;
}

.delay3 {
  transition-delay: 0.6s;
}

.delay4 {
  transition-delay: 0.9s;
}

.delay5 {
  transition-delay: 1.2s;
}

html.no-webp .backgrond_webp {
  background-image: url(../images/pc.jpg);
}
@media screen and (max-width:800px) {
  html.no-webp .backgrond_webp {
    background-image: url(../images/sp.jpg);
  }
}

.backgrond_webp {
  width: 100%;
  max-width: 680px;
  height: 420px;
  background-image: url(../images/pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:800px) {
  .backgrond_webp {
    background-image: url(../images/sp.webp);
  }
}

/*****************************************/
.f60 {
  font-size: 60px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f60 {
    font-size: 7.2vw;
  }
}

.f50 {
  font-size: 50px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f50 {
    font-size: 8vw;
  }
}

.f40 {
  font-size: 40px;
  line-height: 135%;
}
@media screen and (max-width:800px) {
  .f40 {
    font-size: 7.5vw;
  }
}

.f38 {
  font-size: 38px;
  line-height: 115%;
}
@media screen and (max-width:800px) {
  .f38 {
    font-size: 7vw;
  }
}

.f36 {
  font-size: 36px;
  line-height: 115%;
}
@media screen and (max-width:800px) {
  .f36 {
    font-size: 6.5vw;
  }
}

.f34 {
  font-size: 34px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f34 {
    font-size: 6vw;
  }
}

.f32 {
  font-size: 32px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f32 {
    font-size: 5.7vw;
  }
}

.f30 {
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f30 {
    font-size: 5vw;
  }
}

.f28 {
  font-size: 28px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f28 {
    font-size: 4.9vw;
  }
}

.f26 {
  font-size: 26px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f26 {
    font-size: 4.8vw;
  }
}

.f24 {
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f24 {
    font-size: 4.6vw;
  }
}

.f22 {
  font-size: 22px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f22 {
    font-size: 4.5vw;
  }
}

.f20 {
  font-size: 20px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f20 {
    font-size: 4.4vw;
  }
}

.f18 {
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f18 {
    font-size: 4.2vw;
  }
}

.f16 {
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f16 {
    font-size: 3.6vw;
  }
}

.f14 {
  font-size: 14px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f14 {
    font-size: 3.4vw;
  }
}

.f12 {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f12 {
    font-size: 2.8vw;
  }
}

.f10 {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f10 {
    font-size: 2.4vw;
  }
}

/*****************************************/
@media print {
  body {
    min-width: 1200px;
  }
  .fade__up {
    opacity: 1;
  }
  .fade__in {
    opacity: 1;
  }
}
/***********************************************/
#headspacer {
  width: 100%;
  height: 150px;
}
@media screen and (max-width:800px) {
  #headspacer {
    height: 55px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
}
@media screen and (max-width:800px) {
  header::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #F8F8F8;
  }
}
header .header__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  height: 150px;
  position: relative;
}
@media screen and (max-width:800px) {
  header .header__in {
    height: 55px;
  }
}
header .header__in .header__in__uper {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
}
@media screen and (max-width:800px) {
  header .header__in .header__in__uper {
    height: 55px;
    padding-top: 0px;
    position: relative;
  }
}
header .header__in .header__in__uper .h1title {
  width: 7.636%;
}
@media screen and (max-width:800px) {
  header .header__in .header__in__uper .h1title {
    width: 58px;
  }
}
header .header__in .header__in__uper ul.subnav {
  width: 66.45%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width:800px) {
  header .header__in .header__in__uper ul.subnav {
    display: none;
  }
}
header .header__in .header__in__uper ul.subnav li.listtype01 {
  margin-right: 1.25em;
}
header .header__in .header__in__uper ul.subnav li.listtype01 a {
  display: inline-block;
  padding-right: 1.15em;
  position: relative;
  font-size: 14px;
}
@media screen and (max-width:1200px) {
  header .header__in .header__in__uper ul.subnav li.listtype01 a {
    font-size: 1.1666666667vw;
  }
}
header .header__in .header__in__uper ul.subnav li.listtype01 a.kakko {
  padding-right: 1.25em;
}
header .header__in .header__in__uper ul.subnav li.listtype01 a::after {
  content: "";
  position: absolute;
  width: 0.9em;
  height: 0.9em;
  background: url(../images/icon_blank.svg) no-repeat center;
  background-size: contain;
  top: 55%;
  right: 0;
  transform: translate(0, -50%);
}
header .header__in .header__in__uper ul.subnav li.listtype02 a {
  display: inline-block;
  padding-right: 2em;
  position: relative;
}
@media screen and (max-width:1200px) {
  header .header__in .header__in__uper ul.subnav li.listtype02 a {
    font-size: 0.9583333333vw;
  }
}
header .header__in .header__in__uper ul.subnav li.listtype02 a::after {
  content: "";
  position: absolute;
  width: 0.75em;
  height: 1.2em;
  background: url(../images/nav_line2.svg) no-repeat center;
  background-size: contain;
  top: 50%;
  right: 0em;
  transform: translate(-50%, -40%);
}
header .header__in .header__in__uper ul.subnav li.listtype02 a span {
  opacity: 0.5;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
}
header .header__in .header__in__uper ul.subnav li.listtype02 a span:hover {
  opacity: 1;
}
header .header__in .header__in__uper ul.subnav li.listtype02 a.active span {
  opacity: 1;
}
header .header__in .header__in__uper ul.subnav li.listtype03 a {
  display: inline-block;
  position: relative;
}
@media screen and (max-width:1200px) {
  header .header__in .header__in__uper ul.subnav li.listtype03 a {
    font-size: 0.9583333333vw;
  }
}
header .header__in .header__in__uper ul.subnav li.listtype03 a span {
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
}
header .header__in .header__in__uper ul.subnav li.listtype03 a span:hover {
  opacity: 1;
}
header .header__in .header__in__uper ul.subnav li.listtype03 a.active span {
  opacity: 1;
}
header .header__in .header__in__downer {
  width: 100%;
}
@media screen and (max-width:800px) {
  header .header__in .header__in__downer {
    display: none;
  }
}
header .header__in .header__in__downer .navigations {
  width: 100%;
}
header .header__in .header__in__downer ul.main_nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.05em;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width:1200px) {
  header .header__in .header__in__downer ul.main_nav {
    font-size: 1.3333333333vw;
  }
}
header .header__in .header__in__downer ul.main_nav li.main_navlist {
  height: 40px;
  display: flex;
  align-items: center;
  margin: 15px 0;
}
header .header__in .header__in__downer ul.main_nav li.main_navlist a.nav_a, header .header__in .header__in__downer ul.main_nav li.main_navlist span.nav_a {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 0;
  text-align: center;
}
header .header__in .header__in__downer ul.main_nav li.main_navlist a.mainlinks {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav li.main_navlist a.mainlinks:hover {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor01 {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor01:hover .nav_a {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor01b {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor01b:hover .nav_a {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor02 {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor02:hover .nav_a {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor03 {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor03:hover .nav_a {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor04 {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor04:hover .nav_a {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor05 {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor05:hover .nav_a {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor06 {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor06:hover .nav_a {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor07 {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor07:hover .nav_a {
  color: #0D6521;
}
header .header__in .header__in__downer ul.main_nav .linkscolor08 {
  transition: all 0.4s ease-out 0.01s;
}
header .header__in .header__in__downer ul.main_nav .linkscolor08:hover .nav_a {
  color: #0D6521;
}
header .header__in .sub01_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub01_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 1%;
}
header .header__in .sub01_nav .sub_nav_contents {
  width: 109%;
  margin-top: -2px;
  margin-left: -4.5%;
  margin-right: -4.5%;
  padding: 35px 4.5% 40px 4.5%;
  border-radius: 12px;
  background-color: #0D6521;
  background-image: url(../images/sub01_nav_back.png);
  background-size: cover;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub01_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub01_nav .sub_nav_contents h3 span {
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub01_nav .sub_nav_contents ul.inul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub01_nav .sub_nav_contents ul.inul li.inlist {
  width: 14.54%;
}
header .header__in .sub01_nav .sub_nav_contents ul.inul li.inlist figure {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
header .header__in .sub01_nav .sub_nav_contents ul.inul li.inlist p {
  padding: 0.5em 0 0 0;
}
@media screen and (max-width:1200px) {
  header .header__in .sub01_nav .sub_nav_contents ul.inul li.inlist p {
    font-size: 1.3333333333vw;
  }
}
header .header__in .sub01_nav .sub_nav_contents ul.inul li.inlist a {
  color: #fff;
}
header .header__in .sub01b_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub01b_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 18%;
}
header .header__in .sub01b_nav .sub_nav_contents {
  width: 109%;
  margin-top: -2px;
  margin-left: -4.5%;
  margin-right: -4.5%;
  padding: 35px 4.5% 40px 4.5%;
  border-radius: 12px;
  background-color: #0D6521;
  background-image: url(../images/sub01_nav_back.png);
  background-size: cover;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub01b_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub01b_nav .sub_nav_contents h3 span {
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub01b_nav .sub_nav_contents ul.inul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub01b_nav .sub_nav_contents ul.inul li.inlist {
  width: 14.54%;
}
header .header__in .sub01b_nav .sub_nav_contents ul.inul li.inlist figure {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
header .header__in .sub01b_nav .sub_nav_contents ul.inul li.inlist p {
  padding: 0.5em 0 0 0;
  width: 120%;
  margin-left: -10%;
  text-align: center;
}
@media screen and (max-width:1200px) {
  header .header__in .sub01b_nav .sub_nav_contents ul.inul li.inlist p {
    font-size: 1.3333333333vw;
  }
}
header .header__in .sub01b_nav .sub_nav_contents ul.inul li.inlist p span {
  display: inline-block;
  text-align: left;
}
header .header__in .sub01b_nav .sub_nav_contents ul.inul li.inlist a {
  color: #fff;
}
header .header__in .sub02_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub02_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 33.18%;
}
header .header__in .sub02_nav .sub_nav_contents {
  width: 109%;
  margin-top: -2px;
  margin-left: -4.5%;
  margin-right: -4.5%;
  padding: 35px 4.5% 40px 4.5%;
  border-radius: 12px;
  background-color: #0D6521;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub02_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub02_nav .sub_nav_contents h3 span {
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub02_nav .sub_nav_contents h4 {
  color: #fff;
  margin-bottom: 0.75em;
  line-height: 180%;
}
header .header__in .sub02_nav .sub_nav_contents .contents__in {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub02_nav .sub_nav_contents .contents__in .left {
  width: 50%;
}
header .header__in .sub02_nav .sub_nav_contents .contents__in .right {
  width: 50%;
}
header .header__in .sub02_nav .sub_nav_contents .listbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header .header__in .sub02_nav .sub_nav_contents .listbox a {
  color: #fff;
  padding: 0.25em 0;
  display: inline-block;
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list01_all {
  width: 46.5%;
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list01 {
  width: 100%;
  border-left: 1px solid #fff;
  margin-left: 1%;
  padding-left: 1em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub02_nav .sub_nav_contents .listbox .list01 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list02_all {
  width: 51.5%;
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list02 {
  width: 100%;
  border-left: 1px solid #fff;
  margin-left: 1%;
  padding-left: 1em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub02_nav .sub_nav_contents .listbox .list02 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list03_all {
  width: 49%;
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list03 {
  width: 100%;
  border-left: 1px solid #fff;
  margin-left: 1%;
  padding-left: 1em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub02_nav .sub_nav_contents .listbox .list03 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list04_all {
  width: 49%;
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list04 {
  width: 100%;
  border-left: 1px solid #fff;
  margin-left: 1%;
  padding-left: 1em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub02_nav .sub_nav_contents .listbox .list04 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub02_nav .sub_nav_contents .listbox .list05 {
  width: 100%;
  border-left: 0px solid #fff;
  margin-left: 1%;
  padding-left: 1em;
  margin-top: 2em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub02_nav .sub_nav_contents .listbox .list05 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub03_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub03_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 43.63%;
}
header .header__in .sub03_nav .sub_nav_contents {
  width: 36.36%;
  margin: -2px auto 0 auto;
  padding: 35px 5.5% 40px 5.5%;
  border-radius: 12px;
  background-color: #0D6521;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub03_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub03_nav .sub_nav_contents h3 span {
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub03_nav .sub_nav_contents h4 {
  color: #fff;
  margin-bottom: 0.75em;
  line-height: 180%;
}
header .header__in .sub03_nav .sub_nav_contents .contents__in {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub03_nav .sub_nav_contents .contents__in .left {
  width: 100%;
}
header .header__in .sub03_nav .sub_nav_contents .listbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header .header__in .sub03_nav .sub_nav_contents .listbox a {
  color: #fff;
  padding: 0.25em 0;
  display: inline-block;
}
header .header__in .sub03_nav .sub_nav_contents .listbox .list01 {
  width: 46.5%;
  border-left: 1px solid #fff;
  margin-left: 1%;
  padding-left: 1em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub03_nav .sub_nav_contents .listbox .list01 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub03_nav .sub_nav_contents .listbox .list02 {
  width: 51.5%;
  border-left: 1px solid #fff;
  margin-left: 1%;
  padding-left: 1em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub03_nav .sub_nav_contents .listbox .list02 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub04_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub04_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 39.9%;
}
header .header__in .sub04_nav .sub_nav_contents {
  width: 46.36%;
  margin-top: -2px;
  margin-left: 35.63%;
  margin-right: auto;
  padding: 35px 4.5% 40px 4.5%;
  border-radius: 12px;
  background-color: #0D6521;
  /*
  background-image: url(../images/sub01_nav_back.png);
  background-size: cover;
  */
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub04_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub04_nav .sub_nav_contents h3 span {
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub04_nav .sub_nav_contents ul.inul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub04_nav .sub_nav_contents ul.inul li.inlist {
  width: 40.5%;
}
header .header__in .sub04_nav .sub_nav_contents ul.inul li.inlist figure {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
header .header__in .sub04_nav .sub_nav_contents ul.inul li.inlist p {
  padding: 0.5em 0 0 0;
}
@media screen and (max-width:1200px) {
  header .header__in .sub04_nav .sub_nav_contents ul.inul li.inlist p {
    font-size: 1.3333333333vw;
  }
}
header .header__in .sub04_nav .sub_nav_contents ul.inul li.inlist a {
  color: #fff;
}
header .header__in .sub05_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub05_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 55.3%;
}
header .header__in .sub05_nav .sub_nav_contents {
  width: 46.36%;
  margin-top: -2px;
  margin-left: 36.8%;
  margin-right: auto;
  padding: 35px 4.5% 40px 4.5%;
  border-radius: 12px;
  background-color: #0D6521;
  /*
  background-image: url(../images/sub01_nav_back.png);
  background-size: cover;
  */
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub05_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub05_nav .sub_nav_contents h3 span {
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub05_nav .sub_nav_contents ul.inul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub05_nav .sub_nav_contents ul.inul li.inlist {
  width: 40.5%;
}
header .header__in .sub05_nav .sub_nav_contents ul.inul li.inlist figure {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
header .header__in .sub05_nav .sub_nav_contents ul.inul li.inlist p {
  padding: 0.5em 0 0 0;
}
@media screen and (max-width:1200px) {
  header .header__in .sub05_nav .sub_nav_contents ul.inul li.inlist p {
    font-size: 1.3333333333vw;
  }
}
header .header__in .sub05_nav .sub_nav_contents ul.inul li.inlist a {
  color: #fff;
}
header .header__in .sub06_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub06_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 69.8%;
}
header .header__in .sub06_nav .sub_nav_contents {
  width: 23.63%;
  margin-top: -2px;
  margin-left: 62.45%;
  margin-right: auto;
  padding: 35px 4.5% 40px 4.5%;
  border-radius: 12px;
  background-color: #0D6521;
  /*background-image: url(../images/sub01_nav_back.png);
  background-size: cover;
  */
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub06_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub06_nav .sub_nav_contents h3 span {
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub06_nav .sub_nav_contents ul.inul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub06_nav .sub_nav_contents ul.inul li.inlist {
  width: 100%;
}
header .header__in .sub06_nav .sub_nav_contents ul.inul li.inlist figure {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
header .header__in .sub06_nav .sub_nav_contents ul.inul li.inlist p {
  padding: 0.5em 0 0 0;
}
@media screen and (max-width:1200px) {
  header .header__in .sub06_nav .sub_nav_contents ul.inul li.inlist p {
    font-size: 1.3333333333vw;
  }
}
header .header__in .sub06_nav .sub_nav_contents ul.inul li.inlist a {
  color: #fff;
}
header .header__in .sub07_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub07_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 87.5%;
}
header .header__in .sub07_nav .sub_nav_contents {
  width: 44.1%;
  margin: -2px auto 0 56.8%;
  padding: 35px 5.5% 40px 5.5%;
  border-radius: 12px;
  background-color: #0D6521;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub07_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub07_nav .sub_nav_contents h3 span {
  padding-bottom: 0.1em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub07_nav .sub_nav_contents h4 {
  color: #fff;
  margin-bottom: 0.75em;
  line-height: 180%;
}
header .header__in .sub07_nav .sub_nav_contents .contents__in {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub07_nav .sub_nav_contents .contents__in .left {
  width: 100%;
}
header .header__in .sub07_nav .sub_nav_contents .listbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header .header__in .sub07_nav .sub_nav_contents .listbox a {
  color: #fff;
  padding: 0.75em 0 0.75em 0;
  display: inline-block;
}
header .header__in .sub07_nav .sub_nav_contents .listbox a.last {
  padding-bottom: 0.75em;
}
header .header__in .sub07_nav .sub_nav_contents .listbox .list01 {
  width: 60%;
  border-left: 0px solid #fff;
  margin-left: 0%;
  padding-left: 0em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub07_nav .sub_nav_contents .listbox .list01 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub07_nav .sub_nav_contents .listbox .list02 {
  width: 40%;
  border-left: 0px solid #fff;
  margin-left: 0%;
  padding-left: 0em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub07_nav .sub_nav_contents .listbox .list02 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub08_nav {
  width: 100%;
  padding: 0px;
  /*background-color: rgba(255,0,0,0.1);*/
  position: absolute;
  top: calc(50% + 1em + 10px);
  left: 0;
  display: none;
}
header .header__in .sub08_nav .sub_nav_head {
  width: 9.09%;
  margin: 0 auto 0 92.4%;
}
header .header__in .sub08_nav .sub_nav_contents {
  width: 37.27%;
  margin: -2px -4.6% 0 67.45%;
  padding: 35px 5.5% 40px 5.5%;
  border-radius: 12px;
  background-color: #0D6521;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:1200px) {
  header .header__in .sub08_nav .sub_nav_contents h3 {
    font-size: 2vw;
  }
}
header .header__in .sub08_nav .sub_nav_contents h3 span {
  padding-bottom: 0.1em;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
header .header__in .sub08_nav .sub_nav_contents h4 {
  color: #fff;
  margin-bottom: 0.75em;
  line-height: 180%;
}
header .header__in .sub08_nav .sub_nav_contents .contents__in {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header__in .sub08_nav .sub_nav_contents .contents__in .left {
  width: 100%;
}
header .header__in .sub08_nav .sub_nav_contents .listbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header .header__in .sub08_nav .sub_nav_contents .listbox a {
  color: #fff;
  padding: 0.75em 0 0.75em 0;
  display: inline-block;
}
header .header__in .sub08_nav .sub_nav_contents .listbox a.last {
  padding-bottom: 0.75em;
}
header .header__in .sub08_nav .sub_nav_contents .listbox .list01 {
  width: 46.5%;
  border-left: 0px solid #fff;
  margin-left: 0%;
  padding-left: 0em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub08_nav .sub_nav_contents .listbox .list01 {
    font-size: 1.1666666667vw;
  }
}
header .header__in .sub08_nav .sub_nav_contents .listbox .list02 {
  width: 51.5%;
  border-left: 0px solid #fff;
  margin-left: 0%;
  padding-left: 0em;
}
@media screen and (max-width:1200px) {
  header .header__in .sub08_nav .sub_nav_contents .listbox .list02 {
    font-size: 1.1666666667vw;
  }
}

nav {
  display: none;
}
@media screen and (max-width:800px) {
  nav {
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(13, 101, 33, 0.85);
    z-index: 30000;
  }
}
nav .nav__in {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  padding: 7.5vw 7.5vw 15vw 7.5vw;
}
nav .headclose {
  width: 24px;
  margin: 0 0 24px auto;
}
nav .footclose {
  width: 100%;
  text-align: center;
}
nav .footclose figure {
  width: 24px;
  margin: 35px auto 10px auto;
}
nav .footclose p {
  text-align: center;
  font-weight: 500;
  font-weight: 3.2vw;
}
nav .langagebox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6vw;
  border-bottom: 1px solid #999;
  margin-bottom: 5vw;
}
nav .langagebox figure {
  width: 23.5%;
}
nav .langagebox ul {
  width: 68%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width:800px) {
  nav .langagebox ul {
    font-size: 3vw;
  }
}
nav .langagebox ul li {
  width: 50%;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
nav .langagebox ul li:nth-child(2n) {
  border-right: 0;
}
nav .langagebox ul li:nth-child(3n) {
  border-bottom: 0;
}
nav .langagebox ul li:nth-child(4n) {
  border-bottom: 0;
}
nav .langagebox ul li a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.5em 0 0.6em 0;
  line-height: 100%;
  background-color: #F8F8F8;
  color: #000;
}
nav .langagebox ul li a.active {
  background-color: #fff;
}
nav .spmenu_contents {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 6.5vw;
  border-radius: 10px;
}
@media screen and (max-width:800px) {
  nav .spmenu_contents {
    margin-bottom: 0vw;
  }
}
nav .spmenu_contents .listbox {
  width: 20%;
}
@media screen and (max-width:800px) {
  nav .spmenu_contents .listbox {
    width: 100%;
  }
}
nav .spmenu_contents h5 {
  color: #000;
  font-weight: 500;
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width:1200px) {
  nav .spmenu_contents h5 {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width:800px) {
  nav .spmenu_contents h5 {
    font-size: 4.2vw;
    margin-bottom: 1.5em;
  }
}
nav .spmenu_contents h5::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  background: url(../images/icon_sikaku.svg) no-repeat center;
  background-size: contain;
  top: 60%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width:800px) {
  nav .spmenu_contents h5::after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    background: url(../images/icon_pluse.svg) no-repeat center;
    background-size: contain;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width:800px) {
  nav .spmenu_contents h5.active::after {
    background: url(../images/icon_pluse_on.svg) no-repeat center;
    background-size: contain;
  }
}
@media screen and (max-width:800px) {
  nav .spmenu_contents h5:hover {
    cursor: pointer;
  }
}
nav .spmenu_contents ul.menu_ins {
  border-left: 1px solid #000;
  width: 100%;
  margin-bottom: 50px;
  font-weight: 500;
}
@media screen and (max-width:1200px) {
  nav .spmenu_contents ul.menu_ins {
    font-size: 1vw;
  }
}
@media screen and (max-width:800px) {
  nav .spmenu_contents ul.menu_ins {
    font-size: 4vw;
    margin-top: -1.5vw;
    margin-bottom: 10vw;
    display: none;
  }
}
nav .spmenu_contents ul.menu_ins li {
  padding: 0em 0 1.5em 0;
}
nav .spmenu_contents ul.menu_ins li:last-child {
  padding-bottom: 0em;
}
nav .spmenu_contents ul.menu_ins li a {
  color: #000;
  padding-left: 1em;
  display: inline-block;
}
nav .spmenu_contents ul.menu_ins li a.blankicons {
  padding-right: 1em;
  position: relative;
}
nav .spmenu_contents ul.menu_ins li a.blankicons::after {
  content: "";
  width: 1em;
  height: 1em;
  position: relative;
  background: url(../images/icon_blank2.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  margin-left: 0.5em;
}
nav .navin__linkbox {
  width: 100%;
}
@media screen and (max-width:800px) {
  nav .navin__linkbox {
    width: 100%;
    margin-top: 7.5vw;
    padding-top: 7.5vw;
    border-top: 1px solid #999;
  }
}
nav .navin__linkbox .linkbox_text01 {
  font-weight: 500;
  margin-bottom: 0.95em;
  display: inline-block;
  color: #000;
}
@media screen and (max-width:1200px) {
  nav .navin__linkbox .linkbox_text01 {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width:800px) {
  nav .navin__linkbox .linkbox_text01 {
    font-size: 3.8vw;
  }
}
nav .navin__linkbox .linkbox_text01.last {
  margin-bottom: 0;
}
nav .navin__linkbox .linkbox_text01::after {
  content: "";
  width: 1em;
  height: 1em;
  position: relative;
  background: url(../images/icon_blank2.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  margin-left: 0.5em;
}
nav .botan_contact {
  width: 100%;
  text-align: center;
  display: block;
  border-radius: 50px;
  background-color: #0D6521;
  color: #fff;
  margin-top: 7.5vw;
  padding: 1.1em 0;
}
nav .botan_contact span {
  font-size: 4.2vw;
  padding-right: 1.25em;
  position: relative;
  display: inline-block;
}
nav .botan_contact span::after {
  content: "";
  width: 1em;
  height: 1em;
  position: absolute;
  background: url(../images/icon_contact2.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  right: 0em;
  top: 58%;
  transform: translate(0, -50%);
}

footer {
  width: 100%;
  background: url(../images/footer_back.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 9990;
}
@media screen and (max-width:800px) {
  footer {
    background: url(../images/footer_back_sp.jpg) repeat-y center top;
    background-size: 100% auto;
  }
}
footer .section__in {
  width: 84%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0 50px 0;
  position: relative;
}
@media screen and (max-width:800px) {
  footer .section__in {
    padding: 10vw 0 50px 0;
  }
}
footer .topback {
  width: 50px;
  position: absolute;
  bottom: calc(100% - 1px);
  right: 0;
}
footer .copyright {
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1.5em 0;
}
@media screen and (max-width:800px) {
  footer .copyright {
    padding: 0.75em 0 calc(0.75em + 65px);
  }
}
footer .footer_contents {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width:800px) {
  footer .footer_contents {
    margin-bottom: 5vw;
  }
}
footer .footer_contents .listbox {
  width: 20%;
}
@media screen and (max-width:800px) {
  footer .footer_contents .listbox {
    width: 100%;
  }
}
footer .footer_contents h5 {
  color: #fff;
  font-weight: 500;
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width:1200px) {
  footer .footer_contents h5 {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width:800px) {
  footer .footer_contents h5 {
    font-size: 4.2vw;
    margin-bottom: 1.5em;
  }
}
footer .footer_contents h5::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  background: url(../images/icon_sikaku_w.svg) no-repeat center;
  background-size: contain;
  top: 60%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width:800px) {
  footer .footer_contents h5::after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    background: url(../images/icon_pluse_typeb.svg) no-repeat center;
    background-size: contain;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width:800px) {
  footer .footer_contents h5.active::after {
    background: url(../images/icon_pluse_typeb_on.svg) no-repeat center;
    background-size: contain;
  }
}
@media screen and (max-width:800px) {
  footer .footer_contents h5:hover {
    cursor: pointer;
  }
}
footer .footer_contents ul {
  border-left: 1px solid #fff;
  width: 100%;
  margin-bottom: 50px;
  font-weight: 500;
}
@media screen and (max-width:1200px) {
  footer .footer_contents ul {
    font-size: 1vw;
  }
}
@media screen and (max-width:800px) {
  footer .footer_contents ul {
    font-size: 4vw;
    margin-top: -1.5vw;
    margin-bottom: 10vw;
    display: none;
  }
}
footer .footer_contents ul li {
  padding: 0em 0 1.5em 0;
}
footer .footer_contents ul li:last-child {
  padding-bottom: 0em;
}
footer .footer_contents ul li a {
  color: #fff;
  padding-left: 1em;
  display: inline-block;
}
footer .footer_contents ul li a.blankicons {
  padding-right: 1em;
  position: relative;
}
footer .footer_contents ul li a.blankicons::after {
  content: "";
  width: 1em;
  height: 1em;
  position: relative;
  background: url(../images/icon_blank3.svg) no-repeat center;
  background-size: cover;
  display: inline-block;
  margin-left: 0.5em;
}
footer .footer_contents2 {
  width: 100%;
  border-top: 1px dashed #fff;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer_contents2 .left {
  width: 23.18%;
  color: #fff;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .left {
    width: 100%;
    order: 2;
    margin-top: 16vw;
  }
}
footer .footer_contents2 .left figure {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .left figure {
    width: 52.5%;
  }
}
footer .footer_contents2 .left .names_text {
  text-align: center;
  padding: 0.75em 0 0.5em 0;
}
@media screen and (max-width:1200px) {
  footer .footer_contents2 .left .names_text {
    font-size: 1.5vw;
  }
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .left .names_text {
    font-size: 4.6vw;
  }
}
footer .footer_contents2 .left .adress_text {
  text-align: center;
}
@media screen and (max-width:1200px) {
  footer .footer_contents2 .left .adress_text {
    font-size: 1vw;
  }
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .left .adress_text {
    font-size: 3.5vw;
    line-height: 160%;
  }
}
footer .footer_contents2 .right {
  width: 70.63%;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right {
    width: 100%;
    order: 1;
  }
}
footer .footer_contents2 .right .rightbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer_contents2 .right .rightbox .banabox {
  width: 53.94%;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .rightbox .banabox {
    width: 100%;
  }
}
footer .footer_contents2 .right .rightbox .linkbox {
  width: 39.5%;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .rightbox .linkbox {
    width: 100%;
    margin-top: 7.5vw;
  }
}
footer .footer_contents2 .right .rightbox .linkbox .linkbox_text01 {
  font-weight: 500;
  margin-bottom: 0.95em;
  display: inline-block;
  color: #fff;
}
@media screen and (max-width:1200px) {
  footer .footer_contents2 .right .rightbox .linkbox .linkbox_text01 {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .rightbox .linkbox .linkbox_text01 {
    font-size: 3.8vw;
  }
}
footer .footer_contents2 .right .rightbox .linkbox .linkbox_text01.last {
  margin-bottom: 0;
}
footer .footer_contents2 .right .rightbox .linkbox .linkbox_text01::after {
  content: "";
  width: 1em;
  height: 1em;
  position: relative;
  background: url(../images/icon_blank3.svg) no-repeat center;
  background-size: cover;
  display: inline-block;
  margin-left: 0.5em;
}
footer .footer_contents2 .right .otherlinkbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 45px;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .otherlinkbox {
    width: 100%;
  }
}
footer .footer_contents2 .right .otherlinkbox ul.endfootlinks {
  width: 85.6%;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .otherlinkbox ul.endfootlinks {
    width: 100%;
    flex-wrap: wrap;
  }
}
footer .footer_contents2 .right .otherlinkbox ul.endfootlinks li {
  display: inline-block;
  margin-right: 1.75em;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .otherlinkbox ul.endfootlinks li {
    width: 50%;
    margin-right: 0em;
  }
}
footer .footer_contents2 .right .otherlinkbox ul.endfootlinks li a {
  color: #fff;
  font-weight: 500;
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width:1200px) {
  footer .footer_contents2 .right .otherlinkbox ul.endfootlinks li a {
    font-size: 1vw;
  }
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .otherlinkbox ul.endfootlinks li a {
    display: inline-block;
    font-size: 3.8vw;
  }
}
footer .footer_contents2 .right .otherlinkbox ul.endfootlinks li a::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  background: url(../images/icon_sikaku_w.svg) no-repeat center;
  background-size: contain;
  top: 60%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .otherlinkbox ul.endfootlinks li a::before {
    top: 0%;
    left: 0;
    transform: translate(0, 90%);
  }
}
footer .footer_contents2 .right .otherlinkbox .snsbox {
  width: 14.4%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .otherlinkbox .snsbox {
    width: 40%;
    margin: 30px 30% 0 30%;
  }
}
footer .footer_contents2 .right .otherlinkbox .snsbox a {
  width: 42.5%;
  display: block;
}
@media screen and (max-width:800px) {
  footer .footer_contents2 .right .otherlinkbox .snsbox a {
    width: 37.5%;
  }
}

#pc_fix_cv {
  position: fixed;
  right: 0;
  top: 25px;
  z-index: 18999;
}
@media screen and (max-width:800px) {
  #pc_fix_cv {
    display: none;
  }
}
#pc_fix_cv a {
  display: block;
  background-color: #0D6521;
  padding: 15px 10px;
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width:1200px) {
  #pc_fix_cv a {
    padding: 1.25vw 0.8333333333vw;
    border-radius: 4px 0 0 4px;
  }
}
#pc_fix_cv figure {
  width: 25px;
}
@media screen and (max-width:1200px) {
  #pc_fix_cv figure {
    width: 2.0833333333vw;
  }
}

#sp_foot_contena {
  width: 90%;
  position: fixed;
  bottom: 0;
  left: 0;
  justify-content: space-between;
  display: none;
  z-index: 9999;
}
@media screen and (max-width:800px) {
  #sp_foot_contena {
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    display: block;
  }
}
#sp_foot_contena ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
#sp_foot_contena li {
  width: 33.3333333333%;
  padding: 10px 0;
}
#sp_foot_contena li.spfc_01 {
  background-color: #EDF4F1;
}
#sp_foot_contena li.spfc_01 a {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: relative;
}
#sp_foot_contena li.spfc_01 a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background-color: #0D6521;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
#sp_foot_contena li.spfc_01 a figure.img01 {
  width: 22px;
  margin: 0 auto;
  line-height: 100%;
}
#sp_foot_contena li.spfc_01 a p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #0D6521;
}
#sp_foot_contena li.spfc_02 {
  background-color: #EDF4F1;
}
#sp_foot_contena li.spfc_02 a {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#sp_foot_contena li.spfc_02 a figure.img02 {
  width: 19px;
  margin: 4px auto 2px auto;
  line-height: 100%;
}
#sp_foot_contena li.spfc_02 a p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #0D6521;
}
#sp_foot_contena li.spfc_03 {
  background-color: #0D6521;
}
#sp_foot_contena li.spfc_03 a {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#sp_foot_contena li.spfc_03 a:hover {
  cursor: pointer;
}
#sp_foot_contena li.spfc_03 a figure.img03 {
  width: 20px;
  margin: 4px auto 2px auto;
  line-height: 100%;
}
#sp_foot_contena li.spfc_03 a p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/*****************************************************************/
#pankuz {
  width: 100%;
  background-color: #F8F8F8;
  padding: 0.75em 0;
}
#pankuz .section__in {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#pankuz ul {
  width: 100%;
}
#pankuz ul li {
  display: inline;
  position: relative;
}
#pankuz ul li a {
  display: inline;
  line-height: 140%;
}
#pankuz ul li::after {
  content: ">";
  position: relative;
  display: inline;
  margin-left: 1em;
  margin-right: 0.9em;
}
#pankuz ul li:last-child::after {
  content: none;
}

/*****************************************************************/
a.productlist_link:hover span.lines_text {
  background-size: 100% 1px;
}
@media screen and (max-width:800px) {
  a.productlist_link:hover span.lines_text {
    background-size: 0% 1px;
  }
}
a.productlist_link span.lines_text {
  background-image: linear-gradient(#000, #000); /* 単色 */
  background-size: 0% 1px; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom left; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 0px;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}

a.link_text_icon {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
a.link_text_icon:hover .text span.lines_text {
  background-size: 100% 1px;
}
@media screen and (max-width:800px) {
  a.link_text_icon:hover .text span.lines_text {
    background-size: 0% 1px;
  }
}
a.link_text_icon:hover .icons figure {
  transform: translate(15%, 0);
}
@media screen and (max-width:800px) {
  a.link_text_icon:hover .icons figure {
    transform: translate(0px, 0);
  }
}
a.link_text_icon .text {
  display: inline-block;
  padding-right: 1.5em;
  align-items: center;
  text-align: left;
}
@media screen and (max-width:800px) {
  a.link_text_icon .text {
    padding-right: 0em;
    max-width: 78vw;
    margin-right: 4vw;
  }
}
a.link_text_icon .text .lines_text {
  background-image: linear-gradient(#000, #000); /* 単色 */
  background-size: 0% 1px; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom left; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 0px;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
a.link_text_icon .icons {
  width: 70px;
  height: 70px;
  background-color: #0D6521;
  border-radius: 50%;
  display: inline-block;
}
@media screen and (max-width:800px) {
  a.link_text_icon .icons {
    width: 10vw;
    height: 10vw;
  }
}
a.link_text_icon .icons figure {
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}

/*************/
a.link_text_icon2 {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
a.link_text_icon2:hover .text span.lines_text {
  background-size: 100% 1px;
}
@media screen and (max-width:800px) {
  a.link_text_icon2:hover .text span.lines_text {
    background-size: 0% 1px;
  }
}
a.link_text_icon2:hover .icons figure {
  transform: translate(15%, 0);
}
@media screen and (max-width:800px) {
  a.link_text_icon2:hover .icons figure {
    transform: translate(0px, 0);
  }
}
a.link_text_icon2 .text {
  display: inline-block;
  padding-right: 1.5em;
  align-items: center;
  text-align: left;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width:1360px) {
  a.link_text_icon2 .text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width:800px) {
  a.link_text_icon2 .text {
    font-size: 3.6vw;
  }
}
a.link_text_icon2 .text .lines_text {
  background-image: linear-gradient(#fff, #fff); /* 単色 */
  background-size: 0% 1px; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom left; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 0px;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
a.link_text_icon2 .icons {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}
@media screen and (max-width:1360px) {
  a.link_text_icon2 .icons {
    width: 5.1244509517vw;
    height: 5.1244509517vw;
  }
}
@media screen and (max-width:800px) {
  a.link_text_icon2 .icons {
    width: 10vw;
    height: 10vw;
  }
}
a.link_text_icon2 .icons figure {
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}

/*************/
a:hover .link_text .text span.lines_text {
  background-size: 100% 1px;
}
@media screen and (max-width:800px) {
  a:hover .link_text .text span.lines_text {
    background-size: 0% 1px;
  }
}
a .link_text {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
a .link_text .text {
  display: inline-block;
  align-items: center;
  text-align: left;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width:1360px) {
  a .link_text .text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width:800px) {
  a .link_text .text {
    font-size: 3.6vw;
  }
}
a .link_text .text .lines_text {
  background-image: linear-gradient(#fff, #fff); /* 単色 */
  background-size: 0% 1px; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom left; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 0px;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}

/*************/
a:hover .botanwaku_bottom .text span.lines_text {
  background-size: 100% 1px;
}
@media screen and (max-width:800px) {
  a:hover .botanwaku_bottom .text span.lines_text {
    background-size: 0% 1px;
  }
}
a:hover .botanwaku_bottom .icons figure {
  transform: translate(15%, 0);
}
@media screen and (max-width:800px) {
  a:hover .botanwaku_bottom .icons figure {
    transform: translate(0px, 0);
  }
}
a:hover figure.photowaku img {
  transform: scale(1.05);
  opacity: 0.6;
}
@media screen and (max-width:800px) {
  a:hover figure.photowaku img {
    transform: scale(1);
    opacity: 1;
  }
}
a:hover .text_center .text span.lines_text {
  background-size: 100% 1px;
}
@media screen and (max-width:800px) {
  a:hover .text_center .text span.lines_text {
    background-size: 0% 1px;
  }
}
a .link_text_icon_side {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
a .link_text_icon_side .text {
  display: inline-block;
  padding-right: 1.5em;
  align-items: center;
  text-align: left;
  color: #fff;
  font-weight: 500;
}
a .link_text_icon_side .text .lines_text {
  background-image: linear-gradient(#fff, #fff); /* 単色 */
  background-size: 0% 1px; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom left; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 0px;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
a .link_text_icon_side .icons {
  width: 40px;
  height: 40px;
  background-color: #0D6521;
  border-radius: 50%;
  display: inline-block;
}
@media screen and (max-width:800px) {
  a .link_text_icon_side .icons {
    width: 10vw;
    height: 10vw;
  }
}
a .link_text_icon_side .icons figure {
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}

a.linktyps {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 6px;
  /*
    &:hover .intext .marus01{
      transform: translate(5px,0);
    }
    */
}
@media screen and (max-width:800px) {
  a.linktyps {
    flex-wrap: wrap;
  }
}
a.linktyps:hover .photos::after {
  opacity: 1;
}
@media screen and (max-width:800px) {
  a.linktyps:hover .photos::after {
    opacity: 0;
  }
}
a.linktyps:hover .photos figure {
  transform: scale(1.05);
}
@media screen and (max-width:800px) {
  a.linktyps:hover .photos figure {
    transform: scale(1);
  }
}
a.linktyps:hover .intext .intext__in p span.lines_text {
  background-size: 100% 1px;
}
@media screen and (max-width:800px) {
  a.linktyps:hover .intext .intext__in p span.lines_text {
    background-size: 0% 1px;
  }
}
a.linktyps:hover .intext .marus01 figure {
  transform: translate(5px, 0);
}
@media screen and (max-width:800px) {
  a.linktyps:hover .intext .marus01 figure {
    transform: translate(0px, 0);
  }
}
a.linktyps .photos {
  width: 64.4%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width:800px) {
  a.linktyps .photos {
    width: 100%;
  }
}
a.linktyps .photos::after {
  pointer-events: none;
  opacity: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
a.linktyps .photos figure {
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
a.linktyps .intext {
  width: 35.6%;
  display: flex;
  align-items: center;
}
@media screen and (max-width:800px) {
  a.linktyps .intext {
    width: 100%;
    padding: 5vw 0;
  }
}
a.linktyps .intext .intext__in {
  width: 100%;
  text-align: center;
}
@media screen and (max-width:800px) {
  a.linktyps .intext .intext__in {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
a.linktyps .intext .intext__in p {
  text-align: center;
  margin-bottom: 0.5em;
  font-weight: 500;
}
a.linktyps .intext .intext__in p span.lines_text {
  background-image: linear-gradient(#000, #000); /* 単色 */
  background-size: 0% 1px; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom left; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 0px;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width:1200px) {
  a.linktyps .intext .intext__in p {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width:800px) {
  a.linktyps .intext .intext__in p {
    font-size: 4.6vw;
    margin-bottom: 0em;
    margin-right: 1em;
  }
}
a.linktyps .intext .marus01 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0D6521;
  margin: 0 auto 0 auto;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width:800px) {
  a.linktyps .intext .marus01 {
    display: inline-block;
    width: 10vw;
    height: 10vw;
    margin: 0 0 0 0;
  }
}
a.linktyps .intext .marus01 figure {
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}

a.linktyps2 {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 6px;
  /*
    &:hover .intext .marus01{
      transform: translate(5px,0);
    }
    */
}
@media screen and (max-width:800px) {
  a.linktyps2 {
    flex-wrap: wrap;
  }
}
a.linktyps2:hover .photos::after {
  opacity: 1;
}
@media screen and (max-width:800px) {
  a.linktyps2:hover .photos::after {
    opacity: 0;
  }
}
a.linktyps2:hover .photos figure {
  transform: scale(1.05);
}
@media screen and (max-width:800px) {
  a.linktyps2:hover .photos figure {
    transform: scale(1);
  }
}
a.linktyps2:hover .intext .intext__in p span.lines_text {
  background-size: 100% 1px;
}
@media screen and (max-width:800px) {
  a.linktyps2:hover .intext .intext__in p span.lines_text {
    background-size: 0% 1px;
  }
}
a.linktyps2:hover .intext .marus01 figure {
  transform: translate(5px, 0);
}
@media screen and (max-width:800px) {
  a.linktyps2:hover .intext .marus01 figure {
    transform: translate(0px, 0);
  }
}
a.linktyps2 .photos {
  width: 60.74%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width:800px) {
  a.linktyps2 .photos {
    width: 100%;
  }
}
a.linktyps2 .photos::after {
  pointer-events: none;
  opacity: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
a.linktyps2 .photos figure {
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
a.linktyps2 .intext {
  width: 39.26%;
  display: flex;
  align-items: center;
  background-color: #0D6521;
}
@media screen and (max-width:800px) {
  a.linktyps2 .intext {
    width: 100%;
    padding: 3vw 0;
  }
}
a.linktyps2 .intext .intext__in {
  width: 100%;
  text-align: center;
}
@media screen and (max-width:800px) {
  a.linktyps2 .intext .intext__in {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
a.linktyps2 .intext .intext__in p {
  text-align: center;
  margin-bottom: 0.75em;
  font-weight: 500;
  color: #fff;
}
a.linktyps2 .intext .intext__in p span.lines_text {
  background-image: linear-gradient(#fff, #fff); /* 単色 */
  background-size: 0% 1px; /* 幅(0=見えない状態) | 高さ(=線の太さ) */
  background-position: bottom left; /* 右下に配置 */
  background-repeat: no-repeat;
  padding-bottom: 0px;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width:1200px) {
  a.linktyps2 .intext .intext__in p {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width:800px) {
  a.linktyps2 .intext .intext__in p {
    font-size: 4.6vw;
    margin-bottom: 0em;
    margin-right: 1em;
  }
}
a.linktyps2 .intext .marus01 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto 0 auto;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width:800px) {
  a.linktyps2 .intext .marus01 {
    display: inline-block;
    width: 10vw;
    height: 10vw;
    margin: 0 0 0 0;
  }
}
a.linktyps2 .intext .marus01 figure {
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}

/***************************************************/
.pageid_02 .derc01 {
  position: relative;
}
.pageid_02 .derc01::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 3px;
  left: 0;
  background-color: #0D6521;
}

.pageid_07 .derc02 {
  position: relative;
}
.pageid_07 .derc02::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0D6521;
}

.pageid_12 .derc03 {
  position: relative;
}
.pageid_12 .derc03::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0D6521;
}

.pageid_135 .derc04 {
  position: relative;
}
.pageid_135 .derc04::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0D6521;
}

.pageid_122 .derc05 {
  position: relative;
}
.pageid_122 .derc05::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0D6521;
}

.pageid_203 .derc05b {
  position: relative;
}
.pageid_203 .derc05b::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0D6521;
}

.pageid_124 .derc06 {
  position: relative;
}
.pageid_124 .derc06::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0D6521;
}

.pageid_127 .derc07 {
  position: relative;
}
.pageid_127 .derc07::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0D6521;
}

.pageid_209 .derc08 {
  position: relative;
}
.pageid_209 .derc08::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0D6521;
}

/***greeenback****************************/
.back_greeen {
  position: relative;
  overflow: hidden;
}
.back_greeen::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  background: linear-gradient(90deg, rgba(23, 70, 41, 0.6) 0%, rgba(23, 70, 41, 0.6) 50%, rgba(23, 70, 41, 0.5) 70%, rgba(23, 70, 41, 0) 100%);
  z-index: 2;
  left: -200%;
  transition: all 1.2s linear 0.01s;
}
.back_greeen.active::before {
  left: 0%;
}

/***greeenback****************************/
.back_purple {
  position: relative;
  overflow: hidden;
}
.back_purple::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  background: linear-gradient(90deg, rgba(125, 128, 160, 0.6) 0%, rgba(125, 128, 160, 0.6) 50%, rgba(125, 128, 160, 0.5) 70%, rgba(125, 128, 160, 0) 100%);
  z-index: 2;
  left: -200%;
  transition: all 1.2s linear 0.01s;
}
.back_purple.active::before {
  left: 0%;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url(../images/overlay.png) repeat 0 0;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
  margin: 0px 0 0px 0;
}

#cboxTopLeft {
  display: none;
  width: 21px;
  height: 0px;
}

#cboxTopRight {
  display: none;
  width: 21px;
  height: 0px;
}

#cboxBottomLeft {
  display: none;
  width: 21px;
  height: 21px;
}

#cboxBottomRight {
  display: none;
  width: 21px;
  height: 21px;
}

#cboxMiddleLeft {
  width: 0px;
}

#cboxMiddleRight {
  width: 0px;
}

#cboxTopCenter {
  display: none;
  height: 0px;
}

#cboxBottomCenter {
  display: none;
  height: 0px;
}

#cboxContent { /*background:#fff*/
  overflow: hidden;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 0px;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: -75px -25px;
}

#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: -50px -25px;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: -25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}/*# sourceMappingURL=style.css.map */