@charset "utf-8";
html {
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}
body {
  font-size: 1.6rem; /* 16px */
  font-family: -apple-system, blinkMacSystemFont, YuGothic-M, YuGothic, "M PLUS Rounded 1c", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  margin: 0px;
  width: 100%;
  color: #494443;
  line-height: 2.6rem;
}
h1, h2, h3, h4, h5 {
  font-weight: normal;
  margin: 0px;
}
p {
  margin: 0px;
}
ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
a img {
  border-style: none;
}
img {
  image-rendering: -webkit-optimize-contrast;
}
#wrap {
  overflow: hidden;
  font-family: "Noto Serif JP", serif;
}
#zoom {
  width: 100%;
  height: 100vh;
  position: fixed;
  float: left;
  top: 0px;
}
.img-box {
  width: 100%;
  height: 56vw;
  overflow: hidden;
  position: relative;
}
.img-box > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  animation-name: fade;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
.img-box > div:first-of-type {
  background-image: url(../photo/top.jpg);
}
.img-box > div:nth-of-type(2) {
  background-image: url(../photo/top2.jpg);
  /* 追記 */
  animation-delay: 4s;
}
.img-box > div:last-of-type {
  background-image: url(../photo/top3.jpg);
  /* 追記 */
  animation-delay: 8s;
}
.img-box > div {
  animation: fade 12s 1 forwards; /* 1回＋保持 */
}
/* 最後のスライドだけ別キーframesで“表示のまま”止める */
.img-box > div:last-of-type {
  background-image: url(../photo/top3.jpg);
  animation: fadeLast 12s 1 forwards;
  animation-delay: 8s;
}
@keyframes fadeLast {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  /* 80%以降も表示を維持。ズームを止めたいなら transform: none; */
  100% {
    opacity: 1;
    transform: none;
  }
}
#zoom2 {
  height: 100vh;
  display: grid;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  width: 100%;
  z-index: 10;
  float: left;
}
.zoom2_box {
  width: 100%;
  float: left;
}
.zoom2_box_left {
  width: 15%;
  float: left;
  margin-left: 5%;
  margin-top: 30px;
}
@media (max-width: 1666px) {
  .zoom2_box_left {
    width: 20%;
    float: left;
    margin-left: 5%;
    margin-top: 30px;
  }
}
.zoom2_box_left img {
  width: 100%;
}
.zoom2_box_right {
  width: 30%;
  float: right;
}
@media (max-width: 1666px) {
  .zoom2_box_right {
    width: 40%;
    float: right;
  }
}
.zoom2_box_right ul {
  width: 100%;
  float: right;
  text-align: right;
}
.zoom2_box2 {
  width: 100%;
  float: left;
}
.zoom2_box2 div {
  width: 100%;
  float: left;
  text-align: center;
}
.zoom2_box2 div img {
  width: 50%;
}
.zoom2_box3 {
  width: 100%;
  float: left;
  text-align: right;
  bottom: 50px;
  position: absolute;
  right: 50px;
}
.zoom2_box3 span {
  color: #E83B3E;
  margin-right: 10px;
  font-size: 1.6rem;
}
.fadeInBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.block {
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 1.5秒間かけてフェードイン */
.fadeIn1500ms {
  animation-name: fadeIn1500ms;
  animation-delay: 1500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}
@keyframes fadeIn1500ms {
  0% {}
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* 2.0秒間かけてフェードイン */
.fadeIn2000ms {
  animation-name: fadeIn1500ms;
  animation-delay: 2000ms;
  animation-duration: 2.0s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}
@keyframes fadeIn2000ms {
  0% {}
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* 2.5秒間かけてフェードイン */
.fadeIn2500ms {
  animation-name: fadeIn1500ms;
  animation-delay: 2500ms;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}
@keyframes fadeIn2500ms {
  0% {}
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
#top {
  width: 100%;
  float: left;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 1));
  position: relative;
  z-index: 20;
  margin-top: 0px;
  padding-top: 100px;
  padding-bottom: 100px;
}
#top p {
  width: 50%;
  float: left;
  margin-left: 25%;
  font-size: 3.6rem;
  line-height: 6rem;
  text-align: center;
}
@media (max-width: 1666px) {
  #top p {
    width: 80%;
    float: left;
    margin-left: 10%;
    font-size: 3.6rem;
    line-height: 6rem;
    text-align: center;
  }
}
.fade-in-text {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 3s ease-out, transform 3s ease-out;
  transition-delay: calc(var(--delay) * 1s);
}
.fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}
#top2 {
  width: 70%;
  float: left;
  position: relative;
  z-index: 20;
  margin-top: 0px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #FFFFFF;
  padding-right: 15%;
  padding-left: 15%;
}
@media (max-width: 1666px) {
  #top2 {
    width: 90%;
    float: left;
    position: relative;
    z-index: 20;
    margin-top: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #FFFFFF;
    padding-right: 5%;
    padding-left: 5%;
  }
}
.top2_box {
  width: 100%;
  float: left;
}
.top2_box_left {
  width: 40%;
  float: left;
}
.top2_box_left h1 {
  width: 100%;
  float: left;
  font-size: 3.6rem;
  line-height: 6rem;
  margin-top: 30px;
}
@media (max-width: 1666px) {
  .top2_box_left h1 {
    width: 100%;
    float: left;
    font-size: 3rem;
    line-height: 5.4rem;
    margin-top: 20px;
  }
}
.top2_box_left h1 span {
  font-size: 2rem;
  display: block;
  color: #E83B3E;
  line-height: 3rem;
}
.top2_box_left p {
  width: 100%;
  float: left;
  margin-top: 20px;
  line-height: 2.6rem;
}
.top2_box_right {
  width: 55%;
  float: right;
}
.top2_box_right img {
  width: 100%;
}
#top3 {
  width: 100%;
  float: left;
  position: relative;
  z-index: 20;
  margin-top: 0px;
  background-color: #FFF;
}
#top3_design {
  width: 70%;
  float: left;
  background: linear-gradient(90deg, rgb(249, 201, 170), rgb(255, 255, 255));
  padding-right: 15%;
  padding-left: 15%;
  border-radius: 100px 0 0 0;
}
@media (max-width: 1666px) {
  #top3_design {
    width: 90%;
    float: left;
    background: linear-gradient(90deg, rgb(249, 201, 170), rgb(255, 255, 255));
    padding-right: 5%;
    padding-left: 5%;
    border-radius: 100px 0 0 0;
  }
}
.top3_box {
  width: 100%;
  float: left;
}
.top3_box_left {
  width: 55%;
  float: left;
  padding-top: 0px;
  margin-top: 100px;
  padding-bottom: 100px;
}
.top3_box_left h2 {
  width: 100%;
  float: left;
  font-size: 3.6rem;
  line-height: 6rem;
  margin-top: 30px;
}
.top3_box_left h2 span {
  font-size: 2rem;
  display: block;
  color: #E83B3E;
  line-height: 3rem;
}
.top3_box_left ul {
  width: 100%;
  float: left;
  margin-top: 0px;
  line-height: 2.6rem;
}
.top3_box_left ul li {
  width: 96%;
  float: left;
  margin-top: 10px;
  background-color: #FFFFFF;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 10px;
  padding-bottom: 15px;
  border-radius: 10px;
}
.top3_box_left ul li:before {
  content: '\e834';
  font-family: 'Material Icons';
  top: 7px;
  position: relative;
  margin-right: 10px;
  font-size: 2.6rem;
  color: #C1E1DC;
}
.top3_box_right {
  width: 40%;
  float: right;
  padding-top: 50px;
  padding-bottom: 50px;
}
.top3_box_right img {
  width: 100%;
  border-radius: 30px 0 30px 0;
}
#top4 {
  width: 100%;
  float: left;
  z-index: 20;
  background-color: #FFF;
  padding-top: 100px;
  position: relative;
}
#top4_design {
  width: 70%;
  float: left;
  background: linear-gradient(90deg, rgb(240, 240, 240), rgb(255, 255, 255));
  border-radius: 0 0 0 50px;
  z-index: 30;
  margin-left: 15%;
  position: relative;
  height: 460px;
  margin-top: 100px;
  padding-right: 15%;
}
@media (max-width: 1666px) {
  #top4_design {
    width: 90%;
    float: left;
    background: linear-gradient(90deg, rgb(240, 240, 240), rgb(255, 255, 255));
    border-radius: 0 0 0 50px;
    z-index: 30;
    margin-left: 5%;
    position: relative;
    height: 460px;
    margin-top: 100px;
    padding-right: 5%;
  }
}
#top4 h2 {
  width: 70%;
  float: left;
  font-size: 3.6rem;
  line-height: 6rem;
  margin-top: 30px;
  margin-right: 15%;
  margin-left: 15%;
}
#top4 h2 span {
  font-size: 2rem;
  display: block;
  color: #E83B3E;
  line-height: 3rem;
}
.top4_box {
  width: 100%;
  float: left;
  text-align: center;
  position: absolute;
  top: -50px;
}
.top4_box_page {
  width: 20%;
  height: 460px;
  background: rgba(255, 255, 255, 0.8);
  margin-right: 2%;
  margin-left: 2%;
  display: inline-block;
  border: 1px solid #DCDCDC;
  border-radius: 0 30px 0 30px;
}
.top4_box_page div {
  width: 100%;
  height: 200px;
  float: left;
}
.top4_box_page div img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.top4_box_page h3 {
  width: 100%;
  float: left;
  text-align: center;
  padding-top: 20px;
  font-size: 2rem;
  font-weight: bold;
}
#top5 {
  width: 70%;
  float: left;
  z-index: 20;
  background-color: #FFF;
  padding-top: 100px;
  position: relative;
  padding-right: 15%;
  padding-left: 15%;
}
@media (max-width: 1666px) {
  #top5 {
    width: 90%;
    float: left;
    z-index: 20;
    background-color: #FFF;
    padding-top: 100px;
    position: relative;
    padding-right: 5%;
    padding-left: 5%;
  }
}
.top5_box {
  width: 100%;
  float: left;
  text-align: center;
}
.top5_box_page {
  width: 45%;
  height: 310px;
  margin-right: 2%;
  margin-left: 2%;
  display: inline-block;
  position: relative;
}
.top5_box_page div {
  width: 80%;
  height: 200px;
  float: left;
  text-align: left;
  padding-top: 0px;
  padding-right: 10%;
  padding-left: 10%;
}
.top5_box_page div img {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.top5_box_page p {
  width: 70%;
  height: 100px;
  float: left;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgb(240, 240, 240));
  position: absolute;
  top: 150px;
  right: 0px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-top: 15px;
  padding-right: 5%;
  padding-left: 5%;
  text-align: left;
  border: 1px solid #DFDFDF;
}
#top6 {
  width: 100%;
  float: left;
  position: relative;
  z-index: 20;
  background-color: #FFF;
}
#top6_design {
  width: 70%;
  float: left;
  background: linear-gradient(90deg, rgb(249, 201, 170), rgb(255, 255, 255));
  padding-right: 15%;
  padding-left: 15%;
  border-radius: 100px 0 0 0;
  margin-top: 70px;
  padding-bottom: 70px;
  padding-top: 30px;
}
@media (max-width: 1666px) {
  #top6_design {
    width: 90%;
    float: left;
    background: linear-gradient(90deg, rgb(249, 201, 170), rgb(255, 255, 255));
    padding-right: 5%;
    padding-left: 5%;
    border-radius: 100px 0 0 0;
    margin-top: 70px;
    padding-bottom: 70px;
    padding-top: 30px;
  }
}
.top6_box {
  width: 100%;
  float: left;
  margin-top: 50px;
  height: 300px;
}
.top6_box_left {
  width: 40%;
  float: left;
}
.top6_box_left img {
    width: 100%;
    object-fit: cover;
    height: 300px;
    border-top-left-radius: 30px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 30px;
    margin-top: 0px;
}
.top6_box_right {
  width: 55%;
  float: right;
  background-color: #FFFFFF;
  height: 300px;
  padding-left: 5%;
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0px;
}
.top6_box_right h3 {
  width: 100%;
  float: left;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 55px;
}
.top6_box_right ul {
  width: 100%;
  float: left;
  margin-top: 5px;
  list-style-position: inside;
  list-style-type: disc;
}
.top6_box_right ul li {
  width: 100%;
  float: left;
  margin-top: 5px;
}
.top6_box2 {
  width: 100%;
  float: left;
  margin-top: 50px;
  height: 300px;
}
.top6_box2_left {
  width: 40%;
  float: left;
}
.top6_box2_left img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  border-top-left-radius: 30px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 30px;
}
.top6_box2_right {
  width: 55%;
  float: right;
  background-color: #FFFFFF;
  height: 300px;
  padding-left: 5%;
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0px;
}
.top6_box2_right h3 {
  width: 100%;
  float: left;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 55px;
}
.top6_box2_right ul {
  width: 100%;
  float: left;
  margin-top: 5px;
  list-style-position: inside;
  list-style-type: disc;
}
.top6_box2_right ul li {
  width: 100%;
  float: left;
  margin-top: 5px;
}
#top7 {
  width: 100%;
  float: left;
  z-index: 20;
  padding-top: 100px;
  position: relative;
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(240, 240, 240));
}
#top7 h2 {
  width: 70%;
  float: left;
  font-size: 3.6rem;
  line-height: 6rem;
  margin-right: 15%;
  margin-left: 15%;
}
@media (max-width: 1666px) {
  #top7 h2 {
    width: 90%;
    float: left;
    font-size: 3.6rem;
    line-height: 6rem;
    margin-right: 5%;
    margin-left: 5%;
  }
}
#top7 h2 span {
  font-size: 2rem;
  display: block;
  color: #E83B3E;
  line-height: 3rem;
}
.top7_box {
  width: 70%;
  float: left;
  text-align: center;
  margin-right: 15%;
  margin-left: 15%;
  margin-top: 25px;
}
@media (max-width: 1666px) {
  .top7_box {
    width: 90%;
    float: left;
    text-align: center;
    margin-right: 5%;
    margin-left: 5%;
    margin-top: 25px;
  }
}
.top7_box_page {
  width: 39%;
  height: 200px;
  margin-right: 2%;
  margin-left: 2%;
  display: inline-block;
  position: relative;
  margin-top: 25px;
  padding-right: 3%;
  padding-left: 3%;
  border-radius: 10px;
  border: 1px solid #DFDFDF;
}
.top7_box_page_left {
  width: 45%;
  float: left;
  text-align: left;
  margin-top: 50px;
}
.top7_box_page_left p {
  width: 100%;
  float: left;
  margin-top: 10px;
}
.top7_box_page_right {
  width: 45%;
  float: right;
  text-align: center;
  margin-top: 50px;
}
.top7_box_page_right img {
  width: 80%;
}
.top7_box_page2 {
  width: 92%;
  float: left;
  margin-left: 4%;
}
.top7_box_page2 ul {
  width: 100%;
  float: left;
  margin-top: 50px;
  line-height: 2.6rem;
  text-align: left;
}
.top7_box_page2 ul li {
  width: 96%;
  float: left;
  margin-top: 10px;
  background-color: #FFFFFF;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 10px;
  padding-bottom: 15px;
  border-radius: 10px;
}
.top7_box_page2 ul li:before {
  content: '\e834';
  font-family: 'Material Icons';
  top: 7px;
  position: relative;
  margin-right: 10px;
  font-size: 2.6rem;
  color: #C1E1DC;
}
#top8 {
  width: 100%;
  float: left;
  position: relative;
  z-index: 20;
  background-color: #FFF;
}
#top8_design {
  width: 100%;
  float: left;
  background: linear-gradient(180deg, rgb(240, 240, 240), rgb(240, 240, 240));
  text-align: center;
  font-size: 5rem;
  line-height: 5rem;
  padding-top: 100px;
  padding-bottom: 50px;
}
#top8_design span {
  font-size: 2rem;
  display: block;
}
#top9 {
  width: 100%;
  float: left;
}
#top9_design {
  width: 100%;
  float: left;
  background: linear-gradient(180deg, rgb(240, 240, 240), rgb(240, 240, 240));
  text-align: center;
  font-size: 5rem;
  line-height: 5rem;
  padding-top: 50px;
  padding-bottom: 50px;
}
#top9_design span {
  font-size: 2rem;
  display: block;
}
#top10 {
  width: 70%;
  float: left;
  margin-top: 100px;
  margin-right: 15%;
  margin-left: 15%;
}
@media (max-width: 1666px) {
  #top10 {
    width: 90%;
    float: left;
    margin-top: 100px;
    margin-right: 5%;
    margin-left: 5%;
  }
}
#top10_2 {
  width: 70%;
  float: left;
  margin-top: 30px;
  margin-right: 15%;
  margin-left: 15%;
  padding-bottom: 100px;
}
@media (max-width: 1666px) {
  #top10_2 {
    width: 90%;
    float: left;
    margin-top: 30px;
    margin-right: 5%;
    margin-left: 5%;
    padding-bottom: 100px;
  }
}
.top10_box {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.top10_box p {
  width: 100%;
  float: left;
  text-align: center;
}
.page10_box2 {
  width: 45%;
  float: left;
  margin-top: 15px;
  margin-right: 2%;
  margin-left: 3%;
}
.page10_box2 h3 {
  width: 100%;
  float: left;
  font-size: 1.8rem;
}
.page10_box2 h3 span {
  display: inline-block;
  margin-left: 5px;
  background-color: #565656;
  color: #FFFFFF;
  padding-top: 0px;
  padding-right: 5px;
  padding-bottom: 2px;
  padding-left: 5px;
  font-size: 1.2rem;
  line-height: 1.8rem;
  position: relative;
  top: -2px;
}
.page10_box2 div {
  width: 100%;
  margin-top: 10px;
  float: left;
}
.page10_box3 {
  width: 95%;
  float: left;
  margin-top: 15px;
  margin-right: 2%;
  margin-left: 3%;
}
.page10_box3 h3 {
  width: 100%;
  float: left;
  font-size: 1.8rem;
}
.page10_box3 div {
  width: 100%;
  margin-top: 10px;
  float: left;
}
.page10_box4 {
  width: 100%;
  float: left;
  margin-top: 50px;
  text-align: center;
}
.page10_box5 {
  width: 100%;
  float: left;
  margin-top: 50px;
  text-align: center;
}
#foot {
  width: 20%;
  float: left;
  position: relative;
  z-index: 20;
  text-align: center;
  background: linear-gradient(180deg, rgb(240, 240, 240), rgb(240, 240, 240));
  padding-right: 40%;
  padding-left: 40%;
  padding-bottom: 50px;
}
#foot a {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #E83B3E;
}
.scroll {
  position: relative;
}
.scroll-text {
  font-size: 2rem;
  text-align: center;
}
.scroll-border {
  position: relative;
  top: 0px;
  width: 100%;
  height: 50px;
  overflow: hidden;
}
.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 20px;
  top: 0;
  left: 0;
  right: 0;
  background: #333;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
