@charset "UTF-8";
/* ==========================================================================*/
/* リセット追加設定 */
/* ==========================================================================*/
* {
  border: none;
}

button,
select,
input[type=submit],
input[type=text],
input[type=email],
input[type=password],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

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

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

/* ==========================================================================*/
/* レイアウト */
/* ==========================================================================*/
.wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 auto 80px;
  width: 95%;
  max-width: 1800px;
}
.wrapper.grid {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-columns: 2fr 1fr;
  -webkit-column-gap: 2.5vw;
     -moz-column-gap: 2.5vw;
          column-gap: 2.5vw;
  max-width: 1440px;
}
@media screen and (max-width:1023px) {
  .wrapper.grid {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 0;
    width: 100%;
  }
}

.wrapper__main {
  min-width: 0;
  position: sticky;
  top: 0;
}
@media screen and (max-width:1023px) {
  .wrapper__main {
    margin: auto;
    position: static;
    width: 90%;
  }
}

.wrapper__sub {
  position: sticky;
  top: 0;
}
@media screen and (max-width:1023px) {
  .wrapper__sub {
    background: #f6f6f6;
    margin-top: 60px;
    padding: 60px 5% 20px;
    position: static;
  }
}

/* ==========================================================================*/
/* フッター */
/* ==========================================================================*/
.footer-wrapper {
  background: #333;
  color: #fff;
}
.footer-wrapper .footer {
  display: grid;
  grid-template-columns: 0.5fr 2fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: auto;
  padding: 60px 0;
  width: 90%;
}
@media screen and (max-width:560px) {
  .footer-wrapper .footer {
    grid-template-columns: 1fr;
    row-gap: 20px;
    width: 80%;
  }
}
.footer-wrapper .footer a {
  color: #fff;
}
.footer-wrapper .footer a:hover {
  color: #ccc5b9;
}
.footer-wrapper .footer .menu-list a {
  white-space: nowrap;
}
.footer-wrapper .footer .menu-list a::before {
  background: #fff;
}
.footer-wrapper .footer .author {
  font-size: 1.4rem;
  margin: 0;
}
.footer-wrapper .footer .about {
  font-size: 1.2rem;
  font-size: clamp(1rem, 1rem + (1vw - 0.768rem) * 0.3914, 1.2rem);
  min-height: 0vw;
  margin: 10px 0;
}
.footer-wrapper .icon-tw {
  display: inline;
  height: 40px;
  width: 40px;
}
.footer-wrapper .social {
  text-align: center;
}
.footer-wrapper .copyright {
  font-size: 1.2rem;
  font-size: clamp(1rem, 1rem + (1vw - 0.768rem) * 0.3914, 1.2rem);
  min-height: 0vw;
  padding: 20px 0;
  text-align: center;
}

/* ==========================================================================*/
/* ヘッダー*/
/* ==========================================================================*/
.header {
  font-family: "Teko", sans-serif;
  font-size: 3rem;
  font-size: clamp(2.2rem, 2.2rem + (1vw - 0.768rem) * 1.5656, 3rem);
  line-height: 1.2;
  margin: auto;
  min-height: 0vw;
  padding: 30px 20px 40px;
  text-align: center;
  width: 95%;
  max-width: 1800px;
}
.header a {
  display: inline-block;
}
.header span {
  display: block;
  font-size: 6.5rem;
  font-size: clamp(6.5rem, 6.5rem + (1vw - 0.768rem) * 4.8924, 9rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 -0.25em -0.5rem;
  min-height: 0vw;
}

/* ==========================================================================*/
/* 全般設定 */
/* ==========================================================================*/
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 1.4rem + (1vw - 0.768rem) * 0.3914, 1.6rem);
  line-height: 1.6;
  min-height: 100%;
}

main {
  display: block;
}

figure {
  margin: 0;
}

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

p {
  margin: 3em 0;
}

/* ==========================================================================*/
/* リンク */
/* ==========================================================================*/
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #ccc5b9;
}

