@charset "UTF-8";
.top-wrapper {
  position: relative;
}

header {
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  z-index: 10;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  header {
    padding-top: 12px;
    top: 0;
    left: 20px;
    right: 0;
    height: auto;
  }
}

.logo {
  font-size: 20px;
  line-height: 20px;
}
@media screen and (max-width: 1023px) {
  .logo {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .logo {
    line-height: 33px;
    font-size: 20px;
  }
}

.hamburger {
  display: none;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    height: 50px;
    cursor: pointer;
    z-index: 100;
    background-color: white;
  }
  .hamburger .hamburger-inner {
    position: relative;
    width: 32px;
    height: 24px;
  }
  .hamburger span {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #4D9600;
    /* Figmaに合わせて変更 */
    transition: all 0.3s;
    border-radius: 4px;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 10px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 18px;
  line-height: 18px;
  height: 33px;
}
.menu-list li {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.menu-list li:hover {
  border-bottom: 1px solid white;
}
@media screen and (max-width: 1023px) {
  .menu-list {
    position: absolute;
    display: flex;
    width: 300px;
    height: 348px;
    background: rgb(77, 150, 0);
    transition: all 0.3s;
    z-index: 90;
    flex-direction: column;
    align-items: start;
    gap: 25px;
    padding-top: 12px;
    padding-bottom: 13px;
    padding-left: 20px;
    line-height: 33px;
    top: 50px;
    right: -100%;
    pointer-events: none;
    visibility: hidden;
    /* これで右に隠れる */
  }
  .menu-list.active {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }
  .menu-list li {
    padding: 0;
    border-bottom: none;
  }
  .menu-list li:hover {
    border-bottom: none;
  }
}

.fv .slider-item {
  background-size: cover;
  height: 800px;
}
.fv .slider-item h2 {
  padding-bottom: 321px;
  padding-top: 339px;
  margin-left: 12px;
  font-size: 40px;
  line-height: 70px;
  font-weight: 600;
  letter-spacing: 12px;
  white-space: nowrap;
  text-align: center;
  color: white;
}
@media screen and (max-width: 768px) {
  .fv .slider-item {
    height: 601px;
  }
  .fv .slider-item h2 {
    padding-top: 219px;
    padding-bottom: 202px;
    font-size: 30px;
    line-height: 60px;
  }
}
.fv .item01 {
  background-image: url(../../images/FirstView_01.jpg);
}
@media screen and (max-width: 450px) {
  .fv .item01 {
    background-image: url(../../images/SP_FirstView-1.jpg);
  }
}
.fv .item02 {
  background-image: url(../../images/FirstView02.jpg);
}
@media screen and (max-width: 450px) {
  .fv .item02 {
    background-image: url(../../images/SP_FirstView-2.jpg);
  }
}
.fv .item03 {
  background-image: url(../../images/FirstView03.jpg);
}
@media screen and (max-width: 450px) {
  .fv .item03 {
    background-image: url(../../images/SP_FirstView-3.jpg);
  }
}

.about {
  background-image: url(../../images/About.jpg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .about {
    background-image: url(../../images/About\ \(2\).jpg);
  }
}

.about-contents {
  writing-mode: vertical-rl;
  font-weight: 500;
  padding-bottom: 107px;
  padding-top: 113px;
  margin-left: 150px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .about-contents {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    padding: 50px 0;
  }
}

.about-title {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .about-title {
    font-size: 25px;
  }
}

.about-message {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 7px;
}
@media screen and (max-width: 768px) {
  .about-message {
    font-size: 16px;
    gap: 10px;
    letter-spacing: 4px;
    margin-bottom: 0;
  }
}

.service {
  background-color: rgba(77, 150, 0, 0.1);
  padding-bottom: 80px;
  padding-top: 80px;
}
.service .heading {
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 50px 0;
  }
  .service .heading {
    margin-bottom: 38px;
  }
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 1023px) {
  .service-items {
    gap: 50px;
  }
}

.service-item {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .service-item {
    display: block;
  }
}

.service-item:nth-child(2) {
  flex-direction: row-reverse;
}
.service-item:nth-child(2) .service-description {
  flex-shrink: 0;
  position: relative;
  margin-right: -180px;
  margin-left: 0;
  padding-left: 40px;
  padding-right: 252px;
}
@media screen and (max-width: 1023px) {
  .service-item:nth-child(2) .service-description {
    margin-right: -60px;
    padding-right: 108px;
  }
}
@media screen and (max-width: 768px) {
  .service-item:nth-child(2) .service-description {
    margin-right: 0;
    padding-left: 20px;
    padding-right: 0;
  }
}

.service-item:nth-child(3) .service-description {
  padding-left: 238px;
  padding-right: 38px;
}
@media screen and (max-width: 1023px) {
  .service-item:nth-child(3) .service-description {
    padding-left: 108px;
  }
}
@media screen and (max-width: 768px) {
  .service-item:nth-child(3) .service-description {
    padding-left: 20px;
  }
}

.service-set {
  position: relative;
  z-index: 2;
}

.service-img {
  width: 600px;
  height: 300px;
  margin-bottom: 19px;
}
.service-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .service-img {
    width: 360px;
    height: auto;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .service-img {
    margin-bottom: 0;
    width: 100%;
    height: auto;
  }
}

.service-place {
  font-weight: 500;
  line-height: 25px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .service-place {
    margin-top: 5px;
    margin-bottom: 6px;
  }
}

.service-description {
  position: relative;
  z-index: 1;
  background-color: rgb(77, 150, 0);
  color: white;
  font-weight: 600;
  margin-left: -180px;
  margin-top: 145px;
  padding-top: 50px;
  padding-right: 27px;
  padding-left: 248px;
  padding-bottom: 42px;
}
.service-description h3 {
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 17px;
}
.service-description p {
  font-size: 16px;
  line-height: 25px;
}
@media screen and (max-width: 1023px) {
  .service-description {
    margin-top: 90px;
    margin-left: -80px;
    padding-left: 108px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .service-description {
    position: static;
    margin: 0;
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 12px;
    width: 100%;
    height: auto;
  }
  .service-description h3 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 14px;
  }
}

.works {
  padding-top: 79.7px;
  padding-bottom: 97px;
}
.works .heading {
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .works {
    padding-top: 50px;
    padding-bottom: 42px;
  }
  .works .heading {
    margin-bottom: 38px;
  }
}

.works-items {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .works-items {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .works-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
}

@media screen and (max-width: 1023px) {
  .works-item {
    width: calc((100% - 80px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .works-item:nth-child(1) .works-description {
    display: flex;
  }
  .works-item {
    width: 100%;
  }
}
.works-img {
  margin-bottom: 19px;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 1023px) {
  .works-img {
    width: 100%;
    height: auto;
    margin-bottom: 9px;
  }
  .works-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.works-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  /* ここはFigmaに合わせて（画像だけなら透明でいい） */
  width: 450px;
  padding: 0 15px;
  padding-top: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 315px;
    padding: 0 20px;
    padding-top: 20px;
  }
}

.modal-close {
  cursor: pointer;
  position: absolute;
  right: 3px;
  top: 0;
  transform: scale(1.2);
}

.modal-description {
  display: flex;
  margin-top: 9px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .modal-description {
    margin-top: 7px;
    margin-bottom: 14px;
  }
}

/* モーダル内の大きな画像 */
.modal-div-img {
  width: 420px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .modal-div-img {
    width: 100%;
    height: auto;
  }
}

.modal-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Figmaで、画像が画面いっぱいに広がるデザインなら */
  /* width: 100vw; max-width: none; */
}

.news {
  background-color: rgba(77, 150, 0, 0.1);
  padding-top: 80px;
  padding-bottom: 80px;
}
.news .heading {
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 50px 0;
  }
  .news .heading {
    margin-bottom: 38px;
  }
}

.news-items,
.blog-items {
  flex: 1;
}

.news-title {
  padding-top: 9px;
  padding-bottom: 8px;
  padding-left: 20px;
  background-color: rgb(77, 150, 0);
}

.news-description {
  padding: 0 20px;
  padding-bottom: 28px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .news-description p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.more {
  font-weight: 600;
  font-size: 20px;
  padding-top: 23px;
  padding-right: 33px;
  text-align: right;
  position: relative;
}
.more p {
  color: rgb(85, 165, 0);
}
.more .more-img {
  position: absolute;
  right: 0;
  bottom: -9px;
}

.news-blog {
  display: flex;
  gap: 60px;
}
.news-blog h3 {
  color: white;
  font-weight: 600;
  font-size: 20px;
  line-height: 33px;
}
@media screen and (max-width: 768px) {
  .news-blog {
    flex-direction: column;
    gap: 50px;
  }
}

.news-item {
  font-weight: 500;
  padding-top: 30px;
  padding-bottom: 13px;
  position: relative;
}
.news-item a {
  display: flex;
  gap: 69px;
}
.news-item a p:nth-child(1) {
  font-size: 16px;
  line-height: 33px;
}
.news-item a p:nth-child(2) {
  font-size: 18px;
  line-height: 25px;
}
@media screen and (max-width: 768px) {
  .news-item a {
    gap: 19px;
  }
}

.news-item:nth-child(2),
.news-item:nth-child(3) {
  padding-top: 20px;
}

.news-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(77, 150, 0);
}

.company {
  padding: 80px 0;
}
.company .heading {
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .company {
    padding: 50px 0;
  }
  .company .heading {
    margin-bottom: 38px;
  }
}

.company-contents {
  display: flex;
}
.company-contents .map {
  width: 600px;
  height: 400px;
  position: relative;
  z-index: 2;
}
.company-contents .map img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .company-contents {
    flex-direction: column;
    gap: 20px;
  }
  .company-contents .map {
    width: 100%;
    height: auto;
    position: static;
  }
}

.company-card {
  position: relative;
  z-index: 1;
  background-color: rgb(77, 150, 0);
  width: 500px;
  height: 262px;
  margin-left: -180px;
  margin-top: 200px;
  padding-left: 220px;
  padding-top: 49px;
  padding-bottom: 42px;
}
.company-card p {
  color: white;
  font-weight: 600;
}
.company-card p span {
  font-size: 25px;
  letter-spacing: 0;
}
.company-card p:nth-child(1) {
  font-size: 20px;
  line-height: 33px;
  margin-bottom: 7px;
}
.company-card p:nth-child(3) {
  margin-bottom: 12px;
}
.company-card p:nth-child(4) {
  margin-bottom: 16.5px;
}
.company-card p:nth-child(2),
.company-card p:nth-child(3),
.company-card p:nth-child(4),
.company-card p:nth-child(5) {
  font-size: 16px;
  line-height: 25px;
}
@media screen and (max-width: 768px) {
  .company-card {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    padding-top: 19px;
    padding-left: 20px;
    padding-bottom: 12px;
  }
}

.contact {
  padding: 80px 0;
  background-color: rgba(77, 150, 0, 0.15);
}
.contact .heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 50px 0;
  }
}

