@charset "UTF-8";
/* reset
---------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap");
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;
}

* {
  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;
}

/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #1f1d1d;
  font-size: 1.5rem;
  min-width: 1200px;
  position: relative;
}

a {
  text-decoration: none;
  color: #1f1d1d;
  outline: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

* {
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}
/*------------- .l-pagebody -------------*/
.l-pagebody {
  width: 100%;
  overflow: hidden;
}

/*------------- .l-header -------------*/
.l-header {
  height: 80px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  min-width: 1200px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.l-logo-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 270px;
}

.l-header-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 80px;
}

@media screen and (min-width: 767px) and (max-width: 1200px) {
  .l-header-wrap {
    margin: 0 30px;
  }
}
.ipad .l-header-wrap {
  margin: 0 30px;
}

.l-header-logo {
  width: 272px;
  height: auto;
}

/*------------- .l-gnav -------------*/
.l-gnav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80%;
}

.l-gnav-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-gnav-list-item {
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  position: relative;
  cursor: pointer;
}

.l-gnav-list-item-link {
  transition: 0.5s;
  display: block;
  padding: 34px 15px;
}

.l-gnav-list-item-link-txt {
  position: relative;
}
.l-gnav-list-item-link-txt:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-bottom: solid 2px #1f1d1d;
  transition: 0.5s ease;
  width: 0;
  margin-top: 5px;
}
.l-gnav-list-item-link-txt.is-current:after {
  width: 100%;
}

.l-gnav-sns-list {
  display: flex;
}
.l-gnav-sns-list li {
  max-width: 48px;
}

@media screen and (max-width: 1400px) {
  .l-header-wrap {
    margin: 0 30px;
  }
  .l-gnav-list-item-link-txt {
    white-space: nowrap;
  }
  .l-gnav-sns-list img {
    width: 30px;
  }
}
.l-gnav-search {
  cursor: pointer;
  margin: 0;
  padding: 29.5px 15px;
}

.l-gnav-search-pic {
  width: 19px;
  height: auto;
}

.l-header-dropmenu {
  background-color: #fff;
  border-top: #707070;
  display: none;
  padding: 40px 0 55px;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 100;
}
.l-header-dropmenu.is-dropmenu-search {
  z-index: 150;
}

.l-header-dropmenu-area .l-header-dropmenu-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.l-header-dropmenu-area .l-header-dropmenu-list-item {
  width: 80px;
  margin: 0;
}
.l-header-dropmenu-area .l-header-dropmenu-list-item + .l-header-dropmenu-list-item {
  margin: 0 0 0 40px;
}
.l-header-dropmenu-area .l-header-dropmenu-list-link {
  flex-direction: column;
}
.l-header-dropmenu-area .l-header-dropmenu-list-link-txt {
  text-align: center;
}
.l-header-dropmenu-area .l-header-dropmenu-list-link-txt {
  margin: 20px 0 0;
  width: auto;
}

.l-header-dropmenu-search {
  width: 100%;
}

