/*======================================================
Reset
======================================================*/
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/*======================================================
Foundation
======================================================*/
body {
  color: #000;
  background-color: #fff;
  line-height: 1;
  position: relative;
  font-family: sans-serif;
  word-wrap: break-word;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}

del {
  text-decoration: line-through;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/*======================================================
Header
======================================================*/
body > header {
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
  margin-top: 30px;
}
@media (max-width: 560px) {
  body > header {
    margin-top: 26px;
  }
}
body > header h1 img {
  width: 100%;
}
@media (max-width: 1400px) {
  body > header h1 img {
    padding: 0 15px;
  }
}
@media (max-width: 560px) {
  body > header h1 img {
    padding-left: 26px;
    padding-right: 26px;
  }
}

/*======================================================
Main
======================================================*/
main {
  max-width: 1480px;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 100px;
}
@media (max-width: 560px) {
  main {
    padding-left: 26px;
    padding-right: 26px;
    padding-bottom: 40px;
  }
}
main .description {
  text-align: center;
  color: #603914;
  line-height: 1.5;
  margin-top: 50px;
  font-weight: 100;
  font-size: 22px;
}
@media (max-width: 560px) {
  main .description {
    font-size: 18px;
    margin-top: 23px;
  }
}
main > section h2 {
  background-color: #f29545;
  color: #ffffff;
  padding: 16px 14px;
  margin-top: 60px;
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 560px) {
  main > section h2 {
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 100;
    margin-top: 23px;
  }
}
main > section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 120px 80px;
  margin-top: 40px;
  line-height: 1.75;
  font-size: 16px;
}
@media (max-width: 1420px) {
  main > section ul {
    gap: 120px 30px;
  }
}
@media (max-width: 760px) {
  main > section ul {
    gap: 120px 30px;
  }
}
@media (max-width: 560px) {
  main > section ul {
    gap: 80px 0;
  }
}
main > section ul li {
  width: calc((100% - 160px) / 3);
}
@media (max-width: 1420px) {
  main > section ul li {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 760px) {
  main > section ul li {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 560px) {
  main > section ul li {
    width: 100%;
    border-bottom: #f29545 3px solid;
    padding-bottom: 10px;
  }
}
main > section ul li img {
  margin-bottom: 21px;
}
main > section ul li .title {
  color: #404040;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 18px;
}
main > section ul li .introduction {
  line-height: 1.5;
  margin-top: 8px;
}
main > section ul li .logo {
  width: 50%;
}
main > section ul li .shop a {
  color: #f29545;
  line-height: 1.5;
}
main .note {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.6;
}/*# sourceMappingURL=style.css.map */