@charset "UTF-8";
/* Scss Document */
html {
  font-size: 62.5%; }

/*------------------------------------------------------------
　共通
------------------------------------------------------------*/
body {
  background-color: #faede5;
  position: relative;
  font-family: 'Sawarabi Mincho',YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 1.6rem;
  font-weight: 100;
  color: #333;
  line-height: 1.6;
  letter-spacing: 2px; }
  @media screen and (max-width: 1023px) {
    body {
      font-size: 1.4rem;
      background-size: 50% auto; } }
  body::before, body::after {
    content: "";
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -3; }
  body::before {
    background: url("http://mu2anko.sakura.ne.jp/image/bg-top.png") no-repeat left top;
    background-size: calc(100vw * 0.15625) auto;
    top: 0;
    left: 0; }
    @media screen and (max-width: 1023px) {
      body::before {
        background-size: 50vw auto; } }
  body::after {
    background: url("http://mu2anko.sakura.ne.jp/image/bg-bottom.png") no-repeat right bottom;
    background-size: calc(100vw * 0.15625) auto;
    top: 0;
    left: 0; }
    @media screen and (max-width: 1023px) {
      body::after {
        background-size: 50vw auto; } }

/*文字*/
p {
  margin: 32px 0; }

a {
  transition: 0.2s;
  color: #333;
  z-index: 2; }
  a:hover {
    background: #77a9aa;
    color: #fff;
    transition: 0.2s; }

