@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  outline: none;
}

/*==========================================================*/
/*	responsive
-----------------------------------------------------------*/
/*  animation
---------------------------------------------------------------*/
.move {
  transform-origin: center top;
  transition: all 0.8s;
  opacity: 0;
  transform: translate(0, 30px) scale(1);
}
.move.moving {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/*	css
-----------------------------------------------------------*/
/*==========================================================*/
html {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
  font: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

strong {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

body,
html {
  width: 100%;
  height: 100%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "Helvetica Neue", Meiryo, メイリオ, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subtext *,
canvas,
.is_dragging *,
.js-draw-text,
.subtitles,
.subtitles span,
.to-scroll,
.menu-li .in,
.menu-li a,
.single-sub-title span,
.work-sub-title span,
.link,
.view-more a,
.work-title a,
.unselectable {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

[class^=icon-],
[class*=" icon-"] {
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-fb:before {
  content: "f";
}

.i-tw:before {
  content: "t";
}

.i-inst:before {
  content: "i";
}

.i {
  font-family: "i";
}

.is_waiting body {
  overflow: hidden !important;
}

body,
a {
  color: #333;
}

article {
  display: block;
}

video,
img,
canvas {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}

/*	input
-----------------------------------------------------------*/
input[type=text],
input[type=email] {
  width: auto;
  height: 5rem;
  border: 1px solid #999999;
  color: #000;
  padding: 0px 1rem;
  -webkit-appearance: none;
  outline: 0;
  border-radius: 0px;
  box-sizing: border-box;
}
@media only screen and (max-width: 380px) {
  input[type=text],
  input[type=email] {
    width: 100%;
    height: 4rem;
    border: 1px solid #999999;
    color: #000;
    padding: 0px 1rem;
    -webkit-appearance: none;
    outline: 0;
    border-radius: 0px;
    box-sizing: border-box;
  }
}

/* ===== select ===== */
label.select_cover {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 380px) {
  label.select_cover {
    width: 100%;
  }
}
label.select_cover:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 5px;
  display: inline-block;
  margin-right: 10px;
  border: 5px solid transparent;
  border-color: black black transparent transparent;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media only screen and (max-width: 380px) {
  label.select_cover:before {
    top: 12px;
  }
}

textarea {
  width: 300px;
  min-height: 200px;
  border: 1px solid #999999;
  color: #000;
  padding: 15px 10px;
}
@media only screen and (max-width: 380px) {
  textarea {
    width: 100%;
    min-height: 200px;
    border: 1px solid #999999;
    color: #000;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 1px;
    -webkit-appearance: none;
    line-height: 1.4;
  }
}

select {
  position: relative;
  z-index: 1;
  border: 1px solid #999999;
  box-sizing: border-box;
  color: #000;
  width: 450px;
  padding: 0 10px;
  border-radius: 1px;
  background-color: white;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
@media only screen and (max-width: 380px) {
  select {
    width: 100%;
    padding: 0 10px;
  }
}

select::-ms-expand {
  display: none;
}

/*  img
---------------------------------------------------------------*/
img {
  border: none;
}

/*  cf
---------------------------------------------------------------*/
/* .〇〇:after {
    content: '';
    display: table;
    clear: both;
} */
/*  align
---------------------------------------------------------------*/
.center {
  text-align: center !important;
}

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

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

/*  ul
---------------------------------------------------------------*/
li {
  list-style-type: none;
}

/*  font
---------------------------------------------------------------*/
:root {
  --max-size: 1.66rem;
  --base-size: 1.4rem;
  --slide-tb: 120vw;
  --slide-mb: 150vw;
  --land-mb: 80vw;
}

.font {
  font-size: calc(var(--base-size) * 1.9);
}

.red {
  color: #e60012;
}

/*==========================================================*/
/*==========================================================*/
/*==========================================================*/
#wrap {
  position: relative;
  z-index: 91;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.inner1100 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.inner1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.innerDX900{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 6.25% 0px;
    box-sizing: content-box;
}

.innerDX1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1100 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1300{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 6.25% 0px;
    box-sizing: content-box;
}

.innerDX1400 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

@media only screen and (max-width: 768px) {
  .inner,
  .inner1100,
  .inner1200,
  .inner1400 {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .spOnly {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
.default {
  padding: 140px 0;
}
@media only screen and (max-width: 768px) {
  .default {
    padding: 60px 0;
  }
}

.fit {
  width: 100%;
  height: auto;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9991;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #preloader #progressInner {
    width: 25rem;
  }
}
#preloader #progressInner #progressImgWrap {
  position: relative;
  -webkit-box-flex: 0;
  flex: 0 1 800px;
  overflow: hidden;
}
#preloader #progressInner #progressImgWrap span {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  transform: translate(100%, 0);
}
#preloader #progressInner #progressImgWrap #progressimgBox {
  z-index: 2;
  overflow: hidden;
  transition: all 0.5s ease-out 0.5s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#preloader #progressInner #progressImgWrap #progressimgBox img {
  width: 34rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  #preloader #progressInner #progressImgWrap #progressimgBox img {
    width: 100%;
  }
}
#preloader #progressInner #progressImgWrap .progressTxtWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 3rem auto 0;
  position: relative;
}
#preloader #progressInner #progressImgWrap .progressTxtWrap #progressTxt {
  font-size: 1.4rem;
  color: #aaa;
}
#preloader #progressInner #progressImgWrap .progressTxtWrap .yey {
  position: relative;
  margin-left: 1rem;
  padding-left: 1rem;
  font-size: 1.4rem;
  color: #333;
}
#preloader #progressInner #progressImgWrap .progressTxtWrap .yey:before {
  content: "";
  display: block;
  width: 1px;
  height: 21px;
  background-color: #9b9b9b;
  background-color: #d1d3d5;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(38deg);
  -ms-transform: translateY(-50%) rotate(38deg);
  transform: translateY(-50%) rotate(38deg);
}

#progressBar {
  width: 0;
  height: 1px;
  background-color: #333;
}

#progressTxt {
  text-align: center;
  margin-top: 5px;
  color: #333;
}