.des1 {
  width: 100%;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #E83B3E;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 2rem;
}
.des1_2 {
  width: 100%;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #B0B0B0;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 2rem;
}
.des2 {
  width: 35%;
  display: inline-block;
  right: -35px;
  position: relative;
}
@media (max-width: 1666px) {
  .des2 {
    width: 40%;
    display: inline-block;
    right: -35px;
    position: relative;
  }
}
.des2_2 {
  width: 35%;
  display: inline-block;
  position: relative;
  z-index: 10;
}
@media (max-width: 1666px) {
  .des2_2 {
    width: 40%;
    display: inline-block;
    position: relative;
    z-index: 10;
  }
}
.des3 {
  width: 80%;
  float: left;
  text-align: center;
  padding-top: 15px;
  margin-right: 10%;
  margin-left: 10%;
  line-height: 4.4rem;
}
.des3 span {
  background-color: #F0F0F0;
  display: block;
  border-radius: 10px;
  line-height: 3rem;
}
.des3_2 {
  width: 80%;
  float: left;
  text-align: center;
  padding-top: 0px;
  margin-right: 10%;
  margin-left: 10%;
  line-height: 4.4rem;
}
.des3_2 span {
  background-color: #F0F0F0;
  display: block;
  border-radius: 10px;
  line-height: 3rem;
}
.des4 {
  width: 100%;
  float: left;
  font-size: 4rem;
  margin-top: 20px;
}
.des4 a {
  color: #E83B3E;
  text-decoration: none;
}
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.scroll_up1 {
  transition: 0.8s ease-in-out;
  transform: translateY(10px);
  opacity: 0;
}
.scroll_up1.on {
  transform: translateY(0);
  opacity: 1.0;
}
.scroll_up2 {
  transition: 0.8s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}
