@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

body {
  margin: 0;
  background: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  margin: 0;
  border: 0;
  vertical-align: top;
}

p {
  word-wrap: break-word;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
}

input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

main {
  display: block;
}

.outer-block {
  min-width: 1240px;
}

.inner-block {
  position: relative;
  width: 1200px;
}

.contents-block {
  padding-top: 80px;
  padding-bottom: 100px;
}

#wrapper {
  position: relative;
}

/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/

.anm-list > * {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}

@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes ballDrop {
  60% {
    -webkit-transform: translate(0, 20px) rotate(-180deg) scale(0.5);
            transform: translate(0, 20px) rotate(-180deg) scale(0.5);
  }
  100% {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
            transform: translate(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes ballDrop {
  60% {
    -webkit-transform: translate(0, 20px) rotate(-180deg) scale(0.5);
            transform: translate(0, 20px) rotate(-180deg) scale(0.5);
  }
  100% {
    -webkit-transform: translate(0) rotate(0deg) scale(1);
            transform: translate(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

/*------------------------------------------------------------------------------
  font
------------------------------------------------------------------------------*/
@font-face {
  src: url("../font/A-OTF-UDShinGoNTPr6N-Bold.otf") format("otf"), url("../font/A-OTF-UDShinGoNTPr6N-Bold.woff") format("woff");
  font-family: 'shingo';
  font-style: normal;
  font-weight: 400;
}

@font-face {
  src: url("../font/Overpass-Regular.ttf") format("ttf"), url("../font/Overpass-Regular.woff") format("woff");
  font-family: 'overpass';
  font-style: normal;
  font-weight: 400;
}

@font-face {
  src: url("../font/Overpass-Bold.ttf") format("ttf"), url("../font/Overpass-Bold.woff") format("woff");
  font-family: 'overpassBold';
  font-style: normal;
  font-weight: 700;
}

@font-face {
  src: url("../font/Pacifico-Regular.ttf") format("ttf"), url("../font/Pacifico-Regular.woff") format("woff");
  font-family: 'pacifico';
  font-style: normal;
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
.header-logo-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  height: 80px;
}

.header-logo {
  display: inline-block;
}

.header-logo img {
  width: 206px;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-nav-list {
  line-height: 1;
}

.header-nav-list > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  overflow: hidden;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width:641px) {
  .header-nav-list > li {
    width: calc(100% / 6);
  }
}

.header-nav-list > li.header-contact a {
  background: #5cb4a6;
}

.header-nav-list > li.header-contact a:before {
  display: block;
  z-index: 1;
  position: absolute;
  right: -10px;
  bottom: -5px;
  width: 66px;
  height: 55px;
  background: url("../img/common/ico-contact.png") no-repeat;
  background-position: center center;
  background-size: contain;
  content: '';
}

.header-nav-list > li.header-contact .en {
  color: #fff;
}

.header-nav-list > li.header-contact .jp {
  color: #fff;
}

.header-nav-list > li.header-recruit a {
  background: #e5b36d;
}

.header-nav-list > li.header-recruit a:before {
  display: block;
  z-index: 1;
  position: absolute;
  right: -12px;
  bottom: -7px;
  width: 75px;
  height: 58px;
  background: url("../img/common/ico-recruit.png") no-repeat;
  background-position: center center;
  background-size: contain;
  content: '';
}

.header-nav-list > li.header-recruit .en {
  color: #fff;
}

.header-nav-list > li.header-recruit .jp {
  color: #fff;
}

.header-nav-list .en {
  display: block;
  z-index: 2;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-nav-list .jp {
  display: block;
  z-index: 2;
  position: relative;
  padding-top: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}



@media screen and (min-width: 641px) {/* PC */
  .header-logo-block {
    display: block;
    height: auto;
  }
  .header-nav-list > .mega-btn .en,
  .header-nav-list > .mega-btn .jp {
    transition: 0s;
  }

  .header-logo-block .top-block {
    padding: 20px 50px;
    height: 90px;
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .header-logo-block .right-block {
    display: flex;
  }

  .header-logo-block .bnr-block > a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
  }

  .header-logo-block .bnr-block > a + a {
    margin-left: 15px;
  }

  .header-logo-block .bnr-block > a:hover {
    opacity: 0.7;
  }

  .header-logo-block .sns-block {
    display: flex;
    align-items: center;
  }

  .header-logo-block .sns-block > a {
    margin-left: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-logo-block .sns-block > a > img {
    width: 35px;
    height: 35px;
    object-fit: contain;
  }

  .header-logo-block .sns-block > a:hover {
    opacity: 0.5;
  }

  .header-nav-list {
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
  }

  .header-nav-list > li + li {
    border-left: 1px solid #d4d4d4;
  }

  .header-nav-list > .mega-btn > a {
    position: relative;
    overflow: visible;
  }
  .mega-btn > a::after {
    display: none;
    content: "";
    opacity: 0;
    margin: auto;
    position: absolute;
    bottom: -11px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 6px 0 6px;
    border-color: #5cb4a6 transparent transparent transparent;
    z-index: 999;
    transition: .2s;
  }
  .mega-btn:hover > a::after {
    opacity: 1;
  }
  .mega-btn:hover > a {
    background: #5cb4a6;
    color: #fff;
  }

  .mega-menu {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 5px 5px rgba(80, 80, 80, .2);
    opacity: 0;
    text-align: left;
    /* padding: 20px; */
    pointer-events: none;
    position: absolute;
    z-index: 99;
    width: 100%;
    min-width: 1200px;
    top: 169px;
    left: 0;
    transition: 0.3s;
  }
  .mega-btn:hover .mega-menu {
    opacity: 1;
    pointer-events: auto;
  }

  .mega-menu-li {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* -webkit-box-pack: end;
    justify-content: flex-end; */
  }

  .mega-menu-li li a:hover {
    background: #fff;
    color: #5cb4a6;
  }
}


/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
#pagetop {
  z-index: 99;
  position: absolute;
  right: 20px;
  top: -45px;
}

#pagetop a {
  display: block;
  width: 60px;
  height: 60px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  border-radius: 50%;
  background: url(../img/common/arrow-right-blk.svg) no-repeat;
  background-color: rgba(255, 179, 109, 0.8);
  background-position: center 50%;
  background-size: 8px auto;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

#footer {
  padding: 50px 0 80px;
  position: relative;
}

.footer-cont {
  color: #fff;
}

.footer-cont .footer-nav-block {
  position: relative;
}

.footer-cont .footer-nav-block .copyright {
  color: #20625b;
  font-size: 12px;
}

.footer-logo img {
  width: 133px;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer-address {
  margin-top: 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.footer-nav-list {
  color: #fff;
}

.footer-nav-list > li a {
  color: #fff;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-sub-li > li a {
  font-size: 13px;
  padding-left: 8px;
}


/*------------------------------------------------------------------------------
  parts
------------------------------------------------------------------------------*/
.c-ttl01 {
  line-height: 1;
}

.c-ttl01 .en {
  display: block;
  color: #fff;
  font-family: overpassBold;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

.c-ttl01 .jp {
  display: block;
  margin-top: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

.c-ttl01.left .en {
  text-align: left;
}

.c-ttl01.left .jp {
  text-align: left;
}

.c-ttl01.black .en {
  color: #333;
}

.c-ttl01.black .jp {
  color: #333;
}

.c-btn01 {
  display: inline-block;
  position: relative;
  width: 200px;
  padding: 14px;
  border: solid 1px rgba(255, 255, 255, 0);
  border-radius: 22px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.ie .c-btn01 {
  padding-bottom: 7px;
}

.c-btn01:before {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 16px;
  margin: auto 0;
  background: url("../img/common/arrow-right-wt.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  content: '';
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.confirm-btn-wrap button[name="submitBack"]:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 0;
  left: 20px;
}

.confirm-btn-wrap button[name="submitBack"] {
  margin-right: 100px;
}

.c-btn01.orange {
  background: #e5b36d;
}

.c-btn01.black {
  background: #333;
}

.c-btn01.green {
  background: #5cb4a6;
}
.c-btn01.purple {
  background: #a55aaa;
}

.c-btn01.small {
  padding: 9px 0;
  font-size: 12px;
}

.c-btn01.pdf::before {
  position: absolute;
  right: 7px;
  width: 19px;
  height: 22px;
  background-image: url("../img/amusement/store/ico-pdf.svg");
}

.c-btn01.movie-btn {
  cursor: pointer;
  width: 150px;
  padding: 20px;
}

.c-btn01.movie-btn::before {
  position: absolute;
  width: 19px;
  height: 22px;
  background-image: url(../img/common/m_start_wt.svg);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.c-btn01.movie-btn.active::before {
  background-image: url(../img/common/m_stop_wt.svg);
}

/*-- 英字付き --*/
.c-ttl02 {
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}

.c-ttl02 .ja {
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1em;
  margin: auto;
  font-size: 30px;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
}

.c-ttl02 .en {
  color: #dcf0ed;
  font-family: pacifico;
  font-size: 100px;
  line-height: 1em;
}

.c-ttl02:before {
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 50px;
  height: 2px;
  margin: auto;
  background: #55bdb1;
  content: "";
}

/*-- ドット3つ付き --*/
.c-ttl03 {
  position: relative;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.c-ttl03::before {
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  width: 54px;
  height: 22px;
  margin: auto;
  background: url(../img/common/c-ttl03.png) no-repeat;
  background-size: contain;
  content: "";
}

/*-- 縦ライン付き --*/
.c-ttl04 {
  position: relative;
  margin: 100px 0 0;
  padding-left: 0.88889em;
  font-size: 36px;
  font-weight: bold;
}

.c-ttl04::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.38889em;
  height: 1.66667em;
  margin: auto;
  background-color: #5cb4a6;
  content: "";
}

.bg-green {
  background: #5cb4a6;
}

.bg-lightgreen {
  background: rgba(92, 180, 166, 0.05);
}

.bg-orange {
  background: #e5b36d;
}

.js-object-fit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.news-list01 > li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  border-bottom: solid 1px #d4d4d4;
  -webkit-transition: .3s;
  transition: .3s;
}

.news-list01 > li:last-child a {
  border-bottom: none;
}

.news-list01 .date-tag-block {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.news-list01 .date-tag-block .date {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.news-list01 .date-tag-block .tag {
  margin-left: 20px;
  padding: 3px 10px;
  background: #e5b36d;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.ie .news-list01 .date-tag-block .tag {
  padding-bottom: 0;
}

.news-list01 .ttl {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.mv-block {
  display: table;
  width: 100%;
  background: no-repeat center center / cover;
}

.mv-block .inner-block {
  height: 300px;
}

.mv-block .mv-title {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
}

.mv-block .mv-title .en {
  font-family: overpassBold;
  font-size: 50px;
  line-height: 1;
}

.mv-block .mv-title .ja {
  display: block;
  font-size: 30px;
  font-weight: bold;
}

/*---- ぱんくず ----*/
.breadcrumb ul {
  padding: 20px 0;
  font-size: 0;
}

.breadcrumb ul li {
  display: inline;
  position: relative;
  font-family: overpass;
  font-size: 14px;
  line-height: 2;
}

.breadcrumb ul li + li::before {
  display: inline-block;
  top: 3px;
  left: -18px;
  width: 6px;
  height: 10px;
  margin: 0 14px;
  background: url(../img/common/arrow-right-blk.svg) no-repeat;
  background-size: 100% 100%;
  content: "";
}

.breadcrumb ul li:last-child {
  margin: 0;
}

/*---- ページ内リンク ----*/
.anker-block .inner-block {
  padding: 40px 0 80px;
}

.anker-block ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}


.anker-block li {
  position: relative;
  width: 100%;
}


.anker-block li a {
  display: block;
  position: relative;
  padding: 10px 20px 10px 0px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}

.anker-block li a::before {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 6px;
  height: 10px;
  margin: auto;
  content: "";
}

.anker-block li a .arrow {
  position: relative;
}

/*---- c-block-01 ----*/
.c-block-area {
  padding-bottom: 50px;
}

.c-block-01 {
  overflow: hidden;
}

.c-block-01 .cont {
  padding: 100px 0;
}

.c-block-01 .cont .txt-area .txt {
  letter-spacing: 0.1em;
  text-align: justify;
}

.c-block-01 .cont .txt-area .txt + .txt {
  margin-top: 1em;
}

.c-block-01 .cont .img-area {
  position: relative;
  width: 50vw;
}

.c-block-01 .cont .img-area::before {
  z-index: -1;
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg.png);
  content: "";
}

.c-block-01 .cont .img-area img {
  position: relative;
}

.c-block-01 .cont .img-area .video {
  display: block;
}

.c-block-01 .cont .img-area .video > video {
  position: relative;
  width: 100%;
}

.c-block-01 .cont .btn-area {
  margin: 40px 0 0;
}

.c-block-01 .btn-area {
  text-align: center;
}

.c-block-01 .cont + .btn-area {
  margin-bottom: 100px;
}

.c-block-01:nth-child(even) .cont .img-area::before {
  right: auto;
  left: -30px;
}

.c-block-01 .slick-dots {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

/*---- c-block-02 ----*/
.c-block-02 .cont {
  padding: 50px 0 100px;
}

.c-block-02 .cont .txt-area {
  margin-bottom: 50px;
}

.c-block-02 .cont .txt-area .c-ttl02 {
  margin-bottom: 40px;
}

.c-block-02 .cont .txt-area .c-ttl02::before {
  content: none;
}

.c-block-02 .cont .img-area .large {
  /* display: -webkit-box;
  display: flex; */
}

.c-block-area .c-block-02:nth-child(odd) .img-area {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.c-block-area .ttl-box {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.store-btn {
  display: block;
  position: relative;
  width: 100%;
  height: 200px;
  background: url(../img/common/btn-store-bg.jpg) no-repeat;
}

.store-btn::before {
  -webkit-transition: 0.3s;
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-50deg, #d9db41, #ace9f5 100%);
  mix-blend-mode: overlay;
  content: "";
  opacity: 0;
  transition: 0.3s;
}

/* lightbox */

.lightbox .lb-image {
  border: none;
  border-radius: 0;
}

.lb-outerContainer .lb-nav .lb-prev {
  z-index: 10;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60px;
  width: 50%;
  height: 100%;
  margin: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url(../img/common/arrow-right-wt.svg) no-repeat;
  background-position-x: right;
  background-position-y: 50%;
  background-size: contain;
  background-size: 30px 48px;
  opacity: 1;
}

.lb-outerContainer .lb-nav .lb-next {
  z-index: 10;
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  width: 50%;
  height: 100%;
  margin: auto;
  background: url(../img/common/arrow-right-wt.svg) no-repeat;
  background-position-x: right;
  background-position-y: 50%;
  background-size: contain;
  background-size: 30px 48px;
  opacity: 1;
}

.lb-dataContainer {
  position: relative;
  padding: 0;
}

.lb-dataContainer .lb-data {
  padding: 0;
}

.lb-dataContainer .lb-data .lb-number {
  display: none !important;
}

.lb-dataContainer .lb-data .lb-details {
  width: 100%;
  background: #fff;
}

.lb-dataContainer .lb-data .lb-details .sub {
  padding: 10px;
}

.lb-dataContainer .lb-data .lb-details .title {
  margin-bottom: 8px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

.lb-dataContainer .lb-data .lb-details .price {
  color: #717171;
  font-size: 12px;
  font-weight: normal;
}

.lb-close {
  position: absolute;
  top: -60px;
  right: 0;
  bottom: auto;
  bottom: auto;
  width: 40px;
  height: 40px;
  background: url(../img/common/ico-cross.svg) no-repeat;
  background-size: contain;
  opacity: 1;
}

.lb-close:hover {
  cursor: pointer;
}

.lb-data .lb-details {
  float: none;
}

.lb-data .lb-caption {
  display: none !important;
}

/* coming soon */
.c-block-02 .cont.comig-soon .txt-area {
  display: block;
  text-align: center;
}

.c-block-02 .cont.comig-soon .txt-area .ready-now {
  margin-top: 45px;
  font-size: 30px;
  font-weight: bold;
}

/*------------------------------------------------------------------------------
  top
------------------------------------------------------------------------------*/
/*---- kv ----*/
.kv-block {
  position: relative;
  /* margin-bottom: 4.16667vw;*/
  /* padding: 0 4.16667vw; */
}

.kv-block iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  display: block;
}

.kv-block:before {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #d4eeeb;
  content: '';
}

.kv-slider-block {
  position: relative;
}

.kv-slider-block.mv-movie-block video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  /*max-height: 800px;*/
}

.kv-slider {
  width: 100%;
}

.kv-slider .slick-slide {
  display: block;
  width: 900px;
  height: 520px;
}

.kv-slider .slick-slide img {
  object-fit: cover;
  border-radius: 10px;
}

.kv-slider .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  height: 1px;
  margin-top: 17px;
}
.kv-slider .slick-dots > li {
  margin: 0 3px;
  position: relative;
  height: 5px;
  width: 75px;
}
.kv-slider .slick-dots button {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
}
.kv-slider .slick-dots button::before {
  content: "";
  height: 5px;
  width: 75px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.kv-slider .slick-dots .slick-active button::before {
  background: #5cb4a6;
}

/* Slick Arrow */

.kv-slider .slide-arrow {
  width: 30px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.kv-slider .prev-arrow {
  left: 26vw;
  padding-left: 5px;
}

.kv-slider .next-arrow {
  right: 26vw;
  padding-right: 5px;
}

.kv-slider .slide-arrow__arrow {
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.kv-slider .prev-arrow__arrow {
  border-bottom: 3px solid white;
  border-left: 3px solid white;
}

.kv-slider .next-arrow__arrow {
  border-top: 3px solid white;
  border-right: 3px solid white;
}
@media screen and (max-width: 1500px) {
  .kv-slider .prev-arrow {
    left: 210px;
    padding-left: 5px;
  }
  
  .kv-slider .next-arrow {
    right: 210px;
    padding-right: 5px;
  }
}

.kv-slider img {
  width: 100%;
}

.kv-title-block {
  position: absolute;
  bottom: 2.60417vw;
  left: 6.77083vw;
}

.slick-slide:focus {
  outline: none;
}

.kv-title {
  line-height: 1;
}

.kv-title .title {
  display: inline-block;
  padding: 1.25vw;
  padding-right: 3.125vw;
  background: rgba(92, 180, 166, 0.8);
  color: #fff;
  font-family: shingo;
  font-size: 3.90625vw;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0;
}

.ie .kv-title .title {
  padding-bottom: 0;
}

.kv-title .title.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

.kv-title .title.is-animated span {
  display: inline-block;
  -webkit-transform: translate(200px, -100px) scale(2);
          transform: translate(200px, -100px) scale(2);
  -webkit-animation: ballDrop .3s forwards;
          animation: ballDrop .3s forwards;
  opacity: 0;
}

.kv-title .title img {
  height: 6vw;
}

.kv-title .title + .title {
  display: block;
  margin-top: 2vw;
}

.kv-title .title .big {
  font-size: 5.10417vw;
}

.kv-title .title .yellow {
  color: #f3f49e;
}

.kv-title .title .orange {
  color: #ecc063;
}

/*---- cont ----*/

.top-service-block {
  background: -webkit-gradient(linear, left top, left bottom, from(#5cb4a6), color-stop(38%, #5cb4a6), color-stop(38%, #fff), to(#fff));
  background: linear-gradient(#5cb4a6 0%, #5cb4a6 38%, #fff 38%, #fff 100%);
}

.top-service-list-block {
  margin-top: 60px;
}

.top-service-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
}

.top-service-list > li {
  position: relative;
}

.top-service-list .img-box {
  width: 100%;
}

.top-service-list .ttl-box {
  position: absolute;
  right: 0;
  bottom: -80px;
  left: 0;
  margin: 0 auto;
  padding: 25px;
}

.top-service-list .ttl-box .ttl {
  line-height: 1;
  text-align: center;
}

.top-service-list .ttl-box .ttl .en {
  display: block;
  font-family: shingo;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.top-service-list .ttl-box .ttl .jp {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.top-service-list .ttl-box .top-service-btn {
  margin-top: 20px;
  text-align: center;
}

.top-service-list .ttl-box.yellow {
  background: rgba(243, 244, 158, 0.8);
}

.top-service-list .ttl-box.blue {
  background: rgba(146, 217, 243, 0.8);
}

.top-service-list .ttl-box.pink {
  background: rgba(252, 178, 230, 0.8);
}

.top-service-list .ttl-box.green {
  background: rgba(161, 249, 102, 0.8);
}

.top-gallery-list-block {
  margin-top: 60px;
}

.top-gallery-slider-list img {
  width: 350px;
  height: 250px;
}


/* top-sns-block */
.top-sns-item + .top-sns-item {
  margin-top: 30px;
}

.top-sns-item-head {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 4px 30px;
}

.top-sns-item-head img {
  height: 32px;
}

.top-sns-item-body {
  border-width: 0 1px 1px;
  border-style: solid;
}

.top-sns-item-body a {
  display: block;
  height: 100%;
  padding: 15px 0;
  transition: 0.3s;
}

.top-sns-item-body a:active,
.top-sns-item-body a:focus {
  outline: none;
}

.top-sns-item-body .icon {
  width: 60px;
  height: 60px;
  margin: auto;
}

.top-sns-item-body .ttl {
  font-size: 16px;
  margin-top: 5px;
}

@media screen and (min-width: 641px) {
  .kv-slider .slick-slide + .slick-slide {
    margin: 0 15px;
  }
  .top-sns-block .inner-block {
    width: 1100px;
  }

  .top-sns-item-body {
    padding: 0 150px;
  }

  .top-sns-item-body a:hover {
    opacity: 0.7;
  }

  .top-sns-slider .slick-arrow {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

  .top-sns-slider .slick-prev {
    left: 75px;
    border-left: 8px solid transparent;
    border-right: 8px solid #ccc;
  }

  .top-sns-slider .slick-next {
    right: 75px;
    border-right: 8px solid transparent;
    border-left: 8px solid #ccc;
  }

  .top-sns-slider .slick-disabled {
    display: none !important;
  }

  .top-sns-slider .slick-track {
    margin-left: 0;
  }

  .top-sns-slider-item {
    text-align: center;
  }

}


/* top-border-block */
.top-banner-block {
  padding: 0;
}

.top-banner-box a {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-banner-box a:before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-50deg, #d9db41, #ace9f5 100%);
  mix-blend-mode: overlay;
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-banner-box .img-box {
  position: relative;
  height: 100%;
}

.top-banner-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-banner-box .ttl-box {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*------------------------------------------------------------------------------
  service
------------------------------------------------------------------------------*/
.service .mv-block {
  background-image: url(../img/service/kv.jpg);
}

/*------------------------------------------------------------------------------
  event
------------------------------------------------------------------------------*/
.event .mv-block {
  background-image: url(../img/event/kv.jpg);
}

/*------------------------------------------------------------------------------
  selling
------------------------------------------------------------------------------*/
.selling .mv-block {
  background-image: url(../img/selling/kv.jpg);
}

.selling .amusement.mv-block {
  background-image: url(../img/amusement/kv.jpg);
}

/*------------------------------------------------------------------------------
  gallery
------------------------------------------------------------------------------*/
.gallery .mv-block {
  background-image: url(../img/gallery/kv.jpg);
}

.gallery .c-block-02 .c-ttl04 {
  margin: 0 0 50px;
}
.gallery .c-block-02 .btn-area {
  margin: 50px 0 0;
  text-align: center;
}

.gallery-area .gallery-li {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.gallery-area .gallery-li > li {
  width: calc((100% - 50px)/5);
}

@media screen and (min-width: 641px) {/* PC */
  .gallery-area .gallery-li > li + li {
    margin-left: 12px;
  }
  .gallery-area .gallery-li > li:nth-child(6n) {
    margin-left: 0;
  }
}

.gallery-area .img {
  display: block;
  position: relative;
  width: 230px;
  height: 163px;
  background: no-repeat center center / cover;
}

.gallery-area .img img {
  width: 100%;
  height: 100%;
}

.gallery-area .img::before {
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: url(../img/common/ico-open.svg) no-repeat center;
  background-color: rgba(92, 180, 166, 0.8);
  content: "";
}

.gallery-area .sub {
  position: relative;
}
.gallery-area .sub.movie::before {
  background: url(../img/common/ico-movie.svg)no-repeat center center;
  background-size: 25px 25px;
  content: "";
  display: block;
  height: 25px;
  position: absolute;
  width: 25px;
  bottom: 0;
  top: 0;
  right: 5px;
  margin: auto;
}
.gallery-area .sub.movie {
  padding-right: 35px;
}

.gallery-area .title {
  margin-top: 4px;
  font-size: 14px;
  font-weight: bold;
}

.gallery-area .price {
  color: #717171;
  font-size: 12px;
}

/* modal基本設定 */
.mfp-bg {
  background: #fff;
  opacity: .85;
  position: fixed;
}
.mfp-container {
  padding: 0;
}
@media screen and (min-width: 641px) {/* PC */
  .mfp-bg {
    min-width: 1240px;
  }
  .mfp-container {
    min-width: 960px;
    /* padding-top: 80px; */
  }
}

.modal-wrap .modal-inn {
  padding: 30px 70px;
  width: 100%;
}

.gallery-content video,
.gallery-content img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 641px) {/* PC */
  .modal-wrap .modal-inn {
    display: flex;
    justify-content: center;
  }

  .gallery-content {
    padding-right: 20px;
    width: calc(100% - 600px);
    min-width: 400px;
    max-width: 800px;
    text-align: center;
  }

  .modal-wrap .txt-box {
    max-width: 600px;
    min-width: 440px;
  }
}

.modal-wrap .item-title {
  color: #fff;
  background: #67be91;
  border-radius: 22px;
  font-size: 24px;
  /* line-height: 44px; */
  padding: 5px;
  text-align: center;
  max-width: 400px;
}

.modal-wrap .txt-inn {
  padding: 0 15px;
}

.modal-wrap .item-desc {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  line-height: 1.8;
}

@media screen and (min-width:641px) {
  .modal-wrap .item-desc {
    max-height: 300px;
    overflow-y: auto;
  }
}

.modal-wrap .item-detail {
  padding: 10px 0;
}

.modal-wrap .ico-li {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	margin-left: -10px;
	margin-top: -10px;
}

.modal-wrap .ico-li li {
  text-align: center;
}

	.modal-wrap .ico-li li{
		width: 80px;
		margin-left: 10px;
		margin-top: 10px;
	}



.modal-wrap .ico-li li .ttl {
  font-size: 14px;
  margin-top: 10px;
}

.modal-wrap .ico-li li .ttl.green {
  color: #67be91;
}
.modal-wrap .ico-li li .ttl.gray {
  color: #888;
}

.modal-wrap .ico-li li img {
  width: 56px;
  height: auto;
}

.gallery-thumb-slider {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width:641px) {
  .gallery-thumb-slider {
    max-height: 300px;
    overflow-y: auto;
  }
}
.gallery-thumb-slider li {
  width: calc((99.9999% - 20px)/3);
  height: 140px;
  margin-right: 10px;
  cursor: pointer;
  transition: .3s;
  background-color: #000;
}
.gallery-thumb-slider li.current {
  opacity: .7;
  background-color: #000;
}

.gallery-thumb-slider li span {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-thumb-slider li span video,
.gallery-thumb-slider li span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-thumb-slider li span video {
  pointer-events: none;
}

.gallery-thumb-slider li span {
  position: relative;
}

.gallery-thumb-slider li span.video::before {
  background: url(../img/common/ico-movie.svg)no-repeat center center;
  background-size: 30px 30px;
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  width: 30px;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 200;
}

.gallery-thumb-slider .phase-ready {
  display: none;
}

@media screen and (min-width: 641px) {/* PC */
  .gallery-thumb-slider li:hover {
    opacity: .7;
  }
}
.gallery-thumb-slider li:nth-child(3n) {
  margin-right: 0;
}
.gallery-thumb-slider li:nth-child(n+4) {
  margin-top: 10px;
}

/* arrow */
.mfp-arrow {
  top: calc(50% - 100px);
  width: 70px;
  height: 200px;
}

.mfp-arrow-left:before,
.mfp-arrow-left:after,
.mfp-arrow-right:before,
.mfp-arrow-right:after {
  border: none;
  opacity: 1;
}

.mfp-arrow-left:before,
.mfp-arrow-right:before {
  content: "";
  display: block;
  height: 48px;
  position: absolute;
  width: 30px;
  bottom: 0;
  top: 0;
  margin: auto;
}

.mfp-arrow-left:before {
  background: url(../img/common/arrow-left-gre.svg) no-repeat;
  background-size: 30px 48px;
  left: 10px;
  right: inherit;
}
.mfp-arrow-right:before {
  background: url(../img/common/arrow-right-gre.svg) no-repeat;
  background-size: 30px 48px;
  right: 10px;
  left: inherit;
}

/* close-btn */
.mfp-close-btn-in .mfp-close {
  position: absolute;
  top: 15px;
  right: 40px;
  font-size: 0;
}
.mfp-close::before {
  background: url(../img/common/ico-cross-gre.svg) no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  width: 44px;
  height: 44px;
}

/* modal-anim */
.mfp-bg.mfp-ready {
  opacity: 0.9;
}
/* overlay animate out */
.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}


/*------------------------------------------------------------------------------
  newbusiness
------------------------------------------------------------------------------*/
.newbusiness .mv-block {
  background-image: url(../img/newbusiness/kv.jpg);
}

/*------------------------------------------------------------------------------
  curves
------------------------------------------------------------------------------*/
.curves .mv-block {
  background-image: url(../img/curves/kv.jpg);
}

.curves .anker-area-list > .inner-block {
  padding: 0;
}

.curves .top-gallery-list-block {
  margin-top: 0;
}

.curves .c-block-area {
  padding-bottom: 0;
}

.store-list-block {
  margin-top: 60px;
  padding: 0;
}

.store-list-block .c-ttl04 {
  margin-top: 60px;
  letter-spacing: 0.1em;
}

.store-list-block .c-block-01 > .inner-block {
  padding: 70px 0 124px;
}

.store-list-block .anker-block > .inner-block {
  margin: 0;
}

.store-list-block .area-ttl {
  position: relative;
  margin-top: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c9c9c9;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.store-list-block .area-ttl::before {
  position: absolute;
  bottom: -1px;
  width: 220px;
  height: 1px;
  background-color: #5cb4a6;
  content: "";
}

.store-list-block .area-cont {
  margin-top: 20px;
}

.store-list-block .area-cont .area-body > ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 30px 20px;
  border-bottom: 1px solid #c9c9c9;
  background-color: #fff;
  letter-spacing: 0.1em;
}

.store-list-block .area-cont .area-body > ul .store-name {
  width: 177px;
  font-size: 16px;
  font-weight: bold;
}

.store-list-block .area-cont .area-body > ul > li:nth-child(2) {
  width: 454px;
  margin-left: 20px;
}

.store-list-block .area-cont .area-body > ul > li:nth-child(3) {
  width: 494px;
  margin-left: 10px;
}

.store-list-block .area-cont .area-body > ul .store-detail-txt {
  font-weight: bold;
  text-align: center;
}

.store-list-block .area-cont .area-body > ul .store-detail-txt a {
  position: relative;
  width: 250px;
  letter-spacing: 0.1em;
}

.store-list-block .area-cont .area-body > ul .store-detail-txt a:before {
  position: absolute;
  right: 1.25em;
  bottom: 0;
  width: 16px;
  height: 16px;
  background-image: url(../img/curves/open-new-tab.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.store-list-block .area-cont .area-body > ul .store-detail-txt a:hover:before {
  background-image: url(../img/curves/open-new-tab-purple.svg);
}

.store-list-block .area-cont .area-body > ul .store-detail-txt a:hover {
  opacity: 0.7;
}

.curves .store-list-block .area-cont .area-body > ul .store-name {
  width: 200px;
}



/*------------------------------------------------------------------------------
  contact
------------------------------------------------------------------------------*/
.contact .mv-block {
  background-image: url(../img/contact/kv.jpg);
}

/* form */
.inq {
  margin-top: 50px;
  padding-bottom: 100px;
}

.inq .inner-block > p a {
  color: #5cb4a6;
  -webkit-text-decoration: underline  #b6dfda;
          text-decoration: underline  #b6dfda;
}

.inq .ttl {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.333;
}

.inq .ttl + p {
  margin-top: 37px;
  font-size: 14px;
}

.inq .form-item-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
  padding: 40px 0;
}

.inq .form-item-wrap.comment-wrap {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.inq .form-item-wrap.name .error {
  padding-left: 16px;
}

.inq .form-item-wrap.comment-wrap .form-item-tit {
  padding-top: 13px;
}

.inq .form-item-wrap:first-child {
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}

.inq .form-item-wrap + .form-item-wrap {
  border-bottom: 1px solid #c9c9c9;
}

.inq .form-item-wrap .form-item-tit {
  position: relative;
  width: 336px;
  font-weight: bold;
}

.inq form {
  margin-top: 45px;
}

.inq .form-item-wrap .firstname,
.inq .form-item-wrap .lastname {
  margin: 0 1em;
  font-weight: bold;
}

.inq .must {
  position: relative;
}

.inq .must:before {
  position: absolute;
  right: 60px;
  bottom: 0;
  width: 80px;
  padding: 0.5em 0;
  border: 1px solid #e60012;
  background: transparent;
  color: #e60012;
  font-size: 12px;
  text-align: center;
  content: '必須';
}

.inq .form-item-wrap .form-item-tit.inquiry-type-tit:before {
  left: 180px;
}

.inq .form-item-wrap .form-item-tit.emai-tit:before {
  left: 150px;
}

.inq .form-item-wrap .form-item-tit.tel-tit:before {
  content: none;
}

.inq .form-item-wrap .form-item-tit.comment-tit:before {
  left: 160px;
}

.inq .form-item-wrap .form-item-tit.private-info-tit:before {
  left: 240px;
}

.inq .form-item-wrap.confirm {
  margin-top: 14px;
  text-align: center;
}

.inq .form-item-wrap.confirm-btn-wrap {
  margin-top: 51px;
  text-align: center;
}

.inq p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* .inq span {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
} */

.inq input[type="text"],
.inq input[type="email"],
.inq input[type="tel"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 380px;
  height: 60px;
  padding: 0.4em 0.8em;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  background-color: #f9f9f9;
  background-image: none;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
}
.inq .input-area-wrap.tel {
  width: calc(100% - 364px);
}
.inq input[name="tel"] {
  width: 100%;
}

.inq input[type="text"]:focus,
.inq input[type="email"]:focus,
.inq input[type="tel"]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  outline: none;
  box-shadow: none;
}

.inq .input-area-wrap.comment {
  width: calc(100% - 364px);
}
.inq textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 150px;
  margin-top: 6px;
  padding: 0.4em 0.8em;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  background-color: #f9f9f9;
  background-image: none;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
}

.inq textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  outline: none;
  box-shadow: none;
}

.inq .private-info-detail {
  height: 90px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.inq .private-info-detail p {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.inq .private-info-detail p:first-child {
  margin-top: 0;
}

.inq .private-info-detail p:last-child {
  margin-top: 0;
}

.inq .inq-radio {
  display: none;
}

.inq .inq-radio + span {
  display: inline-block;
  position: relative;
  margin: 0 0.2em 0;
  padding: 0 0 0 2em;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.inq .inq-radio + span::before {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  background: #fff;
  content: "";
}

.inq .inq-radio + span::after {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 4px;
  width: 10px;
  height: 10px;
  padding: 2px;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background: #5cb4a6;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.inq .inq-radio:checked + span::after {
  opacity: 1;
}

.inq .radio {
  margin-right: 48px;
}

.inq .radio:last-child {
  margin-right: 0;
}

.inq .private-info-detail {
  margin-top: 13px;
}

.inq .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.inq .radio-list > span {
  display: block;
}

/* チェックボックス */
.confirm-check {
  display: none;
}

.confirm-check + span {
  display: inline-block;
  position: relative;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.8em;
  cursor: pointer;
}

.confirm-check + span::before {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  background: #fff;
  content: "";
}

.confirm-check + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #333333;
  border-left: 3px solid #333333;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.confirm-check:checked + span::after {
  opacity: 1;
}

/* 送信ボタン */
.confirm-btn-wrap {
  position: relative;
  margin-top: 100px;
  text-align: center;
}

.confirm-btn-wrap .c-btn01 {
  width: 400px;
}

@media only screen and (min-width:641px) {
  /* 確認画面 */
  .inq .mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .must:before {
    height: 32px;
    top: 0;
    margin: auto;
  }

  .inq .mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .form-item-wrap {
    align-items: center;
  }
}

/* 完了画面 */
.contact-wrap.inq.finish>.inner-block {
  text-align: center;
}

.contact-wrap.inq.finish .c-btn01 {
  width: 300px;
  margin-top: 80px;
}

/* セレクトボックス（追加） */


.input-area-wrap.store {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align:start;
	-ms-flex-align:start;
	align-items:flex-start;
}

.other-store-input-wrap {
	order: 2;
	margin-left: 20px;
}

.selectBox-wrap {
	order: 1;
	border: 1px solid #CCCCCC;
	position: relative;
	background-color: #f9f9f9;
}


.selectBox-wrap:before {
	position: absolute;
	top: 0;
	right: 0.9em;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}

.selectBox-wrap > [name="selectBox"] {
	line-height: 60px;
	height: 60px;
	padding-left: 12.8px;
	position: relative;
	cursor: pointer;
}

[name="selectBox"]+.error {
	position: absolute;
	width: 100%;
	bottom: -1.5em;
	left: 0;
}

.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .selectBox-wrap {
	border: none;
	background-color: #fff;
}

.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .selectBox-wrap:before {
	content: none;
}
/*------------------------------------------------------------------------------
  news
------------------------------------------------------------------------------*/
.news .mv-block {
  background-image: url(../img/news/kv.jpg);
}

.news-seciton > .inner-block {
  display: -webkit-box;
  display: flex;
  padding-bottom: 100px;
}

.news-list-wrap {
  width: 860px;
}

.news-list-wrap .c-ttl04 {
  margin-top: 50px;
}

.news-list-wrap .c-ttl04 span {
  margin-left: 22px;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.news-list-wrap .news-body-wrap {
  margin-top: 50px;
}

.news-list-wrap .news-body-wrap .news-body {
  display: -webkit-box;
  display: flex;
  padding: 30px 0;
}

.news-list-wrap .news-body-wrap .news-body + .news-body {
  border-bottom: 1px solid #c9c9c9;
}

.news-list-wrap .news-body-wrap .news-body:first-child {
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}

.news-list-wrap .news-body-wrap .news-body .img-area {
  width: 250px;
  height: 150px;
  border: 1px solid #c9c9c9;
}

.news-list-wrap .news-body-wrap .news-body .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-list-wrap .news-body-wrap .news-body .text-area {
  width: calc(100% - 250px - 27px);
  margin-left: 27px;
}

.news-list-wrap .news-body-wrap .news-body .text-area .cat {
  display: inline-block;
  width: auto;
  padding: 2px;
  min-width: 100px;
  background-color: #5cb4a6;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.ie .news-list-wrap .news-body-wrap .news-body .text-area .cat {
  padding-top: 4px;
  padding-bottom: 0;
}

.news-list-wrap .news-body-wrap .news-body .text-area .time {
  margin-left: 20px;
  font-size: 14px;
}

.news-list-wrap .news-body-wrap .news-body .text-area .news-ttl {
  margin-top: 25px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.news-list-wrap .news-body-wrap .news-body .text-area .news-excerpt {
  margin-top: 25px;
  letter-spacing: 0.1em;
  line-height: 1.875;
}

.pagenation {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.pagenation span.current:hover {
  cursor: pointer;
}

.pagenation .page-numbers {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  border: 2px solid #5cb4a6;
  border-radius: 50%;
  color: #5cb4a6;
  font-family: overpass;
  font-size: 20px;
  font-weight: bold;
  line-height: 39px;
  text-align: center;
  transition: 0.3s ease;
}
.ie .pagenation .page-numbers {
  line-height: 46px;
}

.pagenation .page-numbers.current {
  background-color: #5cb4a6;
  color: #ffffff;
}

.pagenation .page-numbers:last-child {
  margin-right: 0;
}

.pagenation .page-numbers.dots {
  border: none;
  font-family: overpass;
  font-size: 29.8px;
  letter-spacing: 0.1em;
  line-height: 31px;
}

.pagenation .page-numbers img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.pagenation .page-numbers.prev:before {
  position: absolute;
  content: "";
  background-image: url(../img/news/arrow-prev_off.svg);
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 46%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: none;
  transition: none;
}


.pagenation .page-numbers.next:before {
  position: absolute;
  content: "";
  background-image: url(../img/news/arrow-next_off.svg);
  width:20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: none;
  transition: none;
}


.pagenation .page-numbers:not(.dots):hover {
  background-color: #5cb4a6;
  color: #ffffff;
}

#secondary {
  width: calc(100% - 860px - 40px);
  margin-top: 50px;
  margin-left: 40px;
}

.widget-title {
  padding-bottom: 15px;
  border-bottom: 2px solid #5cb4a6;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.menu-sidemenu-container .menu-item a {
  display: block;
  position: relative;
  padding: 20px 0;
}

.menu-sidemenu-container .menu-item a::before {
  position: absolute;
  top: 0;
  right: 35px;
  bottom: 0;
  width: 7px;
  height: 11px;
  margin: auto;
  background-image: url(../img/news/cat-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.menu-sidemenu-container .menu-item + .menu-item {
  border-bottom: 1px solid #dddddd;
}

.menu-sidemenu-container .menu-item:first-child {
  border-bottom: 1px solid #dddddd;
}

/*------------------------------------------------------------------------------
  newsdetail
------------------------------------------------------------------------------*/
.entry-body > * + * {
  margin-top: 30px;
}

.entry-container > .inner-block {
  display: -webkit-box;
  display: flex;
  padding-bottom: 100px;
}

.entry {
  width: 860px;
  margin-top: 50px;
}

.entry-header .entry-meta {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.entry-header .entry-meta .cat {
  display: inline-block;
  padding: 2px;
  min-width: 100px;
  background-color: #5cb4a6;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.ie .entry-header .entry-meta .cat {
  padding-top: 4px;
  padding-bottom: 0;
}

.entry-header .entry-meta .entry-published {
  margin-left: 20px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.875;
}

.entry-header .entry-title {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #c9c9c9;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.entry-body {
  margin-top: 40px;
}

.entry-body img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.entry-body img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.entry-body img.aligncenter {
  display: block;
  margin: 0 auto
}

.entry-body h2 {
  position: relative;
  margin-top: 2.08333em;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 8px;
  border-left: 10px solid #5cb4a6;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.entry-body p {
  margin-top: 1.875em;
  letter-spacing: 0.1em;
  line-height: 1.875;
}

@media only screen and (min-width: 641px) {
  .entry-body p img{
    margin-right:1.875em;
    margin-top:0.937em;
    margin-bottom:0.937em;
  }
  .entry-body p img:last-child{
    margin-right:0;
  }
}

.entry-body h3 {
  position: relative;
  margin-top: 2.5em;
  padding-bottom: 13px;
  border-bottom: 1px solid #c9c9c9;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.entry-body h3:before {
  position: absolute;
  bottom: -1px;
  width: 217px;
  height: 1px;
  background-color: #5cb4a6;
  content: "";
}

.entry-body h4 {
  position: relative;
  margin-top: 2.77778em;
  padding: 10px 0;
  padding-left: 30px;
  background-color: #e5f5fd;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6666;
}

.entry-body h4:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background-color: #5cb4a6;
  content: "";
}

.entry-body h5 {
  margin-top: 2.77778em;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6666;
}

.entry-body ul {
  margin-top: 1.875em;
}

.entry-body li {
  position: relative;
  margin-top: 0.875em;
  padding-left: 1.875em;
}

.entry-body li:before {
  position: absolute;
  top: 0.5625em;
  bottom: 0;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #5cb4a6;
  content: "";
}

.entry-body a {
  display: inline-block;
  margin-top: 0;
  color: #5cb4a6;
  text-decoration: underline;
  -webkit-text-decoration-color: #b9dbd5;
          text-decoration-color: #b9dbd5;
}

.entry-body img{
  height: auto;
}

.entry-body a:hover {
  opacity: 0.7;
}

.entry-pager .pager-container {
  display: -webkit-box;
  display: flex;
}

.entry-pager {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3.125em;
  position: relative;
}

.entry-pager .pager-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.entry-pager .pager-container .arrow-btn {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #5cb4a6;
  border-radius: 50%;
}

.entry-pager .pager-container .arrow-btn img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  margin: auto;
}


.entry-pager .pager-container .arrow-btn.prev img {
  right: 2px;
}

.entry-pager .pager-container .arrow-btn.next img {
  left: 2px;
}

.entry-pager .anker-text .en {
  color: #5cb4a6;
  font-family: overpass;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.entry-pager .anker-text .en + p {
  color: #b5b5b5;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2.14;
}

.entry-pager .anker-text .ja-next {
  text-align: right;
}

.entry-pager .back-to-archive .anker-text {
  text-align: center;
}

.entry-pager .anker-text-prev {
  margin-left: 30px;
}

.entry-pager .anker-text-next {
  margin-right: 30px;
}

.entry-prev.pager-container {
  position: absolute;
  left: 0;
}
.entry-next.pager-container {
  position: absolute;
  right: 0;
}

/* js-hover */

/*------------------------------------------------------------------------------
  store
------------------------------------------------------------------------------*/
.store .mv-block {
  background-image: url(../img/amusement/store/kv.jpg);
}

.store .store-list-block {
  margin-top: 0;
}

.store .store-list-block .c-ttl04 {
  margin-top: 0;
}

.store .store-list-block > .inner-block {
  padding-top: 114px;
}

.store .store-list-block:last-of-type > .inner-block {
  padding-bottom: 160px;
}

.store .store-list-block .store-item-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
}

.store .store-list-block .store-item-list > li {
  margin-left: 10px;
  text-align: center;
}

.store .store-list-block .store-item-list > li p {
  margin-top: 3px;
  color: #717171;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
}

.store .store-list-block .store-item-list > li .available {
  color: #5cb4a6;
}

.store .store-list-block .store-item-list > li .ico-wrap {
  position: relative;
  width: 45px;
  height: 45px;
  border: 1px solid #717171;
}

.store .store-list-block .store-item-list > li .ico-wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.store .store-list-block .store-item-list > li .available {
  border: 1px solid #5cb4a6;
}

.store .store-list-block .store-item-list > li .available + p {
  color: #5cb4a6;
}

.price-schedule-wrap {
  margin-top: 18px;
}

.price-schedule-wrap a + a {
  margin-left: 10px;
  padding-right: 10px;
}

.store .holidays {
  margin-left: 86px;
}

.store .store-list-block .area-cont .area-body > ul .store-name {
  width: 193px;
}

.store .store-list-block .area-cont .area-body > ul > li:nth-child(2) {
  margin-left: 24px;
}

.store .store-list-block .area-cont .area-body > ul > li:nth-child(3) {
  margin-left: 24px;
}

/* SNSエリア */
.sns-area-wrap img {
	width: 30px;
	height: 30px;
}

.sns-area-wrap .sns {
	display: inline-block;
}

.sns-area-wrap {
	margin-top: 10px;
}

/*------------------------------------------------------------------------------
  Recuit
------------------------------------------------------------------------------*/
.title_bg-bl {
  position: relative;
  margin-bottom: 15px;
  padding: 8px 10px 8px 30px;
  background-color: #e5f5fd;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.title_bg-bl:before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background-color: #5cb4a6;
  background-size: 20px 2px;
  content: "";
}

.ttl-halfline {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c9c9c9;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.ttl-halfline::before {
  position: absolute;
  bottom: -1px;
  width: 220px;
  height: 1px;
  background-color: #5cb4a6;
  content: "";
}

.title-gr {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  color: #5cb4a6;
  font-size: 18px;
  font-weight: bold;
}

.title-gr::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 18px;
  margin: auto;
  background-color: #5cb4a6;
  background-size: 4px 18px;
  content: "";
}

.title-line {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
  color: #5cb4a6;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}

.title-line::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #5cb4a6;
  background-size: 1px 100%;
  content: "";
}

.recruit .mv-block {
  background-image: url(../img/recurit/kv.jpg);
}

.recruit .c-ttl04 {
  margin: 0 0 50px;
}

.recruit .read-area .box {
  display: block;
  max-width: 650px;
  margin: 0 auto 50px;
  padding: 20px 75px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.recruit .read-area .text {
  line-height: 2;
}

.recruit .tab-container {
  background-color: #fff;
}

.recruit .tab-container .wrap {
  display: -webkit-box;
  display: flex;
}

.recruit .tab-container .side-area {
  width: 340px;
}

.recruit .tab-container .side-area .photo {
  margin-bottom: 30px;
}

.recruit .tab-container .main-area {
  width: 730px;
  margin-left: 30px;
}

.recruit .tab-container .main-area .box + .box {
  margin-top: 40px;
}

.recruit .tab-container .main-area .text {
  text-align: justify;
}

.recruit .tab-container .main-area .works-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

.recruit .tab-container .main-area .works-list li {
  padding: 15px;
  border-radius: 20px;
  background-color: #ddf2ef;
  font-weight: bold;
}

.recruit .tab-container .main-area .works-list li span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
  text-align: center;
}

.recruit .tab-container .advice-box {
  position: relative;
  width: 730px;
  margin: 70px auto 0;
  padding: 50px 70px;
  border: 10px solid #5cb4a6;
}

.recruit .tab-container .advice-box::after {
  display: block;
  position: absolute;
  top: -35px;
  left: 70px;
  width: 190px;
  height: 70px;
  margin: auto;
  background-color: #fff;
  background-size: 190px 70px;
  color: #ddf2ef;
  font-family: pacifico;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  content: "advice";
}

.recruit .tab-container .advice-box p {
  text-align: justify;
}

.recruit .tab-container .advice-box p + p {
  margin-top: 1em;
}

.recruit .tab-anchor {
  display: -webkit-box;
  display: flex;
}

.recruit .tab-anchor li {
  position: relative;
  width: calc(99.9999%/4);
  padding: 10px;
  color: #5cb4a6;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/*.recruit .tab-anchor li:first-child {*/
/*  border-left: 1px solid #5cb4a6;*/
/*}*/

.recruit .tab-anchor li:last-child {
  border-right: 1px solid #5cb4a6;
}

.recruit .tab-anchor li:hover {
  background-color: #5cb4a6;
  color: #fff;
}

.recruit .tab-anchor li.is-active {
  background-color: #5cb4a6;
  color: #fff;
}

.recruit .tab-anchor li.is-active::before {
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border: solid;
  border-width: 8px 6px;
  border-top-color: #5cb4a6;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  content: '';
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.recruit .tab-anchor li span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
  text-align: center;
}

.recruit .tab-anchor.pc-wrap {
  border-right: 1px solid #5cb4a6;
  flex-wrap: wrap;
}

.recruit .tab-anchor.pc-wrap li:last-child {
  border-right: none;
}

.recruit .tab-target-wrap {
  border-top: 1px solid #5cb4a6;
}

.recruit .tab-container {
  padding: 50px;
  border: 1px solid #5cb4a6;
  border-top-width: 0;
}

.recruit .tab-container:not(:first-child) {
  display: none;
}

.recruit .tab-container .carrier-list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  background-color: #faf9f5;
}

.recruit .tab-container .carrier-list li + li {
  margin-top: 10px;
}

.recruit .tab-container .carrier-list li .num {
  display: inline-block;
  position: relative;
  padding: 10px;
  background-color: #5cb4a6;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.recruit .tab-container .carrier-list li:not(:last-child) .num::before {
  position: absolute;
  bottom: -8px;
  width: 0;
  height: 0;
  border: solid;
  border-width: 4px 4px;
  border-top-color: #5cb4a6;
  content: '';
}

.recruit .tab-container .carrier-list li .text {
  width: 100%;
  padding: 5px 5px 5px 15px;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width:641px) {
  .recruit .tab-anchor.wrap li::before {
    display: none;
  }

  .recruit .tab-anchor li:nth-child(-n+6) {
    border-top: 1px solid #5cb4a6;
  }

  .recruit .tab-anchor li:nth-child(6n + 1) {
    border-left: 1px solid #5cb4a6;
  }

  .recruit .tab-anchor.pc-wrap li {
    width: calc(99.9999%/6);
  }
}

.recruit .bnr-list {
  margin-top: 50px;
  display: -webkit-box;
  display: flex;
}

.recruit .bnr-list li {
  border: 1px solid #5cb4a6;
}

.recruit .bnr-list li a {
  display: block;
}

@media screen and (min-width:641px) {
  .recruit .bnr-list {
    flex-wrap: wrap;
  }

  .recruit .bnr-list li {
    width: calc((99.9999% - 50px) / 2);
  }

  .recruit .bnr-list li:nth-child(even) {
    margin-left: 50px;
  }

  .recruit .bnr-list li:nth-child(n + 3) {
    margin-top: 25px;
  }
}

.aco-area li + li {
  margin-top: 20px;
}

.aco-area .box-question {
  position: relative;
  background-color: #5cb4a6;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.aco-area .box-question span {
  display: inline-block;
  position: relative;
  padding: 20px 80px 20px 100px;
  text-align: justify;
}

.aco-area .box-question span:before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  color: #fff;
  font-family: overpass;
  font-size: 36px;
  font-weight: bold;
  line-height: 2;
  content: 'Q.';
}

.aco-area .box-question:before {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 25px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: '';
}

.aco-area .box-question:after {
  display: block;
  position: absolute;
  top: 0;
  right: 31px;
  bottom: 0;
  width: 2px;
  height: 25px;
  margin: auto;
  background-color: #fff;
  content: '';
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.aco-area .box-question.is-open:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.aco-area .box-answer {
  display: none;
  border: 1px solid #5cb4a6;
}

.aco-area .box-answer span {
  display: inline-block;
  position: relative;
  padding: 20px 20px 20px 100px;
  text-align: justify;
}

.aco-area .box-answer span:before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  color: #5cb4a6;
  font-family: overpass;
  font-size: 36px;
  font-weight: bold;
  line-height: 2;
  content: 'A.';
}

/*------------------------------------------------------------------------------
  Privacy Policy
------------------------------------------------------------------------------*/
.policy .mv-block {
  background-image: url(../img/policy/kv.jpg);
}

.privacy-policy .inner-block {
  padding-bottom: 200px;
}

.privacy-policy .c-ttl04 {
  margin-top: 60px;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.privacy-policy .policy-body {
  margin-top: 40px;
}

.privacy-policy .policy-body .policy-body-ttl {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.625;
}

.privacy-policy .policy-body .policy-body-textarea {
  margin-top: 20px;
  letter-spacing: 0.1em;
  line-height: 1.625;
}

.privacy-policy .policy-body .policy-body-textarea .policy-body-list-wrap {
  margin-top: 30px;
}

/*------------------------------------------------------------------------------
  Property
------------------------------------------------------------------------------*/
.property .mv-block {
  background-image: url(../img/property/kv.jpg);
}

.property-container {
  overflow: hidden;
}

.property-container .inner-block {
  padding-bottom: 200px;
}

.property-info-list {
  width: 100%;
  margin-top: 40px;
}

.property-info-list .property-info-item {
  border-bottom: 1px solid #c9c9c9;
  letter-spacing: 0.1em;
  line-height: 1.625;
}

.property-info-list .property-info-item .lead {
  width: 276px;
  padding-top: 25px;
  padding-left: 20px;
  font-weight: bold;
  -moz-text-align-last: left;
       text-align-last: left;
  vertical-align: top;
}

.property-info-list .property-info-item .info {
  padding-top: 25px;
  padding-bottom: 25px;
}

.property-info-list .property-info-item .mailto {
  position: relative;
  padding-right: 20px;
  color: #5cb4a6;
  font-weight: bold;
  text-decoration: underline;
  -webkit-text-decoration-color: #b7ded8;
          text-decoration-color: #b7ded8;
}

.property-info-list .property-info-item .mailto:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  background-image: url(../img/curves/open-new-tab.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.property-info-list .property-info-item .mailto:hover {
  cursor: pointer;
  opacity: 0.7;
}

.to-contact-btn {
  margin-top: 50px;
  text-align: center;
}

.to-contact-btn a {
  width: 272px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.to-contact-btn a::before {
  content: none;
}

.to-contact-btn .text {
  position: relative;
  padding-right: 20px;
}

.to-contact-btn .text::before {
  position: absolute;
  content: "";
  background: url(../img/common/mail-icon.svg) no-repeat center center / contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.to-contact-btn .icon {
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 641px) {
  .to-contact-btn a:hover .text::before {
    background: url(../img/common/mail-icon-gre.svg) no-repeat center center / contain;
  }
}

.property-gallery-slider {
  margin: 60px -20px 0;
  width: calc(100% + 40px);
}

@media screen and (min-width: 1201px) {
  .property-gallery-slider {
    margin: 60px calc(50% - 50vw) 0;
    width: 100vw;
  }
}


/*------------------------------------------------------------------------------
  company
------------------------------------------------------------------------------*/
.company .c-ttl04 {
  margin-top: 0;
}

.company .mv-block {
  background-image: url(../img/company/kv.jpg);
}

.company-philosophy > .inner-block {
  padding: 100px 0 100px;
}

/* section */
.company-outline {
  /* print-btn */
}

.company-outline > .inner-block {
  padding: 100px 0;
}

.company-outline .img-area {
  margin-top: 55px;
  text-align: center;
}

.company-outline .img-area img {
  display: block;
  width: auto;
  margin: 0 auto;
}

.company-outline .print-btn {
  margin-top: 50px;
  text-align: center;
}

.company-outline .print-btn a {
  width: 270px;
}

.company-outline .print-btn a:before {
  width: 22px;
  height: 26px;
  background-image: url(../img/amusement/store/ico-pdf.svg);
}

.c-table {
  width: 100%;
  margin-top: 50px;
  background-color: #fff;
}

.c-table tr {
  border-bottom: 1px solid #c9c9c9;
}

.c-table th {
  width: 256px;
  padding: 25px 0 25px 20px;
  letter-spacing: 0.1em;
  line-height: 1.625;
  -moz-text-align-last: left;
       text-align-last: left;
  vertical-align: top;
}

.c-table td {
  padding: 25px 0;
}

/* section */
.company-philosophy .company-philosophy-list {
  margin-top: 70px;
}

.company-philosophy .company-philosophy-list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  overflow: hidden;
  background-color: #f9f9f9;
}

.company-philosophy .company-philosophy-list li .skew {
  display: inline-block;
  width: 70px;
  height: 73px;
  margin-left: -12px;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  color: #ffffff;
  font-family: overpass;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  line-height: 73px;
  text-align: center;
}

.company-philosophy .company-philosophy-list li .skew > span {
  display: inline-block;
  padding-left: 1em;
  -webkit-transform: skewX(20deg);
          transform: skewX(20deg);
}

.company-philosophy .company-philosophy-list li .text {
  width: calc(100% - 48px - 70px);
  margin-left: 48px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-break: strict !important;
}

.company-philosophy .company-philosophy-list li .text .green {
  color: #5cb4a6;
}

.company-philosophy .company-philosophy-list li + li {
  margin-top: 20px;
}

.company-access > .inner-block {
  padding: 100px 0;
}

.company-access .google-map-wrap {
  margin-top: 70px;
}

.company-access .company-access-cont {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

.company-address-text > * + * {
  margin-top: 0.4375em;
  line-height: 1.875;
}

.company-address-text .lead {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.625;
}

.company-address-text .access-list-wrap li {
  position: relative;
  padding-left: 1.875em;
}

.company-address-text .access-list-wrap li:before {
  position: absolute;
  top: 0.5625em;
  bottom: 0;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #5cb4a6;
  content: "";
}



/* google-map */
.google-map-wrap {
  position: relative;
  width: 100%;
  padding-top: 30%;
  /* = height ÷ width × 100 */
}

.google-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*------------------------------------------------------------------------------
Item
------------------------------------------------------------------------------*/
.item .mv-block {
  background-image: url(../img/item/kv.jpg);
  }
  .item .c-block-02 .c-ttl04 {
  margin: 0 0 50px;
  }
  .item .c-block-02 .btn-area {
  margin: 50px 0 0;
  text-align: center;
  }
  /*------------------------------------------------------------------------------
  Achievement
  ------------------------------------------------------------------------------*/
  .achievement .mv-block {
  background-image: url(../img/achievement/kv.jpg);
  }
  .achievement .c-block-02 .c-ttl04 {
  margin: 0 0 50px;
  }
  .achievement .c-block-02 .btn-area {
  margin: 50px 0 0;
  text-align: center;
  }
  /*------------------------------------------------------------------------------
  404ページ
  ------------------------------------------------------------------------------*/
  .no-found {
    text-align: center;
  }
  .no-found .title {
    font-size: 26px;
    font-weight: bold;
  }
  .no-found .sub-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
  }
  .no-found .sub-txt {
    margin-top: 30px;
  }

/*------------------------------------------------------------------------------
  clearfix
------------------------------------------------------------------------------*/
.clearfix::after {
  display: block;
  visibility: hidden;
  height: 0px;
  clear: both;
  font-size: 0;
  content: "";
}
@media only screen and (min-width: 641px) {
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a,
  a::before,
  a::after,
  button {
    -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header-logo:hover img {
    opacity: 0.7;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .header-nav-list {
    display: -webkit-box;
    display: flex;
    height: 80px;
  }
  .header-nav-list > li.active a {
    background: #5cb4a6;
  }
  .header-nav-list > li.active .en {
    color: #fff;
  }
  .header-nav-list > li.active .jp {
    color: #fff;
  }
  .header-nav-list > li > a:hover {
    background: #5cb4a6;
  }
  .header-nav-list > li > a:hover .en {
    color: #fff;
  }
  .header-nav-list > li > a:hover .jp {
    color: #fff;
  }
  .header-nav-list > li.header-contact a:hover {
    background: #5cb4a6;
    opacity: 0.8;
  }
  .header-nav-list > li.header-contact a:hover .en {
    opacity: 0.8;
  }
  .header-nav-list > li.header-contact a:hover .jp {
    opacity: 0.8;
  }
  .header-nav-list > li.header-recruit a:hover {
    background: #e5b36d;
    opacity: 0.8;
  }
  .header-nav-list > li.header-recruit a:hover .en {
    opacity: 0.8;
  }
  .header-nav-list > li.header-recruit a:hover .jp {
    opacity: 0.8;
  }
  #pagetop a:hover {
    background-position: center right 42%;
  }
  .footer-cont {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .footer-cont .footer-nav-block .copyright {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .footer-logo {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
  }
  .footer-logo .ttl {
    font-weight: bold;
    font-size: 23px;
  }
  .footer-logo .logo:hover img {
    opacity: 0.7;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .footer-nav-list {
    display: -webkit-box;
    display: flex;
  }
  .footer-nav-list > li + li {
    margin-left: 40px;
  }
  .footer-nav-list > li a {
    font-weight: bold;
  }
  .footer-nav-list > li a:hover {
    opacity: 0.8;
  }
  .c-btn01:hover {
    border-color: #5cb4a6;
    background: #fff;
    color: #5cb4a6;
  }
  .c-btn01.purple:hover {
    border-color: #a55aaa;
    background: #fff;
    color: #a55aaa;
  }
  .c-btn01:hover:before {
    background-image: url("../img/common/arrow-right-gre.svg");
  }
  .c-btn01.purple:hover:before {
    background-image: url("../img/common/arrow-right-gre.svg");
  }
  .c-btn01.orange:hover {
    border-color: #e5b36d;
    background: #fff;
    color: #e5b36d;
  }
  .c-btn01.orange:hover:before {
    background-image: url("../img/common/arrow-right-orange.svg");
  }
  .c-btn01.black:hover {
    border-color: #333;
    background: #fff;
    color: #333;
  }
  .c-btn01.black:hover:before {
    background-image: url("../img/common/arrow-right-blk.svg");
  }
  .c-btn01.green:hover {
    border-color: #5cb4a6;
    background: #fff;
    color: #5cb4a6;
  }
  .c-btn01.green:hover:before {
    background-image: url("../img/common/arrow-right-gre.svg");
  }
  .c-btn01.pdf:hover:before {
    background-image: url("../img/amusement/store/ico-pdf-green.svg");
  }
  .c-btn01.movie-btn:hover::before {
    background-image: url(../img/common/m_start_gr.svg);
  }
  .c-btn01.movie-btn.active:hover::before {
    background-image: url(../img/common/m_stop_gr.svg);
  }
  .news-list01 > li:hover {
    background: #f2fdfb;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .breadcrumb ul a:hover {
    color: #5cb4a6;
  }
  .anker-block li a:hover {
    background: rgba(92, 179, 180, 0.2);
  }
  .anker-block li a .arrow::before {
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    width: 8px;
    height: 14px;
    margin: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    background: url(../img/common/arrow-right-blk.svg) no-repeat;
    background-size: contain;
    content: "";
  }
  .anker-block li + li::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100%;
    margin: auto;
    background: #000;
    content: "";
  }
  .anker-block.wrap li::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100%;
    margin: auto;
    background: #000;
    content: "";
  }
  .anker-block.wrap li:nth-of-type(4n):after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 100%;
    margin: auto;
    background: #000;
    content: "";
  }
  .anker-block.wrap li:last-of-type:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 100%;
    margin: auto;
    background: #000;
    content: "";
  }
  .anker-block.wrap li {
    width: 25%;
    margin-top: 15px;
  }

  .anker-block.wrap li:nth-of-type(-n+4) {
    margin-top: 0;
  }
  .anker-block.wrap ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .c-block-01 .cont {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
  }
  .c-block-01 .cont .txt-area {
    width: 40vw;
    max-width: 500px;
  }
  .c-block-01 .cont .img-area {
    min-width: 600px;
  }
  .c-block-01 .cont .img-area + .txt-area {
    margin-left: 6vw;
  }
  .c-block-01:nth-child(even) .cont {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
  .c-block-01:nth-child(even) .cont .img-area + .txt-area {
    margin: 0 6vw 0 0;
  }
  .c-block-02 .cont .txt-area {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
  }
  .c-block-02 .cont .txt-area .txt {
    margin-left: 50px;
  }
  .c-block-02 .cont .img-area {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .c-block-02 .cont .img-area .small {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column;
    -webkit-box-pack: justify;
            justify-content: space-between;
    width: 580px;
  }
  .store-btn:hover:before {
    opacity: 0.3;
  }
  .lightbox {
    margin-top: 100px;
  }
  .top-news-cont {
    display: -webkit-box;
    display: flex;
  }
  .top-news-cont + .top-news-cont {
    margin-top: 50px;
  }
  .top-news-cont .news-ttl-block {
    width: 250px;
  }
  .top-news-cont .news-ttl-block .c-ttl01 {
    text-align: left;
  }
  .top-news-cont .news-ttl-block .c-ttl01 .jp {
    text-align: left;
    font-size: 45px;
  }
  .top-news-cont .news-ttl-block .c-ttl01 .en {
    font-size: 60px;
  }
  .top-news-cont .news-list-block {
    width: calc(100% - 250px - 30px);
    margin-left: 30px;
  }
  .top-news-cont .news-list-block .top-news-btn {
    margin-top: 30px;
    text-align: right;
  }
  .top-news-cont .news-list-block .top-news-btn > .c-btn01 + .c-btn01 {
    margin-left: 20px;
  }
  .top-news-cont .c-ttl01 .en {
    text-align: left;
  }
  .top-service-list > li {
    width: 550px;
    margin-left: 20px;
  }
  .top-service-list > li:nth-child(2n+1) {
    margin-left: 0;
  }
  .top-service-list > li:nth-child(n+3) {
    margin-top: 110px;
  }
  .top-service-list .ttl-box {
    width: 350px;
  }
  .top-banner-box {
    display: -webkit-box;
    display: flex;
  }
  .top-banner-box a {
    width: 33.333%;
    height: 26.04167vw;
    overflow: hidden;
  }
  .top-banner-box a:hover {
    width: 40%;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.05), 0 0 10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .top-banner-box a:hover:before {
    opacity: 0.3;
  }
  .gallery .c-block-02 .cont {
    padding: 100px 0;
  }
  .gallery-area li:nth-child(n+6) {
    margin-top: 20px;
  }
  .gallery-area .img {
    transition: .3s;
    position: relative;
  }
  .gallery-area .img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    }
  .news-list-wrap .news-body-wrap .news-body:hover {
    background: #f2fdfb;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .menu-sidemenu-container .menu-item a:hover {
    background: #f2fdfb;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .js-hover {
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .js-hover:hover .arrow-btn {
    background-color: #5cb4a6;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .entry-pager .pager-container:hover {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .entry-pager .back-to-archive:hover {
    opacity: 0.7;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .kv-slider .slick-dots {
    margin-top: 45px;
  }
  .kv-block:before {
    bottom: 40px;
  }
  .footer-nav-block .child-list {
    display: block;
    margin-top: 10px;
  }
}

.recruit .tab-container .main-area .works-list li li {
  min-width: 160px;
  min-height: 75px;
  }
  .recruit .tab-container .main-area .works-list li:not(:nth-child(4n+1)) {
  margin-left: 20px;
  }
  .recruit .tab-container .main-area .works-list li:nth-child(n+5) {
  margin-top: 20px;
  }

@media not print {
  .anm {
    opacity: 0;
  }
  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
            animation: fadeIn 1.5s forwards;
  }
  .anm-up {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
            animation: fadeInUp 1.5s forwards;
  }
  .anm-left {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    opacity: 0;
  }
  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
            animation: fadeInLeft 1.5s forwards;
  }
  .anm-right {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
  }
  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
            animation: fadeInRight 1.5s forwards;
  }
  .pagenation .page-numbers.prev:hover:before {
    background-image: url(../img/news/arrow-prev_on.svg);
  }
  .pagenation .page-numbers.next:hover:before {
    background-image: url(../img/news/arrow-next_on.svg);
  }
}
@media only screen and (max-width: 640px) {
  .c-block-02 .cont.comig-soon .txt-area .ready-now {
    font-size: 20px;
  }
}

/* 追加 */
/* .c-btn01.mail:before {
  background-image: url(../img/common/mail-icon.svg);
  width: 26px;
  height: 26px;
  right: 8px;
} */

@media screen and (min-width:641px) {
  .c-btn01.mail:hover:before {
    width: 10px;
    height: 16px;
  }
}

.gallery .c-block-02 .btn-area .more {
  width: 272px;
}

.gallery .c-block-02 .btn-area .to-contact-btn {
  margin-top: 30px;
}

@media screen and (min-width:641px) {
  #header {
    position: absolute;
    width: 100%;
  }
}

#header {
  background-color: #fff;
}

main {
  padding-top: 170px;
}
main.home {
  padding-top: 130px;
}

#header.js-fixed {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}

#header.js-fixed.is-show {
  transform: translateY(0);
}

@media screen and (min-width:641px) {
  .slick-slide {
    max-height: 700px;
  }

  .kv-slider img{
    height: 100%;
  }
}

/* slick-dots */
.slick-dots {
  display: flex;
  justify-content: center;
}

.slick-dots li {
  margin: 0 5px;
  cursor: pointer;
}

.slick-dots > li:first-child:last-child {
  display: none;
}

.c-block-area .slick-dots li button {
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  background-color: #cccccc;
}

.slick-dots li.slick-active button {
  background-color: #55bdb1;
}

.footer-logo .ttl {
  color: #fff;
}

.mt0 {
  margin-top: 0 !important;
}



/* property 202503 */
.property .intro-section .inner-block {
  padding-top: 80px;
  padding-bottom: 50px;
}
.property .intro-section .intro-ttl {
  color: #000;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 45px;
  line-height: 1.611111;
}
.property .intro-section .txt {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  margin-top: -105px;
}
.property .intro-section .img {
  max-width: 880px;
  margin: auto;
}

.property .c-link-btn {
  max-width: 400px;
  margin: 74px auto 0;
}
.property .c-link-btn.mt-50 {
  margin-top: 50px;
}
.property .c-link-btn a {
  background: #ECFFFB url("../img/property/pattern.png") no-repeat center center / cover;
  border-radius: 10px;
  border: 2px solid #ccc;
  display: block;
  overflow: hidden;
  padding: 9px 5px 5px;
}
.property .c-link-btn .sub {
  color: #5CB4A6;
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  transition: 0.3s ease-in-out;
}
.property .c-link-btn .ico {
  display: block;
  margin: auto;
  position: relative;
  height: 30px;
  width: 48px;
}
.property .c-link-btn .ico::before {
  background: #11B984;
  mask-image: url("../img/property/ico-mail.svg");
  mask-size: cover; 
  display: block;
  content: "";
  height: 30px;
  width: 48px;
  transition: 0.3s ease-in-out;
}
.property .c-link-btn .inn {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 13px;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width:641px) {
  .property .c-link-btn a:hover {
    background-color: #5cb4a6;
  }
  .property .c-link-btn a:hover .ico::before {
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  .property .c-link-btn a:hover .sub {
    color: #fff;
    transition: 0.3s ease-in-out;
  }
  .property .c-link-btn a:hover .inn {
    color: #fff;
    transition: 0.3s ease-in-out;
  }
}

.property .item-section .inner-block {
  padding-top: 50px;
  padding-bottom: 100px;
}
.property .property-btn-list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 13px;
  margin-top: 30px;
}
.property .property-btn-list .property-btn {
  cursor: pointer;
}
.property .property-btn-list .img {
  position: relative;
  overflow: hidden;
  padding-top: 68.97%;
  object-fit: cover;
  object-position: center;
}
.property .property-btn-list .img img {
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.property .property-btn-list .img::before {
  background: #5CB4A6;
  content: "";
  height: 50px;
  width: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.8;
  z-index: 1;
}
.property .property-btn-list .img::after {
  background: url("../img/property/ico-search.svg") no-repeat center center / contain;
  content: "";
  height: 35px;
  width: 35px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  opacity: 0.8;
  z-index: 1;
}
.property .property-btn-list .ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 20px;
}
.property .property-btn-list + .c-ttl04 {
  margin-top: 50px;
}
@media screen and (min-width:641px) {
  .property .property-btn-list .property-btn:hover img{
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
  }
}

.property .info-section {
  background: #F7FBFA;
}
.property .info-section .inner-block {
  padding-bottom: 100px;
}
.property .info-section .property-gallery-slider {
  margin-top: 0;
}
.property .info-section .c-table tr:nth-child(1) {
  border-top: 1px solid #c9c9c9;
}
.property .info-section .c-table th {
  width: 220px;
}


.property .faq-section .inner-block {
  padding-top: 100px;
  padding-bottom: 100px;
}
.property .faq-section .c-ttl04 {
  margin-top: 0;
}
.property .faq-section .aco-area {
  margin-top: 60px;
}

.property .contact-section {
  background-color: #F7FBFA;
}
.property .contact-section .inner-block {
  padding-top: 50px;
  padding-bottom: 50px;
}
.property .contact-section .l-grid {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 90px;
}
.property .contact-section .ttl {
  font-size: 36px;
  font-weight: bold;
}
.property .contact-section .c-link-btn {
  margin: 0;
}

.property .modal-wrapper {
  max-width: 1200px;
  position: relative;
  width: 100%;
}
.property .modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  z-index: 1003;
  transition: .3s;
  padding: 0 100px;
}
.property .modal-overlay.active{
  visibility: visible;
  opacity: 1;
  transition: .3s;
}
.property .modal-bg {
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.property .modal-wrap {
  height: 0;
  opacity: 0;
  pointer-events: none;
  max-width: 1200px;
  margin: auto;
  overflow: scroll;
  max-height: 700px;
  transition: 0.3s ease-in-out;
}
.property .modal-wrap.active{
  height: auto;
  opacity: 1;
  pointer-events: visible;
  transition: 0.3s ease-in-out;
}
.property .modal-wrap .modal-inn {
  background: #fff;
  display: grid;
  grid-template-columns: 29.167vw 1fr;
  gap: 40px;
  padding: 50px;
  width: 100%;
}
.property .modal-wrap .main-img img {
  width: 100%;
}
.property .modal-wrap .sub-img {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 13px;
  margin-top: 20px;
}
.property .modal-wrap .sub-img li {
  cursor: pointer;
  padding-top: 63.85%;
  overflow: hidden;
  position: relative;
}
.property .modal-wrap .sub-img li img {
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.property .modal-wrap .shop-name {
  background: #24C1A8;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: fit-content;
  padding: 8px 20px;
  margin-bottom: 30px;
}
.property .modal-wrap .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.property .modal-wrap .area-list {
  border-top: 1px solid #d9d9d9;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 17px 24px;
  padding-top: 14px;
  margin-top: 30px;
}
.property .modal-wrap .area-list .ico img {
  width: 100%;
}
.property .modal-wrap .area-list .inn {
  display: block;
  color: #5CB4A6;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width:641px) {
  .property .modal-wrap .sub-img li:hover {
    transition: 0.3s ease-in-out;
  }
  .property .modal-wrap .sub-img li:hover img {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width:1170px) {
  .property .modal-wrap .modal-inn {
    grid-template-columns: 1fr;
  }
  .property .modal-wrap .img-area {
    display: grid;
    grid-template-columns: 80% 1fr;
    gap: 15px;
  }
  .property .modal-wrap .sub-img {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}


.property #close-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  top: -50px;
  right: 0px;
  z-index: 1;
}
.property #close-btn::before, .property #close-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 6px;
  background-color: #fff;
  transform: rotate(45deg);
}
.property #close-btn::after {
  transform: rotate(-45deg);
}
@media screen and (min-width:641px) {
  .property #close-btn:hover {
    opacity: .7;
  }
}

.property #prev, .property #next {
  border-radius: 100px;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #5CB4A6;
  transition: .3s;
}
.property #prev {
  left: -80px;
}
.property #next {
  right: -80px;
}
.property #prev::after, .property #next::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  right: 0;
  margin: auto;
}
.property #next::after {
  transform: rotate(-135deg);
  right: 10px;
  left: 0;
}
@media screen and (min-width:641px) {
  .property #prev:hover, .property #next:hover {
    opacity: .7;
  }
}


.property .modal-opened {
  overflow-y: hidden; /*背景を固定*/
}
.property .num-of-thumbnails{
  color: #fff;
  text-align: center;
}


/* header 202503 */
.c-header {
  border-bottom: 1px solid #C9C9C9;
  z-index: 60;
}
.c-header .inner-block {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 30px 50px 0;
}
.c-header .logo {
  max-width: 206px;
  height: fit-content;
}
.c-header .logo a {
  display: block;
}
.c-header .logo img {
  margin-bottom: 25px;
  width: 100%;
}
.c-header .link-wrap {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3,auto);
  gap: 40px;
  width: fit-content;
  margin: 0 45px 13px auto;
}
.c-header .c-menu {
  display: grid;
  grid-template-columns: repeat(5,auto);
  gap: 0 30px;
  width: fit-content;
}
.c-header .c-menu .menu {
  width: fit-content;
}

.c-header .c-header-btn {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  position: relative;
  width: fit-content;
  padding-right: 20px;
}
.c-header .c-header-btn.bg {
  background: #5CB4A6;
  border-radius: 100px;
  color: #fff;
  padding: 5px 38px 5px 20px;
}
.c-header .c-header-btn::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #5CB4A6;
  border-right: 3px solid #5CB4A6;
  transform: rotate(45deg);
  position: absolute;
  top: -3px;
  right: 0;
  bottom: 0;
  margin: auto;
}
.c-header .c-header-btn.bg::before {
  border-color: #fff;
  right: 20px;
}

.c-header .menu-ttl {
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 32px 50px 22px;
}

@media screen and (min-width:641px) {
  .c-header .menu-ttl:hover {
    background: #5cb4a6;
    color: #fff;
  }
  .c-header .c-header-btn:not(.bg):hover {
    color: #5CB4A6;
  }
}
@media screen and (max-width:1420px) {
  .c-header .menu-ttl {
    padding: 32px 20px 22px;
  }
}

.c-header .mega-menu {
  align-items: center;
  background: rgba(92, 180, 166, 0.9);
  border-radius: 0 0 20px 20px;
  border-top: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  box-shadow: 0 5px 5px rgba(80, 80, 80, .2);
  opacity: 0;
  text-align: left;
  padding: 60px 80px;
  pointer-events: none;
  position: absolute;
  z-index: 99;
  width: 100%;
  max-width: calc(100% - 100px);
  min-width: 1200px;
  top: 169px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}
.c-header .aco-menu-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  width: fit-content;
}
.c-header .aco-menu-wrap .img {
  overflow: hidden;
  border-radius: 10px;
}
.c-header .aco-menu-wrap .txt {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
  margin-top: 15px;
}
.c-header .aco-menu-wrap .txt::before {
  background: #fff;
  border-radius: 100px;
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-header .aco-menu-wrap .txt::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #5CB4A6;
  border-right: 2px solid #5CB4A6;
  transform: rotate(45deg);
  position: absolute;
  top: -5px;
  left: 6px;
  bottom: 0;
  margin: auto;
}
.c-header .aco-menu .img {
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.c-header .aco-menu .img img {
  transition: 0.3s ease-in-out;
  width: 100%;
}
@media screen and (min-width:641px) {
  .c-header .aco-menu:hover .img img {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
  }
}


/* consumer 202503 */
.consumer .consumer-mv-section {
  position: relative;
  padding-bottom: 30px;
}
.consumer .consumer-mv-section::before {
  background: rgba(85,189,177, 0.25);
  content: "";
  height: 350px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.consumer .logo-slider {
  margin-top: 2px;
}
.consumer .logo-slider .logo {
  margin: 0 15px;
}

.consumer .mv-slider {
  margin-top: 23px;
}
.consumer .mv-slider .mv-img {
  margin: 0 17px;
}
.consumer .mv-slider .slick-dots {
  margin-top: 15px;
}
.consumer .mv-slider .slick-dots .slick-active button {
  background: #5CB4A6;
}
.consumer .mv-slider .slick-dots button {
  font-size: 0;
  background: #fff;
  height: 5px;
  width: 50px;
}

.consumer .consumer-contents-section .inner-block {
  padding-top: 100px;
  padding-bottom: 100px;
}
.consumer .consumer-contents-section .l-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 80px;
  margin-bottom: 100px;
}

.consumer .consumer-contents-section .news-block, .consumer .consumer-contents-section .map-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
.consumer .consumer-contents-section .news-list a {
  border-top: 1px solid #C9C9C9;
  display: block;
  padding: 21px 0 18px;
}
.consumer .consumer-contents-section .news-list a:last-child {
  border-bottom: 1px solid #C9C9C9;
}
.consumer .consumer-contents-section .info-wrap {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-bottom: 8px;
}
.consumer .consumer-contents-section .day {
  font-family: 'overpass';
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.consumer .consumer-contents-section .tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.consumer .consumer-contents-section .tag-wrap .tag {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  padding: 8px 10px;
}
.consumer .consumer-contents-section .tag-wrap .tag.time {
  background: #B0E7DE;
  color: #333;
}
.consumer .consumer-contents-section .tag-wrap .tag.news {
  background: #666;
  color: #fff;
}
.consumer .consumer-contents-section .inn {
  line-height: 1.4;
}

.consumer .consumer-contents-section .c-btn01 {
  display: block;
  margin: auto;
  border-radius: 100px;
  padding: 19px 14px;
}
.consumer .consumer-contents-section .c-btn01.max-260 {
  width: 260px;
}

.consumer .consumer-contents-section .img-txt-block .wrap {
  display: flex;
  gap: 80px;
}
.consumer .consumer-contents-section .img-txt-block .wrap + .wrap {
  margin-top: 100px;
}
.consumer .consumer-contents-section .img-txt-block .wrap:nth-child(odd) {
  margin-left: auto;
}
.consumer .consumer-contents-section .img-txt-block .wrap:nth-child(even) {
  margin-right: auto;
  flex-direction: row-reverse;
}
.consumer .consumer-contents-section .img-txt-block .wrap .img {
  max-width: 920px;
}
.consumer .consumer-contents-section .img-txt-block .wrap .img img {
  object-fit: cover;
  aspect-ratio: 48/25;
}
.consumer .consumer-contents-section .img-txt-block .wrap .txt-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  gap: 30px;
  min-width: 560px;
  max-width: 560px;
  width: 100%;
}
.consumer .consumer-contents-section .img-txt-block .wrap .txt {
  text-align: center;
  font-size: 16px;
}

.consumer .consumer-contents-section .img-link-btn {
  margin: 100px auto;
  max-width: 1200px;
}
.consumer .consumer-contents-section .img-link-btn a {
  border: 1px solid #C9C9C9;
  background: #FFFAEC;
  display: block;
  padding: 10px 15px;
  text-align: center;
}
.consumer .consumer-contents-section .img-link-btn img {
  max-height: 80px;
}
@media screen and (min-width:641px) {
  .consumer .consumer-contents-section .img-link-btn a:hover {
    background: #5CB4A6;
  }
}

.consumer .consumer-contents-section .sns-list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 50px;
  width: fit-content;
  margin: auto;
  padding: 0 0 50px;
}
@media screen and (min-width:641px) {
  .consumer .consumer-contents-section .sns-list a:hover {
    opacity: 0.5;
  }
}


/* footer 202503 */
.c-footer {
  padding-bottom: 58px;
}
.c-footer .logo {
  margin-top: 10px;
}
.c-footer .l-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 127px;
}
.c-footer .menu-wrap {
  display: flex;
  flex-wrap: wrap;
}
.c-footer a {
  display: block;
  color: #fff;
  font-weight: bold;
}
.c-footer .link-ttl {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 34px;
}
.c-footer .sub-link li + li {
  margin-top: 6px;
}
.c-footer .sub-link a {
  position: relative;
  padding-left: 15px;
}
.c-footer .sub-link a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  left: 0;
}
.c-footer .menu {
  min-width: 160px;
}
/* iPad（縦向き・横向き両方） */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .c-footer .menu {
    min-width: 100px;
  }
}
.c-footer .menu + .menu {
  margin-left: 60px;
}
.c-footer .menu a + a {
  margin-top: 32px;
}
.c-footer .copyright {
  color: #B0E7DE;
  font-size: 12px;
  font-weight: bold;
  margin-top: 50px;
}


/*# sourceMappingURL=style.css.map */
