/*----------------------------------
	Common HTML elements and more for easier usage
------------------------------------*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --color-white:                  #ffffff;
  --color-primary:                #ff273b;
  --color-secondary:              #ffce00;
  
  --color-red:                    #c54041;
  --color-gold:                   #b99769;
  --color-blueviolet:             #9877ea; 
  
  --color-black:                  #000000;
  --color-dark:                   #222324;
  --color-dark-light:             #2f3132;
  --color-gray-lighter:           #aeaeae;
  --color-gray-light:             #cecece;
  --color-sky-light-dash:         #d5e2e6;
  --color-sky-light:              #f5f8f9;
  
  --color-heading:                #242424;
  --color-text:           		  #333333;
  
  --title-color:                  #565758;
  --p-color:                      #717275;
  
  --body-font-family:             shippori-mincho, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

  --h1-font-size:                 48px;
  --h2-font-size:                 36px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;

  --font-weight-light:            400;
  --font-weight-normal:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             800;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
html {
  overflow-x: hidden;
}

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1rem;
  font-family: var(--body-font-family);  
  font-family:shippori-mincho, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
  line-height: 1.8;
  background-color:var(--color-white);
  letter-spacing:0.02em;
  -webkit-print-color-adjust: exact;
}



/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  color: var(--color-dark);
  margin-top: 0;
  margin-bottom: .5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--color-heading);
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 a:focus, h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  color: var(--color-primary);
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

em,
l,
i {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-heading);
  font-style:normal;
}

em > a,
li > a {
  color: var(--color-heading);
}

em > a:hover,
li > a:hover {
  color: var(--color-primary);
}

small {
  color: #656565;
}

label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: .25rem;
}


/* graph */
p {
  font-size: 0.9375rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  /*line-height: 1.6;*/
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
}

a:focus, a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

a:focus {
  outline: none;
}




/*----------------------------------
  ふわっと表示
------------------------------------*/
#loader-bg {
    /*background:url(../img/bg_white_paperboard.jpg) #eee fixed; */
    background:var(--color-dark); 
    background:#000; 
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10000;
}
#loader-bg img {	
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10000 !important; ;
}


/*----------------------------------
  ホバーで画像少し拡大
------------------------------------*/

.imgWrap {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	background: var(--color-white);
}
.imgWrap img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.imgWrap img:hover {
	transform: scale(1.05);	/*画像の拡大率*/
	transition-duration: 0.5s;	/*変化に掛かる時間*/
	opacity: 0.7;	/* 小さくするほど暗くなります */
}


/*----------------------------------
  ホバーで画像少し拡大（モノクロ）＆画像サムネイルならべ
------------------------------------*/

.imgWrapB {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	background: var(--color-black);
	width: 100%;
	height: 100%;
}
.imgWrapB img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.imgWrapB img:hover {
	filter: grayscale(100%);
	transform: scale(1.05);	/*画像の拡大率*/
	transition-duration: 0.5s;	/*変化に掛かる時間*/
}

.square_contents {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.square_contents div {
  position: relative;
  width: 25%;
  background: #fff;
}
/* smサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
.square_contents div {width: 33.3333%;}
}
/* xsサイズ、スマホ横持ち、タブレット : Small Devices, Tablets */
@media only screen and (max-width : 767px) {
.square_contents div {width: 50%;}
}
/* xxsサイズ :　スマホ縦持ち Extra Small Devices, Phones */  
@media only screen and (max-width : 479px) {
.square_contents div {width: 100%;}
}
.square_contents div::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.square_contents p.pimg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.square_contents .ptext {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translate(-50%,-50%);
  color:#FFF;
  background-color:rgb(255,255,255,0.8);
  width:100%;
  text-align:center;
  padding:0;
  margin:0;
}
/*----------------------------------
  ホバーで下線がでる
------------------------------------*/

.Ulink{
  text-decoration: none;
}

.Ulink-Text{
  position: relative;
 /* z-index: 1;*/
}
.Ulink-Text:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;/*テキストからの距離*/
  width: 0%;/*初期状態では下線非表示*/
  height: 2px;/*下線の高さ*/
  background: var(--color-primary);/*下線の色*/
  z-index: -1;
  transition: all 0.4s;/*アニメーション速度*/
}
.Ulink:hover .Ulink-Text:after{
  width: 100%;/*hover時に表示*/
  color:var(--color-black);
}

/*----------------------------------
  カーテンスライド
  c-slide.js
------------------------------------*/
.c-box {
  width: 100%;
  /*height: 200px;*/
  margin: 0 0 2% 0;
  overflow: hidden;
}

.c-box .c-boxIn, .c-box .c-boxIn2{
  width: inherit;
  height: inherit;
  font-size: 1.5em;
  text-align: center;
  opacity: 0;
}

/*「boxInner」をスライドインする*/
@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}
@keyframes play2 {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes playsmall {
  from {
    transform: translateX(-80%);
  }
  
  to {
    transform: translateX(0);
  }
}

/*マスク要素をスライドアウトする*/
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}

/*スライドインを動作するclass*/
.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
.isPlay2 {
  animation-name: play2;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
  
.isPlayS { 
  animation-name: playsmall;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,.3,.5,1);
  position: relative;
  opacity: 1 !important;
}

/*isPlayの疑似要素にマスクとマスクを外すアニメーションを設定 */
.isPlay:before{
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient( 109.6deg,  rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% );*/
  background:#000;
}
.isPlay2:before{
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient( 109.6deg,  rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% );*/
  background:var(--color-primary);
}





/*----------------------------------
  スワイプ画像少し拡大
------------------------------------*/

@-webkit-keyframes zoomUp {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  100% {
      -webkit-transform: scale(1.12);
      transform: scale(1.12);
  }
}

