@charset "UTF-8";
:root {
  --main-bg-color: #fff;
  --main-bg-color1: #DEDDDC;
  --main-bg-color2: #C5D3E6;
  --main-bg-color3: #BCB6C1;
  --main-key-color1: #1484C8;
  --main-key-color2: #47BED4;
  --main-key-color3: #A9DAD9;
  --main-accent: #e08a4b;
  --main-font-color: #393939;
  --main-ff: "Zen Kaku Gothic New", sans-serif;
  --main-en-ff: "Klee One", cursive;
  --main-montserrat-ff: "Montserrat", sans-serif;
  --main-fs-heading1: 6.4rem;
  --main-fs-paragraph: 1.6rem;
}

* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-size: 62.5%;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 768px) {
  html,
  body {
    height: 100vh;
  }
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

#container {
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-width: 1064px;
  min-height: 100vh;
  position: relative;
  -webkit-transition: filter 0.3s ease;
  -moz-transition: filter 0.3s ease;
  -o-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #393939;
  background: #fff;
  z-index: 2;
}
#container.blur {
  position: relative;
  opacity: 0.25;
  -webkit-filter: blur(8px) !important;
  -ms-filter: blur(8px) !important;
  -moz-filter: blur(8px) !important;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='blur'><feGaussianBlur stdDeviation='8' /></filter></svg>#blur");
}
#container.blur:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

header,
main,
footer {
  width: 100%;
  min-width: 1064px;
}

.wrapper {
  width: 1024px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

@media screen and (max-width: 1100px) {
  #container,
  header,
  main,
  footer,
  .wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

#loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #393939;
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
#loading.hide {
  opacity: 0;
}
#loading.break {
  display: none;
}
#loading > div {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#loading > div p {
  padding: .4em;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: #fff;
}
@media screen and (max-width: 479px) {
  #loading > div p {
    padding: .4em;
    font-size: 1.2rem;
    line-height: 3rem;
  }
}

#open {
  display: none;
}
@media screen and (max-width: 1100px) {
  #open {
    display: block;
    width: 70px;
    height: 70px;
    padding: 0 10px;
    position: fixed;
    top: 0;
    right: 24px;
    font-size: 1.8rem;
    line-height: 4rem;
    text-align: center;
    vertical-align: middle;
    background: #fff;
    border-radius: 0 0 8px 8px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 5;
  }
  #open > div {
    width: 32px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #393939;
  }
  #open > div:nth-of-type(1) {
    -webkit-transform: translate(-50%, -9px) rotate(0);
    -moz-transform: translate(-50%, -9px) rotate(0);
    -ms-transform: translate(-50%, -9px) rotate(0);
    transform: translate(-50%, -9px) rotate(0);
  }
  #open > div:nth-of-type(2) {
    -webkit-transform: translate(-50%, 0) rotate(0);
    -moz-transform: translate(-50%, 0) rotate(0);
    -ms-transform: translate(-50%, 0) rotate(0);
    transform: translate(-50%, 0) rotate(0);
  }
  #open > div:nth-of-type(3) {
    -webkit-transform: translate(-50%, 9px) rotate(0);
    -moz-transform: translate(-50%, 9px) rotate(0);
    -ms-transform: translate(-50%, 9px) rotate(0);
    transform: translate(-50%, 9px) rotate(0);
  }
  #open.close {
    background: var(--main-key-color1);
  }
  #open.close > div {
    background: #fff;
  }
  #open.close > div:nth-of-type(1) {
    -webkit-transform: translate(-50%, 0) rotate(210deg);
    -moz-transform: translate(-50%, 0) rotate(210deg);
    -ms-transform: translate(-50%, 0) rotate(210deg);
    transform: translate(-50%, 0) rotate(210deg);
  }
  #open.close > div:nth-of-type(2) {
    width: 1px;
  }
  #open.close > div:nth-of-type(3) {
    -webkit-transform: translate(-50%, 0) rotate(-210deg);
    -moz-transform: translate(-50%, 0) rotate(-210deg);
    -ms-transform: translate(-50%, 0) rotate(-210deg);
    transform: translate(-50%, 0) rotate(-210deg);
  }
}
@media screen and (max-width: 479px) {
  #open {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 24px;
  }
}

.sugg {
  color: #ccc;
}

a {
  text-decoration: none;
}
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a:hover, a:active {
  outline: 0;
}

ul, ol {
  list-style: none;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="submit"],
textarea {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 1.4rem;
  line-height: 2em;
  padding: 2px 5px;
  border: 1px solid #dcdcdc;
}

