@charset "UTF-8";
/* ==================================================
 common.css
 base: bulma.css v0.9.4
================================================== */
/* ==================================================
 0.0 - Reset
-------------------------------------------------- */
/* --------------------------------------------------
 0.1 - Layout
-------------------------------------------------- */
html {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
body .off-canvas {
  position: fixed;
  overflow: hidden;
  height: 100%;
}

main {
  flex: 1 1 auto;
}

/* --------------------------------------------------
 0.2 - Typography
-------------------------------------------------- */
html {
  font-size: 62.5% !important;
  font-feature-settings: "palt";
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* --------------------------------------------------
 0.3 - Form
-------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: #202020;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  overflow: visible;
  border: none;
}

/* --------------------------------------------------
 0.4 - content
-------------------------------------------------- */
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-weight: 600;
  line-height: 1.2;
}
.content h1 {
  font-size: 2em;
}
.content h2 {
  font-size: 1.75em;
}
.content h3 {
  font-size: 1.5em;
}
.content h4 {
  font-size: 1.25em;
}
.content h5 {
  font-size: 1.125em;
}
.content h6 {
  font-size: 1em;
}
.content blockquote {
  border-left: 5px solid #7b8683;
}
.content table {
  max-width: 100%;
  width: 100%;
  margin: 16px auto 32px;
  border-width: 1px 0 0 1px !important;
  border-style: solid;
  border-color: #7b8683;
  border-collapse: separate;
  border-spacing: 0;
}
.content table tr:nth-child(even) > td {
  background: #f3f5f1;
}
.content table th,
.content table td {
  padding: 0.75em;
  border-style: solid;
  border-color: #7b8683;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}
.content table th {
  border-width: 0 1px 1px 0 !important;
  background: #ced6c9;
}
.content table td {
  border-width: 0 1px 1px 0 !important;
}
.content table caption {
  caption-side: bottom;
}
.content table caption.caption-side-top {
  caption-side: top;
}
.content.is-small {
  font-size: 1.4rem;
}
.content.is-normal {
  font-size: 1.6rem;
}
.content.is-large {
  font-size: 1.8rem;
}

/* ==================================================
 1.0 - Link
-------------------------------------------------- */
a {
  background-color: transparent;
  color: #202020;
  text-decoration: none;
  transition: color 0.5s ease;
}
a:hover, a:focus, a:active {
  color: #337a60;
  text-decoration: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  text-shadow: none;
  -moz-text-shadow: none;
  -webkit-text-shadow: none;
}
a:focus {
  outline: none;
}
a:hover, a:active {
  outline: 0;
}
a.light-color {
  color: #7b8683;
}
a.light-color:hover, a.light-color:focus, a.light-color:active {
  color: #337a60;
}

a.button {
  position: relative;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  align-items: flex-start;
  z-index: 1;
  width: 100%;
  max-width: 270px;
  height: 40px;
  margin: 13px auto;
  padding: 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  a.button {
    height: 45px;
  }
}
a.button.small {
  height: 30px;
  margin: 8px auto;
  padding: 0 10px;
  border-width: 2px;
}
@media screen and (min-width: 1024px) {
  a.button.small {
    max-width: 180px;
  }
}
a.button:hover, a.button:focus, a.button:active {
  opacity: 1;
  background-color: #202020;
  color: #ffffff;
}
a.button.disable {
  background-color: #202020 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ==================================================
 2.0 - Common
-------------------------------------------------- */
/* --------------------------------------------------
 2.1 - Layout
-------------------------------------------------- */
.site-wrap {
  position: relative;
  width: 100%;
  padding-top: 80px;
}
@media screen and (min-width: 769px) {
  .site-wrap {
    padding-top: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .site-wrap {
    padding-top: 130px;
  }
}

/* --------------------------------------------------
 2.2 - Other
-------------------------------------------------- */
.is-rounded {
  border-radius: 999px;
}

.ico-set,
.ico-arrow {
  display: flex;
  align-items: center;
  position: relative;
  height: 36px;
  padding: 0 32px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 1216px) {
  .ico-set,
  .ico-arrow {
    height: 40px;
    padding: 0 36px;
  }
}
.ico-set::before,
.ico-arrow::before {
  position: absolute;
  top: 0;
  width: 36px;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  content: "";
}
@media screen and (min-width: 1216px) {
  .ico-set::before,
  .ico-arrow::before {
    width: 40px;
    background-size: 14px 14px;
  }
}
.ico-set.ico-left,
.ico-arrow.ico-left {
  padding-right: 14px;
}
@media screen and (min-width: 1216px) {
  .ico-set.ico-left,
  .ico-arrow.ico-left {
    padding-right: 16px;
  }
}
.ico-set.ico-left::before,
.ico-arrow.ico-left::before {
  left: 0;
}
.ico-set.ico-right,
.ico-arrow.ico-right {
  padding-left: 14px;
}
@media screen and (min-width: 1216px) {
  .ico-set.ico-right,
  .ico-arrow.ico-right {
    padding-left: 16px;
  }
}
.ico-set.ico-right::before,
.ico-arrow.ico-right::before {
  right: 0;
}

.ico-arrow {
  padding: 0 54px 0 14px;
}
@media screen and (min-width: 1216px) {
  .ico-arrow {
    padding: 0 60px 0 16px;
  }
}
.ico-arrow::before {
  right: 0;
  background-image: url(../images/common/ico_arrow.svg);
  background-size: 16px 16px;
}
@media screen and (min-width: 1216px) {
  .ico-arrow::before {
    background-size: 20px 20px;
  }
}
.ico-arrow::after {
  position: absolute;
  top: 8px;
  right: 36px;
  width: 1px;
  height: 20px;
  background-color: #9fccbb;
  content: "";
}
@media screen and (min-width: 1216px) {
  .ico-arrow::after {
    top: 8px;
    right: 40px;
    height: 24px;
  }
}

.ico-arrow-left {
  position: relative;
  padding-left: 16px;
}
@media screen and (min-width: 1216px) {
  .ico-arrow-left {
    padding-left: 20px;
  }
}
.ico-arrow-left::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: url(../images/common/ico_arrow_right.svg) 50% 0 no-repeat;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 1216px) {
  .ico-arrow-left::before {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
}

/* ==================================================
 3.0 - Header
-------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
.site-header.move-up {
  animation: upAnimation 0.5s forwards;
}
.site-header.move-down {
  animation: downAnimation 0.5s forwards;
}
.site-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background-color: #ffffff;
}
.site-header-wrap::after {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -32px;
  left: 0;
  z-index: 1;
  width: 100%;
  content: "";
}
@media screen and (min-width: 769px) {
  .site-header-wrap {
    height: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .site-header-wrap {
    height: 130px;
  }
}

@keyframes upAnimation {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-150px);
  }
}
@keyframes downAnimation {
  from {
    opacity: 0;
    transform: translateY(-150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*  サイトメニュー展開時  */
.off-canvas .site-header-wrap::after {
  visibility: visible;
  opacity: 0.9;
  background-image: linear-gradient(#d9e4df, #d9e4df, transparent);
  transition: all 0.5s ease;
  transition-delay: 0.5s;
}

/* --------------------------------------------------
 3.1 - ロゴ
-------------------------------------------------- */
.hdr-branding {
  margin-top: 6px;
  z-index: 99;
}
@media screen and (min-width: 1024px) {
  .hdr-branding {
    margin-top: 0;
  }
}
.hdr-branding__item-link {
  display: block;
  width: 156px;
  margin: 0 16px;
}
@media screen and (min-width: 520px) {
  .hdr-branding__item-link {
    width: 180px;
  }
}
@media screen and (min-width: 769px) {
  .hdr-branding__item-link {
    width: 220px;
  }
}
@media screen and (min-width: 1216px) {
  .hdr-branding__item-link {
    width: 260px;
    margin: 0 32px;
  }
}

/* --------------------------------------------------
 3.2 - ヘッダーナビゲーション
-------------------------------------------------- */
.hdr {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  margin: 0 16px;
}
@media screen and (min-width: 1024px) {
  .hdr {
    align-self: flex-end;
  }
}
@media screen and (min-width: 1216px) {
  .hdr {
    margin: 0 32px;
  }
}

.hdr-utility {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .hdr-utility {
    position: absolute;
    top: 20px;
    right: 32px;
  }
}
.hdr-utility-wrap {
  display: flex;
  order: 1;
  z-index: 2;
}
.hdr-utility-nav {
  display: flex;
  z-index: 1;
}
.hdr-utility-nav__item-link {
  display: block;
  font-size: 1.3rem;
}
@media screen and (min-width: 1216px) {
  .hdr-utility-nav__item-link {
    font-size: 1.4rem;
  }
}
.hdr-utility-nav__item-link + .hdr-utility-nav__item-link {
  margin-left: 20px;
}
.hdr-utility-tel {
  background-color: #f3f5f1;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .hdr-utility-tel {
    margin-left: 25px;
  }
}
@media screen and (min-width: 1216px) {
  .hdr-utility-tel {
    margin-left: 30px;
    font-size: 1.6rem;
    letter-spacing: 0.075em;
  }
}
.hdr-utility-tel::before {
  background-image: url(../images/common/ico_phone.svg);
}
.hdr-utility-tel span {
  padding-left: 0.25em;
  font-size: smaller;
}

/* --------------------------------------------------
 3.3 - グローバルメニュー
-------------------------------------------------- */
.hdr-nav {
  margin-right: 10px;
}
.hdr-nav__list {
  display: flex;
}
.hdr-nav__items {
  line-height: 1.4;
}
.hdr-nav__items + .hdr-nav__items {
  margin-left: 32px;
}
@media screen and (min-width: 1216px) {
  .hdr-nav__items + .hdr-nav__items {
    margin-left: 46px;
  }
}
.hdr-nav__item-link {
  display: block;
  position: relative;
  padding-bottom: 1.5em;
  z-index: 1;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .hdr-nav__item-link {
    display: none;
  }
}

/*  サイトメニュー展開時  */
.off-canvas .hdr-nav {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 32px;
}
@media screen and (min-width: 1024px) {
  .off-canvas .hdr-nav {
    padding-right: 64px;
    padding-left: 64px;
  }
}
@media screen and (min-width: 1216px) {
  .off-canvas .hdr-nav {
    padding-right: 6%;
    padding-left: 6%;
  }
}
@media screen and (min-width: 1408px) {
  .off-canvas .hdr-nav {
    padding-right: 10%;
    padding-left: 10%;
  }
}
.off-canvas .hdr-nav__list {
  flex-wrap: wrap;
  justify-content: space-between;
}
.off-canvas .hdr-nav__items {
  width: 100%;
  margin: 0 0 32px;
}
@media screen and (min-width: 769px) {
  .off-canvas .hdr-nav__items {
    width: 33.3333%;
    margin-bottom: 64px;
  }
  .off-canvas .hdr-nav__items-department {
    width: 66.6666%;
  }
}
.off-canvas .hdr-nav__item-link {
  display: none;
}

/* --------------------------------------------------
 3.4 - メガメニュー
-------------------------------------------------- */
.hdr-mega {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 32px;
  left: 32px;
  margin: 0;
  padding: 32px;
}
@media screen and (min-width: 1024px) {
  .hdr-mega {
    max-width: 1024px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1216px) {
  .hdr-mega {
    max-width: 1216px;
    padding: 40px 64px;
  }
}
@media screen and (min-width: 1408px) {
  .hdr-mega {
    max-width: 1408px;
  }
}
.hdr-mega__heading {
  display: flex;
  justify-content: space-between;
  flex: none;
  width: 100%;
  padding-bottom: 48px;
  background: url(../images/common/bg_dots.svg) 0 100% repeat-x;
  background-size: 20px 20px;
}
.hdr-mega__heading.news-link, .hdr-mega__heading.contact-link {
  display: none;
}
@media screen and (min-width: 1216px) {
  .hdr-mega__heading {
    flex-direction: column;
    width: 25%;
    padding-right: 32px;
    padding-bottom: 0;
    background-position: 100% 0;
    background-repeat: repeat-y;
  }
}
.hdr-mega__heading-ttl {
  display: block;
  margin-bottom: 0.25em;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 1024px) {
  .hdr-mega__heading-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1216px) {
  .hdr-mega__heading-ttl {
    font-size: 2.2rem;
  }
}
.hdr-mega__heading-subttl {
  display: block;
  color: #3f9877;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media screen and (min-width: 1216px) {
  .hdr-mega__heading-subttl {
    font-size: 1.6rem;
  }
}
.hdr-mega__heading-link {
  display: inline-block;
  width: 8em;
  margin-top: 2em;
  font-size: 1.3rem;
  letter-spacing: -10rem;
  color: transparent;
}
.hdr-mega__heading-link::after {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  height: 100%;
  color: #202020;
  letter-spacing: normal;
  transition: color 0.5s ease;
  content: "ページを見る";
}
.hdr-mega__heading-link:hover, .hdr-mega__heading-link:focus, .hdr-mega__heading-link:active {
  color: transparent;
}
.hdr-mega__heading-link:hover::after, .hdr-mega__heading-link:focus::after, .hdr-mega__heading-link:active::after {
  color: #337a60;
}
.hdr-mega__list {
  flex-wrap: wrap;
  align-content: flex-start;
  flex: none;
  width: 100%;
  padding-top: 16px;
}
@media screen and (min-width: 1216px) {
  .hdr-mega__list {
    width: 75%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 16px;
  }
}
.hdr-mega__item {
  flex: none;
  width: 33.3333%;
}
.hdr-mega__item a {
  margin-left: 16px;
  padding-left: 5px;
  border-bottom: 1px solid #f3f5f1;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 1216px) {
  .hdr-mega__item a {
    font-size: 1.4rem;
  }
}
.hdr-mega-mask {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #337a60;
  pointer-events: none;
  transition: all 0.5s ease;
  transition-delay: 0.25s;
}

body:not(.off-canvas) .hdr-mega {
  transform: translateY(-5px);
  transition: all 0.5s ease;
}
body:not(.off-canvas) .hdr-nav__items:hover > .hdr-mega, body:not(.off-canvas) .hdr-nav__items:focus > .hdr-mega, body:not(.off-canvas) .hdr-nav__items:active > .hdr-mega {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  border-radius: 30px;
  box-shadow: 0 12px 60px 5px rgba(63, 152, 119, 0.1);
  -moz-box-shadow: 0 12px 60px 5px rgba(63, 152, 119, 0.1);
  -webkit-box-shadow: 0 12px 60px 5px rgba(63, 152, 119, 0.1);
  background-color: #ffffff;
  transition: all 0.5s ease;
  transition-delay: 0.5s;
}
body:not(.off-canvas) .hdr-nav__items:hover > .hdr-mega-mask, body:not(.off-canvas) .hdr-nav__items:focus > .hdr-mega-mask, body:not(.off-canvas) .hdr-nav__items:active > .hdr-mega-mask {
  visibility: visible;
  opacity: 0.2;
}

/*  サイトメニュー展開時  */
.off-canvas .hdr-mega {
  visibility: visible;
  opacity: 1;
  position: relative;
  right: unset;
  left: unset;
  padding: 0;
  /*  トグルボタン押下  */
}
@media screen and (max-width: 768px) {
  .off-canvas .hdr-mega {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .off-canvas .hdr-mega {
    margin-left: 0;
  }
}
.off-canvas .hdr-mega__heading {
  position: relative;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  margin-bottom: 32px;
  padding: 0;
  background: none;
}
.off-canvas .hdr-mega__heading::before {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background-color: #3f9877;
  content: "";
}
@media screen and (min-width: 1216px) {
  .off-canvas .hdr-mega__heading {
    flex-direction: row;
  }
}
.off-canvas .hdr-mega__heading-ttl, .off-canvas .hdr-mega__heading-subttl {
  display: none;
}
.off-canvas .hdr-mega__heading-link {
  width: auto;
  margin-top: 0;
  padding: 0;
  color: #202020;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .off-canvas .hdr-mega__heading-link {
    display: block;
    width: calc(100% - 16px);
  }
}
@media screen and (min-width: 1024px) {
  .off-canvas .hdr-mega__heading-link {
    font-size: 1.8rem;
  }
}
.off-canvas .hdr-mega__heading-link::before {
  right: 3px;
  left: unset;
}
@media screen and (min-width: 769px) {
  .off-canvas .hdr-mega__heading-link::before {
    display: none;
  }
}
.off-canvas .hdr-mega__heading-link::after {
  display: none;
}
.off-canvas .hdr-mega__heading-link:hover, .off-canvas .hdr-mega__heading-link:focus, .off-canvas .hdr-mega__heading-link:active {
  color: #337a60;
}
.off-canvas .hdr-mega__heading.news-link, .off-canvas .hdr-mega__heading.contact-link {
  order: 99;
  display: block;
  padding-top: 32px;
}
@media screen and (min-width: 769px) {
  .off-canvas .hdr-mega__heading.news-link, .off-canvas .hdr-mega__heading.contact-link {
    padding-top: calc(64px - 4rem);
  }
}
.off-canvas .hdr-mega__heading.news-link {
  order: 98;
}
@media screen and (min-width: 769px) {
  .off-canvas .hdr-mega__heading.news-link {
    padding-top: calc(64px - 2.5rem);
  }
}
.off-canvas .hdr-mega__heading-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .off-canvas .hdr-mega__heading-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: -16px;
    margin: -12px 0 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  .off-canvas .hdr-mega__heading-toggle::before, .off-canvas .hdr-mega__heading-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 999px;
    background-color: #9fccbb;
    content: "";
  }
  .off-canvas .hdr-mega__heading-toggle::before {
    margin: -1px 0 0 -6px;
    width: 12px;
    height: 2px;
  }
  .off-canvas .hdr-mega__heading-toggle::after {
    margin: -6px 0 0 -1px;
    width: 2px;
    height: 12px;
    transition: all 0.25s ease;
  }
}
.off-canvas .hdr-mega__checkbox:checked ~ .hdr-mega__heading .hdr-mega__heading-toggle::after {
  transform: rotate(90deg);
}
.off-canvas .hdr-mega__list {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .off-canvas .hdr-mega__list {
    display: none;
    width: auto;
  }
}
@media screen and (min-width: 769px) {
  .off-canvas .hdr-mega__list {
    display: flex !important;
    margin-top: 1.25rem;
    padding-left: 0;
  }
}
.off-canvas .hdr-mega__item {
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 769px) {
  .off-canvas .hdr-mega__item {
    padding-right: 2.5rem;
  }
}
.off-canvas .hdr-mega__item a {
  margin-left: 0;
  padding: 0;
  border-color: #3f9877;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .off-canvas .hdr-mega__item a {
    display: inline-block;
    width: auto;
    height: auto;
    border: none;
  }
  .off-canvas .hdr-mega__item a::before, .off-canvas .hdr-mega__item a::after {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .off-canvas .hdr-mega__list-department > .hdr-mega__item {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .off-canvas .hdr-mega__list-department > .hdr-mega__item {
    width: 33.3333%;
  }
}
.off-canvas .hdr-mega-mask {
  display: none !important;
}

/* --------------------------------------------------
 3.5 - 検索／サイトメニューボタン
-------------------------------------------------- */
.hdr-utility__btn {
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .hdr-utility__btn {
    width: fit-content;
    height: 27px;
    font-size: 1.15rem;
  }
}
@media screen and (min-width: 1216px) {
  .hdr-utility__btn {
    font-size: 1.4rem;
  }
}

.search__btn {
  visibility: visible;
  opacity: 1;
  background-color: #ced6c9;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (max-width: 519px) {
  .search__btn {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .search__btn {
    margin-left: 15px;
  }
}
@media screen and (min-width: 1216px) {
  .search__btn {
    margin-left: 20px;
  }
}
.search__btn::before {
  background-image: url(../images/common/ico_search.svg);
}
.search__btn:hover {
  color: #337a60;
}

.site-menu__btn {
  position: relative;
  z-index: 100;
  padding-right: 48px;
  padding-left: 14px;
  background-color: #3f9877;
  color: #ffffff;
}
@media screen and (max-width: 519px) {
  .site-menu__btn {
    padding-right: 44px;
  }
}
@media screen and (min-width: 520px) {
  .site-menu__btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media screen and (min-width: 1216px) {
  .site-menu__btn {
    padding-right: 60px;
    padding-left: 16px;
  }
}
.site-menu__btn::before {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 14px;
  width: calc(100% - 54px);
  height: 36px;
  color: transparent;
  content: "閉じる";
}
@media screen and (max-width: 768px) {
  .site-menu__btn::before {
    height: 27px;
  }
}
@media screen and (min-width: 1216px) {
  .site-menu__btn::before {
    left: 16px;
    width: calc(100% - 60px);
    height: 40px;
  }
}
.site-menu__btn::after {
  position: absolute;
  top: 8px;
  right: 40px;
  width: 1px;
  height: 20px;
  background-color: #65ac92;
  content: "";
}
@media screen and (max-width: 768px) {
  .site-menu__btn::after {
    top: 6px;
    right: 36px;
    height: 15px;
  }
}
@media screen and (min-width: 1216px) {
  .site-menu__btn::after {
    right: 46px;
    height: 24px;
  }
}
.site-menu__btn:hover {
  color: #9fccbb;
}
.site-menu__btn span,
.site-menu__btn span::before,
.site-menu__btn span::after {
  position: absolute;
  right: 14px;
  height: 2px;
  width: 14px;
  border-radius: 999px;
  background-color: #9fccbb;
}
@media screen and (min-width: 1216px) {
  .site-menu__btn span,
  .site-menu__btn span::before,
  .site-menu__btn span::after {
    right: 16px;
    width: 16px;
  }
}
.site-menu__btn span::before,
.site-menu__btn span::after {
  right: 0;
  transition-delay: 0.15s, 0s;
  transition-duration: 0.15s, 0.15s;
  content: "";
}
.site-menu__btn span::before {
  top: 4px;
  transition-property: top, transform;
}
@media screen and (min-width: 1216px) {
  .site-menu__btn span::before {
    top: 5px;
  }
}
.site-menu__btn span::after {
  bottom: 4px;
  transition-property: bottom, transform;
}
@media screen and (min-width: 1216px) {
  .site-menu__btn span::after {
    bottom: 5px;
  }
}

/*  サイトメニュー展開時  */
.off-canvas .search__btn {
  visibility: hidden;
  opacity: 0;
}
.off-canvas .site-menu__btn {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  color: transparent;
}
.off-canvas .site-menu__btn::before {
  color: #ffffff;
  transition: all 0.5s ease;
}
.off-canvas .site-menu__btn:hover::before {
  color: #9fccbb;
}
.off-canvas .site-menu__btn span {
  background-color: transparent;
}
.off-canvas .site-menu__btn span::before, .off-canvas .site-menu__btn span::after {
  transition-delay: 0s, 0.15s;
}
.off-canvas .site-menu__btn span::before {
  top: 0;
  transform: rotate(45deg);
}
.off-canvas .site-menu__btn span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* --------------------------------------------------
 3.6 - サイトメニュー
-------------------------------------------------- */
.site-menu::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: background-color 0.5s ease;
  pointer-events: none;
  content: "";
}
.site-menu__list {
  display: none !important;
}
.site-menu__item {
  flex: none;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 520px) {
  .site-menu__item {
    width: 50%;
  }
}
@media screen and (min-width: 769px) {
  .site-menu__item {
    width: 33.3333%;
  }
}
@media screen and (min-width: 1024px) {
  .site-menu__item {
    width: 25%;
  }
}
.site-menu__item a {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 1216px) {
  .site-menu__item a {
    font-size: 1.4rem;
  }
}

/*  サイトメニュー展開時  */
.off-canvas .site-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  padding: 112px 0 80px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (min-width: 769px) {
  .off-canvas .site-menu {
    padding-top: 142px;
  }
}
@media screen and (min-width: 1024px) {
  .off-canvas .site-menu {
    padding-top: 162px;
  }
}
.off-canvas .site-menu::before {
  background-color: #d9e4df;
}
.off-canvas .site-menu__list {
  display: flex !important;
}

/* --------------------------------------------------
 3.7 - 検索フォーム
-------------------------------------------------- */
.form-search {
  display: none;
  position: relative;
}
.form-search__input {
  width: 100%;
  height: 36px;
  margin-bottom: 32px;
  padding-left: 36px;
  border: 1px solid #3f9877;
  border-radius: 999px;
  background: #f3f5f1 url(../images/common/ico_search.svg) 14px 50% no-repeat;
  background-size: 14px 14px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
@media screen and (min-width: 1216px) {
  .form-search__input {
    height: 40px;
    background-size: 16px 16px;
  }
}
.form-search__input:focus {
  background-color: #ffffff;
  cursor: text;
}

/*  サイトメニュー展開時  */
.off-canvas .form-search {
  display: block;
  z-index: 1;
}

/* ==================================================
 4.0 - Footer
-------------------------------------------------- */
.site-footer {
  margin-top: 80px;
}
.site-footer-wrap {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 64px 0;
}
.site-footer-wrap::before, .site-footer-wrap::after {
  position: absolute;
  height: 20px;
  content: "";
}
.site-footer-wrap::before {
  top: 9px;
  right: 0;
  left: 140px;
  height: 2px;
  border-radius: 999px;
  background-color: #f3f5f1;
}
@media screen and (min-width: 769px) {
  .site-footer-wrap::before {
    left: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer-wrap::before {
    left: 180px;
  }
}
.site-footer-wrap::after {
  top: 0;
  left: 0;
  width: 140px;
  height: 20px;
  background: #ffffff url(../images/common/txt_tsunagu.png) 0 50% no-repeat;
  background-size: auto 14px;
}
@media screen and (min-width: 769px) {
  .site-footer-wrap::after {
    width: 160px;
    background-size: auto 16px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer-wrap::after {
    width: 180px;
    background-size: auto 18px;
  }
}

.ftr-wrap {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ftr-wrap {
    width: calc(100% - 264px);
  }
}

/* --------------------------------------------------
 4.1 - ロゴ
-------------------------------------------------- */
.ftr-branding {
  width: 200px;
  margin: 0 64px 20px 0;
}
.ftr-branding__item-link {
  display: block;
  width: 100%;
}

/* --------------------------------------------------
 4.2 - フッターインフォメーション
-------------------------------------------------- */
.ftr-info {
  margin-bottom: 20px;
}
.ftr-info__text {
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 2;
}
.ftr-info__btn {
  width: fit-content;
  height: 27px;
  padding-right: 40px;
  border: 1px solid #3f9877;
  box-shadow: 0 4px 6px 0 rgba(63, 152, 119, 0.1);
  -moz-box-shadow: 0 4px 6px 0 rgba(63, 152, 119, 0.1);
  -webkit-box-shadow: 0 4px 6px 0 rgba(63, 152, 119, 0.1);
  color: #3f9877;
  font-size: 1.25rem;
}
@media screen and (max-width: 519px) {
  .ftr-info__btn {
    font-size: 1.15rem;
  }
}
.ftr-info__btn::before {
  width: 27px;
  height: 27px;
  background-image: url(../images/common/ico_marker.svg);
  background-size: 12px 12px;
}
.ftr-info__btn::after {
  top: 6px;
  right: 27px;
  height: 15px;
}
.ftr-info__btn:hover, .ftr-info__btn:focus, .ftr-info__btn:active {
  color: #3f9877;
}

.legal-copyright {
  margin-top: 32px;
  font-size: 1.25rem;
}

/* --------------------------------------------------
 4.3 - フッターメニュー
-------------------------------------------------- */
.ftr-nav__list {
  display: flex;
  flex-direction: column;
}
.ftr-nav__item {
  margin-bottom: 0.25em;
}
.ftr-nav__item a {
  display: inline-block;
  font-size: 1.4rem;
}

/* ==================================================
 5.0 - Main
-------------------------------------------------- */
/* --------------------------------------------------
 5.1 - BreadCrumbs
-------------------------------------------------- */
.breadcrumbs {
  width: 100%;
  height: auto;
  padding: 10px 0;
  color: #7b8683;
  font-size: 1.3rem;
}
.breadcrumbs span {
  padding: 0;
}
.breadcrumbs span br {
  display: none;
}
.breadcrumbs span[property=name] {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumbs span.separator {
  position: relative;
  padding: 0 10px 0 3px;
  overflow: auto;
  color: transparent;
  font: 0/0;
  text-shadow: none;
}
.breadcrumbs span.separator:before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  margin-top: -3px;
  border-top: 1px solid #7b8683;
  border-right: 1px solid #7b8683;
  content: "";
}
.breadcrumbs span.separator:last-child {
  display: none;
}

/* ==================================================
 9.0 - Other
-------------------------------------------------- */
/* --------------------------------------------------
 9.1 - Waypoints
-------------------------------------------------- */
.animated {
  visibility: visible !important;
}

.delay {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-2 {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.delay-3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-4 {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.delay-5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-6 {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

.delay-7 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@media screen and (max-width: 768px) {
  .main-content .delay,
  .main-content .delay-1,
  .main-content .delay-2,
  .main-content .delay-3,
  .main-content .delay-4,
  .main-content .delay-5,
  .main-content .delay-6,
  .main-content .delay-7 {
    -webkit-animation-delay: 0;
    animation-delay: 0;
  }
}

/*# sourceMappingURL=common.css.map */
