@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400&family=Figtree:wght@300;400;500;700&&family=Noto+Sans+JP:wght@400;700&display=swap");
.cover {
  background-image: url(/images/bg_sp.png);
  background-size: contain;
  height: 90vh;
}
.cover .container {
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 769px) {
  .cover {
    background-image: url(/images/bg.png);
  }
  .cover .container {
    position: relative;
    align-items: flex-start;
  }
}
.cover h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
}
.cover h1 .flex {
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
}
.cover h1 .big {
  font-size: 9rem;
  font-family: "Cormorant Unicase";
}
@media (max-width: 768px) {
  .cover h1 {
    margin-bottom: 2em;
  }
}
@media (min-width: 769px) {
  .cover h1 {
    font-size: 6rem;
  }
  .cover h1 .flex {
    justify-content: flex-start;
  }
  .cover h1 .big {
    font-size: 12rem;
  }
  .cover h1 .blur2 {
    margin-left: -1rem;
  }
  .cover h1 .blur3 {
    text-align: left;
    padding-left: 2em;
  }
}
.cover .blur {
  opacity: 0;
  display: block;
  text-align: center;
  animation: blur 10s ease-out forwards;
  line-height: 1;
}
.cover .blur1 {
  animation-delay: 0.1s;
}
.cover .blur2 {
  margin-left: -1rem;
  animation-delay: 1s;
  display: flex;
  align-items: flex-start;
}
.cover .blur2 img {
  width: 12rem;
  margin: -0.5rem 0 0 0.5rem;
}
@media (min-width: 769px) {
  .cover .blur2 {
    margin-left: -2rem;
  }
  .cover .blur2 img {
    width: 23rem;
  }
}
.cover .blur3 {
  animation-delay: 2s;
}
.cover .blur4 {
  opacity: 0;
  animation: godown 2s ease-out forwards, blur 10s ease-out forwards;
  animation-delay: 3s;
  position: absolute;
  bottom: 3em;
  left: 0;
  width: 100%;
}
.cover .blur4 img {
  width: 6rem;
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  .cover .blur4 img {
    margin-bottom: -1.5rem;
  }
}
.cover .blur5 {
  animation: blur2 5s ease-out infinite;
}
@media (min-width: 769px) {
  .cover .blur5 i {
    font-size: 3rem;
  }
}

.ball {
  position: absolute;
  top: 5rem;
  right: 1rem;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  background-color: #fcfb99;
  width: 27rem;
  height: 27rem;
  border-radius: 50%;
  padding: 1em;
  display: none;
}
@media (min-width: 769px) {
  .ball {
    display: flex;
    flex-direction: column;
  }
}

.tel {
  font-size: 1.8rem;
}
.tel .top {
  font-weight: 500;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}
.tel .top .big {
  font-size: 1.2em;
}