@media screen and (min-width: 480px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  border: 0;
  max-width: 100%;
  line-height: 1em;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.naka {
  text-align: center;
}

.hidari {
  float: left;
  margin: 0 15px 15px 0;
}

.migi {
  float: right;
  margin: 0 0 15px 15px;
}

.thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

strong {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #ff6 60%);
}

article,
aside,
footer,
header,
menu,
main,
nav,
section {
  display: block;
  margin: 0;
}

.youtube {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 28px;
}
@media screen and (max-width: 479px) {
  .youtube {
    padding-top: 71.64%;
  }
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.select {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(57, 57, 57, 0.05);
}
.select select {
  width: 100%;
  padding: 10px 40px 10px 10px;
  cursor: pointer;
  text-indent: 0.01px;
  position: relative;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #393939;
  background: transparent;
}
.select select::-ms-expand {
  display: none;
}
.select:before {
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -moz-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
  border-right: 1px solid #393939;
  border-top: 1px solid #393939;
  pointer-events: none;
}

@font-face {
  font-family: 'parts';
  src: url("font/parts/parts.ttf?iq64q4") format("truetype"), url("font/parts/parts.woff?iq64q4") format("woff"), url("font/parts/parts.svg?iq64q4#parts") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="parts-"], [class*=" parts-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'parts' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.parts-wquotst:before {
  content: "\e900";
}

.parts-wquoted:before {
  content: "\e901";
}

.parts-blank:before {
  content: "\e902";
}

.parts-pen:before {
  content: "\e903";
}

.parts-mail:before {
  content: "\e904";
}

.parts-tel:before {
  content: "\e905";
}

#eyecatch {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 80px;
  flex-direction: column;
  position: relative;
  text-align: left;
  gap: 52px;
}
@media screen and (max-width: 479px) {
  #eyecatch {
    padding: 88px 32px;
  }
}
#eyecatch .maincopy, #eyecatch .read {
  position: relative;
  text-align: center;
  color: var(--main-bg-color);
  z-index: 2;
}
#eyecatch .maincopy br, #eyecatch .read br {
  display: inline;
}
@media screen and (max-width: 479px) {
  #eyecatch .maincopy br, #eyecatch .read br {
    display: none;
  }
}
#eyecatch .maincopy {
  font-family: var(--main-en-ff);
  font-size: 5.2rem;
  line-height: 1.6em;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  #eyecatch .maincopy {
    font-size: 3rem;
  }
}
#eyecatch .read {
  font-size: 2.4rem;
  line-height: 2em;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  #eyecatch .read {
    font-size: 1.8rem;
  }
}
#eyecatch .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--main-key-color1);
}
#eyecatch .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  z-index: 1;
}
#eyecatch .scrollto {
  padding: 0 20px 70px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  z-index: 2;
}
@media screen and (max-width: 479px) {
  #eyecatch .scrollto {
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
  }
}
#eyecatch .scrollto a {
  padding-bottom: 60px;
  position: relative;
  color: var(--main-bg-color);
}
#eyecatch .scrollto a div {
  width: 1px;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
}
#eyecatch .scrollto a div:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-animation: scrollto 2s infinite;
  -moz-animation: scrollto 2s infinite;
  animation: scrollto 2s infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-delay: both;
  background: var(--main-bg-color);
}

header {
  width: 100%;
  padding: 32px 80px;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  pointer-events: none;
}
@media screen and (max-width: 479px) {
  header {
    padding: 16px 32px;
    background: var(--main-bg-color);
  }
}
header.intro {
  padding: 52px 80px;
}
@media screen and (max-width: 479px) {
  header.intro {
    padding: 24px 32px;
    background: transparent;
  }
}
header.intro .sitetitle {
  max-width: 280px;
  aspect-ratio: 5.6/1;
}
@media screen and (max-width: 479px) {
  header.intro .sitetitle {
    max-width: 200px;
  }
}
header.intro .sitetitle a {
  background: url(../img/logo.png) no-repeat center center;
  background-size: contain;
}
header.intro nav ul li a {
  color: var(--main-bg-color);
}
header .sitetitle,
header nav {
  pointer-events: auto;
}
header .sitetitle {
  max-width: 250px;
  width: 100%;
  pointer-events: auto;
  aspect-ratio: 5.28/1;
}
@media screen and (max-width: 479px) {
  header .sitetitle {
    max-width: 200px;
  }
}
header .sitetitle a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../img/logo-page.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 1100px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 32px;
}
@media screen and (max-width: 479px) {
  header nav ul {
    display: none;
  }
}
header nav ul li {
  font-weight: 700;
  letter-spacing: 0.1em;
}
header nav ul li a {
  color: var(--main-font-color);
}
@media (hover: hover) {
  header nav ul li a:hover {
    text-decoration: underline;
  }
}