@keyframes zoomUp { /* 1.15倍させる指定 */
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  100% {
      -webkit-transform: scale(1.14);
      transform: scale(1.14);
  }
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img { /* 12秒かけて拡大させる */
    -webkit-animation: zoomUp 7s linear 0s;
    animation: zoomUp 7s linear 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slide-img {
    background-size: cover; 
    background-position: top right; 
    height: 100%;
}

.slide-text {
position: absolute;
z-index: 10;
font-size: 4rem;
color: var(--color-white);
width: 100%;
top: 25%;
text-align: center;
font-weight: bold;
}

/*@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoomUp 10s linear 0s 1 normal both;  
}

//imgタグだと下に隙間ができるのでblockに。
.slide-img img{
  display: block;
}
*/


/* 背景画像 */

.he01{background: url('../img/header01.jpg');}	
.he02{background: url('../img/header02.jpg');}	
.he03{background: url('../img/header03.jpg');}	
.he04{background: url('../img/header04.jpg');}	

/* smサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (max-width : 991px) {}

/* xsサイズ、スマホ横持ち、タブレット : Small Devices, Tablets */
@media only screen and (max-width : 767px) {}

/* xxsサイズ :　スマホ縦持ち Extra Small Devices, Phones */  
@media only screen and (max-width : 479px) {
.he01{background: url('../img/sp_header01.jpg');}
.he02{background: url('../img/sp_header02.jpg');}
.he03{background: url('../img/sp_header03.jpg');}
.he04{background: url('../img/sp_header04.jpg');}
}
	



/*----------------------------------
  その他
------------------------------------*/

.pc { display: inline-block;}
.sp { display: none ; }

/* xxsサイズ :　スマホ縦持ち Extra Small Devices, Phones */  
@media only screen and (max-width : 479px) {
.pc { display: none !important; }
.sp { display: inline-block !important; }
/*img { max-width: 100%; }*/
}
.bred{
	background-color:#F33;
}

.bblue{
	background-color:#33F;
}


.yellow_line {background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff99 0%) repeat scroll 0 0;}
.green_line {background:rgba(0, 0, 0, 0) linear-gradient(transparent 70%, #c9f381 0%) repeat scroll 0 0;}



.d-line{
  /*background-color: var(--color-white);*/
  background-image:
  linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, var(--color-white) 0%, var(--color-white) 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 95%, var(--color-primary) 100%);/*95%太さ;*/
  background-size: 8px 100%,100% 2em; /*2em揃える;*/
  line-height: 2em; /*2em揃える;*/
  padding: 2em 1em 0.2em 1em;
}


.d-line2{
  /*background-color: var(--color-white);*/
  background-image:
  linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #efddc5 0%, #efddc5 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 93%, var(--color-primary) 100%);/*95%太さ;*/
  background-size: 8px 100%,100% 2em; /*2em揃える;*/
  line-height: 2em; /*2em揃える;*/
  padding: 2em 1em 0.2em 1em;
}

/*----------------------------------
  Selection
------------------------------------*/
::selection {
  color: var(--color-white);
  background: var(--color-primary);
  text-shadow: none;
}

::-webkit-selection {
  color: var(--color-white);
  background: var(--color-primary);
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}

/*----------------------------------
  Button
------------------------------------*/
.s-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn:focus, .s-btn:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn.focus {
  text-decoration: none;
}

.s-btn:active, .s-btn.active {
  background-image: none;
  outline: 0;
}

.s-btn.disabled, .s-btn:disabled,
fieldset[disabled] .s-btn {
  cursor: not-allowed;
  opacity: .65;
}

.s-btn__element--left, .s-btn__element--right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

/* Sizes
------------------------------ */
.s-btn--xs {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
}

.s-btn--sm {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
}

.s-btn--md {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
}

.s-btn-icon--md {
  font-size: 1rem;
  padding: 0.9375rem 1.5625rem 0.75rem;
}

/* Styles
------------------------------ */
.s-btn--white-brd {
  color: var(--color-white);
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-white);
}

.s-btn--white-brd:focus, .s-btn--white-brd:hover {
  color: var(--color-dark);
  background: var(--color-white);
  border-color: var(--color-white);
}

.s-btn--white-bg {
  color: var(--color-dark);
  background: var(--color-white);
}

.s-btn--white-bg:focus, .s-btn--white-bg:hover {
  color: var(--color-primary);
  background: var(--color-white);
}

.s-btn--dark-bg {
  color: var(--color-white);
  background: var(--color-dark);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-dark);
}

.s-btn--dark-bg:focus, .s-btn--dark-bg:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.s-btn--dark-brd {
  color: var(--color-dark);
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-dark);
}

.s-btn--dark-brd:focus, .s-btn--dark-brd:hover {
  color: var(--color-white);
  background: var(--color-dark);
  border-color: var(--color-dark);
}

.s-btn--primary-bg {
  color: var(--color-white);
  background: var(--color-primary);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-primary);
}

.s-btn--primary-bg:focus, .s-btn--primary-bg:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.s-btn--primary-brd {
  color: var(--color-primary);
  background: transparent;
  background-color: var(--color-white);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-primary);
}
.s-btn--primary-brd:focus, .s-btn--primary-brd:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}


.s-btn--secondary-bg {
  color: var(--color-black);
  background: var(--color-secondary);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-secondary);
}

.s-btn--secondary-bg:focus, .s-btn--secondary-bg:hover {
  color: var(--color-white);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.s-btn--secondary-brd {
  color: var(--color-secondary);
  background: transparent;
  background-color: var(--color-white);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-secondary);
}
.s-btn--secondary-brd:focus, .s-btn--secondary-brd:hover {
  color: var(--color-white);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}



.s-btn--gold-bg {
  color: var(--color-white);
  background: #B89669;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #B89669;
}
.s-btn--gold-bg:focus, .s-btn--gold-bg:hover {
  color: var(--color-white);
  background: #B89669;
  border-color: #B89669;
}
.s-btn--gold-brd {
  color: #B89669;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #B89669;
}
.s-btn--gold-brd:focus, .s-btn--gold-brd:hover {
  color: var(--color-white);
  background: #B89669;
  border-color: #B89669;
}


.s-btn-icon--white-brd {
  border-left: none;
}

.s-btn-icon--dark-brd {
  border-left: none;
}

