@charset "UTF-8";
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* reset
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-break: strict;
  -ms-line-break: strict;
  -webkit-line-break: strict;
}

body p, body span, body dl, h1, h2, h3, h4, h5, h6 {
  transform: rotate(0.03deg);
  -moz-transform: rotate(0.03deg);
  -ms-transform: rotate(0.03deg);
  -o-transform: rotate(0.03deg);
  -webkit-transform: rotate(0.03deg);
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

pre {
  white-space: pre-wrap;
}

/* common
---------------------------------------------------------------------------- */
/* common
---------------------------------------------------------------------------- */
/* weight */
.strong, strong {
  font-weight: 700;
}

/* color */
.col01 {
  color: #843434;
}

.col02 {
  color: #998632;
}

/* title */
.c-title {
  text-align: center;
  font-size: 3.4rem;
  line-height: 2.3529411765;
  font-weight: 700;
  color: #3F3C3C;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 4rem;
    line-height: 2;
    font-weight: 700;
  }
}

.c-subtitle {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: #3F3C3C;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767px) {
  .c-subtitle {
    font-size: 2.8rem;
    line-height: 2.1428571429;
    font-weight: 700;
  }
}

.c-title02 {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    font-weight: 700;
  }
}

.c-title03 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  background: #F5F6F5;
  padding: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-title03 {
    padding: 0.8rem;
  }
}

/* text */
.c-text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 400;
  }
}

/* Line */
.c-line {
  background: linear-gradient(rgba(255, 255, 255, 0) 60%, #CFC59B 60%);
}
.c-line.-white {
  background: linear-gradient(rgba(255, 255, 255, 0) 60%, #fff 60%);
}

/* hover */
.c-hover {
  display: block;
  transition: opacity 0.2s;
}

@media (hover: hover) {
  .c-hover:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-hover:active {
    text-decoration: none;
    opacity: 0.7;
  }
}
.c-hover_color {
  transition: 0.2s;
}

@media (hover: hover) {
  .c-hover_color:hover {
    background: #F0ECD9;
  }
  .c-hover_color:hover a {
    text-decoration: none;
  }
}
@media (hover: none) {
  .c-hover_color:active {
    background: #F0ECD9;
  }
  .c-hover_color:active a {
    text-decoration: none;
  }
}
/* button */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  width: 368px;
  height: 64px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  background: #998632;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-button {
    justify-content: flex-start;
    padding: 1rem 2.4rem;
    width: 28rem;
    height: 4.8rem;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
  }
}
.c-button:after {
  margin-top: 2px;
  top: 50%;
  right: 25px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 8px;
  width: 8px;
  border-color: #fff;
  transform: rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-button:after {
    margin-top: 0.1rem;
    right: 1.4rem;
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    position: absolute;
    height: 0.8rem;
    width: 0.8rem;
    border-color: #fff;
    transform: rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }
}

.btn_wrap .c-button {
  margin: 0 auto;
}

/* page-head */
.c-page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  height: 208px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-page-header {
    max-width: inherit;
    height: 10.8rem;
  }
}
.c-page-header .c-page__title {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .c-page-header .c-page__title {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    font-weight: 700;
    margin-bottom: 0;
  }
}
.c-page-header .c-page__description {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-page-header .c-page__description {
    display: none;
  }
}

/* breadcrumb */
.breadcrumb_wrap {
  padding: 1rem 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .breadcrumb_wrap {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
    margin-bottom: 0.8rem;
  }
}
.breadcrumb__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    gap: 0 2.2rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
.breadcrumb__item {
  position: relative;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item {
    white-space: nowrap;
    font-size: 0.9rem;
    line-height: 1.3333333333;
    font-weight: 400;
  }
}
.breadcrumb__item:after {
  position: absolute;
  right: -2.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "＞";
}
@media screen and (max-width: 767px) {
  .breadcrumb__item:after {
    right: -1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__item:last-of-type {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
.breadcrumb__item:last-of-type:after {
  display: none;
}

/* Comment Box */
.c-comment-box {
  position: relative;
  background: #DED8BD;
  padding: 24px 25px 24px 192px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-comment-box {
    padding: 1.2rem 1.6rem 1.6rem 1.6rem;
  }
}
.c-comment-box:before {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  background: url("../../images/common/img_comment_pc.png") no-repeat center center;
  background-size: 100% auto !important;
  width: 176px;
  height: 248px;
}
@media screen and (max-width: 767px) {
  .c-comment-box:before {
    left: 0.8rem;
    top: 0.4rem;
    background: url("../../images/common/img_comment_sp.png") no-repeat center center;
    width: 7.2rem;
    height: 8.4rem;
  }
}
.c-comment-box .lead {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-comment-box .lead {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    font-weight: 700;
    margin-bottom: 0.8rem;
    padding-left: 7rem;
    box-sizing: border-box;
  }
}
.c-comment-box .text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-comment-box .text {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 400;
  }
}

/* INTERVIEW
---------------------------------------------------------------------------- */
.c-interview-head .title {
  position: relative;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  font-weight: 700;
  padding-left: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-interview-head .title {
    font-size: 1.8rem;
    line-height: 1.2222222222;
    font-weight: 700;
    padding: 0.6rem 0 0.6rem 2.4rem;
  }
}
.c-interview-head .title:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 8px;
  height: 100%;
  background: #CFC59B;
}
@media screen and (max-width: 767px) {
  .c-interview-head .title:before {
    width: 0.8rem;
  }
}
.c-interview-head .name {
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  padding-left: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-interview-head .name {
    font-size: 1.6rem;
    line-height: 1.375;
    font-weight: 400;
    padding: 0.4rem 0 0.4rem 2.4rem;
  }
}
.c-interview-head .name:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 8px;
  height: 100%;
  background: #F0EEDA;
}
@media screen and (max-width: 767px) {
  .c-interview-head .name:before {
    width: 0.8rem;
  }
}
.c-interview-cnts__ttl {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 700;
  color: #998632;
  padding-left: 24px;
  margin-bottom: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-interview-cnts__ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
    padding-left: 2.4rem;
    margin-bottom: 0.8rem;
  }
}
.c-interview-cnts__ttl:before {
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  content: "";
  width: 16px;
  height: 4px;
  background: #998632;
}
@media screen and (max-width: 767px) {
  .c-interview-cnts__ttl:before {
    top: 1rem;
    width: 1.6rem;
    height: 0.4rem;
  }
}
.c-interview-cnts__txt {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-interview-cnts__txt {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 400;
  }
}
.c-interview-cnts .atten {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .c-interview-cnts .atten {
    margin-top: 0.8rem;
  }
}
.c-interview-cnts .atten-text {
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-interview-cnts .atten-text {
    font-size: 1.2rem;
    line-height: 1.3333333333;
    font-weight: 400;
  }
}