.contact-container {
  padding: 0 140px;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-container {
    padding: 0 30px;
  }
}

.contact-description {
  margin-bottom: 70px;
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-description {
    margin-bottom: 40px;
  }
}

.form-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .form-list {
    gap: 30px;
  }
}

.form-item span {
  padding-left: 7px;
}

label {
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
}

.text input,
.text select,
textarea {
  background-color: white;
}

.form-item.text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-item.text input,
.form-item.text select {
  flex: 1;
  max-width: 630px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .form-item.text {
    display: block;
  }
  .form-item.text input,
  .form-item.text select {
    width: 100%;
  }
}

.gender {
  display: flex;
  align-items: center;
  gap: 134px;
}
.gender legend {
  font-size: 20px;
  line-height: 33px;
}
@media screen and (max-width: 768px) {
  .gender {
    gap: 51px;
  }
}

.gender-option {
  display: flex;
  align-items: center;
  gap: 75.5px;
}
.gender-option label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .gender-option {
    gap: 40.5px;
  }
  .gender-option label {
    gap: 11px;
  }
}

input[type=text],
input[type=email],
select {
  padding-left: 20px;
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: none;
}

input[type=radio]:checked::before {
  content: "";
  width: 6px;
  height: 6px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

select {
  background-image: url(../../images/多角形\ 1.png);
  background-repeat: no-repeat;
  background-position: right 20px top 21px;
}

.message label {
  display: block;
  margin-bottom: 10px;
}
.message textarea {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .message label {
    margin-bottom: 0;
  }
}

.checkbox legend {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
}
.checkbox label {
  font-size: 18px;
  line-height: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .checkbox legend {
    margin-bottom: 0;
    line-height: 27px;
  }
  .checkbox label {
    font-size: 16px;
    gap: 10px;
  }
}

.checkbox-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .checkbox-container {
    grid-template-columns: 1fr 1fr;
    row-gap: 5px;
  }
}

