@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/FontAwesome.ttf?xfk7l0") format("truetype"), url("../fonts/FontAwesome.woff?xfk7l0") format("woff"), url("../fonts/FontAwesome.svg?xfk7l0#FontAwesome") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* html
----------------------------------------------- */
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

/* body
----------------------------------------------- */
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  background-color: #f5f5f5;
  color: #555;
  overflow-y: initial;
}

body.fixed {
  overflow-y: hidden;
}

/* a
----------------------------------------------- */
a {
  color: #555;
  display: block;
  text-decoration: none;
  transition: .2s;
}

/* img
----------------------------------------------- */
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* li
----------------------------------------------- */
li {
  list-style-type: none;
}

/* main
----------------------------------------------- */
.main {
  margin: 87px 0 0;
  position: relative;
}

@media screen and (max-width: 979px) {
  .main {
    margin: 13.3vw 0 0;
  }
}

@media screen and (min-width: 1140px) {
  .main a:hover {
    color: #888;
    text-decoration: underline;
  }
}

/* wrapper
----------------------------------------------- */
.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

/* post
----------------------------------------------- */
article.post {
  width: 100%;
  max-width: 980px;
  margin: auto;
  box-sizing: border-box;
}

/* only
----------------------------------------------- */
@media screen and (min-width: 1140px) {
  .pc_only {
    display: block;
  }
}

@media screen and (max-width: 979px) {
  .pc_only {
    display: none;
  }
}

@media screen and (min-width: 1140px) {
  .sp_only {
    display: none;
  }
}

@media screen and (max-width: 979px) {
  .sp_only {
    display: block;
  }
}

/* =========================================================
PARTS
========================================================= */
/* title
----------------------------------------------- */
.title {
  color: #555;
}

@media screen and (max-width: 979px) {
  .title {
    display: flex;
    align-items: center;
  }
}

.title-label {
  font-weight: 700;
  font-size: 3.0rem;
  letter-spacing: 0.075em;
}

.title-summary {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.2rem;
}

/* lead
----------------------------------------------- */
.lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.757;
}

/* heading-title
----------------------------------------------- */
.heading-title {
  width: 100%;
  padding: 90px 0;
  text-align: center;
  color: #fff;
  background-color: #bbb;
}

.heading-title-label {
  font-weight: 700;
  font-size: 3.6rem;
  letter-spacing: 0.075em;
}

.heading-title-summary {
  margin-top: 20px;
  font-weight: 500;
  font-size: 1.6rem;
}

@media screen and (max-width: 979px) {
  .heading-title {
    padding: 13.7vw 0;
  }

  .heading-title-label {
    font-size: 2.2rem;
  }

  .heading-title-summary {
    margin-top: 2.66667vw;
    font-size: 1.2rem;
  }
}

/* page footer
----------------------------------------------- */
.page .footer {
  margin: 100px 0 0;
}

@media screen and (max-width: 979px) {
  .page .footer {
    margin: 0;
  }
}

/* button default
----------------------------------------------- */
.main .button {
  width: 100%;
  position: relative;
}

.main .button-def {
  width: 100%;
  height: 44px;
  line-height: 39px;
  display: block;
  text-align: center;
  border: 2px solid #555;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: 700;
}

@media screen and (min-width: 1140px) {
  .main .button-def:hover {
    background: #555;
    color: #fff;
  }
}