/*=========================================================*/
/*	common*/
/*=========================================================*/
.btnBox_small:nth-child(1) {
  margin-right: 5rem;
}
@media only screen and (max-width: 768px) {
  .btnBox_small:nth-child(1) {
    display: block;
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
.btnBox_small a {
  position: relative;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2rem 1rem 1rem 1rem;
  max-width: 25rem;
  color: #333;
  transition: all 0.6s 0s;
  background: linear-gradient(#262626, #262626) no-repeat 100% 100%;
  background-size: 0 1px;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media only screen and (max-width: 768px) {
  .btnBox_small a {
    font-size: 1.6rem;
    width: 90%;
    max-width: 90%;
  }
}
.btnBox_small a .circle {
  position: absolute;
  top: 48%;
  right: 2rem;
  transform: translate(0, -50%);
  transition: all 0.5s 0s;
}
.btnBox_small a .circle svg {
  fill: #333;
}
.btnBox_small a:hover {
  background-position: 100% 100%;
  background-size: 0% 1px;
}

/*=========================================================*/
/*	TOP*/
/*=========================================================*/
.top01 {
  padding-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .top01 {
    padding-bottom: 8rem;
  }
}
.top01 ._in .inin .c01 .d01 {
  width: 8rem;
  margin: 0 auto 3rem;
}
.top01 ._in .inin .c01 .d02 {
  text-align: center;
}
.top01 ._in .inin .c01 .d02 h2 {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 3.4rem;
  letter-spacing: 0rem;
  margin-bottom: 1.5rem;
  color: #3B5F03;
}
@media only screen and (max-width: 768px) {
  .top01 ._in .inin .c01 .d02 h2 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
.top01 ._in .inin .c01 .d02 .subT {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2rem;
  color: #558924;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.top01 ._in .inin .c02 {
  margin-top: 4rem;
}
.top01 ._in .inin .c02 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .top01 ._in .inin .c02 ul {
    grid-template-columns: 1fr;
  }
}
.top01 ._in .inin .c02 ul li:nth-child(1) a {
  background: #5084c0;
}
.top01 ._in .inin .c02 ul li:nth-child(2) a {
  background: #4aa868;
}
.top01 ._in .inin .c02 ul li:nth-child(3) a {
  background: #58aba9;
}
.top01 ._in .inin .c02 ul li:nth-child(4) a {
  background: #3cb1f0;
}
.top01 ._in .inin .c02 ul li:nth-child(5) a {
  background: #d4659c;
}
.top01 ._in .inin .c02 ul li:nth-child(6) a {
  background: #e3ac4d;
}
.top01 ._in .inin .c02 ul li:nth-child(7) a {
  background: #d6653f;
}
.top01 ._in .inin .c02 ul li:nth-child(8) a {
  background: #dfc800;
}
.top01 ._in .inin .c02 ul li a {
  display: block;
  height: 100%;
  border-radius: 3rem;
  padding: 4rem 3rem;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.top01 ._in .inin .c02 ul li a:hover {
  opacity: 0.7;
}
.top01 ._in .inin .c02 ul li a .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top01 ._in .inin .c02 ul li a .flexWrap .leftBox {
  position: relative;
  flex-basis: 8rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .top01 ._in .inin .c02 ul li a .flexWrap .leftBox {
    position: relative;
    -webkit-flex-basis: 10rem;
    flex-basis: 10rem;
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}
.top01 ._in .inin .c02 ul li a .flexWrap .rightBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding-left: 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .top01 ._in .inin .c02 ul li a .flexWrap .rightBox {
    padding: 0 0rem 0 0rem;
  }
}
.top01 ._in .inin .c02 ul li a .flexWrap .rightBox dl {
  color: #fff;
}
.top01 ._in .inin .c02 ul li a .flexWrap .rightBox dl dt {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 3rem;
  letter-spacing: 0rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .top01 ._in .inin .c02 ul li a .flexWrap .rightBox dl dt {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.top01 ._in .inin .c02 ul li a .flexWrap .rightBox dl dd {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem;
}

.top02 {
  position: relative;
  padding: 14rem 0;
}
@media only screen and (max-width: 768px) {
  .top02 {
    padding: 8rem 0;
  }
}
.top02 .movieIn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top02 .movieIn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background-size: 2px 2px;
  background-position: 0 0, 1px 1px;
  z-index: 1;
  opacity: 0.7;
}
.top02 .movieIn video {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background: url(../img/poster.jpg) no-repeat;
  background-size: cover;
}
.top02 .inin {
  position: relative;
  z-index: 2;
}
.top02 .inin .ininin .c01 {
  margin-bottom: 6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .top02 .inin .ininin .c01 {
    margin-bottom: 5rem;
  }
}
.top02 .inin .ininin .c01 .sub {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2rem;
  color: #558924;
  font-family: oswald, sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 3rem;
}
.top02 .inin .ininin .c01 h2 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 6rem;
  letter-spacing: 0rem;
  margin-bottom: 1.5rem;
  color: #222;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  .top02 .inin .ininin .c01 h2 {
    font-size: 2.6rem;
    line-height: 3.8rem;
  }
}
.top02 .inin .ininin .c02 .flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox {
  width: 48%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top02 .inin .ininin .c02 .flexWrap .flexBox {
    width: 100%;
  }
  .top02 .inin .ininin .c02 .flexWrap .flexBox:not(:first-child) {
    margin-top: 4rem;
  }
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlexImg {
  position: relative;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlexImg img {
  object-fit: cover;
  height: 100%;
  border-radius: 0 8rem 0 0;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex {
  position: absolute;
  bottom: 0;
  left: 0%;
  transform: translate(0%, 0);
  z-index: 2;
  width: 75%;
  margin-right: auto;
  border-radius: 0 8rem 0 0;
  background: #fff;
  padding: 6rem 4rem;
}
@media only screen and (max-width: 768px) {
  .top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex {
    width: 95%;
    border-radius: 0 8rem 0 0;
    padding: 4rem 3rem;
  }
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin h3 {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 0rem;
  margin-bottom: 3rem;
  color: #3B5F03;
}
@media only screen and (max-width: 768px) {
  .top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin h3 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin ul li {
  border-bottom: 1px dotted #666;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin ul li a {
  display: block;
  padding: 2.5rem 0;
  position: relative;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 2.6rem;
  transition: all 0.4s;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin ul li a::before {
  position: absolute;
  z-index: 2;
  display: block;
  background: #3B5F03;
  content: "";
  right: 1.2rem;
  top: 37%;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  transition: all 0.4s ease-in 0s;
  opacity: 0;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin ul li a::after {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  right: 20px;
  top: 45%;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.12s ease-in 0s;
  border-top: 2px solid #558924;
  border-right: 2px solid #558924;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin ul li a:hover {
  color: #3B5F03;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin ul li a:hover::before {
  opacity: 1;
}
.top02 .inin .ininin .c02 .flexWrap .flexBox .inFlex .inininin ul li a:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.topNewsWrap {
  margin: 4rem 0 0;
  padding: 10rem 0 7rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap {
    padding: 2rem 0 4rem;
  }
}
.topNewsWrap .bgTTT {
  color: #f6f6f6;
  position: absolute;
  top: 0rem;
  right: 6rem;
  font-size: 11.8rem;
  font-weight: 800;
  line-height: 14.8rem;
  color: #f6f6f6;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .bgTTT {
    font-size: 6.8rem;
    font-weight: bold;
    line-height: 6rem;
  }
}
.topNewsWrap .flexWrap {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .flexWrap {
    display: block;
  }
}
.topNewsWrap .flexWrap .titleBox {
  -webkit-flex-basis: 28rem;
  flex-basis: 28rem;
  margin-right: 5rem;
  margin-bottom: 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .flexWrap .titleBox {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
.topNewsWrap .flexWrap .titleBox .hishi {
  position: relative;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .flexWrap .titleBox .hishi {
    margin-bottom: 4rem;
  }
}
.topNewsWrap .flexWrap .titleBox .hishi .bgNews {
  top: 0;
  left: 0;
  color: #558924;
  font-family: lakeside, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.8rem;
  line-height: 3rem;
  letter-spacing: 0.2rem;
}
.topNewsWrap .flexWrap .titleBox .hishi .maing {
  position: relative;
  z-index: 2;
}
.topNewsWrap .flexWrap .titleBox h2 {
  font-size: 5.4rem;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .topNewsWrap .flexWrap .titleBox h2 {
    font-size: 3.4rem;
    line-height: 5rem;
    margin-top: 1rem;
  }
}
.topNewsWrap .flexWrap .titleBox .sub {
  position: relative;
  font-size: 1.7rem;
}
.topNewsWrap .flexWrap .mainNewsBox {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
}
.topNewsWrap .flexWrap .mainNewsBox .topNewsContainer {
  margin-bottom: 3rem;
}
.topNewsWrap .btnWrap {
  display: flex;
}
.topNewsWrap .btnWrap ._box {
  width: 20rem;
}

.topNewsContainer {
  position: relative;
  z-index: 1;
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li {
  border-bottom: 1px solid #ddd;
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li a {
  width: 100%;
  padding: 4rem 0;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  color: #262626;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .all_l_wrap_s .tabBlockIn ul li a {
    display: block;
    padding: 2rem 0;
  }
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li a:before {
  content: "›";
  position: absolute;
  top: 4.6rem;
  right: 0;
  color: #000;
  font-family: ltc-goudy-oldstyle-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
  line-height: 0.6;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .all_l_wrap_s .tabBlockIn ul li a:before {
    top: auto;
    bottom: 4.2rem;
  }
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_header {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_header .top_news_date {
  display: table;
  color: #558924;
  font-size: 1.4rem;
  font-weight: 400;
  margin-right: 3rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_header .top_news_date {
    font-size: 1.8rem;
    margin-right: 1rem;
    margin-bottom: 0px;
    padding-left: 0;
  }
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_header .top_news_tag {
  font-size: 1.2rem;
  margin-right: 3rem;
  background: #3e3e3e;
  color: #fff;
  padding: 0.5rem 3rem;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_header .top_news_tag {
    letter-spacing: 0em;
  }
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_title {
  width: calc(100% - 200px);
  padding-right: 15px;
  padding-bottom: 0.1em;
  overflow: hidden;
  font-size: 1.6rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_title {
    width: auto;
    font-size: 1.6rem;
  }
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li a .top_news_item_title span {
  background: linear-gradient(#262626, #262626) no-repeat 100% 100%;
  background-size: 0 1px;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.topNewsContainer .all_l_wrap_s .tabBlockIn ul li a:hover .top_news_item_title span {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.topNewsContainer .all_l_wrap_s .top_news_link {
  margin-top: 40px;
  margin-left: auto;
  padding-left: 24px;
  position: relative;
  float: right;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .all_l_wrap_s .top_news_link {
    margin-top: 2rem;
  }
}
.topNewsContainer .all_l_wrap_s .top_news_link a {
  position: relative;
  z-index: 1;
  display: inline-block;
  border-radius: 100px;
  color: #333;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0.5rem 0 0.8rem;
}
.topNewsContainer .all_l_wrap_s .top_news_link a:before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 100px;
  background-color: #efefef;
  position: absolute;
  top: 0;
  left: -1.5rem;
  z-index: 0;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-property: width, box-shadow, background-color;
}
.topNewsContainer .all_l_wrap_s .top_news_link a span {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg, #bfbfbf, #bfbfbf);
  transition: background-size 380ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 100% 1px;
  background-position: 0 100%;
  padding-bottom: 0.3rem;
}
.topNewsContainer .all_l_wrap_s .top_news_link a:hover {
  color: #fff;
}
.topNewsContainer .all_l_wrap_s .top_news_link a:hover:before {
  width: 125%;
  width: calc(100% + 3rem);
  background-color: #333;
}
.topNewsContainer .tabWrap .tabBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0px 0rem;
  /* -webkit-box-pack: center; */
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBtn {
    margin: 0 0px 0rem;
    overflow-x: scroll;
    -webkit-justify-content: initial;
    -moz-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
  }
}
.topNewsContainer .tabWrap .tabBtn li {
  display: inline-block;
  line-height: 1;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBtn li {
    width: 35%;
    flex-shrink: 0;
  }
}
.topNewsContainer .tabWrap .tabBtn li a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 3rem 0px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBtn li a {
    width: 100%;
    padding: 2rem 0px;
    font-size: 1.5rem;
  }
}
.topNewsContainer .tabWrap .tabBtn li a:before {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0.3rem;
  background: #eceaf1;
}
.topNewsContainer .tabWrap .tabBtn li a.is_active {
  background: #f4fff5;
  color: #333;
  font-weight: bold;
}
.topNewsContainer .tabWrap .tabBtn li a.is_active:before {
  height: 0.3rem;
  background: #867a73;
}
.topNewsContainer .tabWrap .tabBtn li a.is_active:after {
  content: " ";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translate3d(-50%, 0px, 0px);
  width: 0;
  height: 0;
  border: none;
  border-top: 0.8rem solid #867a73;
  border-right: 0.8rem solid transparent;
  border-left: 0.8rem solid transparent;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBtn li a.is_active:after {
    display: none;
  }
}
.topNewsContainer .tabWrap .tabBtn li:first-child a {
  border-right: none;
}
.topNewsContainer .tabWrap .tabBlockIn {
  margin: 0 auto;
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .w950 {
    padding: 0;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab-content {
  display: none;
}
.topNewsContainer .tabWrap .tabBlockIn .tab-content.is_show {
  display: block;
}
.topNewsContainer .tabWrap .tabBlockIn .ininin {
  padding: 5rem 5rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .ininin {
    padding: 4rem 3rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .ininin h3 {
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
}
.topNewsContainer .tabWrap .tabBlockIn .ininin dl {
  position: relative;
  display: flex;
  font-size: 1.6rem;
  line-height: 3rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .ininin dl {
    display: block;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .ininin dl dt {
  border-top: solid 1px #111;
  -webkit-flex-basis: 20rem;
  flex-basis: 20rem;
  margin-right: 2rem;
  margin-bottom: 0;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .ininin dl dt {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    margin-right: 0rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .ininin dl dd {
  border-top: solid 1px #f4f4f4;
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  text-align: left;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .ininin dl dd {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 {
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 {
    position: relative;
    max-height: auto;
    height: auto;
    background: none;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn {
  position: relative;
  width: 100rem;
  height: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .textAccent {
  position: absolute;
  right: 5rem;
  bottom: 0;
  width: 48rem;
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts {
  position: absolute;
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block {
  position: relative;
  z-index: 1;
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block .name {
  color: #fff;
  background: #867a73;
  font-size: 2rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0rem;
  width: 27rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block .name {
    width: 17rem;
    font-size: 1.6rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block .name a {
  color: #fff;
  display: block;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block .name a {
    width: 17rem;
    font-size: 1.6rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul {
    display: none !important;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul li:not(:last-child) {
  margin-right: 3rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul li:not(:last-child) {
    margin-right: 1rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul li a {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  padding-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul li a {
    font-size: 1.5rem;
    pointer-events: none;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate3d(0%, -50%, 0) rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.16rem solid #666666;
  border-right: 0.16rem solid #666666;
  z-index: 1;
  transition: transform 0.5s;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul li a:before {
    display: none;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul li a:after {
  content: "";
  background: #666666;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts .block ul li a:after {
    height: 1px;
    display: none;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.eye {
  top: 6rem;
  left: 72rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.eye {
    top: 2rem;
    right: 1rem;
    left: auto;
  }
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.eye ul {
    display: block;
    margin-left: 2rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.eye .svg {
  width: 13rem;
  position: absolute;
  top: 1.8rem;
  left: -12rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.eye .svg {
    width: 7rem;
    position: absolute;
    top: 2.6rem;
    left: -5rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hana {
  top: 22rem;
  left: 72rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hana {
    top: 13rem;
    right: 1rem;
    left: auto;
  }
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hana ul {
    display: block;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hana .svg {
  width: 20rem;
  position: absolute;
  top: 1.8rem;
  left: -19rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hana .svg {
    width: 14rem;
    position: absolute;
    top: 1rem;
    left: -8.5rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.rinkaku {
  top: 37rem;
  left: 72rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.rinkaku {
    top: 24rem;
    right: 1rem;
    left: auto;
  }
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.rinkaku ul {
    display: block;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.rinkaku .svg {
  width: 10rem;
  position: absolute;
  top: -3rem;
  left: -9rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.rinkaku .svg {
    width: 6rem;
    position: absolute;
    top: -3rem;
    left: -4rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hada {
  top: 13rem;
  left: 1rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hada {
    top: 3rem;
    left: 1rem;
  }
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hada ul {
    display: block;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hada .svg {
  width: 14rem;
  position: absolute;
  top: 2rem;
  right: -13rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.hada .svg {
    width: 6rem;
    position: absolute;
    top: 3rem;
    right: -4rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.body {
  top: 29rem;
  left: 1rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.body {
    top: 16rem;
    left: 1rem;
  }
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.body ul {
    display: block;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.body .svg {
  width: 34rem;
  position: absolute;
  top: 2rem;
  right: -33rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.body .svg {
    width: 15rem;
    position: absolute;
    top: 2rem;
    right: -13rem;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.other {
  top: 45rem;
  left: 1rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.other {
    top: 27rem;
    left: 1rem;
  }
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.other ul {
    display: block;
  }
}
.topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.other .svg {
  width: 34rem;
  position: absolute;
  top: 2rem;
  right: -33rem;
}
@media only screen and (max-width: 768px) {
  .topNewsContainer .tabWrap .tabBlockIn .tab_01 .tabIn .parts.other .svg {
    width: 7rem;
    position: absolute;
    top: 2.6rem;
    left: -5rem;
  }
}

.top03 {
  background: #f2f2e5;
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .top03 {
    padding: 8rem 0;
  }
}
.top03 ._in .inin .flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top03 ._in .inin .flexWrap .flexBox {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .top03 ._in .inin .flexWrap .flexBox {
    width: 100%;
  }
}
.top03 ._in .inin .flexWrap .flexBox:first-child {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 2rem 0 0 2rem;
}
@media only screen and (max-width: 768px) {
  .top03 ._in .inin .flexWrap .flexBox:first-child {
    border-radius: 2rem 2rem 0 0;
  }
}
.top03 ._in .inin .flexWrap .flexBox:first-child video {
  right: 0;
  top: 50%;
  width: 170%;
  height: 100%;
}
.top03 ._in .inin .flexWrap .flexBox:last-child {
  background: url(../img/top04.png) no-repeat center/cover;
  border-radius: 0 2rem 2rem 0;
  padding: 4rem 4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .top03 ._in .inin .flexWrap .flexBox:last-child {
    border-radius: 0 0 2rem 2rem;
  }
}
.top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .d01 {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .d01 {
    color: #fff;
    text-align: center;
  }
}
.top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .d01 h3 {
  letter-spacing: 0rem;
  margin-bottom: 3rem;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11rem;
  line-height: 8rem;
  padding-bottom: 3rem;
  background: url(../img/img_waveline_wt.png) left bottom/auto 8px repeat-x;
}
@media only screen and (max-width: 768px) {
  .top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .d01 h3 {
    font-size: 4.6rem;
    line-height: 4rem;
  }
}
.top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .d02 {
  text-align: center;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 4rem;
  letter-spacing: 0rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .d02 {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .subp {
  text-align: center;
  color: #fff;
  margin-bottom: 5rem;
}
.top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .bbb {
  text-align: center;
}
.top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .bbb a {
  padding: 2rem 5rem 2rem 8rem;
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #3B5F03;
  text-align: center;
  background: #fff;
  border-radius: 5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2rem;
}
.top03 ._in .inin .flexWrap .flexBox:last-child .inFlexBox .bbb a span {
  background: url(../img/icon-arowww.svg) no-repeat center right 0px/23px auto;
  display: inline-block;
  padding: 0 4rem 0 0;
}

.top04 {
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .top04 {
    padding: 8rem 0;
  }
}
.top04 .inin .d01 h2 {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 0rem;
  margin-bottom: 3rem;
  padding-left: 5rem;
  background: url(../img/top_001_02.png) no-repeat center left;
  background-size: 4rem;
}
@media only screen and (max-width: 768px) {
  .top04 .inin .d01 h2 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
.top04 .inin .d02 {
  text-align: center;
  border: 1px solid #ddd;
  padding: 3rem 4rem;
  border-radius: 2rem;
}
@media only screen and (max-width: 768px) {
  .top04 .inin .d02 {
    text-align: center;
    border: 1px solid #ddd;
    padding: 3rem 1rem;
    border-radius: 2rem;
  }
}
.top04 .inin .d02 ul.u01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top04 .inin .d02 ul.u01 li {
  position: relative;
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .top04 .inin .d02 ul.u01 li {
    width: 48%;
  }
  .top04 .inin .d02 ul.u01 li:nth-child(1), .top04 .inin .d02 ul.u01 li:nth-child(2) {
    margin-bottom: 3rem;
  }
  .top04 .inin .d02 ul.u01 li:nth-child(3)::before {
    display: none;
  }
}
.top04 .inin .d02 ul.u01 li:not(:first-child) {
  position: relative;
  padding-left: 2rem;
}
.top04 .inin .d02 ul.u01 li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0;
  width: 1px;
  height: 100%;
  background: #ddd;
}
.top04 .inin .d02 ul.u01 li a {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.6rem;
  transition: all 0.4s;
}
.top04 .inin .d02 ul.u01 li a i {
  font-size: 2.4rem;
  padding-right: 1rem;
}
.top04 .inin .d02 ul.u01 li a:hover {
  color: #558924;
}
.top04 .inin .d02 ul.u02 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  margin-top: 3rem;
  padding-top: 3rem;
}
.top04 .inin .d02 ul.u02 li {
  position: relative;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .top04 .inin .d02 ul.u02 li {
    width: 48%;
  }
}
.top04 .inin .d02 ul.u02 li:not(:first-child) {
  position: relative;
  padding-left: 2rem;
}
.top04 .inin .d02 ul.u02 li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0;
  width: 1px;
  height: 100%;
  background: #ccc;
}
.top04 .inin .d02 ul.u02 li a {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.6rem;
  transition: all 0.4s;
}
.top04 .inin .d02 ul.u02 li a i {
  font-size: 2.4rem;
  padding-right: 1rem;
}
.top04 .inin .d02 ul.u02 li a:hover {
  color: #558924;
}

.topWrap02 .c01 {
  position: relative;
  z-index: 2;
  background: url(../img/top_bgImg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 32rem 0;
}
@media only screen and (max-width: 768px) {
  .topWrap02 .c01 {
    background: url(../img/top_bgImg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: initial;
    padding: 12rem 0;
  }
}

.top05 {
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .top05 {
    padding: 8rem 0;
  }
}
.top05 .d01 {
  text-align: center;
}
.top05 .d01 .subT {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 3rem;
  letter-spacing: 0rem;
  color: #558924;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .top05 .d01 .subT {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }
}
.top05 .d01 h2 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 0rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .top05 .d01 h2 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
.top05 .d02 {
  margin-top: 6rem;
}
@media only screen and (max-width: 768px) {
  .top05 .d02 {
    margin-top: 3rem;
  }
}
.top05 .d02 ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top05 .d02 ul li {
  width: 32%;
}
@media only screen and (max-width: 768px) {
  .top05 .d02 ul li {
    width: 100%;
  }
  .top05 .d02 ul li:not(:first-child) {
    margin-top: 2rem;
  }
}
.top05 .d02 ul li a {
  display: block;
  min-height: 12rem;
  position: relative;
  border: 1px solid #558924;
  border-left: 6px solid #558924;
  border-radius: 2rem;
  padding: 3rem 3rem;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 2.8rem;
  letter-spacing: 0rem;
  color: #558924;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  transition: all 0.4s;
}
@media only screen and (max-width: 768px) {
  .top05 .d02 ul li a {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.top05 .d02 ul li a::after {
  content: "";
  position: absolute;
  display: block;
  top: 4.5rem;
  right: 2rem;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  background: url(../img/icon-arowww.svg) no-repeat center right;
}
.top05 .d02 ul li a span {
  display: inline-block;
}
.top05 .d02 ul li a:hover {
  background: #e6f5e6;
}

/*=========================================================*/
/*	mainvisual*/
/*=========================================================*/
#mainvisual {
  position: relative;
  z-index: 0;
  background: #fff;
  padding: 16rem 2rem 2rem 2rem;
}
@media only screen and (max-width: 768px) {
  #mainvisual {
    z-index: 0;
    padding: 1rem;
  }
}
#mainvisual::before {
  content: "";
  background: url(../img/line_top.jpg) repeat-x top center;
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 1rem;
}

.mainVisual_onMenuWrap {
  position: absolute;
  bottom: 0;
  right: 0%;
  z-index: 2;
  transform: translate(0%, 0);
  background: #fff;
  border-radius: 3rem 0 0 0;
  padding: 4rem 5rem;
}
@media only screen and (max-width: 768px) {
  .mainVisual_onMenuWrap {
    width: 80vw;
    padding: 2rem 1.5rem 1rem;
  }
}
.mainVisual_onMenuWrap .inin .t01 {
  display: block;
  margin-bottom: 1rem;
  margin-inline: auto;
  max-width: 26.4rem;
}
.mainVisual_onMenuWrap .inin .t01 img {
  width: 100%;
}
.mainVisual_onMenuWrap .inin .t02 ul li:not(:first-child) {
  border-top: 1px solid #aaa;
}
.mainVisual_onMenuWrap .inin .t02 ul li a {
  display: block;
  transition: all 0.4s;
}
.mainVisual_onMenuWrap .inin .t02 ul li a .inBBBA {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 4rem;
  border-radius: 6rem;
  padding: 2.5rem 8rem 2.5rem 2rem;
  color: #333;
  transition: all 0.4s;
}
@media only screen and (max-width: 768px) {
  .mainVisual_onMenuWrap .inin .t02 ul li a .inBBBA {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 3rem;
    padding: 2rem 8rem 2rem 1rem;
  }
}
.mainVisual_onMenuWrap .inin .t02 ul li a .inBBBA::before {
  content: "";
  background: #fff;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .mainVisual_onMenuWrap .inin .t02 ul li a .inBBBA::before {
    width: 4rem;
    height: 4rem;
  }
}
.mainVisual_onMenuWrap .inin .t02 ul li a .inBBBA::after {
  content: "";
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  margin-left: 0rem;
  transition: 0.3s;
  z-index: 1;
  -webkit-transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .mainVisual_onMenuWrap .inin .t02 ul li a .inBBBA::after {
    width: 4rem;
    height: 4rem;
  }
}
.mainVisual_onMenuWrap .inin .t02 ul li a .inBBBA._01::after {
  border: solid 1px #3B5F03;
  background: url(../img/icon_arrow_green.svg) no-repeat center;
}
.mainVisual_onMenuWrap .inin .t02 ul li a:hover {
  transform: translate3d(1rem, 0, 0);
}
.mainVisual_onMenuWrap .inin .t02 ul li a:hover .rightB .inBBBA::after {
  background: #3B5F03 url(../img/icon_arrow_green.svg) no-repeat center;
}
.mainVisual_onMenuWrap .inin .t02 ul li a:hover .inBBBA {
  color: #3B5F03;
}

#background {
  background-color: #fff;
  border-radius: 10rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #background {
    background-color: #fff;
    border-radius: 6rem;
    overflow: hidden;
  }
}
#background #mainvisualImg {
  position: relative;
  z-index: 2;
  background: url(../img/poster.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  transition: all 1.8s;
}
#background .movieMain {
  position: relative;
  z-index: 2;
  height: calc(100vh - 18rem);
  min-height: 100rem;
}
@media only screen and (max-width: 768px) {
  #background .movieMain {
    min-height: auto;
  }
}
#background .movieMain .svg-animation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  #background .movieMain .svg-animation {
    overflow: hidden;
  }
  #background .movieMain .svg-animation:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: transparent none repeat 0 0;
  }
}
#background .movieMain .svg-animation #js_video2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#background .bgSlideTop00 {
  background: #000;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #background .bgSlideTop00 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100% - 0px);
    min-height: 80vh;
  }
}
#background .centerTextWrap {
  position: absolute;
  z-index: 23;
  bottom: 16rem;
  left: 16rem;
  transform: translate(0, 0%);
}
@media only screen and (max-width: 768px) {
  #background .centerTextWrap {
    top: 20%;
    left: 5rem;
    bottom: auto;
    width: auto;
  }
}
#background .centerTextWrap .inin .sub {
  font-size: 8rem;
  line-height: 10.6rem;
  color: #fff;
  font-family: "ff-providence-sans-web-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  #background .centerTextWrap .inin .sub {
    font-size: 4rem;
    line-height: 5.6rem;
    margin-bottom: 3rem;
    /* width: 10rem; */
  }
}
#background .centerTextWrap .inin .mainT {
  font-size: 3rem;
  line-height: 4rem;
  letter-spacing: 0.3rem;
  /* position: absolute; */
  bottom: 4rem;
  right: 0;
  color: #fff;
  font-family: "bokutoh-rera", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  #background .centerTextWrap .inin .mainT {
    font-size: 2rem;
    line-height: 3rem;
    bottom: 25rem;
    right: -1rem;
  }
}

.main_visual__play {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  text-align: center;
  z-index: 23;
}
@media only screen and (max-width: 768px) {
  .main_visual__play {
    top: auto;
    right: 3rem;
    bottom: 3rem;
  }
}
.main_visual__play a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto 0px;
  width: 42rem;
}
@media only screen and (max-width: 768px) {
  .main_visual__play a {
    width: 32rem;
  }
}
.main_visual__play a img {
  display: block;
  width: 100%;
}

#movie {
  width: 80%;
  height: auto;
  margin: 0px auto;
}
@media only screen and (max-width: 768px) {
  #movie {
    width: 90%;
  }
}
#movie video {
  width: 100%;
  height: auto;
}

.lity-content:after {
  box-shadow: 0 0 0px rgba(0, 0, 0, 0);
}

.lity_hide {
  max-height: 1000px;
  display: none;
}
.lity_hide .movie_popup__inner {
  width: 100%;
  max-width: 1160px;
  margin: auto;
  padding: 0 40px;
}

.lity-content .lity_hide {
  display: block;
}

.mainvisualBanner {
  position: absolute;
  right: 3.5rem;
  bottom: 2rem;
  z-index: 23;
}
@media only screen and (max-width: 768px) {
  .mainvisualBanner {
    width: 24rem;
    bottom: 3rem;
  }
}
.mainvisualBanner a {
  display: block;
  transition: all 0.4s;
}
.mainvisualBanner a:hover {
  opacity: 0.7;
}

.snsLink {
  position: absolute;
  left: 2.8rem;
  bottom: 15rem;
  z-index: 23;
}
@media only screen and (max-width: 768px) {
  .snsLink {
    width: 24rem;
    bottom: 3rem;
  }
}
.snsLink a {
  display: block;
  font-size: 3rem;
  color: #0080cc;
}
@media only screen and (max-width: 768px) {
  .snsLink a {
    color: #fff;
  }
}

.kv_scroll {
  width: 1px;
  height: 70px;
  position: absolute;
  left: 4rem;
  bottom: 0rem;
  z-index: 10;
  background-color: #eee;
}
@media only screen and (max-width: 768px) {
  .kv_scroll {
    display: none;
    bottom: 0%;
  }
}
.kv_scroll ._pointer {
  -webkit-animation: moveScrollPointer 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: moveScrollPointer 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.kv_scroll ._pointer:before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  border-radius: 50%;
  background-color: #558924;
}
.kv_scroll ._text {
  position: absolute;
  top: -85px;
  left: -7px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .kv_scroll ._text {
    bottom: -20px;
    color: #f00;
  }
}

@-webkit-keyframes moveScrollPointer {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
}
@keyframes moveScrollPointer {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
}
@-webkit-keyframes scrollPointerInOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes scrollPointerInOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes moveScrollPointer {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 70px, 0);
    transform: translate3d(0, 70px, 0);
  }
}
@keyframes moveScrollPointer {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 70px, 0);
    transform: translate3d(0, 70px, 0);
  }
}
@-webkit-keyframes scrollPointerInOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes scrollPointerInOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
.loadFin .inner_content .centerI .bgText span {
  transform: translate(0px, 0px);
  opacity: 1;
}
.loadFin .bannerOn {
  transform: translate(0px, -50%);
  opacity: 1;
}

/*=========================================================*/
/*	HEADER*/
/*=========================================================*/
.header_TOP#header02 {
  position: relative;
  padding-top: 0rem;
}
.header_TOP#header02::before {
  display: none;
}
.header_TOP#header02 #head_LogoA {
  top: 0rem;
}

#header02 {
  position: relative;
  padding-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  #header02 {
    padding-top: 0.5rem;
  }
}
#header02::before {
  content: "";
  background: url(../img/head_line_texture01.png) repeat top left;
  position: absolute;
  top: 0rem;
  left: 0rem;
  z-index: 11;
  width: 100%;
  height: 0.5rem;
}
@media only screen and (max-width: 768px) {
  #header02::before {
    height: 0.5rem;
  }
}
#header02 #head_LogoA {
  top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  #header02 #head_LogoA {
    top: 0.5rem;
  }
}
#header02.topHeader {
  position: fixed;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 2rem rgba(34, 34, 34, 0.2);
  box-shadow: 0 0 2rem rgba(34, 34, 34, 0.2);
}
@media only screen and (max-width: 768px) {
  #header02.topHeader {
    position: static;
  }
}
#header02 .headerBottom {
  position: relative;
  margin-top: 2rem;
  margin-right: 4.5rem;
  margin-left: 0rem;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width: 768px) {
  #header02 .headerBottom {
    display: none;
    margin-top: 0;
    padding: 0 0 0 0px;
  }
}
#header02 .headerBottom #head_Logo {
  margin-top: 0rem;
  margin-left: 2rem;
}
@media only screen and (max-width: 768px) {
  #header02 .headerBottom #head_Logo {
    margin-top: 0rem;
    margin-left: 0rem;
    text-align: center;
  }
}
#header02 .headerBottom .navContact {
  margin-left: auto;
}
#header02.secHeader {
  position: absolute;
}
#header02.secHeader .headerBottom #head_Logo {
  margin-top: 0;
}

#head_LogoA {
  position: absolute;
  top: 1rem;
  left: 0%;
  z-index: 1;
  transform: translate(0%, 0);
}
@media only screen and (max-width: 768px) {
  #head_LogoA {
    z-index: 3;
  }
}
#head_LogoA a {
  display: block;
  width: 34rem;
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  #head_LogoA a {
    width: 25rem;
  }
}

header {
  top: 0;
  z-index: 88;
  transition: 0.35s 0.7s;
  width: 100%;
  padding: 0 0px 0 0px;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
@media only screen and (max-width: 768px) {
  header {
    z-index: 20;
  }
}
header .commonOuter #head_Logo a {
  position: relative;
}
header .commonOuter #head_Logo a span {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
header .commonOuter #head_Logo a span.a02 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo a span.a01 {
    opacity: 1;
  }
  header .commonOuter #head_Logo a span.a02 {
    opacity: 1;
  }
  header .commonOuter #head_Logo a span img {
    width: 100%;
  }
}

header.active_header,
.sec header {
  transition: 0.01s 0s;
}

header .commonOuter {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  header .commonOuter {
    height: 9rem;
  }
}

header.secHeader .commonOuter {
  height: auto;
}
@media only screen and (max-width: 768px) {
  header.secHeader .commonOuter {
    height: 9rem;
  }
}

header .commonOuter:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo {
    position: relative;
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}
header .commonOuter #head_Logo a {
  display: block;
  position: relative;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 24rem;
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo a {
    top: 0%;
    transform: translate3d(0, 0%, 0);
  }
}
@media only screen and (max-width: 768px) {
  header .commonOuter #head_Logo a {
    display: block;
    width: 17rem;
    margin-left: 2rem;
  }
}

header .commonOuter #head_Logo a {
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

header .commonOuter #head_Logo a:hover {
  opacity: 0.7;
}

header .commonOuter nav {
  display: block;
  height: 100%;
}

header .commonOuter nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}

header .commonOuter nav ul li {
  height: 100%;
}

.headerTopSecondWrap {
  position: relative;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-right: 4.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .headerTopSecondWrap {
    display: none;
  }
}
.headerTopSecondWrap .iconContact a {
  background: #0080cc;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.6rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.headerTopSecondWrap .iconContact a:hover {
  opacity: 0.7;
}
.headerTopSecondWrap .inSecondBody .inA .flexW {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 8rem;
  border: 2px solid #0d98d7;
  background: #0d98d7;
  overflow: hidden;
}
.headerTopSecondWrap .inSecondBody .inA .flexW .flexL {
  background: #0d98d7;
  font-size: 2.6rem;
  color: #fff;
  padding: 1rem 4rem 1rem 4rem;
  height: 100%;
}
.headerTopSecondWrap .inSecondBody .inA .flexW .flexR {
  background: #fff;
  padding: 1rem 4rem 1rem 3rem;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2.6rem;
}
.headerTopSecondWrap .inSecondBody .inA .flexW .flexR dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.headerTopSecondWrap .inSecondBody .inA .flexW .flexR dl dt {
  margin-right: 1rem;
}

.headertoptoptop {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .headertoptoptop {
    display: none;
  }
}
.headertoptoptop .wBtnWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 1rem;
}
.headertoptoptop .wBtnWrap .headerTopTell a {
  display: inline-block;
  font-size: 2.4rem;
  font-family: oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
}
.headertoptoptop .wBtnWrap .btnBox {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .headertoptoptop .wBtnWrap .btnBox {
    width: 100%;
  }
}
.headertoptoptop .wBtnWrap .btnBox:nth-child(1) a {
  background: #0080cc;
  border-radius: 0 0 1rem 1rem;
}
.headertoptoptop .wBtnWrap .btnBox:nth-child(2) a {
  background: #f58296;
  border-radius: 0 0 1rem 1rem;
}
.headertoptoptop .wBtnWrap .btnBox a {
  color: #fff;
  height: 8rem;
  padding: 0 3rem;
  display: block;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.6rem;
  text-align: center;
  white-space: nowrap;
}
.headertoptoptop .wBtnWrap .btnBox a dl dt i {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.headertoptoptop .wBtnWrap .btnBox a dl dt .imgB {
  width: 2.6rem;
  margin: 0 auto;
}
.headertoptoptop .headmaruBtn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.headertoptoptop .headmaruBtn a {
  display: inline-block;
  border-radius: 3rem;
  border: 1px solid #333;
  padding: 0.3rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.6rem;
}
.headertoptoptop .headerSecTop2 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.headertoptoptop .headerSecTop2 ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.headertoptoptop .headerSecTop2 ul li {
  text-align: center;
}
.headertoptoptop .headerSecTop2 ul li:not(:first-child) {
  border-left: 1px solid #333;
}
@media only screen and (max-width: 768px) {
  .headertoptoptop .headerSecTop2 ul li {
    width: 100%;
  }
}
.headertoptoptop .headerSecTop2 ul li a {
  padding: 0rem 2rem 0rem 2rem;
  display: inline-block;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.6rem;
  position: relative;
}

.headerSecTop {
  margin-top: 0.6rem;
  margin-right: 2rem;
}
.headerSecTop ul {
  display: -webkit-flex;
  display: flex;
}
.headerSecTop ul li {
  border-right: 1px solid #222;
}
.headerSecTop ul li:first-child {
  border-left: 1px solid #222;
}
.headerSecTop ul li a {
  padding: 0 1rem;
  position: relative;
  font-size: 1.4rem;
  color: #333;
  display: block;
  overflow: hidden;
}

.heafRight {
  margin-top: 0rem !important;
  margin-left: auto !important;
  display: -webkit-flex;
  display: flex;
  border-radius: 8rem;
}

.headTop {
  position: relative;
  margin-left: auto;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0rem;
}
.headTop .plink {
  position: static;
}
.headTop .plink:not(:last-child) {
  margin-right: 3rem;
  padding-right: 3rem;
}
.headTop .plink:not(:last-child)::after {
  content: "";
  background: #333;
  position: absolute;
  top: 34%;
  right: 0rem;
  transform: translate(0, -50%);
  width: 1px;
  height: 60%;
  display: none;
}
.headTop .plink a {
  position: relative;
  font-size: 1.3rem;
  color: #333;
  display: block;
  overflow: hidden;
  padding: 1rem 0 3rem 0;
}
.headTop .plink a .iii {
  text-align: center;
}
.headTop .plink a span {
  display: block;
  text-shadow: 0 0 6px #fff;
  transition: all 0.3s;
}
.headTop .plink a span.en {
  text-align: center;
  color: #333;
  font-size: 1.4rem;
  letter-spacing: 0rem;
  font-family: oswald, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  color: #0080cc;
}
.headTop .plink a span.iii {
  font-size: 1.6rem;
  font-weight: 600;
}
.headTop .plink a:hover:before {
  transform: translate3d(0, 0px, 0);
}
.headTop .plink a:hover span {
  color: #558924;
}
.headTop .contactB {
  padding-right: 0px;
}
.headTop .contactB a {
  display: block;
  background: #558924;
  font-size: 1.4rem;
  color: #fff;
  padding: 2.5rem 3rem;
  opacity: 1;
  transition: all 0.4s;
}
.headTop .contactB a:hover {
  opacity: 0.7;
}
.headTop .contactB a span {
  display: inline-block;
  padding-right: 1rem;
}
.headTop .iconMenuSNS01 {
  margin-right: 30px;
  margin-left: 10px;
}
.headTop .iconMenuSNS01 a {
  font-size: 25px;
  color: #fff;
}
.headTop .iconMenuSNS01 a:before {
  display: none;
}

.headTopRight {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 2rem;
}
.headTopRight .btna {
  padding-left: 1.5rem;
}
.headTopRight .btna a {
  border-radius: 6rem;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3B5F03;
  background-size: 3.4rem;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}
@media only screen and (max-width: 768px) {
  .headTopRight .btna a {
    padding: 3rem 0;
    font-size: 2.2rem;
    background: none;
  }
}
.headTopRight .btna a span.entry_link_inner {
  display: inline-block;
  padding-left: min(44px, 2.2916666667vw);
  background: url(../img/icon-entry.svg) no-repeat center left/auto min(34px, 1.7708333333vw);
  line-height: 1.6;
  font-size: 3.6rem;
  font-family: var(--font-en);
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .headTopRight .btna a span.entry_link_inner {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .headTopRight .btna a span.entry_link_inner {
    padding-left: min(44px, 6.875vw);
    background: url(../img/icon-entry.svg) no-repeat center left/auto min(34px, 5.3125vw);
  }
}
.headTopRight .btna a .dasef {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: bold;
}

header .commonOuter nav ul li a {
  position: relative;
  display: flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 1.6rem;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  text-align: center;
  overflow: hidden;
}
header .commonOuter nav ul li a:before {
  content: "";
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate3d(0, 2px, 0);
  transition: all 0.2s ease-in-out 0s;
}
header .commonOuter nav ul li a div.ddd {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  min-width: 12rem;
}
header .commonOuter nav ul li a span.naviA {
  width: 100%;
  display: block;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
header .commonOuter nav ul li a span.naviA.en {
  position: relative;
  top: 0;
  left: 0;
}
header .commonOuter nav ul li a span.naviA.jp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0px, 0px);
  opacity: 0;
}
header .commonOuter nav ul li a:hover:before {
  transform: translate3d(0, 0px, 0);
}
header .commonOuter nav ul li a:hover .en {
  opacity: 0;
}
header .commonOuter nav ul li a:hover .jp {
  opacity: 1 !important;
}

header .commonOuter nav ul li a span {
  display: block;
}

header .commonOuter nav ul li a:hover:after {
  opacity: 1;
}

.secHeader {
  background: #fff;
}
.secHeader .headTop .plink a {
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  #spNavigation #navInner {
    z-index: 31;
  }
  #spNavigation .head {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 220;
    background: #444;
    display: table;
    padding: 8px 0 2px;
    -webkit-transform: translate3d(0%, 100%, 0);
    transform: translate3d(0%, 100%, 0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  #spNavigation .head.scrollActive {
    -webkit-transform: translate3d(0%, 0px, 0);
    transform: translate3d(0%, 0px, 0);
  }
  #spNavigation .head .cell {
    display: table-cell;
    vertical-align: bottom;
    width: 25%;
    height: 50px;
    text-align: center;
  }
  #spNavigation .head .cell#regist {
    display: table-cell;
    vertical-align: middle;
    width: 25%;
    height: 50px;
  }
  #spNavigation .head .cell a {
    display: block;
    color: #fff;
    padding: 4px 0;
  }
  /* text */
  #spNavigation .head .cell a .subIcon {
    padding: 0 3px;
    display: inline-block;
  }
  #spNavigation .head .cell a .subIcon .fa-home {
    padding: 0 0 3px 0;
    font-size: 28px;
  }
  #spNavigation .head .cell a .subIcon .fa-phone {
    padding: 0 0 3px 0;
    font-size: 28px;
  }
  #spNavigation .head .cell a .subIcon .fa-instagram {
    padding: 0 0 3px 0;
    font-size: 28px;
  }
  #spNavigation .head .cell a .subIcon .fa-envelope {
    padding: 0 0 6px 0;
    font-size: 24px;
  }
  /* text */
  #spNavigation .head .cell a .subList_text {
    font-size: 11px;
    font-weight: bold;
    display: block;
    letter-spacing: -0.06em;
    margin-right: -1px;
  }
  #spNavigation .head .cell a .subList_text:after {
    content: ".";
    width: 0;
    font-size: 0;
    color: transparent;
    margin-right: 1px;
  }
  #spNavigation .head .nav_btn {
    position: relative;
    display: table-cell;
  }
  /* button */
  #spNavigation .head .nav_btn .menuBtn {
    /* width: 50px; */
    padding: 0px 0px 0px 0;
    position: relative;
    top: 0px;
    right: 0px;
  }
  #spNavigation .head .nav_btn .menuBtn a.menu-trigger {
    vertical-align: middle;
  }
  #spNavigation .head .nav_btn .menu-trigger {
    position: relative;
    /* width: 24px; */
    /* height: 25px; */
    display: inline-block;
    width: 42px;
  }
  #spNavigation .head .nav_btn .menu-trigger div.menu {
    width: 34px;
    height: 25px;
    margin-bottom: 4px;
    position: relative;
  }
  #spNavigation .head .nav_btn .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }
  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(1) {
    top: 0;
    transition: all 0.3s;
  }
  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(2) {
    top: 9px;
    transition: all 0.3s;
  }
  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(3) {
    bottom: 4px;
    transition: all 0.3s;
  }
  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
  /*******************************************************************/
  /* navInner                                                 */
  /*******************************************************************/
  #navInner {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #0f3278;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 21;
    overflow-y: auto;
    /* -webkit-overflow-scrolling: touch; */
    /* overflow-scrolling: touch; */
    -webkit-transform: translate3d(-100%, 0px, 0);
    transform: translate3d(-100%, 0px, 0);
    -webkit-transition: all 0.4s cubic-bezier(1, 0, 0, 1);
    transition: all 0.4s cubic-bezier(1, 0, 0, 1);
  }
  .menuOpen #navInner {
    -webkit-transform: translate3d(0%, 0px, 0) !important;
    transform: translate3d(0%, 0px, 0) !important;
  }
  #navInner .navIn {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #f5fff7;
    position: relative;
    bottom: 0;
    right: 0;
    padding-bottom: 60px;
    overflow-y: auto;
  }
  #navInner .navIn li {
    position: relative;
    text-align: left;
  }
  #navInner .navIn ul li div.sub_btn {
    z-index: 1;
    position: absolute;
    right: 0;
    top: 25px;
    translate: 0 -50%;
    color: #fff;
    font-size: 14px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.6);
  }
  #navInner .navIn ul li div.sub_btn::before {
    content: "";
    border: 1.6px solid transparent;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    transform: rotate(45deg);
    border-top: none;
    border-left: none;
    border-color: #333;
    transition: all 0.2s ease-in-out 0.0s;
  }
  #navInner .navIn ul li div.sub_btn.open::before {
    transform: rotate(-135deg);
  }
  #navInner .navIn ul li ul.sub_item {
    text-align: left;
    background: #fff;
    display: none;
  }
  #navInner .navIn ul li ul.sub_item a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  }
  #navInner .navIn ul.m_menu li a,
  #navInner .navIn ul.s_menu li a {
    position: relative;
    color: #333;
    font-size: 14px;
    padding: 14px 20px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  }
  #navInner .navIn li.nextOpen {
    position: relative;
    color: #607db7;
    font-size: 14px;
    padding: 14px 20px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  }
  /*	footer SNS
  ---------------------------------------------------------------*/
  #navInner .navIn .f_tell_m a {
    width: 90%;
    margin: 12% auto;
    padding: 12px 0;
    display: block;
    background: #fff;
  }
  #navInner .f_tell_m a {
    color: #dd8d30;
    text-align: center;
  }
  #navInner .f_tell_m a .tell_top {
    font-size: 4vw;
    display: block;
  }
  #navInner .f_tell_m a .subIcon {
    font-size: 7vw;
    padding-right: 5px;
  }
  #navInner .f_tell_m a .subList_text {
    font-size: 7vw;
    letter-spacing: 0.04em;
  }
}
/*=========================================================*/
/*	FOOTER*/
/*=========================================================*/
footer .footer_sitemap .sitemap_item {
  width: 100%;
  background: #3B5F03;
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: 0rem;
  padding: 2.5rem 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  footer .footer_sitemap .sitemap_item {
    font-size: 2rem;
    line-height: 3rem;
  }
}
footer .footer_sitemap .sitemap_item .sitemap-button__icon {
  display: block;
  position: relative;
  width: 2.5rem;
  aspect-ratio: 1;
}
footer .footer_sitemap .sitemap_item .sitemap-button__icon .sitemap-button__line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  margin: auto;
  opacity: 1;
  background-color: #fff;
  -webkit-transition: top 0.25s 0.125s ease, width 0.125s ease, -webkit-transform 0.125s ease;
  transition: top 0.25s 0.125s ease, width 0.125s ease, -webkit-transform 0.125s ease;
  transition: top 0.25s 0.125s ease, transform 0.125s ease, width 0.125s ease;
  transition: top 0.25s 0.125s ease, transform 0.125s ease, width 0.125s ease, -webkit-transform 0.125s ease;
}
footer .footer_sitemap .sitemap_item .sitemap-button__icon .sitemap-button__line:nth-child(2) {
  top: -1.6rem;
  width: 60%;
}
footer .footer_sitemap .sitemap_item .sitemap-button__icon .sitemap-button__line:nth-child(3) {
  top: 1.6rem;
  width: 60%;
}
footer .footer_sitemap .sitemap_answer {
  font-size: 3rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 0rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}