h1 {
  font-family: 'Dawning of a New Day','Sawarabi Mincho',YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: normal; }
  h1 a {
    text-decoration: none; }
    h1 a:hover {
      background: none;
      color: #333; }

h2 {
  font-size: 2.2rem;
  font-weight: 100;
  text-align: center;
  margin: 80px 0 40px; }
  @media screen and (max-width: 1023px) {
    h2 {
      font-size: 2rem;
      margin: 40px 0; } }

h3 {
  position: relative;
  font-size: 2rem;
  font-weight: 100;
  padding-left: 2rem;
  margin-bottom: 32px; }
  h3::before {
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 0;
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 8px;
    background: #e97b4e; }
  @media screen and (max-width: 1023px) {
    h3 {
      font-size: 1.8rem; } }

h4 {
  font-size: 1.8rem;
  font-weight: 100;
  margin-bottom: 24px; }
  @media screen and (max-width: 1023px) {
    h4 {
      font-size: 1.6rem; } }

em {
  position: relative;
  text-decoration: none;
  font-style: normal; }
  em::after {
    position: absolute;
    top: 10px;
    content: "";
    display: block;
    width: 100%;
    height: 16px;
    background: #faede5;
    z-index: -1; }

/*リスト、フォーム系*/
ul, ol, dl {
  margin: 24px 0; }

input, textarea {
  border: none;
  border: 1px solid #77a9aa; }

input[type="submit"] {
  cursor: pointer; }

/*ボタン*/
.btn {
  background-color: #77a9aa;
  border: 1px solid #77a9aa;
  margin: 16px 0;
  color: #fff;
  transition: 0.2s;
  text-decoration: none;
  border-radius: 4px; }
  .btn:hover {
    background: #faede5;
    color: #333;
    cursor: pointer;
    transition: 0.2s; }

a.btn {
  padding: 4px 8px; }

/*レイアウト*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.grid {
  display: grid;
  grid-template-columns: auto 1fr; }

ul.yoko {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px; }
  ul.yoko li {
    margin-right: 16px; }
    ul.yoko li:last-child {
      margin-right: 0; }

/*装飾*/
.sideline {
  display: flex;
  align-items: center; }
  .sideline::before, .sideline::after {
    content: '';
    height: 1px;
    background-color: #77a9aa;
    flex-grow: 1; }
  .sideline::before {
    margin-right: 2rem; }
  .sideline::after {
    margin-left: 2rem;
    flex-grow: 7; }

.box {
  position: relative;
  margin-bottom: 40px;
  padding: 20px 40px; }
  @media screen and (max-width: 1023px) {
    .box {
      padding: 10px 20px; } }
  .box::before, .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(250, 237, 229, 0.4);
    z-index: -1; }
  .box::before {
    transform: rotate(2deg); }

.arrow {
  border: 2px solid #fff;
  border-right: none;
  border-bottom: none;
  width: 16px;
  height: 16px; }

.label dt {
  padding: 4px 8px;
  margin: 4px;
  background: #faede5; }
.label dd {
  padding: 4px 8px;
  margin: 4px; }

.hr {
  margin-bottom: 80px; }

.center {
  text-align: center; }

/*------------------------------------------------------------
　横幅設定
------------------------------------------------------------*/
.container {
  position: relative;
  width: 1024px;
  height: 100vh;
  margin: 0 auto;
  padding: 0 80px; }
  @media screen and (max-width: 1023px) {
    .container {
      width: 90%;
      padding: 1rem; } }
  .container::before, .container::after {
    position: fixed;
    top: 0;
    content: "";
    display: block;
    width: 1024px;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -2;
    transform: translateX(-80px); }
    @media screen and (max-width: 1023px) {
      .container::before, .container::after {
        width: 90%;
        background: rgba(255, 255, 255, 0.8);
        transform: translateX(-1rem); } }
  .container::before {
    transform: rotate(4deg) scaleY(1.5) translateX(-80px); }
    @media screen and (max-width: 1023px) {
      .container::before {
        transform: rotate(4deg) scaleY(1.5) translateX(-1rem); } }


/*------------------------------------------------------------
　ヘッダー
------------------------------------------------------------*/
header h1 {
  margin: 80px 0;
  text-align: center;
  font-size: 4rem; }
  header h1 img {
    margin: 0 auto; }
@media screen and (max-width: 1023px) {
  header h1 {
    position: static;
    margin-left: 8px;
    margin: 40px 0 0; } }


/*------------------------------------------------------------
　メニュー
------------------------------------------------------------*/
.menu {
  display: inline-block;
  font-family: 'Montserrat Alternates','Noto Sans JP',"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; }
  .menu ul {
    padding: 20px;
    display: flex;
    justify-content: flex-start; }
    .menu ul li {
      position: relative;
      margin: 0 20px;
      letter-spacing: 4px; }
      .menu ul li::after {
        content: "";
        position: absolute;
        left: calc(50% - 18px);
        bottom: -4px;
        display: block;
        width: 32px;
        height: 32px;
        background: rgba(119, 169, 170, 0.3);
        border-radius: 50%;
        transition: 0.8s;
        z-index: -1;
        filter: blur(8px);
        opacity: 0; }
      .menu ul li:hover::after {
        opacity: 1;
        transition: 0.8s; }
      .menu ul li a {
        text-decoration: none; }
        .menu ul li a:hover {
          background: none;
          color: #333; }
  @media screen and (max-width: 1023px) {
    .menu {
      width: 96%;
      margin-top: 40px; }
      .menu ul li {
        margin: 8px; } }


/*------------------------------------------------------------
　コンテンツ
------------------------------------------------------------*/
section {
  margin: 80px 0; }
  @media screen and (max-width: 1023px) {
    section {
      margin: 40px 0 80px; } }

/*-------------------- 更新履歴 --------------------*/
.news .box {
  width: 80%;
  margin: 0 auto 40px; }
  @media screen and (max-width: 1023px) {
    .news .box {
      width: 100%; } }
.news ul {
  height: 200px;
  overflow-y: auto; }
  .news ul li {
    margin: 0 40px;
    padding: 12px;
    border-bottom: 1px solid #77a9aa; }
    .news ul li time {
      margin-right: 40px; }
@media screen and (max-width: 1023px) {
  .news ul li {
    margin: 0; }
    .news ul li time {
      display: block; } }

/*-------------------- main --------------------*/

/*文字のみ一覧*/
#main .textlist ul {
  margin: 0 40px;
  grid-template-columns: repeat(3, 1fr); }
  #main .textlist ul li {
    margin: 20px; }
    #main .textlist ul li a {
      text-decoration: none; }
@media screen and (max-width: 1023px) {
  #main .textlist ul {
    margin: 0;
    grid-template-columns: 1fr 1fr; } }

/*サムネイル一覧*/
#main .imglist {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px; }
  #main .imglist li {
    position: relative; }
    #main .imglist li img {
      width: 100%;
      height: auto;
      border: 1px solid #77a9aa;
      transition: 0.2s; }
    #main .imglist li p {
      position: absolute;
      right: 4px;
      bottom: 4px;
      margin: 0; }
    #main .imglist li:hover img {
      box-shadow: 0 0 10px 2px rgba(119, 169, 170, 0.8);
      transition: 0.2s; }
  @media screen and (max-width: 1023px) {
    #main .imglist {
      gap: 12px; } }

