@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; }

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-transition: border-box;
  box-sizing: border-box;
  overflow-x: hidden; }

body {
  -webkit-text-size-adjust: 100%; }

html, body, div, span, iframe, h1, h2, h3, p, blockquote, a, cite, code, img, ins, small, strong, var, b, i, dl, dt, dd, ul, li, label, table, tbody, tr, th, td, embed, figure, footer, header, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0; }

h1 {
  font-size: 2em; }

b, strong {
  font-weight: bold !important; }

code {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

small {
  font-size: 80%; }

input, optgroup, select, textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */ }

input {
  /* 1 */
  overflow: visible;
  -webkit-transition: all .2s ease-in-out 0s;
  -o-transition: all .2s ease-in-out 0s;
  transition: all .2s ease-in-out 0s; }

select {
  /* 1 */
  text-transform: none; }

input, select {
  vertical-align: middle; }

input:focus {
  outline: 0; }

textarea {
  overflow: auto; }

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

[type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button; }

[type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

[type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

[hidden] {
  display: none; }

blockquote {
  quotes: none; }

blockquote:after, blockquote:before {
  content: "";
  content: none; }

figure, footer, header, nav, section {
  display: block; }

img {
  vertical-align: top;
  border-style: none;
  line-height: 0;
  font-size: 0;
  -ms-interpolation-mode: bicubic;
  background: 0 0;
  zoom: 1; }

ul {
  list-style: none; }

a {
  background-color: transparent;
  text-decoration: none;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
  background: 0 0; }

a:focus {
  outline: 0; }

a img {
  opacity: 1;
  -webkit-transition: ease-out 0.3s;
  -o-transition: ease-out 0.3s;
  transition: ease-out 0.3s; }

a img:hover {
  opacity: 0.7;
  -webkit-transition: ease-out 0.3s;
  -o-transition: ease-out 0.3s;
  transition: ease-out 0.3s; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

a, input {
  -webkit-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s; }

/*====================================================================================
■01.MARGIN DEFAULT
====================================================================================*/
.mt10 {
  margin-top: 10px !important; }

.mt15 {
  margin-top: 15px !important; }

.mt20 {
  margin-top: 20px !important; }

.mr05 {
  margin-right: 5px !important; }

.ml05 {
  margin-left: 5px !important; }

/*====================================================================================
■PADDING DEFAULT
====================================================================================*/
/*====================================================================================
■WIDTH DEFAULT
====================================================================================*/
.w35 {
  width: 35% !important; }

.w40 {
  width: 40% !important; }

.w60 {
  width: 60% !important; }

/*====================================================================================
■MARGIN% DEFAULT
====================================================================================*/
.text_center {
  text-align: center !important; }

.text_bold {
  font-weight: bold !important; }

.lh00 {
  line-height: 0 !important; }

.dispc {
  display: block; }

@media all and (max-width: 768px) {
  .dispc {
    display: none; } }

.dissp {
  display: block; }

@media all and (min-width: 769px) {
  .dissp {
    display: none; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

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

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

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }

.fixie body {
  overflow: visible; }

.fixie .custom-object-fit {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat; }

.fixie .custom-object-fit img {
  opacity: 0; }

.fixie .custom-object-fit {
  background-size: cover; }

@-webkit-keyframes gonoloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes gonoloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes wave {
  0%, 40%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    background-color: #eee; }
  10% {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
    background-color: #000; } }

@keyframes wave {
  0%, 40%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    background-color: #eee; }
  10% {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
    background-color: #000; } }

.header_top .container {
  max-width: 100%;
  padding: 0 25px; }

.header_top_logo {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%; }

.header_top_logo a {
  line-height: 0; }

.header_top_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%; }

.header_nav {
  position: relative;
  z-index: 98;
  width: 100%; }

.header_nav .header_nav_inside {
  min-width: inherit; }

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex_end;
  -webkit-justify-content: flex_end;
  -ms-flex-pack: flex_end;
  justify-content: flex_end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.nav-list-item a {
  font-size: 18px;
  line-height: 1;
  color: #000000;
  text-decoration: none;
  display: block;
  font-weight: 300;
  padding: 10px 0px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 1px;
  position: relative;
  margin-left: 60px; }

.nav-list-item a:last-child {
  margin-right: 0; }

@media all and (min-width: 1300px) {
  .nav-list-item a {
    padding: 10px 0px; } }

.nav-list-item a span {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-top: 7px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, 'MS UI Gothic', sans-serif !important;
  letter-spacing: normal; }

@media all and (min-width: 769px) {
  .nav-list-item a::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #000000;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
 /* .nav-list-item a:hover {
    opacity: 0.8;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .nav-list-item a:hover::before {
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; } 
*/
  .nav-list-item a:hover {
    opacity: 0.8;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #000;
    color: #fff;
  }
}
.navstate_show .header_nav .nav-list {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.footer * {
  font-size: 13px;
  color: #A5A8AB; }

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 45px; }

.footer .info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32%;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch; }

.footer .info .logo {
  margin-bottom: 25px;
  background: #fff;
  display: block; }

.footer .info .map a {
  text-decoration: underline;
  margin-top: 30px;
  display: inline-block; }

.footer .navft {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 68%;
  -ms-flex: 0 0 68%;
  flex: 0 0 68%;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 20px; }

.footer .navft a {
  display: inline-block;
  position: relative; }

@media all and (min-width: 769px) {
  .footer .navft a::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #000000;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .footer .navft a:hover {
    opacity: 0.8;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .footer .navft a:hover::before {
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #A5A8AB; } }

.footer .navft ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px; }

.footer .navft ul li::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #A5A8AB;
  border-right: 1px solid #A5A8AB;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 5px;
  left: 0; }

.footer .navft ul dl dd {
  position: relative;
  padding-left: 15px;
  margin-top: 10px; }

.footer .navft ul dl dd::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 1px;
  background: #A5A8AB;
  top: 10px;
  left: 0; }

.footer-bottom p {
  font-size: 11px;
  background: #F0F3F5;
  text-align: center;
  padding: 7px 0; }

.footer .backtop {
  width: 100%;
  max-width: 100%;
  position: fixed;
  z-index: 8;
  bottom: 22px;
  right: 0; }

.footer .backtop-icon {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 0;
  right: 25px;
  zoom: 1;
  text-align: right;
  z-index: 8; }

.btn-page {
  width: 100%; }

.btn-page a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: transparent;
  height: 43px;
  border: 1px solid #000000;
  padding: 0 20px;
  z-index: 2;
  overflow: hidden;
  position: relative; }

.btn-page a span {
  z-index: 2;
  display: block;
  padding-left: 20px; }

.btn-page a::before {
  position: absolute;
  content: "";
  background: url("../common_img/icon_contact_footer.png") no-repeat center center;
  width: 16px;
  height: 13px;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 22px;
  margin: auto 0; }

.btn-page a:after {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

@media all and (min-width: 769px) {
  .btn-page a:hover {
    color: #fff; }
  .btn-page a:hover::after {
    -webkit-transform: scale(2) rotate(180deg);
    -ms-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    background: #000000; }
  .btn-page a:hover::before {
    background: url("../common_img/icon_contact_white.png") no-repeat center center; } }

.btn-ct {
  width: 176px;
  margin: 0 15px; }

.btn-ct a span {
  font-size: 15px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
  top: 2px; }

.btn-company {
  width: 240px; }

.btn-company a::before {
  background: url("../common_img/icon_company.png") no-repeat center center; }

@media all and (min-width: 769px) {
  .btn-company a:hover::before {
    background: url("../common_img/icon_company_white.png") no-repeat center center; } }

.btn-main {
  width: 340px; }

.btn-main a {
  height: 80px; }

.btn-main a::before {
  background: url("../common_img/icon-btn-black.png") no-repeat center center;
  width: 15px;
  height: 15px;
  background-size: contain;
  left: auto;
  right: 15px; }

.btn-main a span {
  font-size: 15px;
  padding-left: 0; }

@media all and (min-width: 769px) {
  .btn-main a:hover::before {
    background: url("../common_img/icon-btn-white.png") no-repeat center center; } }

@media all and (max-width: 768px) {
  .btn-main {
    margin: 0 auto; } }

.btn-icon a span {
  position: relative;
  padding-left: 0; }

.btn-icon a span::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0; }

.insta-btn a span::before {
  background: url("../common_img/icon_insta.png") no-repeat center center;
  width: 18px;
  height: 18px;
  background-size: contain;
  left: -35px; }

.insta-btn a:hover span::before {
  background: url("../common_img/icon_insta_w.png") no-repeat center center; }

.tw-btn a span::before {
  background: url("../common_img/icon_tw.png") no-repeat center center;
  width: 21px;
  height: 17px;
  background-size: contain;
  left: -45px; }

.tw-btn a:hover span::before {
  background: url("../common_img/icon_tw_w.png") no-repeat center center; }

.youtu-btn a span {
  padding-left: 45px; }

.youtu-btn a span::before {
  background: url("../common_img/icon_youtube.png") no-repeat center center;
  width: 23px;
  height: 16px;
  background-size: contain; }

.youtu-btn a:hover span::before {
  background: url("../common_img/icon_youtube_w.png") no-repeat center center; }

.contact-btn a span::before {
  background: url("../common_img/icon_contact.png") no-repeat center center;
  width: 23px;
  height: 16px;
  background-size: contain;
  left: -60px; }

.contact-btn a:hover span::before {
  background: url("../common_img/icon_contact_white.png") no-repeat center center; }

.download-btn a span::before {
  background: url("../common_img/icon_download.png") no-repeat center center;
  width: 23px;
  height: 16px;
  background-size: contain;
  left: -60px; }

.download-btn a:hover span::before {
  background: url("../common_img/icon_download_w.png") no-repeat center center; }

.fixie .btn-company a span, .fixie .contact-btn a span, .fixie .download-btn a span {
  position: relative;
  top: 2px; }

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, 'MS UI Gothic', sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  color: #1C2833; }

body p {
  font-size: 14px;
  line-height: 2;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, 'MS UI Gothic', sans-serif !important;
  color: #1C2833;
  font-weight: 500; }

body a {
  color: #1C2833;
  line-height: normal; }

body img, body iframe {
  max-width: 100%;
  line-height: 0; }

body .img {
  overflow: hidden;
  line-height: 0; }

body .img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 4s;
  -o-transition-duration: 4s;
  transition-duration: 4s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: transform, -webkit-transform; }

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flexbox_start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

html {
  overflow-x: hidden; }

.container {
  max-width: 1200px;
  margin: 0 auto; }

@media all and (max-width: 1200px) {
  .container {
    max-width: 100%; } }

@media all and (max-width: 960px) {
  .container {
    max-width: 768px; } }

@media all and (max-width: 768px) {
  .container {
    max-width: 520px; } }

@media all and (max-width: 520px) {
  .container {
    max-width: 100%;
    padding: 0 3% !important; } }

.container_large {
  max-width: 1400px;
  margin: 0 auto; }

@media all and (max-width: 1400px) {
  .container_large {
    max-width: 1200px; } }

@media all and (max-width: 1200px) {
  .container_large {
    max-width: 960px; } }

@media all and (max-width: 960px) {
  .container_large {
    max-width: 768px; } }

@media all and (max-width: 768px) {
  .container_large {
    max-width: 520px; } }

@media all and (max-width: 520px) {
  .container_large {
    max-width: 100%;
    padding: 0 3% !important; } }

.container_large .container {
  padding: 0; }

.titpage {
  margin-bottom: 40px; }

.titpage h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2; }

.titpage h2 span {
  font-size: 20px;
  font-weight: bold;
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, 'MS UI Gothic', sans-serif !important;
  letter-spacing: 1px; }

.seccommon {
  background: url(../common_img/bg_footer.jpg) no-repeat center center;
  background-size: cover;
  padding: 45px 0;
  color: #ffffff; }

.seccommon p {
  color: #ffffff; }

.seccommon .btn-main {
  width: 300px; }

.seccommon .btn-main a {
  height: 54px;
  border: none;
  background: #ffffff; }

.seccommon .contact-box {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px; }

.seccommon .contact-box--ins:first-child {
  margin-right: 40px; }

.seccommon .contact-box--ins:first-child p span, .seccommon .contact-box--ins:first-child p a {
  font-size: 35px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 3px;
  font-weight: 300;
  color: #ffffff; }

@media all and (max-width: 768px) {
  .seccommon .contact-box--ins:first-child {
    margin-right: 0; } }

.seccommon .contact-box--ins:last-child .btn-main:not(:last-child) {
  margin-bottom: 10px; }

/* hover event */
.footer .navft a {
  position: relative; }

.footer .navft a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  width: 0;
  height: 1px;
  margin: 0 auto;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s; }

.footer .navft a:hover::before {
  width: 100%;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s; }

p.map a:hover {
  opacity: .7; }

/* souma page */
.txt-link a {
  display: block; }

.txt-link a span {
  font-size: 13px; }

.txt-link a:first-child {
  margin-bottom: 3px; }

.txttel {
  margin-left: 30px; }

.txttel span {
  font-size: 24px;
  display: inline-block;
  margin-left: 15px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 3px; }

.header {
  margin: 10px 0 30px; }

#nav {
  margin-top: 10px; }

#nav .container {
  max-width: 100%;
  padding: 0 25px; }

@media all and (max-width: 1400px) {
  #nav .container {
    padding: 0 10px; } }

@media all and (min-width: 769px) {
  .underline-link {
    position: relative; } }

@media all and (min-width: 769px) and (min-width: 769px) {
  .underline-link::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #000000;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .underline-link:hover {
    opacity: 0.8;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .underline-link:hover::before {
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; } }

.main-tit {
  margin-bottom: 60px; }

.main-tit h2 {
  font-size: 30px;
  font-weight: 500;
  color: #6E7C8E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex_start;
  -webkit-justify-content: flex_start;
  -ms-flex-pack: flex_start;
  justify-content: flex_start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.main-tit h2 span.lg-txt {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: 20px;
  color: #000000; }

.main-tit h2 figure img {
  position: relative;
  top: 0; }

.main-tit p {
  color: #6E7C8E;
  font-weight: 500; }

.main-tit p span.lg-txt {
  font-size: 16px; }

.tit-style2 h2 {
  font-size: 44px;
  color: #000000; }

.tit-style2 h2 span.lg-txt {
  letter-spacing: 5px;
  position: relative;
  font-size: 44px;
  padding-top: 90px; }

.tit-style2 h2 span.lg-txt::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 60px;
  background: #F4F5F6;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 0; }

.tit-style2 p {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 2px; }

.tit-center h2 {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.tit-center p {
  text-align: center; }

h3.sc-tit {
  font-size: 27px;
  margin-bottom: 10px; }

h3.sc-tit span {
  font-size: 25px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  display: block;
  letter-spacing: 2px; }

.tit-style3 {
  margin-bottom: 20px; }

.tit-style3 h2 span.lg-txt::before {
  left: 5px;
  right: auto;
  background: #6E7C8E; }

.tit-black {
  margin-bottom: 60px; }

.tit-black h2 span.lg-txt {
  padding-top: 60px; }

.tit-black h2 span.lg-txt::before {
  height: 42px;
  background: #6E7C8E;
  margin-top: 0; }

.tit-white {
  margin-bottom: 10px; }

.tit-white h2 {
  color: #ffffff; }

.tit-white p {
  color: #ffffff; }

.tit-white h2 span.lg-txt {
  color: #ffffff; }

@media all and (max-width: 768px) {
  .btn-main a::before, .btn-main input::before {
    background: url(../common_img/icon-btn-black_sp.png) no-repeat center center;
    background-size: contain; }
  .sv-btn {
    position: relative; }
  .sv-btn img {
    display: none; }
  .sv-btn::before {
    position: absolute;
    content: "";
    background: url(../common_img/icon-btn-white_sp.png) no-repeat center center;
    width: 15px;
    height: 15px;
    background-size: contain;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }
  .download-btn a span::before {
    background: url(../common_img/icon_download_sp.png) no-repeat center center;
    background-size: contain; }
  .contact-btn a span::before {
    background: url(../common_img/icon_contact_sp.png) no-repeat center center;
    background-size: contain; }
  .section5 .btn-news span::before {
    background: url(../common_img/icon-btn-black_sp.png) no-repeat center center;
    background-size: contain; }
  .insta-btn a span::before {
    background: url(../common_img/icon_insta_sp.png) no-repeat center center;
    background-size: contain; }
  .tw-btn a span::before {
    background: url(../common_img/icon_tw_sp.png) no-repeat center center;
    background-size: contain; }
  .youtu-btn a span::before {
    background: url(../common_img/icon_youtube_sp.png) no-repeat center center;
    background-size: contain; }
  .footer .navft {
    display: none; }
  .footer .info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center; }
  .sp-btn-contact {
    margin: 0 30px; }
  .sp-btn-contact a {
    display: block; }
  .navstate_show .header_nav .nav-list {
    display: block;
    width: 100%; }
  .navstate_show .header_nav .nav-list .nav-list-item a {
    margin-left: 0;
    padding: 20px;
    color: #ffffff;
    border-top: 1px solid #6E7C8E; }
  .navstate_show .header_nav .nav-list .nav-list-item a .txt {
    display: none; }
  .navstate_show .header_nav .nav-list .nav-list-item a span {
    font-size: 25px;
    margin-top: 0; }
  #nav {
    background: #1C2834; }
  .hamburger {
    width: 57px;
    height: 57px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .hamburger_inside {
    height: 70%;
    width: 70%;
    z-index: 99;
    position: relative; }
  .hamburger_inside span {
    height: 5px;
    position: absolute;
    background: #000000;
    display: inline-block;
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 10px; }
  .hamburger_inside span:first-child {
    top: 0; }
  .hamburger_inside span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute; }
  .hamburger_inside span:last-child {
    bottom: 0; }
  .nav-sp {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .txttel-sp {
    margin-bottom: 20px; }
  .txttel-sp a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%; }
  .txttel-sp a span {
    color: #ffffff;
    font-size: 48px;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 2px;
    color: #6E7C8E;
    display: block;
    margin-left: 20px; }
  .txttel-sp a img {
    position: relative;
    top: -3px; }
  .nav-sp-bottom {
    border-top: 1px solid #6E7C8E;
    padding: 20px; }
  .nav-sp-bottom .nav-sp {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .nav-sp-bottom .btn-page a {
    border: 1px solid #6E7C8E; }
  .nav-sp-bottom .btn-page a span {
    color: #6E7C8E; }
  .nav-sp-bottom .btn-ct {
    width: 100%; }
  .nav-sp-bottom .btn-ct a {
    height: 80px; }
  .nav-sp-bottom .btn-ct a::before {
    background: url(../common_img/sp_icon002.png) no-repeat center center;
    background-size: contain;
    width: 30px;
    height: 24px; }
  .nav-sp-bottom .btn-ct a span {
    font-size: 27px; }
  .nav-sp-bottom .btn-company {
    width: 100%; }
  .nav-sp-bottom .btn-company a {
    height: 80px; }
  .nav-sp-bottom .btn-company a::before {
    background: url(../common_img/sp_icon003.png) no-repeat center center;
    background-size: contain;
    width: 26px;
    height: 30px; }
  .nav-sp-bottom .btn-company a span {
    font-size: 23px; }
  .nav-sp-bottom .txtcontact {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%; }
  .nav-sp-bottom .txtcompany {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 55%;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%; }
  .header_nav {
    position: fixed;
    background: #1C2834;
    height: 100%;
    padding-top: 200px;
    margin-top: -150px;
    left: -100%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0; }
  .header_nav.show {
    left: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1; }
  .hamburger.active {
    position: fixed;
    z-index: 9999; }
  .hamburger.active span {
    background: #FFFFFF; }
  .hamburger.active .hamburger_inside span:nth-child(1) {
    -webkit-transform: translateY(18px) rotate(-225deg);
    -ms-transform: translateY(18px) rotate(-225deg);
    transform: translateY(18px) rotate(-225deg); }
  .hamburger.active .hamburger_inside span:nth-child(2) {
    -webkit-transform: translateY(0) rotate(225deg);
    -ms-transform: translateY(0) rotate(225deg);
    transform: translateY(0) rotate(225deg); }
  .hamburger.active .hamburger_inside span:nth-child(3) {
    opacity: 0; }
  #nav .container {
    padding: 0 25px; }
  .header {
    margin: 10px 0; }
  .sns-block--ins:nth-child(1) {
    text-align: center;
    width: 100%; }
  .sns-block--ins:nth-child(1) * {
    width: 100%; } }

@media all and (max-width: 520px) {
  .header .header_top .container {
    padding: 0 3%; }
  .header .header_top_logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; }
  .header .header_top_icon {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; }
  .header .sp-btn-contact {
    margin: 0 10px; }
  .header .txttel {
    margin-left: 0px; }
  .header .txttel a img {
    height: 38px; }
  .header .hamburger {
    width: 50px;
    height: 50px; }
  .header .hamburger_inside {
    height: 45%; }
  .header .hamburger_inside span {
    height: 2px; }
  .header .sp-btn-contact a img {
    height: 30px; }
  .main-tit h2 {
    font-size: 22px; }
  .main-tit h2 figure img {
    height: 30px;
    top: 2px; }
  .main-tit {
    margin-bottom: 20px; }
  .main-tit h2 {
    display: block; }
  .main-tit h2 span.lg-txt {
    display: block;
    font-size: 38px;
    letter-spacing: 10px; }
  .tit-style2 h2 span.lg-txt::before {
    height: 30px; }
  .tit-style2 h2 span.lg-txt {
    font-size: 30px;
    padding-top: 50px; }
  .tit-style2 p {
    font-size: 18px; }
  .btn-main {
    width: 300px; }
  .btn-main a {
    height: 55px; }
  .seccommon {
    padding: 35px 0; }
  .footer-info {
    padding: 35px 0 !important; }
  .seccommon .contact-box--ins:first-child p span, .seccommon .contact-box--ins:first-child p a {
    font-size: 30px; }
  .navstate_show .header_nav .nav-list .nav-list-item a span {
    font-size: 14px; }
  .hamburger.active .hamburger_inside span:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(-225deg);
    -ms-transform: translateY(11px) rotate(-225deg);
    transform: translateY(11px) rotate(-225deg); }
  .header_nav {
    padding-top: 90px;
    margin-top: -61px; }
  .txttel-sp a span {
    font-size: 24px; }
  .txttel-sp a img {
    height: 25px;
    top: -1px; }
  .nav-sp-bottom {
    padding: 20px 0; }
  .nav-sp-bottom .btn-company a span {
    font-size: 14px;
    padding-left: 30px; }
  .nav-sp-bottom .btn-ct a span {
    font-size: 14px;
    padding-left: 30px; }
  .nav-sp-bottom .btn-ct a {
    height: 50px; }
  .nav-sp-bottom .btn-company a {
    height: 50px; }
  .nav-sp-bottom .btn-ct {
    margin: 0; }
  .nav-sp-bottom .btn-ct a::before {
    height: 20px;
    left: 10px; }
  .btn-company a::before {
    height: 20px !important; } }

@media all and (max-width: 520px) {
  h3.sc-tit span {
    font-size: 18px; }
  h3.sc-tit {
    font-size: 20px;
    margin-bottom: 5px; } }

/**/
@media all and (min-width: 769px) {
  .header {
    margin: 10px 0 0px; }
  .nav-list {width: 100%;}
  .nav-list-item {
    width: 20%;
    flex: 0 0 20%;
  }
  .nav-list-item a {
	/*padding: 5px 5.9vw;*/
	text-align: center;
	border-right: 1px solid;
	margin-bottom: 20px; 
	margin-left: 0px;}
  .nav-list-item:first-child a {
	border-left: 1px solid; }
  .megamenu {
    position: relative; }
  .megamenu ul.childmenu {
    position: absolute;
    background: #ffffff;
    width: 100%;
    top: 58px;
    /*left: 30px;*/
    display: none; }
  .megamenu ul.childmenu a {
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out; }
  .megamenu ul.childmenu a:hover {
    background: #000000;
    color: #ffffff;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out; }
  .megamenu ul.childmenu a::before {
    display: none; } 
.megamenu ul.childmenu a {
  padding: 15px;
  font-size: 13px;
  font-weight: bold;
  margin: 0; 
  border-bottom: 1px solid;
  border-right: none;}
.megamenu ul.childmenu li:first-child a {
  border-top: 1px solid;}
 }

@media all and (max-width: 768px) {
  .navstate_show .header_nav .nav-list .nav-list-item a {
    padding: 15px; 
	font-size: 14px;
font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, 'MS UI Gothic', sans-serif !important;
font-weight: bold;}
  .megamenu ul.childmenu {
    display: none; }
  .megamenu ul.childmenu a {
    background: #ffffff;
    color: #000000 !important; }
  .header_nav {
    overflow-y: scroll; }
  .menu-c {
    border-top: 1px solid #6E7C8E; }
  .menu-c a {
    border-top: none !important;
    width: 50%; }
  .menu-c .sign {
    width: 50%;
    height: 44px;
    position: relative; }
  .menu-c .sign::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 2px;
    background: #6E7C8E;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0; }
  .menu-c .sign::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 14px;
    background: #6E7C8E;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; }
  .act .menu-c .sign::after {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .act ul.childmenu {
    display: block; } }

@media all and (max-width: 360px) {
  .nav-sp-bottom .txtcontact {
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    width: 42%; }
  .nav-sp-bottom .txtcompany {
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    width: 55%; } }

.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

.btn-product-group {
  margin-bottom: 100px; }
  .btn-product-group .btn-pre {
    float: left; }
  .btn-product-group .btn-next {
    float: right; }

.btn-pre a::before {
  left: 15px;
  right: auto;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

@media (max-width: 768px) {
  .btn-product-group {
    margin-bottom: 50px; }
    .btn-product-group .btn-main {
      width: 48%; }
      .btn-product-group .btn-main a {
        height: 60px; } }

@media (max-width: 520px) {
  .btn-product-group {
    margin-bottom: 30px; }
    .btn-product-group .btn-main a {
      height: 40px; } }