@charset "utf-8";


/* ------------------------------------------------ pc ------------------------------------------------ */
@media screen and (min-width: 1069px) {
  /* 960px以上の時に使用するCSSを記載  */
  
  /*------------------------------
  
    ここから下がハンバーガーメニュー
    に関するCSS
  
  ------------------------------*/

  .drawer {
    display: none;
  }
  
  /* チェックボックスは非表示に */
  .drawer-hidden {
    display: none;
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer-open {
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上に */
    cursor: pointer;
    background-color: #fff;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  
  /* 三本線のうち一番上の棒の位置調整 */
  .drawer-open span:before {
    bottom: 8px;
  }
  
  /* 三本線のうち一番下の棒の位置調整 */
  .drawer-open span:after {
    top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  
  /* メニューのデザイン*/
  .global_nav_2 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    transition: .3s;
  }
  
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer-check:checked ~ .global_nav_2 {
    left: 0;/* メニューを画面に入れる */
  }


/* インビューfadeInここから */

.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeIn.is-show {
  opacity: 1;
}

/* インビューfadeInここまで */


* {/*　全部　*/
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  font-family: din-2014, sans-serif;
}

@keyframes fadeIn {
  0% {opacity: 0}
  30% {opacity: 0.01;}
  100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

h2 {
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*　グローバルナビのヘッダーはここから　*/

header {
  display: flex;
  justify-content: flex-end;/* フレックスアイテムを末尾に寄せる */
}

.global_nav_1 {
  padding: 50px;
  position: fixed;
  z-index: 10;
  background-color:rgba(255,255,255,0.8);
}

.global_nav_1 ul {
  list-style: none;
}

.global_menu li {
  display: inline-block;
  list-style: none;
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.global_menu li:nth-child(2) {
  padding: 0 0 0 26px;
}

.global_menu li:nth-child(3) {
  padding: 0 0 0 26px;
}

.global_menu li:nth-child(4) {
  padding: 0 0 0 27px;
}

.global_menu li:nth-child(5) {
  display: none;
}

.global_nav_1 a {
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  position: relative;
}

.global_nav_1 a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;  /*変形の時間*/
  }
  
  .global_nav_1 a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
  }

/*　グローバルナビのヘッダーはここまで　*/

.slick {
  width: 40.336749634%;
  height: 100%;
  position: fixed;
}

.slick ul {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slick ul li {
  width: 100%;
  height: 100vh;
  margin: 0;
  object-fit: cover;
}

.slick ul img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.slick2 {
  display: none;
}

/*　コンテンツはここから　*/

.content {
  width: 100%;
  height: auto;
  display: block;
}

.content .content_inner {
  width: 100%;
  height: auto;
  display: flex;
}

.content .content_left {
  height: 100%;
  flex: 0 0 40.336749634%;
}

.content .content_center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.content .content_center .entry_logo {
  width: 55px;
  margin: 35.5px auto 0;
  position: fixed;
  display: block;
  transition: all 0.3s;
  opacity: 1;
}

.content .content_center .entry_logo a .entry_logo_1 {
  width: 55px;
  height: 54.99px;
  display: block;
  margin: 0 0 39.5px 0;
}

.content .content_center .entry_logo a .entry_logo_2 {
  width: 31px;
  height: 69px;
  display: block;
  margin: 0 12px 20px 12px;
}

.content .content_center .entry_logo a .entry_logo_3 {
  width: 16px;
  height: 65.63px;
  display: block;
  margin: 0 12px 0 27px;
}

.content .content_center .entry_logo:hover {
  opacity: 0.5;
}

.content .content_right {
  flex: 0 0 47.5841874085%;
}

/* メインはここから */

main {
  width: auto;
}

main .main_copy_1 {
  /*width: 240px;*/
  width: 500px;
  margin: 336px auto 343px;
  display: flex;
  flex-flow: column;
}

main .main_copy_1 h1 {
  margin: 0;
  padding: 0 0 50px 0;
  font-size: 48px;
  display: inline-block;
}

main .main_copy_1 p {
  font-size: 20px;
  line-height: 32px;
  display: inline-block;
}

main .main_copy_2{
  width: 415px;
  margin: 0 auto 276px;
}

main .main_copy_2 .kaigyou1 {
  display: none;
}

main .main_copy_2 h2 {
  font-size: 32px;
  line-height: 54px;
}

main .main_copy_2 p {
  font-size: 16px;
  line-height: 27px;
}

/* サービスここから　*/

main #service {
  width: 548px;
  height: auto;
  margin: 0 0 0 auto;
  padding: 80px 0 100px 0;
  border-right: solid 10px #a21026;
}

main #service h2 {
  font-size: 48px;
  line-height: 66px;
  margin: 0 auto 88px 0;
  padding: 0;
}

main #service img {
  width: 448px;
  height: 250px;
  margin: 0 82px 40px 0;
}

main #service p {
  width: 444px;
  height: 101px;
  margin: 0 94px 98px 0;
  padding: 0 0 0 46px;
  border-left: solid 8px #cecece;
  line-height: 26px;
  font-size: 15px;
  letter-spacing: 0.028px;
}

/* サービスここまで　*/


/* メンバーここから　*/

main #member {
  width: 560px;
  height: auto;
  margin: 0 auto 0 0;
  padding: 80px 0 100px 0;
  border-left: solid 10px #a21026;
}

