@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

#g-nav {
  position: fixed;
  z-index: 900;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  background-color: #FFFFFF;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive {
  /*ナビの数が増えた場合縦スクロール*/
  display: block;
  position: fixed;
  z-index: 999;
  width: 33%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
}
@media screen and (max-width: 884px) {
  #g-nav.panelactive {
    width: 100%;
  }
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 50%;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 1300px) {
  #g-nav ul {
    top: 55%;
  }
}
@media screen and (max-width: 884px) {
  #g-nav ul {
    width: auto;
    transform: translate(0%, -50%);
    top: 45%;
  }
}
@media screen and (max-width: 480px) {
  #g-nav ul {
    transform: translate(-10%, -50%);
    top: 50%;
  }
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  text-decoration: none;
  padding: 50px 0 20px;
  display: block;
  text-transform: uppercase;
  color: #333333;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  #g-nav li a {
    padding: 30px 0 10px;
  }
}
@media screen and (max-width: 884px) {
  #g-nav li a {
    padding: 40px 0 10px;
  }
}
@media screen and (max-width: 320px) {
  #g-nav li a {
    padding: 10px 0;
  }
}
#g-nav li a:hover {
  color: #46573F;
  border-bottom: 1px solid #FFFFFF;
}

#g-nav .cart {
  width: 10%;
  padding: 50px 0 0;
}
@media screen and (max-width: 884px) {
  #g-nav .cart {
    width: 40%;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 22px;
  left: 30px;
  z-index: 9999;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #333333;
}
@media screen and (max-width: 480px) {
  .openbtn {
    width: 55px;
    height: 55px;
    left: 15px;
  }
}
.openbtn span {
  display: inline-block;
  background-color: #333333;
  transition: all 0.4s;
  position: absolute;
  height: 1px;
  left: 16px;
}
@media screen and (max-width: 480px) {
  .openbtn span {
    left: 13px;
  }
}
.openbtn span:nth-of-type(1) {
  top: 30px;
  width: 51%;
}
@media screen and (max-width: 480px) {
  .openbtn span:nth-of-type(1) {
    top: 20px;
    width: 47%;
  }
}
.openbtn span:nth-of-type(2) {
  top: 45px;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .openbtn span:nth-of-type(2) {
    top: 33px;
    width: 57%;
  }
}

.openbtn.active span:nth-of-type(1) {
  top: 32px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
@media screen and (max-width: 480px) {
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 13px;
  }
}

.openbtn.active span:nth-of-type(2) {
  top: 44px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
@media screen and (max-width: 480px) {
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 13px;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

#kv {
  height: 100vh;
  background-image: url(../img/kv.png);
}
#kv h1 {
  font-family: "ab-yoshienoryokan-db", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  font-size: 64px;
  display: inline-block;
  margin: 10vh 0 0 50%;
}
@media screen and (max-width: 1425px) {
  #kv h1 {
    margin: 8vh 0 0 43vw;
  }
}
@media screen and (max-width: 1300px) {
  #kv h1 {
    margin: 17vh 0 0 18vw;
  }
}
@media screen and (max-width: 884px) {
  #kv h1 {
    margin: 12vw auto;
    display: block;
    text-align: center;
    line-height: 1.3;
    font-size: 58px;
  }
}
@media screen and (max-width: 480px) {
  #kv h1 {
    margin: 4vw auto;
    font-size: 30px;
    padding-top: 5em;
    line-height: 2;
    font-size: 27px;
  }
}

#story {
  background-image: url(../img/corridor-bg.png);
}
@media screen and (max-width: 884px) {
  #story {
    background-position: bottom;
  }
}

.story_box1 {
  background-color: #FFFFFF;
  padding: 115px 60px 155px;
  width: 55%;
  margin-left: 6%;
}
@media screen and (max-width: 884px) {
  .story_box1 {
    padding: 50px 60px 80px;
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .story_box1 {
    padding: 50px 25px 50px 30px;
    width: 90%;
    margin-left: 0;
  }
}
.story_box1 h2 {
  font-family: "Lato", sans-serif;
  font-size: 22px;
}

.story_box2 {
  background-color: #FFFFFF;
  padding: 95px 150px 100px 70px;
  width: 56%;
  margin: 357px auto 0;
  margin-right: 0;
}
@media screen and (max-width: 884px) {
  .story_box2 {
    width: 85%;
    padding: 98px 71px 60px 70px;
  }
}
@media screen and (max-width: 480px) {
  .story_box2 {
    padding: 70px 25px 70px 25px;
    width: 90%;
    margin-top: 200px;
  }
}

.sub {
  font-family: "kinuta-maruminyoshino-stdn", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .sub {
    padding: 30px 0 35px;
  }
}
.sub span {
  font-family: "ab-yoshienoryokan-db", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-left: 20px;
}

#challenge {
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  #challenge {
    margin-top: 0;
  }
}