/*-------------------- chara --------------------*/
#chara section > .grid {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 80px 0; }
  @media screen and (max-width: 1023px) {
    #chara section > .grid {
      display: flex;
      flex-direction: column-reverse;
      margin: 0; } }

#chara h2 {
  position: relative;
  font-family: 'Dawning of a New Day','Sawarabi Mincho',YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 4rem;
  color: #77a9aa;
  text-align: left;
  margin: 0 0 100px; }
  #chara h2::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 8px;
    border-bottom: 1px solid #77a9aa;
    width: 100%; }
  #chara h2 span {
    position: absolute;
    right: 0;
    bottom: -3rem;
    font-size: 1.8rem;
    color: #333; }

#chara dl.grid {
  margin: 0; }
@media screen and (max-width: 1023px) {
  #chara h2 {
    margin: 20px 0 80px; } }

/*-------------------- memo --------------------*/
.diary h4 {
  position: relative;
  border-bottom: 1px solid #77a9aa;
  margin-bottom: 40px; }
  .diary h4 time {
    position: absolute;
    bottom: -3rem;
    right: 0;
    font-size: 1.4rem; }

@media screen and (max-width: 1023px) {
  section time {
    position: relative; } }


/*-------------------- link --------------------*/
.link li {
  margin: 8px 16px;
  transition: 0.2s; }
  .link li a {
    text-decoration: none; }
  .link li:hover {
    opacity: 0.6;
    transition: 0.2s; }

/*-------------------- mail --------------------*/
.mail {
  margin: 0 auto;
  width: 568px;
  padding: 40px; }
  .mail dl dt {
    margin: 8px 32px 0 0; }
  .mail dl dd {
    margin: 8px 0; }
    .mail dl dd input {
      width: 100%; }
  .mail label {
    display: block;
    margin-bottom: 8px; }
  .mail textarea {
    width: 488px;
    height: 100px; }
  .mail .btn {
    height: 32px; }
  @media screen and (max-width: 1023px) {
    .mail {
      width: 100%;
      padding: 24px; }
      .mail input {
        width: 100%; }
      .mail textarea {
        width: 100%; } }


/*------------------------------------------------------------
　フッター
------------------------------------------------------------*/
footer {
  margin-top: 160px;
  position: relative;
  text-align: center;
  height: 56px; }
  footer small {
    text-align: center;
    font-size: 1rem; }
    footer small a {
      text-decoration: none; }
  footer .toTop {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #77a9aa;
    border-radius: 50%;
    right: calc(50% - 24px);
    bottom: 80px;
    transition: 0.2s; }
    @media screen and (max-width: 1023px) {
      footer .toTop {
        bottom: 74px; } }
    footer .toTop a {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      z-index: 2; }
      footer .toTop a:hover {
        background: none; }
    footer .toTop .arrow {
      transform: rotate(45deg);
      margin-left: 16px;
      margin-top: 20px;
      transition: 0.2s; }
    footer .toTop:hover {
      background: #faede5;
      transition: 0.2s; }
      footer .toTop:hover .arrow {
        border: 2px solid #77a9aa;
        border-right: none;
        border-bottom: none;
        transition: 0.2s; }