.l-header-dropmenu-bg {
  display: none;
  width: 150vw;
  height: 150vh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.l-header-dropmenu-wrap {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
.l-header-dropmenu-wrap.l-header-dropmenu-wrap-search {
  margin: 0 100px 0 auto;
}

.l-header-dropmenu-ttl {
  padding-bottom: 15px;
  border-bottom: 2px solid #ff0;
}

.l-header-dropmenu-ttl-link {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #ff0;
  display: inline-block;
  transition: 0.3s;
}
.l-header-dropmenu-ttl-link:hover {
  opacity: 0.7;
}

.l-header-dropmenu-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-header-dropmenu-list-item {
  width: 220px;
  margin: 0 40px 25px 0;
}
.l-header-dropmenu-list-item:nth-of-type(4n) {
  margin: 0;
}

.l-header-dropmenu-list-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.3s;
}
.l-header-dropmenu-list-link:hover {
  opacity: 0.7;
}

.l-header-dropmenu-list-link-pic {
  width: 60px;
}

.l-header-dropmenu-list-link-txt {
  font-size: 1.3rem;
  line-height: 1.6923076923;
  margin: 0 0 0 20px;
  width: 150px;
}

.l-header-dropmenu-search {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.l-header-dropmenu-search-input-box {
  width: 440px;
}

.l-header-dropmenu-search-input {
  width: 100%;
  padding: 10px 0 10px 20px;
  border: 1px solid #d5d5d5;
  -webkit-appearance: none;
  border-radius: 0;
}

.l-header-dropmenu-search-btn {
  background-color: #231815;
  cursor: pointer;
}

.l-header-dropmenu-search-btn-txt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
  width: 60px;
  padding: 12px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-header {
    box-shadow: 0px 0.5333333333vw 0.8vw 0px rgba(0, 0, 0, 0.2);
    min-width: auto;
    height: 14.6666666667vw;
  }
  .l-header-logo {
    width: 58.6666666667vw;
    height: auto;
    padding: 3.6666666667vw 0;
  }
  .l-header-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 4vw;
  }
  .l-gnav-sp {
    position: fixed;
    top: 14.6666666667vw;
    left: 0;
    z-index: 100;
    width: 100%;
    z-index: 10;
    display: none;
    background-color: #fff;
    padding: 0 4vw 6.6666666667vw 4vw;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .l-gnav-sp-wrap-right {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .l-gnav-sp-search-pic {
    width: 5.0666666667vw;
    height: auto;
  }
  .l-gnav-btn {
    display: block;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    position: relative;
    text-align: center;
    color: #231815;
    margin: 0 0 0 4.6666666667vw;
  }
  .l-gnav-btn span:nth-of-type(2):after {
    background-color: #fff;
  }
  .l-gnav-btn span {
    background-color: #fff;
  }
  .l-gnav-btn span {
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 0.6666666667vw;
    background-color: #231815;
    transition: 0.3s;
  }
  .l-gnav-btn span:nth-of-type(1) {
    top: 0;
  }
  .l-gnav-btn span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .l-gnav-btn span:nth-of-type(2):after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 0.6666666667vw;
    border-radius: 0.6666666667vw;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #231815;
  }
  .l-gnav-btn span:nth-of-type(3) {
    bottom: 0;
  }
  .l-gnav-btn.is-active span:nth-of-type(1) {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  .l-gnav-btn.is-active span:nth-of-type(2) {
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
  }
  .l-gnav-btn.is-active span:nth-of-type(2):after {
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
  }
  .l-gnav-btn.is-active span:nth-of-type(3) {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  .l-gnav-sp-list {
    width: 100%;
  }
  .l-gnav-sp-list-item {
    border-top: 0.1333333333vw solid #b9b9b9;
    padding: 5.3333333333vw 0;
  }
  .l-gnav-sp-drawer-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-gnav-sp-drawer-list-item {
    width: 50%;
    margin: 4vw 0 0;
  }
  .l-gnav-sp-drawer-list-item.l-gnav-sp-drawer-list-item-width33 {
    width: 33%;
  }
  .l-gnav-sp-drawer-ttl-link-txt {
    display: inline-block;
    font-size: 3.6vw;
    font-weight: bold;
    padding: 0 0 1.3333333333vw;
  }
  .l-gnav-sp-drawer-list-link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-gnav-sp-drawer-list-link-pic {
    width: 10.6666666667vw;
    height: auto;
  }
  .l-gnav-sp-drawer-list-link-txt {
    width: 26.6666666667vw;
    font-size: 3.0666666667vw;
    line-height: 1.5;
    margin: 0 0 0 2.6666666667vw;
  }
  .l-gnav-sp-search {
    position: fixed;
    top: 14.6666666667vw;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #fff;
    padding: 6.6666666667vw 4vw 14.6666666667vw 4vw;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .l-gnav-sp-search.is-appear {
    opacity: 1;
    visibility: visible;
  }
  .l-gnav-sp-search-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-gnav-sp-search-input-box {
    padding: 0;
    border: 0.2666666667vw solid #d5d5d5;
    font-size: 3.6vw;
    color: #aaa;
  }
  .l-gnav-sp-search-input {
    padding: 4.6666666667vw;
    width: 75%;
    border: none;
    font-size: 3.6vw;
    color: #aaa;
    -webkit-appearance: none;
    border-radius: 0;
  }
  .l-gnav-sp-search-btn {
    background-color: #231815;
    position: relative;
    width: 16vw;
    padding: 4vw 0;
    margin: 0 2.6666666667vw 0 0;
  }
  .l-gnav-sp-search-btn-txt {
    font-size: 3.7333333333vw;
    font-weight: bold;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-gnav-sp-search-bg {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 14.6666666667vw;
    left: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
  }
  .l-gnav-sp-search-bg.is-appear {
    opacity: 1;
    visibility: visible;
  }
}
/*------------- .l-content -------------*/
.l-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .l-content {
    width: 92%;
  }
}
/*------------- .m-mv -------------*/
.m-mv {
  padding: 35px 0 50px;
  margin: 80px 0 0;
}
.m-mv.m-bg-gray {
  background-color: #f2f2f2;
}

.m-mv-ttl-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.m-mv-ttl-wrap.m-mv-w100 {
  width: 100%;
}
.m-mv-ttl-wrap.m-mv-w92 {
  width: 92%;
}

.m-mv-ttl {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: bold;
}

.m-mv-ttl-lead {
  font-size: 1.2rem;
  line-height: 2;
  margin: 0 0 0 50px;
}

@media screen and (max-width: 767px) {
  .m-mv {
    padding: 6.6666666667vw 0;
    margin: 14.6666666667vw 0 0;
  }
  .m-mv-ttl-wrap {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 auto;
    width: 80vw;
  }
  .m-mv-ttl {
    font-size: 5.0666666667vw;
    letter-spacing: 0;
  }
  .m-mv-ttl-lead {
    font-size: 3.0666666667vw;
    margin: 3.3333333333vw 0 0 0;
  }
}
/*------------- .l-pagetop -------------*/
.l-pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

.l-pagetop.is-fix {
  position: absolute;
}

@media screen and (max-width: 767px) {
  .l-pagetop-sp {
    background-color: #fff;
  }
  .is-pagelink {
    display: block;
    text-align: center;
    padding: 10.6666666667vw 0 3.3333333333vw;
  }
  .is-pagelink img {
    width: 12.1333333333vw;
    height: auto;
  }
}
/*------------- .l-footer -------------*/
.l-footer {
  background-color: #1f1d1d;
}

.l-footer-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 45px 0 15px;
}

.l-footer-ttl-link {
  font-size: 1.6rem;
  font-weight: bold;
  color: #c7c7c7;
}

.l-footer-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 35px 0 0;
}

.l-footer-list-item {
  position: relative;
  width: 145px;
}
.l-footer-list-item.l-footer-list-item-width152 {
  width: 152px;
}
.l-footer-list-item.l-footer-list-item-width165 {
  width: 165px;
}

a.l-footer-list-item-ttl-top-link {
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: bold;
  color: #c7c7c7;
  display: inline-block;
}

.l-footer-list-item-ttl {
  margin: 20px 0 0;
}

.l-footer-list-item-ttl-link {
  color: #c7c7c7;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: inline-block;
}

.l-footer-list-sub-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 55px 0 0;
  padding: 0 0 15px;
}

.l-footer-list-sub {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-footer-list-item-sub + .l-footer-list-item-sub {
  margin: 0 0 0 25px;
}

.l-footer-list-item-sub-ttl-link {
  color: #c7c7c7;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: inline-block;
}

.l-footer-sns-list {
  display: flex;
  gap: 16px;
}
.l-footer-sns-list img {
  width: 48px;
}

.l-footer-copyright {
  font-size: 1.1rem;
  padding: 20px 0;
  color: #747474;
  border-top: 1px solid #2e2e2e;
}

@media screen and (max-width: 767px) {
  .l-footer-wrap {
    max-width: auto;
    padding: 6.6666666667vw 6.6666666667vw 5.3333333333vw;
  }
  .l-footer-ttl-link {
    font-size: 3.6vw;
  }
  .l-footer-list {
    flex-direction: column;
    margin: 7.3333333333vw 0 0;
  }
  .l-footer-list-item {
    width: 100%;
    border-top: 0.1333333333vw solid #3C3B3B;
    padding: 7.3333333333vw 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-footer-list-item.l-footer-list-item-flex-start {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-footer-list-item.l-footer-list-item-width152 {
    width: 100%;
  }
  .l-footer-list-item.l-footer-list-item-width165 {
    width: 100%;
  }
  .l-footer-list-item-ttl-top {
    width: 100%;
  }
  a.l-footer-list-item-ttl-top-link {
    font-size: 3.6vw;
  }
  .l-footer-list-item-ttl {
    margin: 4vw 0 0;
    width: 45%;
  }
  .l-footer-list-item-ttl.l-footer-list-item-ttl-width37 {
    width: 37%;
  }
  .l-footer-list-item-ttl.l-footer-list-item-ttl-width25 {
    width: 25%;
  }
  .l-footer-list-item-ttl-link {
    font-size: 2.9333333333vw;
  }
  .l-footer-list-sub-wrap {
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding-bottom: 6.2666666667vw;
  }
  .l-footer-list-sub {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 7.3333333333vw 0;
    border-top: 0.1333333333vw solid #3C3B3B;
  }
  .l-footer-list-item-sub {
    width: 45%;
    padding: 0;
    margin: 4vw 0 0;
  }
  .l-footer-list-item-sub + .l-footer-list-item-sub {
    margin: 4vw 0 0;
  }
  .l-footer-list-item-sub:nth-of-type(-n+2) {
    margin: 0 0 0;
  }
  .l-footer-list-item-sub-ttl-link {
    font-size: 2.9333333333vw;
  }
  .l-footer-sns-list {
    justify-content: center;
    gap: 4.5333333333vw;
  }
  .l-footer-sns-list img {
    width: 9.8666666667vw;
  }
  .l-footer-copyright {
    font-size: 2.6666666667vw;
    text-align: center;
    padding: 6vw 0 0;
  }
}
@media screen and (max-width: 767px) {
  .sp-shrink-img50 {
    width: 50%;
    margin: 0 auto;
  }
}
/* common
---------------------------------------------------------------------------- */
/* パーツ系
---------------------------------------------------------------------------- */
.m-arrow {
  position: relative;
}
.m-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -45px;
  height: 1px;
  background: #1f1d1d;
  width: 25px;
  border-radius: 1px;
  transition: 0.3s;
}
.m-arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -45px;
  height: 1px;
  background: #1f1d1d;
  width: 6px;
  transform-origin: right center;
  transform: rotate(30deg);
  border-radius: 1px;
  transition: 0.3s;
}

/* 見出し・テキスト
---------------------------------------- */
.m-c-ttl-bh {
  font-size: 2.6rem;
  line-height: 1.6153846154;
  font-weight: bold;
  border-bottom: 3px solid #231815;
  padding-bottom: 12px;
}

.m-c-ttl-mh {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: bold;
}

.m-c-ttl-sh {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: bold;
}

.m-c-txt {
  font-size: 1.4rem;
  line-height: 2;
}
.m-c-txt.m-height-500 {
  height: 500px;
}
.m-c-txt.ml1em {
  margin-left: 1em;
}
.m-c-txt span.m-txt-small {
  font-size: 1.2rem;
  line-height: 1.5;
}
.m-c-txt span.m-txt-small-inparagraph {
  font-size: 1rem;
  vertical-align: top;
}

.m-txt-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.m-color-red-bold {
  color: #f00;
  font-weight: bold;
}

.m-hover-underline {
  text-decoration: underline;
}
.m-hover-underline:hover {
  text-decoration: none;
}

/* リスト
---------------------------------------- */
.m-c-check {
  background-color: #FAF6ED;
  padding: 40px 50px;
}
.m-c-check li {
  padding-left: 40px;
  margin-bottom: 20px;
  background: url("/assets/images/common/icn_check.png") no-repeat 0 6px;
}
.m-c-check li:last-child {
  margin-bottom: 0;
}

.m-c-bullet {
  background-color: #FAF6ED;
  padding: 40px 50px;
}
.m-c-bullet li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 20px;
}
.m-c-bullet li:last-child {
  margin-bottom: 0;
}

.m-c-decimal {
  background-color: #FAF6ED;
  padding: 40px 50px;
}
.m-c-decimal li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.m-c-decimal li:last-child {
  margin-bottom: 0;
}

.m-c-decimal-num {
  min-width: 20px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-family: "Oswald";
  font-weight: 500;
}

/* 各ブロックボタンデザイン
---------------------------------------- */
.m-c-block-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 58px;
}

.m-c-block-list-item {
  width: 100px;
}

.m-c-block-list-link {
  display: block;
  transition: 0.3s;
}
.m-c-block-list-link:hover {
  opacity: 0.7;
}

.m-c-block-list-link-pic {
  margin-bottom: 7px;
}

.m-c-block-list-link-txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: center;
}

/* テーブル
---------------------------------------- */
.m-c-table {
  width: 100%;
}
.m-c-table col.w5p {
  width: 5%;
}
.m-c-table col.w10p {
  width: 10%;
}
.m-c-table col.w15p {
  width: 15%;
}
.m-c-table col.w20p {
  width: 20%;
}
.m-c-table col.w25p {
  width: 25%;
}
.m-c-table col.w30p {
  width: 30%;
}
.m-c-table col.w35p {
  width: 35%;
}
.m-c-table col.w40p {
  width: 40%;
}
.m-c-table col.w45p {
  width: 45%;
}
.m-c-table col.w50p {
  width: 50%;
}
.m-c-table col.w55p {
  width: 55%;
}
.m-c-table col.w60p {
  width: 60%;
}
.m-c-table col.w65p {
  width: 65%;
}
.m-c-table col.w70p {
  width: 70%;
}
.m-c-table col.w75p {
  width: 75%;
}
.m-c-table col.w80p {
  width: 80%;
}
.m-c-table col.w85p {
  width: 85%;
}
.m-c-table col.w90p {
  width: 90%;
}
.m-c-table col.w95p {
  width: 95%;
}
.m-c-table col.w100p {
  width: 100%;
}
.m-c-table thead th {
  background-color: #4B4B4B;
  color: #fff;
  padding: 10px 40px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: bold;
  border-left: 1px solid #E1E1E1;
}
.m-c-table th {
  background-color: #E1E1E1;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: bold;
  border-bottom: 1px solid #B9B9B9;
  border-right: 1px solid #E1E1E1;
  text-align: left;
  vertical-align: top;
  padding: 20px;
}
.m-c-table th.line {
  border-right: 1px solid #B9B9B9;
}
.m-c-table td {
  background-color: #F2F2F2;
  font-size: 1.4rem;
  line-height: 2;
  border-bottom: 1px solid #B9B9B9;
  border-right: 1px solid #B9B9B9;
  text-align: left;
  vertical-align: top;
  padding: 20px 40px;
}
.m-c-table td:last-child {
  border-right: 0;
}
.m-c-table td.m-table-border-right {
  border-right: 1px solid #B9B9B9;
}
.m-c-table.m-table-padding thead th {
  padding: 10px 15px;
}
.m-c-table.m-table-padding td {
  padding: 20px;
}

