@charset "UTF-8";
/*----- font -----*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");
/*----- reset -----*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  color: #555;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka", "Hiragino Kaku Gothic Pro", Verdana, Arial, Helvetica, sans-serif;
  -webkit-text-size-adjust: none;
}

ol, ul {
  list-style: none;
}

:focus {
  outline: 0;
}

img {
  max-width: 100%;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*----- common -----*/
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #252525;
  overflow-x: hidden;
  display: none;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
body.fadeout::after {
  opacity: 1;
}
body.fixed {
  position: fixed;
  width: 100%;
}

/* for CMS */
body:has(#wrapper) {
  display: block;
}

body:has(#wrapper)::after {
  position: relative;
  z-index: auto;
  pointer-events: all;
  opacity: 1;
  background: none;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  text-decoration: none;
}

.ojf img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* PC時Tel発信無効化 */
@media screen and (min-width: 769px) {
  a[href^=tel] {
    pointer-events: none;
  }
}
/*--- fadein ---*/
/* for CMS */
#wrapper .fadein {
  opacity: 1;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
.fadein_first {
  -webkit-animation-name: fadeIn1s;
          animation-name: fadeIn1s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
}

@-webkit-keyframes fadeIn1s {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn1s {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*----- wrap -----*/
.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 130px 0 30px;
}
.wrap_wide {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 130px 0 30px;
}
.wrap_narrow {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 130px 0 30px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .wrap {
    padding: 0 11vw 0 3vw;
  }
  .wrap_wide {
    padding: 0 11vw 0 3vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1060px) {
  .wrap_narrow {
    padding: 0 11vw 0 3vw;
  }
}
@media screen and (max-width:767px) {
  .wrap {
    padding: 0 6vw;
  }
  .wrap_wide, .wrap_narrow {
    padding: 0 6vw;
  }
}

/*----- common -----*/
.main {
  background: url("../../system_panel/uploads/images/bg.jpg");
}

.bg_green {
  background: #032404;
  color: #e5f4e5;
}
.bg_green .m-title .ttl {
  color: #e5f4e5;
}
.bg_green .m-title .en {
  color: #29e32f;
}

.bg_blue {
  background: #1c1b4b;
  color: #fff;
}
.bg_blue .m-title .en {
  color: #b98d0c;
}

.bg_purple {
  background: url("../../system_panel/uploads/images/bg2.jpg");
}

.en {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
}

@media screen and (max-width:767px) {
  br.pc {
    display: none;
  }
}

.cl {
  clear: both;
}

.p {
  font-size: 17px;
}
.p.cen {
  text-align: center;
}
.p.indent {
  padding-left: 17px;
  text-indent: -17px;
}
.pm {
  font-size: 17px;
  line-height: 2;
}
.pm.cen {
  text-align: center;
}
.pm.indent {
  padding-left: 17px;
  text-indent: -17px;
}
.pl {
  font-size: 17px;
  line-height: 2.94;
}
.pl.cen {
  text-align: center;
}
.pl.indent {
  padding-left: 17px;
  text-indent: -17px;
}
.ps {
  font-size: 15px;
  line-height: 1.66;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .pl {
    line-height: 2.25;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .p {
    font-size: 1.6vw;
  }
  .p.indent {
    padding-left: 1.6vw;
    text-indent: -1.6vw;
  }
  .pm {
    font-size: 1.6vw;
  }
  .pm.indent {
    padding-left: 1.6vw;
    text-indent: -1.6vw;
  }
  .pl {
    font-size: 1.6vw;
    line-height: 2.25;
  }
  .pl.indent {
    padding-left: 1.6vw;
    text-indent: -1.6vw;
  }
  .ps {
    font-size: 1.4vw;
  }
}
@media screen and (max-width:767px) {
  .p {
    font-size: 15px;
  }
  .p.indent {
    padding-left: 15px;
    text-indent: -15px;
  }
  .pm {
    font-size: 15px;
    line-height: 1.75;
  }
  .pm.indent {
    padding-left: 15px;
    text-indent: -15px;
  }
  .pl {
    font-size: 15px;
    line-height: 2;
  }
  .pl.indent {
    padding-left: 15px;
    text-indent: -15px;
  }
  .ps {
    font-size: 13px;
  }
}
@media screen and (max-width:479px) {
  .p.cen {
    text-align: left;
  }
  .pm.cen, .pl.cen {
    text-align: left;
  }
}

.fv {
  position: relative;
  padding-top: 90px;
  background: #252525;
  color: #fff;
}
.fv__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
}
.fv__ttl-text {
  position: relative;
  z-index: 9;
  font-size: 55px;
  font-weight: 700;
}
.fv__en {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
  font-size: 150px;
  line-height: 1;
}
.fv__en-text {
  display: inline-block;
  margin: 0;
  padding-left: 10%;
  white-space: nowrap;
  -webkit-animation: flowing 20s linear infinite;
          animation: flowing 20s linear infinite;
  color: #363636;
}
.fv.white {
  background: #fff;
  color: #032404;
}
.fv.white .fv__en-text {
  color: #ededed;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .fv {
    padding-top: 8vw;
  }
  .fv__ttl {
    height: 16vw;
  }
  .fv__ttl-text {
    font-size: 5vw;
  }
  .fv__en {
    font-size: 11.5vw;
  }
}
@media screen and (max-width:767px) {
  .fv {
    padding-top: 60px;
  }
  .fv__ttl {
    height: 150px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fv__ttl-text {
    font-size: min(7.5vw, 36px);
  }
  .fv__en {
    font-size: 96px;
  }
  .fv__en-text {
    padding-left: 10%;
  }
}

@-webkit-keyframes flowing {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
}

@keyframes flowing {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
}
.m-title {
  margin-bottom: 30px;
}
.m-title .ttl {
  margin-bottom: 20px;
  font-size: 47px;
  font-weight: 900;
  line-height: 1.5;
}
.m-title .en {
  color: #775b09;
  font-size: 23px;
}
.m-title.cen {
  text-align: center;
}
.m-title.right {
  text-align: right;
}
.m-title.green .ttl {
  color: #e5f4e5;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .m-title {
    margin-bottom: 3vw;
  }
  .m-title .ttl {
    margin-bottom: 2vw;
    font-size: 4vw;
  }
  .m-title .en {
    font-size: 2.2vw;
  }
}
@media screen and (max-width:767px) {
  .m-title {
    margin-bottom: 25px;
  }
  .m-title .ttl {
    margin-bottom: 15px;
    font-size: min(7.2vw, 36px);
  }
  .m-title .ttl br.pc {
    display: none;
  }
  .m-title .en {
    font-size: min(4.5vw, 21px);
  }
  .m-title.right {
    text-align: left;
  }
}

.m-ttl__h4 {
  margin-bottom: 30px;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.6;
}
.m-ttl__h5 {
  margin: 30px 0 20px;
  padding-bottom: 10px;
  color: #b98d0c;
  border-bottom: 1px solid #b98d0c;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .m-ttl__h4 {
    margin-bottom: 2.5vw;
    font-size: 3vw;
  }
  .m-ttl__h5 {
    margin: 3vw 0 2vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }
}
@media screen and (max-width:767px) {
  .m-ttl__h4 {
    margin-bottom: 20px;
    font-size: min(6.5vw, 24px);
  }
  .m-ttl__h5 {
    font-size: min(6vw, 21px);
  }
}