/* カテゴリー一覧
---------------------------------------------------------------------------- */
.c-category-box {
  background: #F5F6F5;
  box-sizing: border-box;
}
.c-category-box__ttl {
  width: 120px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  background: #3F3C3C;
  padding: 9px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-category-box__ttl {
    width: 12rem;
    padding: 0.8rem 0;
  }
}
.c-category-box .c-category-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 8px 8px;
  padding: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-category-box .c-category-list {
    gap: 0.8rem 0.8rem;
    padding: 1.6rem;
  }
}
.c-category-box .c-category-list__items {
  width: calc((100% - 32px) / 5);
  background: #fff;
  border: 1px solid #CCCCCC;
  border-left: 4px solid #CFC59B;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-category-box .c-category-list__items {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: stretch;
    flex-direction: column;
    width: calc((100% - 2.4rem) / 4);
    height: 3.2rem;
    border-left: 0.4rem solid #CFC59B;
  }
}
.c-category-box .c-category-list__items a, .c-category-box .c-category-list__items p {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 400;
  padding: 6px 0 6px 12px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-category-box .c-category-list__items a, .c-category-box .c-category-list__items p {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: stretch;
    flex-direction: column;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
    padding: 0 0 0 1rem;
  }
}
.c-category-box .c-category-list__items.current {
  background: #F0ECD9;
}

@media (hover: hover) {
  .c-category-list__items a:hover, .c-category-list__items p:hover {
    text-decoration: none;
    background: #F0ECD9;
  }
}
@media (hover: none) {
  .c-category-list__items a:active, .c-category-list__items p:active {
    text-decoration: none;
    background: #F0ECD9;
  }
}
/* ページャー */
.c-post-nav {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .c-post-nav {
    margin-top: 3.2rem;
  }
}
.c-post-nav__link {
  position: relative;
  width: 400px;
  height: 64px;
  border: 1px solid #CECDC9;
}
@media screen and (max-width: 767px) {
  .c-post-nav__link {
    width: calc((100% - 0.8rem) / 2);
    height: 4rem;
  }
}
.c-post-nav__link a {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 400;
  /*			@include devicePC {
  				&:hover{
  					text-decoration: none;
  					background: #F0ECD9;
  				}
  			}*/
  overflow: hidden;
}
.c-post-nav__link a span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-post-nav__link a {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
  }
}
.c-post-nav__link.-prev a {
  padding: 8px 16px 8px 45px;
}
@media screen and (max-width: 767px) {
  .c-post-nav__link.-prev a {
    padding: 0.4rem 0.8rem 0.4rem 2rem;
  }
}
.c-post-nav__link.-prev:after {
  top: 50%;
  left: 24px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 0.8rem;
  width: 0.8rem;
  border-color: #CECDC9;
  transform: rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width: 767px) {
  .c-post-nav__link.-prev:after {
    margin-top: 0;
    left: 0.8rem;
  }
}
.c-post-nav__link.-next a {
  padding: 8px 45px 8px 16px;
}
@media screen and (max-width: 767px) {
  .c-post-nav__link.-next a {
    padding: 0.4rem 2rem 0.4rem 0.8rem;
  }
}
.c-post-nav__link.-next:after {
  margin-top: 2px;
  top: 50%;
  right: 24px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 0.8rem;
  width: 0.8rem;
  border-color: #CECDC9;
  transform: rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-post-nav__link.-next:after {
    margin-top: 0;
    right: 0.8rem;
  }
}

@media (hover: hover) {
  .c-post-nav__link a:hover {
    text-decoration: none;
    background: #F0ECD9;
  }
}
@media (hover: none) {
  .c-post-nav__link a:active {
    text-decoration: none;
    background: #F0ECD9;
  }
}
.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 16px;
}
@media screen and (max-width: 767px) {
  .c-pager {
    gap: 0 0.8rem;
  }
}
.c-pager span,
.c-pager a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  border: 1px solid #CECDC9;
  box-sizing: border-box;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .c-pager span,
  .c-pager a {
    width: 4rem;
    height: 4rem;
  }
}
.c-pager .current,
.c-pager a:hover {
  background: #F0ECD9;
  text-decoration: none;
}
.c-pager .prev:before,
.c-pager .next:before,
.c-pager .last:before {
  margin-right: -3px;
  right: 50%;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 9px;
  width: 9px;
  border-color: #3F3C3C;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-pager .prev:before,
  .c-pager .next:before,
  .c-pager .last:before {
    margin-right: -0.3rem;
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    position: absolute;
    height: 0.8rem;
    width: 0.8rem;
    border-color: #3F3C3C;
    transform: rotate(-45deg);
  }
}
.c-pager .prev:before {
  margin-right: -8px;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .c-pager .prev:before {
    margin-right: -0.7rem;
  }
}
.c-pager .last:before {
  margin-right: 0.1rem;
}
.c-pager .last:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-right: -7px;
  display: block;
  content: "";
  width: 1px;
  height: 14px;
  background: #3F3C3C;
}
@media screen and (max-width: 767px) {
  .c-pager .last:after {
    margin-top: 0.1rem;
    margin-right: -0.8rem;
    height: 1.4rem;
  }
}