main #member h2 {
  padding: 0px 0 85px 100px;
  font-size: 48px;
  line-height: 66px;
}

main #member .name {
  width: auto;
  height: 101px;
  margin: 0 0 57px 100px;
  padding: 0 0 0 30px;
  border-left: solid 8px #cecece;
}

main #member .name .name1 {
  padding: 20px 0 11px 0;
  font-size: 15px;
}

main #member .name .name2 {
  padding: 0 0 31px 0;
  font-size: 24px;
}

main #member .mojiokosi {
  width: 451px;
  height: 501px;
  margin: 0 0 22px 100px;
  overflow: hidden;
  position: relative;
}

main #member .mojiokosi .caption {
  line-height: 20px;
  color: #fff;
  padding: 0 20%;
  display: table-cell;
  vertical-align: middle;
}

main #member .mojiokosi .new__caption1 {
  line-height: 20px;
  color: #fff;
  padding: 0 10%;
  display: table-cell;
  vertical-align: middle;
}

main #member .mojiokosi .new__caption2 {
  line-height: 20px;
  color: #fff;
  padding: 0 5%;
  display: table-cell;
  vertical-align: middle;
}

main #member .mojiokosi .caption .bold{
  font-weight: bold;
  margin-bottom: 5px;
  padding: 0;
  display: inline-block;
}

main #member .mojiokosi .caption .no-bold{
  font-size: 14px;
}

main #member .mojiokosi .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0,0,0,0.4);
  -webkit-transition:	all 0.6s ease;
	transition: all 0.8s ease;
  display: table;
}

main #member .mojiokosi:hover .mask {
  opacity: 1;
}


/* メンバーここまで　*/

/* ボイスここから　*/

main #voice {
  width: 547px;
  height: auto;
  margin: 0 0 0 auto;
  padding: 80px 0 100px 0;
  border-right: solid 10px #a21026;
}

main #voice h2 {
  padding: 0 0 111.4px 0;
  font-size: 48px;
}

main #voice img {
  margin: 0 0 22px 0;
}

main #voice .name {
  width: auto;
  height: 101px;
  margin: 0 0 57px 0;
  padding: 0 0 0 30px;
  border-left: solid 8px #cecece;
}

main #voice .name .name1 {
  padding: 20px 0 11px 0;
  font-size: 15px;
}

main #voice .name .name2 {
  padding: 0 0 31px 0;
  font-size: 24px;
}

main #voice p {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.028px;
}

/* ボイスここまで　*/

/* エントリーここから */

main #entry {
  height: auto;
  margin: 0px auto 0px 0;
  padding: 80px 0 100px 0;
  border-left: solid 10px #a21026;
}

main #entry h2 {
  font-size: 48px;
  padding: 0 0 90px 91px;
}

