/* =========================================================
body
========================================================= */
body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

input,
button,
textarea,
select {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

* {
  letter-spacing: 0.05em;
}
*:before, *:after {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}
img.w100 {
  width: 100%;
}

a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}
@media (min-width: 769px) {
  .pc-br {
    display: inline;
  }
}

@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}
@media (min-width: 769px) {
  .sp-br {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc-disp {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-disp {
    display: none !important;
  }
}

@media (hover: hover) {
  .opacity-link {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .opacity-link:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  .underline-link {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .underline-link:hover {
    text-decoration: underline;
  }
}
/* =========================================================
common parts
========================================================= */
.wrapper {
  min-width: 320px;
}

section {
  width: 100%;
}

/* =========================================================
common layout
========================================================= */
/* =========================================================
animation
========================================================= */
/*------------------------------------------
fade
------------------------------------------*/
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out;
}
.fade.is-active {
  opacity: 1;
}

/*------------------------------------------
fade up
------------------------------------------*/
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out;
}
.fadeup.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*------------------------------------------
breadcrumb
------------------------------------------*/
.cmn__breadcrumb {
  padding: 30px 0 10px;
}
@media (min-width: 769px) {
  .cmn__breadcrumb {
    padding: 50px 0;
  }
}
.cmn__breadcrumb .dist__inner {
  overflow: auto;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  scrollbar-color: #c9c9c9 #ededed;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .cmn__breadcrumb .dist__inner {
    max-width: 71.4285714286vw;
  }
}
@media (max-width: 768px) {
  .cmn__breadcrumb .dist__inner {
    padding: 0 18px;
  }
}

.breadcrumb__list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .breadcrumb__list {
    padding-bottom: 6px;
  }
}

.breadcrumb__list--item {
  color: #666058;
  font-size: 12px;
}
.breadcrumb__list--item a {
  color: #666058;
  display: block;
  text-decoration: underline;
  padding-right: 16px;
  margin-right: 12px;
  position: relative;
}
.breadcrumb__list--item a::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-right: 1px solid #666058;
  border-bottom: 1px solid #666058;
}

.wysiwyg {
  word-break: break-all;
}

.wysiwyg h1 {
  font-size: 2em;
  font-weight: bold;
}

.wysiwyg h2 {
  font-size: 1.5em;
  font-weight: bold;
}

.wysiwyg h3 {
  font-size: 1.17em;
  font-weight: bold;
}

.wysiwyg h4 {
  font-weight: bold;
}

.wysiwyg h5 {
  font-size: 0.83em;
  font-weight: bold;
}

.wysiwyg h6 {
  font-size: 0.67em;
  font-weight: bold;
}

.wysiwyg hr {
  display: block;
}

.wysiwyg a {
  text-decoration: underline;
  color: #666058;
}

