@charset "UTF-8";
/*====================================

 　_base.scss

==================================== */
html#html-wrapper {
  font-size: 1rem;
  margin-top: 0 !important;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html#html-wrapper {
    font-size: 0.8125rem;
  }
}

:root {
  --black: #333;
  --gray-555: #555;
  --lightgray: #aaa;
  --white: #fff;
  --main: #004097;
  --main-20: #3366ab;
  --line: #06C755;
}

body#page-wrapper {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  padding: 0;
}
body#page-wrapper h1 {
  font-size: 1.875rem;
}
body#page-wrapper h2 {
  font-size: 1.625rem;
}
body#page-wrapper h3 {
  font-size: 1.375rem;
}
body#page-wrapper p {
  font-size: 1.125rem;
  margin: 0;
}
body#page-wrapper a {
  font-size: 1.125rem;
  text-decoration: none;
  color: var(--black);
}
body#page-wrapper small {
  font-size: 0.75rem;
}
body#page-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

span {
  font-size: 1.125rem;
}

.view_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .view_pc {
    display: none;
  }
}

.view_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .view_sp {
    display: block;
  }
}

.flex_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flex_wrap {
    display: block;
  }
}

.flex_box {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .flex_box {
    width: 100%;
  }
}

[id] {
  scroll-margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  [id] {
    scroll-margin-top: 20px;
  }
}

/*====================================

    _header.scss

==================================== */
#header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#header-wrapper .header_logo {
  padding: 0.5rem 1.25rem;
  position: relative;
  z-index: 99;
}
#header-wrapper .header_logo a {
  display: inline-block;
  width: 4.375rem;
  line-height: 1;
}

/*====================================

 　_footer.scss 

==================================== */
#footer-wrapper .footer_inner {
  width: 90%;
  max-width: 66rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #footer-wrapper .footer_inner {
    padding-bottom: 6.25rem;
  }
}
#footer-wrapper .footer_inner .line_contact {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 2%;
}
#footer-wrapper .footer_inner .line_contact .txt {
  font-weight: bold;
}
#footer-wrapper .footer_inner .line_contact .txt:after {
  content: "";
}
#footer-wrapper .footer_inner .line_contact .balloon_wrap {
  position: relative;
  width: 60%;
  margin: 8% auto 0;
}
@media screen and (max-width: 767px) {
  #footer-wrapper .footer_inner .line_contact .balloon_wrap {
    width: 100%;
    margin: 11% auto 0;
  }
}
#footer-wrapper .footer_inner .line_contact .balloon_wrap .balloon_svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#footer-wrapper .footer_inner .line_contact .btn {
  background-color: var(--line);
  font-weight: bold;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.16);
  width: 30%;
}
@media screen and (max-width: 767px) {
  #footer-wrapper .footer_inner .line_contact .btn {
    width: 80%;
  }
}
#footer-wrapper .footer_inner .line_contact .btn a {
  color: var(--white);
}
#footer-wrapper .footer_inner .mail_contact {
  display: inline-block;
  margin: 2% auto;
  text-align: center;
  width: 100%;
}
#footer-wrapper .footer_inner .mail_contact a {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--main);
  width: 30%;
  padding: 0.375rem 0.75rem;
  border: solid 1px var(--main);
  border-radius: 0.3125rem;
  box-shadow: 0rem 0.375rem 0.75rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  #footer-wrapper .footer_inner .mail_contact a {
    width: 80%;
  }
}
#footer-wrapper .footer_inner .tel_contact {
  font-weight: bold;
  padding: 0.375rem 0.75rem;
  margin: 2% auto;
  text-align: center;
}
#footer-wrapper .footer_inner .tel_contact span {
  font-size: 1rem;
  padding-bottom: 0;
}
#footer-wrapper .footer_inner .tel_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: var(--main);
  line-height: normal;
}
#footer-wrapper .footer_inner .tel_contact a::before {
  content: "";
  width: 3.125rem;
  height: 3.125rem;
  background-image: url("../img/tel_icon.png");
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  margin-top: 0.3125rem;
}
#footer-wrapper .footer_inner .flex_wrap {
  padding: 6.25rem 0;
  align-items: flex-start;
}
#footer-wrapper .footer_inner .flex_box {
  text-align: center;
  position: relative;
}
#footer-wrapper .footer_inner .flex_box .img_wrap {
  width: 70%;
  margin: 5% auto;
}
#footer-wrapper .footer_inner .flex_box .txt_wrap {
  margin: 5% auto;
}
#footer-wrapper .footer_inner .sns.flex_wrap {
  display: flex;
  width: 70%;
  padding: 0;
  justify-content: space-between;
  align-items: baseline;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 767px) {
  #footer-wrapper .footer_inner .sns.flex_wrap {
    width: 90%;
  }
}
#footer-wrapper .footer_inner .sns.flex_wrap a:nth-of-type(1) {
  width: 2.1875rem;
}
#footer-wrapper .footer_inner .sns.flex_wrap a:nth-of-type(2) {
  width: 5.625rem;
}
#footer-wrapper .footer_inner .sns.flex_wrap a:nth-of-type(3) {
  width: 2.1875rem;
}
#footer-wrapper .footer_inner .sns.flex_wrap a:nth-of-type(4) {
  width: 2.5rem;
}
#footer-wrapper .footer_inner .sns.flex_wrap a:nth-of-type(5) {
  width: 2.1875rem;
}
#footer-wrapper .footer_inner .footer_nav {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #footer-wrapper .footer_inner .footer_nav {
    width: 90%;
  }
}
#footer-wrapper .footer_inner .copyright {
  text-align: center;
}

.fixed_contact {
  position: fixed;
  width: min-content;
  height: max-content;
  bottom: 2.5rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgba(0, 64, 151, 0.8);
  padding: 0.625rem 0.0625rem;
  z-index: 10;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .fixed_contact {
    width: 100%;
    top: 94%;
    bottom: 0;
  }
}
.fixed_contact p {
  writing-mode: vertical-rl;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .fixed_contact p {
    writing-mode: unset;
  }
}
.fixed_contact .img_wrap {
  width: 50%;
  margin: 0.3125rem auto;
  background: var(--line);
  border-radius: 5px;
  font-weight: bold;
}