/*----------------------------------
  Clients v1
------------------------------------*/
.s-clients-v1 {
  display: block;
  width: 6.25rem;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  cursor: pointer;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-clients-v1:hover {
  opacity: .8;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/*----------------------------------
  FAQ
------------------------------------*/
.s-faq__pseudo {
  position: relative;
}

.s-faq__pseudo:before {
  position: absolute;
  left: 12.5rem;
  bottom: -1rem;
  z-index: -1;
  font-size: 9.375rem;
  font-family: satisfy, serif;
  font-family: eb-garamond, source-han-serif-japanese, serif;
  color: rgba(245, 248, 249, 0.8);
  content: "\0026";
}

.s-faq-grid__divider {
  display: block;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  margin: .3125rem 0;
}

.s-faq-grid__title {
  font-size: 1.2rem;
  /*color: var(--color-white);*/
  margin: .3125rem 0 0 .5rem;
  margin: .3125rem 0 0 3rem;
}

.s-faq .cbp-caption {
  border-bottom: none;
}

/*----------------------------------
  Form Input
------------------------------------*/
/* Form Input v1 */
.s-form-v1__input {
  height: 3.375rem;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 300;
  background: transparent;
  border-color: var(--color-white);
  border-right: none;
  box-shadow: none;
  letter-spacing: .1rem;
  /*text-transform: uppercase;*/
  padding: .625rem 2.5rem;
}

.s-form-v1__input::-webkit-input-placeholder {
  color: var(--color-white);
}

.s-form-v1__input::-moz-placeholder {
  color: var(--color-white);
}

.s-form-v1__input:-ms-input-placeholder {
  color: var(--color-white);
}

.s-form-v1__input::placeholder {
  color: var(--color-white);
}

.s-form-v1__input:focus {
  box-shadow: none;
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

/* Form Input v2 */
.s-form-v2__input {
  height: 3.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: #656565;
  border: none;
  box-shadow: none;
  letter-spacing: .1rem;
  /*text-transform: uppercase;*/
  padding: .625rem 1.25rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v2__input::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v2__input::-moz-placeholder {
  color: #656565;
}

.s-form-v2__input:-ms-input-placeholder {
  color: #656565;
}

.s-form-v2__input::placeholder {
  color: #656565;
}

.s-form-v2__input:focus {
  font-weight: 400;
  color: #656565;
  box-shadow: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v2__input:focus::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v2__input:focus::-moz-placeholder {
  color: #656565;
}

.s-form-v2__input:focus:-ms-input-placeholder {
  color: #656565;
}

.s-form-v2__input:focus::placeholder {
  color: #656565;
}

/* Form Input v3 */
.s-form-v3__input {
  position: relative;
  height: 3.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.5);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: .1rem;
  /*text-transform: uppercase;*/
  padding: 0 1.25rem 0 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v3__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input:focus {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.99);
  box-shadow: none;
}

.s-form-v3__input:focus::-webkit-input-placeholder {
  color: var(--color-white);
}

.s-form-v3__input:focus::-moz-placeholder {
  color: var(--color-white);
}

.s-form-v3__input:focus:-ms-input-placeholder {
  color: var(--color-white);
}

.s-form-v3__input:focus::placeholder {
  color: var(--color-white);
}

/* Form Input v4 */
.s-form-v4__input {
  position: relative;
  height: 3.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(34, 35, 36, 0.5);
  border: none;
  border-bottom: .0625rem solid;
  background: rgba(34, 35, 36, 0.3);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: .1rem;
  /*text-transform: uppercase;*/
  padding: 0 1.25rem .3125rem 1rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v4__input::-webkit-input-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input::-moz-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input:-ms-input-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input::placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input:focus {
  color: var(--color-dark);
  border-color: var(--color-dark);
  box-shadow: none;
}

.s-form-v4__input:focus::-webkit-input-placeholder {
  color: var(--color-dark);
}

.s-form-v4__input:focus::-moz-placeholder {
  color: var(--color-dark);
}

.s-form-v4__input:focus:-ms-input-placeholder {
  color: var(--color-dark);
}

.s-form-v4__input:focus::placeholder {
  color: var(--color-dark);
}

.s-form-v4__icon {
  font-size: 1.125rem;
  color: rgba(34, 35, 36, 0.7);
  border-bottom: 0.0625rem solid var(--color-dark);
  padding: 0 .75rem .95rem;
}

/* Form Input v5 */
.s-form-v5__input {
  height: 3.375rem;
  color: #656565;
  font-size: 0.875rem;
  font-weight: 300;
  background: transparent;
  border-color: var(--color-dark);
  border-right: none;
  box-shadow: none;
  letter-spacing: .1rem;
  /*text-transform: uppercase;*/
  padding: .625rem 2.5rem;
}

.s-form-v5__input::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v5__input::-moz-placeholder {
  color: #656565;
}

.s-form-v5__input:-ms-input-placeholder {
  color: #656565;
}

.s-form-v5__input::placeholder {
  color: #656565;
}

.s-form-v5__input:focus {
  color: var(--color-dark);
  box-shadow: none;
  border-color: var(--color-dark);
}

.s-form-v5__input:focus::-webkit-input-placeholder {
  color: var(--color-dark);
}

.s-form-v5__input:focus::-moz-placeholder {
  color: var(--color-dark);
}

.s-form-v5__input:focus:-ms-input-placeholder {
  color: var(--color-dark);
}

.s-form-v5__input:focus::placeholder {
  color: var(--color-dark);
}

/*----------------------------------
  Icons
------------------------------------*/
.s-icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-icon:focus, .s-icon:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Sizes
------------------------------ */
.s-icon--sm {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8125rem;
  padding: 0.6875rem;
}

.s-icon--md {
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.125rem;
  padding: 0.75rem;
}

.s-icon--lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.625rem;
  padding: 0.5625rem 1rem;
}

/* Styles
------------------------------ */
.s-icon--white-brd {
  color: var(--color-white);
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-white);
  line-height: 1.4;
}

.s-icon--white-brd:focus, .s-icon--white-brd:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.s-icon--white-bg {
  color: var(--color-dark);
  background: var(--color-white);
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-white);
  line-height: 1.4;
}

.s-icon--white-bg:focus, .s-icon--white-bg:hover {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--color-white);
}

.s-icon--primary-brd {
  color: var(--color-primary);
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: var(--color-primary);
  line-height: 1.4;
}

.s-icon--primary-brd:focus, .s-icon--primary-brd:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.s-icon--primary-bg {
  color: var(--color-white);
  background: var(--color-primary);
  line-height: 1.6;
}

/*----------------------------------
  Promo Block
------------------------------------*/
/* Promo Block v1 */
.s-promo-block-v1__square-effect {
  position: relative;
}

.s-promo-block-v1__square-effect:before {
  position: absolute;
  top: -5rem;
  left: -1.875rem;
  width: 18.75rem;
  height: 10.9375rem;
  border: .625rem solid;
  border-color: rgba(255, 255, 255, 0.2);
  content: " ";
}

.s-promo-block-v1__square-effect:after {
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: 9.375rem;
  height: 9.375rem;
  border: .625rem solid;
  z-index: -1;
  border-color: rgba(108, 184, 237, 0.9);
  content: " ";
}

/* Promo Block v2 */
.s-promo-block-v2 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v2:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(145deg, rgba(152, 119, 234, 0.7) -25%, var(--color-primary) 100%);
  background-repeat: repeat-x;
  content: " ";
}

