@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Maven+Pro:wght@400;500;600;700;800;900&display=swap');

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
  font: 14px/1.8 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #2b4055;

  /* グラデーション */
  -webkit-text-size-adjust: 100%;
  letter-spacing: .1em;
  background: linear-gradient(45deg, #aabfd5, #f8fafc, #5580aa);
  /*グラデーションを定義*/
  background-size: 200% 200%;
  /*サイズを大きくひきのばす*/
  animation: bggradient 10s ease infinite;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.wrap {
	width: 85%;
	margin: 0 auto;
}
a {
  color: #2b4055;
	text-decoration: none;
}
a:hover{
  opacity: .5;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
  list-style: none;
  margin-left: 0;
}

/* タイトル */
h1 {
  font-size: 28px;
}
h2 {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 30px;
  line-height: 1.5;
}
h2 span.en {
  font-size: 14px;
  letter-spacing: .1em;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
}
h3 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.2em;
}
h4 {
  font-size: 14px;
}
h4 span.en {
  display: block;
  z-index: -1;
  font-size: 31px;
  letter-spacing: .18em;
  line-height: 1.4;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

@media screen and (max-width:768px) {
  body {
    font-size: 14px;
  }
  .wrap {
		width: 100%;
		padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 15px;
  }
  h4 span.en {
    font-size: 21px;
  }
}

/* ==================================================
  preloader
====================================================*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgb(85, 128, 170);
    background: linear-gradient(270deg, rgba(85, 128, 170, 1) 0%, rgba(170, 191, 213, 1) 100%, rgba(248, 250, 252, 1) 100%);
}
#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.loading-one {
  display: inline-block;
  border-top: 1px solid #f8fafc;
  border-bottom: 1px solid #f8fafc;
}
.loading-one p.loading-txt {
  font-family: 'Maven Pro', sans-serif;
  color: #f8fafc;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 2em 0;
  margin: 0;
}
/* animation_loading */
.animation_loading {
  animation: equalizer_loading 7000ms infinite;
  animation-iteration-count: 10;
}
@keyframes equalizer_loading {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}


@media screen and (max-width:768px) {

}

/* =======================================================
* g-nav
* ======================================================= */
#g-nav {
  position: fixed;
	z-index: -1;
	opacity: 0;
	top: 0;
	width: 100%;
  height: 100vh;
  background: #5580aa;
	transition: all 0.3s;
  letter-spacing: 0.1em;
}
#g-nav.panelactive {
	opacity: 1;
	z-index: 8;
}
#g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/* ナビゲーション左側 left_menu */
#g-nav ul {
  display: none;
}
#g-nav.panelactive ul {
  display: block;
  width: 40%;
  padding-left: 7%;
}
#g-nav li a {
  color: #fff;
	padding: 10px 0;
	display: block;
  font-size: 13px;
  text-transform: capitalize;
}
#g-nav li a span {
  font-size: 20px;
  font-family: 'Maven Pro', sans-serif;
  padding-right: 25px;
}
#g-nav .copyright {
  padding-top: 50px;
  color: #fff;
  font-family: 'Maven Pro', sans-serif;
}

/* ナビゲーション左側 right_menu */
#g-nav .right_menu {
  width: 60%;
  color: #fff;
}
#g-nav .right_menu a {
  color: #fff;
}

.right_menu_img {
  width: 50%;
}
.right_menu_img .menu_sns {
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
  font-size: 13px;
  padding: 10px;
  border: 3px double #fff;
}

.right_menu_img .menu_sns a span,
.right_menu_txt a span {
  font-family: 'Maven Pro', sans-serif;
  text-transform: capitalize;
  font-size: 20px;
}

.right_menu_txt {
  width: 45%;
  padding-top: 100px;
  line-height: 2;
  font-size: 13px;
}
.right_menu_txt a {
  line-height: 2;
  font-size: 13px;
}
.right_menu_txt a span {
  font-size: 20px;
}


/* openbtn */
.openbtn {
	position: fixed;
  z-index: 9;
	cursor: pointer;
  width: 100px;
  height: 70px;
  top: 20px;
  right: 10%;
  background: transparent;
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  top: 50%;
  width: 3px;
  height: 3px;
	background: #2b4055;
}


