@charset "UTF-8";
/*===cssのリセット===*/
html,div,span,iframe,h1,h2,h3,h4,h5,h6,p,img,small,strong,ol,ul,li,form,label,table,tbody,tfoot,thead,tr,th,td,footer,header,nav,section {
  font-size: 100%; margin: 0; padding: 0; vertical-align: baseline; border: 0; outline: 0; background: transparent;
}
footer,header,nav,section {
  display: block;
}
nav ul {
  list-style: none;
}
a {
  display: block; text-decoration: none;
  transition: .3s all;
}
a:hover {
  cursor: pointer;
  opacity: .7;
}
table {
  border-spacing: 0; border-collapse: collapse;
}
ol,ul,li{
  list-style: none;  padding:0;  margin:0;
}
/*===================================*/

body {
  color: #2E2E2E;
  background: #fff;
  font-size: 16px;
  line-height: 1.9;
  font-family: "shippori-mincho-b1", sans-serif;
  font-weight: normal;
  font-style: normal;
  margin: 0;
  padding: 0;
}
@media screen and (max-width:768px){
  body{
    font-size: 14px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
img {
  display: block;
  width: 100%;
  height: auto;
}

.only_pc{
  display: block!important;
}
.only_sp{
  display: none!important;
}
@media screen and (max-width:768px){
  .only_pc{
    display: none!important;
  }
  .only_sp{
    display: block!important;
  }
}

.inner{
  width: 95vw;
  max-width: 1200px;
  margin: 0 auto;
}
.in_inner{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.txt_center{
  text-align: center;
}

.txt_lines{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/*===================================*/

/* 余白 */
.mt130{ margin-top: 130px!important;}
.mt80{ margin-top: 80px!important;}
.mt50{ margin-top: 50px!important;}
.mt30{ margin-top: 30px!important;}
@media screen and (max-width:768px){
  .mt130{ margin-top: 100px!important;}
  .mt80{ margin-top: 50px!important;}
  .mt50{ margin-top: 30px!important;}
  .mt30{ margin-top: 20px!important;}
}
/*===================================*/

/* フォント */
.font_jp{
  font-family: "ab-ootori", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font_en{
  font-family: "mistral-mn", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*===================================*/

/* ヘッダー */
header{
  background: url(../img/ver-bg.png) repeat-x;
  background-size: auto 100%;
  color: #fff;
  width: 100%;
  height: 65px;/* ヘッダーの高さ - 基準 */
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: 0px 3px 6px #00000033;
  z-index: 99;
}
header .head_con{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0 8px;
  height: 65px;/* ヘッダーの高さ */
  box-sizing: border-box;
}
header .head_con .-logo{
  width: 40px;
}
header .head_con .-menu{
  display: flex;
  align-items: center;
  gap: 20px;
}
header .head_con .-link_btn{
  color: #fff;
  font-size: 14px;
  line-height: 1;
  height: 30px;
  padding: 0 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
}
header .head_con .-menu a.-instagram img{
  width: 35px;
}

header .toggle_menu #toggle {
  display: none;
}
header .toggle_menu p {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  margin: -3px 0 0;
}
header .toggle_menu .hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
}
header .toggle_menu .hamburger div {
  position: relative;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
header .toggle_menu .nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000000bb;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
}
header .toggle_menu .nav-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
}
header .toggle_menu nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0 120px;
}
header .toggle_menu nav a {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  transition: .3s all;
}
header .toggle_menu nav a:hover {
  opacity: .3;
}
header .toggle_menu #toggle:checked + .hamburger div {
  width: 35px;
}
header .toggle_menu #toggle:checked + .hamburger .top-bun {
  transform: rotate(-45deg);
  margin-top: 10px;
}
header .toggle_menu #toggle:checked + .hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}
header .toggle_menu #toggle:checked + .hamburger .meat {
  transform: rotate(45deg);
  margin-top: -10px;
}
header .toggle_menu #toggle:checked + .hamburger + .nav {
  top: 65px;
  transform: scale(1);
}
@media screen and (max-width:768px){
  header .head_con .-menu{
    gap: 10px;
  }
  header .head_con .-link_btn{
    font-size: 12px;
    padding: 0 15px;
  }
}
/*===================================*/

