@charset "utf-8";

/*----------------------------------------------------------------------------------------------
	base
----------------------------------------------------------------------------------------------*/
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .5s var(--easing);
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

body {
  position: relative;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #000;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  width: 100%;
  height: 100%;
  margin: auto;
}
#page_wrap {
  padding-top: 0;
  overflow: hidden;
}

a {
  -webkit-transition: .4s;
  transition: .4s;
}

a:link,
a:visited {
  color: #000;
  text-decoration: none;
}

a:hover,
a:active {
  color: #666;
  text-decoration: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

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

  100% {
    opacity: 1
  }
}

/*PCで表示させないセレクタ*/
#sp_header,
.tel-btn_sp {
  display: none;
}

.pc_hidden {
  display: none;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  -webkit-transition: .4s;
  transition: .4s;
}

/* .is_scroll #header {
  background-color: rgba(255, 255, 255, .4);
} */

.header__inner {
  position: relative;
  margin: 0 auto;
  padding: 25px 30px 0;
  height: 100px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  display: flex;
  justify-content: space-between;
}

.h__id {
  display: inline-block;
}

.h__id img {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.menu-btn {
  display: block;
  position: fixed;
  top: 26px;
  right: 20px;
  width: 70px;
  height: 60px;
  font-size: 11px;
  text-align: center;
  cursor: pointer;
  z-index: 1000000001;
  font-family: 'garamond';
  mix-blend-mode: difference;
}

.menu-btn span:after {
  /* content: attr(data-txt-menu); */
  letter-spacing: .1em;
  text-transform: uppercase;
}


/* 開閉用ボタンがクリックされた時のスタイル */
.is-open-menu .menu-btn span:after {
  /* content: attr(data-txt-close); */
  letter-spacing: .02em;
}


.is-open-menu .menu-btn {
  z-index: 1000000001;
}

.bar {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 51px;
  height: 1px;
  background: #ffffff;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.bar.middle {
  top: 21px;
  opacity: 1;
}

.bar.bottom {
  top: 15px;
  width: 32px;
  left: 18px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.menu-btn__text {
  position: absolute;
  bottom: -2px;
  width: 8px;
  left: 14px;
  /* right: initial; */
  margin: auto;
  color: #222;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: block;
  visibility: visible;
  opacity: 1;
}

.is-open-menu .menu-btn__text {
  color: #222;
}

@media screen and (max-width:800px) {
  .is-open-menu .menu-btn__text {
    color: #ffffff;
  }
}

.is-open-menu .menu-btn .bar.top {
  /* background: #000; */
  width: 51px;
  top: 4px;
  left: -7px;
  -webkit-transform: rotate(25deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
}

.is-open-menu .menu-btn .bar.middle {
  opacity: 0;
}

.is-open-menu .menu-btn .bar.bottom {
  /* background: #000; */
  width: 51px;
  top: 18px;
  left: -7px;
  -webkit-transform: rotate(-25deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

@media screen and (max-width:800px) {
  .l-h__links__menu2 {
    display: none;
  }

  .menu-btn {
    display: block;
    top: 0;
    right: 0;
    width: 60px;
    height: 80px;
  }

  .bar {
    position: absolute;
    top: 20px;
    left: 0;
    width: 44px;
    /* background: #8A8A89; */
    /* height: 2px; */
  }

  .bar.middle {
    top: 40px;
    opacity: 1;
  }

  .bar.bottom {
    top: 30px;
    left: 12px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  .is-open-menu .menu-btn .bar.top {
    /* background: #8A8A89; */
    width: 44px;
    top: 19px;
    left: -4px;
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  .is-open-menu .menu-btn .bar.middle {
    opacity: 0;
  }

  .is-open-menu .menu-btn .bar.bottom {
    /* background: #8A8A89; */
    width: 44px;
    top: 31px;
    left: -4px;
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }

  .l-h__links__menu2_sp {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
  }

  .is-open-menu .l-h__links__menu2_sp {
    display: none;
    opacity: 1;
    transform: translateY(0%);
    transition: opacity 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 1000ms;
  }

  .l-h__links__menu2_sp .h__links__menu2__btn {
    width: 100%;
  }

  a.c-req-btn2 {
    display: block;
    position: relative;
    text-align: center;
    padding: 0 20px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.2em;
    height: 45px;
    line-height: 45px;
    border-radius: 0;
    background: #950a0a;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }

}

/* #gnavi */

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
nav
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.l-sitemenu {
  display: block;
  width: 360px;
  height: 100%;
  overflow: hidden;
  color: #fff;
  background-color: rgb(0 0 0 / 70%);
  backdrop-filter: blur(10px);
  position: fixed;
  right: 0;
  top: 109px;
  z-index: 1000000000;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: all .5s;
}

.is_top .l-sitemenu {
  top: 0;
}

.l-h__links__menu2_sp {
  display: none;
}

@media screen and (max-width:800px) {
  .l-sitemenu {
    width: 100%;
    height: 100%;
    top: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .is_top .l-sitemenu {
    top: 0;
  }
}

.is-open-menu .l-sitemenu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}

.l-sitemenu__body {
  display: block;
  width: 360px;
  height: 100%;
  background-color: rgb(0 0 0 / 80%);
  position: relative;
  display: flex;
  justify-content: center;
  padding: 120px 30px 0;
  overflow-y: auto;
  /* backdrop-filter: blur(15px); */
}

.l-sitemenu__body_inner {
  width: 100%;
  position: relative;
}

@media screen and (max-width:800px) {
  .l-sitemenu__body {
    align-items: inherit;
    padding-top: 70px;
    padding: 100px 0 0;
    width: 100%;
  }

  .l-sitemenu__body_inner {
    width: 86%;
    position: relative;
  }
}

.l-sitemenu__menu_set {
  flex-direction: column;
}

.l-sitemenu__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%
}

.sitemenu__logo {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-10%);
  text-align: center;
}

.sitemenu__logo img {
  height: clamp(50px, 9vh, 96px);
  width: auto;
}

.l-sitemenu__menu {
  font-size: 16px;
}

.l-sitemenu__menu li {
  opacity: 0;
  transform: translateX(-10%);
  border-bottom: 1px solid #3b3b3b;
}


@media screen and (max-width:800px) {
  .l-sitemenu__menu {
    font-size: 15px;
  }

  .sitemenu__logo img {
    height: 65px;
    width: auto;
  }
}

.is-open-menu .l-sitemenu__menu li,
.is-open-menu .sitemenu__logo {
  opacity: 1;
  transform: translateX(0%);
  transition: opacity 500ms cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-open-menu .sitemenu__logo {
  transition-delay: 350ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(1) {
  transition-delay: 400ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(2) {
  transition-delay: 450ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(3) {
  transition-delay: 500ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(4) {
  transition-delay: 550ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(5) {
  transition-delay: 600ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(6) {
  transition-delay: 650ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(7) {
  transition-delay: 700ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(8) {
  transition-delay: 750ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(9) {
  transition-delay: 800ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(10) {
  transition-delay: 850ms;
}

.is-open-menu .l-sitemenu__menu li:nth-child(11) {
  transition-delay: 900ms;
}

.l-sitemenu__menu li a {
  display: flex;
  padding: .8em 0 .8em;
  color: #e9e9e9;
  align-items: center;
  position: relative;
  flex-direction: row;
  gap: 8px;
}

.l-sitemenu__menu li a:hover {
  color: #d25309;
  padding: .8em 0 .8em .8em;
}

.l-sitemenu__menu li a.is-uc {
  opacity: .4;
  pointer-events: none;
}

.l-sitemenu__menu li:nth-child(2) a,
.l-sitemenu__menu li:nth-child(3) a,
.l-sitemenu__menu li:nth-child(4) a,
.l-sitemenu__menu li:nth-child(5) a,
.l-sitemenu__menu li:nth-child(6) a{
  padding: .8em 0 .8em 1em;
}

.l-sitemenu__menu li:nth-child(2) a:hover,
.l-sitemenu__menu li:nth-child(3) a:hover,
.l-sitemenu__menu li:nth-child(4) a:hover,
.l-sitemenu__menu li:nth-child(5) a:hover,
.l-sitemenu__menu li:nth-child(6) a:hover {
  padding: .8em 0 .8em 1.8em;
}

.h__links__menu2__btn {
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-10%);
}

.is-open-menu .h__links__menu2__btn {
  opacity: 1;
  transform: translateX(0%);
  transition: opacity 500ms cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 800ms;
}

.h__links__menu2__btn a:hover {
  filter: brightness(1.2);
}

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

  .l-sitemenu__menu li a {
    padding: 1.0em 0 1.0em;
  }

  .l-sitemenu__menu li a:hover {
    padding: 1.2em 0 0.8em;
  }

  .l-sitemenu__menu li a::after {
    right: 5%;
  }
}

.sitemenu__btn.is-uc {
  opacity: .5;
}

.sitemenu__btn.is-uc a {
  pointer-events: none;
}


/*----------------------------------------------------------------------------------------------
	top
----------------------------------------------------------------------------------------------*/

.data_notes {
  font-size: 10px;
}

/*----------------------------------------------------------------------------------------------
	footer area
----------------------------------------------------------------------------------------------*/


.footer_notes {
  margin-top: 60px;
  padding: 0 15px;
}

.footer {
  width: 100%;
  margin-top: 140px;
  padding-top: 50px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  background: #fff;
  border-top: .5px solid #000;
}

.f__id01_set {
  width: clamp(200px, 90%, 940px);
  display: flex;
  margin-inline: auto;
  gap: 55px;
  justify-content: center;
  align-items: center;
}

.f__id_sumai {width: 90%;}

.f__tel_set {
  text-align: justify;
}

.f__txt {
  font-size: 15px;
  margin-top: 1em;
  /* text-align: center; */
  margin-left: -.6em;
}


.f_copyright {
  font-size: 12px;
  margin-top: 4em;
  display: block;
}


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

  .footer {
    margin-top: 60px;
    padding-bottom: 90px;
    padding-top: 40px;
  }

  .footer.fadeAnim {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .f__id01_set {
    margin-top: 0;
    width: 90%;
    flex-direction: column;
    gap: 30px;
  }
  .f__id_sumai {
	margin: 0 5%;
  }
  .f__tel {
	margin: 0 3% 0 3%;
  }
  .f__tel_set {
	text-align: center;
  }
  .f__txt {
	  font-size: 3.4vw;
	  line-height: 1.8;
	 } 
  .f_copyright {
    font-size: 10px;
    margin-top: 4em;
    display: block;
  }

}


/*----------------------------------------------------------------------------------------------
	COMMON
----------------------------------------------------------------------------------------------*/
.row:after,
.col:after {
  content: "";
  display: block;
  clear: both;
}

.col {
  display: block;
  float: left;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.ctb {
  text-align: center;
}

.ac {
  text-align: center;
}

.al {
  text-align: left;
}

.ar {
  text-align: right;
}

a.hover img {
  -webkit-transition: .4s;
  transition: .4s;
}

a.hover:hover img {
  opacity: 0.7;
}

.soon_bana {
  background: #333;
}

.soon_bana img {
  opacity: 0.5;
}

#nav-dock {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 0;
  right: 0;
}

#nav-dock a {
  width: 50px;
  height: 50px;
  display: block;
  text-indent: -9999px;
  background-image: url(../img/btn_pagetop.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover;
}

#nav-dock a:hover {
  opacity: 0.7;
}

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

.full_w_img img,
img.full_w_img {
  width: 100%;
  height: auto;
}

.fs_s {
  font-size: .8em;
}

.fs_ss {
  font-size: .6em;
}

sup {
  font-size: 70%;
  vertical-align: super;
}

.img_base {
  position: relative;
}

#nav-top {
  width: 150px;
  height: 44px;
  position: fixed;
  bottom: 120px;
  right: 50px;
}

.uline_red {
  color: #C8161D;
  text-decoration: underline;
}

.text-s {
  font-size: 12px !important;
}

.text-ss {
  font-size: 10px !important;
}

.fx {
  display: -webkit-box;
  /*Android4.3*/
  display: -moz-box;
  /*Firefox21*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
}

.fx-al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.fx-al-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.fx-al-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.fx-js-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.fx-js-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.fx-js-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.fx-js-around {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.fx-js-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

@media screen and (max-width:800px) {
  .fx-xs-column {
    flex-direction: column;
  }
}

/* ===================================================================
//animation
=================================================================== */
.pageHddAnim {
  opacity: 0 !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.pageHddAnim.is_view {
  opacity: 1 !important;
}

.fadeAnim {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnim.is_view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadeAnimB {
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimB.is_view {
  opacity: 1;
}

.fadeAnimC {
  opacity: 1;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimC.is_hide {
  opacity: 0;
}

.fadeAnimRightIn {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimRightIn.is_view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadeAnimLeftIn {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimLeftIn.is_view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.delay01 {
  -webkit-transition-delay: .1s !important;
  transition-delay: .1s !important;
}

.delay02 {
  -webkit-transition-delay: .2s !important;
  transition-delay: .2s !important;
}

.delay03 {
  -webkit-transition-delay: .3s !important;
  transition-delay: .3s !important;
}

.delay04 {
  -webkit-transition-delay: .4s !important;
  transition-delay: .4s !important;
}

.delay05 {
  -webkit-transition-delay: .5s !important;
  transition-delay: .5s !important;
}

.delay06 {
  -webkit-transition-delay: .6s !important;
  transition-delay: .6s !important;
}

.delay07 {
  -webkit-transition-delay: .7s !important;
  transition-delay: .7s !important;
}

.delay08 {
  -webkit-transition-delay: .8s !important;
  transition-delay: .8s !important;
}

.delay09 {
  -webkit-transition-delay: .9s !important;
  transition-delay: .9s !important;
}

.delay015 {
  -webkit-transition-delay: .15s !important;
  transition-delay: .15s !important;
}

.delay025 {
  -webkit-transition-delay: .25s !important;
  transition-delay: .25s !important;
}

.delay035 {
  -webkit-transition-delay: .35s !important;
  transition-delay: .35s !important;
}

.delay075 {
  -webkit-transition-delay: .75s !important;
  transition-delay: .75s !important;
}

.delay1 {
  -webkit-transition-delay: 1s !important;
  transition-delay: 1s !important;
}

.delay15 {
  -webkit-transition-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.animImg {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg * {
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: #000;
}

.animImg.is_view::before {
  -webkit-animation: animImgMask 1s ease;
  -moz-animation: animImgMask 1s ease;
  animation: animImgMask 1s ease;
}

@-webkit-keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

@-moz-keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

@keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

.animImg img {
  opacity: 0;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg.is_view img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 光らせるためのstyle */
.shine {
  position: relative;
  overflow: hidden;
  display: block;
}

/* 光の疑似要素 */
.shine::before {
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #afbec5;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}

/* 光の動き */
@keyframes shine {
  0% {
    left: -160%;
    opacity: 0;
  }

  70% {
    left: -160%;
    opacity: 0.5;
  }

  71% {
    left: -160%;
    opacity: 1;
  }

  100% {
    left: -20%;
    opacity: 0;
  }
}

/**********
//fadeText
**********/
.fadeText>span {
  opacity: 0;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.fadeText>span.is_view {
  opacity: 1;
}

.fadeText>span:nth-child(3n+1) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

.fadeText>span:nth-child(2n) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}