.m-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  color: #252525;
}
.m-btn a p {
  font-size: 17px;
}
.m-btn a div:last-child {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f4f4f4;
  border: 1px solid #8f8884;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.m-btn a div:last-child::before, .m-btn a div:last-child::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
}
.m-btn a div:last-child::before {
  left: calc(50% - 6px);
  width: 12px;
  height: 1px;
  background: #8f8884;
}
.m-btn a div:last-child::after {
  right: 24px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: solid 1px #8f8884;
  border-right: solid 1px #8f8884;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.m-btn a div:last-child.bold::before {
  left: calc(50% - 8px);
  width: 16px;
  height: 3px;
  background: #252525;
}
.m-btn a div:last-child.bold::after {
  right: 22px;
  width: 12px;
  height: 12px;
  border-top: solid 3px #252525;
  border-right: solid 3px #252525;
}
.m-btn a:hover {
  color: #888;
}
.m-btn a:hover div {
  opacity: 0.75;
}
.m-btn a br {
  display: none;
}
.m-btn.cen a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-btn.white a {
  color: #fff;
}
.m-btn.white a div:last-child {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.m-btn.white a div:last-child::before {
  background: #fff;
}
.m-btn.white a div:last-child::after {
  border-color: #fff;
}
.m-btn.white a:hover {
  color: #ccc;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .m-btn a {
    gap: 0 2vw;
  }
  .m-btn a p {
    font-size: 1.7vw;
  }
  .m-btn a div:last-child {
    width: 5vw;
    height: 5vw;
  }
  .m-btn a div:last-child::before {
    left: calc(50% - 0.6vw);
    width: 1.2vw;
  }
  .m-btn a div:last-child::after {
    right: 1.9vw;
    width: 0.8vw;
    height: 0.8vw;
  }
  .m-btn a div:last-child.bold::before {
    left: calc(50% - 0.8vw);
    width: 1.6vw;
  }
  .m-btn a div:last-child.bold::after {
    right: 1.6vw;
    width: 1.2vw;
    height: 1.2vw;
  }
}
@media screen and (max-width:767px) {
  .m-btn a {
    gap: 0 20px;
  }
  .m-btn a p {
    font-size: 17px;
  }
  .m-btn a div:last-child {
    width: 48px;
    height: 48px;
  }
  .m-btn a div:last-child::after {
    right: 18px;
  }
  .m-btn a div:last-child.bold::after {
    right: 16px;
  }
  .m-btn a br {
    display: inline-block;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 998;
  padding: 0;
  background: rgba(3, 36, 4, 0.95);
}
.header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .h-logo {
  width: 124px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .h-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header .h-nav .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .h-nav .ul .li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header .h-nav .ul .li.parent {
  position: relative;
}
.header .h-nav .ul .li .on,
.header .h-nav .ul .li a {
  padding: 25px 30px;
  color: #fff;
  cursor: pointer;
}
.header .h-nav .ul .li .on:hover,
.header .h-nav .ul .li a:hover {
  opacity: 0.75;
}
.header .h-nav__child {
  display: none;
  position: absolute;
  width: 240px;
  top: 90px;
  left: 0;
  background: rgba(0, 69, 52, 0.9);
}
.header .h-nav__child-li a {
  display: block;
  padding: 20px 30px !important;
}
.header .h-contact__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}
.header .h-contact__text {
  color: #e6b422;
  font-size: 14px;
  text-align: center;
}
.header .h-contact__btn {
  margin-top: 10px;
}
.header .h-contact__btn a {
  display: block;
  padding: 10px 60px;
  background: #e6b422;
  color: #961205;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
}
.header .h-contact__btn a:hover {
  background: #ffeeca;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header {
    height: 8vw;
  }
  .header .h-logo {
    width: 12vw;
    height: 8vw;
  }
  .header .h-nav .ul .li .on,
  .header .h-nav .ul .li a {
    font-size: 1.6vw;
    padding: 2vw 1.75vw;
  }
  .header .h-nav__child {
    width: 22vw;
    top: 8vw;
  }
  .header .h-nav__child-li a {
    padding: 1.8vw 1.75vw !important;
  }
  .header .h-contact__box {
    margin-left: 1.75vw;
  }
  .header .h-contact__text {
    font-size: 1.4vw;
  }
  .header .h-contact__btn {
    margin-top: 1vw;
  }
  .header .h-contact__btn a {
    padding: 1vw 3.5vw;
    font-size: 1.8vw;
  }
}
@media screen and (max-width:767px) {
  .header {
    height: 60px;
  }
  .header .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .h-logo {
    width: 93px;
    height: 60px;
  }
  .header .h-nav {
    display: none;
  }
  .header .h-contact__box {
    display: none;
  }
}

.side-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  padding: 50px 25px;
  z-index: 999;
  background: #0e1e4d;
}
.side-nav__sns {
  margin-top: 40px;
}
.side-nav__sns a {
  display: block;
  text-align: center;
}
.side-nav__sns a img {
  width: 39px;
}
.side-nav .menubtn {
  position: relative;
  z-index: 1000;
  cursor: pointer;
}
.side-nav .menubtn .hamburger {
  position: relative;
  display: block;
  width: 50px;
  height: 20px;
}
.side-nav .menubtn .hamburger .span {
  position: absolute;
  left: 50%;
  width: 40px;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
}
.side-nav .menubtn .hamburger .span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.side-nav .menubtn .hamburger .span:nth-of-type(2) {
  opacity: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.side-nav .menubtn .hamburger .span:nth-of-type(3) {
  bottom: 10px;
  width: 30px;
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}
.side-nav .menubtn .is-open.hamburger .span:nth-of-type(1) {
  -webkit-transform: translate(-50%, 4px) rotate(-45deg);
          transform: translate(-50%, 4px) rotate(-45deg);
}
.side-nav .menubtn .is-open.hamburger .span:nth-of-type(2) {
  opacity: 0;
}
.side-nav .menubtn .is-open.hamburger .span:nth-of-type(3) {
  width: 40px;
  -webkit-transform: translate(-50%, -4px) rotate(45deg);
          transform: translate(-50%, -4px) rotate(45deg);
}
.side-nav .menubtn .menubtn__text {
  margin: 10px 0 0;
  font-size: 13px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .side-nav {
    width: 8vw;
    padding: 4vw 2vw;
  }
  .side-nav__sns {
    margin-top: 3vw;
  }
  .side-nav__sns a img {
    width: 3vw;
  }
  .side-nav .menubtn .hamburger {
    width: 4vw;
    height: 2vw;
  }
  .side-nav .menubtn .hamburger .span {
    width: 4vw;
  }
  .side-nav .menubtn .hamburger .span:nth-of-type(3) {
    bottom: 1vw;
    width: 3vw;
  }
  .side-nav .menubtn .is-open.hamburger .span:nth-of-type(3) {
    width: 4vw;
  }
  .side-nav .menubtn .menubtn__text {
    margin: 1vw 0 0;
    font-size: 1.3vw;
  }
}
@media screen and (max-width:767px) {
  .side-nav {
    position: fixed;
    width: 60px;
    height: 60px;
    padding: 18px 10px 0;
    background: none;
  }
  .side-nav__sns {
    margin-top: 20px;
  }
  .side-nav .menubtn + .side-nav__sns {
    display: none;
  }
  .side-nav .menubtn .hamburger {
    width: 40px;
    height: 20px;
  }
  .side-nav .menubtn .hamburger .span {
    width: 40px;
  }
  .side-nav .menubtn .hamburger .span:nth-of-type(3) {
    bottom: 10px;
    width: 30px;
  }
  .side-nav .menubtn .menubtn__text {
    margin: 2px 0 0;
    font-size: 11px;
  }
}

.navbox {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  padding: 100px 60px;
  z-index: 999;
  background: #004534;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  overflow-y: auto;
}
.navbox .ul .li a {
  display: block;
  padding: 15px 0;
  color: #fff;
  font-size: 21px;
}
.navbox .ul .li a:hover {
  opacity: 0.75;
}
.navbox.active {
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .navbox {
    right: -40vw;
    width: 40vw;
    padding: 8vw 4vw;
  }
  .navbox .ul .li a {
    padding: 1.5vw 0;
    font-size: 1.8vw;
  }
}
@media screen and (max-width:767px) {
  .navbox {
    right: -280px;
    width: 280px;
    padding: 60px 30px;
  }
  .navbox .ul .li a {
    padding: 10px 0;
    font-size: 17px;
  }
}

.f-contact {
  padding: 75px 0;
  background: #032404;
  color: #e5f4e5;
}
.f-contact__box {
  width: 540px;
  margin: 40px auto 0;
  padding: 20px 0 30px;
  border-top: 1px solid #3e423e;
  border-bottom: 1px solid #3e423e;
  text-align: center;
}
.f-contact__box .m-ttl__h4 {
  margin-bottom: 15px;
}
.f-contact__btn {
  width: 310px;
  margin: auto;
}
.f-contact__btn a {
  display: block;
  padding: 15px;
  background: #e6b422;
  color: #775b09;
  font-size: 19px;
  font-weight: 700;
}
.f-contact__btn a:hover {
  background: #ffeeca;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .f-contact {
    padding: 6vw 0;
  }
  .f-contact__box {
    width: 60vw;
    margin: 3vw auto 0;
    padding: 2vw 0 3vw;
  }
  .f-contact__box .m-ttl__h4 {
    margin-bottom: 1.5;
  }
  .f-contact__btn {
    width: 40vw;
  }
  .f-contact__btn a {
    padding: 1.5vw;
    font-size: 1.8vw;
  }
}
@media screen and (max-width:767px) {
  .f-contact {
    padding: 50px 0;
  }
  .f-contact__box {
    width: min(100%, 500px);
    margin: 25px auto 0;
    padding: 15px 0 25px;
  }
  .f-contact__btn {
    width: min(90%, 400px);
  }
  .f-contact__btn a {
    font-size: 17px;
  }
}