.challenge_box1 {
  display: flex;
}
@media screen and (max-width: 884px) {
  .challenge_box1 {
    flex-direction: column-reverse;
  }
}

.fourchallenge {
  padding-left: 6%;
  padding-right: 8%;
  width: 50%;
}
@media screen and (max-width: 884px) {
  .fourchallenge {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .fourchallenge {
    padding-right: 5%;
    padding-left: 5%;
  }
}

.challenge_box2 {
  display: flex;
  justify-content: space-around;
  margin-top: 150px;
}
@media screen and (max-width: 884px) {
  .challenge_box2 {
    margin: 110px 5%;
    flex-wrap: wrap;
    gap: 50px 0;
  }
}
@media screen and (max-width: 480px) {
  .challenge_box2 {
    margin-top: 85px;
  }
}
.challenge_box2 .c_point {
  width: 25%;
  margin: 0 2%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (max-width: 884px) {
  .challenge_box2 .c_point {
    width: 45%;
  }
}
@media screen and (max-width: 480px) {
  .challenge_box2 .c_point {
    width: 100%;
  }
}
.challenge_box2 h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}

.line {
  height: 250px;
  width: 1px;
  background-color: #ECECEC;
}
@media screen and (max-width: 480px) {
  .line {
    display: none;
  }
}

@media screen and (max-width: 884px) {
  .line2 {
    display: none;
  }
}

.challenge_box3 {
  width: 25%;
  margin: 10% auto 0;
}
@media screen and (max-width: 1300px) {
  .challenge_box3 {
    width: 33%;
  }
}
@media screen and (max-width: 884px) {
  .challenge_box3 {
    width: 45%;
  }
}
@media screen and (max-width: 480px) {
  .challenge_box3 {
    width: 70%;
    margin-top: 21%;
  }
}
.challenge_box3 .arrow {
  width: 10%;
  margin: 20% auto;
}

.challenge_box4 {
  text-align: center;
  padding: 0 10%;
}
@media screen and (max-width: 884px) {
  .challenge_box4 {
    padding: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .challenge_box4 {
    padding: 0 3%;
  }
}
.challenge_box4 h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 35px;
}

.challenge_box5 {
  width: 65%;
  margin: 5% auto !important;
}
@media screen and (max-width: 884px) {
  .challenge_box5 {
    width: 100%;
  }
}

#top-business {
  background-image: url(../img/traditional-bg.png);
  background-size: auto;
  padding-top: 6%;
  padding-bottom: 39%;
}
#top-business .story_box1 {
  margin-left: auto;
  width: 60%;
  padding: 80px 105px 56px 140px;
}
@media screen and (max-width: 884px) {
  #top-business .story_box1 {
    margin-top: 10%;
    width: 80%;
    padding: 80px 70px 56px 70px;
  }
}
@media screen and (max-width: 480px) {
  #top-business .story_box1 {
    margin-top: 18%;
    width: 90%;
    padding: 50px 25px 30px;
  }
}

#top-product {
  margin-top: 10%;
  margin-bottom: 10%;
}
@media screen and (max-width: 480px) {
  #top-product {
    margin: 10% 5% 20%;
  }
}

.top-product_box01 {
  width: 29%;
  margin-top: 100px;
  margin-left: 2%;
}
.top-product_box02 {
  margin-top: -200px;
}
@media screen and (max-width: 480px) {
  .top-product_box02 {
    margin-top: -88px;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

#business {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  #business {
    padding-top: 35px;
  }
}
#business h2 {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-style: normal;
}
@media screen and (max-width: 480px) {
  #business h2 {
    text-align: center;
  }
}
#business h2 span {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
}
#business .pc_nav {
  display: flex;
  justify-content: space-between;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  #business .pc_nav {
    justify-content: center;
  }
}
#business .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  #business .pc_nav nav {
    display: none;
  }
}
#business h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  #business h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
#business .story_box1 {
  padding-left: 0;
}
@media screen and (max-width: 480px) {
  #business .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.bussiness_top {
  margin-right: 13rem;
}
@media screen and (max-width: 884px) {
  .bussiness_top {
    margin-right: 0;
    margin-left: 6rem;
  }
}
@media screen and (max-width: 480px) {
  .bussiness_top {
    margin-left: 3rem;
  }
}

