@charset "UTF-8";
@keyframes shakeLR {
  0% {
    transform: translateX(0px);
  }
  10% {
    transform: translateX(10px);
  }
  20% {
    transform: translateX(0px);
  }
  30% {
    transform: translateX(10px);
  }
  40% {
    transform: translateX(0px);
  }
}
@keyframes shakeUD {
  0% {
    transform: translateY(0px);
  }
  10% {
    transform: translateY(10px);
  }
  20% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(10px);
  }
  40% {
    transform: translateY(0px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes denied {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
body {
  height: auto;
  overflow: auto;
}
body.is-ani {
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

:root {
  --swiper-theme-color: #a60066;
  --swiper-navigation-size: 50px;
}

dd {
  margin: 0;
}

header.header {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 414px) {
  header.header {
    height: auto;
    overflow: auto;
  }
}
header.header .header__logo {
  position: relative;
  height: 100%;
}
header.header .header__logo .header__logoPic {
  position: relative;
  text-align: right;
  height: 100%;
}
@media screen and (max-width: 414px) {
  header.header .header__logo .header__logoPic {
    padding-top: max(15vh, 100px);
  }
}
header.header .header__logo .header__logoPic img {
  max-width: 1440px;
  height: 100%;
  max-height: 85vh;
  vertical-align: middle;
  filter: opacity(0.9);
}
@media screen and (max-width: 414px) {
  header.header .header__logo .header__logoPic img {
    height: 80vh;
    height: calc(var(--vh, 1vh) * 80 - 80px);
    /* ↑ツールバーを除いた高さをJSで取得し、CSS変数に代入、さらにロゴ高さ分のpadding-topを引いたもの↑ */
    object-fit: cover;
    object-position: 10% 100%;
  }
}
header.header .header__logo .header__logoPic::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #E6E6E6;
  z-index: -1;
}
header.header nav#menu-header {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 1440px;
  height: 100%;
}
header.header nav#menu-header .menu-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li {
  position: absolute;
  font-family: futura-pt, ryo-gothic-plusn, sans-serif;
  line-height: 1;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(1) {
  top: 15%;
  right: 5%;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(1) a {
  top: -1em;
  right: 0;
}
@media screen and (max-width: 414px) {
  header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(1) a {
    left: 0;
  }
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(1) svg {
  transform: scale(1, -1);
}
@media screen and (max-width: 414px) {
  header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(1) svg {
    transform: scale(-1, -1);
  }
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(2) {
  top: 45%;
  left: 5%;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(2) a {
  top: -1.4rem;
  top: -1em;
  left: 0;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(2) svg {
  transform: scale(-1, -1);
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(3) {
  bottom: 8%;
  right: 3%;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(3) a {
  bottom: 10px;
  right: 0;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(3) svg {
  transform: scale(1, 1);
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(odd) a {
  color: #a60066;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(odd) svg {
  stroke: #a60066;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(even) a {
  color: #006336;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li:nth-of-type(even) svg {
  stroke: #006336;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li a {
  position: absolute;
  font-size: 2.8rem;
  height: 100%;
  text-shadow: rgba(255, 255, 255, 0.5) 2px 0px, rgba(255, 255, 255, 0.5) -2px 0px, rgba(255, 255, 255, 0.5) 0px -2px, rgba(255, 255, 255, 0.5) 0px 2px, rgba(255, 255, 255, 0.5) 2px 2px, rgba(255, 255, 255, 0.5) -2px 2px, rgba(255, 255, 255, 0.5) 2px -2px, rgba(255, 255, 255, 0.5) -2px -2px, rgba(255, 255, 255, 0.5) 1px 2px, rgba(255, 255, 255, 0.5) -1px 2px, rgba(255, 255, 255, 0.5) 1px -2px, rgba(255, 255, 255, 0.5) -1px -2px, rgba(255, 255, 255, 0.5) 2px 1px, rgba(255, 255, 255, 0.5) -2px 1px, rgba(255, 255, 255, 0.5) 2px -1px, rgba(255, 255, 255, 0.5) -2px -1px;
  opacity: 0;
}
@media screen and (max-width: 414px) {
  header.header nav#menu-header .menu-menu-container ul#menu-menu li a {
    font-size: 2.52rem;
  }
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li a:hover::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.3;
  filter: blur(10px);
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li.delay_fadeIn a {
  opacity: 1;
  transition: 2s 1s;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li svg {
  width: 15em;
  fill: none;
  stroke-width: 4px;
  stroke-dashoffset: 800px;
  stroke-dasharray: 800px;
  opacity: 0;
  text-shadow: rgba(255, 255, 255, 0.5) 2px 0px, rgba(255, 255, 255, 0.5) -2px 0px, rgba(255, 255, 255, 0.5) 0px -2px, rgba(255, 255, 255, 0.5) 0px 2px, rgba(255, 255, 255, 0.5) 2px 2px, rgba(255, 255, 255, 0.5) -2px 2px, rgba(255, 255, 255, 0.5) 2px -2px, rgba(255, 255, 255, 0.5) -2px -2px, rgba(255, 255, 255, 0.5) 1px 2px, rgba(255, 255, 255, 0.5) -1px 2px, rgba(255, 255, 255, 0.5) 1px -2px, rgba(255, 255, 255, 0.5) -1px -2px, rgba(255, 255, 255, 0.5) 2px 1px, rgba(255, 255, 255, 0.5) -2px 1px, rgba(255, 255, 255, 0.5) 2px -1px, rgba(255, 255, 255, 0.5) -2px -1px;
}
@media screen and (max-width: 414px) {
  header.header nav#menu-header .menu-menu-container ul#menu-menu li svg {
    width: 8em;
  }
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li svg:hover {
  cursor: pointer;
  opacity: 0.7;
}
header.header nav#menu-header .menu-menu-container ul#menu-menu li.delay_fadeIn svg {
  opacity: 1;
  animation: menuLine 2s 1s forwards;
}
@keyframes menuLine {
  100% {
    stroke-dashoffset: 0;
  }
}

.p {
  fill: #006336;
}

.q {
  fill: #a60066;
}

.header__logoSvg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background: #eee;
  box-sizing: border-box;
}
.header__logoSvg.fadeOut {
  background: none;
  transition: 2s 1s;
}
.header__logoSvg.fadeOut::before {
  animation: logoAnime-BG 3s 1.5s forwards;
}
@keyframes logoAnime-BG {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.header__logoSvg svg#logo {
  position: absolute;
  width: 60%;
  min-width: 300px;
  margin: 1%;
  transform-origin: 0 0;
  animation: logoAnime 6s ease-in-out forwards;
}
@media screen and (max-width: 414px) {
  .header__logoSvg svg#logo {
    width: 95%;
  }
}
@keyframes logoAnime {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  90% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    top: 0;
    left: 0;
    transform: translate(0) scale(0.3);
  }
}
.header__logoSvg svg#logo #logo-A, .header__logoSvg svg#logo #logo-R {
  stroke: #555;
  stroke-width: 2px;
  animation: logoAnime-AR 5s ease-in both;
}
.header__logoSvg svg#logo path:not(#logo-A, #logo-R, #logo-dot-1, #logo-dot-2), .header__logoSvg svg#logo rect {
  stroke: #555;
  fill: #555;
  animation: logoAnime-others 5s ease-in both;
}
.header__logoSvg svg#logo #logo-dot-1 {
  fill: #a60066;
  animation: logoAnime-dot-1 5s both;
}
.header__logoSvg svg#logo #logo-dot-2 {
  fill: #006336;
  animation: logoAnime-dot-2 5s both;
}
@keyframes logoAnime-AR {
  0% {
    fill: transparent;
    stroke-dasharray: 3000px;
    stroke-dashoffset: 3000px;
  }
  20% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  50% {
    fill: #555;
  }
}
@keyframes logoAnime-others {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
@keyframes logoAnime-dot-1 {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
}
@keyframes logoAnime-dot-2 {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header__scroll {
  text-align: center;
  margin-top: 20px;
}
.header__scroll svg#scrollMouse {
  width: 40px;
  opacity: 0;
}
@media screen and (max-width: 414px) {
  .header__scroll svg#scrollMouse {
    width: 30px;
  }
}
.header__scroll svg#scrollMouse.delay_fadeIn {
  opacity: 1;
  transition: 2s 2s;
}
.header__scroll svg#scrollMouse #mouseLine {
  stroke-width: 4px;
  stroke: #888;
  fill: none;
}
.header__scroll svg#scrollMouse #mouseBall {
  fill: #888;
  animation: mouseScroll 2s ease-in 3s infinite;
}
@keyframes mouseScroll {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(30%);
  }
}