@media (min-width: 769px) {
  .fadeInUpTrigger,
  .fadeInTrigger,
  .fadeInLeftTrigger,
  .fadeInRightTrigger {
    opacity: 0;
  }
}
@keyframes stretch {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes godown {
  0% {
    transform: translateY(1em);
  }
  100% {
    transform: translateY(2em);
  }
}
@keyframes godown2 {
  0% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateY(5rem);
  }
}
@keyframes blur {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
  5% {
    text-shadow: 0 0 90px #fff;
  }
  15% {
    opacity: 1;
  }
  20% {
    text-shadow: 0 0 0px #fff;
  }
  80% {
    text-shadow: 0 0 0px #fff;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blur2 {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
  5% {
    text-shadow: 0 0 90px #fff;
  }
  15% {
    opacity: 1;
  }
  20% {
    text-shadow: 0 0 0px #fff;
  }
  80% {
    text-shadow: 0 0 0px #fff;
  }
  85% {
    opacity: 1;
  }
  95% {
    text-shadow: 0 0 90px #fff;
  }
  100% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

small {
  font-size: 0.8em;
  padding-left: 0.5rem;
}

h1 {
  font-size: 4.8rem;
}

h3 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}
@media (min-width: 769px) {
  h3 {
    font-size: 3.6rem;
  }
}

h4 {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 0.2em;
}
@media (min-width: 769px) {
  h4 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
}

section {
  position: relative;
}
@media (min-width: 769px) {
  section {
    height: 80vh;
  }
}

a {
  word-wrap: break-word;
  word-break: break-all;
}

.cormorant {
  font-size: 4rem;
  font-family: "Cormorant Unicase";
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1em;
}
@media (min-width: 769px) {
  .cormorant {
    font-size: 4.8rem;
    margin-bottom: 2em;
  }
}

.inlineblock {
  display: inline-block;
  margin-left: 0.3em;
}

.flex {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 769px) {
  .flex {
    flex-direction: row;
  }
}

.container {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
  padding: 3em 1em 4em;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container.full {
  padding: 1em;
}
.container ul,
.container p {
  text-align: left;
}
.container p {
  max-width: 63rem;
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .container {
    padding: 2em;
    height: 100%;
  }
  .container .box {
    width: 50%;
  }
}

header a,
footer a {
  text-decoration: none;
  color: inherit;
}

header {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 5rem;
  color: #222;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media (min-width: 769px) {
  header {
    height: 7rem;
  }
}
header .menu {
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  header .menu {
    justify-content: flex-start;
  }
}
header .menu .logo {
  width: 11rem;
  padding-right: 0.5em;
}
header .menu ul {
  display: inherit;
}
header .menu li {
  margin-left: 1.3rem;
}
header .lang {
  margin-left: auto;
  color: #fff;
  line-height: 1;
  background-color: rgba(4, 149, 252, 0.6);
  border-radius: 15px;
}
header .lang a {
  padding-left: 0.5em;
  padding-right: 0.5em;
  line-height: 1.5;
}
header .lang a.active {
  border-radius: 10px;
  background-color: #0495fc;
}

footer {
  background-color: #01153c;
  color: #fff;
}
footer .container {
  padding: 2em;
}
@media (min-width: 769px) {
  footer .container {
    flex-direction: row-reverse;
    justify-content: space-between;
    text-align: left;
  }
}
footer small {
  width: 100%;
}
footer .footer-link {
  width: 100%;
  margin-bottom: 0.5em;
}
@media (min-width: 769px) {
  footer .footer-link {
    text-align: right;
  }
}
footer .footer-link a {
  padding: 0 1em;
}
footer .footer-link a:first-child {
  border-right: 1px solid;
}

.service .container {
  background-image: url(/images/service.jpg);
  background-color: #fff;
  background-position: -5em -5.5em;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 10em 0 0 0;
}
.service article {
  background-color: #fff;
  padding: 2em 1em 4em;
  width: 100%;
}
@media (min-width: 769px) {
  .service .container {
    background-position: -4em 0;
    padding: 0;
  }
  .service .container article {
    margin-left: auto;
    max-width: 55rem;
    background-color: transparent;
    padding: 2em;
    border-radius: 50%;
  }
  .service .container p {
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
}
@media (min-width: 769px) and (max-width: 860px) {
  .service {
    height: 60vh;
  }
}

.risk {
  overflow: hidden;
  background-color: #fcfb99;
}
.risk::before, .risk::after {
  content: "";
  position: absolute;
  background: url(/images/risk.png) no-repeat;
  background-size: cover;
  transform: rotate(-16deg);
  display: block;
  height: 2.5em;
  width: 100%;
}
.risk::before {
  transform: rotate(-25deg);
  top: 0;
  left: -4rem;
}
.risk::after {
  bottom: 0;
  right: -4rem;
}
.risk .container {
  padding: 9em 1em 6em;
}
@media (max-width: 768px) {
  .risk .container p {
    width: 29rem;
  }
}
@media (min-width: 769px) {
  .risk .container {
    padding: 4em 1em;
  }
  .risk::before, .risk::after {
    background-size: contain;
    height: 4em;
  }
  .risk::before {
    top: -1.5em;
    left: -20%;
  }
  .risk::after {
    transform: rotate(-38deg);
    bottom: 9em;
    right: -37%;
  }
}

.contact {
  color: #fff;
  background-color: #03b7e4;
}
.contact .tel {
  padding-top: 0.5em;
}
@media (max-width: 768px) {
  .contact .tel {
    margin-bottom: 4em;
    padding-bottom: 2em;
    border-bottom: 2px dotted;
  }
}
.contact .tel .top .big {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.contact img {
  margin-bottom: 1em;
}
.contact .img--pc {
  width: 9rem;
}
.contact .img--tel {
  width: 5rem;
}

.bt {
  text-align: center;
  max-width: 25rem;
  margin: 2em auto 1em;
  font-size: 2.2rem;
  background-color: #fcfb99;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5em 0;
  display: block;
  border-radius: 3rem;
}
@media (min-width: 769px) {
  .bt {
    margin: 3em auto 0;
  }
}

.thumb {
  height: 15rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 769px) {
  .thumb {
    height: 100%;
    background-attachment: fixed;
  }
}

@media (min-width: 769px) {
  .parallax {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

.marketing,
.profile {
  background-color: #fff;
}
.marketing .container,
.profile .container {
  max-width: 80rem;
  height: 112%;
  border-radius: 50%;
  margin-top: -2%;
}
@media (min-width: 769px) {
  .marketing .container,
  .profile .container {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.profile .thumb {
  background-image: url(/images/profile.jpg);
}
.profile p {
  margin-bottom: 2em;
  text-align: center;
}
.profile ul {
  max-width: 25.5rem;
  margin: 0 auto;
  list-style-type: disc;
}
@media (min-width: 769px) {
  .profile ul {
    max-width: 28.5rem;
  }
}

.marketing .thumb {
  background-image: url(/images/marketing.jpg);
}

.other {
  padding-top: 6em;
}
@media (min-width: 769px) {
  .other {
    padding-top: 10em;
  }
}
.other .container ul {
  max-width: 63rem;
  width: 100%;
  list-style-type: disc;
  margin: 2em 0 1em;
}
.other .container ul li {
  margin-bottom: 1em;
}
.other .container p {
  max-width: 85rem;
}
.other .headering {
  text-align: center;
  color: #01153c;
}
.other h1,
.other h3 {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.other h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.other h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  opacity: 0.8;
}
.other h3:first-child {
  margin-top: 0;
}
.other h3:last-of-type {
  opacity: 1;
  padding-top: 2em;
}
.other p {
  opacity: 0.6;
}
@media (min-width: 769px) {
  .other h1,
  .other h3 {
    max-width: 100%;
  }
  .other h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  .other h3 {
    font-size: 2.3rem;
    margin-top: 5rem;
  }
  .other h3:first-child {
    margin-top: 2rem;
  }
}

.ja small {
  display: inline-block;
  font-size: 0.7em;
}
.ja .profile ul {
  max-width: 27.5rem;
}
@media (min-width: 769px) {
  .ja .profile ul {
    max-width: 29.5rem;
  }
}
@media (min-width: 769px) {
  .ja h3 {
    max-width: 45rem;
    padding-bottom: 1em;
  }
  .ja .parallax .container {
    height: 110%;
    padding-bottom: 4em;
  }
}
.ja .cormorant .subtitle {
  display: block;
  font-size: 1.8rem;
  padding-top: 0.5em;
  opacity: 0.8;
}
.ja .cormorant .subtitle::before, .ja .cormorant .subtitle::after {
  content: "ー";
  padding: 0 1rem;
}
.ja .bt {
  font: 2rem;
}/*# sourceMappingURL=style.css.map */