@media only screen and (max-width: 768px) {
  footer .footer_sitemap .sitemap_answer {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}

.mainFooter {
  background: url(../img/footer_bgImg.jpg) no-repeat bottom right #f2fcfe;
  padding: 10rem 0 24rem 0;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .mainFooter {
    padding: 5rem 0 20rem 0;
  }
}
.mainFooter ._in .inin .d01 .footerLogoA a {
  width: 45rem;
  display: block;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .mainFooter ._in .inin .d01 .footerLogoA a {
    width: 35rem;
    display: block;
    margin-bottom: 3rem;
  }
}
.mainFooter ._in .inin .d01 .footerAddress {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  margin-bottom: 2rem;
}
.mainFooter ._in .inin .d01 .footerTopTell {
  margin-bottom: 5rem;
}
.mainFooter ._in .inin .d01 .footerTopTell a {
  display: inline-block;
  font-size: 4rem;
  font-family: oswald, sans-serif;
  font-weight: 400;
  line-height: 2.6rem;
  font-style: normal;
  letter-spacing: 0.1rem;
}
.mainFooter ._in .inin .d02 .footerBanner a {
  width: 30rem;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mainFooter ._in .inin .d02 .footerBanner a:hover {
  opacity: 0.7;
}

.mainFooter ._in .inin .d02 .footerBanner a:not(:first-child) {
  margin-top: 2rem;
}

.footerBottom {
  border-top: 2px solid #558924;
  padding: 3rem 6rem;
}
@media only screen and (max-width: 768px) {
  .footerBottom {
    padding: 3rem 6rem 10rem;
  }
}
.footerBottom .logo2 {
  margin-right: 5rem;
}
.footerBottom .logo2 a {
  display: block;
  width: 35rem;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.footerBottom .logo2 a:hover {
  opacity: 0.7;
}
.footerBottom .bottomMenu .flexWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footerBottom .bottomMenu .flexWrap {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .footerBottom .bottomMenu .flexWrap .leftBox {
    display: none;
  }
}
.footerBottom .bottomMenu .flexWrap .leftBox ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.footerBottom .bottomMenu .flexWrap .leftBox ul li {
  margin-right: 2rem;
}
.footerBottom .bottomMenu .flexWrap .leftBox ul li a {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}
.footerBottom .bottomMenu .flexWrap .leftBox ul li a::after {
  content: "";
  background: #333;
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.5rem auto 0rem;
  transition: all 0.4s;
}
.footerBottom .bottomMenu .flexWrap .leftBox ul li a:hover::after {
  opacity: 0;
}
.footerBottom .bottomMenu .flexWrap .rightBox {
  margin-left: auto;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2rem;
}
@media only screen and (max-width: 768px) {
  .footerBottom .bottomMenu .flexWrap .rightBox {
    margin: 1rem;
  }
}

#page_top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 80;
  display: none;
}
@media only screen and (max-width: 768px) {
  #page_top {
    bottom: 10rem;
    right: 0rem;
    z-index: 30;
  }
}
#page_top a {
  background: #558924;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  width: 6rem;
  height: 6rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  #page_top a {
    width: 5rem;
    height: 5rem;
  }
}
#page_top a::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 1;
}