.post-style a {
  color: #ccc5b9;
  position: relative;
  text-decoration: none;
}
.post-style a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc5b9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.post-style a:hover {
  text-decoration: none;
}
.post-style a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* ==========================================================================*/
/* エディタ用クラス */
/* ==========================================================================*/
.post-style h2 {
  font-size: 3rem;
  font-size: clamp(2.2rem, 2.2rem + (1vw - 0.768rem) * 1.5656, 3rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 2em 0;
  min-height: 0vw;
  padding: 10px 0;
  position: relative;
}
.post-style h2::after {
  border-bottom: solid 3px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2em;
}
.post-style h3 {
  font-size: 2rem;
  font-size: clamp(2rem, 2rem + (1vw - 0.768rem) * 0.7828, 2.4rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 3em 0 0;
  min-height: 0vw;
}
.post-style ol {
  list-style: decimal;
  margin: auto 25px;
}
.post-style ul {
  list-style: square;
  margin: auto 25px;
}
.post-style .bg {
  background: #f1eee8;
  padding: 20px;
}

/* ==========================================================================*/
/*  パンくずリスト */
/* ==========================================================================*/
.breadcrumbs-wrapper {
  background: #000;
  color: #fff;
}

.breadcrumbs {
  font-size: 1.2rem;
  font-size: clamp(1rem, 1rem + (1vw - 0.768rem) * 0.3914, 1.2rem);
  margin: 10px auto;
  min-height: 0vw;
  width: 90%;
  max-width: 1400px;
}
.breadcrumbs a {
  color: #fff;
}
.breadcrumbs a:hover {
  color: #ccc5b9;
}

/* ==========================================================================*/
/* 共通パーツ */
/* ==========================================================================*/
.main-title {
  font-family: "Teko", sans-serif;
  font-size: 2.8rem;
}

.entry-date {
  color: #ccc5b9;
  font-size: 1.4rem;
  line-height: 1;
}

.entry-cat {
  background: #333;
  color: #fff;
  font-size: 1rem;
  font-size: clamp(1rem, 1rem + (1vw - 0.768rem) * 0.3914, 1.2rem);
  line-height: 1;
  min-height: 0vw;
  padding: 3px 20px;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  width: 9em;
}

a:hover .entry-cat {
  color: #ccc5b9;
}

/* アコーディオン(JS用) */
.js-accordion {
  cursor: pointer;
}

.js-accordion-child {
  display: none;
}

/* タグ一覧 */
.tag-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.tag-items .tag-items__item a {
  background: #505050;
  border-radius: 15px;
  color: #fff;
  font-size: 1.2rem;
  font-size: clamp(1rem, 1rem + (1vw - 0.768rem) * 0.3914, 1.2rem);
  min-height: 0vw;
  padding: 5px 15px;
}
.tag-items .tag-items__item a::before {
  background-image: url(../images/icon-tag.svg);
  background-size: contain;
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: 5px;
  vertical-align: middle;
  width: 10px;
}
.tag-items .tag-items__item a:hover {
  color: #ccc5b9;
}

/* 記事一覧 */
.entry-items .entry-items__item {
  border-top: dotted 1px;
  position: relative;
  font-size: 1.4rem;
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.768rem) * 0.3914, 1.4rem);
  min-height: 0vw;
}
.entry-items .entry-items__item:last-child {
  border-bottom: dotted 1px;
  margin-bottom: 20px;
}
.entry-items .entry-items__item a {
  display: block;
  padding: 10px 0;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.entry-items .entry-items__item a::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.entry-items .entry-items__item a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* ==========================================================================*/
/* アーカイブ */
/* ==========================================================================*/
.archive-title {
  font-size: 3rem;
  font-size: clamp(2.2rem, 2.2rem + (1vw - 0.768rem) * 1.5656, 3rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 20px auto;
  min-height: 0vw;
}
.archive-title .sub {
  color: #ccc5b9;
  font-size: 0.4em;
  font-weight: normal;
  display: block;
}

.archive-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  -webkit-column-gap: 2.5vw;
     -moz-column-gap: 2.5vw;
          column-gap: 2.5vw;
  row-gap: 2.5vw;
}
.archive-items .archive-items__item {
  border: solid 1px #888;
  position: relative;
}
.archive-items .archive-items__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  row-gap: 10px;
  padding: 40px;
  height: 100%;
}
.archive-items .archive-items__item a .item-hover {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin: 0;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  width: 100%;
}
.archive-items .archive-items__item a .item-hover p {
  color: #fff;
  font-family: "Teko", sans-serif;
  position: relative;
}
.archive-items .archive-items__item a .item-hover p::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 1px;
  background: #fff;
}
.archive-items .archive-items__item a:hover {
  background: #efefef;
  color: #888;
}
.archive-items .archive-items__item a:hover .item-hover {
  opacity: 1;
}
.archive-items .archive-items__item .entry-title {
  font-size: 2rem;
  line-height: 1.5;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  height: 100%;
  min-height: 0%;
  margin-bottom: 1em;
  position: relative;
}
.archive-items .archive-items__item .entry-contents {
  font-size: 1.4rem;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  height: 100%;
  min-height: 0%;
}
.archive-items .archive-items__item .entry-contents p {
  color: #888;
  margin: 0;
}