.b-t {
  width: 60%;
  margin: 0 0 150px auto;
}
@media screen and (max-width: 884px) {
  .b-t {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .b-t {
    width: 100%;
  }
}

.komidashi {
  font-size: 22px;
}
@media screen and (max-width: 884px) {
  .komidashi {
    text-align: center;
  }
}

.minpaku_box1 {
  display: flex;
  margin: 10em 0 11em;
  justify-content: space-between;
}
@media screen and (max-width: 884px) {
  .minpaku_box1 {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .minpaku_box1 {
    margin: 6rem auto;
  }
}

.minpaku_text {
  width: 50%;
  margin-right: 20em;
}
@media screen and (max-width: 1300px) {
  .minpaku_text {
    width: 55%;
    margin-right: 10rem;
  }
}
@media screen and (max-width: 884px) {
  .minpaku_text {
    width: 80%;
    margin: 2rem auto 0;
  }
}
@media screen and (max-width: 480px) {
  .minpaku_text {
    width: 90%;
    margin: 2rem auto 0;
  }
}

#minpaku .challenge_box2 {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13rem;
}
@media screen and (max-width: 884px) {
  #minpaku .challenge_box2 {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  #minpaku .challenge_box2 {
    margin-bottom: 7rem;
  }
}
@media screen and (max-width: 480px) {
  #minpaku .challenge_box2 .c_point {
    width: 85%;
  }
}

.arrow2 {
  transform: rotate(270deg);
}
@media screen and (max-width: 884px) {
  .arrow2 {
    transform: rotate(360deg);
    margin: 2rem 0;
  }
}
@media screen and (max-width: 480px) {
  .arrow2 {
    margin: 0;
  }
}

.b-a_text {
  display: flex;
  justify-content: space-between;
  margin: 13rem auto 10rem;
}
@media screen and (max-width: 480px) {
  .b-a_text {
    margin: 8rem auto 4.5rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .b-a_text .title {
    margin-left: 8%;
  }
}
.b-a_text p {
  width: 60%;
}
@media screen and (max-width: 884px) {
  .b-a_text p {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .b-a_text p {
    width: 90%;
    margin: 2rem auto 0;
  }
}

.b-a_box {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 480px) {
  .b-a_box {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.b-a_box_detail {
  width: 45%;
}
@media screen and (max-width: 884px) {
  .b-a_box_detail {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .b-a_box_detail {
    width: 80%;
    margin: 0 auto 1rem;
  }
}
.b-a_box .sub {
  font-size: 22px;
  padding-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .b-a_box .sub {
    font-size: 20px;
  }
}
.b-a_box .sub span {
  font-size: 16px;
}

#j-p {
  padding: 10rem 0;
}
@media screen and (max-width: 480px) {
  #j-p {
    padding: 6rem 0 2rem;
  }
}
#j-p .title {
  text-align: center;
}
@media screen and (max-width: 480px) {
  #j-p .b-a_box {
    margin-bottom: 0;
  }
}

.j-p_text {
  margin: 3rem auto 10rem;
  width: 70%;
}
@media screen and (max-width: 480px) {
  .j-p_text {
    margin: 2rem auto 6rem;
    width: 90%;
  }
}

#other-business {
  background-image: url(../img/b-m.png);
  background-size: cover;
  padding-bottom: 20rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1300px) {
  #other-business {
    padding-bottom: 9rem;
  }
}
@media screen and (max-width: 884px) {
  #other-business {
    background-position: bottom;
  }
}
@media screen and (max-width: 480px) {
  #other-business {
    padding-bottom: 3rem;
  }
}