@media (hover: hover) {
  .c-pager a:hover {
    background: #F0ECD9;
    text-decoration: none;
  }
}
@media (hover: none) {
  .c-pager a:active {
    background: #F0ECD9;
    text-decoration: none;
  }
}
/*------------- .l-ft-contact -------------*/
.l-ft-contact {
  padding: 32px 46px 46px 46px;
  border: 2px solid #998632;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-ft-contact {
    width: calc(100% - 3.2rem);
    padding: 1.6rem;
    margin: 0 auto;
  }
}

.l-ft-contact-title {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-title {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.4545454545;
    font-weight: 700;
  }
}

.l-ft-contact-head {
  margin-bottom: 20px;
  padding-left: 183px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-head {
    flex-direction: column;
    margin-bottom: 1.6rem;
    padding-left: 0;
  }
}

.l-ft-contact-label {
  padding: 4px;
  background: #843434;
  color: #ffffff;
  font-weight: 400;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-label {
    height: 2.4rem;
    margin: 0 auto;
    padding: 0.5rem;
    margin-top: 0.5rem;
  }
}

.l-ft-contact-worry {
  padding-left: 183px;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-worry {
    padding-left: 0;
  }
}

.l-ft-contact-worry-image {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 191px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-worry-image {
    width: 8.6rem;
    top: 11.5rem;
    left: 0;
    z-index: -1;
  }
}

.l-ft-contact-worry-list {
  margin-bottom: 16px;
  padding: 10px 13px;
  background: #F5F6F5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 0;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-worry-list {
    flex-direction: column;
    gap: 0.2rem 0;
    margin-bottom: 0;
    padding: 0 0.8rem 0.6rem 5.6rem;
    background: none;
  }
}

.l-ft-contact-worry-item {
  color: #3F3C3C;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.44;
  display: flex;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-worry-item {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    font-weight: 700;
  }
}

.l-ft-contact-worry-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  margin-right: 4px;
  border-radius: 100%;
  background: #998632;
  width: 17px;
  height: 17px;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-worry-icon {
    margin-right: 4px;
    width: 1.6rem;
    height: 1.6rem;
  }
  .l-ft-contact-worry-icon img {
    width: 0.9rem;
  }
}

.l-ft-contact-tel {
  margin-bottom: 16px;
  padding-left: 183px;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-tel {
    padding-left: 0;
    margin-bottom: 1rem;
    background: #fff;
  }
  .l-ft-contact-tel .m-block {
    transition: 0.2s;
  }
}
@media screen and (min-width: 768px) {
  .l-ft-contact-tel .m-block {
    pointer-events: none;
  }
}

@media (hover: hover) {
  .l-ft-contact-tel .m-block:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .l-ft-contact-tel .m-block:active {
    opacity: 0.7;
  }
}
.l-ft-contact-tel-text {
  margin-top: 14px;
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-tel-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    font-weight: 400;
    margin-top: 0.5rem;
  }
}

.l-ft-contact-form {
  margin-bottom: 32px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-form {
    margin-bottom: 0;
  }
}
.l-ft-contact-form .m-btn-txt {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.25);
}

.l-ft-contact-form a {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: linear-gradient(180deg, #FFE600 0%, #F47500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-form a {
    box-shadow: none;
    height: auto;
    background: none;
  }
}

.l-ft-contact-period {
  padding: 0 32px 35px;
  background: #F5F6F5;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-period {
    margin-top: 1rem;
    padding: 0 0.8rem 1rem;
  }
}

.l-ft-contact-period-title {
  margin: 0 -32px;
  background: #843434;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-period-title {
    margin: 0 -0.8rem;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    height: 3.2rem;
  }
}

.l-ft-contact-period-item {
  padding-top: 19px;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-period-item {
    padding-top: 1rem;
  }
}
.l-ft-contact-period-item:nth-of-type(1) .l-ft-contact-period-item-title {
  margin-bottom: -8px;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-period-item:nth-of-type(1) .l-ft-contact-period-item-title {
    margin-bottom: 2.5rem !important;
  }
}

.l-ft-contact-period-item:last-child {
  margin-top: 12px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-period-item:last-child {
    margin-top: 0.5rem;
  }
}

.l-ft-contact-period-item-title {
  margin-bottom: -24px;
  color: #3F3C3C;
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-period-item-title {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 2.5rem;
  }
  .l-ft-contact-period-item-title.mb0 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (max-width: 767px) {
  .l-ft-contact-period-item-body img {
    display: block;
    margin: -1.6rem;
    width: calc(100% + 1.6rem);
  }
}
.l-ft-contact-period-item-att {
  margin-top: 17px;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.44;
}
@media screen and (max-width: 767px) {
  .l-ft-contact-period-item-att {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 2.5rem;
  }
}

/* layout
-----------------------------------------------------------------------------*/
@font-face {
  src: url("../../../assets/fonts/NotoSansJP-Bold.woff") format("woff"), url("../../../assets/fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url("../../../assets/fonts/NotoSansJP-Medium.woff") format("woff"), url("../../../assets/fonts/NotoSansJP-Medium.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url("../../../assets/fonts/NotoSansJP-Regular.woff") format("woff"), url("../../../assets/fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
/* base
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6595744681vw;
  }
}

body {
  position: relative;
  min-width: 1280px;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #3F3C3C;
  letter-spacing: 0;
  word-break: break-word;
  line-break: strict;
}

a {
  text-decoration: none;
  color: #3F3C3C;
}
@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: underline;
  }
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    max-width: inherit;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
* {
  word-break: break-all;
}

input,
textarea {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
}

/*------------- .l-pagebody -------------*/
main {
  position: relative;
}

.l-main {
  width: 100%;
  padding-top: 80px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 10.9rem !important;
  }
}

.l-container {
  width: 1136px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    display: block;
    width: 100%;
  }
}

.l-main-column {
  width: 816px;
}
@media screen and (max-width: 767px) {
  .l-main-column {
    width: 100%;
  }
}

.l-wrapper {
  width: 1136px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    width: 100%;
    padding: 0 1.6rem;
    box-sizing: border-box;
  }
}

.l-inner {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1.6rem;
    box-sizing: border-box;
  }
}