/* ==========================================================================*/
/* ページナビの設定 (wp-pagenaviプラグイン)*/
/* ==========================================================================*/
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin: 6rem 0;
}
.wp-pagenavi a {
  border-radius: 50%;
  height: 40px;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  width: 40px;
}
.wp-pagenavi a:hover {
  border: solid 1px #ccc5b9;
  background: #faf7f3;
}
.wp-pagenavi span.pages {
  border-radius: 50px;
  color: #ccc5b9;
  padding: 5px 20px;
}
.wp-pagenavi span.current {
  background: #ccc5b9;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  height: 40px;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  width: 40px;
}

/* ==========================================================================*/
/* シングル */
/* ==========================================================================*/
article {
  display: block;
  position: relative;
}

.entry-title {
  font-size: 3.6rem;
  font-size: clamp(2.6rem, 2.6rem + (1vw - 0.768rem) * 1.9569, 3.6rem);
  font-weight: bold;
  line-height: 1.4;
  min-height: 0vw;
}

.entry-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 20px 0;
}
.entry-info .entry-cat {
  position: static;
}

/* 画像共通 */
.item-img {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.item-img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
}

/* ==========================================================================*/
/* 参考サイト */
/* ==========================================================================*/
.reference {
  border: solid 1px #ccc5b9;
  margin: 40px 0;
  padding: 20px;
}
.reference a {
  display: block;
  line-height: 1.2;
  margin-top: 10px;
  word-break: break-all;
}

.reference-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.reference-title .sub {
  color: #ccc5b9;
  font-family: "Teko", sans-serif;
  margin-top: 3px;
}

/* ==========================================================================*/
/* シェアボタン */
/* ==========================================================================*/
.hover {
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hover::before {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.hover:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sns a {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-size: clamp(1rem, 1rem + (1vw - 0.768rem) * 0.3914, 1.2rem);
  min-height: 0vw;
}
@media screen and (max-width:560px) {
  .sns span {
    display: none;
  }
}

.share-icon {
  height: auto;
  margin-right: 10px;
  width: 20px;
  vertical-align: middle;
  display: inline;
}
@media screen and (max-width:560px) {
  .share-icon {
    margin-right: 0;
  }
}

.sns__twitter {
  background: #55acee;
}

.sns__facebook {
  background: #3b5998;
}

.sns__pocket {
  background: #ef3f56;
}

.sns__line {
  background: #1dcd00;
}

.sns__hatena {
  background: #00a5de;
}

/* ==========================================================================*/
/* 関連記事 */
/* ==========================================================================*/
.related {
  background: #f6f6f6;
  margin: 40px 0;
  padding: 20px;
}

/* ==========================================================================*/
/* ページ送りの設定 */
/* ==========================================================================*/
.prev-next {
  background: #f6f6f6;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  line-height: 1.5;
  margin: 40px 0;
}
@media screen and (max-width:560px) {
  .prev-next {
    grid-template-columns: 1fr;
  }
}

.prev,
.next {
  color: #292929;
  font-size: 1.4rem;
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.768rem) * 0.3914, 1.4rem);
  min-height: 0vw;
  padding: 30px;
  position: relative;
  -webkit-transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  width: 100%;
}
.prev span,
.next span {
  color: #ccc5b9;
  display: block;
  font-size: 1.2rem;
  font-size: clamp(1rem, 1rem + (1vw - 0.768rem) * 0.3914, 1.2rem);
  min-height: 0vw;
}

