@charset "UTF-8";
/* =====================================================
  1.0 - Foundation
===================================================== */
/**
 * Default box-sizing
 */
*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

/*
  フォントの親要素の値を継承。
  （body以外のすべての要素。）
*/
*:not(body) {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
}

html {
  color: #000;
  background: #FFF;
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
}

/**
 * Resetting HTML5 Elements for older browsers
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

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,
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,
input,
textarea,
button,
select,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

td,
th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul,
ol,
li {
  list-style: none;
}

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

p,
li,
dd,
dt,
td,
th {
  word-wrap: break-word;
}

select,
input {
  word-wrap: normal;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
time,
mark {
  font-style: normal;
  font-weight: normal;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
keygen {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]),
textarea,
button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0px;
}

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: 700;
}

a {
  color: inherit;
}

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

html {
  font-size: 62.5%;
}

body {
  height: 100%;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  color: #222;
}

/* =====================================================
  2.0 - Layout
===================================================== */
.l-container {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-container {
    width: 93.75%;
    min-width: 960px;
  }
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
}

@media screen and (min-width: 768px) {
  .l-inner {
    min-width: 960px;
    padding: 0 7.3333%;
  }
}

.l-section + .l-section {
  margin-top: 32px;
}

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

.l-section-color {
  background-color: #B64A33;
  padding: 40px 0;
  margin: 40px 0 0 0;
}

.l-footer {
  margin-top: 32px;
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
.c-copy {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .c-copy {
    font-size: 1.3rem;
  }
}

/*
  Button
*/
.c-button {
  display: inline-block;
  border: 0;
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*
  3.2 - Project
-----------------------------------------------------*/
.p-footer {
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #B64A33;
  padding: 16px 0;
  margin: 32px auto 0 auto;
}

@media screen and (min-width: 768px) {
  .p-footer {
    min-width: 960px;
  }
}

.p-hero {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#B64A33), color-stop(76%, #B64A33), color-stop(76%, #fff), to(#fff));
  background: linear-gradient(180deg, #B64A33 0%, #B64A33 76%, #fff 76%, #fff 100%);
  padding: 16px 0;
  margin: 0 auto 40px auto;
}

@media screen and (min-width: 768px) {
  .p-hero {
    min-width: 960px;
  }
}

.p-hero img {
  max-width: 90%;
}

.p-photoList {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .p-photoList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-photoList li {
  position: relative;
  margin-bottom: 2%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media screen and (min-width: 768px) {
  .p-photoList li {
    margin-right: 2%;
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
  }
}

.p-photoList li:nth-child(2n) {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .p-photoList li:nth-child(2n) {
    margin-right: 2%;
  }
}

@media screen and (min-width: 768px) {
  .p-photoList li:nth-child(3n) {
    margin-right: 0;
  }
}

.p-photoList li img {
  width: 100%;
}

.p-photoList__text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 8px;
  margin: 8px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.p-photoList__month {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #B64A33;
  color: #fff;
  padding: 8px;
}

.p-heading {
  background-color: #979797;
  color: #fff;
  font-size: 2rem;
  padding: 0.4em;
  display: inline-block;
  margin-bottom: 0.5em;
}

.p-textOmochi {
  margin-bottom: 24px;
  font-size: 1.8rem;
  color: #B64A33;
}

.p-imgOmochi img {
  max-width: 54%;
}

/*
  3.2 - Utility
-----------------------------------------------------*/
/*
  Visually Hidden
*/
.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

/*
  Screen Reader Text
*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
/*# sourceMappingURL=common.css.map */