@media (hover: hover) {
  .wysiwyg a:hover {
    text-decoration: none;
  }
}
.wysiwyg strong,
.wysiwyg b {
  font-weight: bold;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.5em;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg table {
  width: 100% !important;
  border-collapse: collapse;
}

.wysiwyg table th,
.wysiwyg table td {
  padding: 5px;
  border: 1px solid #ccc;
  text-align: left;
}

.wysiwyg table th {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .wysiwyg .table-wrap {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar {
    height: 15px;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar-thumb {
    background: #bbb;
  }
}
/*------------------------------------------
header
------------------------------------------*/
.header__container {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (min-width: 769px) {
  .header__container {
    height: 62px;
  }
}
@media (max-width: 768px) {
  .header__container {
    height: 60px;
  }
}
.header__container.is-open {
  z-index: 999;
}
@media (min-width: 769px) {
  .header__container.is-open {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .header__container.is-open .header__inner .info .meau__list {
    background: #fff;
  }
}
.header__container.is-open .header__inner .info .meau__list .list--btn {
  position: relative;
}
.header__container.is-open .header__inner .info .meau__list .list--btn > span {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .header__container.is-open .header__inner .info .meau__list .list--btn > span {
    background: #666058;
  }
}
.header__container.is-open .header__inner .info .meau__list .list--btn > span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__container.is-open .header__inner .info .meau__list .list--btn > span:nth-child(2) {
  display: none;
}
.header__container.is-open .header__inner .info .meau__list .list--btn > span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 769px) {
  .header__inner {
    padding-left: 28px;
    border-bottom: 1px solid #ededed;
    position: relative;
    z-index: 11;
  }
}
@media (max-width: 768px) {
  .header__inner {
    padding-left: 18px;
  }
}
@media (min-width: 769px) {
  .header__inner .logo {
    width: 307px;
  }
}
@media (max-width: 768px) {
  .header__inner .logo {
    width: 200px;
  }
}
.header__inner .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (min-width: 769px) {
  .header__inner .info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 134px;
  }
}
@media (max-width: 768px) {
  .header__inner .info {
    width: 146px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.header__inner .info .meau__la {
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .header__inner .info .meau__la {
    margin-right: 7px;
    width: 41px;
  }
}
.header__inner .info .meau__la:hover {
  cursor: pointer;
}
.header__inner .info .meau__la .btn {
  height: 100%;
  position: relative;
  padding-left: 20px;
  color: #666058;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header__inner .info .meau__la .btn {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
.header__inner .info .meau__la .btn::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url(../../assets/images/common/icon_la.svg) no-repeat center/100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.header__inner .info .meau__la .btn::after {
  content: "";
  border-bottom: 2px solid #666058;
  border-right: 2px solid #666058;
  width: 8px;
  height: 8px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  margin: auto;
}
@media (min-width: 769px) {
  .header__inner .info .meau__la .btn::after {
    right: -16px;
    top: -3px;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .header__inner .info .meau__la .btn::after {
    left: 0;
    right: 0;
    bottom: 10px;
  }
}
.header__inner .info .meau__la .btn.is-active::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media (min-width: 769px) {
  .header__inner .info .meau__la .btn.is-active::after {
    top: 5px;
  }
}
@media (max-width: 768px) {
  .header__inner .info .meau__la .btn.is-active::after {
    bottom: 5px;
  }
}
.header__inner .info .meau__la .la__list {
  display: none;
  width: 100px;
  position: absolute;
  left: -28px;
  margin: auto;
}
@media (min-width: 769px) {
  .header__inner .info .meau__la .la__list {
    top: 62px;
  }
}
@media (max-width: 768px) {
  .header__inner .info .meau__la .la__list {
    top: 60px;
  }
}
.header__inner .info .meau__la .la__list > li {
  border-bottom: 1px solid #fff;
  background: #666058;
  color: #fff;
}
.header__inner .info .meau__la .la__list > li:last-child {
  border-bottom: none;
}
.header__inner .info .meau__la .la__list > li > a {
  height: 37px;
  font-size: 11px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__inner .info .meau__list {
  background: #666058;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 11;
  height: 100%;
}
@media (min-width: 769px) {
  .header__inner .info .meau__list {
    width: 62px;
  }
}
@media (max-width: 768px) {
  .header__inner .info .meau__list {
    width: 60px;
  }
}
.header__inner .info .meau__list:hover {
  cursor: pointer;
}
.header__inner .info .meau__list .list--btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 20px;
  gap: 6px;
}
.header__inner .info .meau__list .list--btn > span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 769px) {
  .header__inner .btn__line {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__inner .btn__line {
    width: 22px;
    height: 22px;
    margin-right: 16px;
  }
}
.header__inner .sub__nav {
  display: none;
}
@media (min-width: 1025px) {
  .header__inner .sub__nav {
    display: block;
    width: 590px;
    height: 40px;
    position: absolute;
    top: -5px;
    right: 120px;
    bottom: 0;
    margin: auto;
  }
}
.header__inner .sub__nav .sub__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 20px;
}
.header__inner .sub__nav .sub__list li a {
  color: #666058;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 700;
  font-size: 12px;
}

/*------------------------------------------
global nav
------------------------------------------*/
.gnav__container {
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  overscroll-behavior-y: contain;
}

.gnav__inner {
  padding: 77px 50px 60px;
}
@media (min-width: 769px) {
  .gnav__inner {
    padding: 112px 0 50px;
    max-width: 1000px;
    margin: auto;
  }
}

.gnav__main--block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 769px) {
  .gnav__main--block {
    margin-bottom: 55px;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .gnav__main--block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #666058;
    margin-bottom: 30px;
  }
}

.gnav__main--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 769px) {
  .gnav__main--list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-left: 1px solid #666058;
    padding-left: 30px;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}
@media (max-width: 768px) {
  .gnav__main--list {
    width: 100%;
  }
}
.gnav__main--list > li {
  width: 100%;
}
.gnav__main--list > li > a {
  color: #666058;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 768px) {
  .gnav__main--list > li > a {
    font-size: 20px;
  }
}

.gnav__sub--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 769px) {
  .gnav__sub--list {
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .gnav__sub--list {
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 769px) {
  .gnav__sub--list > li {
    border-left: 1px solid #666058;
    padding-left: 30px;
  }
  .gnav__sub--list > li:last-child {
    border-right: 1px solid #666058;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .gnav__sub--list > li {
    width: 100%;
  }
}
.gnav__sub--list > li > a {
  color: #666058;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 769px) {
  .gnav__sub--list > li > a {
    font-size: 18px;
  }
}

/*------------------------------------------
footer
------------------------------------------*/
.footer__container {
  width: 100%;
  background: #666058;
  color: #fff;
  position: relative;
}
@media (min-width: 769px) {
  .footer__container {
    padding: 30px 0 34px;
    max-height: 352px;
  }
}
@media (max-width: 768px) {
  .footer__container {
    padding: 26px 0 18px;
  }
}
.footer__container a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .footer__container a:hover {
    text-decoration: underline;
  }
}

.footer__inner {
  margin: auto;
}
@media (min-width: 769px) {
  .footer__inner {
    max-width: 862px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    width: 100%;
    padding: 0 18px;
  }
}

.footer__navlist--block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #fff;
}
@media (min-width: 769px) {
  .footer__navlist--block {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer__navlist--block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.footer__navlist {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .footer__navlist {
    width: 100%;
  }
}
.footer__navlist > li {
  margin-bottom: 15px;
}
.footer__navlist > li:last-child {
  margin-bottom: 0;
}
.footer__navlist > li > a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 769px) {
  .footer__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto 30px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer__list {
    width: 100%;
    margin-bottom: 45px;
    font-size: 12px;
    gap: 18px;
  }
}
@media (min-width: 769px) {
  .footer__list > li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__list > li {
    width: 100%;
  }
}

.footer__copyright {
  font-weight: 300;
  font-size: 10px;
  text-align: center;
}

/*------------------------------------------
page top
------------------------------------------*/
.page__top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
}
@media (max-width: 768px) {
  .page__top {
    width: 40px;
    height: 40px;
  }
}
.page__top > a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid #666058;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page__top > a::after {
  content: "";
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border-right: 2px solid #666058;
  border-bottom: 2px solid #666058;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .page__top > a::after {
    width: 12px;
    height: 12px;
    top: 10px;
    border-right: 1px solid #666058;
    border-bottom: 1px solid #666058;
  }
}
@media (min-width: 769px) {
  .page__top > a:hover {
    background: #666058;
  }
  .page__top > a:hover::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}