.f-info {
  background: #1c1b4b;
  color: #fff;
  padding: 75px 0 30px;
}
.f-info .logo {
  width: 146px;
  margin-bottom: 15px;
}
.f-info .address {
  margin-bottom: 25px;
  line-height: 2.35;
}
.f-info .copyright {
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .f-info {
    padding: 6vw 0 3vw;
  }
  .f-info .logo {
    width: 13vw;
    margin-bottom: 1.5vw;
  }
  .f-info .address {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width:767px) {
  .f-info {
    padding: 50px 0;
  }
  .f-info .logo {
    margin: 0 auto 15px;
  }
  .f-info .address {
    text-align: center;
  }
  .f-info .copyright {
    text-align: center;
  }
}

/*--- btn ---*/
.c-btn {
  margin: 30px 0 60px;
}
.c-btn a {
  padding: 20px 0;
  width: 470px;
  background: #e6b422;
}
.c-btn a p {
  font-size: 28px;
  font-weight: 900;
}
.c-btn a div {
  width: 40px;
  height: 40px;
}
.c-btn a div.bold::after {
  right: 12px;
}
.c-btn a:hover {
  opacity: 0.75;
  color: #888;
}
.c-btn.cen a {
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .c-btn {
    margin: 3vw 0 5vw;
  }
  .c-btn a {
    padding: 2vw 0;
    width: 40vw;
  }
  .c-btn a p {
    font-size: 2.2vw;
  }
  .c-btn a div {
    width: 4vw;
    height: 4vw;
  }
  .c-btn a div.bold::after {
    right: 1.2vw;
  }
}
@media screen and (max-width:767px) {
  .c-btn {
    margin: 20px 0 40px;
  }
  .c-btn a {
    margin: auto;
    padding: 15px 0;
    width: min(100%, 400px);
  }
  .c-btn a p {
    font-size: min(5.5vw, 24px);
  }
}

/*--- products ---*/
.c-products {
  padding: 70px 0 120px;
}
.c-products .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-products .frame .conts {
  width: 52%;
}
.c-products .frame .pic {
  width: 41.89%;
}
.c-products .frame2 {
  position: relative;
  top: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-products .frame2 .pic1,
.c-products .frame2 .youtube {
  width: 36.66%;
}
.c-products .frame2 .youtube {
  position: relative;
  aspect-ratio: 1;
}
.c-products .frame2 .youtube iframe {
  width: 100%;
  height: 100%;
}
.c-products .frame2 .youtube .p {
  position: absolute;
  left: 0;
  bottom: -40px;
  line-height: 1.5;
}
.c-products .frame2 .youtube .p a {
  color: #fff;
}
.c-products .frame2 .youtube .p a:hover {
  text-decoration: underline;
}
.c-products .frame2 .pic2 {
  width: 54%;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .c-products .frame2 {
    top: 60px;
    padding-bottom: 60px;
  }
  .c-products .frame2 .pic1,
  .c-products .frame2 .youtube {
    width: 40%;
  }
  .c-products .frame2 .pic2 {
    width: 55%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .c-products {
    padding: 6vw 0 9vw;
  }
  .c-products .frame .conts {
    width: 60%;
  }
  .c-products .frame .pic {
    width: 36%;
  }
  .c-products .frame2 {
    top: 4vw;
    padding-bottom: 4vw;
  }
  .c-products .frame2 .pic1,
  .c-products .frame2 .youtube {
    width: 45%;
  }
  .c-products .frame2 .pic1 .p,
  .c-products .frame2 .youtube .p {
    bottom: -3vw;
  }
  .c-products .frame2 .pic2 {
    width: 50%;
  }
}
@media screen and (max-width:767px) {
  .c-products {
    padding: 50px 0;
  }
  .c-products .frame {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .c-products .frame .conts {
    width: 100%;
  }
  .c-products .frame .pic {
    margin: 30px auto 0;
    width: min(400px,100%);
  }
  .c-products .frame2 {
    top: 0;
    display: block;
  }
  .c-products .frame2 .pic1,
  .c-products .frame2 .youtube {
    margin: 0 auto 30px;
    width: min(400px, 100%);
  }
  .c-products .frame2 .pic1 .p,
  .c-products .frame2 .youtube .p {
    position: relative;
    left: auto;
    bottom: auto;
  }
  .c-products .frame2 .pic2 {
    width: 100%;
  }
}

/*--- point ---*/
.c-point {
  padding: 100px 0 120px;
}
.c-point__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 130px;
  padding: 20px 0;
  border-bottom: 1px solid #e5f4e5;
}
.c-point__list-num {
  width: 150px;
  color: #b98d0c;
  font-size: 80px;
  text-align: center;
}
.c-point__list-title {
  width: 315px;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.5;
}
.c-point__list .pl {
  width: calc(100% - 150px - 315px);
  padding-left: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .c-point__list-num {
    width: 120px;
  }
  .c-point__list .pl {
    width: calc(100% - 120px - 315px);
    padding-left: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .c-point {
    padding: 8vw 0 9vw;
  }
  .c-point__list-box {
    min-height: 12vw;
    padding: 2vw 0;
  }
  .c-point__list-num {
    width: 10vw;
    font-size: 6vw;
  }
  .c-point__list-title {
    width: 27vw;
    font-size: 3vw;
  }
  .c-point__list .pl {
    width: calc(100% - 37vw);
    padding-left: 4vw;
  }
}
@media screen and (max-width:767px) {
  .c-point {
    padding: 50px 0;
  }
  .c-point__list-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: auto;
    padding: 20px 0;
  }
  .c-point__list-num {
    width: 60px;
    font-size: 40px;
  }
  .c-point__list-title {
    width: calc(100% - 60px);
    font-size: min(7vw, 25px);
  }
  .c-point__list .pl {
    width: 100%;
    padding: 15px 0 0;
  }
}

.bg_blue .c-point__list-box {
  border-bottom-color: #fff;
}

/*--- slider ---*/
.c-linear__slider .pic {
  margin: 0 10px;
}
.c-linear__slider .pic img {
  aspect-ratio: 10/7;
}

/*--- items ---*/
.c-items {
  margin: 60px 0;
}
.c-items .m-ttl__h4 {
  padding-bottom: 10px;
  border-bottom: 1px solid #252525;
}
.c-items .pm {
  margin-bottom: 40px;
}
.c-items__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px 60px;
}
.c-items__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(25% - 45px);
}
.c-items__list-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 21px;
  line-height: 1.5;
  min-height: 63px;
}
.c-items__list-pic {
  margin: 10px 0;
  padding-top: 10px;
  border-top: 1px solid #252525;
}
.c-items__list-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border: 1px solid #252525;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.4;
}
.c-items__list-dl .dt {
  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;
  padding: 10px;
  width: 32%;
  background: #f2ede3;
}
.c-items__list-dl .dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  width: 68%;
  background: #fff;
  border-left: 1px solid #252525;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .c-items__list {
    gap: 30px 45px;
  }
  .c-items__list-box {
    width: calc(25% - 33.75px);
  }
  .c-items__list-name {
    font-size: 1.1vw;
    min-height: 3.3vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .c-items {
    margin: 5vw 0;
  }
  .c-items .m-ttl__h4 {
    padding-bottom: 1vw;
  }
  .c-items .pm {
    margin-bottom: 3vw;
  }
  .c-items__list {
    gap: 2vw 4vw;
  }
  .c-items__list-box {
    width: calc(33.33% - 2.67vw);
  }
  .c-items__list-name {
    font-size: 1.5vw;
    min-height: 4.5vw;
  }
  .c-items__list-pic {
    margin: 1vw 0;
    padding-top: 1vw;
  }
  .c-items__list-dl {
    margin-bottom: 1vw;
    font-size: 1.6vw;
  }
  .c-items__list-dl .dt {
    padding: 1vw;
  }
  .c-items__list-dl .dd {
    padding: 1vw;
  }
}
@media screen and (max-width:767px) {
  .c-items {
    margin: 30px 0;
  }
  .c-items .pm {
    margin-bottom: 20px;
  }
  .c-items__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px 30px;
  }
  .c-items__list-box {
    width: calc(50% - 15px);
  }
  .c-items__list-name {
    font-size: min(2.5vw, 16px);
    min-height: min(7.5vw, 48px);
  }
  .c-items__list-dl {
    font-size: 17px;
  }
}
@media screen and (max-width:479px) {
  .c-items__list-box {
    width: 100%;
  }
  .c-items__list-name {
    display: block;
    font-size: 17px;
  }
  .c-items__list-pic {
    margin: 10px 0;
    padding-top: 10px;
  }
}