.scroll_up2.on {
  transform: translateY(0);
  opacity: 1.0;
}
.scroll_up3 {
  transition: 0.8s ease-in-out;
  transform: translateY(90px);
  opacity: 0;
}
.scroll_up3.on {
  transform: translateY(0);
  opacity: 1.0;
}
.scroll_up4 {
  transition: 0.8s ease-in-out;
  transform: translateY(130px);
  opacity: 0;
}
.scroll_up4.on {
  transform: translateY(0);
  opacity: 1.0;
}
.text {
  border: 1px solid #999;
  padding-top: 13px;
  padding-bottom: 13px;
  width: 98%;
  font-size: 1.6rem;
  font-weight: normal;
  display: inline;
  padding-left: 1%;
  padding-right: 1%;
  background-color: #EFEDEC;
  font-family: "Noto Serif JP", serif;
  border-radius: 10px;
}
.text2 {
  border: 1px solid #999;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 98%;
  font-size: 1.6rem;
  font-weight: normal;
  display: inline;
  padding-left: 1%;
  padding-right: 1%;
  height: 130px;
  background-color: #EFEDEC;
  font-family: "Noto Serif JP", serif;
  border-radius: 10px;
}
.text3 {
  border: 1px solid #999;
  padding-top: 13px;
  padding-bottom: 13px;
  width: 40%;
  font-size: 1.6rem;
  font-weight: normal;
  display: inline;
  padding-left: 1%;
  padding-right: 1%;
  background-color: #EFEDEC;
  font-family: "Noto Serif JP", serif;
  border-radius: 10px;
}
.selectbox-3 {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: "Noto Serif JP", serif;
}
.selectbox-3::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #64605F;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.selectbox-3 select {
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: .4em calc(.8em + 30px) .4em .8em;
  border: 1px solid #999;
  background-color: #EFEDEC;
  font-size: 1.8rem;
  cursor: pointer;
  color: #64605F;
}
.radio-1 {
  display: flex;
  flex-wrap: wrap;
  gap: .3em 2em;
  border: none;
}
.radio-1 label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  cursor: pointer;
}
.radio-1 label::before, .radio-1 label:has(:checked)::after {
  border-radius: 0px;
  content: '';
}
.radio-1 label::before {
  width: 18px;
  height: 18px;
  background-color: #FFF;
  border: 1px solid #64605F;
}
.radio-1 label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #777777;
}
.radio-1 input {
  display: none;
}
.btn1 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 120px;
  margin: auto;
  padding: 1rem 4rem 1rem 3rem;
  font-weight: bold;
  background-color: #E83B3E;
  color: #fff;
  border-radius: 10px;
  position: relative;
  transition: 0.5s;
}
.btn1::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.btn1:hover {
  background-color: #E83B3E;
  color: #fff;
}
.button-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  margin: 0 auto;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-bottom: 1rem;
  border: 1px solid #999;
  border-radius: 10px;
  background-color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  float: left;
  background-color: #EFEDEC;
}
.pc {
  display: inline !important;
  margin-top: 10px;
}
.sm {
  display: none !important;
}
@media screen and (min-width : 1000px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width:479px) {
  ::i-block-chrome, body {
    font-feature-settings: "pkna";
  }
  body {
    font-size: 2rem; /* 16px */
    font-family: -apple-system, blinkMacSystemFont, YuGothic-M, YuGothic, "M PLUS Rounded 1c", Meiryo, sans-serif;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    margin: 0px;
    width: 100%;
    color: #494443;
    line-height: 3.4rem;
  }
  #zoom {
    width: 100%;
    height: 150vh;
    position: fixed;
    float: left;
    top: 0px;
    margin-top: 0px;
  }
  .img-box {
    width: 100%;
    height: 150vw;
    overflow: hidden;
    position: relative;
  }
  .img-box > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vw;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    opacity: 0;
    animation-name: fade;
    animation-duration: 12s;
    animation-iteration-count: infinite;
  }
  #zoom2 {
    height: 100vh;
    display: grid;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    width: 100%;
    z-index: 10;
    float: left;
  }
  .zoom2_box {
    width: 100%;
    float: left;
  }
  .zoom2_box_left {
    width: 50%;
    float: left;
    margin-left: 5%;
    margin-top: 15px;
  }
  .zoom2_box_left img {
    width: 100%;
  }
  .zoom2_box_right {
    width: 40%;
    float: right;
  }
  .zoom2_box_right ul {
    width: 100%;
    float: right;
    text-align: right;
  }
  .zoom2_box2 {
    width: 100%;
    float: left;
  }
  .zoom2_box2 div {
    width: 100%;
    float: left;
    text-align: center;
  }
  .zoom2_box2 div img {
    width: 90%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .zoom2_box3 {
    width: 100%;
    float: left;
    text-align: right;
    bottom: 50px;
    position: absolute;
    right: 50px;
  }
  .zoom2_box3 span {
    color: #E83B3E;
    margin-right: 10px;
    font-size: 1.6rem;
  }
  .img-box {
    width: 100%;
    height: 200vw;
    overflow: hidden;
    position: relative;
  }
  .img-box > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vw;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    opacity: 0;
    animation-name: fade;
    animation-duration: 12s;
    animation-iteration-count: infinite;
  }
  .img-box > div:first-of-type {
    background-image: url(../photo/top.jpg);
  }
  .img-box > div:nth-of-type(2) {
    background-image: url(../photo/top2.jpg);
    /* 追記 */
    animation-delay: 4s;
  }
  .img-box > div:last-of-type {
    background-image: url(../photo/top3.jpg);
    /* 追記 */
    animation-delay: 8s;
  }
  .img-box > div {
    animation: fade 12s 1 forwards; /* 1回＋保持 */
  }
  /* 最後のスライドだけ別キーframesで“表示のまま”止める */
  .img-box > div:last-of-type {
    background-image: url(../photo/top3.jpg);
    animation: fadeLast 12s 1 forwards;
    animation-delay: 8s;
  }
  #top {
    width: 100%;
    float: left;
    position: relative;
    z-index: 20;
    margin-top: 0px;
    padding-top: 50px;
    padding-bottom: 0px;
    background-color: #FFFFFF;
  }
  #top p {
    width: 90%;
    float: left;
    margin-left: 5%;
    font-size: 2.4rem;
    line-height: 4rem;
    text-align: left;
  }
  .fade-in-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 3s ease-out, transform 3s ease-out;
    transition-delay: calc(var(--delay) * 1s);
  }
  .fade-in-text.visible {
    opacity: 1;
    transform: translateY(0);
  }
  #top2 {
    width: 90%;
    float: left;
    position: relative;
    z-index: 20;
    margin-top: 0px;
    padding-top: 20px;
    padding-bottom: 50px;
    background-color: #FFFFFF;
    padding-right: 5%;
    padding-left: 5%;
  }
  .top2_box {
    width: 100%;
    float: left;
  }
  .top2_box_left {
    width: 100%;
    float: left;
  }
  .top2_box_left h1 {
    width: 100%;
    float: left;
    font-size: 2.4rem;
    line-height: 4rem;
    margin-top: 30px;
  }
  .top2_box_left h1 span {
    font-size: 2rem;
    display: block;
    color: #E83B3E;
    line-height: 3rem;
  }
  .top2_box_left p {
    width: 100%;
    float: left;
    margin-top: 20px;
    line-height: 3.4rem;
  }
  .top2_box_right {
    width: 100%;
    float: left;
    margin-top: 20px;
  }
  .top2_box_right img {
    width: 100%;
  }
  #top3 {
    width: 100%;
    float: left;
    position: relative;
    z-index: 20;
    margin-top: 0px;
    background-color: #FFF;
  }
  #top3_design {
    width: 90%;
    float: left;
    background: linear-gradient(90deg, rgb(249, 201, 170), rgb(255, 255, 255));
    padding-right: 5%;
    padding-left: 5%;
    border-radius: 100px 0 0 0;
  }
  .top3_box {
    width: 100%;
    float: left;
  }
  .top3_box_left {
    width: 100%;
    float: left;
    padding-top: 0px;
    margin-top: 50px;
    padding-bottom: 70px;
  }
  .top3_box_left h2 {
    width: 100%;
    float: left;
    font-size: 2.4rem;
    line-height: 4rem;
    margin-top: 30px;
  }
  .top3_box_left h2 span {
    font-size: 2rem;
    display: block;
    color: #E83B3E;
    line-height: 3rem;
  }
  .top3_box_left ul {
    width: 100%;
    float: left;
    margin-top: 0px;
    line-height: 3rem;
  }
  .top3_box_left ul li {
    width: 85%;
    float: left;
    margin-top: 10px;
    background-color: #FFFFFF;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 10px;
    padding-bottom: 15px;
    border-radius: 10px;
    line-height: 3rem;
    position: relative;
    padding-left: 2.2em;
  }
  .top3_box_left ul li:before {
    content: '\e834';
    font-family: 'Material Icons';
    position: absolute;
    left: 0.5em; /* アイコン位置 */
    top: 25px;
    transform: translateY(-50%);
    font-size: 2.6rem;
    color: #C1E1DC;
  }
  .top3_box_right {
    display: none;
  }
  #top4 {
    width: 100%;
    float: left;
    z-index: 20;
    background-color: #FFF;
    padding-top: 100px;
    position: relative;
  }
  #top4_design {
    width: 90%;
    float: left;
    background: linear-gradient(90deg, rgb(240, 240, 240), rgb(255, 255, 255));
    border-radius: 0 0 0 50px;
    z-index: 30;
    margin-left: 5%;
    position: relative;
    height: 1840px;
    margin-top: 20px;
    padding-right: 5%;
  }
  #top4 h2 {
    width: 90%;
    float: left;
    font-size: 2.4rem;
    line-height: 4rem;
    margin-top: 0px;
    margin-right: 5%;
    margin-left: 5%;
  }
  #top4 h2 span {
    font-size: 2rem;
    display: block;
    color: #E83B3E;
    line-height: 3rem;
  }
  .top4_box {
    width: 100%;
    float: left;
    text-align: center;
    position: absolute;
    top: 5px;
  }
  .top4_box_page {
    width: 90%;
    height: 430px;
    background: rgba(255, 255, 255, 0.8);
    margin-right: 5%;
    margin-left: 5%;
    display: inline-block;
    border: 1px solid #DCDCDC;
    border-radius: 0 30px 0 30px;
    margin-top: 20px;
  }
  .top4_box_page div {
    width: 100%;
    height: 200px;
    float: left;
  }
  .top4_box_page div img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 0px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  .top4_box_page h3 {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 20px;
    font-size: 2rem;
    font-weight: bold;
  }
  #top5 {
    width: 90%;
    float: left;
    z-index: 20;
    background-color: #FFF;
    padding-top: 30px;
    position: relative;
    padding-right: 5%;
    padding-left: 5%;
  }
  .top5_box {
    width: 100%;
    float: left;
    text-align: center;
  }
  .top5_box_page {
    width: 100%;
    height: 310px;
    margin-right: 0%;
    margin-left: 0%;
    display: inline-block;
    position: relative;
    margin-top: 20px;
  }
  .top5_box_page div {
    width: 90%;
    height: 150px;
    float: left;
    text-align: left;
    padding-top: 0px;
    padding-right: 5%;
    padding-left: 5%;
  }
  .top5_box_page div img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 0px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  .top5_box_page p {
    width: 90%;
    height: 150px;
    float: left;
    background: linear-gradient(90deg, rgb(255, 255, 255), rgb(240, 240, 240));
    position: absolute;
    top: 120px;
    right: 0px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding-top: 15px;
    padding-right: 5%;
    padding-left: 5%;
    text-align: left;
    border: 1px solid #DFDFDF;
  }
  #top6 {
    width: 100%;
    float: left;
    position: relative;
    z-index: 20;
    background-color: #FFF;
  }
  #top6_design {
    width: 90%;
    float: left;
    background: linear-gradient(90deg, rgb(249, 201, 170), rgb(255, 255, 255));
    padding-right: 5%;
    padding-left: 5%;
    border-radius: 100px 0 0 0;
    margin-top: 70px;
    padding-bottom: 70px;
    padding-top: 30px;
  }
  .top6_box {
    width: 100%;
    float: left;
    margin-top: 50px;
    height: 460px;
  }
  .top6_box_left {
    width: 20%;
    float: left;
  }
  .top6_box_left img {
    width: 100%;
    object-fit: cover;
    height: 460px;
    border-top-left-radius: 30px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 30px;
  }
  .top6_box_right {
    width: 75%;
    float: right;
    background-color: #FFFFFF;
    height: 460px;
    padding-left: 5%;
    border-top-left-radius: 0px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 0px;
  }
  .top6_box_right h3 {
    width: 100%;
    float: left;
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: 20px;
  }
  .top6_box_right ul {
    width: 92%;
    float: left;
    margin-top: 5px;
    list-style-position: outside;
    list-style-type: disc;
    margin-left: 8%;
  }
  .top6_box_right ul li {
    width: 100%;
    float: left;
    margin-top: 5px;
    line-height: 3rem;
  }
  .top6_box2 {
    width: 100%;
    float: left;
    margin-top: 50px;
    height: 360px;
  }
  .top6_box2_left {
    width: 20%;
    float: left;
  }
  .top6_box2_left img {
    width: 100%;
    object-fit: cover;
    height: 360px;
    border-top-left-radius: 30px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 30px;
  }
  .top6_box2_right {
    width: 75%;
    float: right;
    background-color: #FFFFFF;
    height: 360px;
    padding-left: 5%;
    border-top-left-radius: 0px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 0px;
  }
  .top6_box2_right h3 {
    width: 100%;
    float: left;
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: 20px;
  }
  .top6_box2_right ul {
    width: 92%;
    float: left;
    margin-top: 5px;
    list-style-position: outside;
    list-style-type: disc;
    margin-left: 8%;
  }
  .top6_box2_right ul li {
    width: 100%;
    float: left;
    margin-top: 5px;
    line-height: 3rem;
  }
  #top7 {
    width: 100%;
    float: left;
    z-index: 20;
    padding-top: 50px;
    position: relative;
    background: linear-gradient(180deg, rgb(255, 255, 255), rgb(240, 240, 240));
  }
  #top7 h2 {
    width: 90%;
    float: left;
    font-size: 2.4rem;
    line-height: 4rem;
    margin-right: 5%;
    margin-left: 5%;
  }
  #top7 h2 span {
    font-size: 2rem;
    display: block;
    color: #E83B3E;
    line-height: 3rem;
  }
  .top7_box {
    width: 90%;
    float: left;
    text-align: center;
    margin-right: 5%;
    margin-left: 5%;
    margin-top: 25px;
  }
  .top7_box_page {
    width: 90%;
    height: auto;
    margin-right: 0%;
    margin-left: 0%;
    display: inline-block;
    position: relative;
    margin-top: 10px;
    padding-right: 5%;
    padding-left: 5%;
    border-radius: 10px;
    border: 1px solid #DFDFDF;
    padding-bottom: 20px;
  }
  .top7_box_page_left {
    width: 55%;
    float: left;
    text-align: left;
    margin-top: 20px;
  }
  .top7_box_page_left p {
    width: 100%;
    float: left;
    margin-top: 10px;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .top7_box_page_right {
    width: 45%;
    float: right;
    text-align: center;
    margin-top: 20px;
  }
  .top7_box_page_right img {
    width: 100%;
  }
  .top7_box_page2 {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
  .top7_box_page2 ul {
    width: 100%;
    float: left;
    margin-top: 50px;
    line-height: 2.6rem;
    text-align: left;
  }
  .top7_box_page2 ul li {
    width: 85%;
    float: left;
    margin-top: 10px;
    background-color: #FFFFFF;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 10px;
    padding-bottom: 15px;
    border-radius: 10px;
    line-height: 3rem;
    position: relative;
    padding-left: 2.2em;
  }
  .top7_box_page2 ul li::before {
    content: '\e834';
    font-family: 'Material Icons';
    position: absolute;
    left: 0.5em; /* アイコン位置 */
    top: 25px;
    transform: translateY(-50%);
    font-size: 2.6rem;
    color: #C1E1DC;
  }
  #top8 {
    width: 100%;
    float: left;
    position: relative;
    z-index: 20;
    background-color: #FFF;
  }
  #top8_design {
    width: 100%;
    float: left;
    background: linear-gradient(180deg, rgb(240, 240, 240), rgb(240, 240, 240));
    text-align: center;
    font-size: 5rem;
    line-height: 5rem;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  #top8_design span {
    font-size: 2rem;
    display: block;
  }
