@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
/*font*/
/*color*/
/*font*/
/*見出し*/
h1 {
  margin: 0;
}

h2 {
  font-family: "Libre Baskerville", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  margin: 0;
}

h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

h5 {
  margin: 0;
}

.br {
  display: block;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* mixinの定義 */
/*リンクのカラー変更*/
/*上下左右の矢印*/
/*透明度の指定*/
/*上下左右中央配置*/
/*background-image*/
/*@include background-image("sample.png");*/
/*break point*/
/*擬似要素アイコン*/
/*@include icon("sample.png",px,px);*/
/*三角形を作る*/
/*@include triangle(#000, 6px, 6px, top); 色, width, height, 頂点の方向(top/right/bottom/left)*/
/*formのスタイルリセット*/
/*flexセット*/
/*くの字矢印*/
/*線の矢印*/
.btnarrow {
  position: relative;
  display: inline-block;
  padding: 0 13px;
  color: #333;
  text-decoration: none;
  outline: none;
}

.btnarrow::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -4px;
  left: 15%;
  /*下線の形状*/
  width: 85%;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.btnarrow::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 0px;
  right: 0;
  /*矢印の形状*/
  width: 10px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.btnarrow:hover::before {
  left: 20%;
}

.btnarrow:hover::after {
  right: -5%;
}

/*グラデーションボタン*/
.btn {
  margin-top: 1rem;
  max-width: 250px;
  font-size: 1rem;
  color: #fff;
  padding: 15px 20px;
  display: block;
  text-align: center;
  background-size: 180% auto;
  transition: all 0.3s ease-out;
}

.btn:hover {
  opacity: 0.7;
  color: #fff;
  text-decoration: none;
}

.gradient1 {
  background-image: linear-gradient(to left, #f2bbe9 50%, #a1d5f0 100%);
}

.gradient2 {
  background-image: linear-gradient(to left, #a1d5f0 50%, #f2bbe9 100%);
}

.title-btn {
  background: #a3a45b;
}

.btn-gray {
  background: #c4c4c4;
}

/*background*/
/*link*/
a {
  color: #707070;
  transition: 0.5s;
}

a:hover {
  color: #2898d5;
}

html {
  font-size: 16px;
  line-height: 1.4;
}

/*スクロール*/
.scrolldown1 {
  position: absolute;
  bottom: 10px;
  left: 50%;
}
.scrolldown1 span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #707070;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

.scrolldown1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #707070;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scrolldown1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #707070;
}

/*　ハンバーガーボタン　*/
#toggle {
  position: fixed;
  top: 0px;
  right: 0px;
  padding: 0.5rem;
  background: #fff;
}
#toggle p {
  text-align: center;
  margin: 0;
}

#toggle-box {
  position: relative;
  width: 70px;
  height: 35px;
  cursor: pointer;
}
#toggle-box span {
  width: 100%;
  height: 2px;
  left: 13px;
  display: block;
  background: #666;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}
#toggle-box span:nth-child(1) {
  top: 18px;
  width: 30%;
}
#toggle-box span:nth-child(2) {
  top: 25px;
  width: 50%;
}

.is-open #toggle-box span {
  background: #666;
}
.is-open #toggle-box span:nth-child(1) {
  top: 12px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.is-open #toggle-box span:nth-child(2) {
  top: 20px;
  left: 16px;
  transform: translateY(-3px) rotate(45deg);
  width: 35%;
}

@media screen and (max-width: 480px) {
  #toggle-box {
    width: 60px;
    height: 32px;
  }
}
/* z-index */
#toggle {
  z-index: 1000;
}

#main {
  position: relative;
  z-index: 990;
}