/*--- link ---*/
.c-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1000px;
  margin: auto;
}
.c-link__btn {
  width: 25%;
  border-right: 1px solid #252525;
}
.c-link__btn:first-child {
  border-left: 1px solid #252525;
}
.c-link__btn a {
  position: relative;
  display: block;
  padding: 30px 0 15px;
  color: #252525;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}
.c-link__btn a div {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin: 15px auto 0;
  border-radius: 50%;
  background: #f4f4f4;
  border: 1px solid #252525;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-link__btn a div::before, .c-link__btn a div::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
}
.c-link__btn a div::before {
  top: calc(50% - 6px);
  width: 2px;
  height: 12px;
  background: #252525;
}
.c-link__btn a div::after {
  bottom: 14px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: solid 2px #252525;
  border-right: solid 2px #252525;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-link__btn a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .c-link__btn a {
    padding: 2vw 0 1vw;
    font-size: 2.5vw;
  }
  .c-link__btn a div {
    margin-top: 1vw;
  }
}
@media screen and (max-width:767px) {
  .c-link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
  }
  .c-link__btn {
    width: 50%;
  }
  .c-link__btn:nth-of-type(2n+1) {
    border-left: 1px solid #252525;
  }
  .c-link__btn a {
    padding: 15px 0 10px;
    font-size: min(5vw, 20px);
  }
  .c-link__btn a div {
    margin-top: 15px;
  }
}

/*--- title ---*/
.c-title {
  float: left;
  margin: 0 60px 30px 0;
}
.c-title__sup {
  position: relative;
  z-index: 3;
  left: -20px;
  bottom: -15px;
  display: inline-block;
  padding: 15px 20px;
  background: #775b09;
  color: #b98d0c;
  text-align: center;
}
.c-title__sup .text {
  color: #fae7af;
  font-size: 19px;
}
.c-title__sup .num {
  font-size: 40px;
}
.c-title__main {
  padding: 20px 40px;
  background: #eae4d3;
  color: #252525 !important;
  line-height: 1.5;
}
.c-title__main .ttl {
  font-size: 47px;
  font-weight: 900;
}
.c-title__aside {
  padding-top: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .c-title {
    margin: 0 5vw 2vw 0;
  }
  .c-title__sup {
    left: -2vw;
    bottom: -1.5vw;
    padding: 1.5vw 2vw;
  }
  .c-title__sup .text {
    font-size: 1.8vw;
  }
  .c-title__sup .num {
    font-size: 3.3vw;
  }
  .c-title__main {
    padding: 2vw 3vw;
  }
  .c-title__main .ttl {
    font-size: 4vw;
  }
  .c-title__aside {
    padding-top: 4vw;
  }
}
@media screen and (max-width:767px) {
  .c-title {
    float: none;
    margin: 0 auto 30px;
  }
  .c-title__sup {
    bottom: -10px;
    padding: 10px 15px;
  }
  .c-title__sup .text {
    font-size: 16px;
  }
  .c-title__sup .num {
    font-size: 30px;
  }
  .c-title__main {
    padding: 15px 4vw;
  }
  .c-title__main .ttl {
    font-size: 24px;
  }
  .c-title__main .p br {
    display: none;
  }
  .c-title__aside {
    padding-top: 0;
  }
}

.bg_purple .c-title__main {
  background: #cfd2e2;
}

/*--- info ---*/
.c-info {
  padding: 100px 0 120px;
}
.c-info__box {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  background: #252525;
  color: #fff;
  text-align: center;
}
.c-info__ttl {
  margin-bottom: 20px;
  color: #e5f4e5;
  font-size: 35px;
  font-weight: 900;
}
.c-info__ttl-sub {
  margin-bottom: 10px;
  font-size: 27px;
  font-weight: 900;
  color: #775b09;
}
.c-info__btn {
  max-width: 640px;
  margin: auto;
}
.c-info__btn .m-btn a {
  padding: 15px;
  background: #e6b422;
}
.c-info__btn .m-btn a div:before {
  border-color: #252525;
}
.c-info__btn .m-btn a p {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .c-info {
    padding: 6vw 0;
  }
  .c-info__box {
    padding: 3vw;
  }
  .c-info__ttl {
    margin-bottom: 2vw;
    font-size: 3vw;
  }
  .c-info__ttl-sub {
    margin-bottom: 1vw;
    font-size: 2.5vw;
  }
  .c-info__btn {
    max-width: 80%;
  }
  .c-info__btn .m-btn a {
    padding: 1.5vw;
  }
  .c-info__btn .m-btn a p {
    font-size: 3vw;
  }
}
@media screen and (max-width:767px) {
  .c-info {
    padding: 50px 0;
  }
  .c-info__box {
    padding: 20px 4vw;
    text-align: center;
  }
  .c-info__ttl {
    margin-bottom: 15px;
    font-size: min(6vw, 25px);
    line-height: 1.5;
  }
  .c-info__ttl-sub {
    font-size: min(5vw, 22px);
  }
  .c-info__btn .m-btn a {
    padding: 15px;
  }
  .c-info__btn .m-btn a p {
    font-size: min(6vw, 25px);
    line-height: 1.25;
  }
}
.blog-frame {
  padding: 120px 0;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .blog-frame {
    padding: 8vw 0;
  }
}
@media screen and (max-width:767px) {
  .blog-frame {
    padding: 50px 0 75px;
  }
}