.s-promo-block-v2__form {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 61.9em) {
  .s-promo-block-v2__form {
    position: static;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Promo Block v3 */
.s-promo-block-v3__divider {
  position: relative;
  padding-bottom: 1.875rem;
}

.s-promo-block-v3__divider:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0.1875rem;
  background-image: linear-gradient(145deg, rgba(152, 119, 234, 0.9) -25%, var(--color-primary) 100%);
  background-repeat: repeat-x;
  content: " ";
}

.s-promo-block-v3__date {
  line-height: .8;
  margin-right: 1rem;
}

.s-promo-block-v3__month, .s-promo-block-v3__year {
  display: block;
  line-height: 1.3;
}

.s-promo-block-v3__month {
  vertical-align: top;
}

/* Promo Block v4 */
.s-promo-block-v4 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v4:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(34, 35, 36, 0.3) 0%, rgba(19, 177, 205, 0.6) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v5 */
.s-promo-block-v5 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v5:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(28, 123, 172, 0.93) 0%, rgba(19, 177, 205, 0.93) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v6 */
.s-promo-block-v6 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v6:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-180deg, rgba(28, 123, 172, 0.1) 0%, var(--color-primary) 80%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v7 */
.s-promo-block-v7 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v7:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(145deg, rgba(19, 177, 205, 0.97) 0%, rgba(152, 119, 234, 0.97) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/*----------------------------------
  Mockup
------------------------------------*/
/* Mockup v1 */
.s-mockup-v1 {
  position: relative;
  width: 55rem;
  height: auto;
  z-index: 1;
}

@media (max-width: 61.9em) {
  .s-mockup-v1 {
    width: 100%;
    height: auto;
  }
}

/* Mockup v2 */
.s-mockup-v2 {
  position: absolute;
  left: 6.25rem;
  bottom: 6.25rem;
  width: 25rem;
  height: auto;
}

@media (max-width: 33.9em) {
  .s-mockup-v2 {
    display: none;
  }
}

@media (min-width: 34em) {
  .s-mockup-v2 {
    position: absolute;
    left: 0.625rem;
    bottom: 0.625rem;
    width: 18.75rem;
    height: auto;
  }
}

@media (min-width: 48em) {
  .s-mockup-v2 {
    position: absolute;
    left: 5rem;
    bottom: 5rem;
    width: 18.75rem;
    height: auto;
  }
}

/*----------------------------------
  Plan
------------------------------------*/
/* Plan v1 */
.s-plan-v1 {
  box-shadow: 0.625rem 0.625rem 0.9375rem 0 rgba(31, 31, 31, 0.075);
}

.s-plan-v1__price-mark, .s-plan-v1__price-tag {
  color: var(--color-primary);
}

.s-plan-v1__price-mark {
  font-size: 1.375rem;
  vertical-align: top;
}

.s-plan-v1__price-tag {
  font-size: 1.875rem;
  line-height: 1.1;
}

/* Plan v2 */
@media (min-width: 62em) {
  .s-plan-v2__main {
    position: relative;
    z-index: 1;
    box-shadow: 0 -1.25rem 3.125rem 0 rgba(34, 35, 36, 0.05);
    margin-top: -.4375rem;
  }
}

/*----------------------------------
  Process v1　v2
------------------------------------*/
.s-process-v1, .s-process-v2 {
  position: relative;
}

.s-process-v1:before, .s-process-v2:before {
  position: absolute;
  top: 3.125rem;
  left: 60%;
  width: 80%;
  height: 0.0625rem;
  content: " ";
  margin-top: -.03125rem;
}
.s-process-v1:before{
	background: rgba(255, 255, 255, 0.2);
}
.s-process-v2:before{
	  top: 2.125rem;
	background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 47.9em) {
  .s-process-v1:before,  .s-process-v2:before {
    display: none;
  }
}

.s-process-v1:last-child:before, .s-process-v2:last-child:before {
  display: none;
}

/*----------------------------------
  Scroll To Section
------------------------------------*/
/* Scroll To Section v1 */
.s-scroll-to-section-v1--bc {
  position: absolute;
  left: 50%;
  bottom: 0.625rem;
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  text-align: center;
}

/*----------------------------------
  Team v1
------------------------------------*/
.s-team-v1 {
  position: relative;
  cursor: pointer;
}

.s-team-v1:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-team-v1:hover:before {
  box-shadow: 0 0 1.25rem 0.3125rem rgba(34, 35, 36, 0.07);
}

/*----------------------------------
  Video
------------------------------------*/
.s-video__bg {
  position: relative;
}

.s-video__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(145deg, rgba(103, 181, 241, 0.8) 0, rgba(152, 119, 234, 0.8) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Video v2 */
.s-video-v2__bg {
  position: relative;
}

.s-video-v2__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(34, 35, 36, 0.85);
  content: " ";
}

/*----------------------------------
  Header
------------------------------------*/
.s-header__navbar {
  background: transparent;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}



/* Container
------------------------------ */
.s-header__container {
  width: 100%;
  height: auto;
  display: table;
  padding: .75rem 1.875rem;
  padding: .3rem 1.875rem;
}

.s-header__container:before, .s-header__container:after {
  content: " ";
  display: table;
}

.s-header__container:after {
  clear: both;
}

.container-fluid {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}

/* Navbar Row
------------------------------ */
.s-header__navbar-row {
  position: relative;
  display: table-row;
  clear: both;
}

.s-header__navbar-row-col {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}

/* Logo
------------------------------ */
.s-header__logo {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: auto;
  float: left;
}

.s-header__logo-link {
  display: inline-block;
  padding: 1rem 0;
}

.s-header__logo-link:focus, .s-header__logo-link:hover {
  text-decoration: none;
}

.s-header__logo-img-default, .s-header__logo-img-shrink {
  display: block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__logo-img-default {
  opacity: 1;
}

.s-header__logo-img-shrink {
  position: absolute;
  top: 1rem;
  left: 0;
  opacity: 0;
}

@media (max-width: 61.9em) {
  .s-header__logo {
    width: auto;
    height: auto;
    float: left;
  }
}

/* Trigger
------------------------------ */
.s-header__trigger {
  position: relative;
  z-index: 9999;
  width: 3.125rem;
  height: 3.125rem;
  float: right;
  overflow: hidden;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Trigger Icon */
.s-header__trigger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 1.375rem;
  width:1.5rem;
  height: 0.0625rem;
  height: 0.1rem;
  background: var(--color-white);
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__trigger-icon:before, .s-header__trigger-icon:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}

.s-header__trigger-icon:before {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate3d(0, 0.4375rem, 0);
  transform: translate3d(0, 0.4375rem, 0);
}

.s-header__trigger-icon:after {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate3d(0, -0.4375rem, 0);
  transform: translate3d(0, -0.4375rem, 0);
}

.s-header__trigger--dark .s-header__trigger-icon {
  background: var(--color-dark);
}

.s-header__trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.s-header__trigger circle {
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}

/* Trigger Is Active Style */
.-is-active.s-header__trigger {
/*  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);*/
}

.-is-active .s-header__trigger-icon {
  background: var(--color-white);
  background: rgba(255, 255, 255, 0);
}

.-is-active .s-header__trigger-icon:before,
 .-is-active .s-header__trigger-icon:after {
  /*width: 50%;*/
/*  -webkit-transition: transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;*/
  background: var(--color-white);
}

.-is-active .s-header__trigger-icon:before {
  -webkit-transform: rotate(-45deg) translateY(0px);
  transform: rotate(-45deg);
}

.-is-active .s-header__trigger-icon:after {
  -webkit-transform: rotate(45deg) translateY(0px);
  transform: rotate(45deg);
}

.-is-active.s-header__trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}

/* Overlay
------------------------------ */
.s-header-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(34, 35, 36, 0);
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in 0.1s;
  transition: all 0.5s ease-in 0.1s;
}

.s-header-bg-overlay.-is-open {
  background: rgba(34, 35, 36, 0.8);
  visibility: visible;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Nav
------------------------------ */
.s-header__nav {
  height: 100%;
  padding: 7.5rem 0;
}

/* Menu List */
.s-header__nav-menu {
  width: 18.75rem;
  float: right;
  text-align: right;
  margin-bottom: 0;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu {
    width: 50%;
  }
}

@media (max-width: 33.9em) {
  .s-header__nav-menu {
    width: 100%;
    float: none;
  }
}

.s-header__nav-menu-item {
  padding: 0 0 0 5.625rem;
  margin-bottom: .3125rem;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu-item {
    padding-left: 0;
  }
}

.s-header__nav-menu-link {
　font-family: satisfy, serif;
  font-family: eb-garamond, source-han-serif-japanese, serif;
  display: inline-block;
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--color-white);
  opacity: .75;
  padding: .3125rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.s-header__nav-menu-link span {
  font-family: eb-garamond, source-han-serif-japanese, serif;
  color: var(--color-primary);
}


.s-header__nav-menu-link-divider {
  position: relative;
}

.s-header__nav-menu-link-divider:before {
  position: absolute;
  top: 50%;
  right: -2.5rem;
  width: 2.1875rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0);
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider[href]:focus, .s-header__nav-menu-link-divider[href]:hover {
  color: var(--color-white);
}

.s-header__nav-menu-link-divider[href]:hover:before {
  right: 0;
  background: white;
}

.s-header__nav-menu-link-divider:focus, .s-header__nav-menu-link-divider:hover {
  color: var(--color-white);
}

.s-header__nav-menu-link-divider:hover {
  opacity: 1;
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active {
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active:before {
  right: 0;
  background: white;
}

/* Action
------------------------------ */
.s-header__action {
  margin-bottom: 0;
}

.s-header__action--lb {
  position: absolute;
  left: 1.875rem;
  bottom: 1.875rem;
}

.s-header__action--rb {
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
}

.s-header__action-item {
  padding: 0;
  margin-left: .1875rem;
  margin-right: .3125rem;
}

.s-header__action-link {
  position: relative;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  /*text-transform: uppercase;*/
  padding: .3125rem;
}

.s-header__action-link:first-child {
  padding-left: 0;
}

.s-header__action-link:last-child {
  padding-right: 0;
}

.s-header__action-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.s-header__action-link.-is-active {
  color: white;
}

/* Menu Open/Close
------------------------------ */
.s-header-bg-overlay .s-header__nav-menu-item {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translate3d(0, 1.25rem, 0);
  transform: translate3d(0, 1.25rem, 0);
}

.s-header-bg-overlay .s-header__action-item {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 47.9em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item,
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
}

@media (min-width: 34em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(1) {
    -webkit-transition: all 0.3s 0.1s ease-out;
    transition: all 0.3s 0.1s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(2) {
    -webkit-transition: all 0.3s 0.2s ease-out;
    transition: all 0.3s 0.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(3) {
    -webkit-transition: all 0.3s 0.3s ease-out;
    transition: all 0.3s 0.3s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(4) {
    -webkit-transition: all 0.3s 0.4s ease-out;
    transition: all 0.3s 0.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(5) {
    -webkit-transition: all 0.3s 0.5s ease-out;
    transition: all 0.3s 0.5s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(6) {
    -webkit-transition: all 0.3s 0.6s ease-out;
    transition: all 0.3s 0.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(7) {
    -webkit-transition: all 0.3s 0.7s ease-out;
    transition: all 0.3s 0.7s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(8) {
    -webkit-transition: all 0.3s 0.8s ease-out;
    transition: all 0.3s 0.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(9) {
    -webkit-transition: all 0.3s 0.9s ease-out;
    transition: all 0.3s 0.9s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(10) {
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1.0s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(1) {
    -webkit-transition: all 0.3s 0.4s ease-out;
    transition: all 0.3s 0.4s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(2) {
    -webkit-transition: all 0.3s 0.8s ease-out;
    transition: all 0.3s 0.8s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(3) {
    -webkit-transition: all 0.3s 1.2s ease-out;
    transition: all 0.3s 1.2s ease-out;
  }
}

/* Shrink
------------------------------ */
/* Navbar */
.s-header__shrink .s-header__navbar {
  box-shadow: 0 0 0.9375rem 0 rgba(34, 35, 36, 0.05);
}

.s-header__shrink.-is-open .s-header__navbar {
  background: transparent;
}

/* Logo */
.s-header__shrink.-is-open .s-header__logo-img-default {
  opacity: 1;
}

.s-header__shrink.-is-open .s-header__logo-img-shrink {
  opacity: 0;
}

.s-header__shrink .s-header__navbar {
  background: var(--color-white);
}

.s-header__shrink .s-header__logo-img-default {
  opacity: 0;
}

.s-header__shrink .s-header__logo-img-shrink {
  opacity: 1;
}

/* Trigger Icon */
.s-header__shrink.-is-open .s-header__trigger-icon {
  background: var(--color-white);
  background: rgba(255, 255, 255, 0);
}

.s-header__shrink .s-header__trigger-icon {
  background: var(--color-dark);
}

/*----------------------------------
  Header v2
------------------------------------*/
/* Navbar
------------------------------ */
.s-header-v2__navbar {
  position: relative;
  z-index: 1000;
  min-height: 3.125rem;
  /*max-height: 5.125rem;
*/  /*border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);*/
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  padding: 0rem 1.875rem;
}

.s-header-v2__navbar:before, .s-header-v2__navbar:after {
  content: " ";
  display: table;
}

.s-header-v2__navbar:after {
  clear: both;

}

@media (max-width: 61.9em) {
  .s-header-v2__navbar {
    background: var(--color-white);
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
	
  }
}

/* Navbar Row
------------------------------ */
.s-header-v2__navbar-row {
  display: table-row;
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-row {
    display: inherit;
  }
}

/* Columns */
.s-header-v2__navbar-col {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col {
    display: block;
  }
}

/* Space */
.s-header-v2__navbar-col-width--180 {
  width: 11.250rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col-width--180 {
    width: auto;
  }
}

/* Variations */
@media (min-width: 62em) {
  .s-header-v2__navbar-col--left {
    float: left;
  }
  .s-header-v2__navbar-col--left .dropdown__mega-menu {
    right: auto;
    left: 10rem;
  }
}

@media (min-width: 62em) {
  .s-header-v2__navbar-col--right {
    float: right;
  }
}

/* Navbar Toggle
------------------------------ */
.s-header-v2__toggle {
  position: relative;
  display: none;
  float: right;
  padding: .5625rem .3125rem .5625rem .625rem;
  margin: 28px 0px 0 0;
  outline: none;
  border:none;
  padding: 0;
  width: 1.515rem;
  height: 1.515rem;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.8,0,0,1);
  background-color:#fff;
}

.s-header-v2__toggle span {
  display: block;
  width: 1.515rem;
  height: 1px;
  background: var(--color-dark);
  border-radius: 1px;
  margin: 7px 0;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.8,0,0,1);
  position: relative;
}

.s-header-v2__toggle span::before, .s-header-v2__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-dark);
  border-radius: 1px;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.8,0,0,1);
  
  top: -.5125rem;
}

.s-header-v2__toggle span::after {
  top: .5125rem;
}


.s-header-v2__toggle[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.s-header-v2__toggle[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.s-header-v2__toggle[aria-expanded="true"] span::before, .s-header-v2__toggle[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
	top: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__toggle {
    display: block;
  }
}

/* Logo
------------------------------ */
.s-header-v2__logo {
  width: 100%;
  height: auto;
  float: left;
}

.s-header-v2__logo-link {
  display: inline-block;
  padding: 1rem 1.25rem 0.5rem 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__logo-link:focus, .s-header-v2__logo-link:hover {
  text-decoration: none;
}

.s-header-v2__logo-img {
  display: inline-block;
}

.s-header-v2__logo-img--default {
  display: block;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--default {
    display: none;
  }
}

.s-header-v2__logo-img--shrink {
  display: none;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--shrink {
    display: block;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__logo {
    width: auto;
    height: auto;
    float: left;
  }
  .s-header-v2__logo-link {
    padding-left: .875rem;
    padding-right: .625rem;
  }
}

/* Collapse
------------------------------ */
@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse {
    width: 100%;
    padding: 0 .9375rem !important;
	
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse.collapse {
    display: none !important;
	
  }
  .s-header-v2__navbar-collapse.collapse.in {
    display: block !important;
    max-height: 35rem;
    overflow-y: auto !important;
  }
}

/* Nav Menu
------------------------------ */
.s-header-v2__nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.s-header-v2__nav:before, .s-header-v2__nav:after {
  content: " ";
  display: table;
}

.s-header-v2__nav:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav {
    background: var(--color-white);
    padding: 1.25rem 0;
  }
}

.s-header-v2__nav-item {
  position: relative;
  display: block;
  float: left;
}

.s-header-v2__nav-item:last-child .s-header-v2__nav-link {
  margin-right: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-item {
    float: none;
  }
}

.s-header-v2__nav-item .dropdown-backdrop {
  position: relative;
}

.s-header-v2__nav-link {
  position: relative;
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: eb-garamond, source-han-serif-japanese, serif;
  color: rgba(255, 255, 255, 0.75);
  line-height: 5.5rem;
  /*text-transform: uppercase;*/
  margin: 0 .9rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__nav-link:hover {
  color: var(--color-white);
}

.s-header-v2__nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.s-header-v2__nav-link.-is-active {
  color: var(--color-white);
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
    line-height: 1.6;
    margin: 1.5rem 0;
  }
  .s-header-v2__nav-link:focus, .s-header-v2__nav-link:hover {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header-v2__nav-link.-is-active {
    color: var(--color-primary);
  }
}

/* Dropdown
------------------------------ */
.s-header-v2__dropdown-menu {
  display: none;
  font-size: 0.8125rem;
  min-width: 13.750rem;
  background: var(--color-white);
  border: none;
  border-radius: 0;
  box-shadow: 0 0.3125rem 0.75rem rgba(34, 35, 36, 0.05);
  padding: .9375rem 0;
  margin-top: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
  }
}

.s-header-v2__dropdown-menu:focus .s-header-v2__dropdown-menu-link, .s-header-v2__dropdown-menu:hover .s-header-v2__dropdown-menu-link {
  background: transparent;
}

.s-header-v2__dropdown-menu-link {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: satisfy, serif;
  font-family: eb-garamond, source-han-serif-japanese, serif;
  color: rgba(34, 35, 36, 0.7) !important;
  padding: .4375rem 2rem .4375rem 1.375rem !important;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__dropdown-menu-link:hover {
  color: var(--color-primary) !important;
}

.s-header-v2__dropdown-menu-link.-is-active {
  color: var(--color-primary) !important;
}

/* Dropdown Menu Open On Hover
------------------------------ */
@media (min-width: 62em) {
  .s-header-v2__dropdown-on-hover:hover > .s-header-v2__dropdown-menu {
    display: block;
  }
}

/* Shrink
------------------------------ */
@media (min-width: 62em) {
  .s-header__shrink .s-header-v2__navbar {
    background: var(--color-white);
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
  /* Toggle */
  .s-header__shrink .s-header-v2__toggle-icon-bar--white, .s-header__shrink .s-header-v2__toggle-icon-bar--white:before, .s-header__shrink .s-header-v2__toggle-icon-bar--white:after {
    background: var(--color-dark);
  }
  /* Logo */
  .s-header__shrink .s-header-v2__logo-img--default {
    display: none;
  }
  .s-header__shrink .s-header-v2__logo-img--shrink {
    display: block;
  }
  /* Nav Link */
  .s-header__shrink .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link:hover {
    color: var(--color-primary);
  }
  .s-header__shrink .s-header-v2__nav-link:focus {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link.-is-active {
    color: var(--color-primary);
  }
}

/*----------------------------------
  Footer
------------------------------------*/
.s-footer__logo {
  position: relative;
  z-index: 1;
}

.s-footer__logo:before {
  position: absolute;
  top: 0;
  left: 0.9375rem;
  bottom: 0;
  width: 70%;
  height: auto;
  z-index: -1;
  background: url("../img/footer_mark.png") no-repeat center center;
  background-size: cover;
  content: " "; 
  
}

/*----------------------------------
  Back To Top
------------------------------------*/
.s-back-to-top {
  position: fixed;
  right: 3.125rem;
  bottom: -3.125rem;
  display: block;
  width: 1.875rem;
  height: 3rem;
  z-index: 9;
  background: var(--color-primary);
  border-radius: 3.125rem;
  text-align: center;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:before {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-family: themify;
  color: var(--color-white);
  line-height: 3rem;
  content: "\e627";
  content: "\e648";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:hover {
  background: var(--color-white);
}

.s-back-to-top:hover:before {
  color: var(--color-primary);
}

.s-back-to-top:focus, .s-back-to-top:hover {
  text-decoration: none;
}

/* The button becomes visible */
.s-back-to-top.-is-visible {
  bottom: 3.125rem;
  opacity: .8;
}

.s-back-to-top.-is-visible:hover {
  opacity: 1;
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.s-back-to-top.-zoom-out {
  opacity: .6;
}

/*----------------------------------
  Cubeportfolio
------------------------------------*/
.s-portfolio__filter-v1-item {
  font-size: 0.8125rem;
  color: #656565 !important;
  /*text-transform: uppercase;*/
  margin-bottom: 0 !important;
}

.s-portfolio__filter-v1-item:hover {
  color: var(--color-heading) !important;
}

.s-portfolio__filter-v1-item.cbp-filter-item-active {
  color: var(--color-primary) !important;
}

.s-portfolio__filter-v1.cbp-l-filters-text {
  margin-bottom: 0;
}

/* Image Effect
------------------------------ */
.s-portfolio__img-effect {
  position: relative;
  display: block;
}

.s-portfolio__img-effect:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 177, 205, 0.95);
  background: rgba(30,25,30, 0.8);
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__img-effect:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Position
------------------------------ */
.s-portfolio__caption-hover--cc {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.875rem;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__caption-hover--cc {
  opacity: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

/* Paginations v1
------------------------------ */
.s-portfolio__paginations-v1 .cbp-nav-controls {
  display: none;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination {
  padding-left: .625rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-item {
  margin: 0 .9375rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-active {
  background: var(--color-primary);
}

/* Tab v1
------------------------------ */
.s-tab__filter-v1 {
  display: block;
  font-size: 1.75rem;
  color: var(--color-white);
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: .0625rem;
  line-height: 2rem;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-tab__filter-v1:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.3);
  content: " ";
  margin-left: -2.5rem;
}

.s-tab__filter-v1:last-child {
  padding: 0;
  margin: 0;
}

.s-tab__filter-v1:last-child:before {
  display: none;
}

.s-tab__filter-v1.cbp-filter-item-active {
  color: var(--color-primary);
}

.s-tab__grid-v1-item {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #656565;
}

/*----------------------------------
  Google Map
------------------------------------*/
/* Custom Style */
.s-google-map,
.s-google-map .s-google-container {
  position: relative;
}

/* Info Window: White background and box outline */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div {
  background-color: var(--color-white) !important;
  box-shadow: none !important;
}

/* Info Window: Arrow colour */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div > div {
  background-color: var(--color-white) !important;
  box-shadow: none !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div:first-child {
  display: none;
}

/* Info Window: Let's remove image icon inside close button */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child > img {
  display: none;
}

/* Info Window: New arrow style */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child {
  overflow: inherit !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:last-child:after {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75rem;
  font-family: themify;
  color: #656565;
  content: "\e646";
}

/* Info Window: Positioning of infowindow */
.gm-style-iw {
  top: 1.375rem !important;
  left: 1.375rem !important;
}

/*----------------------------------
  Swiper
------------------------------------*/
.s-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Arrows v1
------------------------------ */
.s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 47.9em) {
  .s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
    opacity: 0;
  }
}

.s-swiper__arrow-v1--left {
  left: 2rem;
}

.s-swiper__arrow-v1--right {
  right: 2rem;
}

@media (max-width: 47.9em) {
  .s-swiper:hover .s-swiper__arrow-v1--left, .s-swiper:hover .s-swiper__arrow-v1--right {
    opacity: 1;
  }
}

/* Pagination v1
------------------------------ */
.s-swiper__pagination-v1--bc {
  position: absolute;
  bottom: 1.875rem !important;
  text-align: center;
  z-index: 1;
}

.s-swiper__pagination-v1 .swiper-pagination-bullet {
  width: 1rem;
  height: 0.5625rem;
  border-radius: 0.9375rem;
  opacity: .7;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-swiper__pagination-v1 .swiper-pagination-bullet-active {
  width: 1.875rem;
  background: var(--color-primary);
  opacity: 1;
}

.s-swiper__pagination-v1--white .swiper-pagination-bullet {
  background: var(--color-white);
}

.s-swiper__pagination-v1--white .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet {
  background: #b2b2b2;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet-active {
  background: var(--color-primary);
}


/* 以下追加
------------------------------ */
.naga_ans01{
     position: absolute;
    bottom: 0;
    right: 0px;
}


/*お知らせ一覧・個別*/	
.toptable{
}
.toptable table tr{
}
.toptable table td{
	padding:10px 0px;
	vertical-align:top;
}

/*footer*/
footer .container{
	padding:5% 0 0 0;
}
footer p{
	line-height:1.2em;
}	

ul#footernav {
	
	padding:0px;
	padding-top:13px;
	
	}
ul#footernav li {/*共通*/
	list-style:none;
	letter-spacing:0.1em;
	font-size:13px;
}
ul#footernav li {
	/*display:inline-block;*/
	border-left: 0;
	padding-right:5px;
}
/*ul#footernav li+  li {
  border-left: 1px solid var(--color-white);
  padding-left:10px;
  padding-right:10px;
}*/

ul#footernav li a {
	color: var(--color-white);
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

ul#footernav li a:hover {
	color: var(--color-primary);
}
/* smサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
footer .container{
	padding:10% 0 0 0;
}

}
/* xsサイズ、スマホ横持ち、タブレット : Small Devices, Tablets */
@media only screen and (max-width : 767px) {
footer .container{
	padding:20% 0 0 0;
}
ul#footernav li {
	display:block;
	border:none;
	padding:0;
 }
ul#footernav li+  li {
	border-left: none;
	padding-left:0!important;
 }
footer img{
	width:50%;
	height:50%;
}

}


/*---------トップの中の新着---------*/

/* clearfix */
.clearfix:after { content:"."; display:block; clear:both; height:0; visibility:hidden; }
.clearfix { display:inline-block; }

/* for macIE \*/
* html .clearfix { height:1%; }
.clearfix { display:block; }

ul#newsList, #newsList{
	padding:0 50px;
}
ul#newsList li{
	font-size:12px;
	margin:0;
	padding:5px 0px 18px 0px;
	padding:0;
	line-height:120%;
	list-style-type:none;
}
.up_ymd{
	font-size:15px;
	color:var(--color-gray-light);
	display:inline-block;
	line-height:1.3em;
}
#newsList em.title{
	display:inline-block;
	word-wrap: break-word;
	font-size:11pt;
	line-height:1.3em;
}

.newMark{
	display:inline-block;
}
.comment{
	display:block;
	float:left;
	overflow:hidden;
	font-size:15px;
	line-height:1.3em;
}

/*.thumbNailWrap{
	display:block;
	width:110px;
	float:left;
	height:80px;
	overflow:hidden;
}*/
.thumbNailWrap img{
transition-duration: 0.3s;
}
.thumbNailWrap img:hover{
filter: grayscale(100%);
transition-duration: 0.5s;	
}

.tonews{
	display:inline-block;
	margin-top:40px;
	line-height:15px;
	text-align:right;
}
	


/*.cat-0 .catName{
	background-color:#006839;

}
.cat-1 .catName{
	background-color:#766456;
}
.cat-2 .catName{
	background-color:#211613;
}
.cat-3 .catName{
	background-color:#6B9447;
}
.catName{
	display:inline-block;
	width:9em;
	text-align:center;
	letter-spacing:0.1em;
	padding:3px 8px;
	padding:7px 8px;
	color: var(--color-white);
	font-size:11pt;
	line-height:100%;
	margin:0 2px;
}*/


	
	
/*お知らせ一覧・個別*/	
#newsWrap{
	background-color:#fcfcfc;
	background:none;
	border-left:2px solid var(--color-primary);
}
/* smサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (max-width : 991px) {#newsWrap{border-left:none;}}

ul#newsList li{
	border-bottom:2px solid var(--color-primary);
	padding:20px 0px;
}

#newsWrap h1.title{
	font-size:20px;
	margin-top:10px;
	}
/* xsサイズ、スマホ横持ち、タブレット : Small Devices, Tablets */
@media only screen and (max-width : 767px) {#newsWrap h1.title{font-size:17px;}}

/*#newsWrap h2{
	font-size:24px;
	padding:5px 10px 20px 10px;
	margin:10px 0px 20px 0;
}*/


/* Pager style（外部化可） */
.pager{
	text-align:center;
	padding:10px;
	clear:both;
}
/*ページャーボタン*/
.pager a{
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    color: var(--color-primary);
    font-size: 15px;
    padding: 3px 7px 2px;
    padding: 5px 9px 4px;
    text-decoration: none;
	margin:0 1px;
}

/*現在のページのボタン*/
.pager a.current{
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    color: var(--color-white);
    font-size: 15px;
    padding: 3px 7px 2px;
    padding: 5px 9px 4px;
	margin:0 1px;
    text-decoration: none;
}

.pager a:hover{
    background: var(--color-primary);
    color: var(--color-white);
}

.overPagerPattern{
	padding:0 2px ;	
}
.detailText{
	padding:5px 10px 20px 10px;
	font-size:17px;
	line-height:26px;
	color:#656565;
}
/* xsサイズ、スマホ横持ち、タブレット : Small Devices, Tablets */
@media only screen and (max-width : 767px) {.detailText{font-size:14px;}}
.detailUpfile{
	margin:5px 0 35px;
	text-align:center;
}
.backORcloseBtn{
	text-align:center;
	line-height:100%;
	margin-top:15px;
}
.backORcloseBtn a{
	display:inline-block;
    padding: 5px 9px 4px 5px;
    border: 1px solid var(--color-primary);
	color: var(--color-primary);
	border-radius:10px;
	text-decoration:none;
	font-size:15px;
}
.backORcloseBtn a:hover{
    background: var(--color-primary);
    color: var(--color-white);
}

.detailUpfile img{
	max-width:100%;
	height:auto;
}
.pNav{
	font-size:11px;	
}
	
	
/*トップのふきだし*/
.balloon {
  position: relative; /* 三角の位置を固定するために設定 */
  width: auto; /* 幅 */
  margin: 0 auto 40px; /* 上 左右 下のマージン */
  padding: 20px; /* ふきだし内の余白 */
  background: #eee; /* 背景色 */
  text-align: center; /* テキストの揃え */
  border-radius: 8px; /* <-追加 */
}

.balloon::before { /* 三角の部分 */
  content: '';
  position: absolute; /* 位置固定 */
  bottom: -28px; /* 線幅の2倍 */
  left: 50%;
  margin-left: -14px; /* 線幅だけずらす */
  border: 14px solid transparent; /* 線幅の設定 */
  border-top-color: #eee; /* 吹き出しの地と同じ色 */
}	
	
	
/*----------------------------------
  media分岐
------------------------------------*/	
	
/* smサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
}

/* xsサイズ、スマホ横持ち、タブレット : Small Devices, Tablets */
@media only screen and (max-width : 767px) {
}

/* xxsサイズ :　スマホ縦持ち Extra Small Devices, Phones */  
@media only screen and (max-width : 479px) {
}
	
	
	