@charset "UTF-8";
/* 井桁藤採用-文字基本サイズ 16px */

/* @group web-font */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* @end */

/* @group symbol-icon */

.ai {
  padding-left: 5px;
}

.ai::after {
  content: "";
  display: inline-block;
}

.ai-out::after {
  background: url("../img/icn_out.svg") no-repeat center / 100% auto;
  height: .78em;
  width: .78em;
}

.ai-out-white::after {
  background: url("../img/icn_out_white.svg") no-repeat center / 100% auto;
  height: .78em;
  width: .78em;
}

.ai-pdf::after {
  background: url("../img/icn_pdf.svg") no-repeat center / 100% auto;
  height: 1em;
  width: 3.125em;
  position: relative;
  top: 2px;
}

.ai-mail::after {
  background: url("../img/icn_mail.svg") no-repeat center / 100% auto;
  height: 1em;
  width: 1em;
  position: relative;
  top: 2px;
}

/* @end */

/* @group CSS変数を定義 */

:root {
  --main: #4e9157;
  --sub: #568c6c;
  --light: #80c485;
  --normal: #1a1a1a;
  --red: #EB005F;
  --gothic: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuProN-W3",  'メイリオ','Meiryo', "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --mincho: "Noto Serif JP", serif;
  --fw-normal: 400;
  --fw-mid: 500;
  --fw-bold: 700;
  --fz-pc: 1.6rem;
  --fz-sp: 1.4rem;
  --wmax: 1170px;
  --wpc: 980px;
}

/* @end */

/* @group 初期設定 */

html {
  color: var(--normal);
  font-size: 10px;
}

html.drawer-open {
  overflow: hidden;
}

body {
  background-color: var(--main);
  font-family: var(--gothic);
  font-size: var(--fz-pc);
  min-height: 100vh;
  min-width: calc(var(--wpc) + 40px);
  -webkit-text-size-adjust: 100%;
  width: 100%;
}

p {
  line-height: 2.0;
  margin-bottom: 2em;
}

ul ol,
ol ul {
  font-size: 100% !important;
}

ul {
  list-style: none;
}

sup {
  vertical-align: top;
  font-size: 0.77em;
}

sub {
  vertical-align: baseline;
  font-size: 0.77em;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

label {
  cursor: pointer;
}

a {
  color: var(--normal);
  text-decoration: underline;
  transition: all .4s;
}

a:visited {
  color: var(--normal);
}

a:hover {
  color: var(--main);
}

a[href^="tel:"] {
  text-decoration: underline;
  cursor: default;
}

button {
  margin: 0;
  padding: 0;
}

a img, button, input[type="submit"] {
  transition: all .4s;
}


address {
  font-style: normal;
  line-height: 1.7;
}

*, ::before, ::after {
  box-sizing: border-box;
}

.clear {
  clear: both;
}

a[href^="tel:"] {
  cursor: default;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wpc);
}

/* @end */

/* @group header */

#header-area {
  background-color: #FFF;
  min-width: calc(var(--wpc) + 40px);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 70;
  transition: .4s;
}

#header-area.scroll {
  background-color: rgba(255, 255, 255, .95);
}

#header-area.scroll:not(.--up) {
  opacity: 0;
  visibility: hidden;
}

#header {
  display:flex;
  align-items: center;
  column-gap: 24px;
  max-width: calc(var(--wmax) + 40px);
  margin: 0 auto;
  padding: 20px 20px 0;
  position: relative;
}

#header #logo {
  position: relative;
  z-index: 1;
}

#header #logo a {
  display: block;
}

#header #copy {
  color: var(--main);
  font-family: var(--mincho);
  font-size: 2.2rem;
  font-weight: var(--fw-bold);
}

/* @end */

/* @group gnav */

#toggle-nav,
#drawer {
  display: none;
}

#gnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 26px auto 0;
  padding: 0 20px 30px;
  max-width: calc(var(--wmax) + 40px);
}

#gnav .gnav-lv1 {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 69%;
}

#gnav .gnav-lv1 li {
  border-left: 1px solid #656565;
  width: calc(100% / 5);
}

#gnav .gnav-lv1 li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--mincho);
  font-size: 1.7rem;
  line-height: 1.2;
  min-height: 38px;
  padding: .5em;
  text-decoration: none;
  position: relative;
}

#gnav .gnav-lv1 li a::before {
  background-color: var(--main);
  content: "";
  height: 2px;
  max-width: 134px;
  width: 100%;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all .4s;
}

#gnav .gnav-lv1 li a.current::before {
  opacity: 1;
}

.gnav-other {
  padding: 0 20px;
  position: absolute;
  top: 37px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: calc(var(--wmax) + 40px);
  min-width: calc(var(--wpc) + 40px);
}

#gnav .gnav-other ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 20px;
  margin-bottom: 0;
}

.gnav-other .link-list a {
  line-height: 1;
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}

.gnav-btn {
  width: 31%;
}

.gnav-btn ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 15px;
}

.gnav-btn [class*="btn-"] a,
.fnav-btn [class*="btn-"] a {
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.gnav-btn [class*="btn-"] a::before,
.fnav-btn [class*="btn-"] a::before {
  background-image: url("../img/icn_arrow_pc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 8px;
  width: 10px;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 17px;
}

.gnav-btn li {
  height: 40px;
  width: 100%;
}

.gnav-btn li a {
  background-color: #ffff00;
  border-radius: 20px;
  font-size: 1.4rem;
  width: 170px;
}

.gnav-btn li a:hover {
  background-color: var(--light);
  color: var(--normal);
}

.btn-entry a {
  background-image: url("../img/icn_entry.svg");
  background-position: 18px center;
  background-repeat: no-repeat;
  background-size: 1.35em auto;
}

.btn-event a {
  background-image: url("../img/icn_event.svg");
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 1.4em auto;
}

@media screen and (max-width: 1170px) {

  #gnav .gnav-lv1 {
    width: auto;
  }

  #gnav .gnav-lv1 li {
    width: auto;
  }

  #gnav .gnav-lv1 li a {
    font-size: clamp(1.45rem, 1.19vw, 1.7rem);
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

}

/* @end */

/* @group h1-area */

#h1-area {
  width: 100%;
}

#header-area + #h1-area {
  margin-top: 155px;
}

#h1-area h1:not(.title-img) {
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--mincho);
  font-size: 3.6rem;
  font-weight: var(--fw-normal);
  line-height: 1.5;
  height: 160px;
  max-width: 980px;
  margin: 0 auto !important;
  position: relative;
  letter-spacing: .02em;
}

#h1-area h1 span {
  position: relative;
}

#h1-area h1 span::before {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  top: calc(50% + 8px);
  left: 50%;
  transform-origin: left top;
  transform: translateX(-50%);
  z-index: -1;
}

#h1-area h1.title-work span::before {
  background-image: url("../img/txt_work.svg");
  height: 50px;
  width: 109px;
  left: calc(50% - 2px);
}

#h1-area h1.title-message span::before {
  background-image: url("../img/txt_message.svg");
  height: 55px;
  width: 189px;
  left: calc(50% - 10px);
}

#h1-area h1.title-voice span::before {
  background-image: url("../img/txt_voice.svg");
  height: 42px;
  width: 122px;
  top: calc(50% + 10px);
}

#h1-area h1.title-guideline span::before {
  background-image: url("../img/txt_guideline.svg");
  height: 59px;
  width: 291px;
  top: calc(50% + 3px);
}

#h1-area h1.title-career span::before {
  background-image: url("../img/txt_career.svg");
  height: 46px;
  width: 274px;
  top: calc(50% + 11px);
}

#h1-area h1.title-event span::before {
  background-image: url("../img/txt_event.svg");
  height: 43px;
  width: 126px;
}

#h1-area h1.title-entry span::before {
  background-image: url("../img/txt_entry.svg");
  height: 52px;
  width: 130px;
}

#h1-area h1.title-faq span::before {
  background-image: url("../img/txt_faq.svg");
  height: 62px;
  width: 152px;
  top: calc(50% + 2px);
}

#h1-area h1.title-sitemap span::before {
  background-image: url("../img/txt_sitemap.svg");
  height: 78px;
  width: 180px;
}

/* @end */

/* @group content-area */

/* @group breadcrumb */

#breadcrumb-area {
  width: 100%;
  margin-bottom: 77px;
}

#breadcrumb {
  padding: 25px 20px 0;
  line-height: 1.3;
  max-width: calc(var(--wpc) + 40px);
  margin: 0 auto;
  font-size: 12px;
}