#nav-content {
  z-index: -5;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: rgba(255, 228, 225, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#nav-content .topic-right {
  width: 100%;
}
#nav-content .topic-right .topic1 {
  padding-top: 70px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3%;
}
#nav-content .topic-right .topic1 h3 {
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  position: absolute;
  color: #707070;
}
#nav-content .topic-right .topic1 h3 .h3-ruby {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  position: absolute;
  top: 25%;
  color: #707070;
  padding-left: 1rem;
}
#nav-content .topic-right .topic1 ul {
  width: 100%;
  padding-left: 0px;
  margin: 0;
}
#nav-content .topic-right .topic1 ul li {
  list-style-type: none;
  line-height: 3rem;
}
#nav-content .topic-right .topic1 ul li a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: #666 solid 1px;
}
#nav-content .topic-right .topic1 ul li a h4 {
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  padding-right: 1rem;
  font-size: 1.2rem;
}
#nav-content .topic-right .topic1 ul li a h5 {
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  padding-right: 1rem;
}
#nav-content .topic-right .topic1 p {
  text-align: left;
}
#nav-content .topic-right .topic1 .topic1-1 {
  position: relative;
  width: 48.5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
#nav-content .topic-right .topic1 .topic1-1 h3 {
  top: -8%;
  left: 5%;
}
#nav-content .topic-right .topic1 .topic1-2 {
  position: relative;
  width: 48.5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
