/* スクロールダウン */
.demo a {
  position: absolute;
  bottom: 110px;
  left: 44%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .2s;
}
.demo a:hover {
  opacity: .5;
}
#section01 a {
  padding-top: 70px;
  color: #fff;
  z-index: 10;
}
#section01 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
#section01 a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#section01 a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
#section01 a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
#section02 {
  margin-top: -60px;
  padding-top: 60px;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}
html {
  color: #333333;
  font-family: sans-serif, "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {}
body {
  font-size: 1.4rem; /* 14px */
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  position: relative;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 2px;
}
div {
  position: relative;
}
fieldset, img {
  border: 0
}
ol, ul {
  list-style: none
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
/*link*/
a {
  color: #333;
  text-decoration: none;
}
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #F29600;
  text-decoration: none;
}
a.white {
  color: #fff;
  text-decoration: none;
}
a.white:link {
  color: #fff;
  text-decoration: none;
}
a.white:visited {
  color: #fff;
  text-decoration: none;
}
a.white:hover {
  color: #F29600 !important;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  padding-top: 0px;
  transition: .3s;
}
img {
  border-style: none;
  z-index: 0;
  vertical-align: bottom;
  line-height: 1.0em;
}
.img_wrap {
  overflow: hidden;
  cursor: pointer;
}
.img_wrap img {
  width: 100%;
  transition-duration: 0.5s;
}
.img_wrap:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
/*font*/
/*txt*/
.bb {
  font-weight: bold;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.br-sp {
  display: none;
}
.br-pc {
  display: block;
}
/*color*/
.white {
  color: #fff !important;
}
.under {
  background: linear-gradient(transparent 70%, #FDF266 70%);
}
.photo img {
  width: 100%;
  height: auto;
}
/* mainv */
.main_imgBox {
  margin-top: 80px;
  min-height: 70vh; /* 全画面表示 */
  overflow: hidden;
  position: relative;
}
.main_imgM {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 12s 0s infinite;
  animation: anime 12s 0s infinite;
}
.main_imgM:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  51% {
    opacity: 1;
  }
  75% {
    opacity: 0;
    transform: scale(1.0);
    z-index: 9;
  }
  100% {
    opacity: 0
  }
}
.mainv {
  position: relative;
  margin: 80px auto 0;
}
.mainv img {
  width: 100%;
}
.text-box {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 70%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}
.mv_img img {
  width: 100%;
  margin: 0 auto 0em;
}
/* mainv */
.scroll-bg {
  padding: 3em 0;
  position: relative;
}
.scroll-bg-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.bg_gray {
  background: #f2f0e8;
}
.f-bg {
  padding: 2em 0 2em;
  position: relative;
  background: #F29600;
  color: #fff;
}
.footer2 {
  padding: 1.5em 0 1em;
  background: #333;
}
.footer_contents {
  width: 90%;
  margin: auto;
}
.footer_logo {
  width: 100%;
  margin: 0 auto 1em;
  text-align: center;
  letter-spacing: 0;
  line-height: 2;
}
.footer_logo img {
  width: 60%;
  margin-bottom: 1em;
}
.footer_nav {
  display: none;
}
.footer_btn {}
.footer2_in {}
.footer2_inl {
  font-size: 1.3rem;
  margin-bottom: 1em;
}
.footer2_inr {}
.footer_sns {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: space-around;
}
.footer_snsl {
  width: 50%;
  font-size: 1.5rem;
  letter-spacing: 2px;
  line-height: 2.5;
}
.footer_snsr {
  width: 50%;
  font-size: 2.5rem;
}
.footer_snsr a {
  margin: 0 0.4em;
}
.footer_snsr a:link {
  color: #fff !important;
}
.footer_snsr a:hover {
  color: #333 !important;
}
.cr {
  font-size: 1.0rem;
  color: #C1C1C1;
  letter-spacing: 0;
}

.f_contact {
  margin: auto;
  background: #f2f0e8;
  padding: 3em 2em 3em;
  position: relative;
}
.f_contact img {
  width: 100%;
}
.f_contact_list {}
.f_contact_list li {}
.f_contact_list li p {
  margin: 1.5em auto 0.5em;
}
.f_contact_txt01 {
  color: #F29600;
}
.f_contact_txt02 {
  margin: 0.5em auto 0;
  font-size: 1.7rem;
  font-weight: bold;
}
.f_contact_ap {
  position: absolute;
  top: -0.5em;
  left: 50%;
  width: 30%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.comp_list {
  width: 100%;
}
.comp_list li {
  width: 100%;
  overflow: hidden;
  position: relative;
  zoom: 1;
  padding-bottom: 2px;
  padding-top: 2px;
  border-bottom: 1px solid #ccc;
}
.comp_list li dt {
  float: left;
  width: 25%;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #727272;
  font-weight: bold;
}
.comp_list li dd {
  float: left;
  text-align: left;
  width: 75%;
  padding-top: 10px;
  padding-bottom: 10px;
}
#map_canvas {
  width: 100%;
  height: 500px;
  margin-top: 30px;
  margin-bottom: 2em;
}
/* top */
.title {
  margin: auto;
  width: 140px;
  height: 30px;
  position: relative;
  background: url("title_bgt.svg"), url("title_bgb.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 140px, 140px;
  background-position: top 0% left 0%, bottom 0% left 0%;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 45px 0 0 0;
  color: #403F3E;
}
.top_about_bg {
  padding: 2em 0 2em;
}
.top_about_title {
  font-weight: bold;
  font-size: 2rem;
  margin: 1em auto 0.5em;
}
.top_about_title span {
  font-size: 1.4rem;
}
.top_about_txt {
  width: 90%;
  margin: 0 auto 1em;
  text-align: left;
  line-height: 2;
}
.top_gift_bg {
  padding: 0em 0 3em;
  background: #FFECD2;
}
.top_gift {
  width: 90%;
  margin: 0 auto 2em;
}
.top_gift_img {}
.top_gift_img img {
  width: 100%;
}
.top_gift_txt {
  background: #fff;
  padding: 1em 1.5em 3em;
  position: relative;
}
.point {
  position: absolute;
  bottom: -1em;
  left: 50%;
  width: 5px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}
.point img {
  width: 100%;
}
.point2 {
  position: absolute;
  bottom: -1em;
  left: 50%;
  width: 5px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}
.point2 img {
  width: 100%;
}
.top_gift_txt01 {
  font-weight: bold;
  margin: 0.7em auto;
  font-size: 1.8rem;
  text-align: left;
}
.top_gift_txt02 {
  text-align: left;
  margin: 0 auto 1em;
}
.top_gift_scene {
  background: #fff;
}
.top_gift_scene_img {}
.top_gift_scene_img img {
  width: 100%;
}
.top_gift_scene_txt {
  background: #fff;
  padding: 1em 1.5em 3em;
  position: relative;
}
.top_morikago_bg {
  padding: 0em 0 3em;
  background: #F2F0E8;
}
.top_morikago_lineup {
  background: #fff;
  padding: 1.5em;
}
.top_morikago_lineup p {
  font-size: 1.7rem;
  padding: 0.5em 0;
}
.top_morikago_lineup img {
  width: 100%;
  margin: 0 auto 1em;
}
.top_news {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: flex-start;
}
.top_news li {
  flex: 0 1 46%;
  justify-content: center;
  margin: 0 2% 2em;
}
.top_news img {
  width: 100%;
}
.top_news li p {
  text-align: left;
}
.top_news_cate {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: space-between;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin: 1em auto 0.5em;
}
.top_news_catel {
  width: 50%;
  text-align: left;
}
.top_news_catel span {
  color: #F29600;
  border: 1px solid #F29600;
  padding: 0.5em;
}
.top_news_cater {
  width: 50%;
  text-align: right;
}
/* about */
.pagetitle {
  padding: 90px 0 1em;
  background: #F29600;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.pagetitle_txt {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
  color: #fff;
  font-size: 1.3rem;
}
.page_text-box {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}
.page_text-box p {
  font-size: 1.8rem;
  color: #fff;
  margin: 1em auto 0;
  font-weight: bold;
}
.page_title {
  margin: auto;
  width: 140px;
  height: 30px;
  position: relative;
  background: url("title_bgt.svg"), url("title_bgb.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 140px, 140px;
  background-position: top 0% left 0%, bottom 0% left 0%;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 45px 0 0 0;
  color: #fff;
}
.page_text-boxb {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}
.page_text-boxb p {
  font-size: 1.8rem;
  margin: 1em auto 0;
  font-weight: bold;
  color: #fff;
}
.page_titleb {
  margin: auto;
  width: 140px;
  height: 30px;
  position: relative;
  background: url("title_bgt.svg"), url("title_bgb.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 140px, 140px;
  background-position: top 0% left 0%, bottom 0% left 0%;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 45px 0 0 0;
  color: #fff;
}
.about_point_top {}
.about_point_top_ap {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 25px;
}
.about_point_top_ap img {
  width: 100% !important;
}
.about_point_topr {
  position: relative;
  padding: 1em;
  color: #fff;
}
.about_point_topr.orange {
  background: #f29600;
}
.about_point_topr img {
  width: 60px;
  margin-bottom: 0.5em;
}
.about_point_topr p span {
  font-weight: bold;
  font-size: 2.0rem;
}
.about_point_topr2 {
  position: relative;
  padding: 1em;
  color: #fff;
}
.about_point_topr2.green {
  background: #004a28;
}
.about_point_topr2 img {
  width: 60px;
  margin-bottom: 0.5em;
}
.about_point_topr2 p span {
  font-weight: bold;
  font-size: 2.0rem;
}
.about_point_topl {}
.about_point_topl img {
  width: 100%;
}
.about_point {
  width: 80%;
  margin: 1em auto 2em;
}
.about_point_img {}
.about_point_img img {
  width: 100%;
}
.about_point_txt {
  padding: 1.5em 1.5em 3em 1.5em;
  text-align: left;
  position: relative;
}
.about_point_txt.orange {
  background: #ffecd2;
}
.about_point_txt.gray {
  background: #f2f0e8;
}
.about_point_txt01 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.about_point_txt01 span {
  font-weight: normal;
  font-size: 1.2rem;
  letter-spacing: 0;
}
.about_point_txt img {
  width: 100%;
  margin: 1em auto 0;
}
.about_point_txt_ap {
  position: absolute;
  bottom: -1em;
  left: 50%;
  width: 5px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.about_point_img2 {}
.about_point_img2 img {
  width: 100%;
}
.about_point_txt2 {
  padding: 1.5em 1.5em 3em 1.5em;
  text-align: left;
  position: relative;
}
.about_point_txt2.gray {
  background: #f2f0e8;
}
.about_point_space {
  height: 2em;
}
/* gift */
.gift_top {
  margin: auto;
  max-width: 700px;
}
.gift_top img {
  width: 100%;
}
.gift_point {
  width: 90%;
  margin: 0em auto 3em;
}
.gift_point_img {}
.gift_point_img img {
  width: 100%;
}
.gift_point_en {
  background: #f29600;
  padding: 1em 0;
  color: #ffecd2;
  font-weight: bold;
  font-size: 2.0rem;
  letter-spacing: 3px;
}
.gift_point_txt {
  background: #ffecd2;
  padding: 1.5em 1.5em 2.5em;
  position: relative;
}
.gift_point_txt img {
  width: 70px;
}
.gift_point_txt p {
  text-align: left;
}
.gift_point_title {
  text-align: center !important;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0.5em auto;
}
.gift_point_txt_ap {
  position: absolute;
  bottom: -1em;
  left: 50%;
  width: 5px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.gift_point_txt_ap img {
  width: 100% !important;
}
.gift_point_img2 {}
.gift_point_img2 img {
  width: 100%;
}
.gift_point_en2 {
  background: #f29600;
  padding: 1em 0;
  color: #ffecd2;
  font-weight: bold;
  font-size: 2.0rem;
  letter-spacing: 3px;
}
.gift_point_txt2 {
  background: #ffecd2;
  padding: 1.5em 1.5em 2.5em;
  position: relative;
}
.gift_point_txt2 img {
  width: 70px;
}
.gift_point_txt2 p {
  text-align: left;
}
/* morikago */
.morikago_top {
  width: 90%;
  margin: 0em auto 0em;
}
.morikago_top_img {}
.morikago_top_img img {
  width: 100%;
}
.morikago_top_en {
  background: #004a28;
  padding: 1em 0;
  color: #ffecd2;
  font-weight: bold;
  font-size: 2.0rem;
  letter-spacing: 3px;
}
.morikago_top_txt {
  background: #fff;
  padding: 1.5em 1.5em 2.5em;
  position: relative;
}
.morikago_top_txt img {
  width: 70px;
}
.morikago_top_txt p {
  text-align: left;
}
.morikago_lineup {
  background: #fff;
  padding: 1em;
  position: relative;
  margin: 2em auto;
}
.morikago_lineup_bg {
  position: absolute;
  top: 2em;
  right: 1em;
  width: 30px;
}
.morikago_lineup_bg img {
  width: 100%;
}
.morikago_lineup_bg2 {
  display: none;
  position: absolute;
  top: 48%;
  left: 0em;
  width: 40px;
}
.morikago_lineup_bg2 img {
  width: 100%;
}
.morikago_lineup_bgb {
  position: absolute;
  top: 2em;
  right: 1em;
  width: 30px;
}
.morikago_lineup_bgb img {
  width: 100%;
}
.morikago_lineup_bg2b {
  display: none;
  position: absolute;
  top: 48%;
  right: 0em;
  width: 40px;
}
.morikago_lineup_bg2b img {
  width: 100%;
}
.morikago_lineup_txt {
  text-align: left;
}
.morikago_lineup_txt img {
  width: 80px;
  margin-bottom: 0.5em;
}
.morikago_lineup_img {
  width: 50%;
  margin: 0 auto 0em;
}
.morikago_lineup_img img {
  width: 100%;
}
.morikago_lineup_title {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.morikago_lineup_list {
  padding: 0 0 0 1.5em;
  position: relative;
  margin: 0 auto 1em;
}
.morikago_lineup_list li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none !important;
}
.morikago_lineup_list li:before {
  font-family: FontAwesome;
  content: "\f046"; /*アイコンの種類*/
  position: absolute;
  left: 0em; /*左端からのアイコンまでの距離*/
  color: #f29600; /*アイコン色*/
}
.kagosys_top {
  margin: 2em auto 3em;
}
.kagosys_top_ap {
  font-weight: bold;
  font-size: 1.8rem;
}
.kagosys_top_in {
  padding: 1em;
  margin: 1em auto 0;
  color: #fff;
  border-radius: 10px;
}
.kagosys_top_in.pink {
  background: #fa7896;
}
.kagosys_top_in.green {
  background: #00d1a0;
}
.kagosys_top_title {
  font-weight: bold;
  margin: 0 auto 0.5em;
}
.kagosys_top_title span {
  font-size: 1.9rem;
}
#standard {
  margin-top: -80px;
  padding-top: 80px;
}
#custom {
  margin-top: -80px;
  padding-top: 80px;
}
.standard_wrap_ap {
  margin: 0 auto 1em;
}
.standard_wrap_ap img {
  width: 100%;
}
.standard_wrap {
  background: #fff;
  box-sizing: border-box;
  margin: 0 auto 3em;
}
.standard_wrap.pink {
  border: 1px solid #fa7896;
}
.standard_wrap.green {
  border: 1px solid #00d1a0;
}
.standard_wrapin {
  padding: 2em 1em;
}
.standard_title {
  padding: 1em;
  color: #fff;
  text-align: left;
}
.standard_title.pink {
  background: #fa7896;
}
.standard_title.green {
  background: #00d1a0;
}
.standard_title01 {
  font-weight: bold;
}
.standard_title01 span {
  font-size: 2.0rem;
  margin-right: 10px;
}
.standard_title_ap {
  margin: 1em auto 0;
}
.standard_title_ap span {
  background: #fff;
  padding: 0.5em 1em;
  border-radius: 10px;
}
.standard_title_ap.pink {
  color: #fa7896;
}
.standard_title_ap.green {
  color: #00d1a0 !important;
}
.standard_title_ap2 {
  margin: 1em auto 0;
}
.standard_title_ap2 span {
  padding: 0.5em 1em;
  border-radius: 10px;
  background: #f29600;
}
.kago_point {}
.kago_point_txt {
  text-align: left;
  margin: 0 auto 1em;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}
.kago_point_txtl {
  width: 10%;
  text-align: left;
  font-weight: bold;
  font-size: 2.0rem;
}
.kago_point_txtr {
  width: 85%;
}
.kago_point_txtl.pink {
  color: #fa7896;
}
.kago_point_txtl.green {
  color: #00d1a0;
}
.kago_point_txtr_title {
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.8rem;
}
.kago_point_txtr_title.pink {
  color: #fa7896;
}
.kago_point_txtr_title.green {
  color: #00d1a0;
}
.kago_point_img {}
.kago_point_img img {
  width: 100%;
}
.hanakago_line01 {
  border-bottom: 1px dotted #fa7896;
  margin: 2em auto;
}
.hanakago_line02 {
  border-bottom: 1px dotted #00d1a0;
  margin: 2em auto;
}
.kago_point_subtitle {
  text-align: left;
  margin: 1em auto 1em;
}
.kago_point_subtitle span {
  padding: 0.5em 1em;
}
.kago_point_subtitle span.pink {
  border: 1px solid #fa7896;
  border-radius: 10px;
  color: #fa7896;
}
.kago_point_subtitle span.green {
  border: 1px solid #00d1a0;
  border-radius: 10px;
  color: #00d1a0;
}
.kago_point_list2 {}
.kago_point_list2 li {}
.kago_point_list2 li img {
  width: 100%;
}
.kago_point_list3 {}
.kago_point_list3 li {}
.kago_point_list3 li img {
  width: 100%;
}
.kago_point_list5 {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  margin: 0em auto 0;
}
.kago_point_list5 li {
  width: 45%;
  margin: 0 auto 1em;
  letter-spacing: 0;
}
.kago_point_list5 li img {
  width: 100%;
}
.kago_subpoint {
  margin: 2em auto 2em;
}
.kago_subpointl {
  margin: 0 auto 0.5em;
}
.kago_subpointl span {
  padding: 0.5em 1em;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}
.kago_subpointl span.pink {
  background: #fa7896;
  border-radius: 10px;
}
.kago_subpointl span.green {
  background: #00d1a0;
  border-radius: 10px;
}
.kago_subpointr {
  text-align: left;
}
.kago_point_txt2 {
  text-align: left;
  margin: 0 auto 1em;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}
.kago_point_txt2l {
  width: 10%;
  text-align: left;
  font-weight: bold;
  font-size: 2.0rem;
}
.kago_point_txt2r {
  width: 85%;
}
.kago_point_txt2l.pink {
  color: #fa7896;
}
.kago_point_txt2l.green {
  color: #00d1a0;
}
.kago_point_txt2r_title {
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.8rem;
}
.kago_point_txt2r_title.pink {
  color: #fa7896;
}
.kago_point_txt2r_title.green {
  color: #00d1a0;
}
.kago_point4 {
  position: relative;
}
.kago_point4_img {
  width: 50%;
  margin: auto;
}
.kago_point4_img img {
  width: 100%;
}
.kago_point4_img2 {
  width: 100%;
  margin: auto;
}
.kago_point4_img2 img {
  width: 100%;
}
/* pp */
.pp_txt {
  text-align: left;
  margin: 0 auto 2.5em;
}
.pp_ttl {
  text-align: left;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0 0 0.5em;
  border-bottom: 1px solid #ccc;
  margin: 0 auto 1em;
}
/* lineup */
.lineup_bg {
  padding: 3em 0;
  background: linear-gradient(90deg, #004a28 0%, #004a28 30%, #f2f0e8 30%, #f2f0e8 100%);
  border-top: 2px solid #004a28;
}
.lineup_bg2 {
  padding: 3em 0;
  background: linear-gradient(90deg, #004a28 0%, #004a28 30%, #f2f0e8 30%, #f2f0e8 100%);
}
.lineup {
  width: 90%;
  margin: 0 auto 3em;
}
.lineup_txt {
  background: #fff;
}
.lineup_txt img {
  width: 50px;
  margin: 2em auto 1em;
}
.lineup_img {}
.lineup_img img {
  width: 100%;
}
.lineup_txt01 {
  text-align: left;
  font-size: 1.8rem;
  width: 90%;
  margin: 0 auto 0.5em;
}
.lineup_txt02 {
  text-align: left;
  width: 90%;
  margin: 0 auto 1em;
}
.lineup_txt03 {
  background: #f29600;
  color: #fff;
  font-weight: bold;
  padding: 0.5em 0;
  margin: 0 auto 1em;
  letter-spacing: 0;
}
.lineup_txt04 {
  text-align: left;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 2em 0;
}
.lineup_img2 {
  mix-blend-mode: multiply;
}
.lineup_img2 img {
  width: auto;
  height: 30px;
}
.lineup_subttl {
  width: 90%;
  margin: 0 auto 1em;
  text-align: left;
  color: #fff;
}
.lineup_subttl span {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 0.5em 1em;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0em auto 0.5em;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.lineup_bear {
  width: 90%;
  margin: 0 auto 3em;
}
.lineup_bear li {
  margin: 0 auto 1em;
}
.lineup_bear li img {
  width: 100%;
}
.lineup_flow_bg {
  padding: 3em 0;
  margin: auto;
  background: #f29600;
  color: #fff;
}
.lineup_flow {
  width: 80%;
  margin: 1em auto 0;
}
.lineup_flow li {
  margin: 0 auto 2em;
  text-align: left;
  color: #fff;
  letter-spacing: 0;
}
.lineup_flow li img {
  width: 100%;
}
.lineup_flow_txt {
  font-weight: bold;
  margin: 0 auto 0.5em;
}
.lineup_flow_txt img {
  width: 30px !important;
  margin: 0 10px 0 0;
}
/* topics */
.contents {}
.contentsr {
  margin: 0 auto 3em;
}
.contentsl {
  text-align: left;
}
.sidenav_ttl {
  margin: 0 auto 1em;
}
.sidenav_ttl span {
  font-weight: bold;
  font-size: 2.0rem;
  margin-right: 10px;
  letter-spacing: 1px;
  color: #f29600;
}
.sidenav {
  padding: 0em 0em 0em 1em;
  position: relative;
}
.sidenav li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none !important;
}
.sidenav li:before {
  font-family: FontAwesome;
  content: "\f0da"; /*アイコンの種類*/
  position: absolute;
  left: 0em; /*左端からのアイコンまでの距離*/
  color: #f29600; /*アイコン色*/
}
.news_ttl {
  text-align: left;
  padding: 0 0 0.5em;
  border-bottom: 1px solid #ccc;
  margin: 0 auto 1em;
}
.news_ttl_txt {
  margin: 0.5em auto 0;
  font-weight: bold;
}
.news_photo {
  margin: 1em auto 1em;
}
.news_photo img {
  width: 100%;
}
.news_txt {
  text-align: left;
}
.news {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: flex-start;
}
.news li {
  flex: 0 1 46%;
  justify-content: center;
  margin: 0 2% 2em;
}
.news img {
  width: 100%;
}
.news li p {
  text-align: left;
}
.onlineshop_bnr.mgnt{
	margin: 2em auto 0;
}

.onlineshop_bnr{
	width: 90%;
	margin: 0 auto 2em;
}

.onlineshop_bnr img{
width:100%;
height:auto;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  body {
    min-width: 1200px;
    font-size: 1.5rem; /* 15px */
    line-height: 1.8;
  }
  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .sp_left {
    text-align: center;
  }
  .page-bg {
    padding: 1.5em 0;
    margin: 100px auto 0;
  }
  .scroll-bg {
    padding: 6em 0;
  }
  .f-bg {
    padding: 3em 0 3em;
  }
  /* mainv */
  .main_imgBox {
    margin-top: 90px;
    min-height: 70vh; /* 全画面表示 */
  }
  .mainv {
    position: relative;
    margin: 90px auto 0;
  }
  .text-box {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 20%;
  }
  .w1000 {
    max-width: 1000px;
    margin: auto;
  }
  .comp_list {
    width: 75%;
    margin: 0 auto;
  }
  .comp_list li dt {
    width: 25%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .comp_list li dd {
    width: 75%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #map_canvas {
    margin-top: 50px;
    height: 500px;
  }
  #page-top {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 3;
  }
  #page-top a {
    border-radius: 3px;
    background: #F29600;
    text-decoration: none;
    color: #fff;
    width: 50px;
    height: 40px;
    padding-top: 10px;
    text-align: center;
    display: block;
  }
  #page-top a:hover {
    background: #333;
    color: #fff;
  }
  .footer2 {
    padding: 1.5em 0;
  }
  .footer_contents {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 auto 0em;
    justify-content: space-around;
    position: relative;
    align-items: flex-start;
  }
  .footer_logo {
    width: 30%;
    margin: 0 0 0em;
    text-align: left;
  }
  .footer_logo img {
    width: 60%;
    margin-bottom: 2em;
  }
  .footer_nav {
    display: block;
    width: 45%;
  }
  .footer_btn {
    width: 25%;
  }
  .footer_nav_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
    letter-spacing: 0;
  }
  .footer_nav_list li {
    flex: 0 1 48%;
    justify-content: center;
    margin: 0 0;
    padding: 0;
    text-align: left;
  }
  .footer_nav_contnets0 {
    position: relative
  }
  .footer_nav_contnets0 li {
    padding: 0.5em 0 0.5em 1.2rem;
    font-size: 1.4rem;
    line-height: 1.5;
    list-style-type: none !important;
  }
  .footer_nav_contnets0 li a {
    color: #fff !important;
  }
  .footer_nav_contnets0 li a:hover {
    color: #333 !important;
  }
  .footer_nav_contnets0 li:before {
    font-family: FontAwesome;
    content: "\f105"; /*アイコンの種類*/
    position: absolute;
    left: 0em; /*左端からのアイコンまでの距離*/
    color: #fff; /*アイコン色*/
  }
  .footer_nav_contnets {
    position: relative
  }
  .footer_nav_contnets li {
    padding: 0.5em 0 0.5em 1.2rem;
    font-size: 1.4rem;
    line-height: 1.5;
    list-style-type: none !important;
  }
  .footer_nav_contnets li a {
    color: #fff !important;
  }
  .footer_nav_contnets li a:hover {
    color: #333 !important;
  }
  .footer_nav_contnets li:before {
    font-family: FontAwesome;
    content: "\f105"; /*アイコンの種類*/
    position: absolute;
    left: 0em; /*左端からのアイコンまでの距離*/
    color: #fff; /*アイコン色*/
  }
  .footer_nav_contnets li:nth-child(n + 2) {
    padding: 0.5em 0 0.5em 2.2rem;
  }
  .footer_nav_contnets li:nth-child(n + 2):before {
    left: 1em; /*左端からのアイコンまでの距離*/
  }
  .footer2_in {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 auto 0em;
    justify-content: space-between;
  }
  .footer2_inl {
    width: 50%;
    margin-bottom: 0;
    text-align: left;
  }
  .footer2_inr {
    width: 50%;
  }
  .footer_sns {
    position: absolute;
    bottom: -2em;
    right: -2em;
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-around;
  }
  .footer_snsl {
    width: 50%;
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 2.5;
  }
  .footer_snsr {
    width: 50%;
    font-size: 2.5rem;
  }
  .footer_snsr a {
    margin: 0 0.4em;
  }
  .cr {
    text-align: right;
    font-size: 1.0rem;
  }

  .f_contact {
    padding: 3em 0em;
  }
  .f_contact_list {
	  max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: center;
  }
  .f_contact_list li {
    flex: 0 1 45%;
    justify-content: center;
    margin: 0 auto;
  }
  .f_contact_txt01 {
    font-size: 1.7rem;
  }
  .f_contact_txt02 {
    margin: 0.5em auto 0;
    font-size: 2rem;
  }
  .f_contact_ap {
    position: absolute;
    top: -0.5em;
    width:150px;
  }
  .table_3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: center;
  }
  .table_3 li {
    flex: 0 1 30%;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
  }
  /* top */
  .title {
    width: 180px;
    height: 45px;
    background-size: 180px, 180px;
    font-size: 1.7rem;
    padding: 55px 0 0 0;
  }
  .top_about_bg {
    padding: 6em 0 6em;
    position: relative;
    background: url("t_about_ap01.png"), url("t_about_ap02.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 290px, 290px;
    background-position: bottom 15% left 10%, bottom 15% right 10%;
  }
  .top_about_title {
    font-size: 2.8rem;
    margin: 1em auto 1em;
  }
  .top_about_title span {
    font-size: 1.6rem;
  }
  .top_about_txt {
    width: 90%;
    margin: 0 auto 3em;
    text-align: center;
    line-height: 2.5;
  }
  .top_gift_bg {
    padding: 6em 0 8em;
  }
  .top_gift {
    width: 100%;
    margin: 0 auto 4em;
    position: relative;
  }
  .top_gift_img {
    position: absolute;
    top: -6em;
    left: 0;
    width: 60%;
    z-index: 2;
  }
  .top_gift_txt {
    width: calc(38% - 10em);
    margin: 0 5% 0 auto;
    padding: 3em 5em 3em;
    position: relative;
  }
  .top_gift_txt01 {
    font-size: 2.5rem;
  }
  .top_gift_scene.reverse {
    flex-direction: row-reverse;
  }
  .top_gift_scene {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: center;
    align-items: center;
  }
  .top_gift_scene_img {
    width: 50%;
  }
  .top_gift_scene_txt {
    width: calc(50% - 10em);
    padding: 3em 5em 3em;
  }
  .point2 {
    position: absolute;
    bottom: -3.2em;
  }
  .top_morikago_bg {
    padding: 6em 0 8em;
  }
  .top_morikago_lineup {
    width: 80%;
    margin: auto;
    padding: 5em;
  }
  .top_morikago_lineup p {
    font-size: 2.5rem;
    padding: 1em 0 2em;
  }
  .top_morikago_lineup img {
    width: 100%;
    margin: 0 auto 2em;
  }
  .top_news {
    margin: 0em auto 3em;
  }
  .top_news li {
    flex: 0 1 22%;
    justify-content: center;
    margin: 0 1.5% 2em;
  }
  /* about */
  .pagetitle {
    padding: 140px 0 1.5em;
    font-size: 3rem;
  }
  .page_text-box {
    position: absolute;
    top: 55%;
    left: 20%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
  }
  .page_text-box p {
    font-size: 2.5rem;
    padding: 0 0 0 44%;
    text-align: left;
    margin-top: 0.5em;
  }
  .page_title {
    width: 180px;
    height: 45px;
    background-size: 180px, 180px;
    font-size: 1.7rem;
    padding: 55px 0 0 0;
  }
  .page_text-boxb {
    position: absolute;
    top: 55%;
    left: 20%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
  }
  .page_text-boxb p {
    font-size: 2.5rem;
    padding: 0 0 0 10%;
    color: #333;
  }
  .page_titleb {
    width: 180px;
    height: 45px;
    background-size: 180px, 180px;
    font-size: 1.7rem;
    padding: 55px 0 0 0;
    color: #333;
  }
  .about_point_top {
    position: relative;
  }
  .about_point_top_ap {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 25px;
  }
  .about_point_top_ap img {
    width: 100% !important;
  }
  .about_point_topr {
    position: absolute;
    top: -2em;
    right: -2em;
    width: calc(300px - 2em);
    padding: 2em 1em;
    color: #fff;
    z-index: 3;
    text-align: center;
  }
  .about_point_topr img {
    width: 100px;
    margin: 0 auto 0.5em;
    display: block;
  }
  .about_point_topr p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: left;
    display: inline-block;
  }
  .about_point_topr p span {
    font-size: 3.5rem;
  }
  .about_point_topr2 {
    position: absolute;
    top: -2em;
    left: -2em;
    width: calc(300px - 2em);
    padding: 2em 1em;
    color: #fff;
    z-index: 3;
    text-align: center;
  }
  .about_point_topr2 img {
    width: 100px;
    margin: 0 auto 0.5em;
    display: block;
  }
  .about_point_topr2 p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: left;
    display: inline-block;
  }
  .about_point_topr2 p span {
    font-size: 3.5rem;
  }
  .about_point_topl {}
  .about_point {
    width: 100%;
    margin: 0em auto;
    position: relative;
  }
  .about_point_img {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 40%;
    z-index: 3;
    max-width: 550px;
  }
  .about_point_txt {
    width: calc(60% - 30%);
    margin: 0 40% 0 0;
    padding: 6em 15% 6em 15%;
    text-align: left;
    line-height: 2;
  }
  .about_point_txt01 {
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom: 0.5em;
    line-height: 1.5;
  }
  .about_point_img2 {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 40%;
    z-index: 3;
    max-width: 550px;
  }
  .about_point_txt2 {
    width: calc(60% - 30%);
    margin: 0 0% 0 40%;
    padding: 6em 15% 6em 15%;
    text-align: left;
    line-height: 2;
  }
  .about_point_space {
    height: 10em;
  }
  .gift_point {
    width: 100%;
    margin: 0em auto 10em;
    position: relative;
  }
  .gift_point_img {
    width: 60%;
    z-index: 1;
    max-height: 500px;
  }
  .gift_point_en {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(80% - 800px);
    z-index: 0;
    padding: 3em 0 1em 800px;
    font-size: 2.5rem;
    height: calc(550px - 4em);
  }
  .gift_point_txt {
    padding: 4em 5em 6em;
    position: absolute;
    width: calc(35% - 10em);
    bottom: -4em;
    right: 8%;
  }
  .gift_point_txt img {
    width: 70px;
  }
  .gift_point_title {
    text-align: center !important;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0.5em auto;
  }
  .gift_point_txt_ap {
    position: absolute;
    bottom: -1em;
    left: 50%;
    width: 5px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .gift_point_img2 {
    width: 60%;
    z-index: 1;
    max-height: 500px;
    text-align: right;
    margin: 0 0 0 auto;
  }
  .gift_point_en2 {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 0 0 20%;
    width: calc(80% - 800px);
    z-index: 0;
    padding: 3em 800px 1em 0px;
    font-size: 2.5rem;
    height: calc(550px - 4em);
  }
  .gift_point_txt2 {
    padding: 4em 5em 6em;
    position: absolute;
    width: calc(35% - 10em);
    bottom: -4em;
    left: 8%;
  }
  .gift_point_txt2 img {
    width: 70px;
  }
  /* morikago */
  .morikago_top {
    width: 100%;
    margin: 0em auto 0em;
    position: relative;
    padding: 0 0 10em 0;
  }
  .morikago_top_img {
    width: 60%;
    z-index: 1;
    max-height: 500px;
  }
  .morikago_top_en {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(80% - 800px);
    z-index: 0;
    padding: 3em 0 1em 800px;
    font-size: 2.5rem;
    height: calc(550px - 4em);
  }
  .morikago_top_txt {
    padding: 4em 5em 6em;
    position: absolute;
    width: calc(35% - 10em);
    bottom: 4em;
    right: 8%;
  }
  .morikago_top_txt img {
    width: 70px;
  }
  .morikago_lineup.reverse {
    flex-direction: row-reverse;
  }
  .morikago_lineup {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
    align-items: center;
    padding: 1em 8em;
    margin: 4em auto 0;
  }
  .morikago_lineup_bg {
    position: absolute;
    top: 2em;
    right: 2em;
    width: 60px;
  }
  .morikago_lineup_bg2 {
    display: block;
  }
  .morikago_lineup_bgb {
    position: absolute;
    top: 2em;
    left: 2em;
    width: 60px;
  }
  .morikago_lineup_bg2b {
    display: block;
  }
  .morikago_lineup_txt {
    width: 50%;
    text-align: left;
  }
  .morikago_lineup_txt img {
    width: 120px;
    margin-bottom: 1em;
  }
  .morikago_lineup_img {
    width: 30%;
    margin: 0 0 0em;
  }
  .morikago_lineup_title {
    font-weight: bold;
    font-size: 2.8rem;
    margin-bottom: 0.5em;
  }
  .kagosys_top {
    position: relative;
    margin: 2em auto 6em;
    display: flex;
    justify-content: space-between;
    width: 80%;
  }
  .kagosys_top_ap {
    position: absolute;
    top: 6em;
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 2rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .text-combine {
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
  }
  .kagosys_top_in {
    width: 45%;
    padding: 3em 0em;
    margin: 0em auto 0;
    min-width: 400px;
  }
  .kagosys_top_title span {
    font-size: 1.9rem;
  }
  #standard {
    margin-top: -100px;
    padding-top: 100px;
  }
  #custom {
    margin-top: -100px;
    padding-top: 100px;
  }
  .standard_wrap {
    margin: 0 auto 6em;
    position: relative;
  }
  .standard_wrap_ap {
    position: absolute;
    top: 120px;
    right: 30px;
    width: 50px;
  }
  .standard_wrap_ap img {
    width: 100%;
  }
  .standard_wrapin {
    padding: 3em 8em;
  }
  .standard_title {
    padding: 1em 3em;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: flex-start;
    align-items: center;
  }
  .standard_title01 {
    font-weight: bold;
    border-right: 1px solid #fff;
    padding: 0 20px 0 0;
  }
  .standard_title01 span {
    font-size: 3.0rem;
    margin-right: 10px;
  }
  .standard_title02 {
    font-size: 2.0rem;
    padding: 0 0 0 20px;
  }
  .standard_title_ap {
    position: absolute;
    right: 1em;
    top: 35%;
    margin: 0em auto 0;
    text-align: right;
  }
  .standard_title_ap span {
    background: #fff;
    padding: 0.5em 1em;
    border-radius: 10px;
  }
  .standard_title_ap2 {
    position: absolute;
    right: 8em;
    top: 35%;
    margin: 0em auto 0;
    text-align: right;
  }
  .hanakago_line01 {
    margin: 4em auto;
  }
  .hanakago_line02 {
    margin: 4em auto;
  }
  .kago_point {
    margin: 0 auto 1em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: center;
  }
  .kago_point_txt {
    width: 50%;
    margin: 0 0 0em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .kago_point_txtl {
    width: 10%;
    font-weight: bold;
    font-size: 4.0rem;
  }
  .kago_point_txtr {
    width: 85%;
  }
  .kago_point_txtr_title {
    margin-bottom: 0.5em;
    font-size: 2.8rem;
  }
  .kago_point_img {
    width: 40%;
  }
  .kago_point_list2 {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    margin: 2em auto 0;
  }
  .kago_point_list2 li {
    width: 50%;
  }
  .kago_point_list3 {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    margin: 2em auto 0;
  }
  .kago_point_list3 li {
    width: 30%;
  }
  .kago_point_list5 {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    margin: 2em auto 0;
  }
  .kago_point_list5 li {
    width: 18%;
    margin: 0 auto;
  }
  .kago_subpoint {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    margin: 2em auto 2em;
    align-items: center;
  }
  .kago_subpointl {
    width: 40%;
    margin: 0 auto 0em;
  }
  .kago_subpointl span {
    padding: 1em 1em;
    font-size: 1.6rem;
  }
  .kago_subpointr {
    width: 60%;
  }
  .kago_point_txt2 {
    margin: 0 auto 0em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .kago_point_txt2l {
    width: 8%;
    font-weight: bold;
    font-size: 4.0rem;
  }
  .kago_point_txt2r {
    width: 92%;
    margin-top: 0.7em;
  }
  .kago_point_txt2r_title {
    margin-bottom: 0.5em;
    font-size: 2.8rem;
  }
  .kago_point4 {
    position: relative;
    height: 250px;
  }
  .kago_point4_img {
    position: absolute;
    top: -8em;
    right: 5em;
    width: 20%;
  }
  .kago_point4_img2 {
    position: absolute;
    top: -2em;
    right: 5em;
    width: 60%;
  }
  /* lineup */
  .lineup_bg {
    padding: 6em 0;
    background: linear-gradient(90deg, #004a28 0%, #004a28 30%, #f2f0e8 30%, #f2f0e8 100%);
    border-top: 5px solid #004a28;
  }
  .lineup_bg2 {
    padding: 6em 0;
    background: linear-gradient(90deg, #004a28 0%, #004a28 30%, #f2f0e8 30%, #f2f0e8 100%);
  }
  .lineup {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto 6em;
  }
  .lineup_txt {
    width: 55%;
  }
  .lineup_txt img {
    width: 100px;
    margin: 4em auto 2em;
  }
  .lineup_img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
  }
  .lineup_img img {
    width: 100%;
  }
  .lineup_txt01 {
    font-size: 2.8rem;
    width: 80%;
    margin: 0 auto 0.5em;
  }
  .lineup_txt02 {
    width: 80%;
    margin: 0 auto 1em;
    line-height: 2;
  }
  .lineup_txt03 {
    font-size: 2.0rem;
    padding: 0.5em 0;
    margin: 0 auto 1em;
    letter-spacing: 0;
  }
  .lineup_txt04 {
    width: 80%;
    padding: 0 0 6em 0;
    line-height: 2;
  }
  .lineup_img2 {
    margin: 4em auto 0;
    text-align: left;
    mix-blend-mode: multiply;
  }
  .lineup_img2 img {
    width: auto;
    height: 100px;
  }
  .lineup_subttl {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto 2em;
    font-size: 2.0rem;
  }
  .lineup_bear {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    margin: 0 auto 6em;
  }
  .lineup_bear li {
    flex: 0 1 48%;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .lineup_flow_bg {
    padding: 6em 0;
  }
  .lineup_flow {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: flex-start;
  }
  .lineup_flow li {
    flex: 0 1 46%;
    justify-content: center;
    margin: 0 2% 3em;
    text-align: left;
    color: #fff;
    letter-spacing: 0;
  }
  .lineup_flow_txt {
    font-size: 2rem;
    margin: 0 auto 0.5em;
  }
  .lineup_flow_txt img {
    width: 50px !important;
    margin: 0 10px 0 0;
  }
  /* topics */
  .contents.reverse {
    flex-direction: row-reverse;
  }
  .contents {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
  }
  .contentsr {
    width: 70%;
  }
  .contentsl {
    width: 20%;
    text-align: left;
  }
  .news_ttl_txt {
    font-size: 2.0rem;
  }
  .news_photo {
    margin: 3em auto;
  }
  .news_txt {
    line-height: 2;
  }
  .news {
    margin: 0em auto 0em;
  }
  .news li {
    flex: 0 1 30%;
    justify-content: center;
    margin: 0 1.5% 2em;
  }
	
	.onlineshop_bnr{
	max-width: 1000px;
	margin: 0 auto 5em;
}

	
	
}