#breadcrumb a:hover {
  text-decoration: none;
}

#breadcrumb ul{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

#breadcrumb ul li {
  padding-left: 25px;
  list-style: none;
  position: relative;
}

#breadcrumb ul li::before {
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
  display: block;
  height: 5px;
  width: 5px;
  left: 8px;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
}

#breadcrumb ul li:first-child {
  padding-left: 0;
}

#breadcrumb ul li:first-child::before {
  display: none;
}

/* @end */

/* @group main-content */

#main-content {
  line-height: 1.8;
  margin: 0 auto;
  padding: 0 20px 110px;
  width: var(--wpc);
}

.radius-box {
  background-color: #FFF;
  border-radius: clamp(50px, 5.33vw, 80px);
}

/* @group lead */
.lead {
  margin-bottom: 80px;
  text-align: center;
}

.lead p {
  color: #000;
  display: inline;
  font-family: var(--mincho);
  font-size: 3.0rem;
  line-height: 1.55;
  margin-bottom: 0;
  text-align: center;
}

/* @end */

/* @group heading */

#main-content h2,
#main-content h3,
#main-content h4,
#main-content h5 {
  color: var(--main);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin-bottom: 1.2em;
}

#main-content h2 {
  color: var(--sub);
  font-family: var(--mincho);
  font-size: 2.9rem;
  font-weight: var(--fw-normal);
  padding: 0 0 20px 0;
  text-align: center;
  position: relative;
}

#main-content h2::before {
  background: linear-gradient(90deg, var(--light) 50%, #FFF 50% , var(--main) calc(50% + 2px));
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

#main-content h3 {
  font-size: 2.0rem;
  border-bottom: 1px dotted var(--normal);
  padding: 0 0 .8em 0;
}

#main-content h4 {
  font-size: calc(var(--fz-pc) + 0.1rem);
  margin-bottom: 17px;
}

#main-content *:not(h2) + h3,
#main-content * + h4 {
  margin-top: 2em;
  margin-bottom: 1em;
}

/* @end */

section,
.section {
  margin-bottom: 100px;
}

#main-content > *:last-child,
section > *:last-child,
.section > *:last-child {
  margin-bottom: 0;
}

figure {
  margin-bottom: 1.5em;
}

strong {
  font-weight: var(--fw-bold);
}

/* @group pattern */

.caption {
  line-height: 1.5 !important;
  font-size: .9em;
}

figure img {
  border-radius: 20px;
  vertical-align: middle;
}

img.no-radius {
  border-radius: 0;
}

figure + .caption {
  margin-top: -.7em;
}

[class*="pattern1-"],
[class*="pattern2-"],
[class*="pattern3-"],
[class*="pattern4-"] {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 2em;
}

[class*="pattern1-"].reverse,
[class*="pattern2-"].reverse,
[class*="pattern3-"].reverse,
[class*="pattern4-"].reverse {
  flex-direction: row-reverse;
}

/* pattern1-1 */

.pattern1-1 [class*="col"] {
  flex-shrink: 0;
  width: calc((100% - 40px) / 2);
}

/* pattern1-2(2-1) */

.pattern1-2 [class*="col"]:nth-child(2n+1) {
  flex-shrink: 0;
  width: calc((100% - 40px) / 3);
}

.pattern1-2 [class*="col"]:nth-child(2n) {
  flex-shrink: 0;
  width: calc(((100% - 40px) / 3) * 2);
}

/* pattern2-3(3-2) */

.pattern2-3 [class*="col"]:nth-child(2n+1) {
  flex-shrink: 0;
  width: calc(((100% - 40px) / 5) * 2);
}

.pattern2-3 [class*="col"]:nth-child(2n) {
  flex-shrink: 0;
  width: calc(((100% - 40px) / 5) * 3);
}

/* pattern1-3(3-1) */

.pattern1-3 [class*="col"]:nth-child(2n+1) {
  flex-shrink: 0;
  width: calc((100% - 40px) / 4);
}

.pattern1-3 [class*="col"]:nth-child(2n) {
  flex-shrink: 0;
  width: calc(((100% - 40px) / 4) * 3);
}

/* pattern1-1-1 */

.pattern1-1-1 .col {
  flex-shrink: 0;
  width: calc((100% - (40px * 2)) / 3);
}

/* patterm1-1-1-1 */

.pattern1-1-1-1 .col {
  flex-shrink: 0;
  width: calc((100% - (40px * 3)) / 4);
}

/* 子要素の余白調整 */

#main-content [class*="pattern"] [class*="col"]:last-of-type,
#main-content [class*="pattern"] [class*="col"] > :last-child {
  margin-bottom: 0;
}

/* @end */

/* @group caution */

p.caution,
span.caution,
ul.caution li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  position: relative;
}

p.caution::before,
span.caution::before,
ul.caution li::before {
  content: "※";
  color: var(--red);
  margin-right: .2em;
}

ul.caution li {}

span.caution {
  display: inline-block;
}

ol.caution {
  counter-reset: cautionNum;
}

ol.caution li {
  padding-left: 2em;
}

ol.caution li::before {
  counter-increment: cautionNum;
  content: "※"counter(cautionNum);
  color: var(--red);
  margin-right: .2em;
}

/* @end */

/* @group ul */

ul.list,
ol {
  display: flex;
  flex-direction: column;
  row-gap: .6em;
  margin-bottom: 2em;
}

ul.list > li,
ul.list ul > li {
  line-height: 1.7;
  padding-left: 1.2em;
  position: relative;
}

ul.list > li::after,
ul.list ul > li::after {
  background-color: var(--main);
  border-radius: 50%;
  content: "";
  display: block;
  height: .45em;
  width: .45em;
  position: absolute;
  top: calc((1.7em - .45em) / 2);
  left: .2em;
}

ul.list ul,
ul.list ol,
ol ol,
ol ul.list {
  display: flex;
  flex-direction: column;
  row-gap: .5em;
  margin: .6em 0 0 .2em;
}

ul.list ul > li {
  margin-left: .1em;
  padding-left: 1em;
}

ul.list ul > li::after {
  left: 0;
}

#main-content li > *:not(ul):not(ol):last-child {
  margin-bottom: 0;
}

ul.list.list-white > li {
  color: #fff;
}

ul.list.list-white > li::after {
  background-color: #fff;
}

/* @end */

/* @group ol */

ol {
  counter-reset: li;
}

ol > li {
  list-style: none;
  padding-left: 1.2em;
  line-height: 1.7;
  position: relative;
}

ol > li::before {
  color: var(--main);
  content: counter(li, decimal) ". ";
  counter-increment: li;
  font-size: 1em;
  font-weight: var(--fw-mid);
  position: absolute;
  top: 0;
  left: 0;
}

ul.list ol,
ol ol {
  margin-left: .3em;
  counter-reset: li-child;
}

ul.list ol > li::before,
ol ol > li::before {
  color: var(--main);
  content: counter(li-child, decimal) ". ";
  counter-increment: li-child;
  font-size: 1em;
  font-weight: var(--fw-mid);
  position: absolute;
  top: 0;
  left: .1em;
}

/* @end */

/* @group link */

.link,
ul.link-list li {
  line-height: 1;
}

.link a,
ul.link-list li a {
  line-height: 1.8;
  padding-left: 1.1em;
  position: relative;
}

