@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*/
/*見出し*/
@import url("https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css");
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 {
  line-height: 1.8rem;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300;
  color: #707070;
  overflow-y: scroll;
  /*footer*/
  /*footer-mobeile*/
}
html body .wrap {
  /*box1*/
  /*news*/
  /*box1-mobeile---*box1-tab*/
  /*box2*/
  /*box2-tab---*box2-Pc*/
  /*box1-mobeile---*box1-tab*/
  /*box2-mobeile-yoko*/
  /*box2-mobeile*/
  /*box3*/
  /*box3-tab*/
  /*box3-mobeile-yoko*/
  /*box3-mobeile*/
  /*box4*/
  /*box3-mobeile-yoko*/
  /*box4-mobeile*/
}
html body .wrap section {
  /*box1-tab---*box1-Pc*/
  /*box1-mobeile-yoko*/
  /*box1-mobeile*/
}
html body .wrap section .box1 {
  /*背景画像のsass*/
  position: relative;
  background: linear-gradient(to left, #b1e9f2, #f8f7dc, #ffedfc);
  height: 100vh;
}
html body .wrap section .box1 .jiwajiwa {
  text-align: center;
  margin: 0 auto;
  height: 100vh;
  background: url(../img/background-top.png);
  background-size: cover;
}
html body .wrap section .box1 .text01 {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  margin: auto;
  left: 3%;
  top: 3%;
}
html body .wrap section .box1 .copy {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  margin: auto;
  width: 80%;
  max-width: 600px;
  height: auto;
}
html body .wrap section .box1 .sns {
  position: absolute;
  left: 0;
  top: 70%;
  background: linear-gradient(to bottom, #ffbffb, #7edcff);
}
html body .wrap section .box1 .sns a {
  color: #fff;
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
html body .wrap section .box1 .sns a:hover {
  color: #2898d5;
  text-decoration: none;
}
html body .wrap section .box1 .sns a .la-twitter {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  left: 20%;
}
html body .wrap section .box1 .sns a .la-twitter:before {
  font-size: 30px;
  content: "\f099";
  font-family: "Line Awesome Free", "Line Awesome Brands";
  display: inline-block;
}
html body .wrap section .box1 .sns a:nth-of-type(2) {
  color: #fff;
}
html body .wrap section .box1 .sns a:nth-of-type(2):hover {
  color: #41c9b4;
  text-decoration: none;
}
html body .wrap section .box1 .sns a:nth-of-type(2) .la-sticky-note {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  left: 20%;
}
html body .wrap section .box1 .sns a:nth-of-type(2) .la-sticky-note:before {
  font-size: 30px;
  content: "\f249";
  font-family: "Line Awesome Free", "Line Awesome Brands";
  display: inline-block;
}
html body .wrap section .box1 .sns a:last-child {
  border-top: 2px dotted #fff;
}
@media screen and (min-width: 920px) and (max-width: 1280px) {
  html body .wrap section .box1 {
    height: 100vh;
  }
  html body .wrap section .box1 .jiwajiwa {
    height: 100vh;
  }
}
@media screen and (max-width: 700px) {
  html body .wrap section .box1 {
    /*背景画像のsass*/
    position: relative;
    background: linear-gradient(to left, #b1e9f2, #f8f7dc, #ffedfc);
    height: 100vh;
    width: 100vw;
  }
  html body .wrap section .box1 .jiwajiwa {
    height: 100vh;
    width: 100vw;
  }
  html body .wrap section .box1 .text01 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  html body .wrap section .box1 {
    /*背景画像のsass*/
    position: relative;
    background: linear-gradient(to left, #b1e9f2, #f8f7dc, #ffedfc);
    height: 100vh;
    width: 100vw;
  }
  html body .wrap section .box1 .jiwajiwa {
    height: 100vh;
    width: 100vw;
  }
  html body .wrap section .box1 .text01 {
    font-size: 1rem;
  }
}
html body .wrap .news {
  background-color: #fff;
  letter-spacing: 0.2rem;
}
html body .wrap .news .news-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding: 1rem;
}
html body .wrap .news .news-text .news-rogo {
  padding-right: 3rem;
}
html body .wrap .news .news-text .time {
  padding-right: 1rem;
}
html body .wrap .news .news-text .title {
  padding-right: 3rem;
}
html body .wrap .news .news-text .more {
  padding-right: 1rem;
}
html body .wrap .news .news-text .more .more-in {
  padding-right: 0.5rem;
}
html body .wrap .news .news-text .more .triangle {
  width: 0;
  height: 0;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #666;
  border-style: solid;
  display: inline-block;
}
@media screen and (max-width: 920px) {
  html body .wrap .news {
    font-size: 0.8rem;
  }
  html body .wrap .news .news-text {
    justify-content: space-between;
    width: 95%;
  }
  html body .wrap .news .news-text .news-rogo {
    padding-right: 2rem;
  }
  html body .wrap .news .news-text .time {
    padding-right: 1rem;
  }
  html body .wrap .news .news-text .title {
    padding-right: 1rem;
  }
  html body .wrap .news .news-text .more .triangle {
    display: inline-block;
    width: 0;
    height: 0;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #666;
    border-style: solid;
  }
}
@media screen and (max-width: 480px) {
  html body .wrap .news {
    font-size: 0.9em;
    line-height: 1.5rem;
  }
  html body .wrap .news .news-text {
    display: block;
    width: 90%;
    padding: 0.5rem;
  }
  html body .wrap .news .news-text .news-rogo {
    font-weight: 400;
    padding-right: 2rem;
    display: block;
  }
  html body .wrap .news .news-text .time {
    padding-right: 1rem;
    display: inline-block;
  }
  html body .wrap .news .news-text .title {
    display: inline-block;
    padding-right: 0rem;
    letter-spacing: 0rem;
  }
  html body .wrap .news .news-text a {
    display: block;
    text-align: right;
  }
  html body .wrap .news .news-text a .more {
    padding-right: 0.5rem;
  }
  html body .wrap .news .news-text a .more .triangle {
    display: inline-block;
    width: 0;
    height: 0;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #666;
    border-style: solid;
  }
}
html body .wrap .box2 {
  background: #f2f2f2;
  padding: 5% 0%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  /* @include background-image("sample.png");画像呼び出し
  @include triangle(#000, 30px, 30px, top);三角形呼び出し*/
}
html body .wrap .box2 .topic {
  width: 10%;
  padding-left: 3%;
}
html body .wrap .box2 .topic-right {
  width: 90%;
}
html body .wrap .box2 .topic-right .topic1 {
  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%;
}
html body .wrap .box2 .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: #2898d5;
}
html body .wrap .box2 .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: #2898d5;
  padding-left: 1rem;
}
html body .wrap .box2 .topic-right .topic1 ul {
  width: 100%;
  padding-left: 0px;
  margin: 0;
  list-style: none;
}
html body .wrap .box2 .topic-right .topic1 ul li {
  line-height: 3rem;
}
html body .wrap .box2 .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;
}
html body .wrap .box2 .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;
}
html body .wrap .box2 .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;
}
html body .wrap .box2 .topic-right .topic1 .topic1-1 {
  position: relative;
  width: 48.5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-1 h3 {
  top: -8%;
  left: 5%;
}
html body .wrap .box2 .topic-right .topic1 .topic1-2 {
  position: relative;
  width: 48.5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-2 .special a {
  border-bottom: none;
}
html body .wrap .box2 .topic-right .topic1 .topic1-2 .special a img {
  width: 80%;
  max-height: 300px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-2 h3 {
  top: -8%;
  left: 5%;
}
html body .wrap .box2 .topic-right .topic1 .topic1-2 .time {
  padding-right: 1rem;
}
html body .wrap .box2 .topic-right .topic1 .topic1-3 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 200px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-3 h3 {
  top: -8%;
  left: 5%;
}
html body .wrap .box2 .topic-right .topic1 .topic1-4 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 200px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-4 h3 {
  font-size: 1.8rem;
  top: -8%;
  left: 15%;
}
html body .wrap .box2 .topic-right .topic1 .topic1-5 {
  position: relative;
  width: 31.3333333333%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 200px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-5 h3 {
  top: -8%;
  left: 5%;
}
html body .wrap .box2 .topic-right .topic1 .topic1-6 {
  position: relative;
  width: 48.5%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-6 h3 {
  top: -8%;
  left: 5%;
}
html body .wrap .box2 .topic-right .topic1 .topic1-7 {
  position: relative;
  width: 48.5%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-7 h3 {
  top: -8%;
  left: 5%;
}
html body .wrap .box2 .topic-right .topic1 .topic1-8 {
  position: relative;
  width: 48.5%;
  margin-top: 5%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5%;
  height: 250px;
}
html body .wrap .box2 .topic-right .topic1 .topic1-8 h3 {
  top: -8%;
  left: 5%;
}
html body .wrap .box2 .topic-right .topic1 p {
  font-weight: 300;
}
@media screen and (min-width: 920px) and (max-width: 1280px) {
  html body .wrap .box2 .topic-right .topic1 ul li a h4 {
    letter-spacing: 0;
    font-size: 1rem;
    padding-right: 0.5rem;
  }
  html body .wrap .box2 .topic-right .topic1 ul li a h5 {
    font-size: 0.8rem;
    padding-right: 0.5rem;
  }
  html body .wrap .box2 .topic-right .topic1 h3 {
    font-size: 1.5rem;
  }
  html body .wrap .box2 .topic-right .topic1 p {
    font-size: 0.8rem;
    line-height: 1.6rem;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-1 {
    padding: 3%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-2 {
    padding: 3%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-3 {
    padding: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-4 {
    padding: 3%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-4 h3 {
    font-size: 1.4rem;
    left: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-5 {
    justify-content: center;
    padding: 3%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-6 {
    padding: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-7 {
    padding: 3%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 {
    padding: 3%;
  }
}
@media screen and (max-width: 920px) {
  html body .wrap .box2 .topic {
    font-size: 1rem;
  }
  html body .wrap .box2 .topic-right .topic1 h3 {
    font-size: 1.5rem;
  }
  html body .wrap .box2 .topic-right .topic1 h3 .h3-ruby {
    font-size: 0.8rem;
    top: 15%;
    padding-left: 0.5rem;
  }
  html body .wrap .box2 .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;
  }
  html body .wrap .box2 .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;
  }
  html body .wrap .box2 .topic-right .topic1 p {
    font-size: 0.8rem;
    line-height: 1.5rem;
    text-align: left;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-1 {
    padding: 3%;
    height: 220px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-1 h3 {
    top: -8%;
    left: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-2 {
    padding: 3%;
    height: 220px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-2 h3 {
    top: -8%;
    left: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-2 .time {
    font-size: 0.8rem;
    padding-right: 1rem;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-3 {
    padding: 3%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-4 {
    padding: 3%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-4 h3 {
    font-size: 1rem;
    top: -8%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-5 {
    padding: 3%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-5 h3 {
    top: -8%;
    left: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-6 {
    padding: 3%;
    height: 250px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-6 h3 {
    top: -8%;
    left: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-7 {
    padding: 3%;
    height: 250px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-7 h3 {
    top: -8%;
    left: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 {
    padding: 3%;
    height: 250px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 .sns a {
    width: 55px;
    height: 55px;
    border-bottom: 0px solid #ff9f95;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 .sns a .la-twitter {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 .sns a .la-twitter:before {
    font-size: 30px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 .sns a .la-sticky-note:before {
    font-size: 30px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 .sns a .la-facebook-f:before {
    font-size: 30px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 .sns a:hover {
    box-shadow: inset 0 0 0 22px #fff;
  }
}
@media screen and (max-width: 700px) {
  html body .wrap .box2 {
    display: block;
    padding: 5% 0%;
  }
  html body .wrap .box2 .topic {
    width: 100%;
    text-align: center;
  }
  html body .wrap .box2 .topic-right {
    width: 100%;
  }
  html body .wrap .box2 .topic-right .topic1 {
    margin: 0 auto;
    display: block;
  }
  html body .wrap .box2 .topic-right .topic1 ul li {
    line-height: 2.5rem;
  }
  html body .wrap .box2 .topic-right .topic1 ul li a h5 {
    font-size: 0.8rem;
    padding-right: 0rem;
    letter-spacing: 0;
  }
  html body .wrap .box2 .topic-right .topic1 p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8rem;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-1 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-2 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-2 .time {
    padding-right: 1rem;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-3 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    height: 165px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-4 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    width: 100%;
    height: 165px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-4 h3 {
    font-size: 1.5rem;
    left: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-5 {
    padding: 5%;
    margin-top: 10%;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 165px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-6 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-7 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-7 a {
    margin: 0 auto;
    margin-top: 0.5rem;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  html body .wrap .box2 {
    display: block;
    padding: 5% 0%;
  }
  html body .wrap .box2 .topic {
    width: 100%;
    text-align: center;
  }
  html body .wrap .box2 .topic-right {
    width: 100%;
  }
  html body .wrap .box2 .topic-right .topic1 {
    margin: 0 auto;
    display: block;
  }
  html body .wrap .box2 .topic-right .topic1 ul li {
    line-height: 2.5rem;
  }
  html body .wrap .box2 .topic-right .topic1 ul li a h5 {
    font-size: 0.8rem;
    padding-right: 0rem;
    letter-spacing: 0;
  }
  html body .wrap .box2 .topic-right .topic1 p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8rem;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-1 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-2 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-2 .time {
    padding-right: 1rem;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-3 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    height: 165px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-4 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    width: 100%;
    height: 165px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-4 h3 {
    font-size: 1.5rem;
    left: 5%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-5 {
    padding: 5%;
    margin-top: 10%;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 165px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-6 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
    height: 200px;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-7 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-7 a {
    margin: 0 auto;
    margin-top: 0.5rem;
  }
  html body .wrap .box2 .topic-right .topic1 .topic1-8 {
    padding: 5%;
    margin-top: 10%;
    width: 100%;
  }
}
html body .wrap .box3 {
  margin: 0 auto;
  padding-top: 5%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
html body .wrap .box3 h2 {
  width: 10%;
  padding-left: 3%;
}
html body .wrap .box3 .profile {
  padding-top: 5%;
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
}
html body .wrap .box3 .profile .profile-img {
  width: 30%;
}
html body .wrap .box3 .profile .profile-dtaile {
  width: 55%;
}
html body .wrap .box3 .profile .profile-dtaile 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;
  font-size: 1.4rem;
  position: absolute;
  color: #2898d5;
}
html body .wrap .box3 .profile .profile-dtaile p {
  padding-top: 10%;
  font-size: 0.9rem;
}
html body .wrap .box3 .profile .profile-dtaile .massage {
  position: absolute;
  left: 10%;
  top: 75%;
}
html body .wrap .box3 .profile .profile-dtaile .massage img {
  max-width: 400px;
}
@media screen and (max-width: 920px) {
  html body .wrap .box3 {
    display: block;
    padding: 5% 0%;
  }
  html body .wrap .box3 h2 {
    font-size: 1rem;
  }
  html body .wrap .box3 .profile {
    width: 85%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3%;
  }
  html body .wrap .box3 .profile .profile-img img {
    max-width: 150px;
  }
  html body .wrap .box3 .profile .profile-dtaile {
    width: 55%;
  }
  html body .wrap .box3 .profile .profile-dtaile h3 {
    font-size: 1.2rem;
  }
  html body .wrap .box3 .profile .profile-dtaile p {
    font-size: 0.7rem;
  }
  html body .wrap .box3 .profile .profile-dtaile .massage img {
    max-width: 300px;
  }
}
@media screen and (max-width: 700px) {
  html body .wrap .box3 h2 {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  html body .wrap .box3 .profile {
    justify-content: space-between;
  }
  html body .wrap .box3 .profile .profile-dtaile {
    width: 55%;
  }
  html body .wrap .box3 .profile .profile-dtaile h3 {
    font-size: 1.2rem;
  }
  html body .wrap .box3 .profile .profile-dtaile p {
    font-size: 0.7rem;
  }
  html body .wrap .box3 .profile .profile-dtaile .massage {
    left: 4%;
    top: 50%;
  }
  html body .wrap .box3 .profile .profile-dtaile .massage img {
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  html body .wrap .box3 {
    padding: 5% 0%;
  }
  html body .wrap .box3 h2 {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0;
  }
  html body .wrap .box3 .profile {
    width: 100%;
    display: block;
    width: 100%;
    text-align: center;
  }
  html body .wrap .box3 .profile .profile-img {
    width: 100%;
  }
  html body .wrap .box3 .profile .profile-dtaile {
    width: 100%;
    text-align: left;
  }
  html body .wrap .box3 .profile .profile-dtaile h3 {
    position: static;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }
  html body .wrap .box3 .profile .profile-dtaile p {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.8rem;
  }
  html body .wrap .box3 .profile .profile-dtaile p a {
    margin: 0 auto;
    margin-top: 5%;
  }
  html body .wrap .box3 .profile .profile-dtaile .massage {
    display: none;
  }
}
html body .wrap .box4 {
  margin: 0 auto;
  padding-top: 10%;
  position: relative;
  justify-content: space-between;
}
html body .wrap .box4 h2 {
  width: 10%;
  padding-left: 3%;
}
html body .wrap .box4 .link {
  width: 70%;
  margin: 0 auto;
  padding-top: 5%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
}
html body .wrap .box4 .link .link-ditail {
  padding: 0 5%;
}
html body .wrap .box4 .link .link-ditail 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;
  font-size: 1.4rem;
  position: absolute;
  color: #2898d5;
}
html body .wrap .box4 .link .link-ditail h4 {
  padding-top: 15%;
  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;
  letter-spacing: 0;
  font-size: 1rem;
  color: #2898d5;
}
html body .wrap .box4 .sns-link {
  width: 70%;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  padding-top: 8%;
}
html body .wrap .box4 .event-banner {
  padding-top: 5%;
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body .wrap .box4 .event-banner a {
  padding: 0 2rem;
  padding-top: 2%;
}
html body .wrap .box4 .event-banner a img {
  max-width: 200px;
}
@media screen and (max-width: 920px) {
  html body .wrap .box4 {
    padding-top: 15%;
  }
  html body .wrap .box4 h2 {
    font-size: 1rem;
  }
  html body .wrap .box4 .link {
    width: 90%;
  }
  html body .wrap .box4 p {
    font-size: 0.8rem;
  }
  html body .wrap .box4 .event-banner {
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  html body .wrap .box4 h2 {
    width: 100%;
    text-align: center;
  }
  html body .wrap .box4 .sns-link {
    width: 90%;
    padding: 10% 0;
  }
  html body .wrap .box4 .sns-link p {
    font-size: 1rem;
    margin: 5% 0;
  }
  html body .wrap .box4 .event-banner {
    display: block;
    text-align: center;
    width: 100%;
  }
  html body .wrap .box4 .event-banner a img {
    margin-top: 5%;
  }
}
@media screen and (max-width: 480px) {
  html body .wrap .box4 {
    display: block;
    padding-top: 15%;
    padding-bottom: 15%;
  }
  html body .wrap .box4 h2 {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  html body .wrap .box4 .link {
    width: 100%;
  }
  html body .wrap .box4 .link .link-ditail {
    padding-top: 5%;
  }
  html body .wrap .box4 .link .link-ditail h4 {
    padding-top: 12%;
  }
  html body .wrap .box4 .sns-link {
    width: 90%;
    padding: 10% 0;
  }
  html body .wrap .box4 .sns-link p {
    font-size: 1rem;
    margin: 5% 0;
  }
  html body .wrap .box4 .event-banner {
    display: block;
    text-align: center;
    width: 100%;
  }
  html body .wrap .box4 .event-banner a img {
    margin-top: 5%;
  }
}
html body footer {
  margin-top: 5%;
}
html body footer .footer {
  background: linear-gradient(to left, #b1e9f2, #f8f7dc, #ffedfc);
  margin: 0 auto;
}
html body footer .footer .footer-inner {
  padding: 4rem 0;
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
html body footer .footer .footer-inner ul {
  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;
  font-weight: 400;
  font-size: 1rem;
  width: 40%;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  list-style-type: none;
}
html body footer .footer .footer-inner ul li a:hover {
  color: #fff;
}
html body footer .footer .footer-inner ul li i {
  display: none;
}
html body footer p {
  padding-top: 4rem;
  padding-bottom: 2rem;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 1280px) {
  html body footer .footer .footer-inner ul {
    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;
    font-weight: 400;
    font-size: 0.8rem;
    width: 60%;
  }
}
@media screen and (max-width: 700px) {
  html body footer .footer .footer-inner {
    width: 100%;
    padding: 3rem 0;
    display: block;
  }
  html body footer .footer .footer-inner h2 {
    width: 100%;
    text-align: center;
  }
  html body footer .footer .footer-inner ul {
    display: block;
    width: 100%;
    padding: 0;
    padding-top: 2rem;
    text-indent: 5rem;
  }
  html body footer .footer .footer-inner ul li {
    border-bottom: #f8f7dc 2px dotted;
  }
  html body footer .footer .footer-inner ul li a {
    font-size: 1rem;
    padding: 0.8rem 0;
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
  }
  html body footer .footer .footer-inner ul li:hover {
    background-color: #f8f7dc;
  }
  html body footer .footer .footer-inner ul li i {
    display: inline;
  }
  html body footer .footer .footer-inner ul li:last-child {
    border-bottom: #fff 0px dotted;
  }
  html body footer p {
    padding-top: 2rem;
  }
}/*# sourceMappingURL=style.css.map */