/*====================================

 　_link.scss 

==================================== */
.arrow {
  position: relative;
  display: inline-block;
  width: 0.9375rem;
  height: 0.0625rem;
  margin: 0.26875rem 0.3125rem;
  border-radius: 624.9375rem;
  background-color: var(--black);
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 0.4375rem;
  height: 0.0625rem;
  border-radius: 624.9375rem;
  background-color: var(--black);
  transform-origin: calc(100% - 0.5px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.link_wrap {
  text-align: center;
  position: relative;
  z-index: -1;
}

.link_under {
  border-bottom: solid 0.0625rem var(--lightgray);
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .link_under {
    margin-bottom: 1.25rem;
  }
}

.link_box {
  position: relative;
  border: solid 0.0625rem var(--lightgray);
  padding: 0.625rem 3.125rem;
}
.link_box .arrow {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
}

/*====================================

    _tag.scss

==================================== */
.tag_wrap {
  display: block;
  position: relative;
  margin-top: 1.875rem;
}

.tag {
  border: solid 0.0625rem var(--lightgray);
  border-radius: 0.3125rem;
  padding: 0.3125rem;
  margin: 0 0.1875rem;
  white-space: nowrap;
  line-height: 2.5;
}

/*====================================

 　_fukidashi.scss 

==================================== */
.fukidashi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
}
.fukidashi::before {
  content: "";
  width: 1.25rem;
  height: 0.125rem;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: var(--black);
}
.fukidashi::after {
  content: "";
  width: 1.25rem;
  height: 0.125rem;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: var(--black);
}

/*====================================

    _swiper_icon.scss

==================================== */
.swiper_icon_wrap {
  display: flex;
  align-items: center;
  width: 22%;
  position: absolute;
  right: 1%;
  bottom: 1%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .swiper_icon_wrap {
    width: 40%;
  }
}
.swiper_icon_wrap img {
  object-fit: contain;
  height: fit-content;
}
.swiper_icon_wrap span {
  color: var(--white);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .swiper_icon_wrap span {
    font-size: 10px;
  }
}
.swiper_icon_wrap .icon_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(51, 51, 51, 0.8);
  border-radius: 0.3125rem;
  padding: 0.625rem 0.3125rem 0;
  margin: 0.3125rem;
}
.swiper_icon_wrap .icon_wrap .img_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .swiper_icon_wrap .icon_wrap .img_wrap {
    width: 50%;
  }
}
.swiper_icon_wrap .icon_wrap .img_wrap img {
  max-height: 100%;
  display: block;
}
.swiper_icon_wrap .madori_noimage {
  margin: 3.3125rem 3.5625rem;
}
@media screen and (max-width: 767px) {
  .swiper_icon_wrap .madori_noimage {
    margin: 30px;
  }
}

/*====================================

    common/_page.scss

==================================== */
.inner {
  width: 90%;
  max-width: 66rem;
  margin: 0 auto 11.25rem;
}

.sub_header {
  max-width: 66rem;
  margin: 0 auto;
}
.sub_header h2 {
  font-size: 1.75rem;
  font-weight: normal;
  margin: 14.375rem 0 9.375rem;
}

/*====================================

common/_archives.scss 

==================================== */
#page-wrapper .search_wrap {
  margin-bottom: 4.375rem;
}
#page-wrapper .search_wrap form {
  width: 70%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #page-wrapper .search_wrap form {
    width: 100%;
  }
}
#page-wrapper .search_wrap input[type=text] {
  width: 100%;
  font-size: 1.25rem;
}
#page-wrapper .search_wrap .search_submit {
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../img/search_icon.svg");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 1%;
}
#page-wrapper .search_wrap .tag_wrap {
  width: 70%;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  #page-wrapper .search_wrap .tag_wrap {
    width: 100%;
  }
}
#page-wrapper .search_wrap .tag_wrap .archives_tag {
  border: solid 0.0625rem var(--lightgray);
  border-radius: 0.3125rem;
  padding: 0.3125rem 1.25rem;
  margin: 0 1.25rem 0 0;
  white-space: nowrap;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  #page-wrapper .search_wrap .tag_wrap .archives_tag {
    line-height: 2;
  }
}
#page-wrapper .archives_list {
  margin-top: 3.125rem;
}
#page-wrapper .archives_list .flex_wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#page-wrapper .archives_list .flex_box {
  width: 45%;
  margin-bottom: 8.75rem;
  opacity: 1;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  #page-wrapper .archives_list .flex_box {
    width: 100%;
  }
}
#page-wrapper .archives_list .flex_box.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
}
#page-wrapper .archives_list .thumbnail_wrap {
  display: block;
  height: 21.875rem;
}
@media screen and (max-width: 767px) {
  #page-wrapper .archives_list .thumbnail_wrap {
    height: 250px;
  }
}
#page-wrapper .archives_list .post_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.875rem;
}
#page-wrapper .archives_list .post_ttl.under_line {
  padding-bottom: 1.875rem;
  border-bottom: solid 0.1875rem var(--black);
}
#page-wrapper .archives_list .archives_txt {
  margin-top: 1.875rem;
}
#page-wrapper .archives_list .content {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
}
#page-wrapper .archives_list .icon_wrap {
  display: block;
  width: 3%;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  #page-wrapper .archives_list .icon_wrap {
    width: 6%;
  }
}

/*====================================

common/_single.scss 

==================================== */
.post-article {
  position: relative;
}
.post-article .post-article__inner {
  width: 90%;
  max-width: 66rem;
  margin: 0 auto 12.5rem;
}
.post-article .ttl {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .post-article .ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.post-article .txt {
  margin-bottom: 5.3125rem;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .post-article .txt {
    margin-bottom: 45px;
  }
}
.post-article .link_single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .post-article .link_single {
    width: 100%;
  }
}