.link a::before,
ul.link-list li a::before {
  background-image: url("../img/icn_link.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: .875em;
  width: .875em;;
  margin: auto;
  position: absolute;
  top: calc((1.8em - .875em) / 2);
  left: 0;
}

/* @group link-list */

.link-list {
  row-gap: 1em;
}

/* @end */

/* @group link-btn */

.link-btn {
  display: inline-block;
}

.link-btn a,
a .link-btn > span {
  background-color: #FFF;
  border: 1px solid var(--main);
  border-radius: 2em;
  color: var(--normal);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: .06em;
  line-height: 1.5;
  min-height: 40px;
  min-width: 180px;
  padding: .5em 2.3em .5em 1.3em;
  text-decoration: none;
  position: relative;
  transition: .4s;
}

.link-btn a::before,
a .link-btn > span::before {
  background-image: url("../img/icn_arrow_pc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 8px;
  width: 10px;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
}

.link-btn a:hover,
a:hover .link-btn > span {
  background-color: var(--light);
}

.link-btn a:has(.ai-pdf),
.link-btn a:has(.ai-out) {
  background-image: none;
  padding-right: 1.3em;
}

.link-btn a:has(.ai-pdf)::before,
.link-btn a:has(.ai-out)::before {
  background-image: none;
}

.link-btn a .ai-out::after {
  height: 14px;
  width: 14px;
}

/* @end */

/* @end of link */

/* @group dl */

dl {}
dl dt {}
#main-content dl dd {}

/* @end */

/* @group table */

table {
  border-color: var(--sub);
  border-style: solid;
  border-width: 1px 1px 0 0;
  line-height: 1.6;
  margin-bottom: 2em;
  width: 100%;
}

table th,
table td {
  border-color: var(--sub);
  border-style: solid;
  border-width: 0 0 1px 1px;
  padding: .7em 1.2em;
}

table th {
  background-color: #E6F4E7;
  color: var(--main);
  text-align: left;
  font-weight: var(--fw-mid);
}

/* @end */

/* @group anchor-link */

ul.link-anchor {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 25px;
  margin-bottom: 70px;
}

ul.link-anchor li {
  min-height: 45px;
  width: calc((100% - (40px * 2)) / 3);
}

ul.link-anchor li a {
  border: 2px solid var(--sub);
  border-radius: 2em;
  color: var(--normal);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: var(--fw-mid);
  line-height: 1.4;
  height: 100%;
  padding: .5em 1.8em;
  text-decoration: none;
  text-align: center;
  position: relative;
}

ul.link-anchor li a::before {
  background-image: url("../img/icn_arrow_pc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 8px;
  width: 10px;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  transform: rotate(90deg);
}

ul.link-anchor li a:hover {
  background-color: #E6F4E7;
}

/* @end */

/* @group dl.qa */

dl.qa {}

dl.qa dt {
  border-color: var(--normal);
  border-style: dotted;
  border-width: 0 0 1px;
  color: var(--main);
  font-size: 2.0rem;
  font-weight: var(--fw-bold);
  margin: 0 0 1em;
  padding: 0 0 .5em 50px;
  position: relative;
}

dl.qa dd + dt {
  margin-top: 72px;
}

dl.qa dd {
  line-height: 1.9;
  margin: 0;
  padding: 0 0 0 50px;
  position: relative;
}

dl.qa dt::before,
dl.qa dd::before {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: 100%;
  content: "";
  height: 32px;
  width: 32px;
  position: absolute;
  top: 3px;
  left: 0;
}

dl.qa dt::before {
  background-color: var(--light);
  background-image: url("../img/icn_qa_q.svg");
}

dl.qa dd::before {
  background-color: #FFFF00;
  background-image: url("../img/icn_qa_a.svg");
}

/* @end */

/* @group voice-list */

.voice-list li a {
  display: block;
  text-decoration: none;
}

.voice-list .head {
  color: var(--main);
  font-family: var(--mincho);
  font-size: 2.6rem;
  line-height: 1.6;
  margin-bottom: .5em;
}

.voice-list figure {
  border-radius: 20px;
  margin: 0 auto 1.8em;
  width: calc(100% - 10px);
  overflow: hidden;
  transition: .4s;
}

.voice-list .btn {
  border: 1px solid var(--main);
  color: var(--normal);
  display: flex;
  align-items: center;
  column-gap: 2em;
  height: 45px;
  border-radius: 22px;
  font-size: 1.7rem;
  margin: 0;
  padding-left: 40px;
  transition: .4s;
}

.voice-list a:hover figure img {
  transform: scale(1.1);
}

.voice-list a:hover .btn {
  background-color: rgba(128, 200, 137, .5);
}

/* @end */

/* end of main-content */

/* end of content-area */

/* @group footer-banner */

#footer-banner {
  padding: 80px 20px;
}

.voice-banner a {
  background-color: #FFF;
  border: 1px solid #000;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 180px;
  margin: 0 auto;
  width: 800px;
  text-decoration: none;
  overflow: hidden;
}

.voice-banner .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 470px);
}

.voice-banner .img-col {
  height: 100%;
  width: 470px;
  overflow: hidden;
}

.voice-banner a:hover .img-col img {
  transition: .4s;
}

.voice-banner .title {
  color: var(--main);
  font-family: var(--mincho);
  font-size: 2.9rem;
  line-height: 1;
  margin-bottom: 1.2em;
}

.voice-banner .link-btn span {
  background-color: var(--light);
}

.voice-banner a:hover .img-col img {
  transform: scale(1.05);
}

.voice-banner a:hover .link-btn span {
  background-color: #FFF;
}

/* @end */

/* @group footer */

#footer-area {
  width: 100%;
}

.fnav-btn-list {
  background-color: var(--light);
  padding: 90px 20px 80px;
  position: relative;
}

#content-area.radius-box + #footer-area .fnav-btn-list::before {
  background-color: var(--light);
  content: "";
  height: 110px;
  width: 100%;
  position: absolute;
  top: -110px;
  left: 0;
  z-index: -1;
}

.fnav-btn ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 73px;
}

.fnav-btn [class*="btn-"] {
  height: 60px;
  width: 100%;
}

.fnav-btn [class*="btn-"] a {
  border-radius: 30px;
}

.fnav-btn [class*="btn-"] a::before {
  height: 12px;
  width: 14px;
  right: 22px;
}

.fnav-btn-list a {
  background-color: #FFF;
  background-position: 23px center;
  background-repeat: no-repeat;
  background-size: 42px auto;
}

.fnav-btn-list a:hover {
  background-color: #FFFF00;
  color: var(--normal);
}

.fnav-btn .btn-fresh a {
  background-image: url("../img/icn_fresh.svg");
}

.fnav-btn .btn-career a {
  background-image: url("../img/icn_career.svg");
}

.fnav-entry {
  background-color: #FFF;
  padding: 48px 20px 44px;
  text-align: center;
}

.fnav-btn .btn-entry {
  max-width: 268px;
  margin: 0 auto;
}

.fnav-btn .btn-entry a {
  background-position: 22px center;
  background-size: 28px auto;
  background-color: #FFFF00;
}

.fnav-btn .btn-entry a:hover {
  background-color: var(--light);
  color: var(--normal);
}

#copyright-area {
  padding: 24px 20px;
  width: 100%;
}

#copyright-area .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #fff;
  font-size: 11px;
}

.footer-nav {
  order: 1;
}

.footer-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1.5em;
}

.footer-nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  position: relative;
}

.footer-nav li a:hover {
  color: #000;
}

.footer-nav a .ai-out-white::before,
.footer-nav a .ai-out-white::after {
  transition: .4s;
}

.footer-nav a .ai-out-white::before {
  background: url("../img/icn_out_black.svg") no-repeat center / 100% auto;
  content: "";
  display: inline-block;
  height: .78em;
  width: .78em;
  margin: auto 0;
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 0;
  opacity: 0;
}

.footer-nav a:hover {
  color: #000;
}

.footer-nav a:hover .ai-out-white::before {
  opacity: 1;
}

.footer-nav a:hover .ai-out-white::after {
  opacity: 0;
}

/* @end */

/* @group to-top */

#to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
}

#to-top a {
  background-color: var(--light);
  background-image: url("../img/icn_totop.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  border: 1px solid #000;
  border-radius: 100%;
  display: block;
  height: 56px;
  width: 56px;
}

#to-top a:hover {
  background-color: #FFF;
}

/* @end */

/* @group home */

#home-mainvisual {
  background-color: #FFF;
  height: calc(100vh - 155px + 80px);
  margin: 155px 0 -80px;
  position: relative;
  z-index: -1;
}

#home-mainvisual h1 {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#home-mainvisual h1 img {
  width: 320px;
}

#home-mainvisual * {
  margin-bottom: 0;
}

#mv-slide {
	background-color: #FFF;
}

#mv-slide,
#mv-slide ul,
#mv-slide .slick-list,
#mv-slide .slick-track {
	height: 100%;
	width: 100%;
}

#home-mainvisual li {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#home-mainvisual li img {
  border-radius: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 15s;
}

#home-mainvisual li.slick-active img {
  animation: animationZoom 15s ease-in-out infinite;
}

@keyframes animationZoom {
  50% { transform:scale(1.1)} 
}

.home-lead-wrap {
  color: #FFF;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: absolute;
  top: 50%;
  left: 5.8vw;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.home-lead {
  font-family: var(--mincho);
  font-size: 6.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: .07em;
  line-height: 1.18;
  margin-left: -.5em;
  text-indent: .5em;
}

.home-sublead {
  font-family: var(--mincho);
  font-size: 2.8rem;
  font-weight: var(--fw-mid);
  letter-spacing: .06em;
  line-height: 1.57;
}

#home #main-content {
  padding: 0;
  width: 100%;
}