main {
  overflow: hidden;
}
main .more {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
main .more a {
  padding: 16px 32px;
  display: block;
  font-family: var(--main-en-ff);
  font-size: 1.8rem;
  line-height: 1.6em;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main-bg-color);
  background: var(--main-key-color1);
  border-radius: 9px;
  transition: all .3s ease;
}
@media (hover: hover) {
  main .more a:hover {
    color: var(--main-key-color1);
    background: var(--main-bg-color);
  }
}
main.page {
  padding: 112px 0 80px;
}
@media screen and (max-width: 479px) {
  main.page {
    padding-top: 70px;
  }
}
main.page .pagetitle {
  margin-bottom: 60px;
  padding: 48px 80px 52px;
  position: relative;
  color: var(--main-font-color);
  font-family: var(--main-en-ff);
  font-size: 4rem;
  line-height: 1.6em;
  font-weight: 500;
  color: var(--main-bg-color);
  background: var(--main-key-color1);
  z-index: 2;
}
@media screen and (max-width: 479px) {
  main.page .pagetitle {
    margin-bottom: 52px;
    padding: 32px 32px 40px;
    font-size: 3.2rem;
  }
}
main.page .pagetitle small {
  display: block;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2em;
}
main.page section {
  padding: 100px 0 130px;
}
main.page .wrapper {
  padding: 50px 0;
}
@media screen and (max-width: 1100px) {
  main.page .wrapper {
    padding: 52px 80px;
  }
}
@media screen and (max-width: 768px) {
  main.page .wrapper {
    padding: 52px;
  }
}
@media screen and (max-width: 479px) {
  main.page .wrapper {
    padding: 32px;
  }
}
main.page .contact {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
main.page .contact a {
  display: block;
  padding: 16px 32px;
  font-weight: 700;
  color: #fff;
  background: var(--main-accent);
  border: 2px solid var(--main-accent);
  border-radius: 50vh;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  main.page .contact a:hover {
    color: var(--main-accent);
    background: #fff;
  }
}
main.page .coming_soon {
  padding: 100px;
  text-align: center;
  font-family: var(--main-en-ff);
  letter-spacing: 0.1em;
  color: var(--main-bg-color);
  background: var(--main-bg-color3);
}
@media screen and (max-width: 479px) {
  main.page .coming_soon {
    padding: 52px 32px;
  }
}

#intro section {
  padding: 100px 0 130px;
}
@media screen and (max-width: 479px) {
  #intro section {
    padding: 72px 0 80px;
  }
}
#intro section .wrapper {
  padding: 50px 0;
}
#intro section h2, #intro section h3 {
  font-family: var(--main-ff);
  line-height: 1.6em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#intro section h2 {
  font-size: 4rem;
}
@media screen and (max-width: 479px) {
  #intro section h2 {
    font-size: 2.4rem;
  }
}
#intro section h2 small {
  font-family: var(--main-montserrat-ff);
  display: block;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 700;
}
#intro section h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 479px) {
  #intro section h3 {
    font-size: 1.8rem;
  }
}
#intro section h3 + ul {
  margin-top: 30px;
}
#intro section ul li {
  padding-left: 1em;
  position: relative;
}
#intro section ul li:before {
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(7px, 14px);
  -moz-transform: translate(7px, 14px);
  -ms-transform: translate(7px, 14px);
  transform: translate(7px, 14px);
  border-radius: 50vh;
  background: var(--main-font-color);
}
#intro section .img:before {
  display: block;
  content: "";
  max-width: 480px;
  width: 100%;
  aspect-ratio: 3 / 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../img/main/dice.png) no-repeat center center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  #intro section .wrapper {
    padding: 52px 80px;
  }
}
@media screen and (max-width: 768px) {
  #intro section .wrapper {
    padding: 52px;
  }
}
@media screen and (max-width: 479px) {
  #intro section .wrapper {
    padding: 32px;
  }
}
#intro section.philosophy .wrapper, #intro section.service .wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 50px;
}
#intro section.philosophy .wrapper .img, #intro section.service .wrapper .img {
  width: 50%;
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 479px) {
  #intro section.philosophy .wrapper .img, #intro section.service .wrapper .img {
    width: 100%;
    padding: 16px;
  }
}
#intro section.philosophy .wrapper .img img, #intro section.service .wrapper .img img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
#intro section.philosophy .wrapper .read, #intro section.service .wrapper .read {
  width: calc( 50% - 50px );
}
@media screen and (max-width: 479px) {
  #intro section.philosophy .wrapper .read, #intro section.service .wrapper .read {
    width: 100%;
  }
}
#intro section.philosophy {
  background: var(--main-bg-color1);
}
#intro section.service {
  background: var(--main-bg-color2);
}
#intro section.service .wrapper {
  flex-direction: row-reverse;
}
#intro section.contact {
  background: var(--main-bg-color3);
}

#about h2 {
  font-size: 3rem;
  line-height: 1.6em;
  font-family: var(--main-ff);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 16px;
}
@media screen and (max-width: 479px) {
  #about h2 {
    font-size: 2.4rem;
  }
}
#about h2 small {
  font-family: var(--main-montserrat-ff);
}
#about h2 small, #about h3 small {
  display: block;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 700;
}
#about p br {
  display: inline-block;
}
@media screen and (max-width: 479px) {
  #about p br {
    display: none;
  }
}
#about p + p {
  margin-top: 2em;
}
#about .greeting h2 {
  margin-bottom: 50px;
  padding: 100px 20px;
  background: url(../img/main/about/president.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 479px) {
  #about .greeting h2 {
    padding: 50px 20px;
  }
}
#about .greeting .snipet {
  padding: 50px 100px;
}
@media screen and (max-width: 479px) {
  #about .greeting .snipet {
    padding: 0;
  }
}
#about .greeting .snipet p {
  margin-bottom: 2em;
}
#about .greeting .snipet p.name {
  text-align: right;
}
#about .reasons {
  width: 100%;
  margin: 0 auto 50px;
  padding: 100px 0;
  background: #f0f0f0;
}
@media screen and (max-width: 479px) {
  #about .reasons {
    padding: 50px 0;
  }
}
#about .reasons h2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 479px) {
  #about .reasons h2 {
    margin-bottom: 50px;
  }
}
#about .reasons ol {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 70px;
  counter-reset: number;
}
#about .reasons ol li {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#about .reasons ol li .title {
  width: -moz-calc(50% - 70px);
  width: -o-calc(50% - 70px);
  width: -webkit-calc(50% - 70px);
  width: calc(50% - 70px);
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 479px) {
  #about .reasons ol li .title {
    width: -moz-calc(100% - 50px);
    width: -o-calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    height: 200px;
    margin-bottom: 50px;
  }
}
#about .reasons ol li .title .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}
#about .reasons ol li .title .img:before {
  display: block;
  padding: 20px 30px 60px 60px;
  position: absolute;
  top: 0;
  right: 0;
  counter-increment: number;
  content: counter(number);
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  background: var(--main-accent);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
#about .reasons ol li .title .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#about .reasons ol li .snipet {
  width: 50%;
  padding: 150px 70px 150px 0;
  text-align: left;
}
@media screen and (max-width: 479px) {
  #about .reasons ol li .snipet {
    width: 100%;
    padding: 0 50px;
  }
}
#about .reasons ol li .snipet h3 {
  margin-bottom: 1em;
  font-size: 2.4rem;
  line-height: 1.6em;
  position: relative;
  z-index: 2;
}
#about .reasons ol li:nth-of-type(even) {
  flex-direction: row-reverse;
}
#about .reasons ol li:nth-of-type(even) .title .img {
  border-radius: 16px 0 0 16px;
}
#about .reasons ol li:nth-of-type(even) .title .img:before {
  padding: 20px 60px 60px 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