main #entry iframe {
  margin: 0 0 0 91px;
}

main #entry .entry__img {
  width: 447px;
  height: auto;
  margin: 0 auto 0 91px;
  display: inline-block;
}
main #entry .entry__img img {
  width: 100%;
  height: auto;
  border: 2px #9D9D9D solid;
  cursor: pointer;
  transition: all 0.3s;
}
main #entry .entry__img img:hover {
  width: 100%;
  height: auto;
  border: 2px #A21026 solid;
}

/* エントリーここまで */

/* メインはここまで */

/*　フッターはここから　*/

footer {
  width: 59.736456808199123%;
  height: auto;
  background-color: #80001f;
  color: #fff;
  margin: 0 0 0 40.336749634%;
  display: block;
}

footer .footer_header {
  display: flex;
}

footer img{
  width: 53.83px;
  height: 53.82px;
  margin: 19.1px 0 17.1px 53.1px;
}

footer ul {
  list-style: none;
  padding: 36px 30px 20px 30px;
  margin: 0 30px 0px auto;
  border-bottom: solid #fff 1px;
  flex: 0 0 auto;
}

footer li {
  list-style: none;
}

footer a {
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}

footer .footer_moji_1 {
  font-size: 16px;
  margin: 0 0 13px 32px;
}

footer .footer_moji_2 {
  font-size: 13px;
  line-height: 21px;
  margin: 0 0 0 32px;
}

footer .copyright {
  font-size: 11px;
  line-height: 21px;
  text-align: center;
}

/*　フッターはここまで　*/


/*　コンテンツはここまで　*/

}





































