.blog-list {
  margin: 50px 0 75px;
}
.blog-list .webgene-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px 66px;
}
.blog-list .webgene-blog .li {
  position: relative;
  width: calc(25% - 49.5px);
  padding-bottom: 50px;
}
.blog-list .webgene-blog .li .pic {
  display: block;
  width: 100%;
  height: 490px;
  background: #f5f5f5;
}
.blog-list .webgene-blog .li .pic img {
  height: 490px;
  aspect-ratio: 36/49;
}
.blog-list .webgene-blog .li .pm {
  padding: 15px 10px;
}
.blog-list .webgene-blog .li .readmore {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #252525;
}
.blog-list .webgene-blog .li .readmore a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  height: 50px;
  font-size: 15px;
  color: #252525;
}
.blog-list .webgene-blog .li .readmore a::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 20px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: solid 1px #252525;
  border-right: solid 1px #252525;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-list .webgene-blog .li .readmore a:hover {
  opacity: 0.75;
}
.blog-list .webgene-blog .li .readmore a:hover::after {
  right: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .blog-list .webgene-blog {
    gap: 50px 44px;
  }
  .blog-list .webgene-blog .li {
    width: calc(25% - 33px);
  }
  .blog-list .webgene-blog .li .pic {
    height: 26vw;
  }
  .blog-list .webgene-blog .li .pic img {
    height: 26vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .blog-list {
    margin: 4vw 0 6vw;
  }
  .blog-list .webgene-blog {
    gap: 4vw 4vw;
  }
  .blog-list .webgene-blog .li {
    width: calc(33.3333333333% - 2.6666666667vw);
    padding-bottom: 4vw;
  }
  .blog-list .webgene-blog .li .pic {
    height: 33.33vw;
  }
  .blog-list .webgene-blog .li .pic img {
    height: 33.33vw;
  }
  .blog-list .webgene-blog .li .pm {
    padding: 1vw 1vw;
  }
  .blog-list .webgene-blog .li .readmore a {
    padding: 0 1vw;
    height: 4vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width:767px) {
  .blog-list {
    margin: 30px 0 40px;
  }
  .blog-list .webgene-blog {
    gap: 4vw 5vw;
  }
  .blog-list .webgene-blog .li {
    width: calc(33.3333333333% - 3.3333333333vw);
    padding-bottom: 30px;
  }
  .blog-list .webgene-blog .li .pic {
    height: 33.33vw;
  }
  .blog-list .webgene-blog .li .pic img {
    height: 33.33vw;
  }
  .blog-list .webgene-blog .li .pm {
    padding: 10px 0;
  }
  .blog-list .webgene-blog .li .readmore a {
    padding: 0 10px;
    height: 30px;
  }
}
@media screen and (max-width:479px) {
  .blog-list .webgene-blog {
    gap: 40px 6vw;
  }
  .blog-list .webgene-blog .li {
    width: calc(50% - 3vw);
  }
  .blog-list .webgene-blog .li .pic {
    height: 54vw;
  }
  .blog-list .webgene-blog .li .pic img {
    height: 54vw;
  }
}

.blog-detail {
  padding: 50px 0 0;
}
.blog-detail .m-ttl__h4 {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #252525;
}
.blog-detail .pic {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1060px) {
  .blog-detail {
    padding: 4vw 0 0;
  }
  .blog-detail .m-ttl__h4 {
    margin-bottom: 2.4vw;
    padding-bottom: 1.5vw;
  }
  .blog-detail .pic {
    margin-bottom: 2.4vw;
  }
}
@media screen and (max-width:767px) {
  .blog-detail {
    padding: 20px 0 0;
  }
  .blog-detail .m-ttl__h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .blog-detail .pic {
    margin-bottom: 20px;
  }
}

/* pager */
.webgene-pagination {
  width: 100%;
}

.webgene-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
  font-size: 17px;
}

.webgene-pagination ul li a {
  display: block;
  background: #cdcdcd;
  padding: 15px 18px;
  color: #fff;
  text-decoration: none;
}

.webgene-pagination ul li.prev a,
.webgene-pagination ul li.next a {
  color: #fff;
}

.webgene-pagination ul li a:hover {
  background: #252525;
}

.webgene-pagination ul li.selected a {
  background: #252525;
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
  .webgene-pagination ul {
    gap: 1vw 1vw;
    font-size: 1.6vw;
  }
  .webgene-pagination ul li a {
    padding: 1.2vw 1.5vw;
  }
}
@media screen and (max-width:767px) {
  .webgene-pagination {
    padding: 40px 0;
  }
}
.top-mv {
  position: relative;
  overflow: hidden;
}
.top-mv__slider {
  position: relative;
  z-index: 1;
}
.top-mv__slider .add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}
.top-mv__catch {
  position: absolute;
  width: 100%;
  z-index: 9;
  top: calc(50% - 27.5px);
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  text-align: center;
}
.top-mv__text {
  position: absolute;
  width: 100%;
  z-index: 9;
  left: 30px;
  bottom: 0;
  color: #e5e9f4;
  font-size: 110px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .top-mv__catch {
    top: calc(50% - 3vw);
    font-size: 6vw;
  }
  .top-mv__text {
    font-size: 5.5vw;
  }
}
@media screen and (max-width:767px) {
  .top-mv__catch {
    top: calc(50% - 2.625vw);
    font-size: 5.25vw;
  }
  .top-mv__text {
    font-size: 5.5vw;
    left: 6vw;
  }
}
@media screen and (max-width:479px) {
  .top-mv__slider .pic img {
    aspect-ratio: 3/5;
  }
  .top-mv__catch {
    top: calc(50% - 3.33vw);
    font-size: 6.66vw;
  }
  .top-mv__text {
    font-size: 8vw;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.top-concept {
  position: relative;
  top: -1px;
  padding: 120px 0 100px;
}
.top-concept .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-concept .frame .conts {
  width: 53%;
}
.top-concept .frame .pic {
  width: 40%;
  text-align: center;
}
.top-concept .frame .pic img {
  width: 438px;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .top-concept .frame .conts {
    width: 63%;
  }
  .top-concept .frame .pic {
    width: 36%;
  }
  .top-concept .frame .pic img {
    width: 25vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-concept {
    padding: 9vw 0 8vw;
  }
}
@media screen and (max-width:767px) {
  .top-concept {
    padding: 50px 0;
  }
  .top-concept .frame {
    display: block;
  }
  .top-concept .frame .conts {
    width: 100%;
  }
  .top-concept .frame .pic {
    width: 100%;
    margin-top: 45px;
  }
  .top-concept .frame .pic img {
    width: min(75%, 360px);
  }
}

.top-event {
  padding: 100px 0 120px;
}
.top-event__calender {
  margin-top: 60px;
  position: relative;
}
.top-event__calender iframe {
  width: 100%;
  height: 720px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-event {
    padding: 8vw 0 9vw;
  }
  .top-event__calender {
    margin-top: 5vw;
  }
  .top-event__calender iframe {
    height: 60vw;
  }
}
@media screen and (max-width:767px) {
  .top-event {
    padding: 50px 0;
  }
  .top-event__calender {
    margin-top: 30px;
  }
  .top-event__calender iframe {
    height: 100vw;
  }
}

.top-service {
  padding: 120px 0;
}
.top-service__frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 15px;
}
.top-service__pics {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 50%;
}
.top-service__pics img {
  aspect-ratio: 140/79;
}
.top-service__links {
  width: 45%;
}
.top-service__links .link {
  border-bottom: 1px solid #fff;
}
.top-service__links .link .m-btn a {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 60px 20px 0;
}
.top-service__links .link .m-btn a .m-title {
  margin-bottom: 0;
}
.top-service__links .link .m-btn a .m-title .ttl {
  margin-bottom: 10px;
  font-size: 35px;
}
.top-service__links .link .m-btn a .m-title .en {
  font-size: 19px;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .top-service__links .link .m-btn a {
    padding: 20px 10px 20px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-service {
    padding: 8vw 0;
  }
  .top-service__frame {
    margin-top: 3vw;
  }
  .top-service__pics {
    width: 55%;
  }
  .top-service__links {
    width: 42%;
  }
  .top-service__links .link .m-btn a {
    padding: 1.75vw 0;
  }
  .top-service__links .link .m-btn a .m-title .ttl {
    margin-bottom: 1vw;
    font-size: 2.5vw;
  }
  .top-service__links .link .m-btn a .m-title .en {
    font-size: 1.75vw;
  }
}
@media screen and (max-width:767px) {
  .top-service {
    padding: 50px 0;
  }
  .top-service__frame {
    display: block;
    margin-top: 30px;
  }
  .top-service__pics {
    width: 100%;
  }
  .top-service__links {
    width: 100%;
    margin-top: 10px;
  }
  .top-service__links .link .m-btn a {
    padding: 15px 0;
  }
  .top-service__links .link .m-btn a .m-title .ttl {
    font-size: min(6vw, 24px);
  }
  .top-service__links .link .m-btn a .m-title .en {
    font-size: 15px;
  }
}

.top-base {
  padding: 120px 0;
}
.top-base__frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 100px 80px;
  margin-top: 50px;
}
.top-base__box {
  width: calc(50% - 40px);
}
.top-base__box:nth-of-type(1) .top-base__pic-text p:nth-of-type(1) {
  bottom: 80px;
}
.top-base__box:nth-of-type(2) {
  position: relative;
  top: 440px;
}
.top-base__box:nth-of-type(2) .top-base__pic-text p:nth-of-type(1) {
  bottom: 130px;
}
.top-base__box:nth-of-type(3) .top-base__pic-text p:nth-of-type(2) {
  bottom: 80px;
}
.top-base__pic {
  position: relative;
}
.top-base__pic img {
  aspect-ratio: 39/26;
}
.top-base__pic-text {
  position: absolute;
  z-index: 3;
  left: 60px;
  bottom: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.top-base__pic-text p {
  position: relative;
  bottom: 0;
  background: #fff;
  padding: 20px;
  font-size: 31px;
  font-weight: 900;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
.top-base__pic-text p:nth-of-type(1) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  left: 10px;
}
.top-base__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top-base__text .pl {
  margin-top: 20px;
  width: 66%;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .top-base__frame {
    gap: 60px 40px;
  }
  .top-base__box {
    width: calc(50% - 20px);
  }
  .top-base__pic-text {
    left: 20px;
    bottom: -70px;
  }
  .top-base__pic-text p {
    padding: 15px;
    font-size: 25px;
  }
  .top-base__pic-text p:nth-of-type(1) {
    left: 10px;
  }
  .top-base__text .pl {
    width: 70%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-base {
    padding: 8vw 0;
  }
  .top-base__frame {
    gap: 4vw 3vw;
    margin-top: 4vw;
  }
  .top-base__box {
    width: calc(50% - 1.5vw);
  }
  .top-base__box:nth-of-type(1) .top-base__pic-text p:nth-of-type(1) {
    bottom: 6vw;
  }
  .top-base__box:nth-of-type(2) {
    top: 26vw;
  }
  .top-base__box:nth-of-type(2) .top-base__pic-text p:nth-of-type(1) {
    bottom: 9vw;
  }
  .top-base__box:nth-of-type(3) .top-base__pic-text p:nth-of-type(2) {
    bottom: 6vw;
  }
  .top-base__pic-text {
    left: 1.5vw;
    bottom: -2vw;
  }
  .top-base__pic-text p {
    padding: 1.2vw;
    font-size: 2vw;
  }
  .top-base__pic-text p:nth-of-type(1) {
    left: 1vw;
  }
  .top-base__text .pl {
    margin-top: 3vw;
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .top-base {
    padding: 50px 0;
  }
  .top-base__frame {
    gap: 40px;
    margin-top: 40px;
  }
  .top-base__box {
    width: 100%;
  }
  .top-base__box:nth-of-type(1) .top-base__pic-text p:nth-of-type(1) {
    bottom: 40px;
  }
  .top-base__box:nth-of-type(2) .top-base__pic-text p:nth-of-type(1) {
    bottom: 80px;
  }
  .top-base__box:nth-of-type(3) .top-base__pic-text p:nth-of-type(2) {
    bottom: 40px;
  }
  .top-base__pic-text {
    left: 20px;
    bottom: -15px;
  }
  .top-base__pic-text p {
    padding: 10px;
    font-size: min(4.5vw, 19px);
  }
  .top-base__pic-text p:nth-of-type(1) {
    left: 10px;
  }
  .top-base__text {
    display: block;
  }
  .top-base__text .pl {
    margin-top: 20px;
    width: 100%;
  }
}

.top-blog {
  padding: 100px 0 60px;
}
.top-blog__list {
  position: relative;
}
.top-blog__list .blog-list {
  margin: 60px 0 0;
}
.top-blog__list .blog-list .webgene-blog .li {
  width: calc(33.3333333333% - 44px);
}
.top-blog__list .blog-list .webgene-blog .li .pic {
  height: 490px;
}
.top-blog__list .blog-list .webgene-blog .li .pic img {
  height: 490px;
}
.top-blog__list-btn {
  position: absolute;
  left: -220px;
  top: calc(50% - 30px);
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .top-blog__list .blog-list {
    margin: 60px 0 0 20%;
  }
  .top-blog__list .blog-list .webgene-blog .li {
    width: calc(33.3333333333% - 29.3333333333px);
  }
  .top-blog__list .blog-list .webgene-blog .li .pic {
    height: 28vw;
  }
  .top-blog__list .blog-list .webgene-blog .li .pic img {
    height: 28vw;
  }
  .top-blog__list-btn {
    position: absolute;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-blog {
    padding: 8vw 0 5vw;
  }
  .top-blog__list .blog-list {
    margin: 5vw 0 0 22%;
  }
  .top-blog__list .blog-list .webgene-blog {
    gap: 3vw;
  }
  .top-blog__list .blog-list .webgene-blog .li {
    width: calc(33.3333333333% - 2vw);
  }
  .top-blog__list .blog-list .webgene-blog .li .pic {
    height: 28vw;
  }
  .top-blog__list .blog-list .webgene-blog .li .pic img {
    height: 28vw;
  }
  .top-blog__list-btn {
    top: calc(50% - 20px);
  }
}
@media screen and (max-width:767px) {
  .top-blog {
    padding: 50px 0 30px;
  }
  .top-blog__list .blog-list {
    margin: 30px auto 0;
  }
  .top-blog__list .blog-list .webgene-blog .li {
    width: calc(33.3333333333% - 3.3333333333vw);
  }
  .top-blog__list .blog-list .webgene-blog .li .pic {
    height: 33.33vw;
  }
  .top-blog__list .blog-list .webgene-blog .li .pic img {
    height: 33.33vw;
  }
  .top-blog__list-btn {
    position: relative;
    left: auto;
    top: auto;
    margin: 40px auto 0;
  }
  .top-blog__list-btn a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width:479px) {
  .top-blog__list .blog-list .webgene-blog .li {
    margin: 0 auto;
    width: min(400px,100%);
  }
  .top-blog__list .blog-list .webgene-blog .li .pic {
    height: 120vw;
  }
  .top-blog__list .blog-list .webgene-blog .li .pic img {
    height: 120vw;
  }
}

.top-insta {
  padding: 60px 0 180px;
}
.top-insta__frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  margin-top: 60px;
}
.top-insta__frame .webgene-blog {
  width: calc(75% - 0.5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
}
.top-insta__frame .webgene-blog .webgene-item {
  width: calc(33.3333333333% - 0.6666666667px);
}
.top-insta__frame-box .pic {
  width: 100%;
  overflow: hidden;
}
.top-insta__frame-box .pic img,
.top-insta__frame-box .pic video {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-insta__frame-btn {
  width: calc(25% - 0.5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0e1e4d;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-insta {
    padding: 5vw 0 12vw;
  }
  .top-insta__frame {
    margin-top: 4vw;
  }
}
@media screen and (max-width:767px) {
  .top-insta {
    padding: 50px 0 75px;
  }
  .top-insta__frame {
    margin: 30px auto 0;
    width: min(400px,100%);
    display: block;
  }
  .top-insta__frame .webgene-blog {
    width: 100%;
    display: block;
  }
  .top-insta__frame .webgene-blog .webgene-item {
    width: 100%;
  }
  .top-insta__frame-box {
    margin-bottom: 1px;
  }
  .top-insta__frame-btn {
    width: 100%;
    padding: 30px 0;
  }
}

/*--- concept ---*/
.cpt-concept {
  padding: 80px 0 120px;
}
.cpt-concept .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cpt-concept .frame .conts {
  width: 52%;
}
.cpt-concept .frame .pic {
  width: 44%;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .cpt-concept .frame .conts {
    width: 58%;
  }
  .cpt-concept .frame .pic {
    width: 37.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .cpt-concept {
    padding: 7vw 0 9vw;
  }
  .cpt-concept .frame .conts {
    width: 53%;
  }
  .cpt-concept .frame .pic {
    width: 44%;
  }
}
@media screen and (max-width:767px) {
  .cpt-concept {
    padding: 50px 0;
  }
  .cpt-concept .frame {
    gap: 30px;
  }
  .cpt-concept .frame .conts {
    width: 100%;
  }
  .cpt-concept .frame .pic {
    margin: 0 auto;
    width: min(400px,100%);
  }
}

.cpt-stg {
  padding: 120px 0 20px;
}
.cpt-stg__frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0 100px;
}
.cpt-stg__frame .conts {
  width: 50%;
}
.cpt-stg__frame .pic {
  width: 47.56%;
}
.cpt-stg__frame.opposite .conts {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .cpt-stg__frame .conts {
    width: 50%;
  }
  .cpt-stg__frame .conts .pl {
    line-height: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .cpt-stg {
    padding: 8vw 0 1vw;
  }
  .cpt-stg__frame {
    margin: 3vw 0 7vw;
  }
  .cpt-stg__frame .conts {
    width: 60%;
  }
  .cpt-stg__frame .pic {
    width: 37%;
  }
}
@media screen and (max-width:767px) {
  .cpt-stg {
    padding: 50px 0 20px;
  }
  .cpt-stg__frame {
    display: block;
    margin: 0 0 40px;
  }
  .cpt-stg__frame .conts {
    width: 100%;
  }
  .cpt-stg__frame .pic {
    width: min(400px,100%);
    margin: 30px auto 0;
  }
}

/*--- camp ---*/
.camp-service {
  padding: 100px 0 0;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .camp-service {
    padding: 8vw 0 0;
  }
}
@media screen and (max-width:767px) {
  .camp-service {
    padding: 50px 0 0;
  }
}

.camp-info {
  padding: 70px 0 120px;
}
.camp-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 70px;
  margin-top: 40px;
}
.camp-info__list-box {
  width: calc(33.3333333333% - 46.6666666667px);
}
.camp-info__list-box a {
  color: #002a88;
}
.camp-info__list-box a:hover {
  text-decoration: underline;
}
.camp-info__list-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.camp-info__list-add_pic {
  width: 45%;
}
.camp-info__list-add .p {
  width: 50%;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .camp-info__list {
    gap: 0 40px;
  }
  .camp-info__list-box {
    width: calc(33.3333333333% - 26.6666666667px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .camp-info {
    padding: 8vw 0 9vw;
  }
  .camp-info__list {
    gap: 0 3vw;
    margin-top: 3vw;
  }
  .camp-info__list-box {
    width: calc(33.3333333333% - 2vw);
  }
}
@media screen and (max-width:767px) {
  .camp-info {
    padding: 50px 0;
  }
  .camp-info__list {
    gap: 40px;
    margin-top: 30px;
  }
  .camp-info__list-box {
    width: 100%;
  }
  .camp-info__list-box .pic {
    margin: 0 auto 15px;
    width: min(400px,100%);
  }
  .camp-info__list-add {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .camp-info__list-add .p {
    font-size: 14px;
  }
}

.camp-point__atte {
  margin-top: 50px;
  padding: 30px 40px;
  border-top: 1px solid #e5f4e5;
  border-bottom: 1px solid #e5f4e5;
}
.camp-point__atte .ttl {
  font-size: 35px;
  font-weight: 900;
}
.camp-point__atte .subttl {
  margin: 30px 0 10px;
  font-size: 17px;
  font-weight: 700;
}
.camp-point__atte .pm {
  margin-left: 17px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .camp-point__atte {
    margin-top: 4vw;
    padding: 2.5vw 3vw;
  }
  .camp-point__atte .ttl {
    font-size: 3vw;
  }
  .camp-point__atte .subttl {
    margin: 2.5vw 0 1vw;
    font-size: 1.6vw;
  }
  .camp-point__atte .pm {
    margin-left: 1.6vw;
  }
}
@media screen and (max-width:767px) {
  .camp-point__atte {
    margin-top: 30px;
    padding: 20px 4vw;
  }
  .camp-point__atte .ttl {
    font-size: min(7vw, 25px);
  }
  .camp-point__atte .subttl {
    margin: 20px 0 10px;
    font-size: 15px;
  }
  .camp-point__atte .pm {
    margin-left: 15px;
  }
}

/*--- drum ---*/
.drum-service {
  padding: 0 0 75px;
}
.drum-service__title {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5f4e5;
}
.drum-service__title .ttl {
  font-size: 35px;
  font-weight: 900;
  line-height: 2;
}
.drum-service__text {
  margin-bottom: 15px;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.8;
}
.drum-service__pics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.drum-service__pics .ps {
  margin-top: 5px;
}
.drum-service__pics-box .frame {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
  border: 1px solid #e5f4e5;
}
.drum-service__pics-box .frame .pic {
  width: 52%;
}
.drum-service__pics-box .frame .conts {
  width: 46%;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .drum-service {
    padding: 0 0 6vw;
  }
  .drum-service__title {
    margin-top: 7.5vw;
    margin-bottom: 3vw;
    padding-bottom: 1vw;
  }
  .drum-service__title .ttl {
    font-size: 3vw;
  }
  .drum-service__text {
    margin-bottom: 1.5vw;
    font-size: 2.2vw;
  }
  .drum-service__pics {
    gap: 4vw;
    margin-top: 4vw;
  }
  .drum-service__pics .ps {
    margin-top: 0.5vw;
  }
  .drum-service__pics-box {
    max-width: calc(50% - 2vw);
  }
  .drum-service__pics-box .frame {
    padding: 1.5vw;
    gap: 2vw;
  }
  .drum-service__pics-box .frame .pic {
    width: 100%;
  }
  .drum-service__pics-box .frame .conts {
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .drum-service {
    padding: 0 0 25px;
  }
  .drum-service__title {
    margin-top: 40px;
    display: block;
    margin-bottom: 30px;
  }
  .drum-service__title .ttl {
    font-size: min(7vw, 25px);
    line-height: 1.5;
  }
  .drum-service__title .p {
    margin-top: 5px;
    text-align: right;
  }
  .drum-service__text {
    font-size: min(6vw, 22px);
    line-height: 1.6875;
  }
  .drum-service__pics {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
  .drum-service__pics .ps {
    text-align: center;
  }
  .drum-service__pics-box .frame {
    gap: 15px;
    padding: 15px;
  }
  .drum-service__pics-box .frame .pic {
    width: 100%;
  }
  .drum-service__pics-box .frame .conts {
    width: 100%;
  }
  .drum-service__pics-box .frame .conts .ps {
    text-align: left;
  }
}

/*--- gun ---*/
.gun-products .pics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
.gun-products .pics .pic {
  width: 48%;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .gun-products .pics {
    margin-top: 5vw;
  }
}
@media screen and (max-width:479px) {
  .gun-products .pics {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px 0;
    margin-top: 30px;
  }
  .gun-products .pics .pic {
    width: 100%;
  }
}

.gun-ggmg {
  padding: 120px 0 0;
}
.gun-ggmg__ttl {
  margin-bottom: 30px;
  padding: 0 70px;
  background: url("../../system_panel/uploads/images/ggmg_left.png") no-repeat, url("../../system_panel/uploads/images/ggmg_right.png") no-repeat;
  background-position: left 50px bottom, right 50px bottom;
  background-size: 65px auto;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.75;
  text-align: center;
}
.gun-ggmg__youtube {
  width: min(100%, 1300px);
  margin: auto;
  aspect-ratio: 16/9;
}
.gun-ggmg__youtube iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .gun-ggmg {
    padding: 9vw 0 0;
  }
  .gun-ggmg__ttl {
    margin-bottom: 2.5vw;
    padding: 0 6vw;
    background-position: left bottom, right bottom;
    background-size: 5vw auto;
    font-size: 3vw;
  }
}
@media screen and (max-width:767px) {
  .gun-ggmg {
    padding: 50px 0 0;
  }
  .gun-ggmg__ttl {
    margin-bottom: 15px;
    padding: 0 8vw;
    background-position: left bottom, right bottom;
    background-size: 6vw auto;
    font-size: min(4.5vw, 20px);
    line-height: 1.5;
  }
  .gun-ggmg__ttl br {
    display: none;
  }
}

/*--- base ---*/
.base-place {
  padding: 80px 0 120px;
}
.base-place .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
.base-place .frame .pic {
  width: 45.12%;
}
.base-place .frame .conts {
  width: 50%;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .base-place {
    padding: 7vw 0 9vw;
  }
  .base-place .frame {
    margin-bottom: 5vw;
  }
}
@media screen and (max-width:767px) {
  .base-place {
    padding: 50px 0;
  }
  .base-place .frame {
    display: block;
    margin-bottom: 30px;
  }
  .base-place .frame .pic {
    margin: 0 auto 30px;
    width: min(400px,100%);
  }
  .base-place .frame .conts {
    width: 100%;
  }
}

.base-map {
  padding: 100px 0 75px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .base-map {
    padding: 8vw 0 6vw;
  }
}
@media screen and (max-width:767px) {
  .base-map {
    padding: 50px 0;
  }
}

.base-info {
  padding: 75px 0 0;
}
.base-info__frame {
  padding: 80px 0 0;
}
.base-info .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
  margin-bottom: 40px;
}
.base-info .frame .conts {
  width: 50%;
}
.base-info .frame .pic {
  margin-top: 150px;
  width: 40%;
}
.base-info__pics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}
.base-info__pics .pic {
  width: calc(25% - 18.75px);
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .base-info .frame {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .base-info .frame .conts {
    width: 57%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .base-info {
    padding: 6vw 0 0;
  }
  .base-info__frame {
    padding: 6vw 0 0;
  }
  .base-info .frame {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 4vw;
  }
  .base-info .frame .conts {
    width: 57%;
  }
  .base-info .frame .pic {
    margin-top: 15vw;
    width: 40%;
  }
  .base-info__pics {
    gap: 2vw;
  }
  .base-info__pics .pic {
    width: calc(25% - 1.5vw);
  }
}
@media screen and (max-width:767px) {
  .base-info {
    padding: 50px 0 0;
  }
  .base-info__frame {
    padding: 40px 0 0;
  }
  .base-info .frame {
    display: block;
    margin-bottom: 15px;
  }
  .base-info .frame .conts {
    width: 100%;
  }
  .base-info .frame .pic {
    margin: 30px auto 0;
    width: min(400px,100%);
  }
  .base-info__pics {
    gap: 15px;
  }
  .base-info__pics .pic {
    width: calc(50% - 7.5px);
  }
}

/*--- company ---*/
.cmp-message {
  padding: 80px 0 90px;
}
.cmp-message .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4%;
  margin-top: 60px;
}
.cmp-message .frame .conts {
  width: 60%;
}
.cmp-message .frame .president {
  width: 23.17%;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .cmp-message .frame {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
  .cmp-message .frame .conts {
    width: 70%;
  }
  .cmp-message .frame .president {
    width: 27%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .cmp-message {
    padding: 7vw 0 8vw;
  }
  .cmp-message .frame {
    margin-top: 5vw;
  }
  .cmp-message .frame .conts {
    width: 64%;
  }
  .cmp-message .frame .president {
    width: 33%;
  }
}
@media screen and (max-width:767px) {
  .cmp-message {
    padding: 50px 0;
  }
  .cmp-message .frame {
    display: block;
    margin-top: 0;
  }
  .cmp-message .frame .conts {
    width: 100%;
  }
  .cmp-message .frame .president {
    margin: 30px auto 0;
    width: min(400px,100%);
  }
}

.cmp-about {
  padding: 130px 0 150px;
}
.cmp-about .dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cmp-about .dl > div .dt,
.cmp-about .dl > div .dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}
.cmp-about .dl > div .dt {
  width: 25%;
  padding: 0 80px;
  border-bottom: 1px solid #b98d0c;
}
.cmp-about .dl > div .dd {
  width: 75%;
  padding: 0 60px;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .cmp-about {
    padding: 9vw 0 10vw;
  }
  .cmp-about .dl > div .dt,
  .cmp-about .dl > div .dd {
    height: 12vw;
  }
  .cmp-about .dl > div .dt {
    padding: 0 5vw;
  }
  .cmp-about .dl > div .dd {
    padding: 0 5vw;
  }
}
@media screen and (max-width:767px) {
  .cmp-about {
    padding: 50px 0;
  }
  .cmp-about .dl {
    border-top: 1px solid #b98d0c;
  }
  .cmp-about .dl > div {
    display: block;
  }
  .cmp-about .dl > div .dt,
  .cmp-about .dl > div .dd {
    display: block;
    height: auto;
  }
  .cmp-about .dl > div .dt {
    width: 100%;
    padding: 20px 0 0;
    border-bottom: none;
  }
  .cmp-about .dl > div .dd {
    width: 100%;
    padding: 10px 0 20px;
  }
}

.googlemap iframe {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .googlemap iframe {
    height: 25vw;
  }
}
@media screen and (max-width:767px) {
  .googlemap iframe {
    height: 240px;
  }
}

/*--- contact ---*/
.contact {
  padding: 70px 0 100px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .contact {
    padding: 6vw 0 8vw;
  }
}
@media screen and (max-width:767px) {
  .contact {
    padding: 50px 0;
  }
}

.complete {
  padding: 75px 0;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .complete {
    padding: 7vw 0;
  }
}
@media screen and (max-width:767px) {
  .complete {
    padding: 50px 0;
  }
}

.u-mt__10 {
  margin-top: 10px;
}
.u-mt__20 {
  margin-top: 20px;
}
.u-mt__30 {
  margin-top: 30px;
}
.u-mt__40 {
  margin-top: 40px;
}
.u-mt__50 {
  margin-top: 50px;
}
.u-mt__60 {
  margin-top: 60px;
}
.u-mt__70 {
  margin-top: 70px;
}
.u-mt__80 {
  margin-top: 80px;
}
.u-mt__90 {
  margin-top: 90px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .u-mt__10 {
    margin-top: 1vw;
  }
  .u-mt__20 {
    margin-top: 2vw;
  }
  .u-mt__30 {
    margin-top: 2.8vw;
  }
  .u-mt__40 {
    margin-top: 3.6vw;
  }
  .u-mt__50 {
    margin-top: 4.4vw;
  }
  .u-mt__60 {
    margin-top: 5vw;
  }
  .u-mt__70 {
    margin-top: 6vw;
  }
  .u-mt__80 {
    margin-top: 6.75vw;
  }
  .u-mt__90 {
    margin-top: 7.5vw;
  }
}
@media screen and (max-width:767px) {
  .u-mt__10 {
    margin-top: 6px;
  }
  .u-mt__20 {
    margin-top: 12px;
  }
  .u-mt__30 {
    margin-top: 18px;
  }
  .u-mt__40 {
    margin-top: 24px;
  }
  .u-mt__50 {
    margin-top: 30px;
  }
  .u-mt__60 {
    margin-top: 36px;
  }
  .u-mt__70 {
    margin-top: 42px;
  }
  .u-mt__80 {
    margin-top: 48px;
  }
  .u-mt__90 {
    margin-top: 54px;
  }
}

.u-mb__10 {
  margin-bottom: 10px;
}
.u-mb__20 {
  margin-bottom: 20px;
}
.u-mb__30 {
  margin-bottom: 30px;
}
.u-mb__40 {
  margin-bottom: 40px;
}
.u-mb__50 {
  margin-bottom: 50px;
}
.u-mb__60 {
  margin-bottom: 60px;
}
.u-mb__70 {
  margin-bottom: 70px;
}
.u-mb__80 {
  margin-bottom: 80px;
}
.u-mb__90 {
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .u-mb__10 {
    margin-bottom: 1vw;
  }
  .u-mb__20 {
    margin-bottom: 2vw;
  }
  .u-mb__30 {
    margin-bottom: 2.8vw;
  }
  .u-mb__40 {
    margin-bottom: 3.6vw;
  }
  .u-mb__50 {
    margin-bottom: 4.4vw;
  }
  .u-mb__60 {
    margin-bottom: 5vw;
  }
  .u-mb__70 {
    margin-bottom: 6vw;
  }
  .u-mb__80 {
    margin-bottom: 6.75vw;
  }
  .u-mb__90 {
    margin-bottom: 7.5vw;
  }
}
@media screen and (max-width:767px) {
  .u-mb__10 {
    margin-bottom: 6px;
  }
  .u-mb__20 {
    margin-bottom: 12px;
  }
  .u-mb__30 {
    margin-bottom: 18px;
  }
  .u-mb__40 {
    margin-bottom: 24px;
  }
  .u-mb__50 {
    margin-bottom: 30px;
  }
  .u-mb__60 {
    margin-bottom: 36px;
  }
  .u-mb__70 {
    margin-bottom: 42px;
  }
  .u-mb__80 {
    margin-bottom: 48px;
  }
  .u-mb__90 {
    margin-bottom: 54px;
  }
}
/*# sourceMappingURL=style.css.map */