/* 画像＋テキスト
---------------------------------------- */
.m-c-imgtxtbox:after {
  content: "";
  display: block;
  clear: both;
}

.m-c-imgtxtbox-img.fll {
  float: left;
}
.m-c-imgtxtbox-img.flr {
  float: right;
}
.m-c-imgtxtbox-img.w5p {
  width: 5%;
}
.m-c-imgtxtbox-img.w10p {
  width: 10%;
}
.m-c-imgtxtbox-img.w15p {
  width: 15%;
}
.m-c-imgtxtbox-img.w20p {
  width: 20%;
}
.m-c-imgtxtbox-img.w25p {
  width: 25%;
}
.m-c-imgtxtbox-img.w30p {
  width: 30%;
}
.m-c-imgtxtbox-img.w35p {
  width: 35%;
}
.m-c-imgtxtbox-img.w40p {
  width: 40%;
}
.m-c-imgtxtbox-img.w45p {
  width: 45%;
}
.m-c-imgtxtbox-img.w50p {
  width: 50%;
}
.m-c-imgtxtbox-img.w55p {
  width: 55%;
}
.m-c-imgtxtbox-img.w60p {
  width: 60%;
}
.m-c-imgtxtbox-img.w65p {
  width: 65%;
}
.m-c-imgtxtbox-img.w70p {
  width: 70%;
}
.m-c-imgtxtbox-img.w75p {
  width: 75%;
}
.m-c-imgtxtbox-img.w80p {
  width: 80%;
}
.m-c-imgtxtbox-img.w85p {
  width: 85%;
}
.m-c-imgtxtbox-img.w90p {
  width: 90%;
}
.m-c-imgtxtbox-img.w95p {
  width: 95%;
}
.m-c-imgtxtbox-img.w100p {
  width: 100%;
}

/* アコーディオン
---------------------------------------- */
.m-c-accbox-ttlbox {
  border-bottom: 3px solid #000;
  padding: 0 68px 18px 20px;
  background: url("/assets/images/common/icn_plus.png") no-repeat right 20px top;
  cursor: pointer;
  transition: 0.3s;
}
.m-c-accbox-ttlbox:hover {
  opacity: 0.7;
}
.m-c-accbox-ttlbox.is-active {
  background: url("/assets/images/common/icn_minus.png") no-repeat right 20px top;
}

.m-c-accbox-ttl {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
}

.m-c-accbox-txtbox {
  padding: 30px 20px 0;
}

/* タブ
---------------------------------------- */
.m-c-tab-list {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.m-c-tab-list-item {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  cursor: pointer;
}

.m-c-tab-list-item-link {
  transition: 0.5s;
  display: block;
  padding: 18px 37px 18px 0;
}

.m-c-tab-list-item-link-txt {
  position: relative;
}
.m-c-tab-list-item-link-txt:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-bottom: solid 2px #1f1d1d;
  transition: 0.5s ease;
  width: 0;
  margin-top: 5px;
}
.m-c-tab-list-item-link-txt.is-current:after {
  width: 100%;
}

/* コンテンツ導線（画像＋テキスト）
---------------------------------------- */
.m-c-nav-list {
  width: 1100px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-c-nav-list-item {
  width: 230px;
  margin: 0 60px 33px 0;
}
.m-c-nav-list-item:nth-of-type(4n) {
  margin-right: 0;
}

.m-c-nav-list-item-link {
  display: block;
  height: 100%;
}
.m-c-nav-list-item-link:hover .m-c-nav-list-item-pic img {
  transform: scale(1.05);
}
.m-c-nav-list-item-link:hover .m-arrow:before {
  width: 30px;
  transform: translateX(5px);
}
.m-c-nav-list-item-link:hover .m-arrow:after {
  transform: translateX(5px) rotate(30deg);
}

.m-c-nav-list-item-pic {
  width: 230px;
  height: auto;
  overflow: hidden;
}
.m-c-nav-list-item-pic img {
  width: 100%;
  transition: 0.3s;
}

.m-c-nav-list-item-txt-box {
  padding: 14px 0 0;
}

.m-c-nav-list-item-txt-box-ttl {
  font-size: 2.1rem;
  line-height: 1.5238095238;
  font-weight: bold;
}

/* カテゴリタグ
---------------------------------------- */
.m-c-cat-list-item {
  margin-bottom: 26px;
}
.m-c-cat-list-item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.m-c-cat-list-item-cat {
  font-size: 1.1rem;
  line-height: 2.0909090909;
  text-align: center;
  color: #747474;
  position: relative;
  padding-right: 12px;
  margin-right: 44px;
  flex-shrink: 0;
}
.m-c-cat-list-item-cat:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #747474;
  position: absolute;
  top: 5px;
  right: 0;
}

.m-c-cat-list-item-ttl {
  font-size: 1.4rem;
  line-height: 1.6428571429;
}