/* ---------------------------------------- タブレット ---------------------------------------- */
@media screen and (max-width: 1068px) {
  /* 960px以下の時に使用するCSSを記載  */
  /* インビューfadeInここから */
  
  /*------------------------------
  
    ここから下がハンバーガーメニュー
    に関するCSS
  
  ------------------------------*/
  
  /* チェックボックスは非表示に */
  .drawer-hidden {
    display: none;
    background-color:rgba(0,0,0,0.2);
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer-open {
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上に */
    cursor: pointer;
    background-color: #fff;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    content: '';
    display: block;
    height: 3.5px;
    width: 35px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  
  /* 三本線のうち一番上の棒の位置調整 */
  .drawer-open span:before {
    bottom: 10px;
  }
  
  /* 三本線のうち一番下の棒の位置調整 */
  .drawer-open span:after {
    top: 10px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  
  /* メニューのデザイン*/
  .global_nav_2 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/* メニューを画面の外に飛ばす */
    z-index: 99;
    background-color:rgba(0,0,0,0.2);
    transition: .0s;
    font-size: 20px;
  }
  
  .global_nav_2 a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;  /*変形の時間*/
    }
    
    .global_nav_2 a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top; /*左から右に向かう*/
    }

  .global_nav_2 ul {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/* メニューを画面の外に飛ばす */
    z-index: 100;
    background-color:rgba(255,255,255,0.9);
    transition: .3s;
  }

  .global_nav_2 .global_menu1 li {
    width: 100%;
    list-style: none;
    text-align: center;
    padding: 40px 0 0 0;
  }

  .global_nav_2 .global_menu1 li a {
    width: 100%;
    text-decoration: none;
    color: #000;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
    position: relative;
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer-check:checked ~ .global_nav_2 {
    left: 0;/* メニューを画面に入れる */
  }

  #drawer-check:checked ~ .global_nav_2 ul {
    width: 70%;
    left: 30%;/* メニューを画面に入れる */
  }

.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeIn.is-show {
  opacity: 1;
}

/* インビューfadeInここまで */


* {/*　全部　*/
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  font-family: din-2014, sans-serif;
}

@keyframes fadeIn {
  0% {opacity: 0}
  30% {opacity: 0.01;}
  100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

h2 {
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*　グローバルナビのヘッダーはここから　*/

header {

  right: 0;
  margin: 0;
  padding: 0;
  align-items: center;
  position: fixed;
  z-index: 200;

  display: flex;
  justify-content: flex-end;/* フレックスアイテムを末尾に寄せる */
}

.global_nav_1 {
  display: none;
  padding: 50px;
  position: fixed;
  z-index: 10;
  background-color:rgba(255,255,255,0.8);
}

.global_nav_1 ul {
  list-style: none;
}

.global_menu li {
  display: inline-block;
  list-style: none;
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.global_menu li:nth-child(2) {
  padding: 0 0 0 26px;
}

.global_menu li:nth-child(3) {
  padding: 0 0 0 26px;
}

.global_menu li:nth-child(4) {
  padding: 0 0 0 27px;
}

.global_menu li:nth-child(5) {
  padding: 0 0 0 29px;
}

.global_nav_1 a {
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  position: relative;
}

.global_nav_1 a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;  /*変形の時間*/
  }
  
  .global_nav_1 a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
  }

/*　グローバルナビのヘッダーはここまで　*/

.slick {
  display: inline;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 10;
}

.slick ul {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slick ul li {
  width: 100%;
  height: 100vh;
  margin: 0;
}

.slick ul img::after {
  min-width: auto;
  min-height: 100%;
  margin: 0 auto;
}

.slick ul img {
  min-width: 100%;
  min-height: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.slick2 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: -20;
}

.slick2 ul {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slick2 ul li {
  width: 100%;
  height: 100vh;
  margin: 0;
}

.slick2 ul img {
  min-width: 100%;
  min-height: 100%;
  margin: 0 auto;
  filter: blur(5px);
}

/*　コンテンツはここから　*/

.content {
  width: 100%;
  height: auto;
  display: block;
}

.content .content_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: column;
}

.content .content_left {
  height: 100%;
  flex: 0 0 40.336749634%;
}

.content .content_center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.content .content_center .entry_logo {
  width: 55px;
  margin: 35.5px auto 0;
  display: none;
  z-index: 100;
}

.content .content_right {
  width: auto;
}

/* メインはここから */

main {
  width: auto;
}

main .main_copy_1 {
  width: 500px;
  margin: 336px auto 343px;
  display: flex;
  flex-flow: column;
}

main .main_copy_1 h1 {
  margin: 0;
  padding: 0 0 50px 0;
  font-size: 48px;
  display: inline-block;
}

main .main_copy_1 p {
  font-size: 20px;
  line-height: 32px;
  display: inline-block;
}

main .main_copy_2{
  width: 415px;
  margin: 0 auto 276px;
}

main .main_copy_2 .kaigyou1 {
  display: none;
}

main .main_copy_2 h2 {
  font-size: 32px;
  line-height: 54px;
}

main .main_copy_2 p {
  font-size: 16px;
  line-height: 27px;
}

/* サービスここから　*/

main #service {
  width: 548px;
  height: auto;
  margin: 0 0 0 auto;
  padding: 50px 0 80px 0;
  border-right: solid 10px #a21026;
}

main #service h2 {
  font-size: 48px;
  line-height: 66px;
  margin: 0 auto 88px 0;
  padding: 0;
}

main #service img {
  width: 448px;
  height: 250px;
  margin: 0 82px 40px 0;
}

main #service p {
  width: 444px;
  height: 101px;
  margin: 0 94px 98px 0;
  padding: 0 0 0 46px;
  border-left: solid 8px #cecece;
  line-height: 26px;
  font-size: 15px;
  letter-spacing: 0.028px;
}

/* サービスここまで　*/


/* メンバーここから　*/

main #member {
  width: 560px;
  height: auto;
  margin: 0 auto 0 0;
  padding: 50px 0 80px 0;
  border-left: solid 10px #a21026;
}

main #member h2 {
  padding: 0 0 85px 100px;
  font-size: 48px;
  line-height: 66px;
}

main #member .name {
  width: auto;
  height: 101px;
  margin: 0 0 57px 100px;
  padding: 0 0 0 30px;
  border-left: solid 8px #cecece;
}

main #member .name .name1 {
  padding: 20px 0 11px 0;
  font-size: 15px;
}

main #member .name .name2 {
  padding: 0 0 31px 0;
  font-size: 24px;
}