#home-index {
  padding: 130px 20px 110px;
}

#home-index .inner {
  display: flex;
  flex-direction: column;
  row-gap: 130px;
}

.home-h2-wrap {
  display: flex;
  flex-direction: column;
  width: fit-content;
  position: relative;
  z-index: 0;
}

#home-index h2 {
  color: #000;
  font-size: 3.0rem;
  line-height: 2;
  text-align: left;
  padding: 0;
  margin: 0;
}

#home-index h2::before,
#home-index h2::after {
  display: none;
}

.home-h2-wrap .en {
  color: var(--main);
  font-size: 1.7rem;
  letter-spacing: .04em;
  margin-top: -.5em;
  margin-bottom: .8em;
}

.col-work .home-h2-wrap img {
  position: absolute;
  top: calc(50% - 23px);
  left: calc(100% + 8px);
  transform: translateY(-50%);
}

.col-message .home-h2-wrap img {
  position: absolute;
  bottom: 13px;
  right: 11px;
  max-width: inherit;
  z-index: -1;
}

#home-index .link-btn {
  margin-bottom: 0;
}

#home-index .link-btn a {
  background-color: var(--light);
}

#home-index .link-btn a:hover {
  background-color: #FFF;
}

#home-voice {
  color: #FFF;
  padding: 120px 0 110px;
}

.home-voice-title {
  display: flex;
  align-items: center;
  column-gap: 30px;
  min-height: 6em;
  margin-bottom: 30px;
}

#home-voice h2 {
  color: #FFF;
  font-size: 3.0rem;
  letter-spacing: .06em;
  margin: 0;
  padding: 0;
  width: calc(1.06em * 4);
  text-align: left;
  white-space: nowrap;
  position: relative;
  z-index: 0;
}

#home-voice h2::before,
#home-voice h2::after {
  display: none;
}

#home-voice h2 img {
  max-width: inherit;
  position: absolute;
  bottom: -4px;
  right: 19px;
  z-index: -1;
}

.home-voice-list ul,
.home-voice-list .slick-track {
  display: flex;
  column-gap: 25px;
}

.home-voice-list li {
  transition: 1s;
}

.home-voice-list li:has(a[href*="/voice/03/"]),
.home-voice-list li:has(a[href*="/voice/05/"]),
.home-voice-list li:has(a[href*="/voice/07/"]) {
  margin-top: 40px;
}

.home-voice-list li:has(a[href*="/voice/02/"]),
.home-voice-list li:has(a[href*="/voice/06/"]) {
  margin-top: 70px;
}

.home-voice-list li a {
  display: flex;
  flex-direction: column;
  color: #FFF;
  text-decoration: none;
}

.home-voice-list .head {
  order: 2;
  line-height: 1.56;
  margin-bottom: .5em;
}

.home-voice-list .btn {
  order: 3;
  display: flex;
  column-gap: 1.5em;
  margin-bottom: 0;
}

/* @end of home */

/* @group work */
#work h2 {
  font-size: 36px;
}
#work h2 span:first-of-type:not(.inline-block) {
  font-size: 20px;
  margin-right: .5em;
}
#work .support-img {
  margin: 4em auto;
  max-width: 838px;
  text-align: center;
}
/* @end */
/* @group work - environment */
.gallery figure {
  border-radius: 20px;
  height: 610px;
  width: 940px;
  overflow: hidden;
  position: relative;
}
.gallery figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0
}
.gallery figure figcaption {
	background-color: rgba(0, 0, 0, .5);
	border-radius: 0 0 20px 20px;
	color: #FFF;
	display: flex;
	align-items: center;
	font-size: var(--fz-sp);
	letter-spacing: .1em;
	min-height: 90px;
	padding: 1em 2.7em;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
  transition: .6s;
}
.gallery figure figcaption.empty {
  opacity: 0;
}
.gallery ul {
  display: flex;
  display: -ms-flexbox; /*IE10*/
  flex-wrap: wrap;
  -ms-flex-wrap: wrap; /*IE10*/
}
.gallery ul li {
	cursor: pointer;
	margin: 0 20px 20px 0;
	width: calc((99.9% - (20px * 5)) / 6);
	position: relative;
}
.gallery ul li:nth-of-type(6n) {
  margin-right: 0;
}
.gallery ul li::after{
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  left: calc( 50% - 20px );
  top: calc( 50% - 20px );
  background:url(../../fresh/work/environment/img/icon_zoom.svg);
  background-size: contain;
  opacity: 0;
  transform: scaleX(0);
  transition: all .4s ease;
}
.gallery ul li:hover {
  opacity: .7;
}
.gallery ul li:hover::after{
  content: "";
  opacity: 1;
  transform: scaleX(1);
}
.gallery ul li img {
	border-radius: 8px;
}
.gallery ul li .caption {
	display: none;
}
/* @end */

/* @group message */

.ideal-list {
  color: var(--main);
  display: flex;
  flex-direction: column;
  font-family: var(--mincho);
  font-size: 2.0rem;
}

.ideal-list li a {
  color: var(--main);
}

.ideal-list li a:hover {
  text-decoration-color: transparent;
}

.sec-message p {
  margin-bottom: 15px;
}

/* @end */

/* @group guideline */
body#guideline table th br {
  display: none;
}
/* @end */

/* @group voice */

.voice-index .voice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.voice-index .voice-list li {
  width: calc((100% - (40px * 2)) / 3);
}

/* @end */

/* @group voice detail */

.voice-dtl #h1-area {
  position: relative;
  z-index: -1;
}

.voice-dtl h1.title-img {
  height: calc(492px + 80px);
  max-width: 1500px;
  margin: 0 auto -80px;
  text-align: center;
}

.voice-dtl h1.title-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.voice-dtl .voice-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  width: calc(var(--wpc) / 2);
  position: absolute;
  bottom: 80px;
  left: 50%;
}

.voice-copy {
  color: #FFF;
  font-family: var(--mincho);
  font-size: 3.3rem;
  line-height: 1.7;
  margin-bottom: 55px;
  position: relative;
}

.voice-copy:not(.fc-normal) {
  text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.voice-copy span:first-of-type,
.voice-copy span:last-of-type {
  position: relative;
}

.voice-copy span:first-of-type::before {
  content: "“";
  display: block;
  font-size: 5.4rem;
  letter-spacing: .02em;
  position: absolute;
  top: -.4em;
  left: -.5em;
}

.voice-copy span:last-of-type::before {
  content: "”";
  display: block;
  font-size: 5.4rem;
  letter-spacing: .02em;
  position: absolute;
  bottom: -.4em;
  right: -.6em;
  transform: scaleY(-1);
}

.date-dept {
  background-color: rgba(255, 255, 255, .52);
  border: 1px solid var(--main);
  border-radius: 2em;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  column-gap: 2em;
  height: 45px;
  width: 298px;
  margin-bottom: 0;
  padding-left: 25px;
}

/* @end */

/* @group event */
#event .allbtn img {
  width: 275px;
  height: auto;
}
/* @end */

/* @group entry */

.col-contact address {
  border-bottom: 1px solid var(--normal);
  line-height: 1.87;
  margin-bottom: 1em;
  padding-bottom: 1em;
}

.col-contact .tel {
  display: flex;
  align-items: center;
  column-gap: .5em;
  font-family: var(--mincho);
  font-size: 2.5rem;
  letter-spacing: .04em;
}

.col-contact .tel-link {
  font-size: 4.9rem;
  line-height: 1;
  letter-spacing: .08em;
}

/* @end of entry */

/* @group sitemap */

.sitemap-list {
	display: flex;
	flex-direction: column;
	row-gap: 1.5em;
}

.sitemap-list ul {
	margin: 1em 0 0 1.5em;
}

/* @end */

/* @group common */

@media screen and (min-width: 769px) {
  
  .pc-none { display: none !important; }

  .tel-link a {
    color: inherit;
    text-decoration: none;
  }
  
}

/* font-family */
html .ff-normal { font-family: var(--gothic) !important; }
html .ff-mincho { font-family: var(--mincho) !important; }