#about .reasons ol li:nth-of-type(even) .snipet {
  padding: 150px 0 150px 70px;
}
@media screen and (max-width: 479px) {
  #about .reasons ol li:nth-of-type(even) .snipet {
    padding: 0 50px;
  }
}
#about .outline {
  padding: 0 20px;
}
@media screen and (max-width: 479px) {
  #about .outline {
    padding: 0;
  }
}
#about .outline h2 {
  margin-bottom: 50px;
}
#about .outline dl {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  text-align: left;
  border: 5px solid #f0f0f0;
}
#about .outline dl dt, #about .outline dl dd {
  padding: 20px 50px;
  font-weight: 700;
}
#about .outline dl dt:nth-of-type(odd), #about .outline dl dd:nth-of-type(odd) {
  background: #f0f0f0;
}
@media screen and (max-width: 479px) {
  #about .outline dl dt, #about .outline dl dd {
    padding: 20px;
  }
}
#about .outline dl dt {
  width: 200px;
}
@media screen and (max-width: 479px) {
  #about .outline dl dt {
    width: 100%;
    background: #f0f0f0 !important;
  }
}
#about .outline dl dd {
  width: -moz-calc(100% - 200px);
  width: -o-calc(100% - 200px);
  width: -webkit-calc(100% - 200px);
  width: calc(100% - 200px);
}
@media screen and (max-width: 479px) {
  #about .outline dl dd {
    width: 100%;
    background: transparent !important;
  }
}

#service h2 {
  font-size: 3rem;
  line-height: 1.6em;
  font-family: var(--main-ff);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 16px;
}
@media screen and (max-width: 479px) {
  #service h2 {
    font-size: 2.4rem;
  }
}
#service h2 small {
  font-family: var(--main-montserrat-ff);
}
#service h2 small, #service h3 small {
  display: block;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 479px) {
  #service .service > p {
    padding: 0 50px;
    text-align: left;
  }
}
#service p br {
  display: inline-block;
}
@media screen and (max-width: 479px) {
  #service p br {
    display: none;
  }
}
#service p + p {
  margin-top: 2em;
}
#service p + ol {
  margin-top: 70px;
}
#service p a {
  color: var(--main-key-color1);
  text-decoration: underline;
  padding-left: 1.5em;
  position: relative;
}
#service p a:before, #service p a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
#service p a:before {
  width: 15px;
  height: 1px;
  -webkit-transform: translate(0, 14px);
  -moz-transform: translate(0, 14px);
  -ms-transform: translate(0, 14px);
  transform: translate(0, 14px);
  background: var(--main-key-color1);
}
#service p a:after {
  width: 7px;
  height: 7px;
  -webkit-transform: translate(7px, 10.5px) rotate(45deg);
  -moz-transform: translate(7px, 10.5px) rotate(45deg);
  -ms-transform: translate(7px, 10.5px) rotate(45deg);
  transform: translate(7px, 10.5px) rotate(45deg);
  border-top: 1px solid var(--main-key-color1);
  border-right: 1px solid var(--main-key-color1);
}
@media (hover: hover) {
  #service p a:hover {
    text-decoration: none;
  }
}
#service .service {
  width: 100%;
  margin: 0 auto 50px;
  padding: 100px 0;
  background: #f0f0f0;
}
@media screen and (max-width: 479px) {
  #service .service {
    padding: 50px 0;
  }
}
#service .service h2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 479px) {
  #service .service h2 {
    margin-bottom: 50px;
  }
}
#service .service ol {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 70px;
  counter-reset: number;
}
#service .service ol + p {
  border-top: 1px solid #dcdcdc;
  margin-top: 70px;
  padding-top: 40px;
}
#service .service ol li {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#service .service ol li .title {
  width: -moz-calc(50% - 70px);
  width: -o-calc(50% - 70px);
  width: -webkit-calc(50% - 70px);
  width: calc(50% - 70px);
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 479px) {
  #service .service ol li .title {
    width: -moz-calc(100% - 50px);
    width: -o-calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    height: 200px;
    margin-bottom: 50px;
  }
}
#service .service ol li .title .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}
#service .service ol li .title .img:before {
  display: block;
  padding: 20px 30px 60px 60px;
  position: absolute;
  top: 0;
  right: 0;
  counter-increment: number;
  content: counter(number);
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  background: var(--main-key-color1);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
#service .service ol li .title .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#service .service ol li .snipet {
  width: 50%;
  padding: 150px 70px 150px 0;
  text-align: left;
}
@media screen and (max-width: 479px) {
  #service .service ol li .snipet {
    width: 100%;
    padding: 0 50px;
  }
}
#service .service ol li .snipet h3 {
  margin-bottom: 1em;
  font-size: 2.4rem;
  line-height: 1.6em;
  position: relative;
  z-index: 2;
}
#service .service ol li:nth-of-type(even) {
  flex-direction: row-reverse;
}
#service .service ol li:nth-of-type(even) .title .img {
  border-radius: 16px 0 0 16px;
}
#service .service ol li:nth-of-type(even) .title .img:before {
  padding: 20px 60px 60px 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
