/**
 * File Name : style.css
 * Version : 1.0
 * Description : 全ページ共通CSSファイル
 * Since : 2021-10-06
 *
 * ---- Table of Contents ----
 *
 * 1.0 - Foundation
 *    1.1 - Reset
 *    1.2 - Base
 *
 * 2.0 - Layout
 *    2.1 - Centering
 *    2.2 - Header
 *    2.3 - Global Nav
 *    2.4 - Main
 *    2.5 - Breadcrumb
 *    2.6 - Footer
 *
 * 3.0 - Object
 *    3.1 - Component
 *
 */

/* =====================================================
  1.0 - Foundation
===================================================== */

/*
  1.1 - Reset
-----------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

body.is-active-drawer {
  overflow: hidden;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body.is-active-drawer:before {
  visibility: visible;
  opacity: 1;
}

/*
  1.2 - Base
-----------------------------------------------------*/

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #212121;
  font-family: "Noto Serif JP", serif, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", "ヒラギノ角ゴ ProN W3", Meiryo,
    "メイリオ", sans-serif;
  line-height: 1.5;
  background-color: #f1f1f1;
  background-color: #fae8cf;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.p-header__title {
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-top: 5em;
}

.u-text {
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

strong {
  font-weight: bold;
}

.-mincho {
  font-family: "Noto Serif JP", serif;
}

.-center {
  text-align: center;
}

.-left {
  text-align: left;
}

.-small {
  font-size: 80%;
}

.l-section {
  margin: 5em 0;
}

/* Button */
.button {
  position: relative;
  display: block;
  outline: 0;
  border: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.button--primary {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  border-radius: 5px;
  padding: 1em 3em;
  margin: auto;
}
.button--primary:hover {
  background-color: #c47272;
  color: #ffffff;
}

.l-header {
  position: relative;
}

.p-hero {
  position: relative;
  height: 70vh;
}

.p-hero__copy {
  font-size: 5vh;
  line-height: 1.5;
  text-transform: uppercase;
  color: #333333;
  text-shadow: 0px 1px 3px #ffffff, 1px 6px 6px rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .p-hero__copy {
    font-size: 15vh;
  }
}

.p-hero .walk-tiger {
  position: absolute;
  bottom: 0;
  right: -10%;
  z-index: 1;
  width: 30%;
  max-width: 240px;
  height: auto;
}

.p-hero .walk-cow {
  position: absolute;
  bottom: 0;
  left: 7%;
  z-index: 1;
  width: 30%;
  max-width: 240px;
  height: auto;
}

.p-hero::before,
.p-hero::after {
  content: "";
  display: block;
  width: 41vw;
  height: 10vh;
  position: absolute;
  background-image: url(/assets/images/cloud-figure.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-hero::before {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}
.p-hero::after {
  top: 25%;
  left: 0;
}

.p-hero::before {
  animation: fadeInRight 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeInRight {
  0% {
    transform: translateX(20vw) rotate(180deg);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(180deg);
  }
}

.p-hero::after {
  animation: fadeInLeft 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-20vw);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.walk-animals {
  animation: animals 1s forwards;
  transform: translateX(-200px);
}

@keyframes animals {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-50px);
  }
}

.l-main {
  overflow: hidden;
}

.end-figure .walk-tiger {
  position: relative;
  bottom: 0;
  left: -15%;
  z-index: 1;
  width: 320px;
  height: auto;
}

.end-figure {
  animation: fadeInLeftTiger 10s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeInLeftTiger {
  0% {
    transform: translateX(-20vw);
    opacity: 1;
  }
  100% {
    transform: translateX(120vw);
    opacity: 1;
  }
}

.intro-message {
  margin-bottom: 2.5em;
}

.main-message {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.todolist-2022-item {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 1em;
  text-align: left;
}

.sns {
  margin-bottom: 5em;
}

.sns-list {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.share {
  text-align: center;
}

.l-footer {
  text-align: center;
}

.-block {
  display: block;
}

.-inline-block {
  display: inline-block;
}

.mgl1_5 {
  margin-left: 1.5em;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