/* font color */
html .fc-main { color: var(--main) !important; }
html .fc-normal { color: var(--normal) !important; }
html .fc-sub { color: var(--dark) !important; }
html .fc-red { color: var(--red) !important; }
.fc-black { color:#000 !important; }
.fc-white { color:#FFF !important; }

/* font weight */
html .fw-normal { font-weight: var(--fw-normal) !important; }
html .fw-mid { font-weight: var(--fw-mid) !important; }
html .fw-bold { font-weight: var(--fw-bold) !important; }

/* fontsize */
.fz-ss { font-size: 69% !important; }
.fz-s { font-size: 85% !important; }
.fz-m { font-size: 100% !important; }
.fz-l { font-size: 115% !important; }
.fz-ll { font-size: 130% !important; }
.fz-lll { font-size: 146% !important; }
.fz-llll { font-size: 176% !important; }
html .fz-normal { font-size: var(--fz-pc) !important; }

/* backgroun-color */
.bgc-main { background-color: var(--main); }
.bgc-light { background-color: var(--light); }
.bgc-white { background-color: #FFF; }

/* position */
.left-position,
tr.left-position th,
tr.left-position td,
table.left-position th,
table.left-position td {
  text-align: left !important;
}

.right-position,
tr.right-position th,
tr.right-position td,
table.right-position th,
table.right-position td {
  text-align: right !important;
}

.center-position,
tr.center-position th,
tr.center-position td,
table.center-position th,
table.center-position td,
table.center-position-th th {
  text-align: center !important;
}

.middle-position,
tr.middle-position th,
tr.middle-position td,
table.middle-position th,
table.middle-position td {
  vertical-align: middle !important;
}

.nowrap,
.nowrap-th th {
  white-space: nowrap;
}
.word-wrap { word-wrap: break-word; }

/* display */
.inline { display: inline !important; }
.inline-block { display: inline-block; }
.block { display: block !important; }
.disp-none { display: none !important; }

/* flex */
.flex { display: flex !important; }
.flex-column {
  display: flex !important;
  flex-direction: column !important;
}
.flex-row {
  display: flex !important;
  flex-direction: row !important;
}
.flex-justify-center { justify-content: center !important; }
.flex-justify-start { justify-content: flex-start !important; }
.flex-justify-end { justify-content: flex-end !important; }
.flex-justify-between { justify-content: space-between!important; }
.flex-align-center { align-items: center !important; }
.flex-align-start { align-items: flex-start !important; }
.flex-align-end { align-items: flex-end !important; }

/* margin */
.m-auto { margin: 0 auto !important;}

.mb-0 { margin-bottom: 0px !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-35 { margin-bottom: 35px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-45 { margin-bottom: 45px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-55 { margin-bottom: 55px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-65 { margin-bottom: 65px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-75 { margin-bottom: 75px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-85 { margin-bottom: 85px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-95 { margin-bottom: 95px !important; }
.mb-100 { margin-bottom: 100px !important; }

.mb05em { margin-bottom: 0.5em !important; }
.mb1em { margin-bottom: 1em !important; }
.mb1hem { margin-bottom: 1.5em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb2hem { margin-bottom: 2.5em !important; }
.mb3em { margin-bottom: 3em !important; }

.last-para { margin-bottom: 70px !important; }
.last-para2 { margin-bottom: 100px !important; }

.ml-auto { margin-left: auto !important; }
.ml-0 { margin-left: 0px !important; }
.ml-5 { margin-left: 5px !important; }
.ml-10 { margin-left: 10px !important; }
.ml-15 { margin-left: 15px !important; }
.ml-20 { margin-left: 20px !important; }
.ml-25 { margin-left: 25px !important; }
.ml-30 { margin-left: 30px !important; }
.ml-35 { margin-left: 35px !important; }
.ml-40 { margin-left: 40px !important; }
.ml-45 { margin-left: 45px !important; }
.ml-50 { margin-left: 50px !important; }
.ml-55 { margin-left: 55px !important; }
.ml-60 { margin-left: 60px !important; }
.ml-65 { margin-left: 65px !important; }
.ml-70 { margin-left: 70px !important; }
.ml-75 { margin-left: 75px !important; }
.ml-80 { margin-left: 80px !important; }
.ml-85 { margin-left: 85px !important; }
.ml-90 { margin-left: 90px !important; }
.ml-95 { margin-left: 95px !important; }
.ml-100 { margin-left: 100px !important; }

.mr-auto { margin-right: auto !important; }
.mr-0 { margin-right: 0px !important; }
.mr-5 { margin-right: 5px !important; }
.mr-10 { margin-right: 10px !important; }
.mr-15 { margin-right: 15px !important; }
.mr-20 { margin-right: 20px !important; }
.mr-25 { margin-right: 25px !important; }
.mr-30 { margin-right: 30px !important; }
.mr-35 { margin-right: 35px !important; }
.mr-40 { margin-right: 40px !important; }
.mr-45 { margin-right: 45px !important; }
.mr-50 { margin-right: 50px !important; }
.mr-55 { margin-right: 55px !important; }
.mr-60 { margin-right: 60px !important; }
.mr-65 { margin-right: 65px !important; }
.mr-70 { margin-right: 70px !important; }
.mr-75 { margin-right: 75px !important; }
.mr-80 { margin-right: 80px !important; }
.mr-85 { margin-right: 85px !important; }
.mr-90 { margin-right: 90px !important; }
.mr-95 { margin-right: 95px !important; }
.mr-100 { margin-right: 100px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important;}
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-35 { margin-top: 35px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-45 { margin-top: 45px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-55 { margin-top: 55px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-65 { margin-top: 65px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-75 { margin-top: 75px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-85 { margin-top: 85px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-95 { margin-top: 95px !important; }
.mt-100 { margin-top: 100px !important; }

/* padding */
.pb-0 { padding-bottom: 0px !important; }
.pb-5 { padding-bottom: 5px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-25 { padding-bottom: 25px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-35 { padding-bottom: 35px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-45 { padding-bottom: 45px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-55 { padding-bottom: 55px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pb-65 { padding-bottom: 65px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-75 { padding-bottom: 75px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-85 { padding-bottom: 85px !important; }
.pb-90 { padding-bottom: 90px !important; }
.pb-95 { padding-bottom: 95px !important; }
.pb-100 { padding-bottom: 100px !important; }

.pl-0 { padding-left: 0px !important; }
.pl-5 { padding-left: 5px !important; }
.pl-10 { padding-left: 10px !important; }
.pl-15 { padding-left: 15px !important; }
.pl-20 { padding-left: 20px !important; }
.pl-25 { padding-left: 25px !important; }
.pl-30 { padding-left: 30px !important; }
.pl-35 { padding-left: 35px !important; }
.pl-40 { padding-left: 40px !important; }
.pl-45 { padding-left: 45px !important; }
.pl-50 { padding-left: 50px !important; }
.pl-55 { padding-left: 55px !important; }
.pl-60 { padding-left: 60px !important; }
.pl-65 { padding-left: 65px !important; }
.pl-70 { padding-left: 70px !important; }
.pl-75 { padding-left: 75px !important; }
.pl-80 { padding-left: 80px !important; }
.pl-85 { padding-left: 85px !important; }
.pl-90 { padding-left: 90px !important; }
.pl-95 { padding-left: 95px !important; }
.pl-100 { padding-left: 100px !important; }

.pr-0 { padding-right: 0px !important; }
.pr-5 { padding-right: 5px !important; }
.pr-10 { padding-right: 10px !important; }
.pr-15 { padding-right: 15px !important; }
.pr-20 { padding-right: 20px !important; }
.pr-25 { padding-right: 25px !important; }
.pr-30 { padding-right: 30px !important; }
.pr-35 { padding-right: 35px !important; }
.pr-40 { padding-right: 40px !important; }
.pr-45 { padding-right: 45px !important; }
.pr-50 { padding-right: 50px !important; }
.pr-55 { padding-right: 55px !important; }
.pr-60 { padding-right: 60px !important; }
.pr-65 { padding-right: 65px !important; }
.pr-70 { padding-right: 70px !important; }
.pr-75 { padding-right: 75px !important; }
.pr-80 { padding-right: 80px !important; }
.pr-85 { padding-right: 85px !important; }
.pr-90 { padding-right: 90px !important; }
.pr-95 { padding-right: 95px !important; }
.pr-100 { padding-right: 100px !important; }

.pt-0 { padding-top: 0px !important; }
.pt-5 { padding-top: 5px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-25 { padding-top: 25px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-35 { padding-top: 35px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-45 { padding-top: 45px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-55 { padding-top: 55px !important; }
.pt-60 { padding-top: 60px !important; }
.pt-65 { padding-top: 65px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-75 { padding-top: 75px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-85 { padding-top: 85px !important; }
.pt-90 { padding-top: 90px !important; }
.pt-95 { padding-top: 95px !important; }
.pt-100 { padding-top: 100px !important; }

/* width */
.wd-100p { width: 100% !important; }
.wd-90p { width: 90% !important; }
.wd-85p { width: 85% !important; }
.wd-80p { width: 80% !important; }
.wd-75p { width: 75% !important; }
.wd-70p { width: 70% !important; }
.wd-65p { width: 65% !important; }
.wd-60p { width: 60% !important; }
.wd-55p { width: 55% !important; }
.wd-50p { width: 50% !important; }
.wd-45p { width: 45% !important; }
.wd-40p { width: 40% !important; }
.wd-35p { width: 35% !important; }
.wd-30p { width: 30% !important; }
.wd-25p { width: 25% !important; }
.wd-20p { width: 20% !important; }
.wd-15p { width: 15% !important; }
.wd-auto { width: auto !important; }

.wd-max100p { 	max-width: 100% !important; }

.indent-1em {
  padding-left: 1em !important;
  text-indent: -1em;
}

.indent-1hem {
  padding-left: 1.5em !important;
  text-indent: -1.5em;
}

.indent-2em {
  padding-left: 2em !important;
  text-indent: -2em !important;
}

.indent-2hem {
  padding-left: 2.5em !important;
  text-indent: -2.5em;
}

.indent-3em {
  padding-left: 3em !important;
  text-indent: -3em;
}

.indent-3hem {
  padding-left: 3.5em !important;
  text-indent: -3.5em;
}

.indent-4em {
  padding-left: 4em !important;
  text-indent: -4em;
}

.indent-5em {
  padding-left: 5em !important;
  text-indent: -5em;
}

.indent-6em {
  padding-left: 6em !important;
  text-indent: -6em;
}

.indent-7em {
  padding-left: 7em !important;
  text-indent: -7em;
}

/* @end */

/* @group clearfix */

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* @end of clearfix */


/**************************** 
 SP
**************************** */

@media screen and (max-width: 768px) {

body {
  min-width: 100%;
  font-size: var(--fz-sp);
}

body::before {
  height: calc(100vh - 110px);
  height: calc(100dvh - 110px);
  top: 110px;
}

/* @group header */

#header-area {
  min-width: 100%;
}

#header {
  column-gap: 15px;
  height: 50px;
  width: 100%;
  padding: 8px 15px 0;
}

#header #logo {
  margin: 0;
  width: 172px;
}

#header #copy {
  font-size: 1.2rem;
}

/* @end */

/* @group gnav */

#toggle-nav {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 54px;
  transform: scale(0.5);
  position: absolute;
  top: calc((50px - 35px) / 2);
  right: 0;
}

#toggle-nav span {
  background-color: #000;
  height: 3px;
  width: 100%;
  transition: .4s;
  position: relative;
}

#toggle-nav span::before,
#toggle-nav span::after {
  background-color: #000;
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: .4s;
}

#toggle-nav:not(.close) span::before {
  top: calc((35px - 3px) / -2);
}

#toggle-nav:not(.close ) span::after {
  top: auto;
  bottom: calc((35px - 3px) / -2);
}

#toggle-nav.close span {
  background-color: transparent;
}

#toggle-nav.close span::before,
#toggle-nav.close span::after {
  top: 0;
  bottom: auto;
}

#toggle-nav.close span::before {
  transform: rotate(30deg);
}

#toggle-nav.close span::after {
  transform: rotate(-30deg);
}

#gnav {
  margin: 0;
  padding: 15px 20px;
}

#gnav .gnav-lv1,
#gnav .gnav-other {
  display: none;
}

.gnav-btn {
  width: 100%;
}

.gnav-btn ul {
  justify-content: center;
  column-gap: clamp(15px, 4.68vw, 30px);
}

.gnav-btn [class*="btn-"] a::before,
.fnav-btn [class*="btn-"] a::before {
  height: 9px;
  width: 8px;
  right: 11px;
}

.gnav-btn li {
  height: 30px;
  width: auto;
}

.gnav-btn li a {
  font-size: 11px;
  width: 143px;
}

#drawer {
  background-color: rgba(255, 255, 255, .97);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  padding: 10px 20px 40px;
  max-height: calc(100vh - 50px);
  max-height: calc(100dvh - 50px);
  overflow-y: auto;
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 90;
}

#drawer .gnav-lv1 li a {
  background-image: url("../img/icn_arrow_main.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 10px 8px;
  border-bottom: 1px solid var(--normal);
  display: flex;
  align-items: center;
  font-family: var(--mincho);
  font-size: var(--fz-pc);
  height: 70px;
  text-decoration: none;
}

#drawer-other .link-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

/* @end */

/* @group content-area */

.sp-none {
  display: none !important;
}

/* @group h1-area */

#header-area + #h1-area {
  margin-top: 110px;
}

#h1-area h1:not(.title-img) {
  font-size: 2.4rem;
  height: 110px;
  width: 100%;
}

#h1-area h1[class*="title-"] span::before {
  transform: scale(.77) translateX(-50%);
}

/* @end */

/* @group breadcrumb */

#breadcrumb-area {
  width: 100%;
  margin-bottom: 50px;
}

#breadcrumb {
  font-size: 11px;
  padding: 15px 20px 0;
  width: 100%;
}

/* @end */

/* @group main-content */

#main-content {
  width: 100%;
  padding-bottom: 70px;
}

section,
.section {
  margin-bottom: 60px;
}

.radius-box {
  border-radius: 25px;
}

/* @group lead */

.lead {
  margin-bottom: 60px;
}

.lead p {
  font-size: 2.0rem;
}
/* @end */

/* @group heading */

#main-content h2 {
  font-size: 2.1rem;
  margin-right: -20px;
  margin-left: -20px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: var(--fw-bold);
}

#main-content h3 {
  font-size: 1.8rem;
}

/* @end */

/* @group pattern */

figure img {
  border-radius: 12px;
}

[class*="pattern1-"],
[class*="pattern2-"],
[class*="pattern3-"],
[class*="pattern4-"] {
  flex-direction: column;
  row-gap: 2em;
  margin-bottom: 2em;
}

[class*="pattern"] [class*="col"] {
  width: 100% !important;
}

[class*="col"] figure {
  text-align: center;
}

/* @end */

/* @group link */
/* @end */

/* @group table */

table th,
table td {
  padding: 1em;
}

table.sp-column tr {
  display: flex;
  flex-direction: column;
}

table.sp-column th,
table.sp-column td {
  width: 100%;
}

/* @end */

/* @group anchor-link */

ul.link-anchor li {
  width: 100%;
}

ul.link-anchor li a {
  font-size: var(--fz-sp);
}

/* @end */

/* @group dl.qa */

dl.qa dt {
  font-size: 1.8rem;
  padding-bottom: .8em;
}

dl.qa dd + dt {
  margin-top: 45px;
}

/* @end */

/* @group voice-list */

.voice-index .voice-list li {
  width: 100%;
}

.voice-list .head {
  font-size: 2.0rem;
}

.voice-list .btn {
  font-size: 1.5rem;
}

/* @end */

/* end of main-content */

/* end of content-area */

/* @group footer-banner */
  
.voice-banner a {
	flex-direction: column-reverse;
	height: auto;
	width: 100%;
}
  
.voice-banner .col {
	width: 100%;
	padding: 2em 0;
}
  
.voice-banner .title {
	font-size: 2.1rem;
}

/* @end */

/* @group footer */

.fnav-btn-list {
  padding: 50px 20px;
}

.fnav-btn ul {
  flex-direction: column;
  align-items: center;
  row-gap: 25px;
}

.fnav-btn [class*="btn-"] {
  height: 40px;
  max-width: 185px;
}

.fnav-btn-list a {
  background-size: 25px auto;
  background-position: 13px center;
  font-size: 1.2rem;
}

#copyright-area .inner {
  flex-direction: column-reverse;
  row-gap: 30px;
}

.footer-nav ul {
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 15px;
}

.footer-nav li a {
  font-size: 1.1rem;
}

/* @end */

/* @group to-top */

#to-top {
  bottom: 30px;
  right: 10px;
}

#to-top a {
  transform: scale(0.8);
}

/* @end */

/* @group home */

#home-mainvisual {
  height: calc(84.53vw + 25px);
  margin: 110px 0 -25px;
}

#home-mainvisual figure img {
  animation: infinite;
}

.home-lead-wrap {
  row-gap: 2.6vw;
}

.home-lead {
  font-size: 7.56vw;
}

.home-sublead {
  font-size: 3.2vw;
}

#home-index {
  padding: 45px 20px;
}

#home-index .inner {
  row-gap: 60px;
  max-width: 80vw;
  min-width: 280px;
}