/*====================================

 　_top.scss 

==================================== */
#top-wrapper section {
  padding: 6.875rem 0;
}
#top-wrapper section:first-child .img_wrap {
  margin: 6% 0;
}
@media screen and (max-width: 767px) {
  #top-wrapper section:first-child .img_wrap {
    width: 97%;
    height: 45vh;
  }
}
#top-wrapper .top_inner {
  width: 90%;
  max-width: 66rem;
  margin: 0 auto;
}
#top-wrapper .flex_wrap {
  align-items: flex-end;
}
#top-wrapper .flex_wrap .flex_box:first-child {
  width: 60%;
}
@media screen and (max-width: 767px) {
  #top-wrapper .flex_wrap .flex_box:first-child {
    width: 100%;
  }
}
#top-wrapper .flex_wrap .flex_box:last-child {
  width: 40%;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  #top-wrapper .flex_wrap .flex_box:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #top-wrapper .flex_wrap .flex_box .txt:first-of-type {
    margin-top: 5rem;
  }
}
#top-wrapper .flex_wrap .flex_box .txt:last-of-type {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  #top-wrapper .flex_wrap .flex_box .txt:last-of-type {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  #top-wrapper .flex_wrap .flex_box .txt {
    text-align: center;
  }
}
#top-wrapper .mv_cp {
  font-size: 1.375rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #top-wrapper .mv_cp:nth-of-type(2) {
    text-align: right;
  }
}
#top-wrapper .cp {
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.5rem;
  bottom: 2%;
  border-right: solid 3px var(--gray-555);
  border-left: 0;
  padding-right: 0.625rem;
  padding-left: 0;
  top: 16%;
  right: auto;
  left: 0;
  height: max-content;
}
@media screen and (max-width: 767px) {
  #top-wrapper .cp {
    top: -40%;
    line-height: 1.3;
    font-size: 16px;
  }
}
#top-wrapper .ttl {
  position: absolute;
  background-color: rgba(0, 64, 151, 0.8);
  color: var(--white);
  padding: 0.625rem 3.125rem;
  bottom: 0;
  right: -1%;
  left: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #top-wrapper .ttl {
    right: 0;
  }
}
#top-wrapper .ttl.wide {
  padding: 0.3125rem 1.875rem;
  line-height: 1.3;
}
#top-wrapper section:first-child .ttl {
  right: 18%;
  bottom: 15%;
}
@media screen and (max-width: 767px) {
  #top-wrapper section:first-child .ttl {
    right: 0;
    bottom: 13%;
  }
}
#top-wrapper section:nth-of-type(2n+1):nth-of-type(n+3) .flex_wrap {
  flex-direction: row-reverse;
}
#top-wrapper section:nth-of-type(2n+1):nth-of-type(n+3) .flex_wrap .cp {
  border-left: solid 3px var(--gray-555);
  border-right: 0;
  padding-left: 0.625rem;
  padding-right: 0;
  right: 0;
  left: auto;
}
#top-wrapper section:nth-of-type(2n+1):nth-of-type(n+3) .flex_wrap .ttl {
  left: -2%;
  right: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #top-wrapper section:nth-of-type(2n+1):nth-of-type(n+3) .flex_wrap .ttl {
    left: 0%;
  }
}
#top-wrapper section:nth-of-type(2n+1):nth-of-type(n+3) .flex_wrap .img_wrap {
  margin-right: 7.5rem;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  #top-wrapper section:nth-of-type(2n+1):nth-of-type(n+3) .flex_wrap .img_wrap {
    margin-left: 10px;
  }
}
#top-wrapper section:nth-of-type(2n+1):nth-of-type(n+3) .flex_wrap .flex_box:last-child {
  padding-left: 0;
  padding-right: 1.25rem;
}
#top-wrapper .img_wrap {
  width: 80%;
  height: 53vh;
  margin-left: 7.5rem;
  margin-top: 30%;
}
@media screen and (max-width: 767px) {
  #top-wrapper .img_wrap {
    width: 78%;
    height: 35vh;
    margin-right: 10px;
    margin-left: auto;
    margin-top: 15%;
  }
}
#top-wrapper .post_date {
  font-size: 1rem;
  color: var(--lightgray);
  width: 100%;
  display: inline-block;
}
#top-wrapper .term {
  border: solid 0.0625rem var(--gray-555);
  border-radius: 0.3125rem;
  margin-right: 0.9375rem;
  padding: 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  #top-wrapper .term {
    padding: 0.3125rem 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  #top-wrapper .link_under_wrap {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  #top-wrapper .link_under_wrap .link_under {
    display: inline-block;
  }
}
#top-wrapper .dahome_section .flex_box .banner {
  position: relative;
  border: solid 0.0625rem var(--lightgray);
  margin-bottom: 3.125rem;
  padding: 1.875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  #top-wrapper .dahome_section .flex_box .banner {
    margin-top: 3.125rem;
  }
}
#top-wrapper .dahome_section .flex_box .banner:after {
  content: "";
  position: absolute;
  display: inline-block;
  border-right: solid 0.0625rem var(--main);
  border-bottom: solid 0.0625rem var(--main);
  width: 100%;
  height: 5.625rem;
  bottom: -0.625rem;
  right: -0.625rem;
  z-index: -1;
}
#top-wrapper .dahome_section .flex_box .banner a {
  justify-content: center;
}
#top-wrapper .dahome_section .flex_box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#top-wrapper .news_section .flex_wrap {
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #top-wrapper .news_section .flex_wrap {
    display: flex;
  }
}
#top-wrapper .news_section .flex_wrap .flex_box:first-child {
  width: 30%;
}
#top-wrapper .news_section .flex_wrap .flex_box:last-child {
  width: 70%;
}
@media screen and (max-width: 767px) {
  #top-wrapper .news_section .flex_wrap .flex_box:last-child {
    width: 100%;
    margin-right: 0;
    margin-left: auto;
  }
}
#top-wrapper .news_section .flex_wrap .flex_box .post_ttl {
  font-weight: normal;
  margin-bottom: 5%;
}
@media screen and (max-width: 767px) {
  #top-wrapper .news_section .flex_wrap .flex_box .post_ttl {
    margin-bottom: 10%;
  }
}
#top-wrapper .news_section .flex_wrap p.cp {
  right: auto;
  left: 0;
}
#top-wrapper .news_section .flex_wrap.post_under {
  margin-top: 0;
}
#top-wrapper .news_section li {
  border-bottom: solid 1px #aaa;
  width: 70%;
  margin-top: 3.125rem;
  padding-bottom: 2%;
}
@media screen and (max-width: 767px) {
  #top-wrapper .news_section li {
    width: 100%;
  }
}
#top-wrapper .news_section li:nth-child(1) {
  margin-top: 0;
}
#top-wrapper .news_section li:nth-child(2) {
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  #top-wrapper .news_section li:nth-child(2) {
    margin-left: 0;
  }
}
#top-wrapper .news_section li:nth-child(3) {
  margin-left: 10rem;
}
@media screen and (max-width: 767px) {
  #top-wrapper .news_section li:nth-child(3) {
    margin-left: 0;
  }
}
#top-wrapper .news_section .link_wrap {
  text-align: right;
  margin-right: 18.75rem;
}
@media screen and (max-width: 767px) {
  #top-wrapper .news_section .link_wrap {
    text-align: center;
    margin-right: 0;
  }
}
#top-wrapper section.magazine_section .flex_wrap {
  flex-direction: row;
  align-items: center;
}
#top-wrapper section.magazine_section .flex_wrap .flex_box {
  width: 40%;
}
@media screen and (max-width: 767px) {
  #top-wrapper section.magazine_section .flex_wrap .flex_box {
    width: 100%;
  }
}
#top-wrapper section.magazine_section .flex_wrap.ttl_wrap {
  flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  #top-wrapper section.magazine_section .flex_wrap.ttl_wrap {
    display: flex;
  }
}
#top-wrapper section.magazine_section .flex_wrap.ttl_wrap .ttl {
  left: auto;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #top-wrapper section.magazine_section .flex_wrap.ttl_wrap .ttl {
    right: auto;
  }
}
#top-wrapper section.magazine_section .flex_wrap.post_under {
  display: flex;
  flex-direction: unset;
  justify-content: space-between;
  padding-bottom: 2%;
}
#top-wrapper section.magazine_section .flex_wrap.post_under .flex_box {
  width: auto;
}
#top-wrapper section.magazine_section .sub_ttl {
  font-size: 1rem;
  margin: 0 auto 10%;
}
#top-wrapper section.magazine_section .ttl {
  background-color: transparent;
  border-left: solid 0.0625rem var(--lightgray);
  border-right: solid 0.0625rem var(--lightgray);
  position: relative;
  text-align: center;
  width: 23.375rem;
  color: var(--black);
}
#top-wrapper section.magazine_section .ttl:before, #top-wrapper section.magazine_section .ttl:after {
  content: "";
  border-top: solid 0.0625rem var(--lightgray);
  position: absolute;
  top: -32%;
  width: 11.8125rem;
}
#top-wrapper section.magazine_section .ttl:before {
  left: -0.125rem;
  transform: rotate(-10deg);
}
#top-wrapper section.magazine_section .ttl:after {
  right: -0.125rem;
  transform: rotate(10deg);
}
#top-wrapper section.magazine_section ul {
  justify-content: space-between;
  margin: 7.5rem 0;
}
#top-wrapper section.magazine_section li {
  width: 43%;
  border-bottom: solid 0.0625rem;
}
#top-wrapper section.magazine_section .post_ttl {
  margin-bottom: 3.125rem;
}

/*====================================

    _single-works_archives.scss

==================================== */
#single-works-wrapper .sub_header {
  width: 90%;
}
#single-works-wrapper .sub_header h2 {
  color: var(--lightgray);
  font-size: 1.25rem;
  margin: 14.375rem 0 9.375rem;
}
#single-works-wrapper .post-article .sub_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 12.5rem;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  #single-works-wrapper .post-article .sub_ttl {
    font-size: 16px;
    margin-top: 50px;
    margin-bottom: 10px;
  }
}
#single-works-wrapper .post-article .works_txt {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  #single-works-wrapper .post-article .works_txt {
    margin-top: 30px;
  }
}
#single-works-wrapper .post-article .works_rt .iframe_wrap {
  text-align: center;
}
#single-works-wrapper .post-article .works_rt .iframe_wrap iframe {
  width: 90%;
  height: 31.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  #single-works-wrapper .post-article .works_rt .iframe_wrap iframe {
    height: 200px;
  }
}
#single-works-wrapper .post-article .works_mdr .img_wrap {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #single-works-wrapper .post-article .works_mdr .img_wrap {
    width: 80%;
  }
}
#single-works-wrapper .post-article .works_info dl {
  margin-bottom: 0;
}
#single-works-wrapper .post-article .works_info dt,
#single-works-wrapper .post-article .works_info dd {
  display: inline-block;
  font-size: 1.25rem;
}
#single-works-wrapper .post-article .works_info dt {
  color: var(--lightgray);
  width: 10%;
}
@media screen and (max-width: 767px) {
  #single-works-wrapper .post-article .works_info dt {
    width: 20%;
  }
}
#single-works-wrapper .post-article .works_info .works_tag {
  border: solid 0.0625rem var(--lightgray);
  border-radius: 0.3125rem;
  padding: 0.3125rem;
  margin: 0 0.1875rem;
}