#top10 {
  width: 90%;
  float: left;
  margin-top: 50px;
  margin-right: 5%;
  margin-left: 5%;
}
#top10_2 {
  width: 90%;
  float: left;
  margin-top: 30px;
  margin-right: 5%;
  margin-left: 5%;
  padding-bottom: 50px;
}
.top10_box {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.top10_box p {
  width: 100%;
  float: left;
  text-align: left;
}
.page10_box2 {
  width: 100%;
  float: left;
  margin-top: 15px;
  margin-right: 0%;
  margin-left: 0%;
}
.page10_box2 h3 {
  width: 100%;
  float: left;
  font-size: 1.8rem;
}
.page10_box2 h3 span {
  display: inline-block;
  margin-left: 5px;
  background-color: #565656;
  color: #FFFFFF;
  padding-top: 0px;
  padding-right: 5px;
  padding-bottom: 2px;
  padding-left: 5px;
  font-size: 1.2rem;
  line-height: 1.8rem;
  position: relative;
  top: -2px;
}
.page10_box2 div {
  width: 100%;
  margin-top: 10px;
  float: left;
}
.page10_box3 {
  width: 100%;
  float: left;
  margin-top: 15px;
  margin-right: 0%;
  margin-left: 0%;
}
.page10_box3 h3 {
  width: 100%;
  float: left;
  font-size: 1.8rem;
}
.page10_box3 div {
  width: 100%;
  margin-top: 10px;
  float: left;
}
.page10_box4 {
  width: 100%;
  float: left;
  margin-top: 50px;
  text-align: center;
}
.page10_box5 {
    width: 100%;
    float: left;
    margin-top: 50px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
}
#foot {
  width: 50%;
  float: left;
  position: relative;
  z-index: 20;
  text-align: center;
  background: linear-gradient(180deg, rgb(240, 240, 240), rgb(240, 240, 240));
  padding-right: 25%;
  padding-left: 25%;
  padding-bottom: 50px;
}
#foot a {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #E83B3E;
}
  .des1 {
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #E83B3E;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 2rem;
  }
  .des2_2 {
    width: 80%;
    display: inline-block;
    position: relative;
    z-index: 10;
  }
  .pc {
    display: none !important;
  }
  .sm {
    display: inline !important;
  }
}