#service .service ol li:nth-of-type(even) .snipet {
  padding: 150px 0 150px 70px;
}
@media screen and (max-width: 479px) {
  #service .service ol li:nth-of-type(even) .snipet {
    padding: 0 50px;
  }
}

#blog .container {
  padding: 40px 0;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #blog .container {
    padding: 40px;
  }
}
#blog .container #main {
  width: -moz-calc(100% - 290px);
  width: -o-calc(100% - 290px);
  width: -webkit-calc(100% - 290px);
  width: calc(100% - 290px);
}
@media screen and (max-width: 768px) {
  #blog .container #main {
    width: -moz-calc(100% - 200px);
    width: -o-calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 479px) {
  #blog .container #main {
    margin-bottom: 50px;
  }
}
#blog .container aside {
  width: 250px;
}
@media screen and (max-width: 768px) {
  #blog .container aside {
    width: 160px;
  }
}
@media screen and (max-width: 479px) {
  #blog .container #main,
  #blog .container aside {
    width: 100%;
  }
}
#blog .entry {
  display: flow-root;
  padding: 40px 0;
}
#blog .entry h2, #blog .entry h3, #blog .entry h4, #blog .entry h5 {
  position: relative;
}
#blog .entry h2, #blog .entry h3, #blog .entry h4, #blog .entry h5, #blog .entry p, #blog .entry li {
  letter-spacing: .1em;
}
#blog .entry h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  line-height: 3.6rem;
  margin: 60px 0;
  padding: 30px;
  color: #b81939;
  background: #f0f0f0;
}
#blog .entry h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  line-height: 3rem;
  margin: 80px 0 50px;
  padding: 1em;
  color: #393939;
  border-top: 1px dotted #393939;
  border-bottom: 1px dotted #393939;
}
#blog .entry h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 2.4rem;
  margin: 50px 0;
  padding-left: 1.5em;
}
#blog .entry h4:before {
  display: block;
  font-family: "parts";
  content: "\e903";
  width: 1.6rem;
  height: 2rem;
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 2px;
}
#blog .entry h5 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 50px 0;
  padding-left: 20px;
  border-left: 3px solid #393939;
}
#blog .entry p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 4rem;
  margin-bottom: 50px;
}
#blog .entry p.submit input {
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #b81939;
  border: 1px solid #b81939;
}
@media screen and (min-width: 769px) {
  #blog .entry p.submit input:hover {
    color: #b81939;
    background: #fff;
  }
}
#blog .entry img {
  max-width: 100%;
  height: auto;
}
#blog .entry img.alignleft {
  margin: 0 50px 30px 0;
}
#blog .entry img.alignright {
  margin: 0 0 30px 50px;
}
#blog .entry img.aligncenter {
  max-width: 100%;
  height: auto;
}
#blog .entry img.alignleft, #blog .entry img.alignright {
  max-width: 300px;
  height: auto;
}
@media screen and (max-width: 479px) {
  #blog .entry img.alignleft, #blog .entry img.alignright {
    float: none;
    max-width: 100%;
    margin: 0 0 30px;
  }
}
#blog .entry ul, #blog .entry ol {
  margin-bottom: 50px;
  padding: 10px 20px;
  list-style: none;
  background: #f0f0f0;
}
#blog .entry ul li, #blog .entry ol li {
  padding: 1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  position: relative;
  border-top: 1px dotted #666;
}
#blog .entry ul li:first-child, #blog .entry ol li:first-child {
  border-top: none;
}
#blog .entry ul li {
  padding-left: 1.5em;
}
#blog .entry ul li:before {
  display: block;
  content: "";
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(9px, 9px);
  -moz-transform: translate(9px, 9px);
  -ms-transform: translate(9px, 9px);
  transform: translate(9px, 9px);
  background: #333;
}
#blog .entry ol {
  counter-reset: number;
}
#blog .entry ol li {
  padding-left: 2.5em;
}
#blog .entry ol li:before {
  counter-increment: number;
  content: counter(number);
  width: 24px;
  height: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-style: italic;
  position: absolute;
  left: 0;
  text-align: center;
  color: #211f25;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#blog .entry a {
  color: #b81939;
  text-decoration: underline;
}
#blog .entry a:hover {
  text-decoration: none;
}
#blog .entry a[target="_blank"] {
  display: inline-block;
  padding-right: 1.5em;
  position: relative;
}
#blog .entry a[target="_blank"]:after {
  display: block;
  font-family: "parts";
  content: "\e902";
  position: absolute;
  top: 0;
  right: 0;
  font-size: inherit;
  line-height: inherit;
}
#blog .entry .scroll-table {
  margin-bottom: 50px;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 479px) {
  #blog .entry .scroll-table {
    margin-bottom: 0;
  }
}
#blog .entry .scroll-table table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  table-layout: fixed;
}
@media screen and (max-width: 479px) {
  #blog .entry .scroll-table table {
    width: 500px;
  }
}
#blog .entry .scroll-table table th, #blog .entry .scroll-table table td {
  border-collapse: collapse;
  padding: 15px 20px;
  word-wrap: break-word;
  white-space: normal;
}
#blog .entry .scroll-table table th {
  color: #fff;
  font-weight: 400;
  background: rgba(57, 57, 57, 0.5);
  border: 1px solid #fff;
}
#blog .entry .scroll-table table td {
  width: 60%;
  background: #fff;
  border: 1px solid #f0f0f0;
}
#blog .entry .side-scroll {
  display: none;
}
@media screen and (max-width: 479px) {
  #blog .entry .side-scroll {
    display: block;
    width: 100%;
    margin-bottom: 50px;
    padding: 5px;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    line-height: 3rem;
    color: #fff;
    background: rgba(57, 57, 57, 0.5);
  }
}
#blog .entry .video-container {
  position: relative;
  padding: 30px 0 56.25%;
  height: 0;
  overflow: hidden;
}
#blog .entry .video-container iframe, #blog .entry .video-container object, #blog .entry .video-container embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#blog .entry blockquote {
  margin: 0 0 50px;
  padding: 10px 40px;
  position: relative;
  color: #666;
  background: #f0f0f0;
  word-break: break-all;
}
#blog .entry blockquote p {
  font-style: italic;
}
#blog .entry blockquote:before, #blog .entry blockquote:after {
  display: block;
  font-family: "parts";
  width: 20px;
  height: 20px;
  content: "\e900";
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  color: #ccc;
}
#blog .entry blockquote:before {
  left: 15px;
  top: 15px;
}
#blog .entry blockquote:after {
  right: 15px;
  bottom: 15px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#blog .entry blockquote p {
  margin: 0;
  padding: .5em 0;
}
#blog .entry #toc_container {
  margin-bottom: 50px;
  padding: 30px;
  border: 2px solid #ededed;
}
#blog .entry #toc_container .toc_title {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #ededed;
}
#blog .entry #toc_container .toc_list {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}
#blog .entry #toc_container .toc_list a {
  display: inline-block;
  color: #b81939;
}
#blog .entry #toc_container .toc_list ul {
  margin-bottom: 0;
  padding: 0 0 0 1em;
  background: transparent;
}
#blog .entry #toc_container .toc_list li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding: 5px 0;
}
#blog .entry #toc_container .toc_list li:before {
  display: none;
}
#blog .entry #toc_container .toc_list li li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  border: 0;
}
#blog .entry #toc_container .toc_list li li li {
  padding: 0;
}
#blog .entry #toc_container .wp-embedded-content {
  width: 100%;
  max-width: 100%;
}
#blog .entry span.wpcf7-list-item {
  display: block;
}