.openbtn span:nth-of-type(1) {
  right: 0px;
}
.openbtn span:nth-of-type(2) {
  right: 10px;
}
.openbtn span:nth-of-type(3) {
  right: 20px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";
	position: absolute;
  top: -13px;
  left: -75px;
	font-size: 14px;
  font-family: 'Maven Pro', sans-serif;
}
.openbtn span:nth-of-type(4) {
  opacity: 0;
}
.openbtn span:nth-of-type(5) {
  opacity: 0;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active span {
  background: #fff;
  width: 3px;
  height: 3px;
}
.openbtn.active span:nth-of-type(1) {
  top: 35%;
  right: 0px;
}
.openbtn.active span:nth-of-type(2) {
  top: 35%;
  right: 20px;
}
.openbtn.active span:nth-of-type(3){
  top: 50%;
  right: 10px;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"Close";
  top: -13px;
  left: -85px;
  color: #fff;
}
.openbtn.active span:nth-of-type(4) {
  top: 65%;
  right: 0px;
  opacity: 1;
}
.openbtn.active span:nth-of-type(5) {
  top: 65%;
  right: 20px;
  opacity: 1;
}

@media screen and (max-width:768px) {
  #g-nav {
    width: 100%;
  }
  #g-nav.panelactive ul.left_menu {
    padding-left: 0;
    width: 100%;
    padding: 0 30px 80px;
  }
  #g-nav li a {
    font-size: 12px;
    padding: 10px 0 0px;
      /* line-height: 1.5; */
        border-bottom: 1px dotted #aabfd5;
  }
  #g-nav li a span {
    font-size: 17px;
    padding-right: 15px;
  }
  #g-nav .copyright {
    padding-top: 10px;
    text-align: center;
  }
  /* right_menu */
  #g-nav .right_menu {
    width: 100%;
    position: static;
    padding: 80px 30px 0px;
  }
  .right_menu_img {
    width: 100%;
  }
  .right_menu_img .menu_sns {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    font-size: 12px;
  }
  .right_menu_img .menu_sns a span {
    font-size: 17px;
    border-bottom: 1px dotted #aabfd5;
  }
  .right_menu_txt a span {
    font-size: 17px;
  }
  .right_menu_txt  {
    width: 100%;
    text-align: center;
    padding-top: 5px;
        padding-bottom: 10px;
  }
  .right_menu_txt a {
    line-height: 1.6;
    font-size: 15px;
  }

  .right_menu_txt a span {
    font-size: 19px;
    text-transform: capitalize;
  }


  /* ボタン */
  .openbtn {
    top: 10px;
    right: 5%;
    left: auto;
  }
  .openbtn span {
    top: 35%;
    height: 3px;
  }
  .openbtn span:nth-of-type(1) {
    right: 10px;
  }
  .openbtn span:nth-of-type(2) {
    right: 20px;
  }
  .openbtn span:nth-of-type(3) {
    right: 30px;
  }
  /* OPEN */
  .openbtn span:nth-of-type(3)::after {
    font-size: 12px;
    top: 15px;
    left: -5px;
  }
  /* CLOSE */
    .openbtn.active span:nth-of-type(1) {
      top: 20%;
      right: 10px;
      opacity: 1;
    }
    .openbtn.active span:nth-of-type(2) {
      top: 20%;
      right: 30px;
      opacity: 1;
    }
    .openbtn.active span:nth-of-type(3) {
      top: 35%;
      right: 19.5px;
    }
  .openbtn.active span:nth-of-type(3)::after {
    font-size: 12px;
    top: 15px;
    left: -15px;
  }
  .openbtn.active span:nth-of-type(4) {
    top: 50%;
      right: 10px;
    opacity: 1;
  }
  .openbtn.active span:nth-of-type(5) {
    top: 50%;
    right: 30px;
    opacity: 1;
  }
}


/* =======================================================
* section
* ======================================================= */
section {
  padding-bottom: 10rem;
}
.section {
  padding-top: 10rem;
}
/* ボタン */
.btnArea {
  margin: 50px 0;
}

.btn {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #2b4055;
  padding: 0 0 10px;
  display: inline-block;
  width: 200px;
  text-decoration: none;
  outline: none;
  font-size: 13px;
}
.btn span {
  margin-left: 20px;
}
.btn span.en_btn {
  font-family: 'Maven Pro', sans-serif;
  text-transform: capitalize;
  font-size: 14px;
}
/*線の設定*/
.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #2b4055;
}
/*線と矢印を繰り返しアニメーション*/
.btn::before {
  animation: arrowlong01 6s ease infinite;
}
.btn::after {
  position: absolute;
  content:"" ;
  top: 10px;
  left: 0px;
  border-top: solid 1px #2b4055;
    border-right: solid 1px #2b4055;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
}
.btnArea.center_btn {
  width: 200px;
  margin: 50px auto;
}