#home-index .pattern1-1 {
  row-gap: 1em;
  margin: 0;
}

#home-index h2 {
  font-size: 2.9rem;
  font-weight: var(--fw-normal);
}

.home-h2-wrap .en {
  font-size: 1.4rem;
}

#home-index .col div:has(.link-btn) {
  text-align: center;
}

#home-index .link-btn {
  width: 185px;
}

.col-work .home-h2-wrap img {
  width: 26vw;
  max-width: 98px;
  top: 1em;
  transform: inherit;
}

.col-message .home-h2-wrap img {
  width: 46.13vw;
  max-width: 173px;
  top: .5em;
  bottom: 0;
  left: 85%;
}

#home-voice {
  padding: 45px 0 130px;
  position: relative;
}

.home-voice-title {
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.2em;
  padding: 0 20px;
  max-width: 80vw;
  min-width: 280px;
}

#home-voice h2 {
  font-size: 2.9rem;
  font-weight: var(--fw-normal);
  margin: 0;
  padding: 0;
}

#home-voice h2 img {
  width: 30.4vw;
  max-width: 114px;
  top: 0;
  bottom: auto;
  right: -100%;
}

.home-voice-title div:has(.link-btn) {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

/* @end of home */

/* @group work */
#work h2 {
  font-size: 24px;
}
#work h2 span:first-of-type:not(.inline-block) {
  display: block;
  font-size: 15px;
  margin-bottom: .5em;
}
#work .support-img {
  margin: 4em auto;
  max-width: 838px;
}
/* @end */