/*====================================

_single-event_archives.scss 

==================================== */
#single-event-wrapper .tab_content_wrap .content {
  padding: 1.25rem 0;
}
#single-event-wrapper .tab_content_wrap .event_summary_wrap .content {
  display: flex;
  align-items: center;
}
#single-event-wrapper .tab_content_wrap .event_summary_wrap .icon_wrap {
  display: block;
  width: 3%;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_summary_wrap .icon_wrap {
    width: 6%;
  }
}
#single-event-wrapper .tab_content_wrap .event_point_wrap .ttl {
  font-weight: bold;
  font-size: 1.25rem;
}
#single-event-wrapper .tab_content_wrap .event_point_wrap li {
  list-style: disc;
  font-size: 1.125rem;
  margin-left: 1.5625rem;
  line-height: 3;
}
#single-event-wrapper .tab_content_wrap .event_property_wrap dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 1.25rem 0 0;
}
#single-event-wrapper .tab_content_wrap .event_property_wrap dl dt,
#single-event-wrapper .tab_content_wrap .event_property_wrap dl dd {
  font-size: 1.125rem;
  margin-bottom: 0;
}
#single-event-wrapper .tab_content_wrap .event_property_wrap dl dt {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_property_wrap dl dt {
    width: 30%;
  }
}
#single-event-wrapper .tab_content_wrap .event_property_wrap dl dd {
  width: 80%;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_property_wrap dl dd {
    width: 70%;
  }
}
#single-event-wrapper .tab_content_wrap .event_property_wrap dl dd:nth-of-type(n+2) {
  margin-left: 20%;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_property_wrap dl dd:nth-of-type(n+2) {
    margin-left: 30%;
  }
}
#single-event-wrapper .tab_content_wrap .event_map_wrap dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 1.25rem 0 0;
}
#single-event-wrapper .tab_content_wrap .event_map_wrap dl dt,
#single-event-wrapper .tab_content_wrap .event_map_wrap dl dd {
  font-size: 1.125rem;
  margin-bottom: 0;
}
#single-event-wrapper .tab_content_wrap .event_map_wrap dl dt {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_map_wrap dl dt {
    width: 30%;
  }
}
#single-event-wrapper .tab_content_wrap .event_map_wrap dl dd {
  width: 80%;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_map_wrap dl dd {
    width: 70%;
  }
}
#single-event-wrapper .tab_content_wrap .event_map_wrap dl dd:nth-of-type(n+2) {
  margin-left: 20%;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_map_wrap dl dd:nth-of-type(n+2) {
    margin-left: 30%;
  }
}
#single-event-wrapper .tab_content_wrap .event_map_wrap dl dd.google_map iframe {
  width: 70%;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_map_wrap dl dd.google_map iframe {
    width: 100%;
    height: 250px;
  }
}
#single-event-wrapper .tab_content_wrap .event_map_wrap .sub_ttl {
  font-weight: bold;
  padding: 1.25rem 0;
}
#single-event-wrapper .tab_content_wrap .event_map_wrap .flex_wrap {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1%;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_map_wrap .flex_wrap {
    display: flex;
    justify-content: space-between;
  }
}
#single-event-wrapper .tab_content_wrap .event_map_wrap .flex_wrap::after {
  content: "";
  display: block;
  width: 160px;
}
#single-event-wrapper .tab_content_wrap .event_map_wrap .flex_box {
  width: 19%;
  margin-bottom: 3%;
}
@media screen and (max-width: 767px) {
  #single-event-wrapper .tab_content_wrap .event_map_wrap .flex_box {
    width: 49%;
  }
}
#single-event-wrapper .tab_content_wrap .event_map_wrap .img_wrap {
  width: 100%;
  height: 8.125rem;
}

/*====================================

_company.scss 

==================================== */
#company-wrapper h3 {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  #company-wrapper h3 {
    margin-top: 50px;
  }
}
#company-wrapper dl {
  border-top: solid 0.0625rem var(--lightgray);
  padding: 3.75rem 0;
  margin-bottom: 0;
}
#company-wrapper dl:last-of-type {
  border-bottom: solid 0.0625rem var(--lightgray);
}
#company-wrapper dt,
#company-wrapper dd {
  display: inline-block;
  font-size: 1.25rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #company-wrapper dt,
  #company-wrapper dd {
    display: block;
  }
}
#company-wrapper dt {
  width: 20%;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  #company-wrapper dt {
    width: 100%;
    margin-bottom: 40px;
  }
}
#company-wrapper .access_wrap:first-child {
  margin-bottom: 3.75rem;
}
#company-wrapper .access_wrap iframe {
  width: 37.5rem;
  height: 28.125rem;
}
@media screen and (max-width: 767px) {
  #company-wrapper .access_wrap iframe {
    width: 100%;
    height: 300px;
  }
}
#company-wrapper .flex_wrap {
  justify-content: space-between;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  #company-wrapper .flex_wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
#company-wrapper .flex_box {
  width: 28%;
}
#company-wrapper .flex_box:nth-child(4) {
  display: none;
}
@media screen and (max-width: 767px) {
  #company-wrapper .flex_box:nth-child(4) {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #company-wrapper .flex_box {
    width: 45%;
  }
}
#company-wrapper .staff_team {
  font-size: 1.125rem;
  color: var(--lightgray);
}
#company-wrapper .staff_name {
  font-size: 1.25rem;
}
#company-wrapper .staff_skill {
  border: solid 0.0625rem var(--lightgray);
  border-radius: 0.3125rem;
  padding: 0.125rem 0.625rem;
}
#company-wrapper .support_logo_wrap {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #company-wrapper .support_logo_wrap {
    width: 90%;
  }
}

