@charset "UTF-8";
/*
Theme Name: Alice-in-chateau
*/
/*========= header ===============*/
#header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  background-color: rgba(23, 23, 23, 0.9);
  z-index: 999;
}
#header .hd_flex {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#header .hd_flex .hd_logo img {
  max-width: 250px;
}
#header .hd_flex .hd_nav {
  max-width: 1000px;
}
#header .hd_flex .hd_nav ul {
  display: flex;
  gap: 50px;
}
#header .hd_flex .hd_nav ul li {
  font-family: "Playfair Display", serif;
  text-align: center;
  line-height: 1.5;
}
#header .hd_flex .hd_nav ul li span {
  font-family: "Kaisei Decol", serif;
  font-size: 1.4rem;
}

#g-nav {
  display: none;
}

.sp_hd_nav, .openbtn {
  display: none;
}

@media (max-width: 1000px) {
  #header .hd_flex {
    max-width: 100%;
    padding: 20px 5%;
    box-sizing: border-box;
  }
  #header .hd_flex .hd_logo img {
    max-width: 180px;
  }
  #header .hd_flex .hd_nav {
    max-width: 1000px;
  }
  #header .hd_flex .hd_nav ul {
    display: flex;
    gap: 30px;
  }
}
@media (max-width: 820px) {
  #header {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    max-width: 100%;
    position: fixed;
  }
  #header .hd_flex {
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
  }
  #header .hd_flex .hd_logo img {
    width: 200px;
  }
  #header .hd_flex .hd_nav {
    display: none;
  }
  .sp_hd_nav, .openbtn {
    display: block;
  }
  /* ハンバーガーメニュー */
  #g-nav {
    display: block;
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    right: -20px;
    width: 70%;
    height: 100vh;
    background-color: #171717;
    transition: all 0.3s;
    pointer-events: none;
    box-sizing: border-box;
  }
  #g-nav.panelactive {
    opacity: 0.9;
    z-index: 999;
    pointer-events: auto;
  }
  #g-nav ul {
    display: none;
    z-index: 999;
    padding: 0;
    margin-bottom: 30px;
  }
  #g-nav.panelactive ul {
    display: block;
  }
  #g-nav li {
    text-align: center;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 100%;
    white-space: nowrap;
  }
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 12px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn.active span:nth-of-type(1) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 18px;
    left: 5px;
    transform: translateY(6px) rotate(-35deg);
    width: 70%;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 5px;
    transform: translateY(-6px) rotate(35deg);
    width: 70%;
  }
  .openbtn .line {
    display: block;
    height: 1.5px;
    border-radius: 2px;
    background-color: #fff;
    width: 80%;
    position: absolute;
  }
  .openbtn .line:nth-of-type(1) {
    top: 0;
  }
  .openbtn .line:nth-of-type(2) {
    top: 25px;
    left: 0;
  }
  .openbtn .line:nth-of-type(3) {
    top: 33px;
    left: 0;
  }
  .menu-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    background: none !important;
    font-family: "Kaisei Decol", serif;
  }
  #g-nav .sp_hd_nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 50px;
  }
  #g-nav .sp_hd_nav ul {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  #g-nav .sp_hd_nav ul li {
    font-family: "Playfair Display", serif;
    line-height: 1.5;
    text-align: left;
  }
  #g-nav .sp_hd_nav ul li span {
    font-family: "Kaisei Decol", serif;
    font-size: 1.3rem;
  }
  #g-nav .sp_hd_nav .header_sns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  #g-nav .sp_hd_nav .header_sns figure img {
    width: 40px;
  }
}
/*========== main ==========*/
main {
  position: relative;
}

.main_contents {
  background: url(img/cmn/bg_interior01.png) no-repeat;
  background-position: center 900px;
  position: relative;
  max-width: 100%;
  width: 100%;
  background-size: 100%;
}