#nav-content .topic-right .topic1 .topic1-2 h3 {
  top: -8%;
  left: 5%;
}
#nav-content .topic-right .topic1 .topic1-2 .time {
  padding-right: 1rem;
}
#nav-content .topic-right .topic1 .topic1-3 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 200px;
}
#nav-content .topic-right .topic1 .topic1-3 h3 {
  top: -8%;
  left: 5%;
}
#nav-content .topic-right .topic1 .topic1-4 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 200px;
}
#nav-content .topic-right .topic1 .topic1-4 h3 {
  color: #ff9f95;
  font-size: 1.8rem;
  top: -8%;
  left: 20%;
}
#nav-content .topic-right .topic1 .topic1-5 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 200px;
}
#nav-content .topic-right .topic1 .topic1-5 h3 {
  top: -8%;
  left: 5%;
}
#nav-content .topic-right .topic1 .topic1-6 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
#nav-content .topic-right .topic1 .topic1-6 h3 {
  top: -8%;
  left: 5%;
}
#nav-content .topic-right .topic1 .topic1-7 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
#nav-content .topic-right .topic1 .topic1-7 h3 {
  top: -8%;
  left: 5%;
}
#nav-content .topic-right .topic1 .topic1-8 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
  background: none;
  padding: 7%;
}
#nav-content .topic-right .topic1 .topic1-8 ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#nav-content .topic-right .topic1 .topic1-8 ul li {
  width: 65px;
  height: 65px;
}
#nav-content .topic-right .topic1 .topic1-8 .sns a {
  box-shadow: inset 0 0 0 2px rgba(255, 228, 225, 0.8);
  background-color: #fff;
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  border-bottom: 0px solid #ff9f95;
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-twitter {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-twitter:before {
  font-size: 40px;
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-twitter:hover {
  color: #1b95e0;
  background-color: #fff;
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-sticky-note {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-sticky-note:before {
  font-size: 40px;
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-sticky-note:hover {
  color: #87c495;
  background-color: #fff;
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-facebook-f {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-facebook-f:before {
  font-size: 40px;
}
#nav-content .topic-right .topic1 .topic1-8 .sns a .la-facebook-f:hover {
  color: #3b5998;
  background-color: #fff;
}
#nav-content .topic-right .topic1 .topic1-8 .sns a:hover {
  box-shadow: inset 0 0 0 22px #fff;
}

.is-open #nav-content {
  z-index: 999;
  visibility: visible;
  opacity: 1;
}
.is-open #nav-content a {
  pointer-events: auto;
}

/*nav-tab---*nav-Pc*/
@media screen and (min-width: 920px) and (max-width: 1280px) {
  #nav-content .topic-right .topic1 ul li a h4 {
    font-size: 1rem;
  }
  #nav-content .topic-right .topic1 h3 {
    font-size: 1.5rem;
  }
  #nav-content .topic-right .topic1 p {
    font-size: 0.8rem;
    line-height: 1.6rem;
  }
  #nav-content .topic-right .topic1 .topic1-1 {
    padding: 3%;
  }
  #nav-content .topic-right .topic1 .topic1-2 {
    padding: 3%;
  }
  #nav-content .topic-right .topic1 .topic1-2 {
    padding: 3%;
  }
  #nav-content .topic-right .topic1 .topic1-4 {
    padding: 3%;
  }
  #nav-content .topic-right .topic1 .topic1-4 h3 {
    font-size: 1.5rem;
    left: 5%;
  }
  #nav-content .topic-right .topic1 .topic1-5 {
    padding: 3%;
  }
  #nav-content .topic-right .topic1 .topic1-6 {
    padding: 3%;
  }
  #nav-content .topic-right .topic1 .topic1-7 {
    padding: 3%;
  }
  #nav-content .topic-right .topic1 .topic1-8 {
    padding: 3%;
  }
}
/*nav-tab*/
@media screen and (max-width: 920px) {
  #nav-content .topic-right .topic1 h3 {
    font-size: 1.5rem;
    top: -8%;
    left: 5%;
  }
  #nav-content .topic-right .topic1 h3 .h3-ruby {
    top: 15%;
    padding-left: 0.5rem;
  }
  #nav-content .topic-right .topic1 ul li a h4 {
    font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    padding-right: 0.5rem;
    font-size: 1rem;
  }
  #nav-content .topic-right .topic1 ul li a h5 {
    font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-size: 0.6rem;
    padding-right: 0.5rem;
    letter-spacing: 0;
  }
  #nav-content .topic-right .topic1 p {
    font-size: 0.8rem;
    line-height: 1.5rem;
    text-align: left;
  }
  #nav-content .topic-right .topic1 .topic1-1 {
    padding: 3%;
    height: 220px;
  }
  #nav-content .topic-right .topic1 .topic1-2 {
    padding: 3%;
    height: 220px;
  }
  #nav-content .topic-right .topic1 .topic1-2 .time {
    font-size: 0.8rem;
    padding-right: 1rem;
  }
  #nav-content .topic-right .topic1 .topic1-3 {
    padding: 3%;
    height: 200px;
  }
  #nav-content .topic-right .topic1 .topic1-4 {
    padding: 3%;
    height: 200px;
  }
  #nav-content .topic-right .topic1 .topic1-4 h3 {
    color: #ff9f95;
    font-size: 1.5rem;
    top: -8%;
    left: 0%;
  }
  #nav-content .topic-right .topic1 .topic1-5 {
    padding: 3%;
    height: 200px;
  }
  #nav-content .topic-right .topic1 .topic1-5 h3 {
    top: -8%;
    left: 5%;
  }
  #nav-content .topic-right .topic1 .topic1-6 {
    padding: 3%;
    height: 250px;
  }
  #nav-content .topic-right .topic1 .topic1-7 {
    padding: 3%;
    height: 250px;
  }
  #nav-content .topic-right .topic1 .topic1-8 {
    padding: 3%;
    height: 250px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns a {
    width: 55px;
    height: 55px;
    border-bottom: 0px solid #ff9f95;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns a .la-twitter {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns a .la-twitter:before {
    font-size: 30px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns a .la-sticky-note:before {
    font-size: 30px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns a .la-facebook-f:before {
    font-size: 30px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns a:hover {
    box-shadow: inset 0 0 0 22px #fff;
  }
}
@media screen and (max-width: 700px) {
  #nav-content h3 {
    text-align: left;
  }
  #nav-content .topic-right .topic1 {
    display: block;
  }
  #nav-content .topic-right .topic1 h3 {
    text-align: left;
    font-size: 1.5rem;
    top: -8%;
    left: 5%;
  }
  #nav-content .topic-right .topic1 h3 a {
    text-align: left;
    width: 100%;
  }
  #nav-content .topic-right .topic1 ul li a h4 {
    font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    padding-right: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0;
  }
  #nav-content .topic-right .topic1 ul li a h5 {
    font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
    padding-right: 0.5rem;
    letter-spacing: 0;
  }
  #nav-content .topic-right .topic1 p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #nav-content .topic-right .topic1 .topic1-1 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-1 ul {
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-2 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-2 .time {
    font-size: 1rem;
    padding-right: 1rem;
  }
  #nav-content .topic-right .topic1 .topic1-2 ul {
    width: 90%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-2 ul a {
    width: 100%;
    display: inline-block;
    text-align: left;
  }
  #nav-content .topic-right .topic1 .topic1-2 ul a h4 {
    display: inline-block;
  }
  #nav-content .topic-right .topic1 .topic1-3 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-3 ul {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-3 ul a {
    width: 100%;
    display: inline-block;
    text-align: left;
  }
  #nav-content .topic-right .topic1 .topic1-3 ul a h4 {
    display: inline-block;
  }
  #nav-content .topic-right .topic1 .topic1-4 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-4 h3 {
    font-size: 1.5rem;
    top: -8%;
    left: 0%;
  }
  #nav-content .topic-right .topic1 .topic1-4 p {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-5 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-5 div {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-5 div p {
    text-align: center;
  }
  #nav-content .topic-right .topic1 .topic1-5 ul {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-6 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-6 ul {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-6 ul a {
    width: 100%;
    display: inline-block;
    text-align: left;
  }
  #nav-content .topic-right .topic1 .topic1-6 ul a h4 {
    display: inline-block;
  }
  #nav-content .topic-right .topic1 .topic1-7 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-7 a {
    margin: 0 auto;
    margin-top: 1rem;
  }
  #nav-content .topic-right .topic1 .topic1-7 p {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-8 {
    margin-top: 10%;
    height: 150px;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li {
    width: 30%;
    height: 30%;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li a {
    width: 100px;
    height: 100px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li a .la-twitter:before {
    font-size: 50px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li a .la-sticky-note:before {
    font-size: 50px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li a .la-facebook-f:before {
    font-size: 50px;
  }
}
@media screen and (max-width: 480px) {
  #nav-content h3 {
    text-align: left;
  }
  #nav-content .topic-right .topic1 {
    display: block;
  }
  #nav-content .topic-right .topic1 h3 {
    text-align: left;
    font-size: 1.5rem;
    width: 100%;
    top: -8%;
    left: -35%;
  }
  #nav-content .topic-right .topic1 h3 a {
    width: 100%;
  }
  #nav-content .topic-right .topic1 ul li a h4 {
    font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    padding-right: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0;
  }
  #nav-content .topic-right .topic1 ul li a h5 {
    font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
    padding-right: 0.5rem;
    letter-spacing: 0;
  }
  #nav-content .topic-right .topic1 p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #nav-content .topic-right .topic1 .topic1-1 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-1 ul {
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-2 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-2 .time {
    font-size: 1rem;
    padding-right: 1rem;
  }
  #nav-content .topic-right .topic1 .topic1-2 ul {
    width: 90%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-2 ul a {
    width: 100%;
    display: inline-block;
    text-align: left;
  }
  #nav-content .topic-right .topic1 .topic1-2 ul a h4 {
    display: inline-block;
  }
  #nav-content .topic-right .topic1 .topic1-3 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-3 ul {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-3 ul a {
    width: 100%;
    display: inline-block;
    text-align: left;
  }
  #nav-content .topic-right .topic1 .topic1-3 ul a h4 {
    display: inline-block;
  }
  #nav-content .topic-right .topic1 .topic1-4 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-4 p {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-5 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-5 div {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-5 div p {
    text-align: center;
  }
  #nav-content .topic-right .topic1 .topic1-5 ul {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-6 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-6 ul {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-6 ul a {
    width: 100%;
    display: inline-block;
    text-align: left;
  }
  #nav-content .topic-right .topic1 .topic1-6 ul a h4 {
    display: inline-block;
  }
  #nav-content .topic-right .topic1 .topic1-7 {
    margin-top: 10%;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-7 a {
    margin: 0 auto;
    margin-top: 1rem;
  }
  #nav-content .topic-right .topic1 .topic1-7 p {
    width: 80%;
    margin: 0 auto;
  }
  #nav-content .topic-right .topic1 .topic1-8 {
    margin-top: 10%;
    height: 150px;
    width: 100%;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li {
    width: 30%;
    height: 30%;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li a {
    width: 100px;
    height: 100px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li a .la-twitter:before {
    font-size: 50px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li a .la-sticky-note:before {
    font-size: 50px;
  }
  #nav-content .topic-right .topic1 .topic1-8 .sns li a .la-facebook-f:before {
    font-size: 50px;
  }
}
/*じわじわ出現*/
.jiwajiwa {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.jiwajiwaTrigger {
  opacity: 0;
}

/*sns*/
.sns-share {
  padding-top: 3%;
}
.sns-share a {
  transition: all 0.5s ease;
}
.sns-share a .la-twitter {
  color: #b1e9f2;
  margin-right: 1rem;
}
.sns-share a .la-twitter:before {
  content: "\f099";
  font-family: "Line Awesome Free", "Line Awesome Brands";
  display: inline-block;
  font-size: 40px;
}
.sns-share a .la-sticky-note {
  color: #b1f2c0;
}
.sns-share a .la-sticky-note:before {
  content: "\f249";
  font-family: "Line Awesome Free", "Line Awesome Brands";
  display: inline-block;
}
.sns-share a .la-facebook-f {
  margin-right: 1rem;
  color: #b1c3f2;
}
.sns-share a .la-facebook-f:before {
  content: "\f39e";
  font-family: "Line Awesome Free", "Line Awesome Brands";
  display: inline-block;
  font-size: 40px;
}
.sns-share a .la-facebook-f:hover {
  color: #b1c3f2;
}
.sns-share a .la-line {
  color: #8af2ba;
  margin-right: 1rem;
}
.sns-share a .la-line:before {
  content: "\f3c0";
  font-family: "Line Awesome Free", "Line Awesome Brands";
  display: inline-block;
  font-size: 40px;
}
.sns-share a .la-line:hover {
  color: #b1f2e3;
}
.sns-share a .la-instagram {
  color: #d7b1f2;
  margin-right: 1rem;
}
.sns-share a .la-instagram:before {
  content: "\f16d";
  font-family: "Line Awesome Free", "Line Awesome Brands";
  display: inline-block;
  font-size: 40px;
}
.sns-share a .la-instagram:hover {
  color: #d7b1f2;
}

/*モーダルウィンドウ*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*topへ戻るボタン*/
#pagetop {
  position: fixed;
  width: 2rem;
  height: 11rem;
  color: #707070;
  bottom: 10px;
  right: 5rem;
  cursor: default;
  z-index: 999;
  margin: 0 auto;
}
#pagetop img {
  padding-bottom: 0.3rem;
  margin-right: 0.5rem;
  max-width: 6px;
  text-align: center;
  max-width: 70px;
}