/*====================================

_comfort.scss 

==================================== */
#comfort-wrapper section {
  padding: 5rem 0;
}
#comfort-wrapper section h3 {
  font-weight: bold;
  margin-bottom: 1.25rem;
}
#comfort-wrapper section h4 {
  font-size: 1.25rem;
  margin: 3.75rem 0 1.875rem;
}
#comfort-wrapper section p {
  margin-bottom: 1.875rem;
}
#comfort-wrapper dt,
#comfort-wrapper dd {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #comfort-wrapper dt,
  #comfort-wrapper dd {
    display: block;
  }
}
#comfort-wrapper dt {
  width: 15%;
}
@media screen and (max-width: 767px) {
  #comfort-wrapper dt {
    width: 100%;
  }
}
#comfort-wrapper dd {
  width: 84%;
}
@media screen and (max-width: 767px) {
  #comfort-wrapper dd {
    width: 100%;
  }
}
#comfort-wrapper .img_wrap {
  width: 60%;
  margin: 5rem auto;
}
@media screen and (max-width: 767px) {
  #comfort-wrapper .img_wrap {
    width: 80%;
  }
}
#comfort-wrapper .cmf_mv .img_wrap {
  position: relative;
  width: 100%;
}
#comfort-wrapper .cmf_mv .img_wrap::after {
  content: "";
  background-image: url(../img/excellent_housing_logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 3%;
  right: 3%;
  width: 15%;
  height: 100%;
}
#comfort-wrapper .about .flex_wrap {
  justify-content: space-between;
  align-items: start;
  gap: 1.875rem 0;
  margin: 5rem 0;
}
@media screen and (max-width: 767px) {
  #comfort-wrapper .about .flex_wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  #comfort-wrapper .about .flex_wrap::after {
    content: "";
    display: block;
    width: 30%;
    height: 0;
  }
}
#comfort-wrapper .about .flex_box {
  width: 16%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #comfort-wrapper .about .flex_box {
    width: 30%;
  }
}
#comfort-wrapper .about .flex_box .img_wrap {
  width: 70%;
  margin: 0 auto;
}
#comfort-wrapper .feature .contain {
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  #comfort-wrapper .feature .flex_wrap {
    display: flex;
  }
}
#comfort-wrapper .feature .flex_box {
  height: 50vh;
}
@media screen and (max-width: 767px) {
  #comfort-wrapper .feature .flex_box {
    height: 130px;
  }
}

/*====================================

_reason.scss 

==================================== */
#reason-wrapper section {
  padding: 5rem 0;
}
#reason-wrapper section h3 {
  font-weight: bold;
  margin-bottom: 1.25rem;
}
#reason-wrapper section h4 {
  font-size: 1.25rem;
  margin: 3.75rem 0 1.875rem;
}
#reason-wrapper section p {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  #reason-wrapper section p {
    line-height: 2.2;
  }
}
#reason-wrapper strong {
  font-weight: bold;
}
#reason-wrapper dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
}
#reason-wrapper dt, #reason-wrapper dd {
  font-size: 1.125rem;
  font-weight: normal;
  margin: 0;
  padding: 0.3em 0;
}
#reason-wrapper .img_wrap {
  width: 60%;
  margin: 5rem auto;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .img_wrap {
    width: 80%;
  }
}
#reason-wrapper .rsn_mv h3 {
  font-weight: normal;
}
#reason-wrapper .rsn_mv .img_wrap {
  position: relative;
  width: 100%;
}
#reason-wrapper .rsn_mv .img_wrap::after {
  content: "";
  background-image: url(../img/excellent_housing_logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 3%;
  right: 3%;
  width: 15%;
  height: 100%;
}
#reason-wrapper .feature {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .feature .flex_wrap {
    display: flex;
  }
}
#reason-wrapper .feature .flex_box {
  height: 45vh;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .feature .flex_box {
    height: 150px;
  }
}
#reason-wrapper .feature span {
  margin-top: 5rem;
}
#reason-wrapper .feature .attention {
  display: block;
  font-size: 1rem;
  text-align: center;
}
#reason-wrapper .feature .img_wrap:nth-of-type(3), #reason-wrapper .feature .img_wrap:nth-of-type(4) {
  margin-top: 0.625rem;
}
#reason-wrapper .feature .feature_hr {
  border-bottom: solid 0.125rem var(--black);
  padding-bottom: 0.3125rem;
  width: fit-content;
  font-weight: bold;
}
#reason-wrapper .feature .guarantee {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  margin: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .feature .guarantee {
    justify-content: space-between;
  }
}
#reason-wrapper .feature .guarantee .flex_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: solid 0.125rem var(--main-20);
  border-radius: 0.9375rem;
  color: var(--main-20);
  height: auto;
  width: 20%;
  margin-bottom: 0;
  padding: 1.25rem 0;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .feature .guarantee .flex_box {
    width: 30%;
  }
}
#reason-wrapper .feature .guarantee .flex_box span {
  font-weight: normal;
  margin-top: 0;
  font-size: 0.875rem;
}
#reason-wrapper .feature .link_box .arrow {
  width: 0.9375rem;
  margin-top: 0;
}
#reason-wrapper .voice .contain:last-child {
  margin-top: 5rem;
}
#reason-wrapper .voice .contain:last-child .flex_wrap {
  flex-direction: row-reverse;
}
#reason-wrapper .voice .flex_wrap {
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .voice .flex_wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
#reason-wrapper .voice .flex_box {
  padding: 2%;
}
#reason-wrapper .voice .flex_box:nth-of-type(1) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .voice .flex_box:nth-of-type(1) {
    width: 40%;
  }
}
#reason-wrapper .voice .flex_box:nth-of-type(2) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .voice .flex_box:nth-of-type(2) {
    width: 60%;
  }
}
#reason-wrapper .voice .flex_box:nth-of-type(3) {
  width: 60%;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .voice .flex_box:nth-of-type(3) {
    width: 100%;
  }
}
#reason-wrapper .voice dl {
  display: block;
}
#reason-wrapper .voice dt {
  padding-bottom: 0;
}
#reason-wrapper .voice dd {
  padding-top: 0;
}
#reason-wrapper .works .flex_wrap {
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#reason-wrapper .works .post_ttl {
  text-align: center;
}
#reason-wrapper .works .flex_box {
  width: 45%;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .works .flex_box {
    width: 100%;
  }
}
#reason-wrapper .works .flex_box:last-child {
  margin-bottom: 0;
}
#reason-wrapper .works .flex_box .swiper {
  height: 21.875rem;
}
#reason-wrapper .works .flex_box .swiper .img_wrap {
  margin: 0;
}
#reason-wrapper .works .flex_box .archives_txt {
  line-height: 2.5;
}
#reason-wrapper .works .icon_wrap {
  padding-bottom: 0.625rem;
}
#reason-wrapper .works .madori_noimage {
  margin: 1.5625rem;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .works .madori_noimage {
    margin: 30px;
  }
}
#reason-wrapper .faq .content {
  line-height: 2.5;
}
#reason-wrapper .event .link_under {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  margin: 5% auto;
}
@media screen and (max-width: 767px) {
  #reason-wrapper .event .link_under {
    width: 100%;
  }
}
#reason-wrapper .pdf_download {
  background: var(--main);
  color: var(--white);
  border-radius: 0.3125rem;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.3125rem 0.9375rem;
  border-radius: 5px;
  white-space: nowrap;
}
#reason-wrapper .pdf_download span {
  display: inline-block;
  width: 0.9375rem;
  margin-left: 0.625rem;
}

/*====================================

_contact.scss 

==================================== */
#contact-wrapper .table_form {
  margin: 0 auto;
}
#contact-wrapper .table_form .require {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
  padding: 0.1875rem 0.25rem;
  line-height: 1;
  color: var(--white);
  background-color: #d14563;
  border-radius: 0.1875rem;
}
#contact-wrapper .table_form th {
  font-size: 1.125rem;
  width: 25%;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  #contact-wrapper .table_form th {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  #contact-wrapper .table_form td {
    display: block;
    width: 100%;
  }
}
#contact-wrapper .table_form td input {
  display: block;
  width: 100%;
  font-size: 1.125rem;
}
#contact-wrapper .table_form td textarea {
  font-size: 1.125rem;
  width: 100%;
}
#contact-wrapper .agree_check {
  text-align: center;
}
#contact-wrapper .agree_check a {
  font-weight: normal;
  color: var(--main);
}
#contact-wrapper .agree_check p {
  margin-bottom: 1.875rem;
}
#contact-wrapper .area-btn-form {
  text-align: center;
}
#contact-wrapper .area-btn-form input {
  border: solid 1px var(--main);
  width: fit-content;
  margin: 2% auto;
  font-size: 1.125rem;
  color: var(--main);
  border-radius: 0.3125rem;
  padding: 0.625rem 3.125rem;
}