/*------------- .l-side-column -------------*/
.l-side-column {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .l-side-column {
    display: none;
  }
}

.l-side-column > * {
  margin-bottom: 32px;
}

.l-side-contents-title {
  margin-bottom: 16px;
  background: #F5F6F5;
  color: #3F3C3C;
  font-weight: 400;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.l-side-contact {
  border: 2px solid #998632;
}
.l-side-contact-txt01 {
  margin-top: -30px;
  width: 236px;
}
@media screen and (max-width: 767px) {
  .l-side-contact-txt01 {
    width: 100%;
  }
}
.l-side-contact-txt02 {
  text-align: center;
  width: calc(100% - 1.6rem);
  margin: 0 auto;
}
.l-side-contact-txt02 .tel-txt {
  margin-top: 3px;
  padding-left: 22px;
  display: inline-block;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  font-feature-settings: "palt";
}

.l-side-contact-button {
  margin: 6px 14px 14px 14px;
  background-image: linear-gradient(180deg, #FFE600, #F47500);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.l-side-contact-button .m-btn-txt {
  text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}

.l-side-search {
  padding: 8px 16px 16px;
  background: #F5F6F5;
}

.l-side-search .l-side-contents-title {
  margin-bottom: 8px;
}

.l-side-search-box {
  padding: 20px 16px 16px;
  background: #fff;
}

.l-side-search-box:not(:last-child) {
  margin-bottom: 16px;
}

.l-side-search-box-title {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1.4rem;
}

.l-side-search-box-item {
  border: 1px solid rgba(204, 204, 204, 0.8);
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .l-side-search-box-item:hover {
    background: #F0ECD9;
  }
  .l-side-search-box-item:hover a {
    text-decoration: none;
  }
}

.l-side-search-box-item:not(:last-child) {
  margin-bottom: 8px;
}

.l-side-search-box-item a {
  padding-left: 16px;
  border-left: 4px solid #CFC59B;
  color: #3F3C3C;
  font-weight: 400;
  font-size: 1.4rem;
  display: flex;
  height: 32px;
  align-items: center;
}

.l-side-button-item {
  border: 1px solid #CECDC9;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .l-side-button-item:hover {
    background: #F0ECD9;
  }
  .l-side-button-item:hover a {
    text-decoration: none;
  }
}

.l-side-button-item:not(:last-child) {
  margin-bottom: 8px;
}

.l-side-button-link {
  border-left: 4px solid #CFC59B;
  display: flex;
  align-items: center;
  height: 64px;
}

.l-side-button-item-text {
  padding-left: 16px;
  color: #3F3C3C;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.44;
}

.-job .l-side-button-item-text {
  font-size: 1.4rem;
}

.l-side-button-link-icon {
  margin-left: 13px;
}

.l-side-button-item-img {
  width: 83px;
  height: 100%;
}

.l-side-button-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-side-button-item-img + .l-side-button-item-text {
  padding-left: 8px;
}

.l-side-media-list {
  text-align: center;
  margin: 0 auto 24px auto;
}

.l-side-media-item {
  max-width: 282px;
  margin: 0 auto;
}

.l-side-media-image {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.l-side-access-map {
  margin-bottom: 17px;
}

.l-side-access-text01 {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.57;
}

.l-side-access-text02 {
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.83;
}
.l-side-access-text02 .small {
  font-size: 1.2rem;
}

.l-side-bnr-item {
  margin-bottom: 8px;
}

.l-side-bnr-point {
  margin-top: 32px;
}

.l-side-bnr-point-item {
  margin-bottom: 22px;
}

/*------------- .l-pagetop -------------*/
.l-pagetop {
  display: none;
  background: #BFBDB4;
  position: fixed;
  right: 0;
  bottom: 20px;
  width: 48px;
  height: 48px;
  z-index: 998;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 6rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}

/*------------- .l-header -------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-header {
    position: absolute;
  }
  .l-header .m_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.l-header-bar {
  width: 100%;
  min-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  height: 80px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-header-bar {
    min-width: inherit;
    flex-wrap: wrap;
    height: 100%;
  }
}

.l-header-lead {
  color: #3F3C3C;
  font-size: 1.1rem;
  line-height: 1.4545454545;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-header-lead {
    font-size: 0.9rem;
    line-height: 1.7777777778;
    font-weight: 400;
    padding-bottom: 0.5rem;
  }
}

.l-header-title {
  padding: 4px 0 0 16px;
  /*	width: 306px;*/
}
@media screen and (max-width: 767px) {
  .l-header-title {
    padding: 1rem 0 0 1rem;
    width: auto;
  }
}

.l-header-logo {
  margin-bottom: 4px;
  width: 286px;
}
@media screen and (max-width: 767px) {
  .l-header-logo {
    width: 15.6rem;
    margin-bottom: 0.4rem;
  }
}

.l-header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
}
.l-header__inner .l-header-badge {
  margin-left: 14px;
}
@media screen and (max-width: 767px) {
  .l-header__inner .l-header-badge {
    position: absolute;
    top: 0.7rem;
    left: 17rem;
    width: 7.1rem;
    margin-left: 0;
  }
}
.l-header__inner.h-nav .l-header-nav-pc-list {
  display: grid;
  grid-template-columns: 144px 152px 144px 144px;
}
.l-header__inner.h-nav .l-header-nav-pc-item {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  height: 40px;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .l-header__inner.h-nav .l-header-nav-pc-item:hover {
    background: #F0ECD9;
  }
}
.l-header__inner.h-nav .l-header-nav-pc .l-header-nav-link:hover {
  text-decoration: none;
}
.l-header__inner.h-nav .l-contact {
  width: 160px;
}
.l-header__inner.h-nav .l-contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  height: 40px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  background-image: -webkit-linear-gradient(#FFE600, #F47500);
}
.l-header__inner.h-nav .l-contact-tel {
  padding: 6px 0;
  text-align: center;
}
.l-header__inner.h-nav .l-contact-tel img {
  display: block;
  width: 152px;
}
@media screen and (min-width: 768px) {
  .l-header__inner.h-nav .l-contact-tel a {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner.h-nav .l-contact {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-header-nav-sp {
    width: 100%;
    background: #FAFAFA;
    box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.25);
  }
  .l-header-nav-sp-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
  }
  .l-header-nav-sp-item {
    text-align: center;
    width: 16.6666666667%;
    font-size: 0.9rem;
    line-height: 1.2222222222;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-direction: column;
    height: 5.2rem;
    border-right: 1px solid #E7E7E7;
  }
  .l-header-nav-sp-item:last-of-type {
    border-right: none;
  }
  .l-header-nav-sp-item.nav-sp-btn .l-header-nav-sp-icon {
    margin-bottom: 1rem;
  }
  .l-header-nav-sp-icon {
    margin-bottom: 0.5rem;
  }
  .l-header-nav-sp .l-header-nav-sp-button {
    background: none;
    border: none;
    font-size: 0.9rem;
    line-height: 1.2222222222;
    font-weight: 400;
    color: #3F3C3C;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-direction: column;
    height: 5.2rem;
  }
  .l-sp-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: calc(100% - 10rem);
    transform: translateX(100%);
    transition: 0.4s;
    z-index: 1001;
  }
  .l-sp-menu.open {
    transform: translateX(0);
  }
  .l-sp-menu__inner {
    width: 100%;
    background: #fff;
    margin: 0 0 0 auto;
  }
  .l-sp-menu .nav-sp-btn.-close {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    background: none;
    border: none;
    z-index: 3;
  }
  .l-sp-menu .nav-sp-btn.-close img {
    width: 1.4rem;
  }
  .l-sp-menu .l-nav {
    position: relative;
    padding: 5.6rem 1.6rem 4rem 1.6rem;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
  }
  .l-sp-menu .l-nav-item {
    padding: 0.8rem 0;
    border-top: 1px solid #CECDC9;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 400;
  }
  .l-sp-menu .l-nav-item .l-side-button-link-icon {
    display: inline-block;
    width: 2.3rem;
  }
  .l-sp-menu .l-nav-item .l-nav-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    height: 4.8rem;
    padding: 0 0 0 1.5rem;
    border-left: 4px solid #CFC59B;
    box-sizing: border-box;
  }
  .l-sp-menu .l-nav-item .l-nav-link.-no-link {
    border-left: 4px solid #D9D9D9;
  }
  .l-sp-menu .l-nav-child-list {
    margin-top: 0.8rem;
  }
  .l-sp-menu .l-nav-child-item {
    padding: 0.8rem 0;
    border-top: 1px solid #CECDC9;
  }
  .l-sp-menu .l-nav-child-item a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    height: 4.8rem;
    border-left: none;
    padding: 0 0 0 1.9rem;
  }
  .l-sp-menu .l-nav-child-item a:before {
    position: absolute;
    left: 0;
    top: 50%;
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    position: absolute;
    height: 0.9rem;
    width: 0.9rem;
    border-color: #CECDC9;
    transform: rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }
  .l-sp-menu .l-side-contact {
    margin: 3rem 0 2.5rem 0;
  }
  .l-sp-menu .l-side-contact-txt02 {
    display: block;
    margin: 0 1.2rem 0.5rem 1.2rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    transition: 0.2s;
  }
  .l-sp-menu .l-side-contact .tel-txt {
    width: 17rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
  }
  .l-sp-menu .l-side-contact-button {
    margin: 0.5rem 1.2rem 1.2rem 1.2rem;
  }
}
.h-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.nav-open .h-overlay {
  visibility: visible;
  opacity: 1;
}
.nav-open .l-header:before {
  visibility: visible;
  opacity: 1;
}