/* フッター */
footer{
  background: url(../img/ver-bg.png) repeat-x;
  background-size: auto 200%;
  background-position: bottom;
  transform: rotate(180deg);
  color: #fff;
  width: 100%;
  height: 30px;
}
/*===================================*/

/* 全体 */
main{
  padding-top: 65px;/* ヘッダーの高さ */
  padding-bottom: 130px;
  background: url(../img/bg01.jpg) repeat-y;
  background-size: contain;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  overflow: hidden;
  min-height: 100vh;
  box-sizing: border-box;
}
@media screen and (max-width:768px){
  main{
    padding-bottom: 100px;
  }
}
/*===================================*/

/* 見出し */
.main_ttl{
  background: #fff;
  box-shadow: 0px 3px 6px #00000029;
  width: fit-content;
  max-width: 100vw;
  padding: 30px 5%;
  text-align: center;
}
.main_ttl.right{
  margin: 0 0 0 auto;
}
.main_ttl.center{
  margin: 0 auto;
}
.main_ttl .-txt{
  font-size: 30px;
  text-align: center;
  position: relative;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 145px;
  width: fit-content;
  min-height: 95px;
  margin: 0 auto;
}
.main_ttl .-txt::before,
.main_ttl .-txt::after{
  position: absolute;
  content: '';
  background: url(../img/ttl-decoration.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 125px;
  height: calc(100% + 20px);
  top: 0;
  bottom: 0;
  margin: auto;
}
.main_ttl .-txt::before{
  left: 0;
}
.main_ttl .-txt::after{
  transform: scale(-1, 1);
  right: 0;
}
@media screen and (max-width:768px){
  .main_ttl{
    padding: 20px 5%;
  }
  .main_ttl .-txt{
    font-size: 23px;
    gap: 10px;
    padding: 0 17vw;
    min-height: 50px;
  }
  .main_ttl .-txt::before,
  .main_ttl .-txt::after{
    width: 15vw;
  }
}

/* 小見出し */
.contents_ttl{
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 25px;
  text-align: center;
  line-height: 1.2;
  padding: 0 20px 25px;
  box-sizing: border-box;
  position: relative;
}
.contents_ttl::after{
  position: absolute;
  content: '';
  width: 90%;
  max-width: 260px;
  height: 5px;
  background: transparent linear-gradient(90deg, #E4AD06 0%, #F7E575 16%, #E4AD06 32%, #CC6064 32%, #CC6064 100%) 0% 0% no-repeat padding-box;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width:768px){
  .contents_ttl{
    gap: 10px;
    font-size: 20px;
  }
}
.contents_ttl02{
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 25px;
  line-height: 1.2;
  padding: 0 20px 25px;
  box-sizing: border-box;
  position: relative;
}
.contents_ttl02::after{
  position: absolute;
  content: '';
  width: 90%;
  max-width: 260px;
  height: 5px;
  background: transparent linear-gradient(90deg, #E4AD06 0%, #F7E575 16%, #E4AD06 32%, #CC6064 32%, #CC6064 100%) 0% 0% no-repeat padding-box;
  left: 0;
  bottom: 0;
}
@media screen and (max-width:768px){
  .contents_ttl02{
    gap: 10px;
    font-size: 20px;
  }
}

.h_ttl{
  position: relative;
  padding: 0 0 0 35px;
  margin: 0 0 20px;
  font-size: 20px;
}
.h_ttl::after{
  position: absolute;
  content: '';
  background: url(../img/ttl-decoration01.png) no-repeat;
  width: 30px;
  height: 36px;
  background-size: contain;
  top: 0;
  left: 0;
}
@media screen and (max-width:768px){
  .h_ttl{
    font-size: 16px;
  }
}
/*===================================*/

/* ボタン */
a.link_btn,
a.link_btn_w{
  width: 100%;
  max-width: 520px;
  line-height: 1;
  font-size: 20px;
  text-align: center;
  display: grid;
  gap: 10px;
  padding: 25px 55px;
  margin: 0 auto;
  border-radius: 100px;
  position: relative;
  box-sizing: border-box;
}
a.link_btn::after,
a.link_btn_w::after{
  position: absolute;
  content: '→';
  height: fit-content;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
a.link_btn{
  color: #121212;
  border: 1px solid #121212;
}
a.link_btn:hover{
  opacity: 1;
  background: #CC606440;
}
a.link_btn_w{
  color: #fff;
  border: 1px solid #fff;
}
a.link_btn_w:hover{
  opacity: 1;
  background: #FFFFFF40;
}

@media screen and (max-width:768px){
  a.link_btn,
  a.link_btn_w{
    font-size: 16px;
  }
}
/*===================================*/

/* コンテンツ装飾 */
.contents_dec{
  background-color: #fff;
  box-shadow: 0px 3px 10px #00000029;
  position: relative;
  z-index: 1;
  padding: 80px 30px;
}
.contents_dec::before,
.contents_dec::after{
  position: absolute;
  content: '';
  background: url(../img/decoration01.png) no-repeat;
  background-size: contain;
  background-position: top;
  width: 50%;
  max-width: 300px;
  height: 100%;
  z-index: -1;
}
.contents_dec::before{
  top: 0;
  left: 0;
}
.contents_dec::after{
  transform: scale(-1, -1);
  right: 0;
  bottom: 0;
}
@media screen and (max-width:768px){
  .contents_dec{
    padding: 80px 20px;
  }
  .contents_dec::before,
  .contents_dec::after{
    max-width: 230px;
  }
}
/*===================================*/

/* TOPページ - FV */
.fv{
  position: relative;
  z-index: 0;
}
.fv::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #121212;
  opacity: .2;
  top: 0;
  left: 0;
  z-index: 1;
}
.fv::before{
  position: absolute;
  content: '';
  background: url(../img/top/fv-txt.png) no-repeat;
  background-size: contain;
  width: 65px;
  height: 150%;
  opacity: .5;
  top: 30px;
  left: 0;
  z-index: 2;
}
.fv img{
  width: 100%;
  height: 700px;
  max-height: calc(100vh - 65px);/* ヘッダーの高さ */
  object-fit: cover;
  object-position: center;
}
.fv .-caption{
  position: absolute;
  z-index: 3;
  display: block;
  right: 0;
  left: 0;
  bottom: 50px;
  text-align: right;
  color: #FFFFFF;
  text-shadow: 0px 0px 10px #121212;
  font-size: 130px;
  line-height: 1;
  letter-spacing: -2px;
}
@media screen and (max-width:768px){
  .fv .-caption{
    bottom: 30px;
    font-size: 18vw;
  }
}
/*===================================*/

/* TOPページ - 横並び画像 */
.img_area{
  width: 100%;
  display: flex;
  gap: 15px 2%;
}
.img_area .-img_box{
  width: 23.5%;
  box-shadow: 0px 3px 10px #00000029;
}
@media screen and (max-width:768px){
  .img_area{
    flex-wrap: wrap;
  }
  .img_area .-img_box{
    width: 49%;
  }
}
/*===================================*/

/* TOPページ - 動画 */
.bonodori_mov{
  width: 100%;
  box-shadow: 0px 3px 10px #00000029;
}
/*===================================*/

/* TOPページ - イベントの目的 */
.ev_phrase{
  position: relative;
  text-align: center;
  padding: 150px 0;
  font-size: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 1;
}
.ev_phrase::before,
.ev_phrase::after{
  position: absolute;
  content: '';
  width: 325px;
  height: 180px;
  z-index: -1;
}
.ev_phrase::before{
  background: url(../img/top/ev-decoration01.png) no-repeat;
  background-size: contain;
  background-position: top;
  top: 0;
  left: -30px;
}
.ev_phrase::after{
  background: url(../img/top/ev-decoration02.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  bottom: 0;
  right: -30px;
  z-index: -1;
}
@media screen and (max-width:768px){
  .ev_phrase{
    padding: 80px 0;
    font-size: 6vw;
    gap: 20px;
    z-index: 1;
  }
  .ev_phrase::before,
  .ev_phrase::after{
    width: 40vw;
  }
}

.ev_contents{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 5%;
}
.ev_contents .-img_box{
  width: 30%;
  box-shadow: 15px 10px 2px #12121233;
}
.ev_contents .-txt_box{
  width: 65%;
}
@media screen and (max-width:768px){
  .ev_contents{
    flex-wrap: wrap;
    justify-content: center;
  }
  .ev_contents .-img_box{
    width: 100%;
    max-width: 400px;
    order: 1;
  }
  .ev_contents .-txt_box{
    width: 100%;
    order: 2;
  }
}
/*===================================*/

/* TOPページ - 実績とイベント情報 */
.info_contents .-txt_box{
  margin: 0 auto;
  width: fit-content;
}
/*===================================*/

/* TOPページ - 体験談一覧 */
.exp_story{
  background: #121212;
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.exp_story .-img_left,
.exp_story .-img_right{
  position: absolute;
  height: 100%;
  width: 30%;
  z-index: -1;
}
.exp_story .-img_left{
  top: 0;
  left: 0;
}
.exp_story .-img_right{
  right: 0;
  bottom: 0;
}
.exp_story .-img_left img,
.exp_story .-img_right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp_story .-img_box{
  position: relative;
  width: fit-content;
  height: 100%;
}
.exp_story .-img_right .-img_box{
  margin: 0 0 0 auto;
}
.exp_story .-img_box::before{
  position: absolute;
  content: '';
  width: 40%;
  height: 100%;
  top: 0;
}
.exp_story .-img_left .-img_box::before{
  background: transparent linear-gradient(90deg, #12121200 0%, #121212 100%) 0% 0% no-repeat padding-box;
  right: 0;
}
.exp_story .-img_right .-img_box::before{
  background: transparent linear-gradient(270deg, #12121200 0%, #121212 100%) 0% 0% no-repeat padding-box;
  left: 0;
}

.exp_story .-comment_list{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.exp_story .-comment_list .-comment_txt{
  width: 100%;
  color: #fff;
  text-shadow: 0px 0px 10px #121212;
  padding: 0 20% 0 10%;
  box-sizing: border-box;
}
.exp_story .-comment_list .-comment_txt:nth-of-type(2n){
  padding: 0 10% 0 20%;
}
@media screen and (max-width:768px){
  .exp_story{
    padding: 300px 0;
  }
  .exp_story .-img_left,
  .exp_story .-img_right{
    height: 250px;
    width: 100%;
  }
  .exp_story .-img_left img,
  .exp_story .-img_right img{
    object-position: 0 45%;
  }
  .exp_story .-img_box{
    width: 100%;
  }
  .exp_story .-img_box::before{
    width: 100%;
    height: 50%;
  }
  .exp_story .-img_left .-img_box::before{
    background: transparent linear-gradient(180deg, #12121200 0%, #121212 100%) 0% 0% no-repeat padding-box;
    top: auto;
    bottom: 0;
  }
  .exp_story .-img_right .-img_box::before{
    background: transparent linear-gradient(0deg, #12121200 0%, #121212 100%) 0% 0% no-repeat padding-box;
  }
  .exp_story .-comment_list .-comment_txt{
    padding: 0 10% 0 3%;
  }
  .exp_story .-comment_list .-comment_txt:nth-of-type(2n){
    padding: 0 3% 0 10%;
  }
}
/*===================================*/

/* TOPページ - 催し物 */
.attractions_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 200px;
  gap: 200px 6%;
}
.attractions_area .-contents{
  width: 47%;
  background: #fff;
  box-shadow: 0px 3px 10px #00000029;
  position: relative;
}
.attractions_area .-contents.-full{
  width: 100%;
}
.attractions_area .-contents::before,
.attractions_area .-contents::after{
  position: absolute;
  content: '';
  width: 13px;
  height: 100%;
  background: transparent linear-gradient(180deg, #F0C0B1 0%, #CC6064 100%) 0% 0% no-repeat padding-box;
  top: 0;
}
.attractions_area .-contents::before{
  left: 0;
}
.attractions_area .-contents::after{
  right: 0;
}
.attractions_area .-decoration{
  position: relative;
}
.attractions_area .-decoration::after{
  position: absolute;
  content: '';
  background: url(../img/top/attractions-decoration01.png) no-repeat;
  background-size: contain;
  width: 130px;
  height: 42px;
  bottom: 30px;
  right: -40px;
  z-index: 1;
}
.attractions_area .-ttl{
  position: absolute;
  width: 312px;
  height: 240px;
  top: -170px;
  right: 0;
  left: 0;
  margin: auto;
}
.attractions_area .-ttl img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.attractions_area .-txt_box{
  padding: 80px 60px;
}
@media screen and (max-width:768px){
  .attractions_area{
    margin-top: 160px;
    gap: 160px 4%;
  }
  .attractions_area .-contents{
    width: 100%;
  }
  .attractions_area .-contents::before,
  .attractions_area .-contents::after{
    width: 8px;
  }
  .attractions_area .-decoration::after{
    width: 110px;
    height: 35px;
    bottom: 20px;
    right: -25px;
  }
  .attractions_area .-ttl{
    width: 230px;
    height: 180px;
    top: -140px;
  }
  .attractions_area .-txt_box{
    padding: 50px 5vw;
  }
}
/*===================================*/

/* TOPページ - 人材 */
.recruit_area .-link_btn{

}
/*===================================*/

/* TOPページ - プライバシーポリシー */
.Privacy_area .link_btn{
  margin: 0 auto;
}
/*===================================*/

/* 下層ページ - 共通 */
.page_ttl{
  position: relative;
  width: 100%;
  height: 300px;
}
.page_ttl::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #121212 0% 0% no-repeat padding-box;
  mix-blend-mode: color-dodge;
  top: 0;
  left: 0;
}
.page_ttl .-txt{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}
.page_ttl .-txt::before,
.page_ttl .-txt::after{
  position: absolute;
  content: '';
  width: 45%;
  max-width: 600px;
  height: 100%;
  top: 0;
}
.page_ttl .-txt::before{
  background: url(../img/page_ttl01.png) no-repeat;
  background-position: bottom;
  background-size: contain;
  left: 0;
}
.page_ttl .-txt::after{
  background: url(../img/page_ttl02.png) no-repeat;
  background-position: top;
  background-size: contain;
  right: 0;
}
@media screen and (max-width:768px){
  .page_ttl{
    height: 150px;
  }
  .page_ttl .-txt{
    font-size: 30px;
  }
}

.pankuzu{
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1;
  gap: 5px;
  margin: 10px 0 0;
}
.pankuzu a{
  text-decoration: underline;
  color: #121212;
  position: relative;
  padding: 0 17px 0 0;
}
.pankuzu a::after{
  position: absolute;
  content: '>';
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
/*===================================*/

/* 下層ページ - 人材募集 */
#page-recruit .dl_btn{
  min-height: 70px;
  max-width: 400px;
}
#page-recruit .dl_btn::after{
  content: '';
  background: url(../img/download.svg) no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;
}
/*===================================*/

/* 下層ページ - 体験談 */
.story_list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2%;
}
.story_list .-article{
  width: 23.5%;
  background: #fff;
  box-shadow: 0px 3px 10px #00000029;
}
.story_list .-ttl{
  line-height: 1;
  padding: 15px 20px;
  color: #121212;
}
@media screen and (max-width:768px){
  .story_list{
    gap: 10px 2%;
  }
  .story_list .-article{
    width: 49%;
  }
}

.story_img_list{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 2%;
}
.story_img_list .-img_box{
  width: 32%;
}
.txt_p{
  color: #CC6064;
}
@media screen and (max-width:768px){
  .story_img_list{
    gap: 10px 2%;
  }
  .story_img_list .-img_box{
    width: 49%;
  }
}
/*===================================*/

/* 下層ページ - プライバシーポリシー */
#page-privacy p span{
  font-weight: bold;
}
/*===================================*/