/*====================================

_confirm.scss 

==================================== */
#confirm-wrapper .table_form {
  margin: 5% auto;
  width: 90%;
}
#confirm-wrapper .table_form .require {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
  padding: 0.1875rem 0.25rem;
  line-height: 1;
  color: var(--white);
  background-color: #d14563;
  border-radius: 0.1875rem;
}
#confirm-wrapper .table_form th {
  width: 25%;
  font-weight: normal;
  font-size: 1.125rem;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  #confirm-wrapper .table_form th {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
}
#confirm-wrapper .table_form td {
  width: 60%;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  #confirm-wrapper .table_form td {
    display: block;
    width: 100%;
  }
}
#confirm-wrapper .agree_check {
  display: none;
}
#confirm-wrapper .area-btn-form {
  text-align: center;
}
#confirm-wrapper .area-btn-form input {
  border: solid 1px var(--main);
  width: fit-content;
  margin: 5% 2%;
  font-size: 1.125rem;
  color: var(--main);
  border-radius: 0.3125rem;
  padding: 0.625rem 3.125rem;
}
#confirm-wrapper .area-btn-form .send {
  background-color: var(--main);
  color: var(--white);
  font-weight: bold;
}

/*====================================

_complete.scss 

==================================== */
#complete-wrapper .content p {
  margin-bottom: 1.875rem;
}
#complete-wrapper .content p a {
  color: var(--main);
}

/*====================================

_policy.scss 

==================================== */
#policy-wrapper h3 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: normal;
  margin-top: 11.25rem;
}
#policy-wrapper h4 {
  font-size: 1.25rem;
  margin-top: 3.75rem;
}
#policy-wrapper p,
#policy-wrapper dt,
#policy-wrapper dd {
  font-size: 1.25rem;
}
#policy-wrapper dt {
  font-weight: normal;
}
#policy-wrapper dt::before {
  content: "・";
  margin-right: 0.625rem;
}
#policy-wrapper dd {
  margin-left: 1.875rem;
}
#policy-wrapper .privacy {
  width: 96%;
  margin: 0 auto;
}
#policy-wrapper .outline {
  margin-bottom: 3.75rem;
}
#policy-wrapper .number {
  counter-reset: number;
  list-style: none;
  padding-left: 0;
}
#policy-wrapper .number p {
  counter-increment: number;
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: 3.75rem;
}
#policy-wrapper .number p::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
}

/*====================================

 　_news.scss

==================================== */
@media screen and (max-width: 767px) {
  #news-wrapper .archives_list .flex_wrap {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  #news-wrapper .archives_list .flex_box {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  #news-wrapper .archives_list .thumbnail_wrap {
    height: 130px;
  }
}
@media screen and (max-width: 767px) {
  #news-wrapper .archives_list .post_ttl {
    font-size: 18px;
  }
}
#news-wrapper .tag_wrap .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/*====================================

_single-news_archives.scss 

==================================== */
#single-news-wrapper .post_date {
  font-size: 1.125rem;
  margin-bottom: 0.6875rem;
}
#single-news-wrapper .thumbnail_wrap {
  width: 50%;
  margin: 0.6875rem auto;
}
@media screen and (max-width: 767px) {
  #single-news-wrapper .thumbnail_wrap {
    width: 100%;
    height: 230px;
  }
}
#single-news-wrapper .tag {
  margin-left: 0;
}

/*====================================

_single-land_archives.scss 

==================================== */
#single-land-wrapper .point {
  position: relative;
  border: solid 0.0625rem var(--lightgray);
  text-align: left;
  margin-bottom: 3.125rem;
  padding: 1.25rem 0.625rem;
}
#single-land-wrapper .point::after {
  content: "";
  position: absolute;
  display: inline-block;
  border-right: solid 0.0625rem var(--main);
  border-bottom: solid 0.0625rem var(--main);
  width: 100%;
  height: 6.25rem;
  bottom: -0.625rem;
  right: -0.625rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .point::after {
    height: 8.125rem;
  }
}
#single-land-wrapper .post_date {
  font-size: 1.125rem;
  margin-bottom: 0.6875rem;
}
#single-land-wrapper .swiper {
  margin-top: 0.6875rem;
}
#single-land-wrapper .swiper_icon_wrap {
  width: 11%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .swiper_icon_wrap {
    width: 15%;
  }
}
#single-land-wrapper .land_summary_wrap dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 1.25rem 0 0;
}
#single-land-wrapper .land_summary_wrap dl dt,
#single-land-wrapper .land_summary_wrap dl dd {
  font-size: 1.125rem;
  margin-bottom: 0;
}
#single-land-wrapper .land_summary_wrap dl dt {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_summary_wrap dl dt {
    width: 30%;
  }
}
#single-land-wrapper .land_summary_wrap dl dd {
  width: 80%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_summary_wrap dl dd {
    width: 70%;
  }
}
#single-land-wrapper .land_summary_wrap dl dd:nth-of-type(n+2) {
  margin-left: 20%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_summary_wrap dl dd:nth-of-type(n+2) {
    margin-left: 30%;
  }
}
#single-land-wrapper .land_map_wrap {
  margin-bottom: 6.25rem;
}
#single-land-wrapper .land_map_wrap dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 1.25rem 0 0;
}
#single-land-wrapper .land_map_wrap dl dt,
#single-land-wrapper .land_map_wrap dl dd {
  font-size: 1.125rem;
  margin-bottom: 0;
}
#single-land-wrapper .land_map_wrap dl dt {
  width: 20%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_map_wrap dl dt {
    width: 30%;
  }
}
#single-land-wrapper .land_map_wrap dl dd {
  width: 80%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_map_wrap dl dd {
    width: 70%;
  }
}
#single-land-wrapper .land_map_wrap dl dd:nth-of-type(n+2) {
  margin-left: 20%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_map_wrap dl dd:nth-of-type(n+2) {
    margin-left: 30%;
  }
}
#single-land-wrapper .land_map_wrap dl dd.google_map {
  padding: 1.25rem 0 0;
}
#single-land-wrapper .land_map_wrap dl dd.google_map iframe {
  width: 70%;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_map_wrap dl dd.google_map iframe {
    width: 100%;
    height: 250px;
  }
}
#single-land-wrapper .land_map_wrap .sub_ttl {
  font-weight: bold;
  padding: 1.25rem 0;
}
#single-land-wrapper .land_map_wrap .flex_wrap {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_map_wrap .flex_wrap {
    display: flex;
    justify-content: space-between;
  }
}
#single-land-wrapper .land_map_wrap .flex_wrap::after {
  content: "";
  display: block;
  width: 160px;
}
#single-land-wrapper .land_map_wrap .flex_box {
  width: 19%;
  margin-bottom: 3%;
}
@media screen and (max-width: 767px) {
  #single-land-wrapper .land_map_wrap .flex_box {
    width: 49%;
    margin-bottom: 6%;
  }
}
#single-land-wrapper .land_map_wrap .img_wrap {
  width: 100%;
  height: 8.125rem;
}
#single-land-wrapper .nearby_name {
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 1.25rem;
}
#single-land-wrapper .nearby_name span {
  font-size: 0.875rem;
  font-weight: bold;
}
#single-land-wrapper .nearby_comment {
  font-size: 0.875rem;
}