main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
main* {
  box-sizing: border-box;
}
main section {
  position: relative;
  background: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  box-sizing: border-box;
  width: 80%;
  max-width: 1000px;
  margin-bottom: 50px;
  padding: 30px 15px;
  opacity: 0;
  /* ボタンの大きさと位置をここで指定 */
}
main section::before, main section::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #fefefe;
  z-index: -1;
}
main section::after {
  background: #ddd;
  transform: translate(8px, 8px);
  z-index: -2;
}
@media screen and (max-width: 414px) {
  main section::after {
    transform: translate(4px, 4px);
  }
}
@media screen and (max-width: 767px) {
  main section {
    width: 100%;
  }
}
main section:nth-of-type(odd) {
  margin-right: auto;
  padding-right: 30px;
}
@media screen and (max-width: 414px) {
  main section:nth-of-type(odd) {
    padding: 6px;
  }
}
main section:nth-of-type(odd).fadeIn {
  animation: slideLeft 1s ease-in-out forwards;
}
main section:nth-of-type(even) {
  margin-left: auto;
}
@media screen and (max-width: 414px) {
  main section:nth-of-type(even) {
    padding: 6px;
  }
}
main section:nth-of-type(even).fadeIn {
  animation: slideRight 1s ease-in-out forwards;
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
main section h2 {
  font-size: 120px;
  font-weight: normal;
  margin: 5px 0 10px;
}
@media screen and (max-width: 414px) {
  main section h2 {
    font-size: 80px;
    line-height: 1;
  }
}
main section:nth-of-type(odd) h2 {
  color: #a60066;
  text-align: left;
}
main section:nth-of-type(even) h2 {
  color: #006336;
  text-align: right;
}
main section h3.internalLink {
  position: relative;
  width: 100%;
  height: calc(3em + 5px);
  line-height: calc(3em + 5px);
  font-size: 1.5em;
  text-align: center;
  overflow: hidden;
  /* 線(ボーダー)のスタイル 共通 */
  /* 下のボーダー */
  /* 右のボーダー */
  /* 上のボーダー */
  /* 左のボーダー */
  /* 各アニメーション */
}
main section h3.internalLink.gallery {
  font-size: 3.5em;
  font-weight: normal;
  margin: 0;
}
main section h3.internalLink span {
  color: #a60066;
}
main section h3.internalLink:before, main section h3.internalLink:after, main section h3.internalLink span:before, main section h3.internalLink span:after {
  content: "";
  position: absolute;
  background: #a60066; /*線の色*/
}
main section h3.internalLink:before {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  animation: leftAnim 3s linear 0s infinite;
}
main section h3.internalLink:after {
  bottom: calc((3em + 5px) * -1);
  right: 0;
  width: 1px;
  height: calc(3em + 5px);
  animation: bottomAnim 3s linear 0.75s infinite;
}
main section h3.internalLink span:before {
  top: 0;
  right: -100%;
  width: 100%;
  height: 1px;
  animation: rightAnim 3s linear 0s infinite;
}
main section h3.internalLink span:after {
  top: calc((3em + 5px) * -1);
  left: 0;
  width: 1px;
  height: calc(3em + 5px);
  animation: topAnim 3s linear 0.75s infinite;
}
@keyframes topAnim {
  0% {
    top: calc((3em + 5px) * -1);
  }
  100% {
    top: calc(3em + 5px);
  }
}
@keyframes bottomAnim {
  0% {
    bottom: calc((3em + 5px) * -1);
  }
  100% {
    bottom: calc(3em + 5px);
  }
}
@keyframes rightAnim {
  0% {
    right: -100%;
  }
  100% {
    right: 100%;
  }
}
@keyframes leftAnim {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
main section h3.internalLink:hover {
  background-color: #a60066;
}
main section h3.internalLink:hover span {
  color: #fff;
}
main section h3.internalLink:hover::before, main section h3.internalLink:hover::after, main section h3.internalLink span:hover::before, main section h3.internalLink span:hover::after {
  animation: none;
}
main section h4 {
  position: relative;
  background: #ddd;
  color: #333;
  padding: 0.3em 0.5em;
  box-shadow: 5px 5px 0 0 #ccc;
}
main section .excerpt_wrapper .fa_wrapper {
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
}
main section .excerpt_wrapper .fa_wrapper:hover {
  opacity: 0.7;
}
main section .excerpt_wrapper .excerpt {
  position: relative;
  height: 250px;
  overflow: hidden;
  transition: height 1s;
}
main section .excerpt_wrapper .excerpt > *:last-child {
  margin-bottom: 3em;
}
main section .excerpt_wrapper .excerpt + .js_accordion_trigger i {
  transform: rotate(0deg);
  transition: 1s;
}
main section .excerpt_wrapper .excerpt.is-open {
  transition: height 1s;
}
main section .excerpt_wrapper .excerpt.is-open + .js_accordion_trigger i {
  transform: rotate(180deg);
  transition: 1s;
}
main section .excerpt_wrapper .excerpt::after {
  position: sticky;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 3em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgb(255, 255, 255));
}
main section .excerpt_wrapper .excerpt.is-open::after {
  display: none;
}
main section.About table.skill {
  width: 70%;
}
@media screen and (max-width: 414px) {
  main section.About table.skill {
    width: 80%;
  }
}
main section.About table.skill th {
  background: none;
  color: inherit;
  text-align: left;
  width: 8em;
}
@media screen and (max-width: 414px) {
  main section.About table.skill th {
    display: inline-block;
    width: 6em;
  }
}
@media screen and (max-width: 414px) {
  main section.About table.skill td {
    display: inline-block;
    padding: 0;
    width: calc(100% - 6em);
  }
}
main section.About table.skill ol.level-bar {
  display: flex;
  list-style: none;
  width: 100%;
  padding: 0;
}
main section.About table.skill ol.level-bar li {
  position: relative;
  width: 25%;
  border-bottom: 1px solid #aaa;
}
@media screen and (max-width: 414px) {
  main section.About table.skill ol.level-bar li {
    width: 25%;
  }
}
main section.About table.skill ol.level-bar li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  background: #aaa;
  border-radius: 50%;
}
main section.About table.skill ol.level-bar li:last-of-type {
  border: none;
  width: 0;
}
main section.About table.skill ol.level-bar li.lv::before {
  border-radius: 50%;
  background: #a60066;
  width: 12px;
  height: 12px;
}
main section.About dl.history {
  display: grid;
  grid-template-columns: 7em 20px 1fr;
}
@media screen and (max-width: 414px) {
  main section.About dl.history {
    grid-template-columns: 6em 20px 1fr;
  }
}
main section.About dl.history .line {
  position: relative;
}
main section.About dl.history .line::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  margin-top: 10px;
  margin-left: 4px;
  background-color: #333;
}
main section.About dl.history .line::after {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  background-color: #006336;
}
main section.About dl.history .line:last-of-type::after {
  background-color: #a60066;
  width: 15px;
  height: 15px;
  margin-left: -3px;
}
main section.About dl.history dd {
  font-size: 0.9em;
  margin-bottom: 1.5em;
}
main section.About dl.history dd .topic {
  font-size: 1.1em;
  margin: 0 0 0.1em;
}
main section.Works .works_wrapper > *:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 414px) {
  main section.Works .works_wrapper > *:not(:last-child) {
    margin-bottom: 30px;
  }
}
main section.Works .works_wrapper .slag_desc {
  margin-bottom: 1em;
  font-size: 0.9em;
}
main section.Works .contentsWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
main section.Works .contentsWrap .content {
  position: relative;
  width: calc((100% - 20px) / 2);
  transform: scale(0, 0);
  transform-origin: 0 0;
}
main section.Works .contentsWrap .content img {
  width: 100%;
}
main section.Works .contentsWrap .content.closed img {
  filter: blur(6px);
}
main section.Works .contentsWrap .content p.desc {
  display: none;
}
main section.Works .contentsWrap .content.is-show {
  transform: scale(1, 1);
  transition: 1s;
}
main section.Works .contentsWrap .content .noLink {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  outline: 1.5px solid #a60066;
  outline-offset: -15px;
  padding: 20px;
  text-align: center;
  transform: scale(0, 0);
  font-size: 1em;
}
@media screen and (max-width: 414px) {
  main section.Works .contentsWrap .content .noLink {
    font-size: 0.9em;
    line-height: 1.4;
  }
}
main section.Works .contentsWrap .content .noLink.is-show {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: nolink 5s ease-out forwards;
  opacity: 1;
}
@keyframes nolink {
  0% {
    transform: scale(0, 0);
  }
  10% {
    transform: scale(1, 1);
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
main section.Works .contentsWrap .content .locked {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #006336;
  opacity: 0.8;
}
main section.Works .contentsWrap .content .locked i {
  color: #fff;
  font-size: 80px !important;
}
main section.Works .contentsWrap .content .title {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  cursor: pointer;
}
main section.Works .contentsWrap .content .title p {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  margin: 0 auto;
  width: 100%;
  padding: 0.5em;
  text-align: center;
}
main section.Works .contentsWrap .content .title:hover {
  opacity: 1;
  transition: opacity 0.5s;
}
main section.Works .websites.contents .content .title p::after {
  font: var(--fa-font-solid);
  content: "\f08e";
  margin-left: 5px;
}
main #modalWrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
main #modalWrap .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 90%;
  max-width: 1000px;
  height: 90%;
  max-height: 90%;
  padding: 0;
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: zoomIn 1s ease-in-out forwards 0.1s;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
main #modalWrap .modal .contentWrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: scroll;
}
main #modalWrap .modal .contentWrap::after {
  display: none;
  position: absolute;
  bottom: 30px;
  font-size: 30px !important;
  font: var(--fa-font-solid);
  content: "\f103";
  color: #eee;
  width: 100%;
  text-align: center;
  opacity: 0.9;
  animation: shakeUD 2s infinite;
}
main #modalWrap .modal .contentWrap.is-overflow::after {
  display: block;
}
main #modalWrap .modal .contentWrap.is-scroll::after {
  animation: fadeOut 1s forwards;
}
main #modalWrap .modal .contentWrap img {
  width: 100%;
  max-width: 1200px;
}
main #modalWrap .modal .contentWrap p.desc {
  width: 100%;
  padding: 0 10px;
  font-size: 0.8em;
}
main #modalWrap.is-modal {
  display: block;
}
main #modalWrap.is-modal i.btnClose {
  animation: showDelay 0s 1s linear forwards;
}
@keyframes showDelay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main #modalWrap i.btnClose {
  opacity: 0;
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 100;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.3);
}
main #modalWrap i.btnClose::before {
  font-size: 20px !important;
  color: #333;
}
main .popupForm {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
}
main .popupForm.is-show {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .popupForm form#authentication {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  width: 50%;
  padding: 5%;
  background-color: #fff;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 414px) {
  main .popupForm form#authentication {
    width: 90%;
  }
}
main .popupForm form#authentication.accessDenied {
  animation: denied 0.3s linear;
}
main .popupForm form#authentication label {
  width: 100%;
  text-align: left;
}
main .popupForm form#authentication .inputWrap {
  position: relative;
  flex: 1;
  text-align: left;
}
main .popupForm form#authentication .inputWrap input[type=password], main .popupForm form#authentication .inputWrap input[type=text] {
  width: 100%;
  padding: 5px;
}
main .popupForm form#authentication .inputWrap .eye {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
main .popupForm form#authentication .inputWrap .eye i {
  display: none;
  font-size: 15px !important;
  color: #333;
  vertical-align: middle;
  cursor: pointer;
}
main .popupForm form#authentication .inputWrap .eye i:hover {
  opacity: 0.7;
}
main .popupForm form#authentication .inputWrap .eye i.is-show {
  display: block;
}
main .popupForm form#authentication input[type=submit] {
  width: 4em;
}

#hamburger {
  bottom: 80px;
}
#hamburger.show {
  transition: opacity 1.5s 0s;
}
#hamburger.active {
  background: #006336;
}
#hamburger .menuModal {
  display: none;
}
#hamburger .menuModal li:hover {
  background: rgba(255, 255, 255, 0.1);
}
#hamburger .menuModal li a {
  display: block;
  color: #fff;
  margin: 0.5em 0;
  padding: 0.5em 1em;
  font-size: 0.9rem;
}
@media screen and (max-width: 414px) {
  #hamburger .menuModal li a {
    font-size: 1.2rem;
  }
}
#hamburger.js-menuShow {
  width: auto;
  height: auto;
  padding: 1em;
}
#hamburger.js-menuShow i {
  display: none;
}
#hamburger.js-menuShow .menuModal {
  display: block;
}/*# sourceMappingURL=home.css.map */