/*====================================================
COMMON
====================================================*/
html {
  font-size: 62.5%;
}
body {
  font-size: 1.8rem;
  line-height: 1.6;
  font-family: YuGothic, 'Yu Gothic Medium', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meirio, sans-serif;
  font-weight: 500;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sp_display {
  display: none;
}
.tab-only {
  display: none;
}
a {
  transition: filter 0.3s;
}
a:hover {
  filter: opacity(0.7);
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
}
.second-inner {
  max-width: 945px;
  margin: 0 auto;
}
.grid {
  display: grid;
  justify-content: space-between;
}
sup {
  font-size: 55%;
  top: -0.9em;
}
main {
  margin-top: 8.5rem;
}
section {
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1450px) {
  main {
    margin-top: 5.859vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .inner {
    width: 95%;
  }
  .tab-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1vw;
  }
  body {
    font-family: sans-serif;
    overflow-x: hidden;
  }
  main {
    margin-top: 11.33vw;
  }
  a:hover {
    opacity: inherit;
    transition: inherit;
  }
  img {
    width: 100%;
  }
  .pc_display {
    display: none;
  }
  .sp_display {
    display: block;
  }
  .tab-only {
    display: none;
  }
  .inner {
    width: 90%;
  }
}

/*====================================================
HEADER
====================================================*/
.header {
  width: 100%;
  height: 8.5rem;
  align-items: stretch !important;
  padding: 0;
  background-color: #005331;
  z-index: 1000;
  position: fixed;
}
.header_logo {
  width: 21.25%;
  max-width: 40.8rem;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  background-color: #fff;
  background-position: right;
  background-repeat: no-repeat;
  height: auto;
  position: relative;
  padding-left: 5.2rem;
}
.header_logo::after {
  content: '';
  position: absolute;
  width: 11.4rem;
  height: 100%;
  background-color: #fff;
  left: calc(100% - 2px);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
.header_logo-link {
  width: 18.6rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.header-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 1.5%;
}
.header-menu_list {
  display: flex;
  justify-content: flex-start;
  width: auto;
  z-index: 1;
  position: relative;
  align-self: center;
  position: relative;
}
.header-menu_list-item-link {
  color: #fff;
  margin-right: 1.1em;
  padding-right: 1.1em;
  border-right: 1px solid;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.2;
  display: block;
  font-size: 1.8rem;
  white-space: nowrap;
}
.header-menu_list-item:last-child a {
  margin-right: 0em;
  padding-right: 0em;
  border-right: none;
}
.header-btn-area {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  height: 100%;
  align-items: center;
  padding: 0 2.4rem;
}
.header-contact {
  justify-content: center;
  align-items: center;
  padding: 0 1.4rem;
}
.header-contact_link {
  font-size: 2.2rem;
  background-color: #ffde00;
  padding: 0.5em 2.2em;
  border-radius: 9999px;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .header_logo {
    width: 15.5%;
  }
  .header-menu {
    padding-right: 1%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1450px) {
  .header_logo {
    padding-left: 3.59%;
  }
  .header-menu_list-item-link {
    font-size: 1.24vw;
  }
  .header-contact_link {
    font-size: 1.52vw;
  }
  .header {
    height: 5.86vw;
  }
  .header_logo::after {
    width: 7.86vw;
  }
  .header-menu {
    padding-right: 0.25%;
  }
  .header-contact {
    padding: 0 0.97%;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 11.33333333vw;
  }
  .header_logo-link {
    width: 25vw;
    position: relative;
    z-index: 2;
  }
  .header_logo::after {
    content: none;
  }
  .header-menu_list {
    position: fixed;
    display: block;
    width: 100%;
    top: 11.33333333vw;
    left: 100vw;
    background-color: #025331;
    box-sizing: border-box;
    padding: 11vw 5% 14vw;
    transition: left 0.5s;
  }
  .header-menu_list.active {
    left: 0;
  }
  .header-menu_list-item-link {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    line-height: 1.2;
    font-size: 4vw;
    border-bottom: 1px solid;
    padding-bottom: 4vw;
    text-align: center;
    position: relative;
    letter-spacing: 0.05em;
  }
  .header-menu_list-item-link::after {
    content: '';
    vertical-align: middle;
    position: absolute;
    top: 50%;
    margin-top: -2.5vw;
    right: 3.6vw;
    width: 1.9vw;
    height: 1.9vw;
    border-top: 0.13333333vw solid #fff;
    border-right: 0.13333333vw solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header-menu_list-item + li a {
    margin-top: 4vw;
  }
  .header_logo {
    font-size: 0;
    width: 33vw;
    padding: 0;
    justify-content: center;
  }
  .header_logo-link-img {
    width: auto;
    min-width: unset;
  }
  .header .toggle {
    display: block;
    position: fixed;
    right: 2.8vw;
    top: 3vw;
    width: 5.6vw;
    height: 6.5vw;
    cursor: pointer;
    z-index: 3;
    overflow: hidden;
  }
  .header .toggle span {
    display: block;
    position: absolute;
    width: 5.8vw;
    border-bottom: solid 0.6vw #fff;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    left: 0;
  }
  .header .toggle span:nth-child(1) {
    top: 0;
  }
  .header .toggle span:nth-child(2) {
    top: 1.9vw;
  }
  .header .toggle span:nth-child(3) {
    top: 3.8vw;
  }
  .header .toggle.active span:nth-child(1) {
    top: 1.9vw;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header .toggle.active span:nth-child(2),
  .header .toggle.active span:nth-child(3) {
    top: 1.9vw;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header-contact {
    padding: 0 19vw 0 0;
  }
  .header-contact_link {
    font-size: 3vw;
  }
}

/*====================================================
FOOTER
====================================================*/
.footer {
  background-color: #166f3a;
  color: #fff;
  padding: 2rem 0;
}
.footer_txt {
  margin-bottom: 1rem;
}
.footer_logo {
  margin-bottom: 3rem;
  display: inline-block;
}
.footer_links {
  justify-content: flex-end;
  gap: 0 1.4em;
}
.footer_link-anchor {
  font-size: 1.4rem;
  text-decoration: underline;
}
.footer_contact-link {
  text-decoration: underline;
}
.footer_copyright {
  text-align: center;
  border-top: 1px solid;
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    width: 30vw;
    margin-bottom: 4vw;
  }
  .footer_links {
    justify-content: flex-start;
  }
}

/*====================================================
DOCUMENT-LINK
====================================================*/
.document-link {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 16rem;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .document-link {
    bottom: 2vw;
    right: 2vw;
    width: 32.13vw;
  }
}

/*====================================================
BREADCRUMB
====================================================*/
.breadcrumb {
  font-size: 1.4rem;
  padding: 1.4em 0;
}
.breadcrumb_list {
  justify-content: flex-start;
  gap: 1.6em;
}
.breadcrumb_item {
  position: relative;
}
.breadcrumb_item + .breadcrumb_item::before {
  content: '>';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.2em;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0.9em 0;
    font-size: 3.2vw;
  }
  .breadcrumb_inner {
    width: 95%;
  }
  .breadcrumb_list {
    gap: 1.4em;
  }
  .breadcrumb_item + .breadcrumb_item::before {
    left: -0.9em;
    top: 45%;
  }
}

/*====================================================
ANCHOR
====================================================*/
.anchor {
  position: absolute;
  top: -8.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1450px) {
  .anchor {
    top: -5.859vw;
  }
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -11.33vw
  }
}