@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
img {
  width: 100%;
  vertical-align: bottom;
}
html {
  scroll-behavior: smooth;
}
/* フォント貼り付け用 */
* {
  font-family: "Noto Serif JP", serif;
}
/* ☆☆ここからヘッダー */

/* 〇〇ここからヘッダーのグランドナブ */
h1 {
  color: #636161;
  font-size: 2vw;
  margin: 1vw 0 0 2vw;
}
.ground-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(rgb(198, 135, 0), rgb(255, 238, 107));
  width: 100vw;
  height: 5vw;
  position: fixed;
  top: 0;
  z-index: 10;
}
.ground-nav-header-logo {
  display: flex;
  img {
    width: 4vw;
    margin-left: 3vw;
  }
}
.ground-nav ul {
  display: flex;
  justify-content: center;
  gap: 4vw;
  margin-right: 5vw;
}
.ground-nav ul li {
  font-size: 1.6vw;
  margin-top: 1vw;
}
.ground-nav ul li a {
  color: #fff;
}
/* スクロールでナブ消える */
#nav-fixde {
  z-index: 30;
  opacity: 10;
  transition: 0.9s;
}
#nav-fixde.on {
  pointer-events: none;
  opacity: 0;
  transform: translateY(0vw);
}
/* 〇ここまでグランドナブ */
/* ハンバーガーメニュー */
.ham {
  width: 28px;
  position: fixed;
  z-index: 999;
  margin-top: 10px;
  /* background-color: rgb(0, 0, 0); */
  top: 10px;
  right: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.ham span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: rgb(76, 76, 74);
}
.ham span:not(:last-child) {
  margin-bottom: 7px;
}
.ham,
.ham span {
  transition: all 0.8s;
}
/* ハンバーガークリック後 */
.ham.is-active {
  right: 2px;
}
.ham.is-active span:nth-child(2) {
  width: 0;
}
.ham.is-active span:nth-child(1) {
  transform: rotate(45deg) translateY(14px);
}
.ham.is-active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-14px);
}
/* ハンバーガークリック前のメニュー */
.sp-gnav {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgb(255, 158, 1), rgb(244, 220, 45));
  /* background-image: url(../img/navimenu-sp-bg.jpg); */
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  gap: 2vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s;
  z-index: 11;
  li {
    padding: 17px 0;
  }
}
.sp-gnav a {
  color: #000000;
  transition: 0.5s;
  font-size: 3vw;
}
/* ハンバーガークリック後のメニュー */
.sp-gnav.is-active {
  opacity: 0.9;
  pointer-events: auto;
}
.sp-gnav a:hover {
  color: #ff3300;
}
.pc-gnav {
  display: none;
}
/* モバイルの時のナブ消したり・・・ */
@media screen and (min-width: 800px) {
  .sp-gnav-container {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .ground-nav {
    display: none;
  }
}
/* ここまでハンバーガー */
/* ☆ここまでヘッダー */

/* ☆☆ここからメイン */
body {
  /* background-color: rgb(252, 242, 210); */
  background-image: url(../img/background-img2.png);
  background-attachment: fixed;
}
.wrap {
  background-color: #fff;
  margin: 0 auto;
  width: 75vw;
}
/* 〇〇ここからヒーロー画像 */
.hero-img img {
  width: 75vw;
  margin: 6vw 0 2vw 0;
}
/* 〇ここまでヒーロー画像 */
/* 〇〇ここからセクション１ */
.section1 {
  margin-bottom: 5vw;
}
/* 〇〇ここからセクション１の上の(テキストの)部分 */
.section1-above .text1 {
  font-size: 1.2vw;
  font-weight: 100;
  text-align: left;
  line-height: 1.9;
}

.section1-above {
  width: 70vw;
  margin: 0 auto;
}
/* 〇ここまでセクション１の上の(テキストの)部分 */

/* 〇〇ここからセクション１.５の部分 */
.section1-5 {
  margin-right: 1vw;
}
.section-big-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 3vw;
}
.yokosen {
  width: 25vw;
  height: 0.2vw;
  background-color: brown;
}
.section3-above-item {
  width: 23vw;
  height: 18vw;
  border: 0.3vw solid rgb(193, 136, 50);
  border-radius: 1vw;
  img {
    display: block;
    width: 20vw;
    height: 10vw;
    margin: 1vw auto;
    border-radius: 1vw;
  }
  p {
    font-size: 1.2vw;
    text-align: center;
  }
  margin: 2vw auto;
}
/* .section1-under {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */
/* 〇〇ここからセクション１の下の左の部分 */
.section1-under-left {
  width: 25vw;
  border: 3px solid #8a8787;
  margin: 5vw 0 5vw 0vw;
}
.section1-under-left h2 {
  font-size: 1.4vw;
  margin-bottom: 2vw;
  text-align: center;
}
.section1-under-left ul li {
  line-height: 2;
}
.section1-under-left ul li a {
  color: #000000;
  font-size: 1.1vw;
}
.section1-under-left-textarea {
  margin: 1vw 1vw 1vw 1vw;
}
/* 〇ここまでセクション１の下の左の部分 */