#contact .entry + h3,
#contact .entry + ul.button,
#contact .snipet + h3,
#contact .snipet + ul.button,
#contact .textarea + h3,
#contact .textarea + ul.button {
  margin-top: 50px;
}
#contact .privacy {
  width: 100%;
  margin-top: 24px;
}
#contact .privacy .scroll {
  height: 200px;
  padding: 24px 32px;
  overflow-y: scroll;
  background: #f0f0f0;
}
#contact .privacy .scroll::-webkit-scrollbar {
  width: 10px;
}
#contact .privacy .scroll::-webkit-scrollbar-track {
  background-color: #dcdcdc;
}
#contact .privacy .scroll::-webkit-scrollbar-thumb {
  background-color: #393939;
}
#contact .privacy hr + * {
  margin-top: 32px;
}
#contact .privacy ul li {
  position: relative;
  padding-left: 1em;
}
#contact .privacy ul li:before {
  display: block;
  content: "";
  position: absolute;
  top: 15px;
  left: 7px;
  width: 2px;
  height: 2px;
  border-radius: 1px;
  background: #393939;
}
#contact h2 {
  font-size: 3.2rem;
  line-height: 2em;
  margin-bottom: 1em;
}
#contact h3 {
  font-size: 2.4rem;
  line-height: 2em;
  margin-bottom: 1em;
  padding-left: 1.2em;
  position: relative;
}
#contact h3:before {
  display: block;
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background: #393939;
}
#contact h4, #contact h5, #contact p, #contact ul, #contact ol {
  margin-bottom: 3.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
#contact h4 a, #contact h5 a, #contact p a, #contact ul a, #contact ol a {
  color: var(--main-accent);
  text-decoration: underline;
}
@media (hover: hover) {
  #contact h4 a:hover, #contact h5 a:hover, #contact p a:hover, #contact ul a:hover, #contact ol a:hover {
    text-decoration: none;
  }
}
#contact ul.input {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}
#contact ul.input li {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  #contact ul.input li {
    flex-wrap: wrap;
    gap: 8px;
  }
}
#contact ul.input li .label {
  width: 180px;
}
@media screen and (max-width: 479px) {
  #contact ul.input li .label {
    width: 100%;
  }
}
#contact ul.input li .frame {
  width: -moz-calc(100% - 200px);
  width: -o-calc(100% - 200px);
  width: -webkit-calc(100% - 200px);
  width: calc(100% - 200px);
}
@media screen and (max-width: 479px) {
  #contact ul.input li .frame {
    width: 100%;
  }
}
#contact ul.error {
  margin-bottom: 50px;
  padding: 15px;
  background: rgba(204, 0, 0, 0.8);
  border: 1px solid #c00;
  box-shadow: inset 0px 0px 0px 4px #c00, inset 0px 0px 0px 5px #fff;
}
#contact ul.error li {
  position: relative;
  color: #fff;
  padding-left: 1.2em;
}
#contact ul.error li:before {
  display: block;
  content: "";
  content: "※";
  width: 14px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
