@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, form {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure,
form, input, textarea, select, button, div {
  font-style: normal;
  font-weight: normal;
  font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-align: left;
  word-break: break-word;
  line-break: strict;
  line-height: 1;
  color: #151515;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  body, h1, h2, h3, h4, h5, h6, p, address,
  ul, ol, li, dl, dt, dd,
  table, th, td, img, figure,
  form, input, textarea, select, button, div {
    font-size: 1.4rem;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-spacing: 0;
}

input:not([type=file]), textarea, select, button {
  vertical-align: middle;
  background-color: #fff;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input:not([type=file]), select, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
}

button, input[type=submit], input[type=button], select, label {
  cursor: pointer;
}

input[type=radio]:checked {
  appearance: none;
}

blockquote {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
button,
input[type=submit],
input[type=button] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

@media screen and (min-width: 769px) {
  a:hover,
  button:hover,
  input[type=submit]:hover,
  input[type=button]:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
body {
  min-width: 1200px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 0;
  }
}

.wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap {
    width: 92%;
    max-width: initial;
  }
}

.content {
  overflow: hidden;
}

.serif {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
.header_wrap {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .header_wrap {
    min-width: 1200px;
  }
}
.header_wrap .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
@media screen and (max-width: 768px) {
  .header_wrap .wrap {
    height: 60px;
  }
}
.header_wrap .logo {
  width: 321px;
}
@media screen and (max-width: 768px) {
  .header_wrap .logo {
    width: 200px;
  }
}
.header_wrap .logo img {
  width: 100%;
}
.header_wrap .header_nav_list {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header_wrap .header_nav_list .header_nav_item a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
}

.menu_btn {
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 0 0 0 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.menu_btn .line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 25px;
  height: 3px;
  background: #151515;
  border-radius: 10px;
  transition: all 0.4s ease-out;
}
.menu_btn .line:nth-child(1) {
  top: -18px;
}
.menu_btn .line:nth-child(3) {
  bottom: -18px;
}
.menu_btn.active .line:nth-child(1) {
  top: 0;
  transform: rotate(45deg);
}
.menu_btn.active .line:nth-child(2) {
  opacity: 0;
}
.menu_btn.active .line:nth-child(3) {
  bottom: 0;
  transform: rotate(-45deg);
}

.gnav {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100vh;
  padding-top: 60px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.gnav.active {
  opacity: 1;
  visibility: visible;
}
.gnav .logo {
  position: fixed;
  top: 21px;
  left: 4%;
  width: 200px;
}
.gnav .logo img {
  width: 100%;
}
.gnav .gnav_wrap {
  display: none;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 8% 120px;
  height: calc(100vh - 60px);
  overflow-y: auto;
}
.gnav .gnav_list .gnav_item + .gnav_item {
  margin-top: 30px;
}
.gnav .gnav_list .gnav_item a {
  font-size: 1.8rem;
  font-weight: 500;
}

/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
.footer_wrap {
  padding: 58px 0 20px;
  background: #151515 url(../img/common/footer_bg01.jpg) no-repeat center bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .footer_wrap {
    padding: 40px 0 20px;
  }
}
.footer_wrap .footer_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.footer_wrap .footer_nav .logo {
  width: 321px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav .logo {
    width: 200px;
  }
}
.footer_wrap .footer_nav .logo img {
  width: 100%;
}
.footer_wrap .footer_nav .footer_nav_list {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer_wrap .footer_nav .footer_nav_list .footer_nav_item a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
}
.footer_wrap .add_box .txt {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer_wrap .add_box .txt {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .footer_wrap .add_box .btn_box {
    display: flex;
    align-items: center;
    gap: 10px 15px;
    margin-top: 10px;
  }
}
.footer_wrap .add_box .ig_btn {
  width: 45px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .add_box .ig_btn {
    width: 30px;
    margin: 0;
  }
}
.footer_wrap .add_box .comi_btn {
  width: 181px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .add_box .comi_btn {
    width: 120px;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer_wrap .flex {
    display: block;
  }
}
.footer_wrap .information {
  width: 490px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .information {
    width: 100%;
    margin-top: 40px;
  }
}
.footer_wrap .information .ttl {
  padding-left: 42px;
  background: url(../img/common/ico_information01.png) no-repeat left center;
  background-size: 34px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer_wrap .information .ttl {
    padding-left: 38px;
    margin-bottom: 15px;
    background-size: 30px;
    font-size: 1.8rem;
  }
}
.footer_wrap .information .information_list {
  padding-left: 20px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer_wrap .information .information_list {
    padding-left: 10px;
    padding-top: 10px;
    background: rgba(0, 0, 0, 0.25);
  }
}
.footer_wrap .information .information_list .information_item {
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .footer_wrap .information .information_list .information_item {
    display: block;
    padding-bottom: 10px;
    font-size: 1.3rem;
  }
}
.footer_wrap .information .information_list .information_item a {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer_wrap .information .information_list .information_item a {
    display: block;
  }
}
.footer_wrap .information .information_list .information_item + .information_item {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .information .information_list .information_item + .information_item {
    margin-top: 10px;
  }
}
.footer_wrap .information .information_list .information_item .date {
  flex-shrink: 0;
  display: block;
  width: 78px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .footer_wrap .information .information_list .information_item .date {
    width: 100%;
    margin-bottom: 5px;
  }
}
.footer_wrap .information .information_list .information_item .txt {
  display: block;
  width: 100%;
  line-height: 1.3;
}
.footer_wrap .big_txt {
  margin-top: 110px;
  color: #fff;
  font-size: 7.3rem;
  line-height: 1.3;
  font-feature-settings: "palt";
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer_wrap .big_txt {
    margin-top: 60px;
    font-size: 6.4vw;
  }
}

.footer_copy {
  padding: 20px 0;
  background: #000;
}
@media screen and (max-width: 768px) {
  .footer_copy {
    padding: 10px 0;
  }
}
.footer_copy .copy {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 55px;
  }
}

.fix_bnr {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .fix_bnr {
    width: 100%;
  }
}
.fix_bnr .fix_bnr_btn {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .fix_bnr .fix_bnr_btn {
    flex: 1;
  }
}
.fix_bnr .fix_bnr_btn a {
  display: flex;
  align-items: center;
  width: 200px;
  height: 70px;
  background: #ea7b21;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .fix_bnr .fix_bnr_btn a {
    width: 100%;
    height: 55px;
    justify-content: center;
    padding-left: 0;
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.fix_bnr .fix_bnr_btn .btn_txt {
  padding-left: 65px;
}
@media screen and (max-width: 768px) {
  .fix_bnr .fix_bnr_btn .btn_txt {
    padding-left: 43px;
    padding-right: 5px;
  }
}
.fix_bnr .fix_bnr_btn.btn01 a {
  background: #ea7b21;
}
.fix_bnr .fix_bnr_btn.btn01 .btn_txt {
  background: url(../img/common/fix_btn_ico01.png) no-repeat;
  background-position: 14px center;
  background-size: 43px;
}
@media screen and (max-width: 768px) {
  .fix_bnr .fix_bnr_btn.btn01 .btn_txt {
    background-position: 8px center;
    background-size: 25px;
  }
}
.fix_bnr .fix_bnr_btn.btn02 a {
  background: #06c755;
}
.fix_bnr .fix_bnr_btn.btn02 .btn_txt {
  background: url(../img/common/fix_btn_ico02.png) no-repeat;
  background-position: left center;
  background-size: 60px;
}
@media screen and (max-width: 768px) {
  .fix_bnr .fix_bnr_btn.btn02 .btn_txt {
    background-size: 40px;
  }
}

.footer_content {
  padding-bottom: 210px;
}
@media screen and (max-width: 768px) {
  .footer_content {
    padding-bottom: 80px;
  }
}

.footer_works {
  padding: 0 0 130px;
}
.footer_works .wrap {
  padding-top: 25px;
  border-top: 1px solid #151515;
}
@media screen and (max-width: 768px) {
  .footer_works .wrap {
    padding-top: 25px;
  }
}
.footer_works .str_ttl {
  text-align: center;
  padding-top: 62px;
  margin-bottom: 50px;
  background: url(../img/common/footer_works_ico01.png) no-repeat center top;
  background-size: 72px;
}
@media screen and (max-width: 768px) {
  .footer_works .str_ttl {
    padding-top: 45px;
    background-size: 50px;
    margin-bottom: 20px;
  }
}
.footer_works .txt {
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
}
.footer_works .works_slide_wrap a {
  display: block;
}
.footer_works .works_slide_box {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  margin-top: 30px;
  background: #151515;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer_works .works_slide_box {
    padding: 15px 0;
  }
}
.footer_works .works_slide {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  animation: infinity-scroll 40s infinite linear;
}
@media screen and (max-width: 768px) {
  .footer_works .works_slide {
    animation: infinity-scroll 30s infinite linear;
  }
}
.footer_works .works_slide .img {
  flex-shrink: 0;
  width: 460px;
}
@media screen and (max-width: 768px) {
  .footer_works .works_slide .img {
    width: 200px;
  }
}
.footer_works .works_slide .img img {
  width: 100%;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}
@keyframes infinity-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.footer_process {
  padding: 40px 0;
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
}
.footer_process .wrap {
  position: relative;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .footer_process .wrap {
    flex-direction: column;
    gap: 30px;
  }
}
.footer_process .wrap .img {
  flex-shrink: 0;
  width: 620px;
  margin-left: -280px;
}
@media screen and (max-width: 768px) {
  .footer_process .wrap .img {
    width: 100%;
    margin-left: 0;
  }
}
.footer_process .txt_box {
  width: 100%;
}
.footer_process .str_ttl {
  margin-bottom: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer_process .str_ttl {
    margin-bottom: 20px;
  }
}
.footer_process .txt {
  font-weight: 500;
}
.footer_process .btn {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .footer_process .btn {
    margin-top: 25px;
  }
}
.footer_process .ico {
  position: absolute;
  right: -40px;
  bottom: -110px;
  width: 167px;
}
@media screen and (max-width: 768px) {
  .footer_process .ico {
    right: -2%;
    bottom: -80px;
    width: 100px;
  }
}

.footer_event {
  padding: 160px 0 120px;
}
@media screen and (max-width: 768px) {
  .footer_event {
    padding: 80px 0;
  }
}
.footer_event .ttl_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media screen and (min-width: 769px) {
  .footer_event .btn a {
    font-size: 1.8rem;
  }
}

.event_list {
  display: flex;
  flex-wrap: wrap;
  gap: 55px 21px;
}
@media screen and (max-width: 768px) {
  .event_list {
    gap: 20px 4%;
  }
}
.event_list .event_item {
  width: calc(33.3333% - 14px);
  border: 1px solid #b1b1b1;
}
@media screen and (max-width: 768px) {
  .event_list .event_item {
    width: 100%;
  }
}
.event_list .event_item a {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .event_list .event_item a {
    padding: 2px;
  }
}
@media screen and (min-width: 769px) {
  .event_list .event_item a:hover {
    opacity: 1;
  }
  .event_list .event_item a:hover .img img {
    transform: scale(1.2);
  }
}
.event_list .event_item .event_ico {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: url(../img/event/event_ico01.png) no-repeat left top;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .event_list .event_item .event_ico {
    width: 50px;
    height: 50px;
  }
}
.event_list .event_item .img {
  position: relative;
  width: 100%;
  padding-top: 70.965%;
  overflow: hidden;
}
.event_list .event_item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}
.event_list .event_item .txt_box {
  padding: 20px 10px 30px;
}
@media screen and (max-width: 768px) {
  .event_list .event_item .txt_box {
    padding: 15px 8px;
  }
}
.event_list .event_item .event_ttl {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.6em;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .event_list .event_item .event_ttl {
    min-height: 0;
    font-size: 1.6rem;
  }
}
.event_list .event_item .event_txt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 15px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .event_list .event_item .event_txt {
    margin-top: 5px;
    font-size: 1.3rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/
.txt {
  line-height: 2;
}

.bold {
  font-weight: bold;
}

.txt_up {
  text-transform: uppercase;
}

.txt_noup {
  text-transform: none;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.ib {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .pc_ib {
    display: inline-block;
  }
  .pc_tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
}
.tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .img img {
    width: 100%;
  }
  .sp_ib {
    display: inline-block;
  }
  .txt {
    line-height: 1.8;
  }
}
/* ------------------------------
	.ttl
------------------------------ */
.page_head {
  position: relative;
  height: 440px;
  background-color: #151515;
}
@media screen and (max-width: 768px) {
  .page_head {
    height: 250px;
  }
}
.page_head .page_ttl {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.page_ttl {
  font-size: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page_ttl {
    font-size: 2rem;
  }
}

.str_ttl {
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .str_ttl {
    font-size: 2.4rem;
  }
}

/* ------------------------------
	.btn
------------------------------ */
.btn {
  display: flex;
}
.btn.center {
  justify-content: center;
}
.btn.right {
  justify-content: flex-end;
}
.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 1px solid #151515;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .btn a {
    padding: 15px 25px;
    font-size: 1.3rem;
  }
}

.link {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .link:hover {
    text-decoration: none;
  }
}

/* ------------------------------
	.box
------------------------------ */
.flex {
  display: flex;
  justify-content: space-between;
}

/* ------------------------------
	.pager
------------------------------ */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 80px;
  background: #439ab3;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .pager {
    gap: 15px;
    height: 50px;
  }
}
.pager .pager_item {
  font-size: 1.6rem;
}
.pager .pager_item a {
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
}
.pager .pager_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .pager .pager_list {
    gap: 8px;
  }
}
.pager .pager_list .pager_item {
  color: #acacac;
  font-weight: 500;
}
.pager .pager_list .pager_item a {
  color: #acacac;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media screen and (min-width: 769px) {
  .pager .pager_list .pager_item a:hover {
    opacity: 1;
    color: #fff;
  }
}
.pager .pager_list .pager_item.current a {
  color: #fff;
  text-decoration: underline;
}