/* 〇〇ここからセクション１の下の右の部分 */
.section1-under-right {
  width: 25vw;
}
.section1-under-right-banner {
  width: 25vw;
  height: fit-content;
  background-color: rgb(235, 177, 40);
  text-align: center;
  margin: 2vw 0;
}
/* ここまでセクション１の下の右の部分 */
/* 〇ここまでセクション１.５の部分 */
/* ここからセクション１～１.５のSP */
@media screen and (max-width: 800px) {
  .hero-img img {
    margin-top: 0;
  }
  .section1-above .text1 {
    font-size: 1.9vw;
    font-weight: 100;
    text-align: left;
    line-height: 1.7;
    margin: 1.7vw;
  }
  .section-big-container {
    display: block;
    flex-direction: row-reverse;
    gap: 3vw;
  }
  .section1-under-left {
    width: 60vw;
    border: 3px solid #8a8787;
    margin: 5vw auto 5vw;
  }
  .section1-under-left h2 {
    font-size: 2.8vw;
    text-align: center;
    margin-bottom: 1vw;
  }
  .section1-under-left ul li {
    line-height: 1.7;
  }
  .section1-under-left ul li a {
    color: #000000;
    font-size: 2.3vw;
  }
  .section1-under-left-textarea {
    margin: 1vw 1vw 1vw 1vw;
  }
  .section1-under-right {
    display: none;
  }
}
/* ここまでセクション１～１.５のSP */
/* 〇ここまでセクション１ */

/* 〇〇ここからセクション２ */
.section2 {
  margin-bottom: 0vw;
}

/* 〇〇ここからセクション２の上の部分 */
.section2-theme {
  font-size: 2.5vw;
  width: 45vw;
  border-bottom: solid 0.6vw brown;
  margin: 0 auto 3vw;
}
/* 〇ここまでセクション２の上の部分 */
/* 〇〇ここからセクション２の下の部分 */
/* .section2-under {
  display: flex;
  width: 70vw;
  margin: 2vw auto 8vw;
} */
.section2-left-image img {
  display: block;
  width: fit-content;
  height: 22vw;
  object-fit: cover;
  margin: 0 auto 2vw;
}
.section2-right {
  width: 45vw;
  margin-bottom: 7vw;
}
.section2-right-text1 {
  font-size: 2vw;
  border-bottom: solid 0.2vw brown;
}
.section2-right-text2 {
  text-align: right;
  font-size: 1.1vw;
  margin-bottom: 1vw;
}
.section2-right-text3 {
  font-size: 1vw;
  margin-bottom: 2vw;
}
.section2-right-link-btn {
  display: flex;
  justify-content: center;
  gap: 3vw;
  a {
    display: block;
    background-color: rgb(232, 170, 13);
    color: #fff;
    width: 10vw;
    height: 3vw;
    border-radius: 1vw;
    font-size: 1.1vw;
    font-family: sans-serif;
    text-align: center;
    padding-top: 0.8vw;
    transition: 0.3s;
  }
  a:hover {
    font-weight: bold;
    color: rgb(250, 168, 61);
    background-color: #f3e6cf;
  }
}
/* ここまでセクション２の下の部分 */
/* ここからセクション２のSP */
@media screen and (max-width: 800px) {
  .section2-theme {
    font-size: 3.5vw;
    width: 70vw;
    border-bottom: solid 0.6vw brown;
    margin: 0 auto 3vw;
  }
  .section2-left-image img {
    display: block;
    width: 65vw;
    height: 60vw;
    object-fit: cover;
    margin: 2vw auto 2vw;
  }
  .section2-right {
    width: 70vw;
    margin: 0 auto 7vw;
  }
  .section2-right-text1 {
    font-size: 3vw;
    border-bottom: solid 0.3vw brown;
  }
  .section2-right-text2 {
    text-align: right;
    font-size: 2vw;
    margin-bottom: 1vw;
  }
  .section2-right-text3 {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }
  .section2-right-link-btn {
    display: flex;
    justify-content: center;
    gap: 7vw;
    a {
      display: block;
      background-color: rgb(232, 170, 13);
      color: #fff;
      width: 20vw;
      height: 5.5vw;
      border-radius: 1vw;
      font-size: 2vw;
      text-align: center;
      padding-top: 1.3vw;
    }
  }
}
/* ここまでセクション２のSP */
/* 〇ここまでセクション２ */