::-moz-placeholder {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
}

::placeholder,
select {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  ::-moz-placeholder {
    font-size: 16px;
  }
  ::placeholder,
  select {
    font-size: 16px;
  }
}

::-moz-placeholder {
  color: #A0A0A0;
}

::placeholder {
  color: #A0A0A0;
}

.privacy-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 33px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .privacy-title {
    margin-bottom: 0;
  }
}

.privacy-description {
  overflow-y: scroll;
  height: 300px;
  background-color: white;
  font-weight: 500;
  font-size: 18px;
  line-height: 31px;
  margin-bottom: 30px;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .privacy-description {
    height: 323px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 33px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 50px;
  }
}

.privacy-margin {
  margin: 30px 0;
}

.privacy-margin-bottom {
  margin-bottom: 30px;
}

.privacy-description::-webkit-scrollbar {
  width: 25px;
}

.privacy-description::-webkit-scrollbar-track {
  background: rgb(227, 227, 227);
  border-radius: 10px;
  border: 5px solid transparent;
  border-right-width: 10px;
  /* 右側の余白を10pxに */
  border-top-width: 10px;
  /* 上側の余白を10pxに */
  border-bottom-width: 10px;
  /* 下側の余白を10pxに */
  /* 枠線の内側まで背景色を塗る設定 */
  background-clip: content-box;
}