.m-c-tag-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.m-c-tag-list li {
  margin: 0 10px 10px 0;
}
.m-c-tag-list li a {
  background-color: #707070;
  color: #fff;
  font-size: 1.1rem;
  min-width: 69px;
  height: 20px;
  padding: 0 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Q&amp;A
---------------------------------------- */
.m-c-qabox-q {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.m-c-qabox-q-icn {
  width: 32px;
  height: 32px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Oswald";
  background-color: #F2F2F2;
  color: #000;
  font-size: 2rem;
  margin-right: 16px;
  flex-shrink: 0;
}

.m-c-qabox-q-ttl {
  padding-top: 3px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
}

.m-c-qabox-a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.m-c-qabox-a-icn {
  width: 32px;
  height: 32px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Oswald";
  background-color: #4B4B4B;
  color: #fff;
  font-size: 2rem;
  margin-right: 47px;
  flex-shrink: 0;
}

.m-c-qabox-a-txt {
  padding-top: 3px;
}

/* ポイント、アドバイス
---------------------------------------- */
.m-c-borderbox {
  border-radius: 10px;
  border: 1px solid #707070;
  padding: 21px 43px 21px 25px;
}
.m-c-borderbox:after {
  content: "";
  display: block;
  clear: both;
}

.m-c-borderbox-img {
  float: left;
  margin-right: 63px;
}

.m-c-borderbox-ttl {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 8px;
}

/* 下層コンテンツ導線（.l-content外で使用）
---------------------------------------- */
.m-lower-nav {
  background-color: #f2f2f2;
  padding: 39px 0 20px;
}

.m-lower-nav-mh {
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

.m-lower-nav-list {
  width: 1020px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.m-lower-nav-list.m-flex-center {
  justify-content: center;
}

.m-lower-nav-list-item {
  width: 210px;
  margin: 0 60px 33px 0;
  background-color: #fff;
}
.m-lower-nav-list-item:nth-of-type(4n) {
  margin-right: 0;
}

.m-lower-nav-list-item-link {
  display: block;
  height: 100%;
}
.m-lower-nav-list-item-link:hover .m-lower-nav-list-item-pic img {
  transform: scale(1.05);
}

.m-lower-nav-list-item-pic {
  width: 210px;
  height: auto;
  overflow: hidden;
}
.m-lower-nav-list-item-pic img {
  width: 100%;
  transition: 0.3s;
}

.m-lower-nav-list-item-txt-box {
  padding: 20px 17px 20px;
}

.m-lower-nav-list-item-txt-box-ttl {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: -0.02em;
  font-weight: bold;
}

.m-lower-nav-list-item-txt-box-lead {
  font-size: 1.3rem;
  line-height: 1.6153846154;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
}

/* 各種ボタン、リンク
---------------------------------------- */
.m-c-more {
  margin: 40px 0;
}

.m-c-more-btn {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.02em;
  border: 1px solid #707070;
  width: 180px;
  height: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  cursor: pointer;
}
.m-c-more-btn:hover {
  opacity: 0.7;
}

.m-c-more-add {
  display: none;
}

.m-c-link-btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.m-c-link-btn a {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 40px auto 60px;
  padding: 0 60px;
  min-width: 260px;
  height: 40px;
  border: 1px solid #707070;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.m-c-link-btn a:hover .m-arrow:before {
  width: 30px;
  transform: translateX(5px);
}
.m-c-link-btn a:hover .m-arrow:after {
  transform: translateX(5px) rotate(30deg);
}
.m-c-link-btn.m-back-btn a {
  min-width: auto;
  padding: 0 70px 0 50px;
  margin: 40px auto 80px;
}
.m-c-link-btn.m-back-btn a:hover .m-arrow:before {
  width: 30px;
  transform: translateX(5px);
}
.m-c-link-btn.m-back-btn a:hover .m-arrow:after {
  transform: translateX(5px) rotate(30deg);
}
.m-c-link-btn.m-back-btn a .m-arrow {
  position: relative;
  margin: auto;
}
.m-c-link-btn.m-back-btn a .m-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -45px;
  height: 1px;
  background: #1f1d1d;
  width: 25px;
  border-radius: 1px;
  transition: 0.3s;
}
.m-c-link-btn.m-back-btn a .m-arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -45px;
  height: 1px;
  background: #1f1d1d;
  width: 6px;
  transform-origin: right center;
  transform: rotate(30deg);
  border-radius: 1px;
  transition: 0.3s;
}

.m-c-link-btn-multiple {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.m-c-link-btn-multiple a {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.02em;
  width: fit-content;
  min-width: 260px;
  padding: 15px 50px;
  padding-right: 90px;
  border: 1px solid #707070;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.m-c-link-btn-multiple a > .m-arrow:before {
  right: -70px;
}
.m-c-link-btn-multiple a > .m-arrow:after {
  right: -70px;
}
.m-c-link-btn-multiple a:hover > .m-arrow:before {
  width: 30px;
  transform: translateX(5px);
}
.m-c-link-btn-multiple a:hover > .m-arrow:after {
  transform: translateX(5px) rotate(30deg);
}

.m-c-link-anchorlist {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}
.m-c-link-anchorlist li a {
  border: 1px solid #707070;
  min-width: 184px;
  height: 40px;
  padding: 0 30px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.3rem;
  line-height: 3;
  letter-spacing: -0.02em;
  background: url("/assets/images/common/icn_bullet_down.png") no-repeat right 12px center;
}

.m-c-link-pdf {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: #fff;
}
.m-c-link-pdf:before {
  content: "";
  display: block;
  width: 44px;
  min-height: 44px;
  background: url("/assets/images/common/icn_pdf.png") no-repeat center center #000;
  flex-shrink: 0;
}
.m-c-link-pdf a {
  display: block;
  border: 1px solid #707070;
  border-left: 0;
  padding: 6px 60px 6px 18px;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.02em;
  background: url("/assets/images/common/icn_download.png") no-repeat right 20px center;
}

.m-c-link-new {
  padding-left: 24px;
  background: url("/assets/images/common/icn_newtab.png") no-repeat 0 9px;
  font-size: 1.4rem;
  line-height: 2;
}

.m-c-link-mail {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 40px auto 60px;
}
.m-c-link-mail a {
  padding: 0 50px;
  height: 40px;
  border: 1px solid #707070;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.m-c-link-mail-ttl {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.02em;
  padding-left: 26px;
  background: url("/assets/images/common/icn_mail.png") no-repeat left center;
}

.m-c-link:hover .m-arrow:before {
  width: 30px;
  transform: translateX(5px);
}
.m-c-link:hover .m-arrow:after {
  transform: translateX(5px) rotate(30deg);
}

.m-c-link-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.m-c-link-list > li {
  padding-right: 50px;
  margin: 0 25px 20px 0;
}

.m-c-youtube {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding-top: 56.25%;
}
.m-c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.m-c-video {
  cursor: pointer;
}
.m-c-video video {
  max-width: 100%;
}
.m-c-video iframe {
  max-width: 100% !important;
}

.m-c-txt-red {
  color: #cc0000;
}

.m-c-twocol {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.m-c-twocol > * {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .m-arrow:before {
    right: -8vw;
    height: 0.2666666667vw;
    width: 5.3333333333vw;
    border-radius: 0.2666666667vw;
  }
  .m-arrow:after {
    right: -8vw;
    height: 0.2666666667vw;
    width: 1.6vw;
    border-radius: 0.2666666667vw;
  }
  .m-c-youtube {
    width: 100%;
  }
  /* 見出し・テキスト
  ---------------------------------------- */
  .m-c-ttl-bh {
    font-size: 4.5333333333vw;
    line-height: 1.53;
    padding-bottom: 2.2666666667vw;
  }
  .m-c-ttl-mh {
    font-size: 4vw;
    line-height: 1.67;
  }
  .m-c-ttl-sh {
    font-size: 3.7333333333vw;
    line-height: 1.79;
  }
  .m-c-txt {
    font-size: 3.7333333333vw;
    line-height: 1.79;
  }
  .m-c-txt.m-height-500 {
    height: auto;
  }
  /* リスト
  ---------------------------------------- */
  .m-c-check {
    padding: 6.6666666667vw 6vw;
  }
  .m-c-check li {
    padding-left: 4.5333333333vw;
    margin-bottom: 3.4666666667vw;
    background-size: 2.4vw;
    background-position: 0 1.6533333333vw;
  }
  .m-c-check li:last-child {
    margin-bottom: 0;
  }
  .m-c-bullet {
    padding: 6.6666666667vw 6vw;
  }
  .m-c-bullet li {
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 3.4666666667vw;
  }
  .m-c-bullet li:last-child {
    margin-bottom: 0;
  }
  .m-c-decimal {
    padding: 6.6666666667vw 6vw;
  }
  .m-c-decimal li {
    margin-bottom: 3.4666666667vw;
  }
  .m-c-decimal li:last-child {
    margin-bottom: 0;
  }
  .m-c-decimal-num {
    min-width: 5.2vw;
    font-size: 3.7333333333vw;
  }
  /* 各ブロックボタンデザイン
  ---------------------------------------- */
  .m-c-block-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 6.6666666667vw;
  }
  .m-c-block-list-item {
    width: 18.6666666667vw;
    margin-bottom: 6.6666666667vw;
  }
  .m-c-block-list-link:hover {
    opacity: 1;
  }
  .m-c-block-list-link-pic {
    margin-bottom: 2vw;
  }
  .m-c-block-list-link-txt {
    font-size: 3.7333333333vw;
  }
  /* テーブル
  ---------------------------------------- */
  .m-c-table-scroll {
    overflow: auto;
    white-space: nowrap;
    width: 100%;
  }
  .m-c-table thead th {
    padding: 2.6666666667vw 5.3333333333vw;
    font-size: 4vw;
  }
  .m-c-table th {
    font-size: 3.7333333333vw;
    padding: 4vw;
  }
  .m-c-table td {
    font-size: 3.7333333333vw;
    padding: 4vw 5.3333333333vw;
  }
  .m-c-table col.sp_w5p {
    width: 5%;
  }
  .m-c-table col.sp_w10p {
    width: 10%;
  }
  .m-c-table col.sp_w15p {
    width: 15%;
  }
  .m-c-table col.sp_w20p {
    width: 20%;
  }
  .m-c-table col.sp_w25p {
    width: 25%;
  }
  .m-c-table col.sp_w30p {
    width: 30%;
  }
  .m-c-table col.sp_w35p {
    width: 35%;
  }
  .m-c-table col.sp_w40p {
    width: 40%;
  }
  .m-c-table col.sp_w45p {
    width: 45%;
  }
  .m-c-table col.sp_w50p {
    width: 50%;
  }
  .m-c-table col.sp_w55p {
    width: 55%;
  }
  .m-c-table col.sp_w60p {
    width: 60%;
  }
  .m-c-table col.sp_w65p {
    width: 65%;
  }
  .m-c-table col.sp_w70p {
    width: 70%;
  }
  .m-c-table col.sp_w75p {
    width: 75%;
  }
  .m-c-table col.sp_w80p {
    width: 80%;
  }
  .m-c-table col.sp_w85p {
    width: 85%;
  }
  .m-c-table col.sp_w90p {
    width: 90%;
  }
  .m-c-table col.sp_w95p {
    width: 95%;
  }
  .m-c-table col.sp_w100p {
    width: 100%;
  }
  /* 画像＋テキスト
  ---------------------------------------- */
  .m-c-imgtxtbox-img.fll {
    float: none;
    margin: 0 0 5.3333333333vw !important;
  }
  .m-c-imgtxtbox-img.flr {
    float: none;
    margin: 0 0 5.3333333333vw !important;
  }
  .m-c-imgtxtbox-img.w5p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w10p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w15p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w20p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w25p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w30p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w35p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w40p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w45p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w50p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w55p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w60p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w65p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w70p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w75p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w80p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w85p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w90p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w95p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.w100p {
    width: 100%;
  }
  .m-c-imgtxtbox-img.m-border-bottom {
    border-bottom: 1px solid #ccc;
    padding-bottom: 4vw;
  }
  /* アコーディオン
  ---------------------------------------- */
  .m-c-accbox-ttlbox {
    padding: 0 10.6666666667vw 2.6666666667vw 2.6666666667vw;
    background-size: 5.6vw;
    background-position: right 2.6666666667vw top;
  }
  .m-c-accbox-ttlbox:hover {
    opacity: 1;
  }
  .m-c-accbox-ttlbox.is-active {
    background-size: 5.6vw;
    background-position: right 2.6666666667vw top;
  }
  .m-c-accbox-ttl {
    font-size: 4vw;
    line-height: 1.5;
  }
  .m-c-accbox-txtbox {
    padding: 1.8666666667vw 2.6666666667vw 0;
  }
  /* タブ
  ---------------------------------------- */
  .m-c-tab-list-scroll {
    overflow: auto;
    white-space: nowrap;
    width: 100%;
  }
  .m-c-tab-list {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .m-c-tab-list-item {
    font-size: 2.9333333333vw;
    line-height: 1;
  }
  .m-c-tab-list-item-link {
    transition: 0;
    padding: 3.4666666667vw 5.7333333333vw 3.4666666667vw 0;
  }
  .m-c-tab-list-item-link-txt:after {
    border-bottom: solid 3px #1f1d1d;
    transition: 0;
    bottom: -vw(20);
    margin-top: 1.2vw;
  }
  /* コンテンツ導線（画像＋テキスト）
  ---------------------------------------- */
  .m-c-nav-list {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .m-c-nav-list-item {
    width: 46%;
    margin: 0 7% 9.3333333333vw 0;
  }
  .m-c-nav-list-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .m-c-nav-list-item-link:hover .m-c-nav-list-item-pic img {
    transform: scale(1);
  }
  .m-c-nav-list-item-link:hover .m-arrow:before {
    width: 5.3333333333vw;
    transform: translateX(0);
  }
  .m-c-nav-list-item-link:hover .m-arrow:after {
    transform: translateX(0) rotate(30deg);
  }
  .m-c-nav-list-item-pic {
    width: 100%;
  }
  .m-c-nav-list-item-pic img {
    transition: 0;
  }
  .m-c-nav-list-item-txt-box {
    padding: 3.3333333333vw 0 0;
  }
  .m-c-nav-list-item-txt-box-ttl {
    font-size: 4vw;
    line-height: 1.33;
  }
  /* カテゴリタグ
  ---------------------------------------- */
  .m-c-cat-list-item {
    margin-bottom: 5.8666666667vw;
  }
  .m-c-cat-list-item a {
    display: block;
  }
  .m-c-cat-list-item-cat {
    font-size: 2.8vw;
    line-height: 1;
    padding-right: 2.6666666667vw;
    margin-right: 0;
    margin-bottom: 1.8666666667vw;
    text-align: left;
    width: auto;
  }
  .m-c-cat-list-item-cat:after {
    height: 3.7333333333vw;
    top: 0;
    right: auto;
    margin-left: 2.6666666667vw;
  }
  .m-c-cat-list-item-ttl {
    font-size: 3.6vw;
  }
  .m-c-tag-list li {
    margin: 0 2.6666666667vw 2.6666666667vw 0;
  }
  .m-c-tag-list li a {
    font-size: 2.8vw;
    min-width: 17.0666666667vw;
    height: 4.8vw;
    padding: 0 1.6vw;
  }
  /* Q&amp;A
  ---------------------------------------- */
  .m-c-qabox-q {
    padding-bottom: 2.9333333333vw;
    margin-bottom: 2.4vw;
  }
  .m-c-qabox-q-icn {
    width: 5.6vw;
    height: 5.6vw;
    font-size: 4vw;
    margin-right: 2.6666666667vw;
    margin-top: 0.8vw;
  }
  .m-c-qabox-q-ttl {
    padding-top: 0;
    font-size: 4vw;
  }
  .m-c-qabox-a-icn {
    width: 5.6vw;
    height: 5.6vw;
    font-size: 4vw;
    margin-right: 2.6666666667vw;
    margin-top: 0.8vw;
  }
  .m-c-qabox-a-txt {
    padding-top: 0;
  }
  /* ポイント、アドバイス
  ---------------------------------------- */
  .m-c-borderbox {
    border-radius: 1.3333333333vw;
    padding: 7.2vw;
    margin-bottom: 6.8vw;
  }
  .m-c-borderbox-ttlbox {
    margin-top: -4vw;
  }
  .m-c-borderbox-ttlbox:after {
    content: "";
    display: block;
    clear: both;
  }
  .m-c-borderbox-img {
    width: 21.6vw;
    float: left;
    margin: 0 3.2vw 0 -3.8666666667vw;
  }
  .m-c-borderbox-ttl {
    font-size: 3.7333333333vw;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  /* 下層コンテンツ導線（.l-content外で使用）
  ---------------------------------------- */
  .m-lower-nav {
    padding: 7.4666666667vw 0 7.6vw;
  }
  .m-lower-nav-mh {
    font-size: 4vw;
    margin-bottom: 7.4666666667vw;
  }
  .m-lower-nav-list {
    width: 86.6666666667vw;
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .m-lower-nav-list-item {
    width: 86.6666666667vw;
    margin: 0 0 6.2666666667vw;
  }
  .m-lower-nav-list-item-link {
    height: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .m-lower-nav-list-item-pic {
    width: 40vw;
    flex: none;
  }
  .m-lower-nav-list-item-txt-box {
    padding: 3.3333333333vw 4.1333333333vw 3.3333333333vw 4.8vw;
  }
  .m-lower-nav-list-item-txt-box-ttl {
    font-size: 3.2vw;
  }
  .m-lower-nav-list-item-txt-box-lead {
    font-size: 3.4666666667vw;
    margin: 0.5333333333vw 0 0;
  }
  /* 各種ボタン、リンク
  ---------------------------------------- */
  .m-c-more {
    margin: 8vw 0;
  }
  .m-c-more-btn {
    margin: 0;
    font-size: 3.4666666667vw;
    width: 40vw;
    height: auto;
    min-height: 9.3333333333vw;
  }
  .m-c-more-btn:hover {
    opacity: 1;
  }
  .m-c-link-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .m-c-link-btn a {
    font-size: 3.4666666667vw;
    line-height: 1.5;
    margin: 8vw 0 9.8666666667vw;
    padding: 0 13.3333333333vw;
    min-width: 63.3333333333vw;
    height: auto;
    min-height: 9.3333333333vw;
  }
  .m-c-link-btn a:hover .m-arrow:before {
    width: 6.6666666667vw;
    transform: translateX(1.3333333333vw);
  }
  .m-c-link-btn a:hover .m-arrow:after {
    transform: translateX(1.3333333333vw) rotate(30deg);
  }
  .m-c-link-btn.m-back-btn a {
    min-width: auto;
    padding: 0 16vw 0 13.3333333333vw;
    margin: 13.3333333333vw auto 6.6666666667vw;
  }
  .m-c-link-btn.m-back-btn a:hover .m-arrow:before {
    width: 6.6666666667vw;
    transform: translateX(1.3333333333vw);
  }
  .m-c-link-btn.m-back-btn a:hover .m-arrow:after {
    transform: translateX(1.3333333333vw) rotate(30deg);
  }
  .m-c-link-btn.m-back-btn a .m-arrow:before {
    right: -10.6666666667vw;
    height: 0.2666666667vw;
    width: 5.3333333333vw;
    border-radius: 0.2666666667vw;
  }
  .m-c-link-btn.m-back-btn a .m-arrow:after {
    right: -10.6666666667vw;
    height: 0.2666666667vw;
    width: 1.6vw;
    border-radius: 0.2666666667vw;
  }
  .m-c-link-btn-multiple {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2.6666666667vw 2.6666666667vw;
  }
  .m-c-link-btn-multiple a {
    position: relative;
    font-size: 3.4666666667vw;
    line-height: 1.5;
    padding: 2.6666666667vw 5.3333333333vw;
    width: 100%;
    min-width: unset;
  }
  .m-c-link-btn-multiple a > .m-arrow {
    content: "";
    display: block;
    position: absolute;
    right: 2.6666666667vw;
    top: 50%;
    transform: translateY(-50%);
    width: 5vw;
    height: 1vw;
  }
  .m-c-link-btn-multiple a > .m-arrow:before {
    right: 0vw;
    height: 0.2666666667vw;
    width: 5.3333333333vw;
    border-radius: 0.2666666667vw;
  }
  .m-c-link-btn-multiple a > .m-arrow:after {
    right: 0vw;
    height: 0.2666666667vw;
    width: 1.6vw;
    border-radius: 0.2666666667vw;
  }
  .m-c-link-btn-multiple a:hover > .m-arrow:before {
    width: 6.6666666667vw;
    transform: translateX(1.3333333333vw);
  }
  .m-c-link-btn-multiple a:hover > .m-arrow:after {
    transform: translateX(1.3333333333vw) rotate(30deg);
  }
  .m-c-link-btn-multiple .m-c-link-pdf {
    width: 100%;
  }
  .m-c-link-btn-multiple .m-c-link-pdf a {
    flex-grow: 1;
  }
  .m-c-link-anchorlist {
    margin: 8vw 0;
    gap: 4vw;
  }
  .m-c-link-anchorlist li a {
    min-width: auto;
    height: auto;
    min-height: 9.3333333333vw;
    padding: 0 8vw;
    font-size: 3.4666666667vw;
    line-height: 1.5;
    background-size: 2.6666666667vw;
    background-position: right 3.0666666667vw center;
  }
  .m-c-link-pdf.m-c-flex-center {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .m-c-link-pdf:before {
    width: 9.3333333333vw;
    min-height: 9.3333333333vw;
    background-size: 4.2666666667vw;
    background-position: center center;
  }
  .m-c-link-pdf a {
    padding: 1.8666666667vw 10vw 2.4vw 2.6666666667vw;
    font-size: 3.4666666667vw;
    line-height: 1.5;
    background-size: 4.2666666667vw;
    background-position: right 2.6666666667vw center;
  }
  .m-c-link-new {
    padding-left: 6.2666666667vw;
    background-size: 2.9333333333vw;
    background-position: 0 1.8666666667vw;
    font-size: 3.6vw;
  }
  .m-c-link-mail {
    margin: 8vw auto;
  }
  .m-c-link-mail a {
    padding: 0 10.6666666667vw;
    height: 9.3333333333vw;
  }
  .m-c-link-mail-ttl {
    font-size: 3.4666666667vw;
    padding-left: 7.4666666667vw;
    background-size: 4.6666666667vw;
    background-position: left center;
  }
  .m-c-link:hover .m-arrow:before {
    width: 5.3333333333vw;
    transform: translateX(0);
  }
  .m-c-link:hover .m-arrow:after {
    transform: translateX(0) rotate(30deg);
  }
  .m-c-link-list-7col li {
    width: 42%;
  }
  .m-c-twocol {
    display: block;
  }
  .m-c-twocol > * {
    width: auto;
  }
}
/* バナー横並び
---------------------------------------- */
.m-banner-list-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.m-banner-list-item-flex + .m-banner-list-item-flex {
  margin: 0 0 0 30px;
}

@media screen and (max-width: 767px) {
  .m-banner-list-flex {
    align-items: center;
    flex-wrap: wrap;
  }
  .m-banner-list-item-flex {
    text-align: center;
    width: 44vw;
    margin: 0 0 6.6666666667vw 0;
  }
  .m-banner-list-item-flex + .m-banner-list-item-flex {
    margin: 0;
  }
  .m-banner-list-item-flex:nth-of-type(even) {
    margin: 0 0 6.6666666667vw 4vw;
  }
}
/* 画像横並び
---------------------------------------- */
.m-pic-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 禁則処理
---------------------------------------- */
.m-word-break {
  word-break: break-word;
}

/* 二輪車通行規制区間情報：クラス名「kaijo」
---------------------------------------- */
.kaijo {
  border: 1px solid #ff0023;
  background-color: #fff;
  width: 160px;
  padding: 12px 0;
  font-size: 1.3rem;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #ff0023;
}

@media screen and (max-width: 767px) {
  .kaijo {
    border: 0.2666666667vw solid #ff0023;
    width: 34.6666666667vw;
    padding: 2.6666666667vw 0;
    font-size: 3.4666666667vw;
  }
}
.m-border-left {
  border-left: 1px solid #B9B9B9;
}

/* ページ下部の関連リンク箇所
---------------------------------------- */
.m-relate-column {
  background-color: #f2f2f2;
  padding: 39px 0 50px;
}

.m-relate-column-mh {
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

.m-relate-column-list-wrap {
  width: 1020px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 40px;
}

.m-relate-column-list-item {
  width: 100%;
}
.m-relate-column-list-item + .m-relate-column-list-item {
  margin: 30px 0 0;
}

.m-relate-column-list-item-link {
  display: inline-block;
  height: 100%;
  text-decoration: none;
}
.m-relate-column-list-item-link:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.m-relate-column-list-item-link:hover .m-arrow:before {
  width: 30px;
  transform: translateX(5px);
}
.m-relate-column-list-item-link:hover .m-arrow:after {
  transform: translateX(5px) rotate(30deg);
}

.m-relate-column-list-item-txt-box-ttl {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: -0.02em;
  font-weight: bold;
}

.m-relate-column-list-item-txt-box-lead {
  font-size: 1.3rem;
  line-height: 1.6153846154;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
}

@media screen and (max-width: 767px) {
  .m-relate-column {
    padding: 7.4666666667vw 4vw 7.6vw;
  }
  .m-relate-column-mh {
    font-size: 4vw;
    margin-bottom: 7.4666666667vw;
  }
  .m-relate-column-list-wrap {
    width: 100%;
    padding: 6.6666666667vw 4vw;
  }
  .m-relate-column-list-item + .m-relate-column-list-item {
    margin: 5.3333333333vw 0 0;
  }
  .m-relate-column-list-item-link {
    height: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .m-relate-column-list-item-txt-box-ttl {
    font-size: 3.3333333333vw;
    line-height: 1.5;
  }
  .m-relate-column-list-item-txt-box-lead {
    font-size: 3.4666666667vw;
    margin: 0.5333333333vw 0 0;
  }
}
/* 記事詳細ページ
---------------------------------------- */
.m-column-detail-flex-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.m-column-detail-left-box {
  width: 78%;
}

.m-column-detail-right-box {
  width: 20%;
  margin: 0 0 0 2%;
}

@media screen and (max-width: 767px) {
  .m-column-detail-flex-box {
    flex-direction: column;
  }
  .m-column-detail-left-box {
    width: 100%;
  }
  .m-column-detail-right-box {
    width: 100%;
    margin: 6.6666666667vw 0 0;
  }
}
.m-col-box {
  margin-bottom: 50px;
}

.m-col-box.--col02 .m-col-box-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.m-col-box.--col02 .thumb img {
  min-width: 385px;
  display: block;
  height: 100%;
  object-fit: cover;
}
.m-col-box.--col02 .ttl {
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1.47059;
  font-weight: bold;
}
.m-col-box.--col02 .text {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.66667;
  margin: 0 0 5px;
}
.m-col-box.--col02 .text:last-of-type {
  margin-bottom: 25px;
}
.m-col-box.--col02 .text-wrapper {
  min-width: 615px;
  background: #fff;
  flex-grow: 1;
}
.m-col-box.--col02 .text-wrapper.--bg-white {
  background: #fff;
}
.m-col-box.--col02 .text-wrapper-inner {
  width: 100%;
  padding: 30px 40px;
}

@media screen and (max-width: 767px) {
  .m-col-box {
    margin-bottom: 6.6666666667vw;
  }
  .m-col-box.--col02 .m-col-box-inner {
    flex-direction: column;
  }
  .m-col-box.--col02 .thumb img {
    min-width: 100%;
    display: block;
    height: auto;
    width: 100%;
    object-fit: unset;
  }
  .m-col-box.--col02 .ttl {
    margin-bottom: 10px;
    font-size: 4vw;
  }
  .m-col-box.--col02 .text {
    margin-bottom: 10px;
    font-size: 3.2vw;
    margin: 0 0 2.6666666667vw;
  }
  .m-col-box.--col02 .text:last-of-type {
    margin-bottom: 4vw;
  }
  .m-col-box.--col02 .text-wrapper {
    min-width: 100%;
  }
  .m-col-box.--col02 .text-wrapper-inner {
    width: 100%;
    padding: 5.3333333333vw 5.3333333333vw;
  }
}
/* .m-horizontal-card
=========================================================*/
.m-horizontal-card {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 20px;
}

.m-horizontal-card-item {
  width: 540px;
  background-color: #fff;
}
.m-horizontal-card-item:nth-of-type(2n) {
  margin-right: 0;
}
.m-horizontal-card-item.border {
  border: 1px solid #ccc;
}

.m-horizontal-card-item-link {
  display: block;
  height: 100%;
}
.m-horizontal-card-item-link .m-arrow:before {
  right: -45px;
  top: 10px;
}
.m-horizontal-card-item-link .m-arrow:after {
  right: -45px;
  top: 10px;
}
.m-horizontal-card-item-link:hover .m-arrow:before {
  width: 30px;
  transform: translateX(5px);
}
.m-horizontal-card-item-link:hover .m-arrow:after {
  transform: translateX(5px) rotate(30deg);
}
.m-horizontal-card-item-link:after {
  content: "";
  display: block;
  clear: both;
}

.m-horizontal-card-item-pic {
  width: 120px;
  height: auto;
  float: left;
  margin: 20px 0 20px 40px;
}
.m-horizontal-card-item-pic img {
  width: 100%;
}

.m-horizontal-card-item-txt-box {
  width: 311px;
  float: right;
  margin: 20px 40px 20px 0;
}

.m-horizontal-card-item-ttl {
  font-size: 1.7rem;
  line-height: 1.4705882353;
  font-weight: bold;
  margin-bottom: 12px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.m-horizontal-card-item-ttl-txt {
  width: 280px;
}

.m-horizontal-card-item-ttl-lead {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin: 5px 0 0;
}

@media screen and (max-width: 767px) {
  .m-horizontal-card {
    align-items: center;
    flex-direction: column;
    gap: 6.6666666667vw 6.6666666667vw;
  }
  .m-horizontal-card-item {
    width: 100%;
  }
  .m-horizontal-card-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .m-horizontal-card-item-link .m-arrow:before {
    width: 6.6666666667vw;
    transform: translateX(1.3333333333vw);
    right: -7vw;
    top: 2vw;
  }
  .m-horizontal-card-item-link .m-arrow:after {
    transform: translateX(1.3333333333vw) rotate(30deg);
    right: -7vw;
    top: 2vw;
  }
  .m-horizontal-card-item-link:hover .m-arrow:before {
    width: 6.6666666667vw;
    transform: translateX(1.3333333333vw);
  }
  .m-horizontal-card-item-link:hover .m-arrow:after {
    transform: translateX(1.3333333333vw) rotate(30deg);
  }
  .m-horizontal-card-item-pic {
    width: 19.2vw;
    margin: 4vw 0 0 5.0666666667vw;
  }
  .m-horizontal-card-item-txt-box {
    width: 56.5333333333vw;
    margin: 4vw 5.0666666667vw 4vw 0;
  }
  .m-horizontal-card-item-ttl {
    font-size: 4vw;
  }
  .m-horizontal-card-item-ttl-txt {
    width: 45.3333333333vw;
  }
  .m-horizontal-card-item-ttl-lead {
    font-size: 3.2vw;
    margin: 2.6666666667vw 0 0;
  }
}
/* module
---------------------------------------------------------------------------- */
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
/* フォントサイズ
---------------------------------------------------------------------------- */
.fs50 {
  font-size: 5rem !important;
}

.fs49 {
  font-size: 4.9rem !important;
}

.fs48 {
  font-size: 4.8rem !important;
}

.fs47 {
  font-size: 4.7rem !important;
}

.fs46 {
  font-size: 4.6rem !important;
}

.fs45 {
  font-size: 4.5rem !important;
}

.fs44 {
  font-size: 4.4rem !important;
}

.fs43 {
  font-size: 4.3rem !important;
}

.fs42 {
  font-size: 4.2rem !important;
}

.fs41 {
  font-size: 4.1rem !important;
}

.fs40 {
  font-size: 4rem !important;
}

.fs39 {
  font-size: 3.9rem !important;
}

.fs38 {
  font-size: 3.8rem !important;
}

.fs37 {
  font-size: 3.7rem !important;
}

.fs36 {
  font-size: 3.6rem !important;
}

.fs35 {
  font-size: 3.5rem !important;
}

.fs34 {
  font-size: 3.4rem !important;
}

.fs33 {
  font-size: 3.3rem !important;
}

.fs32 {
  font-size: 3.2rem !important;
}

.fs31 {
  font-size: 3.1rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs10 {
  font-size: 1rem !important;
}

.fs9 {
  font-size: 0.9rem !important;
}

.fs8 {
  font-size: 0.8rem !important;
}

.fs7 {
  font-size: 0.7rem !important;
}

.fs6 {
  font-size: 0.6rem !important;
}

@media screen and (max-width: 767px) {
  .spfs50 {
    font-size: 6.6666666667vw !important;
  }
  .spfs49 {
    font-size: 6.5333333333vw !important;
  }
  .spfs48 {
    font-size: 6.4vw !important;
  }
  .spfs47 {
    font-size: 6.2666666667vw !important;
  }
  .spfs46 {
    font-size: 6.1333333333vw !important;
  }
  .spfs45 {
    font-size: 6vw !important;
  }
  .spfs44 {
    font-size: 5.8666666667vw !important;
  }
  .spfs43 {
    font-size: 5.7333333333vw !important;
  }
  .spfs42 {
    font-size: 5.6vw !important;
  }
  .spfs41 {
    font-size: 5.4666666667vw !important;
  }
  .spfs40 {
    font-size: 5.3333333333vw !important;
  }
  .spfs39 {
    font-size: 5.2vw !important;
  }
  .spfs38 {
    font-size: 5.0666666667vw !important;
  }
  .spfs37 {
    font-size: 4.9333333333vw !important;
  }
  .spfs36 {
    font-size: 4.8vw !important;
  }
  .spfs35 {
    font-size: 4.6666666667vw !important;
  }
  .spfs34 {
    font-size: 4.5333333333vw !important;
  }
  .spfs33 {
    font-size: 4.4vw !important;
  }
  .spfs32 {
    font-size: 4.2666666667vw !important;
  }
  .spfs31 {
    font-size: 4.1333333333vw !important;
  }
  .spfs30 {
    font-size: 4vw !important;
  }
  .spfs29 {
    font-size: 3.8666666667vw !important;
  }
  .spfs28 {
    font-size: 3.7333333333vw !important;
  }
  .spfs27 {
    font-size: 3.6vw !important;
  }
  .spfs26 {
    font-size: 3.4666666667vw !important;
  }
  .spfs25 {
    font-size: 3.3333333333vw !important;
  }
  .spfs24 {
    font-size: 3.2vw !important;
  }
  .spfs23 {
    font-size: 3.0666666667vw !important;
  }
  .spfs22 {
    font-size: 2.9333333333vw !important;
  }
  .spfs21 {
    font-size: 2.8vw !important;
  }
  .spfs20 {
    font-size: 2.6666666667vw !important;
  }
  .spfs19 {
    font-size: 2.5333333333vw !important;
  }
  .spfs18 {
    font-size: 2.4vw !important;
  }
  .spfs17 {
    font-size: 2.2666666667vw !important;
  }
  .spfs16 {
    font-size: 2.1333333333vw !important;
  }
  .spfs15 {
    font-size: 2vw !important;
  }
  .spfs14 {
    font-size: 1.8666666667vw !important;
  }
  .spfs13 {
    font-size: 1.7333333333vw !important;
  }
  .spfs12 {
    font-size: 1.6vw !important;
  }
  .spfs11 {
    font-size: 1.4666666667vw !important;
  }
  .spfs10 {
    font-size: 1.3333333333vw !important;
  }
  .spfs9 {
    font-size: 1.2vw !important;
  }
  .spfs8 {
    font-size: 1.0666666667vw !important;
  }
  .spfs7 {
    font-size: 0.9333333333vw !important;
  }
  .spfs6 {
    font-size: 0.8vw !important;
  }
}
/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* テキスト
---------------------------------------------------------------------------- */
.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;
  }
}
/* マージン
---------------------------------------------------------------------------- */
.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: 13.3333333333vw !important;
  }
  .spmb100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .spml100 {
    margin-left: 13.3333333333vw !important;
  }
  .spmr100 {
    margin-right: 13.3333333333vw !important;
  }
  .spmt95 {
    margin-top: 12.6666666667vw !important;
  }
  .spmb95 {
    margin-bottom: 12.6666666667vw !important;
  }
  .spml95 {
    margin-left: 12.6666666667vw !important;
  }
  .spmr95 {
    margin-right: 12.6666666667vw !important;
  }
  .spmt90 {
    margin-top: 12vw !important;
  }
  .spmb90 {
    margin-bottom: 12vw !important;
  }
  .spml90 {
    margin-left: 12vw !important;
  }
  .spmr90 {
    margin-right: 12vw !important;
  }
  .spmt85 {
    margin-top: 11.3333333333vw !important;
  }
  .spmb85 {
    margin-bottom: 11.3333333333vw !important;
  }
  .spml85 {
    margin-left: 11.3333333333vw !important;
  }
  .spmr85 {
    margin-right: 11.3333333333vw !important;
  }
  .spmt80 {
    margin-top: 10.6666666667vw !important;
  }
  .spmb80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .spml80 {
    margin-left: 10.6666666667vw !important;
  }
  .spmr80 {
    margin-right: 10.6666666667vw !important;
  }
  .spmt75 {
    margin-top: 10vw !important;
  }
  .spmb75 {
    margin-bottom: 10vw !important;
  }
  .spml75 {
    margin-left: 10vw !important;
  }
  .spmr75 {
    margin-right: 10vw !important;
  }
  .spmt70 {
    margin-top: 9.3333333333vw !important;
  }
  .spmb70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .spml70 {
    margin-left: 9.3333333333vw !important;
  }
  .spmr70 {
    margin-right: 9.3333333333vw !important;
  }
  .spmt65 {
    margin-top: 8.6666666667vw !important;
  }
  .spmb65 {
    margin-bottom: 8.6666666667vw !important;
  }
  .spml65 {
    margin-left: 8.6666666667vw !important;
  }
  .spmr65 {
    margin-right: 8.6666666667vw !important;
  }
  .spmt60 {
    margin-top: 8vw !important;
  }
  .spmb60 {
    margin-bottom: 8vw !important;
  }
  .spml60 {
    margin-left: 8vw !important;
  }
  .spmr60 {
    margin-right: 8vw !important;
  }
  .spmt55 {
    margin-top: 7.3333333333vw !important;
  }
  .spmb55 {
    margin-bottom: 7.3333333333vw !important;
  }
  .spml55 {
    margin-left: 7.3333333333vw !important;
  }
  .spmr55 {
    margin-right: 7.3333333333vw !important;
  }
  .spmt50 {
    margin-top: 6.6666666667vw !important;
  }
  .spmb50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .spml50 {
    margin-left: 6.6666666667vw !important;
  }
  .spmr50 {
    margin-right: 6.6666666667vw !important;
  }
  .spmt45 {
    margin-top: 6vw !important;
  }
  .spmb45 {
    margin-bottom: 6vw !important;
  }
  .spml45 {
    margin-left: 6vw !important;
  }
  .spmr45 {
    margin-right: 6vw !important;
  }
  .spmt40 {
    margin-top: 5.3333333333vw !important;
  }
  .spmb40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .spml40 {
    margin-left: 5.3333333333vw !important;
  }
  .spmr40 {
    margin-right: 5.3333333333vw !important;
  }
  .spmt35 {
    margin-top: 4.6666666667vw !important;
  }
  .spmb35 {
    margin-bottom: 4.6666666667vw !important;
  }
  .spml35 {
    margin-left: 4.6666666667vw !important;
  }
  .spmr35 {
    margin-right: 4.6666666667vw !important;
  }
  .spmt30 {
    margin-top: 4vw !important;
  }
  .spmb30 {
    margin-bottom: 4vw !important;
  }
  .spml30 {
    margin-left: 4vw !important;
  }
  .spmr30 {
    margin-right: 4vw !important;
  }
  .spmt25 {
    margin-top: 3.3333333333vw !important;
  }
  .spmb25 {
    margin-bottom: 3.3333333333vw !important;
  }
  .spml25 {
    margin-left: 3.3333333333vw !important;
  }
  .spmr25 {
    margin-right: 3.3333333333vw !important;
  }
  .spmt20 {
    margin-top: 2.6666666667vw !important;
  }
  .spmb20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .spml20 {
    margin-left: 2.6666666667vw !important;
  }
  .spmr20 {
    margin-right: 2.6666666667vw !important;
  }
  .spmt15 {
    margin-top: 2vw !important;
  }
  .spmb15 {
    margin-bottom: 2vw !important;
  }
  .spml15 {
    margin-left: 2vw !important;
  }
  .spmr15 {
    margin-right: 2vw !important;
  }
  .spmt10 {
    margin-top: 1.3333333333vw !important;
  }
  .spmb10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .spml10 {
    margin-left: 1.3333333333vw !important;
  }
  .spmr10 {
    margin-right: 1.3333333333vw !important;
  }
  .spmt5 {
    margin-top: 0.6666666667vw !important;
  }
  .spmb5 {
    margin-bottom: 0.6666666667vw !important;
  }
  .spml5 {
    margin-left: 0.6666666667vw !important;
  }
  .spmr5 {
    margin-right: 0.6666666667vw !important;
  }
  .spmt0 {
    margin-top: 0vw !important;
  }
  .spmb0 {
    margin-bottom: 0vw !important;
  }
  .spml0 {
    margin-left: 0vw !important;
  }
  .spmr0 {
    margin-right: 0vw !important;
  }
}
/* パディング
---------------------------------------------------------------------------- */
.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: 13.3333333333vw !important;
  }
  .sppb100 {
    padding-bottom: 13.3333333333vw !important;
  }
  .sppl100 {
    padding-left: 13.3333333333vw !important;
  }
  .sppr100 {
    padding-right: 13.3333333333vw !important;
  }
  .sppt95 {
    padding-top: 12.6666666667vw !important;
  }
  .sppb95 {
    padding-bottom: 12.6666666667vw !important;
  }
  .sppl95 {
    padding-left: 12.6666666667vw !important;
  }
  .sppr95 {
    padding-right: 12.6666666667vw !important;
  }
  .sppt90 {
    padding-top: 12vw !important;
  }
  .sppb90 {
    padding-bottom: 12vw !important;
  }
  .sppl90 {
    padding-left: 12vw !important;
  }
  .sppr90 {
    padding-right: 12vw !important;
  }
  .sppt85 {
    padding-top: 11.3333333333vw !important;
  }
  .sppb85 {
    padding-bottom: 11.3333333333vw !important;
  }
  .sppl85 {
    padding-left: 11.3333333333vw !important;
  }
  .sppr85 {
    padding-right: 11.3333333333vw !important;
  }
  .sppt80 {
    padding-top: 10.6666666667vw !important;
  }
  .sppb80 {
    padding-bottom: 10.6666666667vw !important;
  }
  .sppl80 {
    padding-left: 10.6666666667vw !important;
  }
  .sppr80 {
    padding-right: 10.6666666667vw !important;
  }
  .sppt75 {
    padding-top: 10vw !important;
  }
  .sppb75 {
    padding-bottom: 10vw !important;
  }
  .sppl75 {
    padding-left: 10vw !important;
  }
  .sppr75 {
    padding-right: 10vw !important;
  }
  .sppt70 {
    padding-top: 9.3333333333vw !important;
  }
  .sppb70 {
    padding-bottom: 9.3333333333vw !important;
  }
  .sppl70 {
    padding-left: 9.3333333333vw !important;
  }
  .sppr70 {
    padding-right: 9.3333333333vw !important;
  }
  .sppt65 {
    padding-top: 8.6666666667vw !important;
  }
  .sppb65 {
    padding-bottom: 8.6666666667vw !important;
  }
  .sppl65 {
    padding-left: 8.6666666667vw !important;
  }
  .sppr65 {
    padding-right: 8.6666666667vw !important;
  }
  .sppt60 {
    padding-top: 8vw !important;
  }
  .sppb60 {
    padding-bottom: 8vw !important;
  }
  .sppl60 {
    padding-left: 8vw !important;
  }
  .sppr60 {
    padding-right: 8vw !important;
  }
  .sppt55 {
    padding-top: 7.3333333333vw !important;
  }
  .sppb55 {
    padding-bottom: 7.3333333333vw !important;
  }
  .sppl55 {
    padding-left: 7.3333333333vw !important;
  }
  .sppr55 {
    padding-right: 7.3333333333vw !important;
  }
  .sppt50 {
    padding-top: 6.6666666667vw !important;
  }
  .sppb50 {
    padding-bottom: 6.6666666667vw !important;
  }
  .sppl50 {
    padding-left: 6.6666666667vw !important;
  }
  .sppr50 {
    padding-right: 6.6666666667vw !important;
  }
  .sppt45 {
    padding-top: 6vw !important;
  }
  .sppb45 {
    padding-bottom: 6vw !important;
  }
  .sppl45 {
    padding-left: 6vw !important;
  }
  .sppr45 {
    padding-right: 6vw !important;
  }
  .sppt40 {
    padding-top: 5.3333333333vw !important;
  }
  .sppb40 {
    padding-bottom: 5.3333333333vw !important;
  }
  .sppl40 {
    padding-left: 5.3333333333vw !important;
  }
  .sppr40 {
    padding-right: 5.3333333333vw !important;
  }
  .sppt35 {
    padding-top: 4.6666666667vw !important;
  }
  .sppb35 {
    padding-bottom: 4.6666666667vw !important;
  }
  .sppl35 {
    padding-left: 4.6666666667vw !important;
  }
  .sppr35 {
    padding-right: 4.6666666667vw !important;
  }
  .sppt30 {
    padding-top: 4vw !important;
  }
  .sppb30 {
    padding-bottom: 4vw !important;
  }
  .sppl30 {
    padding-left: 4vw !important;
  }
  .sppr30 {
    padding-right: 4vw !important;
  }
  .sppt25 {
    padding-top: 3.3333333333vw !important;
  }
  .sppb25 {
    padding-bottom: 3.3333333333vw !important;
  }
  .sppl25 {
    padding-left: 3.3333333333vw !important;
  }
  .sppr25 {
    padding-right: 3.3333333333vw !important;
  }
  .sppt20 {
    padding-top: 2.6666666667vw !important;
  }
  .sppb20 {
    padding-bottom: 2.6666666667vw !important;
  }
  .sppl20 {
    padding-left: 2.6666666667vw !important;
  }
  .sppr20 {
    padding-right: 2.6666666667vw !important;
  }
  .sppt15 {
    padding-top: 2vw !important;
  }
  .sppb15 {
    padding-bottom: 2vw !important;
  }
  .sppl15 {
    padding-left: 2vw !important;
  }
  .sppr15 {
    padding-right: 2vw !important;
  }
  .sppt10 {
    padding-top: 1.3333333333vw !important;
  }
  .sppb10 {
    padding-bottom: 1.3333333333vw !important;
  }
  .sppl10 {
    padding-left: 1.3333333333vw !important;
  }
  .sppr10 {
    padding-right: 1.3333333333vw !important;
  }
  .sppt5 {
    padding-top: 0.6666666667vw !important;
  }
  .sppb5 {
    padding-bottom: 0.6666666667vw !important;
  }
  .sppl5 {
    padding-left: 0.6666666667vw !important;
  }
  .sppr5 {
    padding-right: 0.6666666667vw !important;
  }
  .sppt0 {
    padding-top: 0vw !important;
  }
  .sppb0 {
    padding-bottom: 0vw !important;
  }
  .sppl0 {
    padding-left: 0vw !important;
  }
  .sppr0 {
    padding-right: 0vw !important;
  }
}
/* print
---------------------------------------------------------------------------- */
/* 印刷設定
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
  body {
    -webkit-print-color-adjust: exact;
    transform: translate(-7.5%, -9.5%) scale(0.8, 0.8);
  }
  .l-header {
    position: relative;
    top: 0;
  }
  .l-gnav.nosp {
    display: flex !important;
    opacity: 1;
  }
  .l-header-wrap {
    margin: 0 30px;
  }
  .l-header-dropmenu {
    display: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    opacity: 0 !important;
  }
  .l-header-dropmenu-wrap {
    display: none !important;
  }
  .l-header-dropmenu-ttl {
    display: none !important;
  }
  .l-header-dropmenu-nav-list {
    display: none !important;
  }
  .l-header-dropmenu-nav-list-item {
    display: none !important;
  }
  .l-footer-wrap {
    max-width: 1150px;
  }
  .m-mv {
    margin: 0;
  }
  .is-scroll {
    opacity: 1 !important;
    display: block;
  }
  .nosp {
    display: block !important;
  }
  .nopc,
  .l-nav-btn {
    display: none !important;
  }
  .p-component-list {
    display: flex !important;
  }
  .fadein {
    opacity: 1;
    transform: translate(0, 0);
  }
  .p-top {
    padding: 0 !important;
  }
  .slidein .slidein-txt {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .slidein .slidein-pic {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .slidein .slidein-box {
    opacity: 1 !important;
    transform: scale(1, 1) !important;
  }
  .p-manner.fadein {
    opacity: 1;
    transform: translate(0, 0) !important;
  }
  .p-society.slidein .slidein-pic {
    opacity: 1;
    transform: translate(0, 0) !important;
  }
  .p-society.slidein .slidein-box {
    transform: scale(1, 1) !important;
  }
  .p-society.slidein .slidein-box {
    transform: translate(0, 0) !important;
  }
  .p-safety.slidein .slidein-pic {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .p-safety.slidein .slidein-box {
    transform: scale(1, 1) !important;
  }
  .p-safety.slidein .slidein-box {
    transform: translate(0, 0) !important;
  }
  .p-entry.slidein .slidein-pic {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .p-entry.slidein .slidein-box {
    transform: scale(1, 1) !important;
  }
  .p-entry.slidein .slidein-box {
    transform: translate(0, 0) !important;
  }
  .p-block-inner.fadein {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .p-about.slidein .slidein-pic {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .p-about.slidein .slidein-box {
    transform: scale(1, 1) !important;
  }
  .p-about.slidein .slidein-box {
    transform: translate(0, 0) !important;
  }
  .p-shop-inner.fadein {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .p-release-inner.fadein {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .p-update-inner.fadein {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .p-information-inner.fadein {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
  .p-assosiation-inner.fadein {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}