/*pagetop-tab*/
@media screen and (max-width: 920px) {
  #pagetop {
    right: 3rem;
  }
}
/*pagetop-mobeile-big*/
@media screen and (max-width: 700px) {
  #pagetop {
    display: none;
    right: 3rem;
  }
  #pagetop img {
    display: none;
  }
}
/*pagetop-mobeile*/
@media screen and (max-width: 480px) {
  #pagetop {
    display: none;
    right: 3rem;
  }
  #pagetop img {
    display: none;
  }
}
/*フェードイン*/
.fadeIn {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.fadeIn.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s;
}

/*その他*/
html body .wrap section {
  /*box1-tab---*box1-Pc*/
  /*box1-mobeile*/
}
html body .wrap section .contact {
  position: relative;
  background: linear-gradient(to left, #b1e9f2, #f8f7dc, #ffedfc);
  padding-top: 5%;
  padding-bottom: 5%;
}
html body .wrap section .contact .contact-inner {
  width: 80%;
  background-color: #fff;
  margin: 0 auto;
}
html body .wrap section .contact .contact-inner form {
  padding-top: 5%;
  padding-bottom: 5%;
  width: 50%;
  margin: 0 auto;
}
html body .wrap section .contact .contact-inner form label {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
  display: block;
}
html body .wrap section .contact .contact-inner form label::-ms-clear {
  display: none;
}
html body .wrap section .contact .contact-inner form label::-ms-reveal {
  display: none;
}
html body .wrap section .contact .contact-inner form label::-ms-expand {
  display: none;
}
html body .wrap section .contact .contact-inner form input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 1rem;
  margin: 0.5rem 0;
  width: 100%;
  background-color: #efefef;
  outline: none;
}
html body .wrap section .contact .contact-inner form input::-ms-clear {
  display: none;
}
html body .wrap section .contact .contact-inner form input::-ms-reveal {
  display: none;
}
html body .wrap section .contact .contact-inner form input::-ms-expand {
  display: none;
}
html body .wrap section .contact .contact-inner form input:last-of-type {
  margin: 0 auto;
  margin-top: 2%;
  background-image: linear-gradient(to left, #f2bbe9 50%, #a1d5f0 100%);
  color: #fff;
}
html body .wrap section .contact .contact-inner form input:focus,
html body .wrap section .contact .contact-inner form textarea:focus {
  background-color: #fff;
  border: 1px solid #f2bbe9;
}
html body .wrap section .contact .contact-inner form textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 1rem;
  margin: 0.5rem 0;
  width: 100%;
  height: 300px;
  background-color: #efefef;
  margin-bottom: 1rem;
  outline: none;
}
html body .wrap section .contact .contact-inner form textarea::-ms-clear {
  display: none;
}
html body .wrap section .contact .contact-inner form textarea::-ms-reveal {
  display: none;
}
html body .wrap section .contact .contact-inner form textarea::-ms-expand {
  display: none;
}
html body .wrap section .contact .contact-inner .page-contents {
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  padding-top: 5%;
  width: 70%;
  margin: 0 auto;
}
html body .wrap section .contact .contact-inner .page-contents2 {
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-size: 1rem;
  padding-top: 2%;
  width: 70%;
  margin: 0 auto;
}
html body .wrap section .contact .sns-link {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 5%;
  padding: 2% 0;
  background-color: #fff;
}
@media screen and (max-width: 920px) {
  html body .wrap section .contact .contact-inner form {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  html body .wrap section .contact {
    padding-top: 15%;
    text-align: center;
    margin: 0 auto;
  }
  html body .wrap section .contact .contact-inner {
    width: 90%;
    padding-bottom: 10%;
  }
  html body .wrap section .contact .contact-inner form {
    width: 90%;
  }
  html body .wrap section .contact .contact-inner form textarea {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none transparent;
    background-clip: padding-box;
    color: inherit;
    font-size: inherit;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 1rem;
    margin: 0.5rem 0;
    width: 100%;
    height: 250px;
    background-color: #efefef;
    margin-bottom: 1rem;
  }
  html body .wrap section .contact .contact-inner form textarea::-ms-clear {
    display: none;
  }
  html body .wrap section .contact .contact-inner form textarea::-ms-reveal {
    display: none;
  }
  html body .wrap section .contact .contact-inner form textarea::-ms-expand {
    display: none;
  }
  html body .wrap section .contact .contact-inner .page-contents {
    font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
    padding-top: 15%;
    width: 100%;
  }
  html body .wrap section .contact .contact-inner .page-contents2 {
    padding-top: 10%;
    width: 90%;
  }
  html body .wrap section .contact .sns-link {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    margin-top: 5%;
    padding: 2% 0;
    background-color: #fff;
  }
}/*# sourceMappingURL=style-contact.css.map */