@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0
  }
  20% {
    width: 0;
    opacity: 1
  }
  80% {
    width: 105%;
    opacity: 1
  }
  100% {
    width: 105%;
    opacity: 0
  }
}
@keyframes arrowlong02 {
  0% {
    left: 0;
    opacity: 0
  }
  20% {
    left: 0;
    opacity: 1
  }
  80% {
    left: 103%;
    opacity: 1
  }
  100% {
    left: 103%;
    opacity: 0
  }
}


/* ぱちぱち */
.TextRandomAnime span {
  opacity: 0;
}

.TextRandomAnime.appearRandomtext span {
  animation: text_randomanime_on 1s ease-out forwards;
}
@keyframes text_randomanime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.TextRandomAnime.appearRandomtext span:nth-child(2n) {
  animation-delay: .7s;
  /* spanのついた2の倍数の文字列の変化を0.7秒遅らせる*/
}

.TextRandomAnime.appearRandomtext span:nth-child(3n) {
  animation-delay: .35s;
  /* spanのついた3の倍数の文字列の変化を0.35秒遅らせる*/
}




@media screen and (max-width:768px) {
  section {
    padding-bottom: 6rem;
  }
  .section {
    padding-top: 6rem;
  }
  .btnArea {
    margin: 20px 0;
  }
  .btn a {
    font-size: 12px;
  }
  .btnArea.center_btn {
    margin: 0;
    padding: 0 20px;
  }
}


/* =======================================================
* main
* ======================================================= */
#main {
  position: relative;
}
#main .swiper-container {
  height: 100vh;
}
/* swiper-slide */
#main .swiper-slide {
  height: 100vh;
}
#main .swiper-slide.slide01 {
  background: url(../images/slide01.jpg) no-repeat center/cover;
}
#main .swiper-slide.slide02 {
  background: url(../images/slide02.jpg) no-repeat center right/cover;
}
#main .swiper-slide.slide03 {
  background: url(../images/slide03.jpg) no-repeat bottom/cover;
}
#main .swiper-slide.slide04 {
  background: url(../images/slide04.jpg) no-repeat center bottom 22%/cover;
}
#main .swiper-slide.slide05 {
  background: url(../images/slide05.jpg) no-repeat center/cover;
}


#main .main_name {
  position: absolute;
  top: 40px;
  left: 5%;
  font-family: 'Maven Pro', sans-serif;
  z-index: 1;
  font-size: 13px;
  line-height: 2;
}
#main .main_name img {
  display: block;
  width: 160px;
}

/* スクロール */
.scrollArea {
  position: absolute;
  z-index: 1;
  bottom: 10%;
  left: 10%;
}
.scrollArea .scroll_text {
  line-height: 2;
  text-align: center;
  font-size: 14px;
  font-family: 'Maven Pro', sans-serif;
  color: #f8fafc;
  animation: colorText 13s ease-out infinite,
    nudgeText 13s ease-out infinite;
  margin: 0;
}

/* Animations */
@keyframes colorText {
  21% {
    color: #2b4055;
  }
  30% {
    color: #f8fafc;
  }
  51% {
    color: #2b4055;
  }
  60% {
    color: #f8fafc;
  }
  81% {
    color: #2b4055;
  }
  90% {
    color: #f8fafc;
  }
}
@keyframes nudgeText {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(2px);
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(2px);
  }
  90% {
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  #main .swiper-slide.slide01 {
      background-position: center right;
    }
  #main .swiper-slide.slide02 {
    background-position: center right 34%;
  }
  #main .swiper-slide.slide03 {
  background-position: center right;
  }
  #main .main_name {
    top: 25px;
    left: 3%;
    font-size: 12px;
  }
  #main .main_name span img {
    width: 120px;
  }
 .scrollArea {
   bottom: 12%;
 }
}

/* =======================================================
* sub_main
* ======================================================= */
#main.sub_main {
  height: 400px;
  position: relative;
}
#main.sub_main h2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#main.sub_main h2 span.en {
  font-size: 18px;
}

@media screen and (max-width:768px) {
  /* sub_main */
  #main.sub_main {
    height: 200px;
  }
}

/*================================================
 *  concept
 ================================================*/
#concept h2 {
  letter-spacing: 0.5em;
}
/* concept_img */
#concept .concept_img {
  width: 45%;
}
/* concept_txt */
#concept .concept_txt {
  width: 45%;
}
#concept .concept_txt .concept_name {
  margin: 0;
  font-size: 10px;
}
#concept .concept_txt .concept_name img {
  display: inline-block;
  width: 140px;
  margin-left: 10px;
}
#concept .concept_txt h3 {
  margin-bottom: 50px;
}
#concept .concept_txt p.concept_txt_under {
  line-height: 2.5;
}

