@charset "UTF-8";
/*
 * メディアクエリ用ミックスイン
 *
 * $from: 指定した画面幅を超過した状態をブレークポイントに設定する
 * $until: 指定した画面幅以下の状態をブレークポイントに設定する
 */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700&display=swap");
/*path*/
/*color*/
/*font-family*/
/*font-size*/
.wrapper {
  font-size: clamp(1.4rem, 1.327rem + 0.364vw, 1.6rem);
}

.articleMain__title {
  font-size: clamp(2rem, 1.782rem + 1.091vw, 2.6rem);
}

/*arrow*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  font-size: 62.5%; /* 10px */
  overflow-y: scroll;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  list-style: none;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  position: relative;
  word-break: break-all;
}
.wrapper a {
  text-decoration: none;
  transition: opacity 0.3s;
}
.wrapper a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .wrapper a:hover {
    opacity: 1;
  }
}
.wrapper img {
  width: 100%;
  height: auto;
}
.wrapper::selection {
  background-color: #ceb77d;
  color: #000000;
}

/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.8.1
*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, section, figure {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

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

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input, button, textarea, select {
  *font-size: 100%;
}

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

* {
  box-sizing: border-box;
}

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

.main {
  background-color: #f7f4ed;
}
.main__inner {
  width: 100%;
  max-width: 1200px;
  padding: 100px 40px 40px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .main__inner {
    flex-direction: column;
    gap: 20px;
  }
}

.articleCategory__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .articleCategory__inner {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
  }
}
.articleCategory__tag {
  width: 8em;
  padding: 10px;
  color: #FFFFFF;
  background: #ceb77d;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .articleCategory__tag {
    width: 7em;
    padding: 7px 5px;
  }
}

.articleMain {
  padding: 0 0 60px;
}
@media (max-width: 767.98px) {
  .articleMain {
    padding: 0 0 20px;
  }
}
.articleMain__inner {
  padding: 30px 40px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .articleMain__inner {
    padding: 20px 20px;
  }
}
.articleMain__date {
  color: #ceb77d;
  text-align: right;
}
.articleMain__title {
  padding: 15px 0 25px;
  color: #595757;
  line-height: 1.6;
  font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
}
@media (max-width: 767.98px) {
  .articleMain__title {
    padding: 10px 0 20px;
  }
}
.articleMain__img {
  width: 100%;
}
.articleMain__text {
  width: 100%;
  padding: 30px 0 0;
  color: #595757;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.articleMain__button {
  width: 100%;
  padding: 60px 0 40px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .articleMain__button {
    padding: 50px 0;
  }
}
.articleMain__button a {
  color: #918080;
  text-decoration: none;
  display: inline;
  position: relative;
}
.articleMain__button a::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/common/arrow_button.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  background-size: contain;
  background-position: center center;
  display: block;
  position: absolute;
  top: 0.2em;
  left: -2em;
}/*# sourceMappingURL=article.css.map */