.privacy-description::-webkit-scrollbar-thumb {
  background: rgb(155, 155, 155);
  border-radius: 3px;
  border: 5px solid transparent;
  border-right-width: 10px;
  /* 右側の余白を10pxに */
  border-top-width: 10px;
  /* 上側の余白を10pxに */
  border-bottom-width: 10px;
  /* 下側の余白を10pxに */
  /* 枠線の内側まで背景色を塗る設定 */
  background-clip: content-box;
}

.form-btn {
  background-color: rgb(77, 150, 0);
  width: 300px;
  height: 50px;
  font-weight: 500;
  font-size: 20px;
  line-height: 33px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .form-btn {
    width: 100%;
    margin: 0;
  }
}

.form-btn:hover {
  background-color: white;
  color: rgb(77, 150, 0);
  border: 1px solid rgb(77, 150, 0);
}

.footer-menu {
  padding-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-menu {
    padding-top: 50px;
  }
}

.menu-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 33px;
  padding-bottom: 28px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .menu-title {
    padding-bottom: 20px;
  }
}

.menu-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 722px;
  background-color: black;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .menu-title::after {
    width: 315px;
  }
}

.footer-nav {
  margin-top: 28px;
  margin-bottom: 28px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 33px;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    margin-top: 20px;
    padding: 0 35px;
  }
  .footer-nav ul {
    flex-wrap: wrap;
    row-gap: 5px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}

.sns {
  margin-bottom: 80px;
}
.sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .sns {
    margin-bottom: 50px;
  }
}

.copyright {
  background-color: rgb(77, 150, 0);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 33px;
  height: 92px;
}
@media screen and (max-width: 768px) {
  .copyright {
    line-height: 25px;
    text-align: center;
  }
}

body {
  font-family: "YuMincho", "Yu Mincho", "游明朝体", "游明朝", serif;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1080px;
}
@media screen and (max-width: 1023px) {
  .container {
    max-width: 1023px;
    padding: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 375px;
    padding: 0 30px;
  }
}

.heading {
  line-height: 33px;
  font-weight: 500;
  text-align: center;
}
.heading h2 {
  color: rgb(77, 150, 0);
  font-size: 30px;
  letter-spacing: 9px;
  margin-left: 9px;
  margin-bottom: 6px;
}
.heading p {
  font-size: 20px;
  letter-spacing: 6px;
  margin-left: 6px;
}

.text-right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .text-right {
    text-align: left;
  }
}

.page-top {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 5;
}
.page-top a {
  display: block;
  width: 68px;
  height: 68px;
}
.page-top a img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page-top {
    right: 20px;
  }
  .page-top a {
    width: 50px;
    height: 50px;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */