@charset "UTF-8";
html:not(.responsive) {
  min-width: 1100px;
  /* viewport */
}

* {
  box-sizing: border-box;
}

/*=============================================
 * body
 *=============================================*/
body {
  color: #000;
  font-family: "ten-mincho-text", serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
  background: #fff;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  text-align: justify;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 38px;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --app-height: 100%;
  }
  html.open,
  body.menu-open {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    height: var(--app-height);
  }
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

/*=============================================
 * .fnt - customs
 *=============================================*/
@font-face {
  font-family: 'Cherolina';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Cherolina.woff2") format("woff2");
}

.fnt-cherolina {
  font-family: 'Cherolina';
}

@font-face {
  font-family: 'Goudy Old Style';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/GOUDOS.woff2") format("woff2");
}

.fnt-goudy {
  font-family: 'Goudy Old Style';
}

/*=============================================
 * <main>
 *=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.layer-class main {
  opacity: 1;
}

.wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

a, img {
  transition: 0.3s all ease-in-out;
}

img {
  width: 100%;
  height: auto;
}

/*=============================================
 * <header>
 *=============================================*/
body.nav--opened,
body.nav--opened *,
body.nav--opened *:hover,
body.nav--opened *:focus,
body.nav--opened *:active {
  /*    cursor: none !important;*/
  touch-action: none !important;
  pointer-events: none !important;
}

body.nav--opened .hamburger,
body.nav--opened #menu-toggle,
body.nav--opened #menu-toggle * {
  touch-action: auto !important;
  pointer-events: visible !important;
}

.nav--opened {
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: none !important;
  pointer-events: none !important;
}

.nav--opened #menu-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  overflow: auto;
}

.nav--opened #pagetop,
.nav--opened #ft-fixed {
  opacity: 0;
  visibility: hidden;
}

header .nav-fixed {
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  padding: 8px 10px;
}

header .logo {
  width: 160px;
}

header .col {
  display: none;
}

header .fixed-social {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 5;
}

header .fixed-social li {
  width: 45px;
  margin-top: 8px;
}

@media only screen and (min-width: 768px) {
  header .nav-fixed {
    height: 110px;
    padding: 0;
  }
  header .logo {
    width: 150px;
    float: left;
    margin: 33px 0 0 10px;
  }
  header .col {
    float: right;
    display: flex;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 24px;
    margin: 45px 14px 0 0;
  }
  header .col .nav li {
    margin-right: 16px;
    position: relative;
  }
  header .col .nav li:after {
    content: '';
    width: 1px;
    background: #231815;
    position: absolute;
    right: -8px;
    top: 0;
    bottom: 0;
  }
  header .col .nav li a.active,
  header .col .nav li a:hover {
    opacity: 0.5;
  }
  header .col .nav .mt0 {
    margin: 0;
  }
  header .col .nav .mt0:after {
    display: none;
  }
  header .col .btn a {
    display: block;
    color: #fff;
    background: #8F046C;
    padding: 0 10px;
    border-radius: 5px;
  }
  header .col .btn a:hover {
    opacity: 0.7;
  }
  header .fixed-social {
    bottom: 20px;
    right: 20px;
  }
  header .fixed-social li {
    width: 68px;
  }
}

@media only screen and (min-width: 980px) {
  header .nav-fixed {
    height: 122px;
  }
  header .logo {
    width: 200px;
    margin: 37px 0 0 15px;
  }
  header .col {
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.2em;
    margin: 44px 20px 0 0;
  }
}

@media only screen and (min-width: 1080px) {
  header .logo {
    width: 250px;
    margin: 26px 0 0 20px;
  }
  header .col {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1180px) {
  header .col .nav li {
    margin-right: 30px;
  }
  header .col .nav li:after {
    right: -15px;
  }
}

@media only screen and (min-width: 1220px) {
  header .logo {
    margin-left: 50px;
  }
  header .col {
    margin-right: 50px;
  }
}

.has-nav #ft-fixed {
  opacity: 1;
  visibility: visible;
}

.menu-toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 90px 0;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index: 9;
  background: rgba(12, 34, 49, 0.9);
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.2em;
}

.menu-toggle .navi li + li {
  margin-top: 20px;
}

.menu-toggle .navi .mt0 {
  margin-top: 0;
}

.menu-toggle .navi li .active {
  opacity: 0.5;
}

.menu-toggle .btn {
  width: 180px;
  margin: 45px auto 27px;
}