/* @group work - environment */
.gallery figure {
  display: none;
}
.gallery ul li {
  cursor: auto;
  margin: 0 0 35px 0;
  width: 100%;
}
.gallery ul li img {
  border-radius: 10px;
}
.gallery ul li .caption {
	background-color: #fafafa;
	border: 2px solid #bdbdbd;
	display: flex;
	align-items: center;
  margin-top: 15px;
  position: relative;
}
.gallery ul li .caption::before,
.gallery ul li .caption::after {
	content: "";
	position: absolute;
	left: 55px;
	width: 0;
	height: 0;
}
.gallery ul li .caption::before {
	top: -28px;
	border-style: solid;
	border-color: transparent #bdbdbd transparent transparent;
	border-width: 28px 18px 0 0;
}
.gallery ul li .caption::after {
	top: -21px;
	border-style: solid;
	border-color: transparent #fafafa transparent transparent;
	border-width: 25px 16px 0 0;
	z-index: 10;
}

.gallery ul li .caption span {
	font-size: 15px;
	letter-spacing: .05em;
	line-height: 1.6;
	padding: 1.2em 1.5em 1.4em;
}
/* @end */

/* @group message */
/* @end */

/* @group FAQ */
/* @end */

/* @group voice */
  
.voice-dtl h1.title-img {
	width: 100%;
	height: 80vw;
	margin-bottom: -55px;
	overflow: hidden;
}
  
.voice-dtl h1.title-img img {
	max-width: inherit;
	width: auto;
	position: relative;
	left: -27%;
	object-fit: inherit;
}
  
.voice-dtl .voice-summary {
	width: 50%;
	left: auto;
	right: 1.5em;
	bottom: 20px;
}
  
.voice-copy {
	font-size: 1.6rem;
	line-height: 1.4;
	margin-bottom: 1.5em;
}
  
.voice-copy span:first-of-type::before,
.voice-copy span:last-of-type::before {
	font-size: 3.0rem;
}
  
.date-dept {
	justify-content: center;
	column-gap: 1em;
	font-size: 1.3rem;
	padding-left: 0;
	width: 100%;
}
  
/* @end */

/* @group voice detail */
/* @end */

/* @group entry */

.col-contact .tel {
  font-size: 2rem;
}

.col-contact .tel-link {
  font-size: 3.1rem;
}

/* @end */

/* @group event */

/* @end */

/* @group guideline */
body#guideline table th br {
  display: block;
}
/* @end */

/* @group common */

.tel-link a {
  color: inherit;
  text-decoration: underline;
}