#contact ul.button {
  padding: 0 32px;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 479px) {
  #contact ul.button {
    gap: 20px;
  }
}
#contact ul.button li input {
  display: block;
  padding: 16px 40px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  letter-spacing: 0.1em;
  font-family: var(--main-en-ff);
  font-size: 1.8rem;
  line-height: 1.6em;
  font-weight: 700;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
#contact ul.button li.submit input {
  color: var(--main-bg-color);
  background: var(--main-accent);
  border: 1px solid var(--main-accent);
}
@media screen and (min-width: 769px) {
  #contact ul.button li.submit input:hover {
    color: var(--main-accent);
    background: var(--main-bg-color);
  }
}
#contact ul.button li.back input {
  color: #393939;
  background: #ccc;
  border: 1px solid #ccc;
}
@media screen and (min-width: 769px) {
  #contact ul.button li.back input:hover {
    color: #fff;
    background: #393939;
  }
}
#contact ul + h3 {
  margin-top: 50px;
}
#contact textarea {
  width: 100%;
  height: 8em;
}
#contact strong {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #ff6 60%);
}
#contact .scroll-table {
  margin-bottom: 50px;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 479px) {
  #contact .scroll-table {
    margin-bottom: 0;
  }
}
#contact .scroll-table table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  table-layout: fixed;
}
@media screen and (max-width: 479px) {
  #contact .scroll-table table {
    width: 500px;
  }
}
#contact .scroll-table table th, #contact .scroll-table table td {
  border-collapse: collapse;
  padding: 15px 20px;
  word-wrap: break-word;
  white-space: normal;
}
#contact .scroll-table table th {
  color: #fff;
  font-weight: 400;
  background: rgba(57, 57, 57, 0.5);
  border: 1px solid #fff;
}
#contact .scroll-table table td {
  width: 60%;
  background: #fff;
  border: 1px solid #f0f0f0;
}
#contact .side-scroll {
  display: none;
}
@media screen and (max-width: 479px) {
  #contact .side-scroll {
    display: block;
    width: 100%;
    margin-bottom: 50px;
    padding: 5px;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    line-height: 3rem;
    color: #fff;
    background: rgba(57, 57, 57, 0.5);
  }
}

footer {
  margin-top: auto;
  padding: 52px 80px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: var(--main-bg-color);
  background: var(--main-key-color1);
}
@media screen and (max-width: 768px) {
  footer {
    padding: 52px 32px;
  }
}
footer .logo {
  max-width: 250px;
  width: 100%;
  aspect-ratio: 5.6/1;
}
@media screen and (max-width: 768px) {
  footer .logo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 479px) {
  footer .logo {
    margin: 0 auto 16px;
    max-width: 200px;
  }
}
footer .logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../img/logo.png) no-repeat center center;
  background-size: contain;
}
footer ul {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  footer ul {
    display: none;
  }
}
footer ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
footer ul li a {
  color: var(--main-bg-color);
}
@media (hover: hover) {
  footer ul li a:hover {
    text-decoration: underline;
  }
}
footer .copyright {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  line-height: 2rem;
  font-style: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    margin: 0 auto;
  }
}

#menu {
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
  position: fixed;
  inset: 0;
  opacity: 0;
  background: var(--main-bg-color3);
  z-index: -1;
}
#menu:before, #menu:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: inherit;
}
#menu:before {
  bottom: -100%;
}
#menu:after {
  top: -100%;
}
#menu > div {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  color: #393939;
  background: var(--main-bg-color3);
}
#menu > div .scroll {
  width: 100%;
  height: auto;
  padding: 24px 32px 72px;
}
#menu > div .scroll .logo {
  max-width: 200px;
  width: 100%;
  margin-bottom: 32px;
  aspect-ratio: 5.6/1;
}
#menu > div .scroll .logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../img/logo.png) no-repeat center center;
  background-size: contain;
}
#menu > div .scroll ul {
  background: #fff;
  padding: 16px;
}
#menu > div .scroll ul + ul {
  margin-top: 10px;
}
#menu > div .scroll ul li {
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid var(--main-bg-color3);
}
#menu > div .scroll ul li:last-of-type {
  border-bottom: 0;
}
#menu > div .scroll ul li a {
  display: block;
  padding: 10px 0;
  color: #393939;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
#menu > div .scroll ul.nav li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  #menu > div .scroll ul.nav li {
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  #menu > div .scroll ul.nav li {
    text-align: left;
  }
}
#menu > div .scroll ul.social {
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
#menu > div .scroll ul.social li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  line-height: 3.2rem;
}
#menu.action {
  opacity: 1;
  z-index: 3;
  background: #fff;
}

#cover {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  display: none;
}