@media screen and (max-width:768px) {
  #concept h2 {
    letter-spacing: .24em;
  }
  #concept .concept_img {
    width: 100%;
  }
  #concept .concept_txt {
    width: 100%;
    margin-top: 50px;
  }
  #concept .concept_txt h3 span {
    display: block;
    text-align: right;
    font-size: 28px;
    margin: 0 0;
  }
  #concept .concept_txt p {
    margin-top: 35px;
  }
}
/* =======================================================
* block_slide
* ======================================================= */
#block_slide {
  height: 80vh;
  width: 100%;
  position: relative;
}
#block_slide p.block_txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 13px;
  letter-spacing: 0.5em;
  font-family: 'Maven Pro', sans-serif;
  text-transform: uppercase;
  margin: 0;
}
#block_slide p.block_txt.topTxt {
  top: 3%;
}
#block_slide p.block_txt.underTxt {
  bottom: 3%;
  color: #c7d5e2;
}


/* top_slide swiper-slide */
#block_slide .top_slide {
  height: 40vh;
}
#block_slide .top_slide .swiper-slide.slide01 {
  background: url(../images/top-slide01.jpg) no-repeat center/cover;
}
#block_slide .top_slide .swiper-slide.slide02 {
  background: url(../images/top-slide02.jpg) no-repeat center/cover;
}
#block_slide .top_slide .swiper-slide.slide03 {
  background: url(../images/top-slide03.jpg) no-repeat center/cover;
}
#block_slide .top_slide .swiper-slide.slide04 {
  background: url(../images/top-slide04.jpg) no-repeat center/cover;
}
#block_slide .top_slide .swiper-slide.slide05 {
  background: url(../images/top-slide05.jpg) no-repeat center/cover;
}
#block_slide .top_slide .swiper-slide.slide06 {
  background: url(../images/top-slide06.jpg) no-repeat center/cover;
}
#block_slide .top_slide .swiper-slide.slide07 {
  background: url(../images/top-slide07.jpg) no-repeat center/cover;
}
#block_slide .top_slide .swiper-slide.slide08 {
  background: url(../images/top-slide08.jpg) no-repeat center/cover;
}

/* swiper-slide */
#block_slide .under_slide {
  height: 40vh;
}
#block_slide .under_slide .swiper-slide.slide01 {
  background: url(../images/under-slide01.jpg) no-repeat center/cover;
}

#block_slide .under_slide .swiper-slide.slide02 {
  background: url(../images/under-slide02.jpg) no-repeat center/cover;
}

#block_slide .under_slide .swiper-slide.slide03 {
  background: url(../images/under-slide03.jpg) no-repeat center/cover;
}

#block_slide .under_slide .swiper-slide.slide04 {
  background: url(../images/under-slide04.jpg) no-repeat center/cover;
}

#block_slide .under_slide .swiper-slide.slide05 {
  background: url(../images/under-slide05.jpg) no-repeat center/cover;
}
#block_slide .under_slide .swiper-slide.slide06 {
  background: url(../images/under-slide06.jpg) no-repeat center/cover;
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}


/* =======================================================
* top_gallery
* ======================================================= */
.top_galleryArea {
 padding-bottom: 180px;
}
.top_galleryArea.top_local {
  padding-bottom: 50px;
}
#top_gallery h4 {
  margin-bottom: 3rem;
}

/* top_galleryArea.top_family */
.top_galleryArea.top_family .top_family_txt {
  width: 45%;
  padding: 0 40px 0 100px;
}
.top_galleryArea.top_family .top_family_img {
  width: 55%;
}

/* top_galleryArea.top_dog */
.top_galleryArea.top_dog .top_dog_img {
  width: 55%;
}
.top_galleryArea.top_dog .top_dog_txt {
  width: 40%;
}
.top_galleryArea.top_dog .top_dog_txt p a i {
    font-size: 10px;
}


/* top_galleryArea top_event */
.top_galleryArea.top_event .top_event_img {
  width: 32%;
}
.top_galleryArea.top_event .top_event_middleimg {
  width: 25%;
  padding-top: 12%;
}
.top_galleryArea.top_event .top_event_txt {
  width: 38%;
}

/* top_galleryArea top_local */
.top_galleryArea.top_local .top_local_txt {
  width: 45%;
}
.top_galleryArea.top_local .top_local_img {
  width: 45%;
}