.prev {
  grid-column: 1/2;
  overflow: hidden;
}
.prev::before {
  border-right: 2px solid #999;
  border-top: 2px solid #999;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  vertical-align: middle;
  width: 10px;
}

.next {
  grid-column: 2/3;
  overflow: hidden;
}
.next::before {
  border-right: 2px solid #999;
  border-top: 2px solid #999;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  bottom: 0;
  right: 10px;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
  width: 10px;
}
@media screen and (max-width:560px) {
  .next {
    grid-column: 1/2;
  }
}

/* ==========================================================================*/
/* ローディング画面 */
/* ==========================================================================*/
#loading {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
}

#loading.loaded {
  -webkit-animation: fadeOut 3s forwards;
          animation: fadeOut 3s forwards;
  display: none;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 1rem;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
/* ==========================================================================*/
/* ふわっ */
/* ==========================================================================*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ==========================================================================*/
/* TOC+ */
/* ==========================================================================*/
div#toc_container {
  border: 1px solid #ddd;
  padding: 20px 30px 30px;
  width: 100% !important;
}

div#toc_container a:hover {
  text-decoration: none;
}

#toc_container p.toc_title {
  font-family: "Teko", sans-serif;
  font-size: 2.4rem;
  line-height: 1.4;
  position: relative;
}

#toc_container span.toc_toggle {
  background: #333;
  padding: 0 10px;
  position: absolute;
  right: 0;
}

#toc_container span.toc_toggle a {
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  font-size: clamp(1rem, 1rem + (1vw - 0.768rem) * 0.3914, 1.2rem);
  min-height: 0vw;
  text-decoration: none;
}

#toc_container span.toc_toggle a:hover {
  color: #ccc5b9;
}

#toc_container span.toc_toggle a::after {
  display: none;
}

/* ==========================================================================*/
/* サイドバー */
/* ==========================================================================*/
.submenu {
  background: #f6f6f6;
  margin-bottom: 40px;
  padding: 20px;
}
.submenu a {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.submenu a::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.submenu a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.menu-list a {
  padding: 5px 0;
}
.menu-list a::before {
  background: #333;
  content: "";
  display: inline-block;
  height: 1px;
  margin: auto 10px auto 0;
  width: 10px;
  vertical-align: middle;
}
.menu-list a:hover::before {
  background: #ccc5b9;
}

.yearly-list {
  margin: 10px 0;
  position: relative;
}
.yearly-list::before {
  border-right: 2px solid #043c79;
  border-top: 2px solid #043c79;
  content: "";
  height: 8px;
  margin: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.yearly-list.close::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/* ==========================================================================*/
/* 検索フォーム */
/* ==========================================================================*/
.searchform-area {
  display: grid;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  grid-template-columns: 4.5fr 1fr;
  place-items: center;
  padding: 10px 0;
  width: 100%;
}
.searchform-area input {
  background: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.4rem;
  font-size: clamp(1.2rem, 1.2rem + (1vw - 0.768rem) * 0.3914, 1.4rem);
  line-height: 1.4;
  min-height: 0vw;
  padding: 8px 20px;
  width: 100%;
}
.searchform-area input[type=submit] {
  background: #333;
  color: #fff;
}
.searchform-area input[type=submit]:hover {
  color: #ccc5b9;
}/*# sourceMappingURL=style.css.map */