.main .button-def span {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  display: inline-block;
  position: absolute;
  left: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.main .button-def span:after {
  width: 8px;
  height: 12px;
  background: url(../img/arrow-right-icon.png) center no-repeat;
  content: '';
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translate(0, -50%);
}

.main .button-def span:nth-child(1) {
  top: 0;
  -moz-transition: all .15s;
  -o-transition: all .15s;
  -webkit-transition: all .15s;
  transition: all .15s;
}

.main .button-def span:nth-child(2) {
  top: -100%;
  -moz-transition: all .15s;
  -o-transition: all .15s;
  -webkit-transition: all .15s;
  transition: all .15s;
}

@media screen and (min-width: 1140px) {
  .main .button-def:hover span:after {
    background: url(../img/arrow-right-white-icon.png) center no-repeat;
    color: #fff;
  }
}

@media screen and (min-width: 1140px) {
  .main .button-def:hover span:nth-child(1) {
    -moz-transform: translate(0, 300%);
    -ms-transform: translate(0, 300%);
    -webkit-transform: translate(0, 300%);
    transform: translate(0, 300%);
  }
}

@media screen and (min-width: 1140px) {
  .main .button-def:hover span:nth-child(2) {
    top: 0;
  }
}

/* --- 2行対応版 button-def--multiline --- */
.main .button-def--multiline {
  height: auto !important;
  padding: 32px 0;
  box-sizing: border-box;
  border-radius: 37px;
}

.main .button-def--multiline span {
  width: 100%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 0 !important;
  box-sizing: border-box;
  line-height: 1.5;
}

/* button　transparent
----------------------------------------------- */
.main .b_transparent {
  border: 2px solid #fff;
  color: #fff;
}

@media screen and (min-width: 1140px) {
  .main .b_transparent:hover {
    color: #555;
    background-color: #fff;
  }

  .main .b_transparent:hover span:after {
    background: url(../img/arrow-right-icon.png) center no-repeat;
    color: #555;
  }
}

.main .b_transparent span:after {
  color: #fff;
  background: url(../img/arrow-right-white-icon.png) center no-repeat;
}

/* button　white
----------------------------------------------- */
.main .b_white {
  border: 2px solid #fff;
  color: #fff;
}

@media screen and (min-width: 1140px) {
  .main .b_white:hover {
    background: #fff;
    color: #db132c;
  }

  .main .b_white:hover span:after {
    color: #db132c;
  }
}

.main .b_white span:after {
  color: #fff;
}

/* button　dark
----------------------------------------------- */
.main .b_dark {
  border: 2px solid #555;
  background-color: #555;
  color: #fff;
}

.main .b_dark:hover {
  color: #555;
  background-color: #fff;
}

.main .b_dark:hover span:after {
  background: url(../img/arrow-right-icon.png) center no-repeat;
  color: #555;
}

.main .b_dark span:after {
  color: #fff;
  background: url(../img/arrow-right-white-icon.png) center no-repeat;
}

/* button　submit
----------------------------------------------- */
.main .button-submit,
.main .button-back {
  width: 100%;
  height: 50px;
  line-height: 46px;
  display: block;
  text-align: center;
  border: 2px solid #db132c;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  background: #db132c;
  cursor: pointer;
  color: #fff;
}

.main .button-submit:hover,
.main .button-back:hover {
  border: 2px solid #db132c;
  background: #fff;
  color: #db132c;
}

.main .button-submit span,
.main .button-back span {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  display: inline-block;
  position: absolute;
  left: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.main .button-submit span:after,
.main .button-back span:after {
  content: "\f105";
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 1.8rem;
  position: absolute;
  right: 11.11111%;
  color: #fff;
}

.main .button-submit span:nth-child(1),
.main .button-back span:nth-child(1) {
  top: 0;
  -moz-transition: all .15s;
  -o-transition: all .15s;
  -webkit-transition: all .15s;
  transition: all .15s;
}

.main .button-submit span:nth-child(2),
.main .button-back span:nth-child(2) {
  top: -100%;
  -moz-transition: all .15s;
  -o-transition: all .15s;
  -webkit-transition: all .15s;
  transition: all .15s;
}

.main .button-submit:hover span:after,
.main .button-back:hover span:after {
  color: #db132c;
}

.main .button-submit:hover span:nth-child(1),
.main .button-back:hover span:nth-child(1) {
  -moz-transform: translate(0, 300%);
  -ms-transform: translate(0, 300%);
  -webkit-transform: translate(0, 300%);
  transform: translate(0, 300%);
}

.main .button-submit:hover span:nth-child(2),
.main .button-back:hover span:nth-child(2) {
  top: 0;
}

.main .button-submit-off {
  width: 100%;
  height: 50px;
  line-height: 46px;
  display: block;
  text-align: center;
  border: 2px solid #555;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  background: #555;
  cursor: pointer;
  color: #fff;
}

.main .button-submit-off span {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  display: inline-block;
  position: absolute;
  left: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.main .button-submit-off span:after {
  content: "\f105";
  font-family: FontAwesome;
  font-weight: normal;
  position: absolute;
  right: 11.11111%;
  color: #fff;
}

.main .button-back {
  border: 2px solid #555;
  background: #fff;
  color: #000;
}

.main .button-back:hover {
  border: 2px solid #555;
  background: #555;
  color: #fff;
}

.main .button-back span:after {
  content: "";
}

.main .button-back span:before {
  content: "\f104";
  font-family: FontAwesome;
  font-weight: normal;
  position: absolute;
  left: 11.11111%;
  color: #555;
}

.main .button-back:hover span:before {
  color: #fff;
}

/* breadcrumb
----------------------------------------------- */
.breadcrumb {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 0;
}

@media screen and (max-width: 979px) {
  .breadcrumb {
    width: 89.33333vw;
  }
}

.breadcrumb ul {
  display: flex;
}

.breadcrumb ul li {
  margin-right: 10px;
  font-weight: 500;
  font-size: 1.2rem;
  color: #888;
}

.breadcrumb ul li a {
  font-weight: 500;
  font-size: 1.2rem;
  color: #555;
}

@media screen and (min-width: 1140px) {
  .breadcrumb ul li a:hover {
    color: #888;
    text-decoration: none;
  }
}

.breadcrumb ul .arrow {
  color: #555;
}

/* newsindex
----------------------------------------------- */
.newsindex {
  display: flex;
}

.newsindex:not(:last-of-type) {
  margin: 0 0 25px;
}

.newsindex-date {
  margin: 0 20px 0 0;
  color: #888;
  font-weight: 500;
  font-size: 1.4rem;
}

.newsindex-subject a {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* wp-pagenavi ページャー
----------------------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 979px) {
  .wp-pagenavi {
    padding: 0 6vw;
  }
}

.wp-pagenavi span,
.wp-pagenavi a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: 0 6px;
  border: 1px solid #888;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

@media screen and (max-width: 979px) {

  .wp-pagenavi span,
  .wp-pagenavi a {
    width: 38px;
    height: 38px;
    line-height: 34px;
    margin: 0 4px;
  }
}

.wp-pagenavi a:hover {
  background-color: #707070;
  color: #fff;
}

.wp-pagenavi .current {
  background-color: #707070;
  color: #fff;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  text-indent: -9999px;
}

.wp-pagenavi .previouspostslink {
  background: url(../img/arrow-left-icon.png) center no-repeat;
}

.wp-pagenavi .nextpostslink {
  background: url(../img/arrow-right-icon.png) center no-repeat;
}

.wp-pagenavi .previouspostslink:hover {
  background: url(../img/arrow-left-white-icon.png) center no-repeat;
  background-color: #707070;
}

.wp-pagenavi .nextpostslink:hover {
  background: url(../img/arrow-right-white-icon.png) center no-repeat;
  background-color: #707070;
}

/* panel
----------------------------------------------- */
.panel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (min-width: 1140px) {
  .panel a:hover {
    text-decoration: none;
    color: #555;
  }
}

.panel-title {
  padding: 20px 0;
  font-weight: 500;
  font-size: 1.6rem;
}

.panel-title-sub {
  margin-bottom: 7px;
  font-size: 1.2rem;
  display: block;
}

.panel-image {
  transition: .2s;
}

.panelbox-items {
  display: flex;
  flex-wrap: wrap;
}

.panelbox-item {
  width: 312px;
  margin: 0 22px 30px 0;
  background-color: #fff;
  text-align: center;
}

@media screen and (max-width: 979px) {
  .panelbox-item {
    min-width: 100%;
    margin-right: 0;
  }
}

@media screen and (min-width: 1140px) {
  .panelbox-item:hover .panel-image {
    opacity: .6;
  }
}

@media screen and (min-width: 1140px) {
  .panelbox-item:hover .panel-title {
    color: #888;
  }
}

/* 2カラム
----------------------------------------------- */
.col-2 .panelbox-item:nth-child(2n) {
  margin-right: 0;
}

/* 3カラム
----------------------------------------------- */
.col-3 .panelbox-item:nth-child(3n) {
  margin-right: 0;
}

/* menu コンテンツ
----------------------------------------------- */
.menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu li {
  max-width: 230px;
  width: 24.2105263%;
  background-color: #F5F5F5;
  border-radius: 3px;
}

.menu li.current-menu-item {
  background-color: #fff;
  pointer-events: none;
}

.menu li a {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.4rem;
}

@media screen and (min-width: 1140px) {
  .menu li a:hover {
    background-color: #fff;
    color: #555;
    text-decoration: none;
  }
}

@media screen and (max-width: 979px) {
  .menu li {
    min-width: 43.73333vw;
    margin-bottom: 2.66667vw;
  }
}

/* table
----------------------------------------------- */
.table-tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-th,
.table-td {
  padding: 15px 0;
  font-size: 1.4rem;
  letter-spacing: 0.075em;
  line-height: 1.5;
}

.table-th {
  width: 120px;
  white-space: nowrap;
  font-weight: 500;
}

.table-td {
  width: 100%;
}

@media screen and (max-width: 979px) {
  .table-tr {
    flex-wrap: wrap;
  }

  .table-th {
    width: 100%;
    padding: 0;
  }

  .table-td {
    padding: 0 0 8vw;
  }
}

/* column
----------------------------------------------- */
.column-list {
  width: 100%;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
}

.column-image {
  margin-right: 30px;
}

.column-image a {
  width: 240px;
  height: 180px;
  transition: .2s;
}

@media screen and (min-width: 1140px) {
  .column-image a:hover {
    opacity: .6;
  }
}

.column-image a img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 979px) {
  .column-image {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .column-image a {
    width: 100%;
    height: auto;
  }
}

.column-detail {
  flex: 1;
}

.column-date {
  font-size: 1.4rem;
}

.column-title {
  margin: 20px 0 0;
  font-size: 1.6rem;
}

.column-desc {
  overflow: hidden;
  margin: 16px 0 0;
  font-size: 1.4rem;
  line-height: 1.757;
  position: relative;
}

.column-desc a {
  display: none;
}

/* anchor-menu
----------------------------------------------- */
.anchor-menu {
  display: flex;
}

.anchor-menu li {
  margin: 0 20px;
  display: flex;
  align-items: baseline;
  position: relative;
  font-weight: 500;
  font-size: 1.4rem;
}

.anchor-menu li::before {
  width: 16px;
  height: 10px;
  padding-right: 10px;
  background: url(../img/anchor-menu-icon.png) no-repeat;
  content: '';
}

@media screen and (min-width: 1140px) {
  .anchor-menu {
    justify-content: center;
  }

  .anchor-menu li a:hover {
    opacity: .8;
  }
}

@media screen and (max-width: 979px) {
  .anchor-menu {
    width: 84vw;
    margin: auto;
    flex-wrap: wrap;
  }

  .anchor-menu li {
    width: 50%;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
  }
}

/* area
----------------------------------------------- */
.area {
  border-top: 1px solid #DBDBDB;
  padding-bottom: 5px;
  text-align: center;
}

.area-outer {
  padding: 0 60px;
}

.area-title {
  margin: 20px 0;
  font-weight: 500;
  font-size: 1.4rem;
}

.area-lists {
  display: flex;
  flex-wrap: wrap;
}

.area-lists li {
  width: 110px;
  margin: 0 15px 15px 0;
  box-sizing: border-box;
  background: #F5F5F5;
  border-radius: 3px;
  text-align: center;
}

.area-lists li a {
  padding: 10px 0;
  font-weight: 400;
  font-size: 1.4rem;
  display: block;
}

.area-lists li a:hover {
  opacity: .8;
}

@media screen and (min-width: 1140px) {
  .area-lists li:nth-child(7n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 979px) {
  .area {
    padding-bottom: 10px;
  }

  .area-outer {
    padding: 0 5.33333vw;
  }

  .area-title {
    font-size: 1.6rem;
  }

  .area-lists {
    width: 84vw;
    margin: auto;
  }

  .area-lists li {
    width: 26.66667vw;
    margin: 0 1.93333vw 2.13333vw 0;
  }

  .area-lists li:nth-child(3n) {
    margin-right: 0;
  }

  .area-lists li a {
    font-size: 1.3rem;
  }
}

/* animation
----------------------------------------------- */
.hidden {
  overflow: hidden;
}

.fadeInUp {
  transition: 1s;
  opacity: 0;
  -webkit-transform: translateY(105%);
  -moz-transform: translateY(105%);
  transform: translateY(105%);
}

.fadeInUp.show {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.fadeInLeft {
  transition: 1.5s;
  transition-delay: 1s;
  opacity: 0;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  transform: translateX(50px);
}

.fadeInLeft.show {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

/* HEADER
----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
  transition: 1s;
}

.header.is-hide {
  transform: translateY(-95px);
}

.header-outer {
  height: 86px;
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 979px) {
  .header-outer {
    height: auto;
    background-color: #E71431;
  }
}

.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
}

.header-logo {
  width: 100%;
  height: 92px;
  margin-left: -52px;
  position: relative;
}

@media screen and (max-width: 979px) {
  .header-logo {
    width: 50.13333vw;
    height: auto;
    margin-left: 0;
  }
}

@media screen and (min-width: 1140px) {
  .header-logo::before {
    width: 200%;
    height: 92px;
    background-color: #ea0b29;
    position: absolute;
    top: 0;
    left: -200%;
    content: '';
  }
}

.header-logo a {
  width: 340px;
  height: 92px;
  display: block;
}

@media screen and (max-width: 979px) {
  .header-logo a {
    width: 50.13333vw;
    height: auto;
  }
}

@media screen and (min-width: 1140px) {
  .header-logo a:hover {
    opacity: 1;
  }
}

/* NAV
----------------------------------------------- */
.nav {
  height: 0;
}

@media screen and (max-width: 979px) {
  .nav {
    position: fixed;
    top: 13.3vw;
    right: -100%;
    width: 80%;
    height: 100vh;
    padding: 0 5.33333vw;
    background: #fff;
    box-sizing: border-box;
    z-index: 20;
    transition: all .4s;
  }

  .nav.is-active {
    right: 0;
  }

  .nav-overlay.is-active {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    display: block;
  }
}

.nav-items {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 979px) {
  .nav-items {
    height: auto;
    flex-wrap: wrap;
  }
}

.nav-item {
  margin-left: 5.6%;
}

@media screen and (max-width: 979px) {
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #DBDBDB;
    margin-left: 0;
  }
}

.nav-item a {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  z-index: 1;
}

@media screen and (min-width: 1140px) {

  .nav-item a:hover,
  .nav-item a.active {
    color: #db132c;
  }

  .nav-item a.active {
    pointer-events: none;
  }
}

@media screen and (max-width: 979px) {
  .nav-item a {
    height: 14.66667vw;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    position: relative;
  }

  .nav-item a::after {
    width: 8px;
    height: 12px;
    background: url(../img/arrow-right-icon.png) center no-repeat;
    content: '';
    position: absolute;
    top: 50%;
    right: 2.66667%;
    transform: translate(0, -50%);
  }
}

@media screen and (max-width: 979px) {
  .nav-trigger {
    width: 6.4vw;
    height: 4.26667vw;
    top: 50%;
    right: 5.33333vw;
    transform: translate(0, -50%);
    position: absolute;
    z-index: 30;
    cursor: pointer;
  }

  .nav-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.53333vw;
    background-color: #fff;
    transition: all .4s;
  }

  .nav-trigger.is-active span {
    background-color: #fff;
  }

  .nav-trigger span:nth-of-type(1) {
    top: 0;
  }

  .nav-trigger span:nth-of-type(2) {
    top: 1.9vw;
  }

  .nav-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .nav-trigger.is-active span:nth-of-type(3) {
    top: 15px;
  }

  .nav-trigger.is-active span:nth-of-type(1) {
    top: 0;
    -webkit-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
  }

  .nav-trigger.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .nav-trigger.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* FOTTER
----------------------------------------------- */
.footer {
  overflow: hidden;
}

.footer-outer {
  margin: 0 50px;
  padding: 80px 0;
}

/* sitemap
----------------------------------------------- */
.footer .sitemap {
  background-color: #111;
  padding: 80px 0;
}

@media screen and (max-width: 979px) {
  .footer .sitemap {
    padding: 5.33333vw 0 16vw;
  }
}

.footer .sitemap-outer {
  max-width: 980px;
  width: 95.3%;
  margin: auto;
  padding: 0;
}

.footer .sitemap-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 979px) {
  .footer .sitemap-inner {
    flex-wrap: wrap;
  }
}

.footer .sitemap-main {
  text-align: center;
}

@media screen and (max-width: 979px) {
  .footer .sitemap-main {
    width: 100%;
  }
}

.footer .sitemap-logo {
  width: 200px;
  display: inline-block;
}

.footer .sitemap-copyrights {
  margin-top: 20px;
}

.footer .sitemap-copyrights span {
  font-size: 10px;
  font-weight: 500;
  color: #999;
}

.footer .sitemap-columns {
  display: flex;
}

@media screen and (max-width: 979px) {
  .footer .sitemap-columns {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer .sitemap-bottom {
  margin: 30px 0 0;
}

@media screen and (max-width: 979px) {
  .footer .sitemap-bottom {
    margin: 30px 0;
  }
}

.footer .sitemap-bottom .sitemap-submenu {
  display: flex;
}

@media screen and (max-width: 979px) {
  .footer .sitemap-bottom .sitemap-submenu {
    justify-content: center;
  }
}

.footer .sitemap-bottom .sitemap-submenu li:last-child {
  margin-left: 33px;
}

.footer .sitemap-bottom .sitemap-submenu li a {
  font-size: 1.2rem;
}

.footer .sitemap-column:not(:last-of-type) {
  margin-right: 50px;
}

@media screen and (max-width: 979px) {
  .footer .sitemap-column:not(:last-of-type) {
    margin-right: 0;
  }
}

@media screen and (min-width: 1140px) {
  .footer .sitemap-column:nth-of-type(3) {
    margin-right: 100px;
  }
}

@media screen and (max-width: 979px) {
  .footer .sitemap-column {
    width: 42.13333vw;
    margin-top: 10.66667vw;
  }
}

.footer .sitemap-label a {
  display: block;
  position: relative;
  padding: 0 0 18px;
  color: #ccc;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.075em;
  line-height: 19px;
}

.footer .sitemap-submenu {
  padding: 0;
}

.footer .sitemap-submenu li a {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  color: #999;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 18px;
}

.footer .sitemap-submenu li a:hover {
  color: #777;
}

.footer .sitemap-submenu li:last-child a {
  padding-bottom: 0;
}

.footer .sitemap-column:last-of-type .sitemap-submenu a {
  padding: 12px 0;
  font-size: 1.4rem;
  font-weight: 500;
}

.footer .sitemap-column:last-of-type .sitemap-submenu a:first-child {
  padding-top: 0;
}

/* other
----------------------------------------------- */
.footer .other {
  background-color: #fff;
}

.footer .other-outer {
  max-width: 980px;
  margin: auto;
  padding: 30px 0;
}

@media screen and (max-width: 979px) {
  .footer .other-outer {
    padding: 5.33333vw;
  }
}

.footer .other-inner {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 979px) {
  .footer .other-inner {
    flex-wrap: wrap;
  }
}

/* aeon
----------------------------------------------- */
.footer .aeon {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 979px) {
  .footer .aeon {
    margin-bottom: 5.33333vw;
  }
}

.footer .aeon-logo a {
  width: 90px;
  height: 27px;
  background: url(../img/aeon-logo.svg) no-repeat;
  background-size: contain;
  display: block;
  text-indent: -9999px;
}

@media screen and (max-width: 979px) {
  .footer .aeon-logo a {
    width: 21.3333vw;
    height: 6.386666vw;
    background: url(../img/aeon-logo-sp.svg) no-repeat;
    background-size: contain;
  }
}

.footer .tree-logo {
  margin: 0 30px;
}

.footer .tree-logo a {
  width: 114px;
  height: 24px;
  background: url(../img/tree-logo.svg) no-repeat;
  background-size: contain;
  display: block;
  text-indent: -9999px;
}

@media screen and (max-width: 979px) {
  .footer .tree-logo {
    margin: 0 5vw;
  }

  .footer .tree-logo a {
    width: 28vw;
    height: 6vw;
    background: url(../img/tree-logo-sp.svg) no-repeat;
    background-size: contain;
  }
}

.footer .aeon-links {
  display: flex;
}

.footer .aeon-links a {
  font-size: 1.3rem;
}

.footer .aeon-links a {
  font-weight: 500;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.02em;
}

.footer .aeon-links a:hover {
  color: #929292;
  text-decoration: underline;
}

/* pmark
----------------------------------------------- */
.footer .pmark {
  display: flex;
  align-items: center;
}

.footer .pmark-logo {
  margin-right: 10px;
}

@media screen and (max-width: 979px) {
  .footer .pmark-logo {
    margin-right: 8vw;
  }
}

.footer .pmark-logo a {
  width: 64px;
  height: 64px;
  background: url(../img/pmark-logo.svg) no-repeat;
  display: block;
  text-indent: -9999px;
}

.footer .pmark-desc {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* app
----------------------------------------------- */
.footer .app {
  width: 100%;
  height: 120px;
  background-color: #1F1F1F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .app-logo {
  width: 61px;
}

.footer .app-download {
  margin-left: 15px;
}

.footer .app-download-ttl {
  margin-bottom: 11px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 0.05em;
  text-align: center;
}

.footer .app-download-desc {
  display: flex;
}

.footer .app-download-desc-link {
  width: 120px;
}

.footer .app-download-desc-link:not(:last-child) {
  margin-right: 15px;
}

.footer .app-download-desc-link:hover {
  opacity: .6;
}

/* =========================================================
固定ページ
========================================================= */
.page-inner {
  padding: 0 60px;
}

.page-block {
  text-align: center;
}

.page-title {
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.5;
  text-align: center;
}

.page-title-sub {
  line-height: 1.5;
}

.page-lead {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.757;
}

.page-desc {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.757;
}

@media screen and (max-width: 979px) {
  .page-inner {
    padding: 0 8vw;
  }
}

/* =========================================================
背景白
========================================================= */
.corporation .post,
.parent-pageid-2 .post,
.parent-pageid-10 .post,
.newgraduate .post,
.career .post,
.timejob .post,
.event .post,
.csr .post,
.csr-test .post,
.contact .post,
.privacy .post,
.terms .post {
  background-color: #fff;
}

/* padding-top20 */
.parent-pageid-2 .post,
.parent-pageid-10 .post {
  padding-top: 20px;
}

/* =========================================================
タイトル背景画像
========================================================= */
.business .heading-title,
.business-test .heading-title {
  background: url(../img/business/business-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .business .heading-title,
  .business-test .heading-title {
    width: 100%;
    background: url(../img/business/business-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.sa .heading-title,
.sa-test .heading-title {
  background: url(../img/business/sa-title-bg-2025.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .sa .heading-title,
  .sa-test .heading-title {
    width: 100%;
    background: url(../img/business/sa-title-bg-sp-2025.jpg) no-repeat;
    background-size: 100%;
  }
}

.co .heading-title,
.co-test .heading-title {
  background: url(../img/business/co-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .co .heading-title,
  .co-test .heading-title {
    width: 100%;
    background: url(../img/business/co-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.otb .heading-title,
.otb-test .heading-title {
  background: url(../img/business/otb-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .otb .heading-title,
  .otb-test .heading-title {
    width: 100%;
    background: url(../img/business/otb-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.ec .heading-title,
.ec-test .heading-title {
  background: url(../img/business/ec-title-bg-2025.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .ec .heading-title,
  .ec-test .heading-title {
    width: 100%;
    background: url(../img/business/sp_ec-title-bg-2025.jpg) no-repeat;
    background-size: 100%;
  }
}

.other .heading-title,
.other-test .heading-title {
  background: url(../img/business/other-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .other .heading-title,
  .other-test .heading-title {
    width: 100%;
    background: url(../img/business/other-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.newgraduate .heading-title,
.new-graduates-test .heading-title {
  background: url(../img/recruit/newgraduate-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .newgraduate .heading-title,
  .new-graduates-test .heading-title {
    width: 100%;
    background: url(../img/recruit/newgraduate-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.career .heading-title {
  background: url(../img/recruit/career-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .career .heading-title {
    width: 100%;
    background: url(../img/recruit/career-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.timejob .heading-title,
.timejob-test .heading-title {
  background: url(../img/recruit/timejob-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .timejob .heading-title,
  .timejob-test .heading-title {
    width: 100%;
    background: url(../img/recruit/timejob-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.person .heading-title,
.recruit .heading-title {
  background: url(../img/recruit/person-title-bg.jpg) no-repeat;
  background-size: cover;
}
.person-test .heading-title,
.recruit-test .heading-title {
  background: url(../img/recruit/person-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {

  .person .heading-title,
  .recruit .heading-title {
    width: 100%;
    background: url(../img/recruit/person-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.corporation .heading-title,
.outline .heading-title,
.philosophy .heading-title,
.history .heading-title,
.message .heading-title,
.officer .heading-title{
  background: url(../img/company/company-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {

  .corporation .heading-title,
  .outline .heading-title,
  .philosophy .heading-title,
  .history .heading-title,
  .message .heading-title {
    width: 100%;
    background: url(../img/company/company-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

@media screen and (max-width: 979px) {
  .philosophy .heading-title {
    padding: 13.7vw 0 10.8vw;
  }
}

.shop .heading-title,
.shop-test .heading-title {
  background: url(../img/shop/shop-title-bg-2025.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .shop .heading-title,
  .shop-test .heading-title {
    width: 100%;
    background: url(../img/shop/shop-title-bg-sp-2025.jpg) no-repeat;
    background-size: 100%;
  }
}

.csr .heading-title,
.csr-test .heading-title {
  background: url(../img/csr/csr-title-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 979px) {
  .csr .heading-title,
  .csr-test .heading-title {
    width: 100%;
    background: url(../img/csr/csr-title-bg-sp.jpg) no-repeat;
    background-size: 100%;
  }
}

.contact .heading-title,
.privacy .heading-title,
.terms .heading-title,
.event .heading-title,
.post-type-archive-news .heading-title {
  padding: 90px 0 40px;
  color: #555;
  background: none;
  text-align: center;
}

.contact-test .heading-title,
.privacy-test .heading-title,
.terms-test .heading-title,
.event-test .heading-title,
.post-type-archive-news-test .heading-title {
  padding: 90px 0 40px;
  color: #555;
  background: none;
  text-align: center;
}

@media screen and (max-width: 979px) {

  .contact .heading-title,
  .privacy .heading-title,
  .terms .heading-title,
  .event .heading-title,
  .post-type-archive-news .heading-title {
    padding: 10.66667vw 0 5.33333vw;
  }
  .contact-test .heading-title,
  .privacy-test .heading-title,
  .terms-test .heading-title,
  .event-test .heading-title,
  .post-type-archive-news-test .heading-title {
    padding: 10.66667vw 0 5.33333vw;
  }
}

/* =========================================================
共通ページ（お問い合わせ　利用規約）
========================================================= */
.contact .post,
.terms .post {
  padding: 100px 0;
  text-align: center;
}

.contact .page-title,
.terms .page-title {
  margin: 0 0 40px;
}

.contact .page .button,
.terms .page .button {
  width: 310px;
  margin: 60px auto 0;
}

/* =========================================================
404
========================================================= */
.error404 .post {
  padding: 60px 0;
  margin-bottom: 30px;
  text-align: center;
  background-color: #fff;
}

/* =========================================================
スライダー
========================================================= */
.slider .slick-slide>div {
  display: flex;
}

/* dots */
.slider .slick-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 20px;
}

.slider .slick-dots li {
  overflow: hidden;
  border-radius: 50%;
  background: #b2b2b2;
}

.slider .slick-dots li+li {
  margin-left: 15px;
}

.slider .slick-dots .slick-active {
  background: #000;
}

.slider .slick-dots li button {
  overflow: hidden;
  box-sizing: border-box;
  width: 6px;
  height: 0;
  text-indent: -999px;
  border: none;
  border-radius: 50%;
  outline: none;
  background: transparent;
  padding-top: 6px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* arrow */
.slick-arrow {
  border: none;
  text-indent: -9999px;
  position: absolute;
  z-index: 5;
  top: 0;
  cursor: pointer;
  outline: none;
}

@media screen and (min-width: 1140px) {
  .slider .slick-dots li {
    width: 6px;
    height: 6px;
  }

  .slick-arrow {
    width: 80px;
    height: 573px;
    padding: 0;
  }

  .slick-arrow:hover {
    opacity: .6;
  }

  .slick-prev {
    background: url(../img/slider-arrow-prev.png) no-repeat center;
    left: 0;
  }

  .slick-next {
    background: url(../img/slider-arrow-next.png) no-repeat center;
    right: 0;
  }
}

@media screen and (max-width: 979px) {
  .slider {
    padding: 0 8vw;
  }

  .slider .slick-dots li {
    width: calc(8 * (100vw / 375));
    height: calc(8 * (100vw / 375));
  }

  .slider .slick-dots li button {
    width: calc(8 * (100vw / 375));
    padding-top: calc(8 * (100vw / 375));
  }

  .slick-arrow {
    width: calc(45 * (100vw / 375));
    height: calc(210 * (100vw / 375));
    outline: none;
    top: 0;
    padding: 0;
  }

  .slick-prev {
    background: url(../img/sp-slider-arrow-prev.png) no-repeat center;
    left: calc(30 * (100vw / 375));
  }

  .slick-next {
    background: url(../img/sp-slider-arrow-next.png) no-repeat center;
    right: calc(30 * (100vw / 375));
  }
}

/* =========================================================
SHOP 地図
========================================================= */

.shoplist-map {
  margin: 40px auto 0;
  position: relative;
  text-align: center;
}

.shoplist-map svg{
  display: inline-block;
}

.shoplist-map a {
  transition: none !important;
}

.shoplist-map .no-link {
  pointer-events: none;
}

/* .shoplist-map .no-link path {
  fill: #d3d3d3;
} */

@media screen and (min-width: 1140px) {
  .shoplist-map a:hover {
    opacity: .6;
    text-decoration: none;
  }
}

.svg-container {
  padding: 0 10px;
}

/* =========================================================
7つの価値
========================================================= */
.values {
  position: relative;
}

@media screen and (min-width: 1140px) {
  .values {
    width: 860px;
    height: 856px;
    margin: 60px auto 100px;
  }

  .values-list {
    position: absolute;
  }

  .values-list img {
    -webkit-transform: scale(1);
    transform: scale(1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: relative;
    z-index: 2;
  }

  .values-list:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    transition: all .4s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 5;
  }

  .values-title {
    width: 180px;
    position: absolute;
    top: 352px;
    left: 342px;
  }

  .value01 {
    width: 260px;
    top: 0;
    left: 298px;
  }

  .value02 {
    width: 295px;
    top: 120px;
    left: 505px;
  }

  .value03 {
    width: 332px;
    top: 383px;
    left: 530px;
  }

  .value04 {
    width: 259px;
    top: 533px;
    left: 440px;
  }

  .value05 {
    width: 259px;
    top: 530px;
    left: 169px;
  }

  .value06 {
    width: 332px;
    top: 383px;
    left: 3px;
  }

  .value07 {
    width: 295px;
    top: 120px;
    left: 60px;
  }

}

@media screen and (max-width: 979px) {
  .values {
    margin: 55px auto 0;
    padding: 0 calc(30 * (100vw / 375));
  }

  .values-title {
    width: calc(118 * (100vw / 200));
    margin: 0 auto 30px;
  }

  .values-list {
    margin-bottom: 20px;
  }

  #post-person-test .panelbox {
    padding: 0 8vw 16vw;
  }
}

/* blog
----------------------------------------------- */
#blog .column-list {
  display: block;
}

#blog .column-list a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

#blog .column-list a:hover {
  text-decoration: none;
}

#blog .column-list a:hover img {
  opacity: .6;
}

#blog .column-image {
  width: 240px;
}

#blog .column-image img {
  transition: .2s;
}

@media screen and (max-width: 979px) {
  #blog .column-image {
    width: 100%;
  }
}

/* =========================================================
SHOP 店舗情報
========================================================= */
.shop .post {
  padding-top: 0;
  background: none;
}

.shopinfo .panelbox-items {
  display: flex;
  flex-wrap: wrap;
}

.shopinfo .panelbox-item {
  padding-bottom: 55px;
}

.shopinfo .panelbox-item:hover .panel-image {
  opacity: 1;
}

.shopinfo .panelbox-item:hover .panel-title {
  color: #555;
}

.shopinfo .panel-title {
  width: 100%;
}

.shopinfo .panel-button {
  width: 214px;
  margin: 30px auto 0;
}

.shopinfo .panel-button .button {
  margin-bottom: 20px;
}

@media screen and (max-width: 979px) {
  .shopinfo {
    width: 84vw;
    margin: 0 auto;
  }

  .shopinfo .panel {
    display: block;
  }

  .shopinfo .panel-title {
    padding: 0;
  }

  .shopinfo .panelbox-item {
    padding-bottom: 10.66667vw;
  }
}

/* =========================================================
SHOP 店舗一覧
========================================================= */
.shop-movie{
  margin: 0 auto 40px;
  position: relative;
  background-color: #fff;
}
.shop-movie .page-block{
  text-align: left;
}
.shop-movie .page-inner{
  padding: 40px 60px;
}
.shopnews {
  margin: 0 0 40px;
  background-color: #fff;
}
.shopnews .page-inner {
  padding: 40px 60px;
}

.shopnews-title {
  font-weight: 500;
  font-size: 2.6rem;
  color: #555;
}

.shopnews .table {
  margin: 20px 0 0;
}

.shopnews .table-th {
  width: 120px;
  color: #888;
}

.shopnews .table-th,
.shopnews .table-td {
  padding: 10px 0;
}

.shopnews .table-td a {
  display: inline-block;
}

.shop-movie .page-movie{
  position: relative;
}
.shop-movie-title{
  margin: 0 0 15px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
}
.shop-movie .page-movie p{
  margin-top: 10px;
}

.page-movie iframe{
  width: 860px ;
  height: 485px ;
}

@media screen and (max-width: 979px) {
  .shopnews-title {
    font-size: 2.2rem;
  }

  .shopnews .page-inner {
    padding: 16vw 8vw;
  }

  .shopnews .table-th {
    padding-bottom: 0;
  }

  .shopnews .table-td {
    padding-top: 5px;
  }

  .shop-movie .page-inner{
    padding: 16vw 8vw;
  }
  .shop-movie .page-movie-inner {
    position: relative;
    width: 84vw;
    height: 0;
    padding-top: 56.25%;
  }

  .shop-movie .page-movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .shop-movie .page-movie iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
  }
  
}