/* 動くimg */
.img-box {
  position: relative;
}
.img-box .active {
  position: absolute;
  left: 0;
  top: 84.5px;
  opacity: 0;
  transition: 1s;
}
.img-box:hover .active {
  opacity: 1;
}


@media screen and (max-width:768px) {
  .top_galleryArea {
    padding-bottom: 100px;
  }
  /* top_galleryArea.top_family */
  .top_galleryArea.top_family .top_family_txt {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  .top_galleryArea.top_family .top_family_txt img {
    width: 80%;
  }
  .top_galleryArea.top_family .top_family_img {
    width: 90%;
    padding-top: 30px;
  }

  /* top_galleryArea.top_dog */
  .top_galleryArea.top_dog {
    -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
  }
  .top_galleryArea.top_dog .top_dog_img {
    width: 75%;
    padding-top: 30px;
    margin-left: -20px;
  }
  .top_galleryArea.top_dog .top_dog_txt {
    width: 100%;
  }

  /* top_galleryArea top_event */
  .top_galleryArea.top_event .top_event_img {
    width: 70%;
    padding-top: 0;
    margin-left: auto;
    margin-top: -20px;
  }
  .top_galleryArea.top_event .top_event_middleimg {
    width: 50%;
    padding-top: 4%;
    z-index: 1;
  }
  .top_galleryArea.top_event .top_event_txt {
    width: 100%;
  }

  /* top_galleryArea top_local */
  .top_galleryArea.top_local .top_local_txt {
    width: 100%;
  }
  .top_galleryArea.top_local .top_local_img {
    width: 90%;
    margin-right: -20px;
    margin-top: 20px;
  }

  /* img-box */
  .img-box .active {
    display: none;
  }

  #top_gallery h4 {
    margin-bottom: 1rem;
  }
  #top_gallery p {
    margin: 0;
  }
}

/*================================================
 *  top_contact
 ================================================*/
.top_contact_img {
  width: 55%;
}
.top_contact_txt {
  width: 40%;
  padding: 0 60px 0 0;
}

@media screen and (max-width:768px) {
  .top_contact_img {
      width: 100%;
    }
  .top_contact_txt {
    width: 100%;
    padding: 0 20px;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  padding: 70px 0 30px;
  font-size: 13px;
  background: rgb(255 255 255 / 20%);
}
footer .wrap {
  max-width: 1000px;
}
footer a {
  color: #2b4055;
}
footer .flex {
  margin-bottom: 50px;
}
footer ul li {
  line-height: 2.5;
}

.footer_left p {
  font-family: 'Maven Pro', sans-serif;
    font-size: 13px;
    line-height: 2.5;
}
.footer_left p img {
  width: 170px;
  display: block;
  margin: 0 auto;
}

/* footer_sns */
.footer_sns {
  text-align: center;
  background: #5580aa;
  color: #f8fafc;
  border: 1px solid #5580aa;
  padding: 25px 100px;
  line-height: 2.5;
  border-radius: 5px;
}
.footer_sns:hover {
  background: #f8fafc;
  color: #2b4055;
  opacity: 1;
}
.footer_sns span {
  font-family: 'Maven Pro', sans-serif;
  text-transform: capitalize;
  font-size: 20px;
}

/* footer_menu */
.footer_menu li {
  position: relative;
  margin-left: 20px;
}
.footer_menu li::before {
  position: absolute;
  content: "";
  top: 13px;
  left: -20px;
  border-top: solid 1px #2b4055;
  border-right: solid 1px #2b4055;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}


.copyright {
  font-size: 10px;
}
.copyright span.copyright_en {
  letter-spacing: 0.1em;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
}

@media screen and (max-width:768px) {
  footer {
    padding: 80px 0 30px;
  }
  footer .flex {
    margin-bottom: 30px;
  }
  /* footer_left */
  .footer_left {
    width: 100%;
    margin-bottom: 50px;
  }
  .footer_left p {
    text-align: center;
  }
  /* footer_sns */
  .footer_sns {
    width: 100%;
    padding: 15px 0px;
    line-height: 2;
    display: block;
  }
  /* footer_menu */
  .footer_menu {
    width: 100%;
    margin-top: 30px;
    padding: 0 20px;
  }
	.copyright {
    font-size: 10px;
  }
}


/*================================================
 *  pagetop
 ================================================*/
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
    overflow: visible!important;
    z-index: 100;
}
#pagetop .arrow-up {
	width: 20px;
  height: 20px;
  border: 1px solid;
  border-color: #2b4055 #2b4055 transparent transparent;
  transform: rotate(-45deg);
}