.animate {
  position: absolute;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(365deg);
    -moz-transform: rotate(365deg);
    -ms-transform: rotate(365deg);
    transform: rotate(365deg);
  }
}
@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(365deg);
    -moz-transform: rotate(365deg);
    -ms-transform: rotate(365deg);
    transform: rotate(365deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(365deg);
    -moz-transform: rotate(365deg);
    -ms-transform: rotate(365deg);
    transform: rotate(365deg);
  }
}
@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  20% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  30% {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  40% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  80% {
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  90% {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-moz-keyframes wave {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  20% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  30% {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  40% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  80% {
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  90% {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes wave {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  20% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  30% {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  40% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  80% {
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  90% {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes scrollto {
  0% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  25% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  50% {
    height: 100%;
    top: 0;
    bottom: auto;
  }
  75% {
    height: 100%;
    top: auto;
    bottom: 0;
  }
  100% {
    height: 0%;
    top: auto;
    bottom: 0;
  }
}
@-moz-keyframes scrollto {
  0% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  25% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  50% {
    height: 100%;
    top: 0;
    bottom: auto;
  }
  75% {
    height: 100%;
    top: auto;
    bottom: 0;
  }
  100% {
    height: 0%;
    top: auto;
    bottom: 0;
  }
}
@keyframes scrollto {
  0% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  25% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  50% {
    height: 100%;
    top: 0;
    bottom: auto;
  }
  75% {
    height: 100%;
    top: auto;
    bottom: 0;
  }
  100% {
    height: 0%;
    top: auto;
    bottom: 0;
  }
}
.formError {
  display: block;
  position: absolute;
  top: 300px;
  left: 300px;
  cursor: pointer;
  text-align: left;
  z-index: 990;
}
.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}
.formError .formErrorArrow {
  z-index: 996;
}
.formError .formErrorArrow .line10 {
  width: 13px;
  border: none;
}
.formError .formErrorArrow .line9 {
  width: 11px;
  border: none;
}
.formError .formErrorArrow .line8 {
  width: 11px;
}
.formError .formErrorArrow .line7 {
  width: 9px;
}
.formError .formErrorArrow .line6 {
  width: 7px;
}
.formError .formErrorArrow .line5 {
  width: 5px;
}
.formError .formErrorArrow .line4 {
  width: 3px;
}
.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}
.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}
.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}
.formError .formErrorArrowBottom {
  margin: 0px 0 0 12px;
  top: 2px;
}
.formError .formErrorArrow div {
  display: block;
  height: 1px;
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
  background: #ee0101;
}
.formError .formErrorContent {
  width: 100%;
  min-width: 120px;
  padding: 4px 10px;
  position: relative;
  font-size: 11px;
  color: #fff;
  background: #ee0101;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  z-index: 991;
}
.formError.inline .formErrorContent {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.ui-dialog .formError {
  z-index: 5000;
}
.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}
.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.ajaxSubmit {
  display: none;
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

body[dir='rtl'] .formError .formErrorArrow, body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.jspContainer {
  overflow: hidden;
  position: relative;
}

.jspPane {
  position: absolute;
}

.jspVerticalBar {
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.jspHorizontalBar {
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.jspTrack {
  position: relative;
  background: #eee7da;
}

.jspDrag {
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
  background: #d6c3a2;
}

.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag {
  float: left;
  height: 100%;
}

/*インライン用*/
.inline {
  position: relative;
  margin: 10px auto;
  max-width: 700px;
  background: #fff;
  padding: 20px;
}
.inline table {
  width: 100%;
  border-collapse: collapse;
}
.inline table th, .inline table td {
  font-weight: normal;
  padding: 15px;
  vertical-align: top;
  border-collapse: collapse;
  border-bottom: 1px solid  #f0f0f0;
}
.inline table td {
  width: 75%;
}
.inline table td a {
  color: #b81939;
  text-decoration: underline;
}
.inline table td a:hover {
  text-decoration: none;
}
.inline li {
  padding-left: 1em;
  position: relative;
}
.inline li:before {
  display: block;
  content: "・";
  width: 1em;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 479px) {
  .inline table {
    width: 100%;
    border-collapse: collapse;
  }
  .inline table tr {
    display: block;
    margin-bottom: 1.5em;
  }
  .inline table th, .inline table td {
    display: list-item;
    width: 100%;
    padding: 10px;
    border: none;
    list-style: none;
  }
  .inline table th {
    text-align: left;
  }
  .inline table td {
    color: #b81939;
    background: #f6f6f6;
  }
}
/*表示のエフェクト*/
.mfp-fade.mfp-bg {
  opacity: 0.001;
  /* Chrome opacity transition bug */
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #0b0b0b;
  overflow: hidden;
  opacity: 0.8;
  filter: alpha(opacity=80);
  z-index: 1042;
}

.mfp-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1043;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  display: inline-block;
  content: '';
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  width: auto;
  margin-top: -0.8em;
  position: absolute;
  top: 50%;
  right: 8px;
  bottom: auto;
  left: 8px;
  text-align: center;
  color: #ccc;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  padding: 0 0 18px 10px;
  line-height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  width: 100%;
  padding-right: 6px;
  right: -6px;
  text-align: right;
  color: #fff;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  width: 90px;
  height: 110px;
  margin: 0;
  margin-top: -55px;
  padding: 0;
  position: absolute;
  top: 50%;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}