/*====================================

_single-magazine_archives.scss 

==================================== */
#single-magazine-wrapper .post_date {
  font-size: 1.125rem;
  margin-bottom: 0.6875rem;
}
#single-magazine-wrapper .thumbnail_wrap {
  width: 50%;
  margin: 0.6875rem auto;
}
@media screen and (max-width: 767px) {
  #single-magazine-wrapper .thumbnail_wrap {
    width: 100%;
    height: 230px;
  }
}
#single-magazine-wrapper .tag {
  margin-left: 0;
}
#single-magazine-wrapper .post-article p {
  line-height: 2.5;
  margin-bottom: 3.75rem;
}
#single-magazine-wrapper .post-article table {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  #single-magazine-wrapper .post-article table th, #single-magazine-wrapper .post-article table td {
    font-size: 1.125rem;
  }
}

/*====================================

_search.scss 

==================================== */
#search-wrapper .search_inner {
  width: 90%;
  max-width: 66rem;
  margin: 0 auto 3.75rem;
}
#search-wrapper .sub_header h2 {
  font-size: 1.75rem;
  font-weight: normal;
  margin: 14.375rem 0 9.375rem;
}
#search-wrapper .search-result {
  margin-bottom: 2.5rem;
}
#search-wrapper .flex_wrap {
  flex-wrap: wrap;
  justify-content: space-between;
}
#search-wrapper .flex_box {
  width: 45%;
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  #search-wrapper .flex_box {
    width: 100%;
  }
}
#search-wrapper .thumbnail_wrap {
  height: 21.875rem;
}
#search-wrapper .post_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.875rem;
}
#search-wrapper .works_txt {
  margin-top: 1.875rem;
}
#search-wrapper .link_works {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #search-wrapper .link_works {
    width: 100%;
  }
}
#search-wrapper .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.75rem;
}
#search-wrapper .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0 4px;
  width: 34px;
  height: 34px;
  border-radius: 2px;
}
#search-wrapper .pagination .page-numbers.current {
  color: var(--white);
  background: var(--black);
}

/*====================================

_archive.scss 

==================================== */
#archive-wrapper .archive_inner {
  width: 90%;
  max-width: 66rem;
  margin: 0 auto 11.25rem;
}
#archive-wrapper .sub_header {
  max-width: 66rem;
  margin: 0 auto;
}
#archive-wrapper .sub_header h2 {
  font-size: 1.75rem;
  margin: 14.375rem 0 9.375rem;
}
#archive-wrapper .flex_wrap {
  flex-wrap: wrap;
  justify-content: space-between;
}
#archive-wrapper .flex_box {
  width: 45%;
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  #archive-wrapper .flex_box {
    width: 100%;
  }
}
#archive-wrapper .thumbnail_wrap {
  height: 21.875rem;
}
@media screen and (max-width: 767px) {
  #archive-wrapper .thumbnail_wrap {
    height: 250px;
  }
}
#archive-wrapper .post_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.875rem;
}
#archive-wrapper .works_txt {
  margin-top: 1.875rem;
}
#archive-wrapper .link_works {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #archive-wrapper .link_works {
    width: 100%;
  }
}
#archive-wrapper .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.75rem;
}
#archive-wrapper .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0 4px;
  width: 34px;
  height: 34px;
  border-radius: 2px;
}
#archive-wrapper .pagination .page-numbers.current {
  color: var(--white);
  background: var(--black);
}