.menu-toggle .btn a {
  display: block;
  background: #8F046C;
  color: #fff;
  border-radius: 5px;
  padding: 3px 0;
}

.menu-toggle .txt {
  font-size: 14px;
  padding: 0 20px 25px;
}

.menu-toggle .social li {
  width: 45px;
  margin: 0 15px;
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
  padding: 15vw 0 120px;
}

footer .wrap {
  padding: 0 2% !important;
}

footer .btn li a {
  display: block;
  width: 280px;
  margin: 0 auto 8px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  padding: 10px 0;
}

footer .btn li .note1 {
  font-size: 9px;
  letter-spacing: 0.1em;
}

footer .btn li .txt {
  letter-spacing: 0.1em;
}

footer .btn li.login a {
  background: #8F046C;
  font-size: 6vw;
  line-height: 8vw;
  letter-spacing: 0.2em;
}

footer .btn li.line {
  margin-top: 30px;
}

footer .btn li.line a {
  background: #06C755;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 6.2vw;
  line-height: 8vw;
}

footer .btn li.line a img {
  width: 30px;
}

footer .logo {
  width: 80%;
  margin: 40px auto 30px;
}

footer .note2 {
  font-size: 9px;
}

footer .banner {
  margin: 20px 0 40px;
}

footer .banner li {
  width: 40%;
}

footer .banner li + li {
  margin-left: 11%;
  width: 32%;
}

footer address {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  footer nav ul {
    flex-wrap: wrap;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  footer nav ul li {
    width: 28%;
    border: 1px solid;
    margin: 0 2% 10px;
  }
  footer nav ul li a {
    display: block;
  }
  footer nav ul li:first-child,
  footer nav ul li:nth-child(2) {
    width: 45%;
  }
}

@media screen and (min-width: 768px) {
  footer {
    padding: 80px 0 40px;
  }
  footer .wrap {
    padding: 0 0% !important;
  }
  footer .btn {
    width: 657px;
    margin: 0 auto;
  }
  footer .btn li a {
    width: 293px;
    margin: 0 auto 8px;
    border-radius: 15px;
    padding: 12px 0;
  }
  footer .btn li a:hover {
    opacity: 0.8;
  }
  footer .btn li .note1 {
    font-size: 10px;
  }
  footer .btn li .txt {
    font-size: 18px;
  }
  footer .btn li.login a {
    font-size: 29px;
    line-height: 30px;
    padding-left: 8px;
  }
  footer .btn li.line {
    margin-top: 0;
  }
  footer .btn li.line a {
    font-size: 31px;
    line-height: 30px;
  }
  footer .btn li.line a img {
    width: 36px;
    margin: -2px 6px 0 0;
  }
  footer .btn li.line a:hover img {
    opacity: 1 !important;
  }
  footer .logo {
    width: 291px;
    margin: 60px auto 22px;
  }
  footer .note2 {
    font-size: 10px;
    line-height: 23px;
  }
  footer .banner {
    margin: 58px 0 80px;
  }
  footer .banner li {
    width: 170px;
  }
  footer .banner li + li {
    margin-left: 78px;
    width: 129px;
  }
  footer nav ul {
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 18px;
  }
  footer nav ul li + li {
    margin-left: 40px;
    position: relative;
  }
  footer nav ul li + li:before {
    content: '';
    width: 1px;
    height: 18px;
    background: #000;
    position: absolute;
    left: -20px;
    top: 0;
  }
  footer nav ul a:hover {
    opacity: 0.6;
  }
  footer address {
    margin-top: 65px;
  }
}

/*=============================================
 * .socialbuttons
 *=============================================*/
/*=============================================
 * copyright
 *=============================================*/
.fwb {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.taj {
  text-align: justify;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.db {
  display: block;
}

.df {
  display: flex;
}

.jcfs {
  justify-content: flex-start;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.jcfe {
  justify-content: flex-end;
}

.aifs {
  align-items: flex-start;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .df-pc {
    display: flex;
  }
}

/* --------------------------------------------------------------------- */
/* ef */
#opening {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  display: none;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  -webkit-transition: 1s 0.4s;
  transition: 1s 0.4s;
  -webkit-transition: 1s all;
  transition: 1s all;
}

#opening #logo {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
}

#opening #logo img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  #opening #logo {
    width: 196px;
  }
}

#overlay.hide {
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0.5s;
}
