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

h1, h2, h3, h4, p, a {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  vertical-align: top;
}

.Wrapper {
  padding: 80px 0;
}

@media screen and (max-width: 960px) {
  .Wrapper {
    padding: 0;
  }
}
.PcContents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f0f9f6;
}
.PcContents__left {
  position: absolute;
  top: 0;
  left: 3%;
  width: calc((90% - 430px) / 2);
  max-width: 400px;
}
.PcContents__left__logo {
  width: 100%;
  margin: 12% 0 16%;
}
.PcContents__left__logo a img {
  width: 45%;
  margin-bottom: 35px;
}
.PcContents__left__logo__title {
  width: 100%;
  margin-bottom: 30px;
}
.PcContents__left__logo__txt {
  width: 65%;
}
.PcContents__left__menu {
  margin-bottom: 50px;
}
@media screen and (max-width: 1650px) {
  .PcContents__left__menu {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1500px) {
  .PcContents__left__menu {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1300px) {
  .PcContents__left__menu {
    margin-bottom: 20px;
  }
}
.PcContents__left__menu li {
  margin-bottom: 12%;
}
.PcContents__left__menu li:last-child {
  margin-bottom: 0;
}
.PcContents__left__menu li a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  transition: 0.5s;
}
.PcContents__left__menu li a:hover {
  color: #006934;
}
.PcContents__left__menu li a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #006934;
  transform-origin: bottom right;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
.PcContents__left__menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.PcContents__left__sns {
  width: 65%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  column-gap: 20px;
}
.PcContents__left__sns img {
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .PcContents__left__sns {
    width: 65%;
  }
}
@media screen and (max-width: 1200px) {
  .PcContents__left__sns {
    width: 70%;
  }
}
@media screen and (max-width: 1100px) {
  .PcContents__left__sns {
    width: 80%;
  }
}
@media screen and (max-width: 1150px) {
  .PcContents__left__sns {
    width: 90%;
  }
}
.PcContents__right {
  transform: translateX(400px);
  opacity: 0;
  position: absolute;
  right: 1%;
  bottom: 20px;
  width: 350px;
  transition: 0.5s;
}
.PcContents__right__catalog {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 0;
  background-color: #3dab4a;
  border-radius: 16px;
  filter: drop-shadow(0 0 5px #ccc);
  text-align: center;
  transition: 0.3s;
}
.PcContents__right__catalog__txt {
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
}
.PcContents__right__catalog__txt:nth-of-type(1) {
  font-size: 18px;
}
.PcContents__right__catalog__txt:nth-of-type(2) {
  margin-bottom: 15px;
  font-size: 24px;
}
.PcContents__right__catalog__img {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.PcContents__right__catalog__img img {
  width: 60%;
  margin: 0 auto;
}
.PcContents__right__catalog__img__txt {
  position: absolute;
  top: 25%;
  left: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #3dab4a;
}
.PcContents__right__catalog__img::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 95px;
  transform: rotate(5deg);
  height: auto;
  aspect-ratio: 566/800;
  background: url(https://ssl.takasho.jp/catalog2/img/PR413000.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.PcContents__right__catalog__btn {
  box-sizing: border-box;
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 12px 0;
  background-color: #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #006934;
  filter: drop-shadow(0 0 5px #888);
}
.PcContents__right__catalog__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
  aspect-ratio: 100/136;
  background: url(../img/cv_btn_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.PcContents__right__catalog:hover {
  opacity: 0.8;
  transform: translateY(-20px);
}
.PcContents__right__lp {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 0;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 500;
  color: #fff;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
}
.PcContents__right__lp p {
  line-height: 1.5;
}
.PcContents__right__lp p:nth-of-type(1) {
  font-size: 14px;
}
.PcContents__right__lp p:nth-of-type(2) {
  font-size: 20px;
}
.PcContents__right__lp span {
  position: relative;
  z-index: 1;
}
.PcContents__right__lp::after {
  content: "";
  position: absolute;
  top: 42%;
  right: 8%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s;
}
.PcContents__right__lp::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: #fff;
  transition: transform 0.4s ease-in-out;
}
.PcContents__right__lp:hover::before {
  transform: translateX(0);
}
.PcContents__right__new {
  background: linear-gradient(to right, #008244, #89b829);
  margin-bottom: 4%;
}
.PcContents__right__new:hover {
  color: #006934;
  border: 1px solid #006934;
}
.PcContents__right__new:hover::after {
  border-top: 2px solid #006934;
  border-right: 2px solid #006934;
}
.PcContents__right__reform {
  background: linear-gradient(to right, #036eb8, #6da3d8);
}
.PcContents__right__reform:hover {
  color: #036eb8;
  border: 1px solid #036eb8;
}
.PcContents__right__reform:hover::after {
  border-top: 2px solid #036eb8;
  border-right: 2px solid #036eb8;
}
.PcContents .is-show {
  transform: translateX(0);
  opacity: 1;
}
.PcContents canvas {
  position: absolute; /*親のブロックを基準にして相対位置に配置する*/
  /*位置指定*/
  top: 0;
  right: 0;
  z-index: -1; /*重ね順を-1に　※1以上だとほかのコンテンツの上に被さってしまいます*/
}

@media screen and (max-width: 1500px) {
  .PcContents__left__logo {
    margin: 10% 0 12%;
  }
  .PcContents__left__logo a img {
    width: 40%;
    margin-bottom: 30px;
  }
  .PcContents__left__logo__title {
    width: 90%;
    margin-bottom: 25px;
  }
  .PcContents__left__logo__txt {
    width: 60%;
  }
  .PcContents__left__menu li {
    margin-bottom: 8%;
  }
  .PcContents__left__menu li a {
    font-size: 17px;
  }
  .PcContents__right {
    width: 300px;
  }
  .PcContents__right__catalog {
    margin-bottom: 15px;
  }
  .PcContents__right__catalog__txt:nth-of-type(1) {
    font-size: 16px;
  }
  .PcContents__right__catalog__txt:nth-of-type(2) {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .PcContents__right__catalog__img {
    margin-bottom: 20px;
  }
  .PcContents__right__catalog__img img {
    width: 60%;
  }
  .PcContents__right__catalog__img__txt {
    width: 90px;
    height: 90px;
    font-size: 10px;
    letter-spacing: -1px;
  }
  .PcContents__right__catalog__img::after {
    width: 85px;
  }
  .PcContents__right__catalog__btn {
    padding: 10px 0;
    font-size: 14px;
  }
  .PcContents__right__catalog__btn::after {
    width: 10px;
  }
  .PcContents__right__lp {
    padding: 12px 0;
  }
  .PcContents__right__lp p:nth-of-type(1) {
    font-size: 12px;
  }
  .PcContents__right__lp p:nth-of-type(2) {
    font-size: 18px;
  }
  .PcContents__right__lp::after {
    width: 10px;
    height: 10px;
  }
  .PcContents__right__new {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1300px) {
  .PcContents__left__logo {
    margin: 6% 0 10%;
  }
  .PcContents__left__logo a img {
    width: 35%;
    margin-bottom: 25px;
  }
  .PcContents__left__logo__title {
    width: 85%;
    margin-bottom: 20px;
  }
  .PcContents__left__logo__txt {
    width: 55%;
  }
  .PcContents__left__menu li {
    margin-bottom: 8%;
  }
  .PcContents__left__menu li a {
    font-size: 14px;
  }
  .PcContents__right {
    width: 250px;
  }
  .PcContents__right__catalog {
    border-radius: 12px;
  }
  .PcContents__right__catalog__txt:nth-of-type(1) {
    font-size: 14px;
  }
  .PcContents__right__catalog__txt:nth-of-type(2) {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .PcContents__right__catalog__img {
    margin-bottom: 20px;
  }
  .PcContents__right__catalog__img img {
    width: 70%;
  }
  .PcContents__right__catalog__img__txt {
    display: none;
  }
  .PcContents__right__catalog__img::after {
    width: 80px;
  }
  .PcContents__right__catalog__btn {
    width: 90%;
    padding: 12px 0;
    font-size: 14px;
  }
  .PcContents__right__catalog__btn::after {
    width: 12px;
  }
  .PcContents__right__lp {
    padding: 12px 0;
    border-radius: 16px;
  }
  .PcContents__right__lp p:nth-of-type(1) {
    font-size: 12px;
  }
  .PcContents__right__lp p:nth-of-type(2) {
    font-size: 16px;
  }
  .PcContents__right__lp::after {
    right: 6%;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 960px) {
  .PcContents {
    display: none;
  }
}
.Contents {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background-color: #fff;
  z-index: 10;
}
.Contents .fv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 25/24;
}
.Contents .fv__bg {
  position: relative;
  width: 100%;
}
.Contents .fv__bg img {
  position: absolute;
  width: 100%;
  display: block;
  z-index: 0;
  opacity: 0;
  object-fit: cover;
  top: 0;
  left: 0;
  -webkit-animation: fv_bg_anime 130s 0s infinite;
  animation: fv_bg_anime 30s 0s infinite;
}
.Contents .fv__bg img:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.Contents .fv__bg img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
.Contents .fv__bg img:nth-of-type(4) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}
.Contents .fv__bg img:nth-of-type(5) {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}
@keyframes fv_bg_anime {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fv_bg_anime {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
.Contents .fv__logo {
  position: absolute;
  top: 4%;
  left: 4%;
  width: 30%;
  z-index: 20;
  filter: drop-shadow(0 0 3px #ddd);
}
.Contents .fv__title {
  position: absolute;
  top: 20%;
  left: 4%;
  width: 64%;
  z-index: 20;
  filter: drop-shadow(0 0 5px #333);
}
.Contents .fv__txt {
  position: absolute;
  top: 36%;
  left: 4%;
  width: 45%;
  z-index: 20;
  filter: drop-shadow(0 0 5px #333);
}
.Contents .fv__menu {
  display: none;
}
@media screen and (max-width: 960px) {
  .Contents .fv__menu {
    display: block;
  }
  .Contents .fv__menu__nav {
    position: fixed;
    z-index: 9998;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100dvh;
    background: #fff;
    transition: all 0.6s;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px 0 0 20px;
  }
  .Contents .fv__menu__nav__top {
    height: 9dvh;
  }
  .Contents .fv__menu__nav__top img {
    width: 45%;
    max-width: 250px;
    padding: 4% 4% 0;
  }
  .Contents .fv__menu__nav__list {
    height: 43dvh;
  }
  .Contents .fv__menu__nav__list ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 92%;
    height: 85%;
    margin: 0 auto;
    padding-top: 4%;
  }
  .Contents .fv__menu__nav__list ul li {
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }
  .Contents .fv__menu__nav__list ul li a {
    width: fit-content;
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #006934;
    text-transform: uppercase;
  }
  .Contents .fv__menu__nav__catalog {
    width: 100%;
    height: 48dvh;
    background-color: #3dab4a;
    text-align: center;
  }
  .Contents .fv__menu__nav__catalog__box {
    padding: 4%;
  }
  .Contents .fv__menu__nav__catalog__box__container {
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 10px 0 20px;
  }
  .Contents .fv__menu__nav__catalog__box__container__txt {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
  }
  .Contents .fv__menu__nav__catalog__box__container__txt span {
    font-size: 14px;
  }
  .Contents .fv__menu__nav__catalog__box__container__img {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #666);
  }
  .Contents .fv__menu__nav__catalog__box__container__img img:nth-of-type(1) {
    width: 55%;
    padding-right: 15%;
    margin: 0 auto;
  }
  .Contents .fv__menu__nav__catalog__box__container__img img:nth-of-type(2) {
    position: absolute;
    top: 13%;
    right: 14%;
    width: 24%;
    transform: rotate(5deg);
  }
  .Contents .fv__menu__nav__catalog__box__container__btn {
    position: relative;
    width: 75%;
    margin: 0 auto;
    padding: 10px 0;
    background-color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #006934;
  }
  .Contents .fv__menu__nav__catalog__box__container__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    width: 12px;
    height: auto;
    aspect-ratio: 100/136;
    background: url(../img/cv_btn_arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Contents .fv__menu__nav.panelactive {
    right: 0;
  }
  .Contents .fv__menu__openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #3da74a;
    border-radius: 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  .Contents .fv__menu__openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    right: 22px;
    height: 4px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .Contents .fv__menu__openbtn span:nth-of-type(1) {
    top: 25px;
  }
  .Contents .fv__menu__openbtn span:nth-of-type(2) {
    top: 38px;
  }
  .Contents .fv__menu__openbtn span:nth-of-type(3) {
    top: 51px;
  }
  .Contents .fv__menu__openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 28px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .Contents .fv__menu__openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .Contents .fv__menu__openbtn.active span:nth-of-type(3) {
    top: 40px;
    left: 28px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
@media screen and (max-width: 520px) {
  .Contents .fv__menu__nav__list {
    height: 47dvh;
  }
  .Contents .fv__menu__nav__list ul {
    padding-top: 5%;
  }
  .Contents .fv__menu__nav__list ul li {
    width: 80%;
  }
  .Contents .fv__menu__nav__list ul li a {
    font-size: 16px;
  }
  .Contents .fv__menu__nav__catalog {
    height: 44dvh;
  }
  .Contents .fv__menu__nav__catalog__box {
    padding: 3%;
  }
  .Contents .fv__menu__nav__catalog__box__container {
    padding: 5px 0 15px;
  }
  .Contents .fv__menu__nav__catalog__box__container__txt {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .Contents .fv__menu__nav__catalog__box__container__txt span {
    font-size: 13px;
  }
  .Contents .fv__menu__nav__catalog__box__container__btn {
    width: 70%;
    padding: 10px 0;
    font-size: 12px;
  }
  .Contents .fv__menu__nav__catalog__box__container__btn::after {
    width: 10px;
  }
  .Contents .fv__menu__openbtn {
    width: 50px;
    height: 50px;
  }
  .Contents .fv__menu__openbtn span {
    right: 14px;
    height: 3px;
    width: 45%;
  }
  .Contents .fv__menu__openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .Contents .fv__menu__openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .Contents .fv__menu__openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .Contents .fv__menu__openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .Contents .fv__menu__openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .Contents .fv__menu__openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
.Contents .floating_banner {
  display: none;
}
@media screen and (max-width: 960px) {
  .Contents .floating_banner {
    opacity: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    transform: translateY(100px);
    z-index: 100;
    display: flex;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
  .Contents .floating_banner a {
    position: relative;
    width: 100%;
    padding: 16px 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
  }
  .Contents .floating_banner a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    height: auto;
  }
  .Contents .floating_banner a:nth-of-type(1) {
    background-color: #f29701;
  }
  .Contents .floating_banner a:nth-of-type(1)::before {
    left: 8%;
    aspect-ratio: 100/89;
    width: 50px;
    background: url(../img/floating_catalog.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Contents .floating_banner a::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 6%;
    width: 15px;
    height: 15px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: rotate(45deg);
  }
  .Contents .is-show-ta {
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (max-width: 520px) {
  .Contents .floating_banner a {
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
  }
  .Contents .floating_banner a:nth-of-type(1)::before {
    left: 8%;
    width: 30px;
    background: url(../img/floating_catalog.svg);
  }
  .Contents .floating_banner a::after {
    top: 43%;
    right: 8%;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .Contents .is-show-ta {
    transform: translateX(100);
    opacity: 0;
  }
  .Contents .is-show-sp {
    transform: translateX(0);
    opacity: 1;
  }
}
.Contents .CV {
  position: relative;
  width: 100%;
  padding: 4% 0;
  background-color: #3dab4a;
  text-align: center;
}
.Contents .CV::before {
  content: "";
  position: absolute;
  background: linear-gradient(35deg, #3dab4a 50%, transparent 52%), linear-gradient(325deg, #3dab4a 50%, transparent 52%);
  background-size: 25px 25px;
  height: 25px;
  width: 100%;
  top: -15px;
  left: 0;
  z-index: 999;
}
.Contents .CV::after {
  content: "";
  position: absolute;
  background: linear-gradient(215deg, #3dab4a 50%, transparent 52%), linear-gradient(145deg, #3dab4a 50%, transparent 52%);
  background-size: 25px 25px;
  height: 25px;
  width: 100%;
  bottom: -15px;
  left: 0;
  z-index: 999;
}
.Contents .CV__container {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 92%;
  padding: 4%;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 8px;
  transition: 0.3s;
}
.Contents .CV__container:hover {
  transform: scale(1.02);
}
.Contents .CV__container__txt1 {
  position: relative;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.75;
  color: #fff;
}
.Contents .CV__container__txt1::before, .Contents .CV__container__txt1::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 18px;
  height: auto;
  aspect-ratio: 100/170;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Contents .CV__container__txt2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
.Contents .CV__container__txt2 span {
  font-size: 22px;
}
.Contents .CV__container__img {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #666);
}
.Contents .CV__container__img img:nth-of-type(1) {
  width: 70%;
  padding-right: 30%;
  margin: 0 auto;
}
.Contents .CV__container__img img:nth-of-type(2) {
  position: absolute;
  top: 3%;
  right: -5%;
  width: 35%;
  transform: rotate(5deg);
  box-shadow: -6px -4px 10px 0px rgba(0, 0, 0, 0.2);
}
.Contents .CV__container__btn {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 16px 0;
  background-color: #fff;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #006934;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.Contents .CV__container__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 16px;
  height: auto;
  aspect-ratio: 100/136;
  background: url(../img/cv_btn_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Contents .CV__container__cm {
  position: absolute;
  top: 25%;
  left: -3%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
.Contents .CV__container__cm__square {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-color: #e98e00;
}
.Contents .CV__container__cm__square:nth-of-type(1) {
  transform: translate(-50%, -50%);
}
.Contents .CV__container__cm__square:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(15deg);
}
.Contents .CV__container__cm__square:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(30deg);
}
.Contents .CV__container__cm__square:nth-of-type(4) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.Contents .CV__container__cm__square:nth-of-type(5) {
  transform: translate(-50%, -50%) rotate(60deg);
}
.Contents .CV__container__cm__square:nth-of-type(6) {
  transform: translate(-50%, -50%) rotate(75deg);
}
.Contents .CV__container__cm__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .Contents .CV__container__txt1 {
    margin-bottom: 25px;
    font-size: 24px;
  }
  .Contents .CV__container__txt1::before {
    left: 18%;
  }
  .Contents .CV__container__txt1::after {
    right: 18%;
  }
  .Contents .CV__container__txt2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .Contents .CV__container__txt2 span {
    font-size: 28px;
  }
  .Contents .CV__container__img {
    margin-bottom: 25px;
  }
  .Contents .CV__container__btn {
    font-size: 24px;
  }
}
@media screen and (max-width: 520px) {
  .Contents .CV__container__txt1 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .Contents .CV__container__txt1::before, .Contents .CV__container__txt1::after {
    width: 14px;
    aspect-ratio: 100/168;
  }
  .Contents .CV__container__txt1::before {
    left: 8%;
  }
  .Contents .CV__container__txt1::after {
    right: 8%;
  }
  .Contents .CV__container__txt2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .Contents .CV__container__txt2 span {
    font-size: 18px;
  }
  .Contents .CV__container__img {
    margin-bottom: 15px;
  }
  .Contents .CV__container__btn {
    font-size: 16px;
  }
  .Contents .CV__container__btn::after {
    width: 12px;
  }
  .Contents .CV__container__cm__square {
    width: 75px;
    height: 75px;
  }
  .Contents .CV__container__cm__txt {
    font-size: 16px;
  }
}
.Contents .topic {
  width: 100%;
  padding: 20% 0;
  background-color: #d4efe7;
  text-align: center;
}
.Contents .topic h2 {
  position: relative;
  width: 28%;
  margin: 0 auto 40px;
}
.Contents .topic h2::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -40px;
  aspect-ratio: 100/114;
  width: 28%;
  height: auto;
  background: url(../img/topic_accent.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Contents .topic a {
  position: relative;
  display: block;
  width: 92%;
  margin: 0 auto;
  padding-top: 3px;
  border-radius: 12px;
  overflow: hidden;
}
.Contents .topic a img {
  width: calc(100% - 6px);
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}
.Contents .topic a div {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 8px 0;
  border: 1px solid transparent;
  overflow: hidden;
  transition: 0.5s;
}
.Contents .topic a div p {
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
}
.Contents .topic a div p:nth-of-type(1) {
  font-size: 14px;
}
.Contents .topic a div p:nth-of-type(2) {
  font-size: 20px;
}
.Contents .topic a div p span {
  position: relative;
  z-index: 1;
}
.Contents .topic a div::after {
  content: "";
  position: absolute;
  top: 42%;
  right: 8%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.Contents .topic .topic__new {
  background: linear-gradient(to right, #008244, #89b829);
  margin-bottom: 20px;
}
.Contents .topic .topic__reform {
  background: linear-gradient(to right, #036eb8, #6da3d8);
}
@media screen and (max-width: 960px) {
  .Contents .topic h2 {
    margin: 0 auto 50px;
  }
  .Contents .topic h2::after {
    top: -50px;
    right: -70px;
  }
  .Contents .topic a p:nth-of-type(1) {
    font-size: 16px;
  }
  .Contents .topic a p:nth-of-type(2) {
    font-size: 23px;
  }
  .Contents .topic a::after {
    width: 16px;
    height: 16px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}
@media screen and (max-width: 520px) {
  .Contents .topic h2 {
    margin: 0 auto 30px;
  }
  .Contents .topic h2::after {
    top: -25px;
    right: -40px;
  }
  .Contents .topic a p:nth-of-type(1) {
    font-size: 12px;
  }
  .Contents .topic a p:nth-of-type(2) {
    font-size: 18px;
  }
  .Contents .topic a::after {
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.Contents .CaseStudy_Plan {
  width: 92%;
  margin: 0 auto;
  padding: 16% 0;
}
.Contents .CaseStudy_Plan__MainImg {
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.Contents .CaseStudy_Plan__MainImg a {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 396/230;
  overflow: hidden;
}
.Contents .CaseStudy_Plan__MainImg a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.Contents .CaseStudy_Plan__MainImg .swiper-button-prev, .Contents .CaseStudy_Plan__MainImg .swiper-button-next {
  top: 50%;
  bottom: inherit;
}
.Contents .CaseStudy_Plan__MainImg .swiper-button-prev, .Contents .CaseStudy_Plan__MainImg .swiper-button-next {
  margin-top: 0;
  width: 40px;
  height: 40px;
  background-color: #379995;
  background: url(https://pic.takasho.jp/wp-content/themes/pic/img/arrow2.svg);
}
.Contents .CaseStudy_Plan__MainImg .swiper-button-prev::after, .Contents .CaseStudy_Plan__MainImg .swiper-button-next::after {
  content: "";
  width: 0px;
  height: 0px;
}
.Contents .CaseStudy_Plan__MainImg .swiper-button-prev {
  left: -20px;
  right: inherit;
  transform: translateY(-50%) rotate(-90deg);
}
.Contents .CaseStudy_Plan__MainImg .swiper-button-next {
  left: inherit;
  right: -20px;
  transform: translateY(-50%) rotate(90deg);
}
.Contents .CaseStudy_Plan__MainImg .swiper-pagination {
  width: 100%;
  top: inherit;
  bottom: -4px;
}
.Contents .CaseStudy_Plan__MainImg .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #3dab4a;
}
.Contents .CaseStudy_Plan h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.Contents .CaseStudy_Plan p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}
.Contents .CaseStudy_Plan__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
  row-gap: 25px;
  margin-bottom: 30px;
}
.Contents .CaseStudy_Plan__container a {
  display: inline-block;
  width: 100%;
}
.Contents .CaseStudy_Plan__container a div {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 8px;
  filter: drop-shadow(0 0 5px #ddd);
  overflow: hidden;
}
.Contents .CaseStudy_Plan__container a div img {
  width: 100%;
  transition: 0.3s;
  will-change: transform;
}
.Contents .CaseStudy_Plan__container a:hover img {
  transform: scale(1.05);
}
.Contents .CaseStudy_Plan__container a h3 {
  position: relative;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.Contents .CaseStudy_Plan__container a h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 14px;
  height: auto;
  background: url(../img/casestudy_plan_accent.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.Contents .CaseStudy_Plan__btn {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 0;
  background-color: #fff;
  border: 1px solid #006934;
  border-radius: 8px;
  filter: drop-shadow(0 0 3px #ddd);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #006934;
  transition: 0.3s;
}
.Contents .CaseStudy_Plan__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
  aspect-ratio: 100/136;
  background: url(../img/casestudy_plan_btn_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.Contents .CaseStudy_Plan__btn:hover {
  background-color: #3da74a;
  color: #fff;
  border: 1px solid #3da74a;
}
.Contents .CaseStudy_Plan__btn:hover::after {
  background: url(../img/casestudy_plan_btn_arrow_hover.svg);
}
@media screen and (max-width: 960px) {
  .Contents .CaseStudy_Plan__MainImg {
    margin-bottom: 30px;
  }
  .Contents .CaseStudy_Plan h2 {
    margin-bottom: 30px;
    font-size: 32px;
  }
  .Contents .CaseStudy_Plan p {
    font-size: 18px;
    text-align: center;
  }
  .Contents .CaseStudy_Plan__container {
    column-gap: 20px;
    row-gap: 30px;
    margin-bottom: 40px;
  }
  .Contents .CaseStudy_Plan__container a div {
    margin-bottom: 8px;
  }
  .Contents .CaseStudy_Plan__container a h3 {
    font-size: 22px;
  }
  .Contents .CaseStudy_Plan__container a h3::after {
    width: 20px;
  }
  .Contents .CaseStudy_Plan__btn {
    padding: 20px 0;
    font-size: 22px;
  }
  .Contents .CaseStudy_Plan__btn::after {
    width: 18px;
  }
}
@media screen and (max-width: 520px) {
  .Contents .CaseStudy_Plan__MainImg {
    margin-bottom: 20px;
  }
  .Contents .CaseStudy_Plan h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .Contents .CaseStudy_Plan p {
    font-size: 14px;
    text-align: justify;
  }
  .Contents .CaseStudy_Plan__container {
    column-gap: 10px;
    row-gap: 20px;
    margin-bottom: 30px;
  }
  .Contents .CaseStudy_Plan__container a h3 {
    font-size: 16px;
  }
  .Contents .CaseStudy_Plan__container a h3::after {
    right: -25px;
    width: 16px;
  }
  .Contents .CaseStudy_Plan__btn {
    padding: 18px 0;
    font-size: 16px;
  }
  .Contents .CaseStudy_Plan__btn::after {
    width: 12px;
  }
}
.Contents .magazine {
  width: 100%;
  padding: 20% 0;
  background-color: #d4efe7;
  text-align: center;
}
.Contents .magazine h2 {
  width: 69%;
  margin: 0 auto 10px;
}
.Contents .magazine__txt {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 600;
}
.Contents .magazine .swiper .swiper-slide {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
}
.Contents .magazine .swiper .swiper-slide div {
  width: 92%;
  margin: 0 auto 10px;
  border-radius: 8px;
  filter: drop-shadow(0 0 5px #ddd);
  overflow: hidden;
}
.Contents .magazine .swiper .swiper-slide div img {
  width: 100%;
  transition: 0.3s;
  will-change: transform;
}
.Contents .magazine .swiper .swiper-slide h3 {
  width: 92%;
  margin: 0 auto 10px;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  color: #000;
}
.Contents .magazine .swiper .swiper-slide p {
  width: fit-content;
  padding: 8px 16px;
  margin-left: 4%;
  background: #3dab4a;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  color: #fff;
}
.Contents .magazine .swiper .swiper-slide:hover img {
  transform: scale(1.05);
}
.Contents .magazine .swiper .swiper-button-next, .Contents .magazine .swiper .swiper-button-prev {
  top: 35%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #3dab4a;
}
.Contents .magazine .swiper .swiper-button-next::after, .Contents .magazine .swiper .swiper-button-prev::after {
  font-size: 24px;
  font-weight: bold;
}
.Contents .magazine .swiper .swiper-button-prev {
  left: 0;
}
.Contents .magazine .swiper .swiper-button-next {
  right: 0;
}
.Contents .magazine .swiper .swiper-pagination {
  bottom: 40px;
}
.Contents .magazine .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 12px;
  background: #fff;
  opacity: 1;
}
.Contents .magazine .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3dab4a;
}
.Contents .magazine__btn {
  position: relative;
  display: inline-block;
  width: 92%;
  margin: 0 auto;
  padding: 16px 0;
  background-color: #fff;
  border-radius: 8px;
  filter: drop-shadow(0 0 3px #ddd);
  font-size: 18px;
  font-weight: 600;
  color: #006934;
  transition: 0.3s;
}
.Contents .magazine__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
  aspect-ratio: 100/136;
  background: url(../img/magazine_btn_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.Contents .magazine__btn:hover {
  background-color: #3da74a;
  color: #fff;
}
.Contents .magazine__btn:hover::after {
  background: url(../img/casestudy_plan_btn_arrow_hover.svg);
}
@media screen and (max-width: 960px) {
  .Contents .magazine h2 {
    width: 60%;
    margin: 0 auto 30px;
  }
  .Contents .magazine__txt {
    margin-bottom: 50px;
    font-size: 22px;
  }
  .Contents .magazine .swiper .swiper-slide h3 {
    margin: 0 auto 15px;
    font-size: 18px;
    line-height: 1.75;
  }
  .Contents .magazine .swiper .swiper-slide p {
    font-size: 14px;
  }
  .Contents .magazine__btn {
    padding: 20px 0;
    font-size: 20px;
  }
  .Contents .magazine__btn::after {
    width: 16px;
  }
}
@media screen and (max-width: 520px) {
  .Contents .magazine h2 {
    width: 69%;
    margin: 0 auto 20px;
  }
  .Contents .magazine__txt {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .Contents .magazine .swiper .swiper-slide {
    padding-bottom: 60px;
  }
  .Contents .magazine .swiper .swiper-slide h3 {
    margin: 0 auto 8px;
    font-size: 14px;
  }
  .Contents .magazine .swiper .swiper-slide p {
    font-size: 12px;
  }
  .Contents .magazine__btn {
    padding: 16px 0;
    font-size: 16px;
  }
  .Contents .magazine__btn::after {
    width: 12px;
  }
}
.Contents .showroom {
  width: 100%;
  padding: 20% 0 0;
  text-align: center;
  overflow: hidden;
  background-color: #f9f5ef;
}
.Contents .showroom h2 {
  width: 78%;
  margin: 0 auto 20px;
}
.Contents .showroom__txt {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
}
.Contents .showroom__MainImg img {
  width: 100%;
}
.Contents .showroom__container {
  background-color: #f9f5ef;
  padding: 10% 0 20%;
}
.Contents .showroom__container h3 {
  width: 23%;
  margin: 0 auto 20px;
}
.Contents .showroom__container .swiper {
  padding: 0 4%;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.Contents .showroom__container .swiper .swiper-wrapper {
  width: 100%;
}
.Contents .showroom__container .swiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  filter: drop-shadow(0 0 5px #ddd);
}
.Contents .showroom__container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  margin-bottom: 10px;
}
.Contents .showroom__container .swiper .swiper-wrapper .swiper-slide h3 {
  width: 100%;
  padding: 4px 0;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  color: #333;
}
.Contents .showroom__container .swiper .swiper-button-next, .Contents .showroom__container .swiper .swiper-button-prev {
  top: 45%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #3dab4a;
}
.Contents .showroom__container .swiper .swiper-button-next::after, .Contents .showroom__container .swiper .swiper-button-prev::after {
  font-size: 24px;
  font-weight: bold;
}
.Contents .showroom__container .swiper .swiper-button-prev {
  left: 0;
}
.Contents .showroom__container .swiper .swiper-button-next {
  right: 0;
}
.Contents .showroom__container .swiper .swiper-pagination {
  bottom: 0;
}
.Contents .showroom__container .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 12px;
  background: #fff;
  opacity: 1;
}
.Contents .showroom__container .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3dab4a;
}
.Contents .showroom__container__btn {
  position: relative;
  display: inline-block;
  width: 92%;
  margin: 0 auto;
  padding: 16px 0;
  background-color: #fff;
  border-radius: 8px;
  filter: drop-shadow(0 0 5px #ddd);
  font-size: 18px;
  font-weight: 600;
  color: #006934;
  transition: 0.3s;
}
.Contents .showroom__container__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 16px;
  height: auto;
  aspect-ratio: 100/136;
  background: url(../img/magazine_btn_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.Contents .showroom__container__btn:hover {
  background-color: #3da74a;
  color: #fff;
}
.Contents .showroom__container__btn:hover::after {
  background: url(../img/casestudy_plan_btn_arrow_hover.svg);
}
.Contents .showroom__container__vr {
  display: inline-block;
  width: 92%;
  margin: 0 auto;
  padding: 40px 0 30px;
  background-color: #3da74a;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}
.Contents .showroom__container__vr:hover {
  transform: scale(1.015);
}
.Contents .showroom__container__vr h4 {
  margin-bottom: 25px;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}
.Contents .showroom__container__vr__txt1 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.Contents .showroom__container__vr__txt2 {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.75;
  color: #fff;
}
.Contents .showroom__container__vr__img {
  position: relative;
}
.Contents .showroom__container__vr__img img {
  width: 90%;
  margin: 0 auto 30px;
  border-radius: 12px;
}
.Contents .showroom__container__vr__img::after {
  content: "";
  position: absolute;
  bottom: 4%;
  left: -5%;
  width: 33%;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/showroom_vr_human.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Contents .showroom__container__vr__btn {
  position: relative;
  display: inline-block;
  width: 92%;
  margin: 0 auto;
  padding: 16px 0;
  background-color: #fff;
  border-radius: 8px;
  filter: drop-shadow(0 0 5px #999);
  font-size: 18px;
  font-weight: 600;
  color: #006934;
}
.Contents .showroom__container__vr__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 16px;
  height: auto;
  aspect-ratio: 100/136;
  background: url(../img/magazine_btn_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .Contents .showroom h2 {
    width: 70%;
    margin: 0 auto 30px;
  }
  .Contents .showroom__txt {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .Contents .showroom__container h3 {
    width: 20%;
    margin: 0 auto 30px;
  }
  .Contents .showroom__container .swiper .swiper-wrapper .swiper-slide img {
    margin-bottom: 20px;
  }
  .Contents .showroom__container .swiper .swiper-wrapper .swiper-slide h3 {
    padding: 0;
    font-size: 18px;
  }
  .Contents .showroom__container__btn {
    padding: 20px 0;
    font-size: 20px;
  }
  .Contents .showroom__container__btn::after {
    width: 18px;
  }
  .Contents .showroom__container__vr__txt2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 520px) {
  .Contents .showroom h2 {
    width: 78%;
    margin: 0 auto 20px;
  }
  .Contents .showroom__txt {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .Contents .showroom__container h3 {
    width: 23%;
    margin: 0 auto 20px;
  }
  .Contents .showroom__container .swiper .swiper-wrapper .swiper-slide img {
    margin-bottom: 15px;
  }
  .Contents .showroom__container .swiper .swiper-wrapper .swiper-slide h3 {
    padding: 0;
    font-size: 16px;
  }
  .Contents .showroom__container__btn {
    padding: 16px 0;
    font-size: 16px;
  }
  .Contents .showroom__container__btn::after {
    width: 12px;
  }
  .Contents .showroom__container__vr__txt2 {
    font-size: 10px;
  }
}
.Contents .catalog {
  width: 100%;
  margin: 0 auto;
  padding: 20% 0;
  text-align: center;
  background: #d4efe7;
}
.Contents .catalog h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 500;
}
.Contents .catalog p {
  width: 92%;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}
.Contents .catalog img {
  width: 92%;
  margin-bottom: 30px;
}
.Contents .catalog__btn {
  position: relative;
  display: inline-block;
  width: 92%;
  margin: 0 auto;
  padding: 16px 0;
  background-color: #3da74a;
  border: 1px solid transparent;
  border-radius: 8px;
  filter: drop-shadow(0 0 5px #ccc);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}
.Contents .catalog__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 16px;
  height: auto;
  aspect-ratio: 100/136;
  background: url(../img/magazine_btn_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Contents .catalog__btn:hover {
  background-color: #fff;
  color: #3da74a;
  border: 1px solid #3da74a;
}
@media screen and (max-width: 960px) {
  .Contents .catalog {
    padding-bottom: 12%;
  }
  .Contents .catalog h2 {
    margin-bottom: 40px;
    font-size: 32px;
  }
  .Contents .catalog p {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .Contents .catalog img {
    width: 90%;
    margin: 0 auto 30px;
  }
  .Contents .catalog__btn {
    width: 100%;
    padding: 18px 0;
    font-size: 20px;
  }
  .Contents .catalog__btn::after {
    width: 20px;
  }
}
@media screen and (max-width: 520px) {
  .Contents .catalog {
    padding: 20% 0 15%;
  }
  .Contents .catalog h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .Contents .catalog p {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .Contents .catalog img {
    width: 100%;
  }
  .Contents .catalog__btn {
    padding: 14px 0;
    font-size: 16px;
  }
  .Contents .catalog__btn::after {
    width: 16px;
  }
}
.Contents .sns {
  display: none;
}
@media screen and (max-width: 960px) {
  .Contents .sns {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .Contents .sns a {
    position: relative;
    display: block;
    height: 50px;
  }
  .Contents .sns a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Contents .sns a:nth-of-type(1)::after {
    aspect-ratio: 100/70;
    background: url(https://ch.takasho.jp/img/img-renew/icon-Youtube.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Contents .sns a:nth-of-type(2)::after {
    aspect-ratio: 1/1;
    background: url(https://ch.takasho.jp/img/img-renew/icon-Facebook.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Contents .sns a:nth-of-type(3)::after {
    aspect-ratio: 1/1;
    background: url(https://ch.takasho.jp/img/img-renew/icon-insta.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Contents .sns a:nth-of-type(4)::after {
    aspect-ratio: 1/1;
    background: url(https://ch.takasho.jp/img/img-renew/icon-pinta.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Contents .sns a:nth-of-type(5)::after {
    aspect-ratio: 1/1;
    background: url(https://ch.takasho.jp/img/img-renew/icon-line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .Contents .sns a:nth-of-type(6)::after {
    aspect-ratio: 1/1;
    background: url(https://ch.takasho.jp/img/img-renew/icon-tiktok.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 520px) {
  .Contents .sns {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 100px;
  }
}
.Contents footer {
  background-color: #f9f5ef;
  padding: 15% 0 20%;
  text-align: center;
}
.Contents footer img {
  width: 50%;
  margin: 0 auto 50px;
}
.Contents footer ul {
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
}
.Contents footer ul li a {
  display: block;
  font-size: 14px;
  color: #000;
}
.Contents footer ul li:nth-of-type(2) {
  margin: 0 30px;
}
.Contents footer p {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .Contents {
    max-width: 100%;
  }
}