main #member .mojiokosi {
  width: 451px;
  height: 501px;
  margin: 0 0 22px 100px;
  overflow: hidden;
  position: relative;
}

main #member .mojiokosi .caption {
  line-height: 20px;
  color: #fff;
  padding: 0 20%;
  display: table-cell;
  vertical-align: middle;
}

main #member .mojiokosi .new__caption1 {
  line-height: 20px;
  color: #fff;
  padding: 0 10%;
  display: table-cell;
  vertical-align: middle;
}

main #member .mojiokosi .new__caption2 {
  line-height: 20px;
  color: #fff;
  padding: 0 5%;
  display: table-cell;
  vertical-align: middle;
}

main #member .mojiokosi .caption .bold{
  font-weight: bold;
  margin-bottom: 5px;
  padding: 0;
  display: inline-block;
}

main #member .mojiokosi .caption .no-bold{
  font-size: 14px;
}

main #member .mojiokosi .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0,0,0,0.4);
  -webkit-transition:	all 0.6s ease;
	transition: all 0.8s ease;
  display: table;
}

main #member .mojiokosi:hover .mask {
  opacity: 1;
}


/* メンバーここまで　*/

/* ボイスここから　*/

main #voice {
  width: 547px;
  height: auto;
  margin: 0 0 0 auto;
  padding: 50px 0 80px 0;
  border-right: solid 10px #a21026;
}

main #voice h2 {
  padding: 0 0 111.4px 0;
  font-size: 48px;
}

main #voice img {
  margin: 0 0 22px 0;
}

main #voice .name {
  width: auto;
  height: 101px;
  margin: 0 0 57px 0;
  padding: 0 0 0 30px;
  border-left: solid 8px #cecece;
}

main #voice .name .name1 {
  padding: 20px 0 11px 0;
  font-size: 15px;
}

main #voice .name .name2 {
  padding: 0 0 31px 0;
  font-size: 24px;
}

main #voice p {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.028px;
}

/* ボイスここまで　*/

/* エントリーここから */

main #entry {
  height: auto;
  margin: 0px auto 0px 0;
  padding: 50px 0 80px 0;
  border-left: solid 10px #a21026;
}

main #entry h2 {
  font-size: 48px;
  padding: 0 0 90px 91px;
}

main #entry iframe {
  margin: 0 0 114px 91px;
}

main #entry .entry__img {
  width: 447px;
  height: auto;
  margin: 0 auto 0 91px;
  display: inline-block;
}
main #entry .entry__img img {
  width: 100%;
  height: auto;
  border: 2px #9D9D9D solid;
  cursor: pointer;
  transition: all 0.3s;
}
main #entry .entry__img img:hover {
  width: 100%;
  height: auto;
  border: 2px #A21026 solid;
}

/* エントリーここまで */

/* メインはここまで */

/*　フッターはここから　*/

footer {
  width: 100%;
  height: auto;
  background-color: #80001f;
  color: #fff;
  margin: 0 0 0 0;
  display: block;
}

footer .footer_header {
  display: flex;
}

footer img{
  width: 53.83px;
  height: 53.82px;
  margin: 19.1px 0 17.1px 53.1px;
}

footer ul {
  list-style: none;
  padding: 36px 30px 20px 30px;
  margin: 0 30px 0px auto;
  border-bottom: solid #fff 1px;
  flex: 0 0 auto;
}

footer li {
  list-style: none;
}

footer a {
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}

footer .footer_moji_1 {
  font-size: 16px;
  margin: 0 0 13px 32px;
}

footer .footer_moji_2 {
  font-size: 13px;
  line-height: 21px;
  margin: 0 0 0 32px;
}

footer .copyright {
  font-size: 11px;
  line-height: 21px;
  text-align: center;
}

/*　フッターはここまで　*/


/*　コンテンツはここまで　*/

}










