.is-fixed {
  position: fixed;
  left: 0;
}

@media (hover: hover) {
  .l-side-contact-txt02:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .l-side-contact-txt02:active {
    opacity: 0.7;
  }
}
/*------------- ..l-contact-header -------------*/
.l-contact-header {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .l-contact-header {
    margin-bottom: 2rem;
  }
}
.l-contact-header .h-logo {
  margin: 0 auto;
  width: 208px;
  padding: 29px 0 30px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-contact-header .h-logo {
    width: 16.4rem;
    padding: 1.6rem 0;
  }
}
.l-contact-header .page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  height: 80px;
  background: #F5F6F5;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-contact-header .page-title {
    height: 4.8rem;
  }
}
.l-contact-header .page-title .title {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-contact-header .page-title .title {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
  }
}

/*------------- .l-footer -------------*/
.l-footer {
  margin-top: 96px;
  padding: 67px 0 36px;
  box-shadow: 0px -4px 8px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 4.8rem;
    padding: 0 1.6rem 6.5rem;
  }
}
.l-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  margin: auto;
  width: 1136px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav {
    width: 100%;
    display: block;
  }
}
.l-footer-nav .l-nav-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 15px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-nav-list {
    display: block;
  }
}
.l-footer-nav .l-nav-column {
  width: 196px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-nav-column {
    width: 100%;
  }
}
.l-footer-nav .l-nav-item {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-nav-item {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 400;
    padding: 0.8rem 0;
    border-bottom: 1px solid #CECDC9;
  }
  .l-footer-nav .l-nav-item .l-nav-link {
    display: block;
    border-left: 4px solid #CFC59B;
    padding: 0.9rem 0 0.9rem 1.6rem;
    box-sizing: border-box;
  }
  .l-footer-nav .l-nav-item .l-nav-link.-no-link {
    border-left: 4px solid #D9D9D9;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-nav-child-list {
    margin-top: 0.8rem;
    border-top: 1px solid #CECDC9;
  }
}
.l-footer-nav .l-nav-child-item,
.l-footer-nav .l-nav .l-nav-item.-pc-child {
  position: relative;
}
.l-footer-nav .l-nav-child-item:before,
.l-footer-nav .l-nav .l-nav-item.-pc-child:before {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  content: "└";
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-nav-child-item,
  .l-footer-nav .l-nav .l-nav-item.-pc-child {
    padding: 0.8rem 0;
    border-bottom: 1px solid #CECDC9;
  }
  .l-footer-nav .l-nav-child-item:before,
  .l-footer-nav .l-nav .l-nav-item.-pc-child:before {
    display: none;
  }
  .l-footer-nav .l-nav-child-item:last-of-type,
  .l-footer-nav .l-nav .l-nav-item.-pc-child:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-nav-child-item a,
  .l-footer-nav .l-nav .l-nav-item.-pc-child a {
    position: relative;
    display: block;
    padding: 0.9rem 0 0.9rem 2rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-nav-child-item:before {
    position: absolute;
    left: -0.2rem;
    top: 50%;
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    position: absolute;
    height: 0.8rem;
    width: 0.8rem;
    border-color: #CECDC9;
    transform: rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }
}
.l-footer-info {
  width: 298px;
}
@media screen and (max-width: 767px) {
  .l-footer-info {
    width: 100%;
    margin: 1.7rem auto 0 auto;
  }
}
.l-footer-title .l-footer-logo {
  width: 296px;
}
@media screen and (max-width: 767px) {
  .l-footer-title .l-footer-logo {
    width: 29.5rem;
    margin: 0 auto;
  }
}
.l-footer-title .l-footer-lead {
  font-size: 1.1rem;
  line-height: 1.6363636364;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .l-footer-title .l-footer-lead {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
  }
}
.l-footer .l-footer-access-text {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-access-text a {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-access-text {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 400;
    letter-spacing: -0.045em;
  }
}
.l-footer .l-footer-access-link {
  display: block;
  margin-top: 16px;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-access-link {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 400;
  }
}
.l-footer .l-footer-access-link .l-footer-access-link-icon {
  position: relative;
  top: 2px;
  display: inline-block;
  line-height: 1;
  width: 16px;
  margin-right: 7px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-access-link .l-footer-access-link-icon {
    top: 0.2rem;
    width: 1.6rem;
    margin-right: 0.7rem;
  }
}

.l-footer-copy {
  margin-top: 60px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer-copy {
    margin-top: 2rem;
  }
}

.l-footer-copy p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer-copy p {
    font-size: 1rem;
    line-height: 2;
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  .sp-fixed {
    position: fixed;
    left: 0;
    bottom: -1px;
    width: 100%;
    background: #fff;
    z-index: 998;
  }
  .sp-fixed .fixed-btn {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    align-content: stretch;
  }
  .sp-fixed .fixed-btn__items {
    width: 50%;
  }
  .sp-fixed .fixed-btn__items a {
    transition: 0.2s;
  }
}
@media (hover: hover) {
  .sp-fixed .fixed-btn__items a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .sp-fixed .fixed-btn__items a:active {
    opacity: 0.7;
  }
}
/*------------- .l-contact-footer -------------*/
.l-contact-footer {
  padding: 2.4rem 0;
  box-sizing: border-box;
}
.l-contact-footer .l-footer-copy {
  margin-top: 0;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  font-weight: 400;
}

/* module
---------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* text
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .sptal {
    text-align: left !important;
  }
  .sptac {
    text-align: center !important;
  }
  .sptar {
    text-align: right !important;
  }
  .spfwb {
    font-weight: bold !important;
  }
}
/* margin
---------------------------------------------------------------------------- */
.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 767px) {
  .spmt100 {
    margin-top: 27.7777777778vw !important;
  }
  .spmb100 {
    margin-bottom: 27.7777777778vw !important;
  }
  .spml100 {
    margin-left: 27.7777777778vw !important;
  }
  .spmr100 {
    margin-right: 27.7777777778vw !important;
  }
  .spmt95 {
    margin-top: 26.3888888889vw !important;
  }
  .spmb95 {
    margin-bottom: 26.3888888889vw !important;
  }
  .spml95 {
    margin-left: 26.3888888889vw !important;
  }
  .spmr95 {
    margin-right: 26.3888888889vw !important;
  }
  .spmt90 {
    margin-top: 25vw !important;
  }
  .spmb90 {
    margin-bottom: 25vw !important;
  }
  .spml90 {
    margin-left: 25vw !important;
  }
  .spmr90 {
    margin-right: 25vw !important;
  }
  .spmt85 {
    margin-top: 23.6111111111vw !important;
  }
  .spmb85 {
    margin-bottom: 23.6111111111vw !important;
  }
  .spml85 {
    margin-left: 23.6111111111vw !important;
  }
  .spmr85 {
    margin-right: 23.6111111111vw !important;
  }
  .spmt80 {
    margin-top: 22.2222222222vw !important;
  }
  .spmb80 {
    margin-bottom: 22.2222222222vw !important;
  }
  .spml80 {
    margin-left: 22.2222222222vw !important;
  }
  .spmr80 {
    margin-right: 22.2222222222vw !important;
  }
  .spmt75 {
    margin-top: 20.8333333333vw !important;
  }
  .spmb75 {
    margin-bottom: 20.8333333333vw !important;
  }
  .spml75 {
    margin-left: 20.8333333333vw !important;
  }
  .spmr75 {
    margin-right: 20.8333333333vw !important;
  }
  .spmt70 {
    margin-top: 19.4444444444vw !important;
  }
  .spmb70 {
    margin-bottom: 19.4444444444vw !important;
  }
  .spml70 {
    margin-left: 19.4444444444vw !important;
  }
  .spmr70 {
    margin-right: 19.4444444444vw !important;
  }
  .spmt65 {
    margin-top: 18.0555555556vw !important;
  }
  .spmb65 {
    margin-bottom: 18.0555555556vw !important;
  }
  .spml65 {
    margin-left: 18.0555555556vw !important;
  }
  .spmr65 {
    margin-right: 18.0555555556vw !important;
  }
  .spmt60 {
    margin-top: 16.6666666667vw !important;
  }
  .spmb60 {
    margin-bottom: 16.6666666667vw !important;
  }
  .spml60 {
    margin-left: 16.6666666667vw !important;
  }
  .spmr60 {
    margin-right: 16.6666666667vw !important;
  }
  .spmt55 {
    margin-top: 15.2777777778vw !important;
  }
  .spmb55 {
    margin-bottom: 15.2777777778vw !important;
  }
  .spml55 {
    margin-left: 15.2777777778vw !important;
  }
  .spmr55 {
    margin-right: 15.2777777778vw !important;
  }
  .spmt50 {
    margin-top: 13.8888888889vw !important;
  }
  .spmb50 {
    margin-bottom: 13.8888888889vw !important;
  }
  .spml50 {
    margin-left: 13.8888888889vw !important;
  }
  .spmr50 {
    margin-right: 13.8888888889vw !important;
  }
  .spmt45 {
    margin-top: 12.5vw !important;
  }
  .spmb45 {
    margin-bottom: 12.5vw !important;
  }
  .spml45 {
    margin-left: 12.5vw !important;
  }
  .spmr45 {
    margin-right: 12.5vw !important;
  }
  .spmt40 {
    margin-top: 11.1111111111vw !important;
  }
  .spmb40 {
    margin-bottom: 11.1111111111vw !important;
  }
  .spml40 {
    margin-left: 11.1111111111vw !important;
  }
  .spmr40 {
    margin-right: 11.1111111111vw !important;
  }
  .spmt35 {
    margin-top: 9.7222222222vw !important;
  }
  .spmb35 {
    margin-bottom: 9.7222222222vw !important;
  }
  .spml35 {
    margin-left: 9.7222222222vw !important;
  }
  .spmr35 {
    margin-right: 9.7222222222vw !important;
  }
  .spmt30 {
    margin-top: 8.3333333333vw !important;
  }
  .spmb30 {
    margin-bottom: 8.3333333333vw !important;
  }
  .spml30 {
    margin-left: 8.3333333333vw !important;
  }
  .spmr30 {
    margin-right: 8.3333333333vw !important;
  }
  .spmt25 {
    margin-top: 6.9444444444vw !important;
  }
  .spmb25 {
    margin-bottom: 6.9444444444vw !important;
  }
  .spml25 {
    margin-left: 6.9444444444vw !important;
  }
  .spmr25 {
    margin-right: 6.9444444444vw !important;
  }
  .spmt20 {
    margin-top: 5.5555555556vw !important;
  }
  .spmb20 {
    margin-bottom: 5.5555555556vw !important;
  }
  .spml20 {
    margin-left: 5.5555555556vw !important;
  }
  .spmr20 {
    margin-right: 5.5555555556vw !important;
  }
  .spmt15 {
    margin-top: 4.1666666667vw !important;
  }
  .spmb15 {
    margin-bottom: 4.1666666667vw !important;
  }
  .spml15 {
    margin-left: 4.1666666667vw !important;
  }
  .spmr15 {
    margin-right: 4.1666666667vw !important;
  }
  .spmt10 {
    margin-top: 2.7777777778vw !important;
  }
  .spmb10 {
    margin-bottom: 2.7777777778vw !important;
  }
  .spml10 {
    margin-left: 2.7777777778vw !important;
  }
  .spmr10 {
    margin-right: 2.7777777778vw !important;
  }
  .spmt5 {
    margin-top: 1.3888888889vw !important;
  }
  .spmb5 {
    margin-bottom: 1.3888888889vw !important;
  }
  .spml5 {
    margin-left: 1.3888888889vw !important;
  }
  .spmr5 {
    margin-right: 1.3888888889vw !important;
  }
  .spmt0 {
    margin-top: 0vw !important;
  }
  .spmb0 {
    margin-bottom: 0vw !important;
  }
  .spml0 {
    margin-left: 0vw !important;
  }
  .spmr0 {
    margin-right: 0vw !important;
  }
}
/* padding
---------------------------------------------------------------------------- */
.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

@media screen and (max-width: 767px) {
  .sppt100 {
    padding-top: 27.7777777778vw !important;
  }
  .sppb100 {
    padding-bottom: 27.7777777778vw !important;
  }
  .sppl100 {
    padding-left: 27.7777777778vw !important;
  }
  .sppr100 {
    padding-right: 27.7777777778vw !important;
  }
  .sppt95 {
    padding-top: 26.3888888889vw !important;
  }
  .sppb95 {
    padding-bottom: 26.3888888889vw !important;
  }
  .sppl95 {
    padding-left: 26.3888888889vw !important;
  }
  .sppr95 {
    padding-right: 26.3888888889vw !important;
  }
  .sppt90 {
    padding-top: 25vw !important;
  }
  .sppb90 {
    padding-bottom: 25vw !important;
  }
  .sppl90 {
    padding-left: 25vw !important;
  }
  .sppr90 {
    padding-right: 25vw !important;
  }
  .sppt85 {
    padding-top: 23.6111111111vw !important;
  }
  .sppb85 {
    padding-bottom: 23.6111111111vw !important;
  }
  .sppl85 {
    padding-left: 23.6111111111vw !important;
  }
  .sppr85 {
    padding-right: 23.6111111111vw !important;
  }
  .sppt80 {
    padding-top: 22.2222222222vw !important;
  }
  .sppb80 {
    padding-bottom: 22.2222222222vw !important;
  }
  .sppl80 {
    padding-left: 22.2222222222vw !important;
  }
  .sppr80 {
    padding-right: 22.2222222222vw !important;
  }
  .sppt75 {
    padding-top: 20.8333333333vw !important;
  }
  .sppb75 {
    padding-bottom: 20.8333333333vw !important;
  }
  .sppl75 {
    padding-left: 20.8333333333vw !important;
  }
  .sppr75 {
    padding-right: 20.8333333333vw !important;
  }
  .sppt70 {
    padding-top: 19.4444444444vw !important;
  }
  .sppb70 {
    padding-bottom: 19.4444444444vw !important;
  }
  .sppl70 {
    padding-left: 19.4444444444vw !important;
  }
  .sppr70 {
    padding-right: 19.4444444444vw !important;
  }
  .sppt65 {
    padding-top: 18.0555555556vw !important;
  }
  .sppb65 {
    padding-bottom: 18.0555555556vw !important;
  }
  .sppl65 {
    padding-left: 18.0555555556vw !important;
  }
  .sppr65 {
    padding-right: 18.0555555556vw !important;
  }
  .sppt60 {
    padding-top: 16.6666666667vw !important;
  }
  .sppb60 {
    padding-bottom: 16.6666666667vw !important;
  }
  .sppl60 {
    padding-left: 16.6666666667vw !important;
  }
  .sppr60 {
    padding-right: 16.6666666667vw !important;
  }
  .sppt55 {
    padding-top: 15.2777777778vw !important;
  }
  .sppb55 {
    padding-bottom: 15.2777777778vw !important;
  }
  .sppl55 {
    padding-left: 15.2777777778vw !important;
  }
  .sppr55 {
    padding-right: 15.2777777778vw !important;
  }
  .sppt50 {
    padding-top: 13.8888888889vw !important;
  }
  .sppb50 {
    padding-bottom: 13.8888888889vw !important;
  }
  .sppl50 {
    padding-left: 13.8888888889vw !important;
  }
  .sppr50 {
    padding-right: 13.8888888889vw !important;
  }
  .sppt45 {
    padding-top: 12.5vw !important;
  }
  .sppb45 {
    padding-bottom: 12.5vw !important;
  }
  .sppl45 {
    padding-left: 12.5vw !important;
  }
  .sppr45 {
    padding-right: 12.5vw !important;
  }
  .sppt40 {
    padding-top: 11.1111111111vw !important;
  }
  .sppb40 {
    padding-bottom: 11.1111111111vw !important;
  }
  .sppl40 {
    padding-left: 11.1111111111vw !important;
  }
  .sppr40 {
    padding-right: 11.1111111111vw !important;
  }
  .sppt35 {
    padding-top: 9.7222222222vw !important;
  }
  .sppb35 {
    padding-bottom: 9.7222222222vw !important;
  }
  .sppl35 {
    padding-left: 9.7222222222vw !important;
  }
  .sppr35 {
    padding-right: 9.7222222222vw !important;
  }
  .sppt30 {
    padding-top: 8.3333333333vw !important;
  }
  .sppb30 {
    padding-bottom: 8.3333333333vw !important;
  }
  .sppl30 {
    padding-left: 8.3333333333vw !important;
  }
  .sppr30 {
    padding-right: 8.3333333333vw !important;
  }
  .sppt25 {
    padding-top: 6.9444444444vw !important;
  }
  .sppb25 {
    padding-bottom: 6.9444444444vw !important;
  }
  .sppl25 {
    padding-left: 6.9444444444vw !important;
  }
  .sppr25 {
    padding-right: 6.9444444444vw !important;
  }
  .sppt20 {
    padding-top: 5.5555555556vw !important;
  }
  .sppb20 {
    padding-bottom: 5.5555555556vw !important;
  }
  .sppl20 {
    padding-left: 5.5555555556vw !important;
  }
  .sppr20 {
    padding-right: 5.5555555556vw !important;
  }
  .sppt15 {
    padding-top: 4.1666666667vw !important;
  }
  .sppb15 {
    padding-bottom: 4.1666666667vw !important;
  }
  .sppl15 {
    padding-left: 4.1666666667vw !important;
  }
  .sppr15 {
    padding-right: 4.1666666667vw !important;
  }
  .sppt10 {
    padding-top: 2.7777777778vw !important;
  }
  .sppb10 {
    padding-bottom: 2.7777777778vw !important;
  }
  .sppl10 {
    padding-left: 2.7777777778vw !important;
  }
  .sppr10 {
    padding-right: 2.7777777778vw !important;
  }
  .sppt5 {
    padding-top: 1.3888888889vw !important;
  }
  .sppb5 {
    padding-bottom: 1.3888888889vw !important;
  }
  .sppl5 {
    padding-left: 1.3888888889vw !important;
  }
  .sppr5 {
    padding-right: 1.3888888889vw !important;
  }
  .sppt0 {
    padding-top: 0vw !important;
  }
  .sppb0 {
    padding-bottom: 0vw !important;
  }
  .sppl0 {
    padding-left: 0vw !important;
  }
  .sppr0 {
    padding-right: 0vw !important;
  }
}
/* print
---------------------------------------------------------------------------- */
/* print
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}