.nagamori1 {
  margin-right: 3%;
}
@media screen and (max-width: 480px) {
  .nagamori1 {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .nagamori1, .nagamori2 {
    width: 85%;
    margin: 0 auto 1.5rem;
  }
}

.other-business {
  background-color: #FFFFFF;
  padding: 115px 175px 190px 0;
  width: 55%;
  margin-left: 6%;
  margin-bottom: 12rem;
}
@media screen and (max-width: 1300px) {
  .other-business {
    padding: 115px 115px 100px 0;
  }
}
@media screen and (max-width: 884px) {
  .other-business {
    padding: 50px 60px 80px;
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .other-business {
    padding: 50px 25px 50px 25px;
    width: 88%;
    margin-left: 0;
  }
}
.other-business h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 480px) {
  .other-business h2 {
    margin-bottom: 2rem;
  }
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 5px; /*スライド左右の余白調整*/
}

.before_after_slider {
  position: relative;
  overflow: hidden;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

.box_before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000;
}

.box_before img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.box_before::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  right: -25px;
  bottom: 0;
  width: 45px;
  height: 45px;
  margin: auto;
  border: 5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 10px 0 15px -13px #000;
}

.slider_range {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: col-resize;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.topics_text {
  padding: 115px 60px 55px;
}

.topics_title {
  padding-top: 4%;
}
@media screen and (max-width: 1300px) {
  .topics_title {
    padding-top: 2%;
  }
}

.topic_text01 {
  border-top: 1px solid #ECECEC;
  padding: 8% 0;
}
@media screen and (max-width: 480px) {
  .topic_text01 {
    padding: 10% 0 15%;
  }
}

.topic_text02 {
  padding: 8% 0;
}
@media screen and (max-width: 884px) {
  .topic_text02 {
    padding-bottom: 15%;
  }
}
@media screen and (max-width: 480px) {
  .topic_text02 {
    padding: 15% 0 20%;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.c-t-t {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  display: inline-block;
  padding: 5rem 3rem 1rem 0;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 2rem;
}
@media screen and (max-width: 884px) {
  .c-t-t {
    font-size: 20px;
  }
}

.c-t-box {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
@media screen and (max-width: 480px) {
  .c-t-box {
    flex-direction: column;
    margin: 0;
  }
}
.c-t-box .number {
  display: flex;
  justify-content: left;
  padding: 10px;
  width: 30%;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .c-t-box .number {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .c-t-box .number {
    width: 100%;
    font-size: 32px;
  }
}
.c-t-box .number img {
  width: 25px;
  height: 25px;
  margin-right: 1rem;
}
.c-t-box .contact_detail {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.contact_tel {
  padding-top: 7rem;
}
@media screen and (max-width: 884px) {
  .contact_tel {
    padding-top: 0;
  }
}

.contact_mail {
  margin-bottom: 12rem;
  padding-top: 5rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 480px) {
  .contact_mail {
    padding-top: 0;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
  }
}

.mail-form {
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 480px) {
  .mail-form {
    flex-direction: column;
    margin-bottom: 3rem;
    margin-top: 5rem;
  }
}

form {
  width: 50%;
}
@media screen and (max-width: 480px) {
  form {
    width: 90%;
  }
}
form tr {
  width: 70%;
  display: flex;
  flex-direction: column;
  padding: 3% 0;
}
@media screen and (max-width: 884px) {
  form tr {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  form tr {
    width: 100%;
    margin: 0 auto;
  }
}
form th {
  width: 70%;
  font-weight: normal;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin-bottom: 2%;
}
@media screen and (max-width: 884px) {
  form th {
    width: 80%;
  }
}
form td {
  width: 100%;
  border-bottom: 1px solid #ECECEC;
}
form input {
  height: 40px;
  width: 100%;
}
form textarea {
  width: 100%;
}

.submitbtn {
  width: 20%;
  margin-top: 200px;
  padding: 2%;
  border: 1px solid #ECECEC;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 884px) {
  .submitbtn {
    width: 50%;
    margin-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .submitbtn {
    margin: 80px auto 80px;
  }
}

.form_img {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .form_img {
    width: 60%;
    margin-left: auto;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.product_box {
  width: 100%;
  padding: 7rem 0;
}
@media screen and (max-width: 1300px) {
  .product_box {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 884px) {
  .product_box {
    padding: 2rem 0 7rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .product_box {
    width: 85%;
  }
}

#product h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #46573F;
  font-size: 36px;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  #product h2 {
    font-size: 30px;
  }
}
#product h2::before {
  content: "";
  background-image: url(../img/chair01.png);
  width: 45px;
  height: 65px;
  position: absolute;
  left: -35%;
}
#product h2::after {
  content: "";
  background-image: url(../img/table01.png);
  width: 40px;
  height: 48px;
  position: absolute;
  right: -35%;
  top: 18%;
}

.product_list {
  padding: 5rem 0 7rem;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 480px) {
  .product_list {
    padding: 3rem 0 5rem;
  }
}
.product_list .product_item {
  width: 40%;
}
@media screen and (max-width: 884px) {
  .product_list .product_item {
    width: 80%;
  }
}

.p_title {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 20px;
  padding: 3% 0 0;
}
@media screen and (max-width: 480px) {
  .p_title {
    font-size: 16px;
  }
}

.price {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .price {
    font-size: 16px;
  }
}

.product_detail-top {
  height: 85vh;
}
@media screen and (max-width: 884px) {
  .product_detail-top {
    height: 68vh;
  }
}
@media screen and (max-width: 480px) {
  .product_detail-top {
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .product_detail-top .sub_top_img {
    display: none !important;
  }
}

#product_detail {
  display: flex;
  justify-content: space-around;
  padding: 10rem 0;
}
@media screen and (max-width: 884px) {
  #product_detail {
    padding: 10rem 0 5rem;
  }
}
@media screen and (max-width: 480px) {
  #product_detail {
    flex-direction: column;
    padding: 0rem 0 3rem;
  }
}
#product_detail .p_title {
  font-size: 24px;
}
#product_detail .price {
  padding: 3% 0;
}
#product_detail .product_detail_box {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.product_detail_contents {
  width: 50%;
}
@media screen and (max-width: 884px) {
  .product_detail_contents {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .product_detail_contents {
    width: 85%;
    margin: 0 auto;
  }
}

.product_detail_txt {
  width: 40%;
}
@media screen and (max-width: 884px) {
  .product_detail_txt {
    width: 85%;
    margin: 2rem auto;
  }
}

.cartjs_box table {
  margin-left: 0 !important;
}

.cartjs_cart_in {
  text-align: left !important;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

.life .sub_top {
  padding-top: 130px;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1300px) {
  .life .sub_top {
    padding-top: 40px;
  }
}
@media screen and (max-width: 884px) {
  .life .sub_top {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 884px) {
  .life .sub_top_img {
    width: 85%;
  }
}
.life .sub-title {
  margin-left: 255px;
}
@media screen and (max-width: 884px) {
  .life .sub-title {
    margin-left: 170px;
  }
}
@media screen and (max-width: 480px) {
  .life .sub-title {
    margin: 0 auto;
  }
}
.life .sub-title::before {
  top: -318%;
}
@media screen and (max-width: 480px) {
  .life .sub-title::before {
    top: -256%;
    left: 20%;
  }
}
.life .sub-title::after {
  left: -135% !important;
}
@media screen and (max-width: 1700px) {
  .life .sub-title::after {
    left: -130% !important;
  }
}
@media screen and (max-width: 480px) {
  .life .sub-title::after {
    left: -75% !important;
  }
}

.sub_top_text {
  width: 60%;
  font-size: 42px;
  padding-left: 7%;
  padding-bottom: 6%;
}
@media screen and (max-width: 884px) {
  .sub_top_text {
    width: 90%;
    font-size: 32px;
    padding-left: 30%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_text {
    padding-left: 0;
    margin: 0 auto;
    font-size: 20px;
    padding-top: 5rem;
    display: flex;
    justify-content: center;
  }
}

#life h2 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  text-align: center;
  font-size: 24px;
  margin-top: 7rem;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  #life h2 {
    margin-top: 5rem;
    margin-bottom: 1rem;
  }
}
#life h2 span {
  font-family: "ab-yoshienoryokan-db", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  #life h2 span {
    font-size: 14px;
  }
}
#life .life_box {
  width: 72%;
  margin: 0 auto;
  padding: 3% 0;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #life .life_box {
    width: 90%;
    text-align: left;
  }
}
#life .life_detail_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5rem 0;
}
@media screen and (max-width: 884px) {
  #life .life_detail_box {
    flex-direction: column;
  }
}
#life .life_detail_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  #life .life_detail_img {
    width: 50%;
  }
}
@media screen and (max-width: 884px) {
  #life .life_detail_img {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  #life .life_detail_img {
    width: 90%;
  }
}
#life .life_detail_img img {
  height: 490px;
}
@media screen and (max-width: 1300px) {
  #life .life_detail_img img {
    height: 395px;
  }
}
@media screen and (max-width: 884px) {
  #life .life_detail_img img {
    height: auto;
  }
}
#life .life_detail_text {
  width: 35%;
  height: 490px;
  background-color: #afb4ac;
  padding: 5% 3%;
}
@media screen and (max-width: 1300px) {
  #life .life_detail_text {
    width: 45%;
    height: 395px;
  }
}
@media screen and (max-width: 884px) {
  #life .life_detail_text {
    width: 85%;
    margin: 0 auto;
    height: auto;
    padding: 8% 5%;
  }
}
@media screen and (max-width: 480px) {
  #life .life_detail_text {
    width: 90%;
    padding: 10% 7% 10%;
  }
}
@media screen and (max-width: 884px) {
  #life .life_detail_reverse {
    flex-direction: column-reverse;
  }
}