/* ---------------------------------- スマホ ----------------------------------- */
@media screen and (max-width: 767px) {
  /* 520px以下の時に使用するCSSを記載  */
  /* インビューfadeInここから */
  
  /*------------------------------
  
    ここから下がハンバーガーメニュー
    に関するCSS
  
  ------------------------------*/
  
  /* チェックボックスは非表示に */
  .drawer-hidden {
    display: none;
    background-color:rgba(0,0,0,0.2);
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer-open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上に */
    cursor: pointer;
    background-color: #fff;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  
  /* 三本線のうち一番上の棒の位置調整 */
  .drawer-open span:before {
    bottom: 8px;
  }
  
  /* 三本線のうち一番下の棒の位置調整 */
  .drawer-open span:after {
    top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  
  /* メニューのデザイン*/
  .global_nav_2 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/* メニューを画面の外に飛ばす */
    z-index: 99;
    background-color:rgba(0,0,0,0.2);
    transition: .0s;
  }
  
  .global_nav_2 a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;  /*変形の時間*/
    }
    
    .global_nav_2 a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top; /*左から右に向かう*/
    }

  .global_nav_2 ul {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/* メニューを画面の外に飛ばす */
    z-index: 100;
    background-color:rgba(255,255,255,0.9);
    transition: .3s;
  }

  .global_nav_2 .global_menu1 li {
    width: 100%;
    list-style: none;
    text-align: center;
    padding: 40px 0 0 0;
  }

  .global_nav_2 .global_menu1 li a {
    width: 100%;
    text-decoration: none;
    color: #000;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
    position: relative;
    font-size: 20px;
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer-check:checked ~ .global_nav_2 {
    left: 0;/* メニューを画面に入れる */
  }

  #drawer-check:checked ~ .global_nav_2 ul {
    width: 70%;
    left: 30%;/* メニューを画面に入れる */
  }







  .fadeIn {
    opacity: 0;
    transition: 1s;
  }
  
  .fadeIn.is-show {
    opacity: 1;
  }
  
  /* インビューfadeInここまで */
  
  
  * {/*　全部　*/
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
  }
  
  body {
    width: 100%;
    height: 100%;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    font-family: din-2014, sans-serif;
  }
  
  @keyframes fadeIn {
    0% {opacity: 0}
    30% {opacity: 0.01;}
    100% {opacity: 1}
  }
  
  @-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
  }
  
  h2 {
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  /*　グローバルナビのヘッダーはここから　*/
  
  header {

    right: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    position: fixed;
    z-index: 200;
    display: flex;
    justify-content: flex-end;/* フレックスアイテムを末尾に寄せる */
  }
  
  .global_nav_1 {
    display: none;
    padding: 50px;
    position: fixed;
    z-index: 10;
    background-color:rgba(255,255,255,0.8);
  }
  
  .global_nav_1 ul {
    list-style: none;
  }
  
  .global_menu li {
    display: inline-block;
    list-style: none;
    font-family: din-2014, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .global_menu li:nth-child(2) {
    padding: 0 0 0 26px;
  }
  
  .global_menu li:nth-child(3) {
    padding: 0 0 0 26px;
  }
  
  .global_menu li:nth-child(4) {
    padding: 0 0 0 27px;
  }

  .global_menu li:nth-child(5) {
    padding: 0 0 0 29px;
  }
  
  .global_nav_1 a {
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: #000;
    position: relative;
  }
  
  .global_nav_1 a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;  /*変形の時間*/
    }
    
    .global_nav_1 a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top; /*左から右に向かう*/
    }
  
  /*　グローバルナビのヘッダーはここまで　*/
  
  .slick {
    display: inline;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
  }
  
  .slick ul {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .slick ul li {
    width: 100%;
    height: 100vh;
    margin: 0;
    object-fit: cover;
  }
  
  .slick ul img {
    min-width: auto;
    min-height: 100%;
    margin: 0 auto;
    object-fit: cover;
  }

  .slick2 {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: -5;
  }

  .slick2 ul {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .slick2 ul li {
    width: 100%;
    height: 100vh;
    margin: 0;
    object-fit: cover;
  }
  
  .slick2 ul img {
    min-width: 100%;
    min-height: 100%;
    margin: 0 auto;
    filter: blur(5px);
    object-fit: cover;
  }
  
  /*　コンテンツはここから　*/
  
  .content {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .content .content_inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
  }
  
  .content .content_left {
    height: 100%;
    flex: 0 0 40.336749634%;
  }
  
  .content .content_center {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .content .content_center .entry_logo {
    width: 55px;
    margin: 35.5px auto 0;
    display: none;
    transition: all 0.3s;
    opacity: 1;
  }
  
  .content .content_center .entry_logo a .entry_logo_1 {
    width: 55px;
    height: 54.99px;
    display: block;
    margin: 0 0 39.5px 0;
  }
  
  .content .content_center .entry_logo a .entry_logo_2 {
    width: 31px;
    height: 69px;
    display: block;
    margin: 0 12px 20px 12px;
  }
  
  .content .content_center .entry_logo a .entry_logo_3 {
    width: 16px;
    height: 65.63px;
    display: block;
    margin: 0 12px 0 27px;
  }
  
  .content .content_center .entry_logo:hover {
    opacity: 0.5;
  }
  
  .content .content_right {
    flex: 0 0 47.5841874085%;
  }
  
  /* メインはここから */
  
  main {
    width: auto;
  }
  
  main .main_copy_1 {
    width: auto;
    margin: 336px 40px 343px;
    display: flex;
    flex-flow: column;
  }
  
  main .main_copy_1 h1 {
    margin: 0;
    padding: 0 0 50px 0;
    font-size: 48px;
    display: inline-block;
  }
  
  main .main_copy_1 p {
    font-size: 20px;
    line-height: 32px;
    display: inline-block;
  }
  
  main .main_copy_2{
    width: 320px;
    margin: 0 auto 276px;
  }

  main .main_copy_2 .kaigyou1 {
    display: inline;
  }
  
  main .main_copy_2 h2 {
    font-size: 32px;
    line-height: 54px;
  }
  
  main .main_copy_2 p {
    font-size: 16px;
    line-height: 27px;
  }
  
  /* サービスここから　*/
  
  main #service {
    width: 100%;
    height: auto;
    margin: 0 0 0 auto;
    padding: 50px 0 80px 0;
    border-right: solid 10px #a21026;
  }

  main #service .inner {
    width: 70.3125%;
    height: auto;
    margin: 0 auto;
  }
  
  main #service h2 {
    font-size: 48px;
    line-height: 66px;
    margin: 0 auto 88px 0;
    padding: 50px 0 0 0;
  }
  
  main #service img {
    width: 100%;
    height: auto;
    margin: 0 0 40px 0;
  }
  
  main #service p {
    width: 100%;
    height: auto;
    margin: 0 auto 98px 0;
    padding: 0 0 0 46px;
    border-left: solid 8px #cecece;
    line-height: 26px;
    font-size: 15px;
    letter-spacing: 0.028px;
  }
  
  /* サービスここまで　*/
  
  
  /* メンバーここから　*/
  
  main #member {
    width: 100%;
    height: auto;
    margin: 0 auto 0 0;
    padding: 50px 0 80px 0;
    border-left: solid 10px #a21026;
  }

  main #member .inner {
    width: 70.3125%;
    height: auto;
    margin: 0 auto;
  }
  
  main #member h2 {
    padding: 105px 0 85px 0;
    font-size: 48px;
    line-height: 66px;
  }
  
  main #member .name {
    width: auto;
    height: 101px;
    margin: 0 0 57px 0;
    padding: 0 0 0 30px;
    border-left: solid 8px #cecece;
  }
  
  main #member .name .name1 {
    padding: 20px 0 11px 0;
    font-size: 15px;
  }
  
  main #member .name .name2 {
    padding: 0 0 31px 0;
    font-size: 24px;
  }
  
  main #member .mojiokosi {
    width: 100%;
    height: auto;
    margin: 0 0 22px 0;
    overflow: hidden;
    position: relative;
  }

  main #member .mojiokosi img{
    width: 100%;
    height: 100%;
  }
  
  main #member .mojiokosi .caption {
    line-height: 2.2vw;
    color: #fff;
    padding: 0 20%;
    display: table-cell;
    vertical-align: middle;
  }

  main #member .mojiokosi .new__caption1 {
    line-height: 2.2vw;
    color: #fff;
    padding: 0 10%;
    display: table-cell;
    vertical-align: middle;
  }

  main #member .mojiokosi .new__caption2 {
    line-height: 2.2vw;
    color: #fff;
    padding: 0 5%;
    display: table-cell;
    vertical-align: middle;
  }
  
  main #member .mojiokosi .caption .bold{
    font-weight: bold;
    font-size: 2vw;
    margin-bottom: 5px;
    padding: 0;
    display: inline-block;
  }
  
  main #member .mojiokosi .caption .no-bold{
    font-size: 1.6vw;
  }
  
  main #member .mojiokosi .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0,0,0,0.4);
    -webkit-transition:	all 0.6s ease;
    transition: all 0.8s ease;
    display: table;
  }
  
  main #member .mojiokosi:hover .mask {
    opacity: 1;
  }
  
  
  /* メンバーここまで　*/
  
  /* ボイスここから　*/
  
  main #voice {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 50px 0 80px 0;
    border-right: solid 10px #a21026;
  }

  main #voice .inner{
    width: 68.75%;
    height: auto;
    margin: 0 auto;
  }
  
  main #voice h2 {
    padding: 73px 0 111.4px 0;
    font-size: 48px;
  }
  
  main #voice img {
    width: 100%;
    height: auto;
    padding: 0 0 22px 0;
  }
  
  main #voice .name {
    width: auto;
    height: 101px;
    margin: 0 0 57px 0;
    padding: 0 0 0 30px;
    border-left: solid 8px #cecece;
  }
  
  main #voice .name .name1 {
    padding: 20px 0 11px 0;
    font-size: 15px;
  }
  
  main #voice .name .name2 {
    padding: 0 0 31px 0;
    font-size: 24px;
  }
  
  main #voice p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.028px;
  }
  
  /* ボイスここまで　*/
  
  /* エントリーここから */
  
  main #entry {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 50px 0 80px 0;
    border-left: solid 10px #a21026;
  }

  main #entry .inner {
    width: auto;
    height: auto;
    margin: 0 auto 0 40px;
  }
  
  main #entry h2 {
    font-size: 48px;
    padding: 0 0 90px 0;
  }
  
  main #entry iframe {
    width: 320px;
    height: 3478px;
    margin: 0 0 114px 0;
  }

  main #entry .entry__img {
    width: 247px;
    height: auto;
    margin: 0 auto 0 0;
    display: inline-block;
  }
  main #entry .entry__img img {
    width: 100%;
    height: auto;
    border: 2px #9D9D9D solid;
    cursor: pointer;
    transition: all 0.3s;
  }
  main #entry .entry__img img:hover {
    width: 100%;
    height: auto;
    border: 2px #A21026 solid;
  }
  
  /* エントリーここまで */
  
  /* メインはここまで */
  
  /*　フッターはここから　*/
  
  footer {
    width: 100%;
    background-color: #80001f;
    color: #fff;
    margin: 0 0 0 0;
    display: block;
  }
  
  footer .footer_header {
    display: flex;
  }
  
  footer img{
    width: 53.83px;
    height: 53.82px;
    margin: 19.1px 0 17.1px 53.1px;
  }
  
  footer ul {
    display: none;
    list-style: none;
    padding: 36px 30px 20px 30px;
    margin: 0 30px 0px auto;
    border-bottom: solid #fff 1px;
    flex: 0 0 auto;
  }
  
  footer li {
    list-style: none;
  }
  
  footer a {
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
  }
  
  footer .footer_moji_1 {
    font-size: 16px;
    margin: 0 0 13px 32px;
  }
  
  footer .footer_moji_2 {
    font-size: 13px;
    line-height: 21px;
    margin: 0 0 0 32px;
  }
  
  footer .copyright {
    font-size: 11px;
    line-height: 21px;
    text-align: center;
  }
  
  /*　フッターはここまで　*/
  
  
  /*　コンテンツはここまで　*/
  
}