.main_contents.bg02 {
  background: url(img/cmn/bg_interior02.png) no-repeat;
  background-size: 100%;
  background-position: top;
  position: relative;
  background-attachment: fixed;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.mw1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.main_visual {
  background: url(img/top/bg_mv.png) no-repeat;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  min-height: 100vh;
  margin-bottom: 100px;
}
.main_visual h1 {
  position: relative;
}
.main_visual h1 .main_catch {
  position: absolute;
  top: 630px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.main_visual h1 .main_catch img {
  max-width: 500px;
}
.main_visual .main_img {
  padding-top: 150px;
  position: relative;
  z-index: 2;
}
.main_visual .main_img img {
  max-width: 280px;
  margin: 0 auto;
}

.main_visual::before {
  content: "";
  background: url(img/cmn/clock.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 55%;
  width: 500px;
  height: 500px;
  z-index: 1;
}

@media (max-width: 1000px) {
  .mw1000 {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
  }
}
@media (max-width: 767px) {
  .main_contents {
    background: url(img/cmn/bg_interior01_sp.png) no-repeat;
    background-position: center 800px;
    background-size: contain;
    position: relative;
    max-width: 100%;
    width: 100%;
  }
  .main_contents.bg02 {
    background: url(img/cmn/bg_interior02_sp.png) no-repeat !important;
    background-size: 100% !important;
    background-position: top;
    position: relative;
    background-attachment: scroll;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .main_visual {
    margin-bottom: 0;
  }
  .main_visual h1 .main_catch {
    position: absolute;
    top: 480px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 300px;
  }
  .main_visual h1 .main_catch img {
    width: 100%;
    max-width: 100%;
  }
  .main_visual .main_img {
    padding-top: 120px;
  }
  .main_visual .main_img img {
    max-width: 200px;
    margin: 0 auto;
  }
  .main_visual::before {
    content: "";
    background: url(img/cmn/clock.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    right: -80px;
    width: 350px;
    height: 500px;
    z-index: 1;
  }
  .mw1000 {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
  }
}
/*========== alice ==========*/
.alice {
  color: #171717;
  background-color: #fff;
  position: relative;
  box-sizing: border-box;
  padding: 20px 30px 30px 30px;
  margin-bottom: 200px;
}
.alice .alice_ttl {
  color: #171717;
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Kaisei Decol", serif;
  line-height: 1.25;
}
.alice .alice_ttl span {
  font-size: 20px;
}

.alice::before {
  content: "";
  background: url(img/cmn/point_top.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 85px;
}

.alice::after {
  content: "";
  background: url(img/cmn/point_bottom.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 85px;
}

@media (max-width: 1000px) {
  .alice::before {
    content: "";
    background: url(img/cmn/point_top.png) no-repeat;
    background-size: 100%;
    background-position: top;
    position: absolute;
    top: -13%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
  }
  .alice::after {
    content: "";
    background: url(img/cmn/point_bottom.png) no-repeat;
    background-size: 100%;
    background-position: bottom;
    position: absolute;
    bottom: -13%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .alice {
    padding: 10px;
    margin-bottom: 100px;
  }
  .alice .alice_ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .alice .alice_ttl span {
    font-size: 12px;
  }
  .alice::before {
    content: "";
    background: url(img/cmn/point_top.png) no-repeat;
    background-size: 100%;
    background-position: top;
    position: absolute;
    top: -13%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
  }
  .alice::after {
    content: "";
    background: url(img/cmn/point_bottom.png) no-repeat;
    background-size: 100%;
    background-position: bottom;
    position: absolute;
    bottom: -13%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
  }
}
/*========== banner ==========*/
.banner {
  margin-bottom: 100px;
}

.banner_list {
  margin-bottom: 10px;
  align-items: center;
}
.banner_list li .banner_img {
  max-width: 850px;
  max-height: 550px;
  margin: 0 auto;
  margin-bottom: 20px;
  height: 100%;
  width: 100%;
}
.banner_list li .banner_img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  max-width: 850px;
  max-height: 550px;
}

@media (max-width: 767px) {
  .banner {
    margin-bottom: 30px;
  }
  .banner .banner_ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .banner .banner_ttl span {
    font-size: 12px;
  }
  .banner .banner_list li .banner_img {
    width: 100%;
    max-height: 220px;
  }
  .banner .banner_list li .banner_img img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    width: 100%;
    max-height: 220px;
  }
}
/*==========  schedule ==========*/
.schedule {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 150px;
}

@media (max-width: 767px) {
  .schedule {
    margin-bottom: 100px;
  }
}
/*========== sns ==========*/
.sns {
  background: url(img/cmn/bg_stripe.png) repeat;
  padding: 30px;
  box-sizing: border-box;
  border: solid 8px #348bbd;
  position: relative;
  margin-bottom: 200px;
}
.sns h2 {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.sns h2 .ttl_ribbonB {
  max-width: 350px;
  margin-top: 0 auto;
}
.sns .sns_box {
  display: flex;
  justify-content: space-between;
  padding: 40px 20px 20px 20px;
  box-sizing: border-box;
  gap: 30px;
}
.sns .sns_box .sns_contents {
  width: 33.3333333333%;
  height: 400px;
  overflow: auto;
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .sns {
    padding: 40px 20px 30px 20px;
    border: solid 2px #348bbd;
    margin-bottom: 100px;
  }
  .sns h2 {
    width: 250px;
    top: -43px;
  }
  .sns h2 .ttl_ribbonB {
    max-width: 100%;
  }
  .sns .sns_box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }
  .sns .sns_box .sns_contents {
    width: 100%;
    height: 400px;
    overflow: auto;
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  }
}
/*========== concept ==========*/
.concept {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: url(img/cmn/bg_red.png) center repeat;
  position: relative;
  padding: 80px 0;
  box-sizing: border-box;
}
.concept .concept_wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.concept .concept_wrap .ttl_ribbonW {
  width: 280px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.concept .concept_wrap .concept_txt {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 200px;
  font-family: "Kaisei Decol", serif;
}
.concept .concept_wrap .mirror01 {
  max-width: 220px;
  position: absolute;
  top: 20px;
  left: 0;
  transform-origin: center bottom;
  -webkit-animation: yurayura01 6s linear infinite;
          animation: yurayura01 6s linear infinite;
}
.concept .concept_wrap .mirror02 {
  max-width: 220px;
  position: absolute;
  top: 100px;
  right: 0;
  transform-origin: center bottom;
  -webkit-animation: yurayura02 6s linear infinite;
          animation: yurayura02 6s linear infinite;
}
.concept .concept_wrap .concept_alice {
  max-width: 180px;
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@-webkit-keyframes yurayura01 {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}

@keyframes yurayura01 {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
@-webkit-keyframes yurayura02 {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes yurayura02 {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
.concept::before {
  content: "";
  background: url(img/cmn/lace.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 85px;
}

.concept::after {
  content: "";
  background: url(img/top/bg_carpet.png) repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
}

@media (max-width: 1000px) {
  .concept .concept_wrap .mirror01 {
    max-width: 180px;
    left: 20px;
  }
  .concept .concept_wrap .mirror02 {
    max-width: 180px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .concept {
    padding: 50px 0;
  }
  .concept .concept_wrap {
    max-width: 100%;
  }
  .concept .concept_wrap .ttl_ribbonW {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .concept .concept_wrap .concept_txt {
    font-size: 1.4rem;
  }
  .concept .concept_wrap .mirror01 {
    max-width: 100px;
    position: absolute;
    top: 220px;
    left: 20px;
    transform-origin: center bottom;
    -webkit-animation: yurayura01 6s linear infinite;
            animation: yurayura01 6s linear infinite;
  }
  .concept .concept_wrap .mirror02 {
    max-width: 100px;
    position: absolute;
    top: 220px;
    right: 20px;
    transform-origin: center bottom;
    -webkit-animation: yurayura02 6s linear infinite;
            animation: yurayura02 6s linear infinite;
  }
  .concept .concept_wrap .concept_alice {
    max-width: 120px;
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .concept::before {
    content: "";
    background: url(img/cmn/lace.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 85px;
  }
}
/*========== menu ==========*/
.menu {
  display: flex;
  gap: 50px;
  margin-bottom: 100px;
  align-items: center;
  padding-top: 150px;
}
.menu .menu_img {
  width: 500px;
}
.menu .txt_wrap {
  width: 60%;
}
.menu .txt_wrap .ttl_rose {
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
  font-family: "Playfair Display", serif;
}
.menu .txt_wrap .ttl_rose::before {
  content: "";
  background: url(img/cmn/icon_rose.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
}
.menu .txt_wrap .txt {
  font-family: "Kaisei Decol", serif;
  color: #fff;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .menu {
    display: block;
    padding-top: 50px;
    margin-bottom: 150px;
  }
  .menu .menu_img {
    width: 100%;
    margin-bottom: 20px;
  }
  .menu .txt_wrap {
    width: 100%;
  }
  .menu .txt_wrap .ttl_rose {
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    font-size: 2rem;
  }
  .menu .txt_wrap .ttl_rose::before {
    content: "";
    background: url(img/cmn/icon_rose.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
    width: 22px;
    height: 22px;
  }
  .menu .txt_wrap .txt {
    font-size: 1.4rem;
  }
}
/*========== recruit ==========*/
.recruit {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 200px;
  flex-direction: row-reverse;
}
.recruit .recruit_img {
  width: 500px;
}
.recruit .txt_wrap {
  width: 55%;
}
.recruit .txt_wrap .ttl_rose {
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
  font-family: "Playfair Display", serif;
}
.recruit .txt_wrap .ttl_rose::before {
  content: "";
  background: url(img/cmn/icon_rose.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
}
.recruit .txt_wrap .txt {
  font-family: "Kaisei Decol", serif;
  color: #fff;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .recruit {
    display: block;
  }
  .recruit .recruit_img {
    width: 100%;
    margin-bottom: 20px;
  }
  .recruit .txt_wrap {
    width: 100%;
  }
  .recruit .txt_wrap .ttl_rose {
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    font-size: 2rem;
  }
  .recruit .txt_wrap .ttl_rose::before {
    content: "";
    background: url(img/cmn/icon_rose.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
    width: 22px;
    height: 22px;
  }
  .recruit .txt_wrap .txt {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
/*========== news ==========*/
.news {
  background: url(img/cmn/bg_news.png) repeat;
  padding: 30px 20px 30px 20px;
  box-sizing: border-box;
  border: solid 8px #348bbd;
  position: relative;
  margin-bottom: 200px;
}
.news h2 {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.news h2 .ttl_ribbonB {
  max-width: 350px;
  margin-top: 0 auto;
}
.news .news_wrap {
  padding: 20px;
  height: 450px;
  overflow: scroll;
  margin-bottom: 30px;
}
.news .news_wrap .news_box {
  padding: 50px;
  background-color: #fff;
  margin-bottom: 50px;
}
.news .news_wrap .news_box .news_list .news_ttl {
  color: #fff;
  background-color: #348bbd;
  padding: 5px 20px;
  font-family: "Kaisei Decol", serif;
  font-size: 2rem;
}
.news .news_wrap .news_box .news_list .news_ttl .news_date {
  color: #fff;
  text-align: right;
  padding-right: 20px;
  font-size: 1.4rem;
  padding-right: 10px;
  border-right: solid 1px #fff;
  margin-right: 10px;
}
.news .news_wrap .news_box .news_list .news_contents {
  color: #171717;
  padding: 20px;
}
.news .news_wrap .news_box .news_list .news_contents a {
  color: #171717;
}
.news .news_wrap .news_box .news_list .news_contents .news_img {
  padding: 20px 0;
}
.news .news_wrap .news_box .news_list .news_contents .news_txt {
  font-size: 1.4rem;
}
.news .news_wrap .news_box:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .news {
    padding: 30px 10px 20px 10px;
    border: solid 2px #348bbd;
    margin-bottom: 100px;
  }
  .news h2 {
    width: 250px;
    top: -43px;
  }
  .news h2 .ttl_ribbonB {
    max-width: 100%;
  }
  .news .news_wrap {
    padding: 0;
  }
  .news .news_wrap .news_box {
    padding: 10px;
    margin-bottom: 20px;
    overflow-x: hidden;
  }
  .news .news_wrap .news_box .news_list .news_ttl {
    padding: 5px 10px;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .news .news_wrap .news_box .news_list .news_ttl .news_date {
    font-size: 1.2rem;
  }
  .news .news_wrap .news_box .news_list .news_contents {
    padding: 0px;
  }
}
/*========== access ==========*/
.access {
  position: relative;
  padding-bottom: 250px;
  z-index: 2;
}
.access .access_wrap {
  max-width: 1000px;
  margin: 0 auto;
  border: solid 4px #7c6647;
  background-color: #fff;
  padding: 60px 50px 30px 50px;
  box-sizing: border-box;
}
.access .access_wrap .ttl_ribbonW {
  width: 450px;
  margin: 0 auto;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.access .access_wrap .map {
  margin-bottom: 20px;
}
.access .access_wrap .txt_box {
  display: flex;
  gap: 30px;
  align-items: center;
}
.access .access_wrap .txt_box .access_logo {
  max-width: 400px;
}
.access .access_wrap .txt_box .access_txt {
  color: #171717;
  border-left: solid 1px #171717;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .access .access_wrap {
    padding: 40px 20px 20px 20px;
    border: solid 2px #7c6647;
    width: 100%;
  }
  .access .access_wrap .ttl_ribbonW {
    width: 300px;
    top: -40px;
  }
  .access .access_wrap .txt_box {
    display: block;
  }
  .access .access_wrap .txt_box .access_logo {
    width: 100%;
    margin-bottom: 20px;
  }
  .access .access_wrap .txt_box .access_txt {
    padding-left: 10px;
    font-size: 1.3rem;
  }
}
/*========== menu ==========*/
.menu-list {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 200px;
}
.menu-list img {
  margin-bottom: 50px;
}

@media (max-width: 1000px) {
  .menu-list {
    max-width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
}
/*========= news 記事一覧ページ ===============*/
.news_page {
  background: url(img/cmn/bg_news.png) repeat;
  padding: 30px 20px 10px 20px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 200px;
  border: solid 8px #348bbd;
}
.news_page .news_page_wrap .news_page_box li {
  background-color: #fff;
  margin-bottom: 30px;
  padding: 20px;
}
.news_page .news_page_wrap .news_page_box li .news_page_ttl {
  background-color: #348bbd;
  padding: 5px 20px;
  margin-bottom: 20px;
  font-family: "Kaisei Decol", serif;
  font-size: 2rem;
}
.news_page .news_page_wrap .news_page_box li .news_page_ttl .news_page_date {
  color: #fff;
  text-align: right;
  padding-right: 20px;
  font-size: 1.4rem;
  padding-right: 10px;
  border-right: solid 1px #fff;
  margin-right: 10px;
}
.news_page .news_page_wrap .news_page_box li .news_page_txt {
  color: #171717;
  padding: 0 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news_page .news_page_wrap .news_page_box li .news_page_btn {
  margin-bottom: 40px;
}
.news_page .news_page_wrap .news_page_box li .news_page_btn a {
  color: #348bbd;
  text-decoration: underline;
  float: right;
  padding-right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .news-wrapper {
    padding: 0 5%;
  }
  .news_page {
    padding: 20px 10px 20px 10px;
    border: solid 2px #348bbd;
  }
  .news_page .news_page_wrap .news_page_box li {
    padding: 10px;
  }
  .news_page .news_page_wrap .news_page_box li .news_page_ttl {
    font-size: 1.4rem;
    margin-bottom: 10px;
    padding: 5px 10px;
  }
  .news_page .news_page_wrap .news_page_box li .news_page_ttl .news_page_date {
    font-size: 1.3rem;
  }
  .news_page .news_page_wrap .news_page_box li .news_page_txt {
    font-size: 1.4rem;
    padding: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }
}
/*========= news 記事ページ ===============*/
.news_page_contents {
  color: #171717;
  padding: 20px;
}
.news_page_contents a {
  color: #348bbd;
}
.news_page_contents .news_img {
  padding: 20px 0;
}
.news_page_contents .news_txt {
  font-size: 1.4rem;
  color: #171717;
}

@media screen and (max-width: 767px) {
  .news_page_contents {
    padding: 20px 10px 20px 10px;
  }
}
/*========== recruit 下層ページ ==========*/
.recruit-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.recruit-wrapper .recruit-banner {
  display: block;
  margin-bottom: 200px;
}
.recruit-wrapper .recruit-banner figure {
  max-width: 1000px;
}
.recruit-wrapper .detail-wrapper {
  background: url(img/cmn/bg_stripe.png) repeat;
  padding: 60px 30px 30px 30px;
  box-sizing: border-box;
  border: solid 8px #348bbd;
  position: relative;
  width: 100%;
  margin-bottom: 200px;
}
.recruit-wrapper .detail-wrapper h2 {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.recruit-wrapper .detail-wrapper h2 .title_ribbonD {
  max-width: 350px;
  margin-top: 0 auto;
}
.recruit-wrapper .detail-wrapper .table-wrapper {
  color: #171717;
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}
.recruit-wrapper .detail-wrapper .table-wrapper table {
  width: 100%;
  background-color: #ffffff;
}
.recruit-wrapper .detail-wrapper .table-wrapper table .box_detail {
  padding: 20px;
  width: 100%;
}
.recruit-wrapper .detail-wrapper .table-wrapper table .box_detail .box_title {
  width: 30%;
  border: solid 1px;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 200px;
  font-family: "Kaisei Decol", serif;
  background-color: #348bbd;
  border-bottom: 1px dashed #348bbd;
}
.recruit-wrapper .detail-wrapper .table-wrapper table .box_detail .box_text {
  width: 70%;
  color: #171717;
  border-bottom: 1px dashed #348bbd;
  padding: 10px;
}
.recruit-wrapper .detail-wrapper .table-wrapper table .box_detail .box_text.first {
  padding: 0 0 10px 10px;
}
.recruit-wrapper .btn-wrapper {
  text-align: center;
}
.recruit-wrapper .btn-wrapper .msg {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-family: "Kaisei Decol", serif;
}

@media (max-width: 767px) {
  .recruit-wrapper {
    max-width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .recruit-wrapper .recruit-banner {
    margin-bottom: 100px;
  }
  .recruit-wrapper .detail-wrapper {
    border: solid 3px #348bbd;
    padding: 50px 10px 30px 10px;
  }
  .recruit-wrapper .detail-wrapper h2 {
    position: absolute;
    top: -43px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
  }
  .recruit-wrapper .detail-wrapper h2 .title_ribbonD {
    max-width: 100%;
    margin-top: 0 auto;
  }
  .recruit-wrapper .detail-wrapper .table-wrapper {
    padding: 0;
  }
  .recruit-wrapper .detail-wrapper .table-wrapper table {
    display: block;
    width: 100%;
    padding: 5px 5px 0 5px;
  }
  .recruit-wrapper .detail-wrapper .table-wrapper table .box_detail {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    padding: 0 0 10px 0;
  }
  .recruit-wrapper .detail-wrapper .table-wrapper table .box_detail .box_title {
    display: block;
    width: 100%;
    background-color: #348bbd;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .recruit-wrapper .detail-wrapper .table-wrapper table .box_detail .box_text {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    border-bottom: none;
    font-size: 1.4rem;
  }
  .recruit-wrapper .detail-wrapper .table-wrapper table .box_detail .box_text.first {
    padding: 0 10px;
  }
}
/*========== footer ==========*/
#footer {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: url(img/cmn/bg_red.png) center repeat;
  position: relative;
  padding: 100px 0 20px 0;
  box-sizing: border-box;
}
#footer .ft_wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#footer .ft_wrap .ft_logo {
  max-width: 300px;
}
#footer .ft_wrap .ft_nav {
  max-width: 1000px;
}
#footer .ft_wrap .ft_nav ul {
  display: flex;
  gap: 50px;
}
#footer .ft_wrap .ft_nav ul li {
  font-family: "Playfair Display", serif;
  text-align: center;
  line-height: 1.5;
}
#footer .ft_wrap .ft_nav ul li span {
  font-family: "Kaisei Decol", serif;
  font-size: 1.4rem;
}
#footer .footer_sns {
  display: flex;
  gap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 50px;
  box-sizing: border-box;
}
#footer .footer_sns figure {
  max-width: 60px;
}
#footer .ft_copyright {
  text-align: center;
}
#footer .ft_copyright small {
  font-size: 11px;
}

#footer::before {
  content: "";
  background: url(img/cmn/lace.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  z-index: 3;
}

.bg_tree {
  max-width: 550px;
  position: absolute;
  bottom: 0;
  left: -150px;
  z-index: 1;
}

.bg_alice {
  max-width: 200px;
  position: absolute;
  bottom: 20px;
  right: 100px;
  z-index: 1;
}

@media (max-width: 1000px) {
  #footer {
    padding-top: 50px;
  }
  #footer .ft_wrap {
    max-width: 100%;
    flex-direction: column;
    padding: 0 5%;
    box-sizing: border-box;
  }
  #footer .ft_wrap .ft_logo {
    max-width: 250px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding: 60px 5% 20px 5%;
  }
  #footer .ft_wrap {
    flex-direction: column;
  }
  #footer .ft_wrap .ft_logo {
    max-width: 250px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  #footer .ft_wrap .ft_nav {
    width: 100%;
  }
  #footer .ft_wrap .ft_nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #footer .ft_wrap .ft_nav ul li {
    font-family: "Playfair Display", serif;
    text-align: center;
    line-height: 1.5;
    font-size: 1.4rem;
  }
  #footer .ft_wrap .ft_nav ul li span {
    font-family: "Kaisei Decol", serif;
    font-size: 1.2rem;
  }
  #footer .footer_sns {
    display: flex;
    gap: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  #footer .footer_sns figure {
    max-width: 60px;
  }
  #footer::before {
    content: "";
    background: url(img/cmn/lace.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 85px;
    z-index: 3;
  }
  .bg_tree {
    max-width: 350px;
    position: absolute;
    bottom: 0;
    left: -100px;
    z-index: 1;
  }
  .bg_alice {
    max-width: 110px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 1;
  }
}
/*========= body ===============*/
.sr {
  margin: 0 !important;
}

html {
  font-size: 62.5%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 0;
  color: #fff;
  background-color: #171717;
  letter-spacing: 1px;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: lighter;
  color: #fff;
}

ul, li, span {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

a:hover {
  opacity: 0.8;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

p {
  margin: 0;
  padding: 0;
  line-height: 30px;
}

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
}

/*========= ボタンアニメーション ===============*/
#btn_animation .btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-radius: 20px;
  text-decoration: none;
  background-color: #348bbd;
  color: #fbfbfb;
  text-align: center;
  overflow: hidden;
  float: right;
  padding: 5px 50px;
  font-family: "Playfair Display", serif;
}

#btn_animation .btn:hover {
  text-decoration: none;
  color: #60b3e3;
}

#btn_animation .btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #60b3e3;
  -webkit-animation: btn_animation 3s ease-in-out infinite;
          animation: btn_animation 3s ease-in-out infinite;
}

@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
#btn_animation .btn.center {
  float: none;
  margin: 0 auto;
}

/*========= オープニングアニメーション ===============*/
#opening-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171717;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  -webkit-animation: fadeOutBackground 3s cubic-bezier(0.65, 0, 0.35, 1) 3s forwards;
          animation: fadeOutBackground 3s cubic-bezier(0.65, 0, 0.35, 1) 3s forwards; /* 背景のフェードアウト */
}

.animation-content {
  text-align: center;
  -webkit-animation: fadeOutContent 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
          animation: fadeOutContent 3s cubic-bezier(0.65, 0, 0.35, 1) forwards; /* ロゴのフェードアウトとスケールを同時進行 */
}

.logo-animation {
  width: 130px;
  -webkit-animation: scaleUpFadeOut 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
          animation: scaleUpFadeOut 3s cubic-bezier(0.65, 0, 0.35, 1) forwards; /* 拡大とフェードアウトを統一 */
}

/* 背景のフェードアウト */
@-webkit-keyframes fadeOutBackground {
  0% {
    opacity: 1;
    background-color: #171717;
  }
  100% {
    opacity: 0;
    background-color: rgba(23, 23, 23, 0); /* 背景を透明化 */
    visibility: hidden;
  }
}
@keyframes fadeOutBackground {
  0% {
    opacity: 1;
    background-color: #171717;
  }
  100% {
    opacity: 0;
    background-color: rgba(23, 23, 23, 0); /* 背景を透明化 */
    visibility: hidden;
  }
}
/* ロゴの拡大とフェードアウトを同時進行 */
@-webkit-keyframes scaleUpFadeOut {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  70% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes scaleUpFadeOut {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  70% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/*========= スワイパー ===============*/
.swiper-button-prev {
  left: 20px;
}

.swiper-button-prev:after {
  color: #fff;
  background-color: #348bbd;
  padding: 10px 15px 10px 13px;
  border-radius: 50%;
  font-size: 16px;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-next:after {
  color: #fff;
  background-color: #348bbd;
  padding: 10px 13px 10px 15px;
  border-radius: 50%;
  font-size: 16px;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0px;
}

.swiper-pagination-bullet-active {
  background-color: #348bbd;
}

.swiper-pagination-bullet {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 5px;
  }
  .swiper-button-next {
    right: 5px;
  }
  .swiper-button-prev:after {
    padding: 6px 10px 6px 9px;
    font-size: 1.4rem;
  }
  .swiper-button-next:after {
    padding: 6px 9px 6px 10px;
    font-size: 1.4rem;
  }
}
.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}
.row-reverse {
  flex-direction: row-reverse;
}

.center {
  text-align: center;
}

/*========= ページトップボタン ===============*/
.js-pagetop a {
  display: block;
  z-index: 99;
  width: 120px;
  max-width: 100%;
  bottom: 0;
  right: 0;
  position: fixed;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
  padding: 20px;
}

.js-pagetop.active a {
  opacity: 1;
  pointer-events: fill;
}

@media screen and (max-width: 767px) {
  .js-pagetop a {
    width: 90px;
    right: -50px;
  }
}
/*========= サブビジュアル ===============*/
.sub_visual {
  background: url(img/cmn/sub_visual.png) no-repeat;
  width: 100%;
  height: 150px;
  padding-top: 150px;
}
.sub_visual h1 {
  font-family: "Playfair Display", serif;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sub_visual {
    background: url(img/cmn/sub_visual.png) no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 80px;
    padding-top: 50px;
    margin-top: 50px;
  }
  .sub_visual h1 {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 2rem;
  }
}
/*========= パンクズリスト ===============*/
.bread_crumb_list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 100px;
  font-family: "Playfair Display", serif;
}
.bread_crumb_list .bread_crumb {
  padding: 15px 0 0;
  font-size: 15px;
  text-align: left;
}
.bread_crumb_list .bread_crumb li {
  display: inline;
}
.bread_crumb_list .bread_crumb li::after {
  content: "/";
  padding-left: 5px;
  color: #fff;
}
.bread_crumb_list .bread_crumb li:last-child:after {
  content: "";
}
.bread_crumb_list .bread_crumb li.current {
  color: #fff;
}
.bread_crumb_list .bread_crumb li a {
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.2s ease;
}
.bread_crumb_list .bread_crumb li a:hover {
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

@media screen and (max-width: 1330px) {
  .bread_crumb_list {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .bread_crumb_list {
    width: 90%;
    margin-bottom: 50px;
  }
  .bread_crumb_list .bread_crumb {
    font-size: 12px;
  }
  .sp_only {
    display: block;
  }
}
/*========= アニメーション ===============*/
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*# sourceMappingURL=style.css.map */