/*====================================

_accordions.scss 

==================================== */
.accordion {
  margin-bottom: 0.4375rem;
  border-bottom: 0.125rem solid var(--main);
}
.accordion.f_accordion {
  max-width: 31.25rem;
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.625rem 0.625rem 0.625rem 0;
  color: var(--black);
  font-weight: normal;
  cursor: pointer;
  font-size: 1.25rem;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::before, .accordion summary::after {
  content: "";
  width: 0.125rem;
  height: 1.125rem;
  border-radius: 0.3125rem;
  background-color: var(--main);
}
.accordion summary::before {
  position: absolute;
  right: 0.625rem;
  rotate: 90deg;
}
.accordion summary::after {
  transition: rotate 0.3s;
}
.accordion[open] summary::after {
  rotate: 90deg;
}
.accordion[open] .content {
  transform: none;
  opacity: 1;
}
.accordion .content {
  transform: translateY(-0.625rem);
  opacity: 0;
  margin: 0;
  padding: 0.3125rem 0.3125rem 1.875rem;
  color: var(--black);
  transition: transform 0.5s, opacity 0.5s;
}
.accordion li {
  display: inline-flex;
  margin-right: 0.625rem;
}
.accordion li::before {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border: 2px solid var(--lightgray);
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
  margin: 0.8125rem 0.375rem 0 0;
}
.accordion li a {
  font-size: 1rem;
}

/*====================================

 　_hambuger-js.scss

==================================== */
body#page-wrapper .hamburger_overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 4.125rem;
  height: 4.125rem;
  border: none;
  background: var(--main);
  cursor: pointer;
  transition: 0.4s ease;
  z-index: 9000;
}
body#page-wrapper .hamburger_overlay:focus {
  outline: none;
}
body#page-wrapper .hamburger_overlay:focus-visible {
  outline: var(--lightgray) solid 0.0625rem;
}
body#page-wrapper .hamburger_overlay .line {
  position: absolute;
  left: 1.3125rem;
  width: 1.5rem;
  height: 0.0625rem;
  background-color: var(--white);
  transition: all 0.6s;
}
body#page-wrapper .hamburger_overlay .line:nth-of-type(1) {
  top: 1.5rem;
}
body#page-wrapper .hamburger_overlay .line:nth-of-type(2) {
  top: 2.5rem;
}
body#page-wrapper .hamburger_overlay.active .line {
  background-color: var(--white);
}
body#page-wrapper .hamburger_overlay.active .line:nth-of-type(1) {
  transform: translateY(0.5625rem) rotate(-45deg);
}
body#page-wrapper .hamburger_overlay.active .line:nth-of-type(2) {
  transform: translateY(-0.4375rem) rotate(45deg);
}
body#page-wrapper .nav_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 1000;
}
body#page-wrapper .nav_overlay .item {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: all 0.6s;
}
body#page-wrapper .nav_overlay .item a {
  color: var(--white);
}
body#page-wrapper .nav_overlay.active {
  visibility: visible;
  opacity: 1;
}
body#page-wrapper .nav_overlay.active .item {
  opacity: 1;
  transform: translateY(0);
}
body#page-wrapper .nav_overlay.active .item:nth-child(1) {
  transition-delay: 0.05s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(2) {
  transition-delay: 0.1s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(3) {
  transition-delay: 0.15s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(4) {
  transition-delay: 0.2s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(5) {
  transition-delay: 0.25s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(6) {
  transition-delay: 0.3s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(7) {
  transition-delay: 0.35s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(8) {
  transition-delay: 0.4s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(9) {
  transition-delay: 0.45s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(10) {
  transition-delay: 0.5s;
}
body#page-wrapper .nav_overlay.active .item:nth-child(11) {
  transition-delay: 0.5s;
}
body#page-wrapper .nav_overlay .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
body#page-wrapper .nav_overlay .list {
  margin: 0;
  padding: 0;
  list-style: none;
}
body#page-wrapper .nav_overlay .link {
  display: inline-block;
  padding: 0.625rem;
  color: var(--white);
  font-size: 1.375rem;
  text-decoration: none;
  transition: color 0.3s;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 3.75rem);
  transition: all 2s;
}
.fadein.scrollin {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.fadeinRight {
  opacity: 0;
  visibility: hidden;
  transform: translateX(3.75rem);
  transition: all 0.6s;
}
.fadeinRight.scrollinRight {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.swiper {
  height: 86vh;
}
@media screen and (max-width: 767px) {
  .swiper {
    height: 40vh;
  }
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: rgba(255, 255, 255, 0.6);
  width: 3.125rem;
  height: 3.125rem;
}
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(51, 51, 51, 0.8);
  border-radius: 50%;
  font-size: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (max-width: 767px) {
  .swiper .swiper-button-prev:after,
  .swiper .swiper-button-next:after {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
}

.swiper1,
.swiper2,
.swiper3,
.swiper4 {
  height: 86vh;
}
@media screen and (max-width: 767px) {
  .swiper1,
  .swiper2,
  .swiper3,
  .swiper4 {
    height: 40vh;
  }
}

.swiper1-button-prev,
.swiper1-button-next,
.swiper2-button-prev,
.swiper2-button-next,
.swiper3-button-prev,
.swiper3-button-next,
.swiper4-button-prev,
.swiper4-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  width: 3.125rem;
  height: 3.125rem;
}
.swiper1-button-prev.swiper-button-disabled,
.swiper1-button-next.swiper-button-disabled,
.swiper2-button-prev.swiper-button-disabled,
.swiper2-button-next.swiper-button-disabled,
.swiper3-button-prev.swiper-button-disabled,
.swiper3-button-next.swiper-button-disabled,
.swiper4-button-prev.swiper-button-disabled,
.swiper4-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper1-button-prev svg,
.swiper1-button-next svg,
.swiper2-button-prev svg,
.swiper2-button-next svg,
.swiper3-button-prev svg,
.swiper3-button-next svg,
.swiper4-button-prev svg,
.swiper4-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper1-button-prev:after,
.swiper1-button-next:after,
.swiper2-button-prev:after,
.swiper2-button-next:after,
.swiper3-button-prev:after,
.swiper3-button-next:after,
.swiper4-button-prev:after,
.swiper4-button-next:after {
  font-family: swiper-icons;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(51, 51, 51, 0.8);
  border-radius: 50%;
  font-size: 1rem;
  width: 2.1875rem;
  height: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .swiper1-button-prev:after,
  .swiper1-button-next:after,
  .swiper2-button-prev:after,
  .swiper2-button-next:after,
  .swiper3-button-prev:after,
  .swiper3-button-next:after,
  .swiper4-button-prev:after,
  .swiper4-button-next:after {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
}

.swiper1-button-prev,
.swiper2-button-prev,
.swiper3-button-prev,
.swiper4-button-prev {
  left: var(--swiper-navigation-sides-offset, 5px);
  right: auto;
}
.swiper1-button-prev:after,
.swiper2-button-prev:after,
.swiper3-button-prev:after,
.swiper4-button-prev:after {
  content: "prev";
}

.swiper1-button-next,
.swiper2-button-next,
.swiper3-button-next,
.swiper4-button-next {
  right: var(--swiper-navigation-sides-offset, 5px);
  left: auto;
}
.swiper1-button-next:after,
.swiper2-button-next:after,
.swiper3-button-next:after,
.swiper4-button-next:after {
  content: "next";
}

.slider-thumbnail {
  display: none;
}

#page-wrapper .modaal-container,
#reason-wrapper .modaal-container,
#single-event-wrapper .modaal-container {
  background: transparent;
  box-shadow: none;
}
#page-wrapper .modaal-content-container,
#reason-wrapper .modaal-content-container,
#single-event-wrapper .modaal-content-container {
  padding: 0;
}
#page-wrapper .modaal-content-container .thumbnail-wrapper,
#reason-wrapper .modaal-content-container .thumbnail-wrapper,
#single-event-wrapper .modaal-content-container .thumbnail-wrapper {
  display: flex;
  flex-wrap: wrap;
}
#page-wrapper .modaal-content-container .thumbnail-wrapper .slider_noimage,
#reason-wrapper .modaal-content-container .thumbnail-wrapper .slider_noimage,
#single-event-wrapper .modaal-content-container .thumbnail-wrapper .slider_noimage {
  color: var(--white);
  margin: 0 auto;
}
#page-wrapper .modaal-content-container .slide-thumbnail,
#reason-wrapper .modaal-content-container .slide-thumbnail,
#single-event-wrapper .modaal-content-container .slide-thumbnail {
  width: 25%;
  height: 12.5rem;
  padding: 0.0625rem;
}
@media screen and (max-width: 767px) {
  #page-wrapper .modaal-content-container .slide-thumbnail,
  #reason-wrapper .modaal-content-container .slide-thumbnail,
  #single-event-wrapper .modaal-content-container .slide-thumbnail {
    width: 33.3333333333%;
  }
}
#page-wrapper .modaal-close,
#reason-wrapper .modaal-close,
#single-event-wrapper .modaal-close {
  top: 5%;
  right: 10%;
}
#page-wrapper .lightboxOverlay,
#reason-wrapper .lightboxOverlay,
#single-event-wrapper .lightboxOverlay {
  z-index: 10000;
}

/*====================================

_viewmore.scss 

==================================== */
.view_more {
  text-align: center;
  position: relative;
}
.view_more::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30%;
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 0.625rem;
  height: 0.625rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) translateX(-50%) rotate(135deg);
  -webkit-transform: translateY(-25%) translateX(-50%) rotate(135deg);
}
.view_more button {
  background: transparent;
  font-size: 1.25rem;
  border: solid 0.0625rem var(--lightgray);
  padding: 0.625rem 3.125rem;
}

/*====================================

_scroll-top-js.scss 

==================================== */
#page-top {
  position: fixed;
  right: 1.5625rem;
  bottom: 0.3125rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 3%;
    bottom: 15%;
  }
}
#page-top.UpMove {
  animation: UpAnime 0.4s forwards;
}
#page-top.DownMove {
  animation: DownAnime 0.4s forwards;
}
#page-top a {
  position: relative;
  display: inline-block;
  width: 0.1875rem;
  height: 2.1875rem;
  margin-left: 0.53125rem;
  border-radius: 624.9375rem;
  background-color: var(--main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#page-top a::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 0.09375rem);
  width: 0.1875rem;
  height: 0.9375rem;
  border-radius: 624.9375rem;
  background-color: var(--main);
  transform: rotate(45deg);
  transform-origin: 50% 0.09375rem;
}
#page-top a::after {
  content: "";
  position: absolute;
  top: -0.9375rem;
  left: -1.875rem;
  right: -1.875rem;
  bottom: -0.9375rem;
  z-index: -1;
}
#page-top a:hover {
  transform: translateY(-0.9375rem);
}

/*====================================

    _tab.scss

==================================== */
.tab_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 6.25rem 0 0.9375rem;
  border-bottom: solid 3px var(--main);
}

.tab_content_wrap {
  margin-bottom: 6.25rem;
}

.tab {
  font-weight: normal;
  font-size: 1.25rem;
  text-align: center;
  width: 24%;
  margin-right: 1%;
  padding: 0.625rem;
  background-color: var(--lightgray);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tab {
    font-size: 14px;
  }
}
.tab:last-child {
  margin-right: 0;
}
.tab.tab_active {
  background-color: var(--main);
  color: var(--white);
}

.tab_content {
  display: none;
}
.tab_content.tab_show {
  display: block;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}