/* 〇〇ここからセクション３ */
/* 〇〇ここからセクション３の上の部分 */
.section3 {
  display: none;
}
/* 〇ここまでセクション３の下の部分 */
/* ここからセクション３のSP */
@media screen and (max-width: 800px) {
  .section3 {
    display: block;
  }
  .section3-title {
    width: 70vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    p {
      font-size: 3vw;
      font-weight: bold;
    }
  }
  .yokosen {
    width: 55vw;
    height: 0.5vw;
    background-color: brown;
  }
  .section3-above-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    width: 65vw;
    height: 18vw;
    border: 0.3vw solid rgb(193, 136, 50);
    border-radius: 1vw;
    img {
      display: block;
      width: 36vw;
      height: 15vw;
      margin: 0;
    }
    p {
      font-size: 1.7vw;
      text-align: center;
    }
    margin: 3vw auto;
  }

  /* 〇ここまでセクション３の上の部分 */
  /* 〇〇ここからセクション３の下の部分 */
  .section3-under {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1vw;
    padding: 0 0 3vw 0;
  }
  .section3-under-right-banner {
    width: 32vw;
  }
}
/* ここまでセクション３のSP */
/* 〇ここまでセクション３ */
/* トップへ戻るボタン */
#top-fixde {
  position: fixed;
  bottom: 10vh;
  right: 1vw;
  visibility: hidden;
  transition: 0.9s;
  opacity: 0;
  z-index: 30;
  text-align: center;
  transform: translateY(5vw);
  a {
    display: block;
    img {
      width: 10vw;
    }
  }
}
#top-fixde.on {
  visibility: inherit;
  opacity: 0.9;
  transform: translateY(0vw);
}
@media screen and (max-width: 800px) {
  #top-fixde.on {
    visibility: hidden;
    opacity: 0.9;
    transform: translateY(0vw);
  }
}
/* ☆ここまでメイン */
/* 〇〇ここからフッター */
footer {
  height: 20vw;
  background-color: rgb(238, 171, 83);
  h2 {
    font-size: 2vw;
    text-align: center;
    color: #fff;
    padding: 1.5vw 0;
  }
  p {
    color: #fff;
    font-size: 0.8vw;
  }
  a {
    color: #fff;
  }
  hr {
    border: none; /*水平線の境界線を消す*/
    border-top-style: dotted; /*線の種類*/
    border-top-width: 2px; /*線の太さ*/
    border-top-color: #ffffff; /*線の色*/
    width: 10vw;
    margin-bottom: 1vw;
  }
  .footer-container {
    display: flex;
    gap: 7vw;
    margin: 0 0 4vw 24vw;
  }
  .date {
    margin-left: 5vw;
  }
  .copy {
    margin-top: 1vw;
    text-align: center;
  }
}

/* 〇ここまでフッター */