.inSitemap {
  background: #f1f1f1;
  padding: 4rem 0;
}

.footer_sitemapAA {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .footer_sitemapAA .line {
    width: 100%;
  }
  .footer_sitemapAA .line:not(:first-child) {
    margin-top: 5rem;
  }
}
.footer_sitemapAA .line strong a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 2.6rem;
  position: relative;
  padding-left: 1.5rem;
}
.footer_sitemapAA .line strong a::before {
  content: "";
  background: #558924;
  position: absolute;
  top: 1rem;
  left: 0rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
}
.footer_sitemapAA .line ul {
  position: relative;
  margin-top: 3rem;
  padding-left: 2rem;
}
.footer_sitemapAA .line ul::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0;
  width: 1px;
  height: 100%;
  background: #ddd;
}
.footer_sitemapAA .line ul li:not(:first-child) {
  margin-top: 1rem;
}
.footer_sitemapAA .line ul li a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.2rem;
}

.plink {
  position: relative;
}
.plink .nav_item_sub {
  left: 0;
  position: absolute;
  top: 6rem;
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
  width: auto;
  background-color: #fff;
  padding: 3rem 4rem;
  border-radius: 0 0 3rem 3rem;
  width: 110rem;
}
.plink .nav_item_sub .innerA .h3Head {
  border-bottom: 1px solid #3B5F03;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
.plink .nav_item_sub .innerA .h3Head a {
  white-space: nowrap;
  display: inline-block;
  position: relative;
  padding: 1rem 7rem 1rem 0;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 2.8rem;
  letter-spacing: 0rem;
  color: #558924;
  transition: all 0.4s;
}
@media only screen and (max-width: 768px) {
  .plink .nav_item_sub .innerA .h3Head a {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.plink .nav_item_sub .innerA .h3Head a::after {
  content: "";
  position: absolute;
  display: block;
  top: 1rem;
  right: 0rem;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  background: url(../img/icon-arowww.svg) no-repeat center right;
}
.plink .nav_item_sub .innerA .headInMenu .ininflexA {
  flex-basis: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .plink .nav_item_sub .innerA .headInMenu .ininflexA {
    display: block;
  }
}
.plink .nav_item_sub .innerA .headInMenu .ininflexA .boxboxININ {
  position: relative;
  -webkit-flex-basis: 31%;
  flex-basis: 31%;
  margin-bottom: 0;
}
.plink .nav_item_sub .innerA .headInMenu .ininflexA .boxboxININ:not(:last-child) {
  margin-right: 3%;
}
.plink .nav_item_sub .innerA ul li:not(:first-child) {
  margin-top: 2rem;
}
.plink .nav_item_sub .innerA ul li a {
  display: block;
  position: relative;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  transition: all 0.4s;
  border-bottom: 1px dotted #aaa;
}
.plink .nav_item_sub .innerA ul li a::after {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  right: 0.2rem;
  top: 1.3rem;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.12s ease-in 0s;
  border-top: 2px solid #558924;
  border-right: 2px solid #558924;
}
.plink .nav_item_sub .innerA ul li a:hover {
  color: #3B5F03;
}
.plink .nav_item_sub .innerA ul li.activeSub a {
  color: #3B5F03;
}
.plink .nav_item_sub .innerA ul li ol li {
  position: relative;
  margin-top: 0.5rem !important;
}
.plink .nav_item_sub .innerA ul li ol li::after {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  right: auto;
  top: 1.3rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #3B5F03;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.12s ease-in 0s;
  border-top: none;
  border-right: none;
}
.plink .nav_item_sub .innerA ul li ol li a {
  padding-left: 1.6rem;
}
.plink .nav_item_sub .innerA ul li ol li a:after {
  display: none;
}
.plink:hover .nav_item_sub {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 769px) {
  /*<start>==========================================================*/
  body {
    font-size: 80%;
  }
  .sp,
  br.s {
    display: none !important;
  }
  .text {
    /* font-size: 1.4rem; */
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
  }
  .text01 {
    /* font-size: 1.6rem; */
    font-size: 16px;
    line-height: 2.25;
    font-weight: 500;
    font-feature-settings: "palt" 1;
  }
  .text02 {
    /* font-size: 1.6rem; */
    font-size: 16px;
    line-height: 2.25;
    font-weight: 500;
    letter-spacing: 0.04rem;
    font-feature-settings: "palt" 1;
  }
  .text03 {
    /* font-size: 1.6rem; */
    font-size: 16px;
    line-height: 1.875;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .text14 {
    /* font-size: 1.3rem; */
    fzont-size: 13px;
    line-height: 1.75;
    letter-spacing: 0.04em;
  }
  .text13 {
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }
  /*=========================================================*/
  /*	○○○*/
  /*=========================================================*/
  /*	○○○○
  ---------------------------------------------------------------*/
  /*	○○○○○
  -----------------------------------------------------------*/
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  html {
    font-size: 75%;
  }
  body {
    font-size: 0.9rem;
  }
  html,
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
  }
  .pc,
  br.p {
    display: none !important;
  }
  .text01 {
    font-size: 1.6rem;
    line-height: 3.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .text02 {
    font-size: 1.6rem;
    line-height: 3.4rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
  }
  .text03 {
    font-size: 1.6rem;
    line-height: 3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .text,
  .text16 {
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: 0.04em;
  }
  .text14 {
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.02em;
  }
  img {
    width: 100%;
    height: auto;
  }
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.980644vw;
  }
}
@media screen and (min-width: 769px) {
  /*PC <start>==========================================================*/
  html {
    font-size: 0.7806442167vw;
  }
  body {
    font-size: 0.16rem;
  }
  .sp,
  br.s {
    display: none !important;
  }
  /*<end>============================================================*/
}
@media screen and (min-width: 1401px) {
  /*<start>==========================================================*/
  html {
    font-size: 63.5%;
  }
  /*<end>============================================================*/
}/*# sourceMappingURL=style.css.map */