/* font color */
html .fc-normal-sp { color: var(--normal) !important; }
.fc-white-sp { color:#FFF !important; }

/* fontsize */
.fz-ss-sp { font-size: 69% !important; }
.fz-s-sp { font-size: 85% !important; }
.fz-m-sp { font-size: 100% !important; }
.fz-l-sp { font-size: 115% !important; }
.fz-ll-sp { font-size: 130% !important; }
.fz-lll-sp { font-size: 146% !important; }
.fz-llll-sp { font-size: 176% !important; }

/* position */
.left-position-sp,
tr.left-position-sp th,
tr.left-position-sp td,
table.left-position-sp th,
table.left-position-sp td {
  text-align: left !important;
}

.right-position-sp,
tr.right-position-sp th,
tr.right-position-sp td,
table.right-position-sp th,
table.right-position-sp td {
  text-align: right !important;
}

.center-position-sp,
tr.center-position-sp th,
tr.center-position-sp td,
table.center-position-sp th,
table.center-position-sp td,
table.center-position-sp-th th {
  text-align: center !important;
}

.middle-position-sp,
tr.middle-position-sp th,
tr.middle-position-sp td,
table.middle-position-sp th,
table.middle-position-sp td {
  vertical-align: middle !important;
}

/* display */
.inline-sp { display: inline !important; }
.inline-block-sp { display: inline-block; }
.block-sp { display: block !important; }
.disp-none-sp { display: none !important; }

/* flex */
.flex-sp { display: flex !important; }
.flex-column-sp {
  display: flex !important;
  flex-direction: column !important;
}
.flex-row-sp {
  display: flex !important;
  flex-direction: row !important;
}
.flex-justify-center-sp { justify-content: center !important; }
.flex-justify-start-sp { justify-content: flex-start !important; }
.flex-justify-end-sp { justify-content: flex-end !important; }
.flex-align-center-sp { align-items: center !important; }
.flex-align-start-sp { align-items: flex-start !important; }
.flex-align-end-sp { align-items: flex-end !important; }

/* margin */
.m-auto-sp { margin: 0 auto !important;}

.mb-0-sp { margin-bottom: 0px !important; }
.mb-5-sp { margin-bottom: 5px !important; }
.mb-10-sp { margin-bottom: 10px !important; }
.mb-15-sp { margin-bottom: 15px !important; }
.mb-20-sp { margin-bottom: 20px !important; }
.mb-25-sp { margin-bottom: 25px !important; }
.mb-30-sp { margin-bottom: 30px !important; }
.mb-35-sp { margin-bottom: 35px !important; }
.mb-40-sp { margin-bottom: 40px !important; }
.mb-45-sp { margin-bottom: 45px !important; }
.mb-50-sp { margin-bottom: 50px !important; }
.mb-55-sp { margin-bottom: 55px !important; }
.mb-60-sp { margin-bottom: 60px !important; }
.mb-65-sp { margin-bottom: 65px !important; }
.mb-70-sp { margin-bottom: 70px !important; }
.mb-75-sp { margin-bottom: 75px !important; }
.mb-80-sp { margin-bottom: 80px !important; }
.mb-85-sp { margin-bottom: 85px !important; }
.mb-90-sp { margin-bottom: 90px !important; }
.mb-95-sp { margin-bottom: 95px !important; }
.mb-100-sp { margin-bottom: 100px !important; }

.mb05em-sp { margin-bottom: 0.5em !important; }
.mb1em-sp { margin-bottom: 1em !important; }
.mb1hem-sp { margin-bottom: 1.5em !important; }
.mb2em-sp { margin-bottom: 2em !important; }
.mb2hem-sp { margin-bottom: 2.5em !important; }

.last-para { margin-bottom: 45px !important; }
.last-para2 { margin-bottom: 70px !important; }

.ml-auto-sp { margin-left: auto !important; }
.ml-0-sp { margin-left: 0px !important; }
.ml-5-sp { margin-left: 5px !important; }
.ml-10-sp { margin-left: 10px !important; }
.ml-15-sp { margin-left: 15px !important; }
.ml-20-sp { margin-left: 20px !important; }
.ml-25-sp { margin-left: 25px !important; }
.ml-30-sp { margin-left: 30px !important; }
.ml-35-sp { margin-left: 35px !important; }
.ml-40-sp { margin-left: 40px !important; }
.ml-45-sp { margin-left: 45px !important; }
.ml-50-sp { margin-left: 50px !important; }
.ml-55-sp { margin-left: 55px !important; }
.ml-60-sp { margin-left: 60px !important; }
.ml-65-sp { margin-left: 65px !important; }
.ml-70-sp { margin-left: 70px !important; }
.ml-75-sp { margin-left: 75px !important; }
.ml-80-sp { margin-left: 80px !important; }
.ml-85-sp { margin-left: 85px !important; }
.ml-90-sp { margin-left: 90px !important; }
.ml-95-sp { margin-left: 95px !important; }
.ml-100-sp { margin-left: 100px !important; }

.mr-auto-sp { margin-right: auto !important; }
.mr-0-sp { margin-right: 0px !important; }
.mr-5-sp { margin-right: 5px !important; }
.mr-10-sp { margin-right: 10px !important; }
.mr-15-sp { margin-right: 15px !important; }
.mr-20-sp { margin-right: 20px !important; }
.mr-25-sp { margin-right: 25px !important; }
.mr-30-sp { margin-right: 30px !important; }
.mr-35-sp { margin-right: 35px !important; }
.mr-40-sp { margin-right: 40px !important; }
.mr-45-sp { margin-right: 45px !important; }
.mr-50-sp { margin-right: 50px !important; }
.mr-55-sp { margin-right: 55px !important; }
.mr-60-sp { margin-right: 60px !important; }
.mr-65-sp { margin-right: 65px !important; }
.mr-70-sp { margin-right: 70px !important; }
.mr-75-sp { margin-right: 75px !important; }
.mr-80-sp { margin-right: 80px !important; }
.mr-85-sp { margin-right: 85px !important; }
.mr-90-sp { margin-right: 90px !important; }
.mr-95-sp { margin-right: 95px !important; }
.mr-100-sp { margin-right: 100px !important; }

.mt-0-sp { margin-top: 0 !important; }
.mt-5-sp { margin-top: 5px !important;}
.mt-10-sp { margin-top: 10px !important; }
.mt-15-sp { margin-top: 15px !important; }
.mt-20-sp { margin-top: 20px !important; }
.mt-25-sp { margin-top: 25px !important; }
.mt-30-sp { margin-top: 30px !important; }
.mt-35-sp { margin-top: 35px !important; }
.mt-40-sp { margin-top: 40px !important; }
.mt-45-sp { margin-top: 45px !important; }
.mt-50-sp { margin-top: 50px !important; }
.mt-55-sp { margin-top: 55px !important; }
.mt-60-sp { margin-top: 60px !important; }
.mt-65-sp { margin-top: 65px !important; }
.mt-70-sp { margin-top: 70px !important; }
.mt-75-sp { margin-top: 75px !important; }
.mt-80-sp { margin-top: 80px !important; }
.mt-85-sp { margin-top: 85px !important; }
.mt-90-sp { margin-top: 90px !important; }
.mt-95-sp { margin-top: 95px !important; }
.mt-100-sp { margin-top: 100px !important; }

/* padding */
.pb-0-sp { padding-bottom: 0px !important; }
.pb-5-sp { padding-bottom: 5px !important; }
.pb-10-sp { padding-bottom: 10px !important; }
.pb-15-sp { padding-bottom: 15px !important; }
.pb-20-sp { padding-bottom: 20px !important; }
.pb-25-sp { padding-bottom: 25px !important; }
.pb-30-sp { padding-bottom: 30px !important; }
.pb-35-sp { padding-bottom: 35px !important; }
.pb-40-sp { padding-bottom: 40px !important; }
.pb-45-sp { padding-bottom: 45px !important; }
.pb-50-sp { padding-bottom: 50px !important; }
.pb-55-sp { padding-bottom: 55px !important; }
.pb-60-sp { padding-bottom: 60px !important; }
.pb-65-sp { padding-bottom: 65px !important; }
.pb-70-sp { padding-bottom: 70px !important; }
.pb-75-sp { padding-bottom: 75px !important; }
.pb-80-sp { padding-bottom: 80px !important; }
.pb-85-sp { padding-bottom: 85px !important; }
.pb-90-sp { padding-bottom: 90px !important; }
.pb-95-sp { padding-bottom: 95px !important; }
.pb-100-sp { padding-bottom: 100px !important; }

.pl-0-sp { padding-left: 0px !important; }
.pl-5-sp { padding-left: 5px !important; }
.pl-10-sp { padding-left: 10px !important; }
.pl-15-sp { padding-left: 15px !important; }
.pl-20-sp { padding-left: 20px !important; }
.pl-25-sp { padding-left: 25px !important; }
.pl-30-sp { padding-left: 30px !important; }
.pl-35-sp { padding-left: 35px !important; }
.pl-40-sp { padding-left: 40px !important; }
.pl-45-sp { padding-left: 45px !important; }
.pl-50-sp { padding-left: 50px !important; }
.pl-55-sp { padding-left: 55px !important; }
.pl-60-sp { padding-left: 60px !important; }
.pl-65-sp { padding-left: 65px !important; }
.pl-70-sp { padding-left: 70px !important; }
.pl-75-sp { padding-left: 75px !important; }
.pl-80-sp { padding-left: 80px !important; }
.pl-85-sp { padding-left: 85px !important; }
.pl-90-sp { padding-left: 90px !important; }
.pl-95-sp { padding-left: 95px !important; }
.pl-100-sp { padding-left: 100px !important; }

.pr-0-sp { padding-left: 0px !important; }
.pr-5-sp { padding-left: 5px !important; }
.pr-10-sp { padding-left: 10px !important; }
.pr-15-sp { padding-left: 15px !important; }
.pr-20-sp { padding-left: 20px !important; }
.pr-25-sp { padding-left: 25px !important; }
.pr-30-sp { padding-left: 30px !important; }
.pr-35-sp { padding-left: 35px !important; }
.pr-40-sp { padding-left: 40px !important; }
.pr-45-sp { padding-left: 45px !important; }
.pr-50-sp { padding-left: 50px !important; }
.pr-55-sp { padding-left: 55px !important; }
.pr-60-sp { padding-left: 60px !important; }
.pr-65-sp { padding-left: 65px !important; }
.pr-70-sp { padding-left: 70px !important; }
.pr-75-sp { padding-left: 75px !important; }
.pr-80-sp { padding-left: 80px !important; }
.pr-85-sp { padding-left: 85px !important; }
.pr-90-sp { padding-left: 90px !important; }
.pr-95-sp { padding-left: 95px !important; }
.pr-100-sp { padding-left: 100px !important; }

.pt-0-sp { padding-top: 0px !important; }
.pt-5-sp { padding-top: 5px !important; }
.pt-10-sp { padding-top: 10px !important; }
.pt-15-sp { padding-top: 15px !important; }
.pt-20-sp { padding-top: 20px !important; }
.pt-25-sp { padding-top: 25px !important; }
.pt-30-sp { padding-top: 30px !important; }
.pt-35-sp { padding-top: 35px !important; }
.pt-40-sp { padding-top: 40px !important; }
.pt-45-sp { padding-top: 45px !important; }
.pt-50-sp { padding-top: 50px !important; }
.pt-55-sp { padding-top: 55px !important; }
.pt-60-sp { padding-top: 60px !important; }
.pt-65-sp { padding-top: 65px !important; }
.pt-70-sp { padding-top: 70px !important; }
.pt-75-sp { padding-top: 75px !important; }
.pt-80-sp { padding-top: 80px !important; }
.pt-85-sp { padding-top: 85px !important; }
.pt-90-sp { padding-top: 90px !important; }
.pt-95-sp { padding-top: 95px !important; }
.pt-100-sp { padding-top: 100px !important; }

/* width */
.wd-100p-sp { width: 100% !important; }
.wd-95p-sp { width: 95% !important; }
.wd-90p-sp { width: 90% !important; }
.wd-85p-sp { width: 85% !important; }
.wd-80p-sp { width: 80% !important; }
.wd-75p-sp { width: 75% !important; }
.wd-70p-sp { width: 70% !important; }
.wd-65p-sp { width: 65% !important; }
.wd-60p-sp { width: 60% !important; }
.wd-55p-sp { width: 55% !important; }
.wd-50p-sp { width: 50% !important; }
.wd-45p-sp { width: 45% !important; }
.wd-40p-sp { width: 40% !important; }
.wd-35p-sp { width: 35% !important; }
.wd-30p-sp { width: 30% !important; }
.wd-25p-sp { width: 25% !important; }
.wd-20p-sp { width: 20% !important; }
.wd-15p-sp { width: 15% !important; }
.wd-auto-sp { width: auto !important; }

/* @end */

}
/* end (max-width: 768px) */

@media print {
  #to-top {
    display: none;
  }
}