#beforeafter .b-a_text {
  justify-content: center;
  margin-bottom: 7rem;
}
@media screen and (max-width: 480px) {
  #beforeafter .b-a_text {
    margin-bottom: 4rem;
  }
}
#beforeafter h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #46573F;
  font-weight: bold;
}
#beforeafter .b-a_box {
  justify-content: space-between;
  margin-bottom: 7rem;
}
@media screen and (max-width: 884px) {
  #beforeafter .b-a_box {
    flex-direction: column;
  }
}
@media screen and (max-width: 884px) {
  #beforeafter .b-a_box_detail {
    width: 75%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  #beforeafter .b-a_box_detail {
    width: 80%;
  }
}
#beforeafter .b-a_box_detail_text {
  width: 47%;
}
@media screen and (max-width: 884px) {
  #beforeafter .b-a_box_detail_text {
    width: 75%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  #beforeafter .b-a_box_detail_text {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  #beforeafter .b-a_box .sub {
    text-align: center;
  }
}
#beforeafter .b-a_box .sub span {
  padding-left: 0;
}

.slider_b-a {
  margin: 10rem 0 15rem;
}
@media screen and (max-width: 884px) {
  .slider_b-a {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .slider_b-a {
    margin: 3rem 0 5rem;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

body {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 884px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1670px;
  margin: 0 auto;
}
@media screen and (max-width: 1670px) {
  .wrapper {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    margin: 0 3%;
  }
}

.inner {
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .inner {
    margin: 0 5%;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    margin: 0 3%;
  }
}

.inner2 {
  max-width: 1200px;
  margin: 0 0 0 5%;
}
@media screen and (max-width: 1300px) {
  .inner2 {
    margin: 0 6%;
  }
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  transform: scale(1, -1);
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 480px) {
  #page-top {
    right: 13px;
    bottom: 8px;
  }
}

/*上に上がる動き*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

.pc_nav ul {
  font-family: "Lato", sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: right;
  padding: 100px;
}
@media screen and (max-width: 1300px) {
  .pc_nav ul {
    padding: 40px 0 100px;
  }
}
.pc_nav ul li {
  padding: 0 20px;
}
.pc_nav ul li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .pc_nav ul li {
    padding: 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .pc_nav {
    display: none;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer .f-list {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: right;
  color: #333333;
  padding: 55px 0 60px;
}
@media screen and (max-width: 1300px) {
  .footer .f-list {
    padding: 40px 0 55px;
  }
}
@media screen and (max-width: 884px) {
  .footer .f-list {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer .f-list {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    padding: 50px 0 30px;
  }
}
.footer .f-list li {
  padding: 0 20px;
}
.footer .f-list li:hover {
  color: #46573F;
}
@media screen and (max-width: 480px) {
  .footer .f-list li {
    padding: 0 22px;
  }
}
.footer .f-list_sub {
  font-size: 14px;
  padding: 0 0 60px;
}
@media screen and (max-width: 884px) {
  .footer .f-list_sub {
    padding-bottom: 50px;
  }
}
.footer .adress {
  font-family: "Lato", sans-serif;
  display: block;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 50px;
}
.footer .copy {
  text-align: right;
  padding-bottom: 10px;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-right: 0;
}
.btn01::before {
  content: "+";
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  margin-left: 0;
  position: relative;
  z-index: 100;
}
.btn02::before {
  content: "+";
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  margin: 50px auto;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #333333;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato", sans-serif;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  max-width: 150px;
  margin-right: 0;
  margin-top: 200px;
}
@media screen and (max-width: 884px) {
  .btn03 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .btn03 {
    margin-top: 80px;
    width: 100px;
  }
}

.title {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 30px;
  }
}
.title .sub {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding: 50px 0 60px;
}
@media screen and (max-width: 480px) {
  .title .sub {
    padding: 45px 0 30px;
    font-size: 18px;
  }
}

.title-sub {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .title-sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 56px;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-left: 100px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sub-title {
    font-size: 45px;
    margin-left: 0;
    line-height: 0.8;
  }
}
.sub-title span {
  font-size: 18px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.sub-top {
  padding-top: 35px;
  background-image: url(../img/sub_kv.png);
}
@media screen and (max-width: 480px) {
  .sub-top {
    padding-top: 35px;
  }
}

.sub-top h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
  font-style: normal;
  color: #46573F;
  display: block;
  margin-left: 200px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1700px) {
  .sub-top h2 {
    margin-left: 145px;
    font-size: 48px;
  }
}
@media screen and (max-width: 884px) {
  .sub-top h2 {
    margin-left: 115px;
    margin-top: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    text-align: center;
    font-size: 42px;
    margin: 2rem auto 5rem;
  }
}
.sub-top h2 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sub-top .pc_nav {
  display: flex;
  justify-content: right;
  padding-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .sub-top .pc_nav {
    justify-content: center;
  }
}
.sub-top .pc_nav ul {
  color: #000000;
  padding: 15px 0 0 0;
}
@media screen and (max-width: 884px) {
  .sub-top .pc_nav nav {
    display: none;
  }
}
.sub-top h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .sub-top h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.sub-top .story_box1 {
  padding-left: 0;
  background: none;
}
@media screen and (max-width: 884px) {
  .sub-top .story_box1 {
    margin: 0 auto;
    padding: 8% 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sub-top .story_box1 {
    padding: 0;
    margin: 4rem auto;
    width: 85%;
  }
}

.sub_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 884px) {
  .sub_top {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 480px) {
  .sub_top {
    margin-top: 0;
  }
}
.sub_top_img {
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .sub_top_img {
    width: 55%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top_img {
    width: 75%;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_top_img {
    width: 88%;
    margin-bottom: 0;
  }
}
.sub_top .sub-title {
  position: relative;
}
.sub_top .sub-title::before {
  content: "";
  background-image: url(../img/light.png);
  position: absolute;
  width: 140px;
  height: 300px;
  top: -343%;
  left: 0;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light02.png);
    width: 101px;
    height: 215px;
    top: -305%;
    left: 7%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::before {
    top: -256%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::before {
    background-image: url(../img/light03.png);
    width: 67px;
    height: 140px;
    top: -250%;
    left: 28%;
  }
}
.sub_top .sub-title::after {
  content: "";
  background-image: url(../img/tree.png);
  position: absolute;
  width: 585px;
  height: 235px;
  top: -33%;
  left: -62%;
}
@media screen and (max-width: 1700px) {
  .sub_top .sub-title::after {
    width: 415px;
    height: 222px;
    top: -33%;
    left: -73%;
  }
}
@media screen and (max-width: 884px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree02.png);
    height: 160px;
    top: -14%;
    left: -54%;
  }
}
@media screen and (max-width: 480px) {
  .sub_top .sub-title::after {
    background-image: url(../img/tree03.png);
    width: 250px;
    height: 93px;
    top: 15%;
    left: -36%;
  }
}

.topic {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .topic {
    margin-top: 40px;
    margin-bottom: 45px;
  }
}
.topic li {
  border-top: 1px solid #ECECEC;
  padding: 8% 16%;
}
@media screen and (max-width: 480px) {
  .topic li {
    padding: 8% 3%;
  }
}
.topic li:last-child {
  border-bottom: 1px solid #ECECEC;
}
.topic .date {
  font-family: "Lato", sans-serif;
}
.topic .topic_title {
  font-weight: bold;
  margin: 15px 0;
}

#contact {
  margin-top: 10%;
}

.contact {
  display: flex;
}
@media screen and (max-width: 884px) {
  .contact {
    flex-direction: column;
  }
}
.contact_box01 {
  width: 58%;
  padding: 15% 6%;
  background-image: url(../img/back_img.png);
  color: #FFFFFF;
}
@media screen and (max-width: 884px) {
  .contact_box01 {
    width: 100%;
  }
}
.contact_box01 .sub {
  display: inline-block;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  font-size: 20px;
  padding: 50px 0 0;
}
@media screen and (max-width: 480px) {
  .contact_box01 .sub {
    font-size: 18px;
    padding: 6px 0 0;
  }
}
.contact_box01 .text {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .contact_box01 .text {
    margin-top: 35px;
  }
}
.contact_box02 {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 884px) {
  .contact_box02 {
    width: 100%;
  }
}
.contact_box02 .tel, .contact_box02 .mail {
  height: 50%;
  padding: 10% 5%;
  text-align: center;
  border-top: 1px solid #ECECEC;
}
@media screen and (max-width: 884px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 5%;
  }
}
@media screen and (max-width: 480px) {
  .contact_box02 .tel, .contact_box02 .mail {
    padding: 10% 5%;
  }
}
.contact_box02 .mail {
  border-bottom: 1px solid #ECECEC;
}
.contact_box02 .contact_contents {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents {
    width: 90%;
    margin: 15px auto;
  }
}
.contact_box02 .contact_contents a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact_box02 .contact_contents a img {
  margin: 0 auto;
  width: 8%;
  height: auto;
  margin-right: 10px;
}
.contact_box02 .contact_contents .number {
  font-size: 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .number {
    font-size: 30px;
  }
}
.contact_box02 .contact_contents .mailform {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .contact_box02 .contact_contents .mailform {
    font-size: 20px;
  }
}
.contact_box02 .contact_detail {
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 480px) {
  .contact_box02 .m-c {
    padding: 20px 10px;
  }
}

.tab2 {
  display: none;
}
@media screen and (max-width: 884px) {
  .tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab2 {
    display: none;
  }
}

/* 特商法 */
.tradelaw-top h2 span {
  font-size: 23px;
}

.trade-top .sub-title::after {
  left: -42%;
}
@media screen and (max-width: 884px) {
  .trade-top .sub-title::after {
    left: -30%;
  }
}
@media screen and (max-width: 480px) {
  .trade-top .sub-title::after {
    left: -14%;
  }
}

#tradelaw {
  padding-top: 8rem;
  width: fit-content;
  font-size: 1.3rem;
  margin: 0 auto 10vw;
  border-spacing: 20px 10px;
}
@media screen and (max-width: 1300px) {
  #tradelaw {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 884px) {
  #tradelaw {
    font-size: 1.1rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 480px) {
  #tradelaw {
    padding-top: 4rem;
    padding-bottom: 4rem;
    width: 90vw;
    font-size: 0.9rem;
    text-align: left;
    margin: 0 auto 10vw;
    border-spacing: 20px 10px;
  }
}
#tradelaw th {
  width: 15vw;
  padding: 2vw;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  #tradelaw th {
    width: 18vw;
    padding: 2vw;
    text-align: left;
  }
}
@media screen and (max-width: 884px) {
  #tradelaw th {
    width: 19vw;
    padding: 2vw;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  #tradelaw th {
    display: block;
    width: 80vw;
    padding: 2vw 1vw;
    text-align: left;
    font-size: 14px;
  }
}
#tradelaw td {
  width: 60vw;
  padding: 2vw;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  #tradelaw td {
    width: 60vw;
    padding: 2vw;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  #tradelaw td {
    display: block;
    width: 80vw;
    padding: 2vw;
    text-align: left;
    font-size: 14px;
  }
}

#privacy {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 884px) {
  #privacy {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  #privacy {
    padding-bottom: 4rem;
  }
}

#privacy_policy .ttls {
  text-align: center;
  margin: 5vw 0;
}
@media screen and (max-width: 480px) {
  #privacy_policy .ttls {
    margin: 20vw 0 10vw;
  }
}

#privacy h5 {
  font-size: 1.5rem;
  border-bottom: solid 1px #ccc;
  width: 100%;
  padding: 3vw 0;
}
@media screen and (max-width: 480px) {
  #privacy h5 {
    font-size: 18px;
    border-bottom: solid 1px #ccc;
    width: 100%;
    padding: 3vw 0;
  }
}

#privacy p {
  margin: 2vw 0;
}
@media screen and (max-width: 480px) {
  #privacy p {
    margin: 2vw 0;
    font-size: 12px;
  }
}

#privacy li {
  margin: 3vw 0;
}/*# sourceMappingURL=style.css.map */