@charset "UTF-8";
/* CSS Document */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::before , ::after {
	box-sizing: inherit;
}

body {
	scroll-padding-top: 100px; 
	margin: 0;
	font-family:"Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
	letter-spacing : 0.1em;
	-webkit-font-smoothing: antialiased;
}

h1{
	padding: 0PX;
	margin: 0px;
}


/**ハンバーガーメニュー**/
button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  border: 0;
  background: transparent;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

button:hover {
  cursor: pointer;
}

@media screen and (max-width:960px) {
 .btn{ 
  position: fixed;
  top: 15px;
  right: 16px;
  width: 58px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;}
}
@media screen and (max-width:520px) {
 .btn {
  position: fixed;
  top: 5px;
  right: 16px;
  width: 58px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;}
}

.btn-line {
  width: 100%;
  height: 4px;
  background-color: #696969;
  position: relative;
  transition: .2s;
}

.btn-line::before,
.btn-line::after {
  position: absolute;
  transition: .5s;
}

.btn-line::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #696969;
  transform: translateY(-16px);
}

.btn-line::after {
  content: "MENU";
  display: block;
  width: 100%;
  text-align: center;
  transform: translateY(8px);
  color: #696969;
}

.btn-line.open {
  transition: .5s;
}

.btn-line.open::before {
  content: "";
  transform: translateY(0);
}

.btn-line.open::after {
  content: "CLOSE";
  color: #696969;
}

.menu {
  position: fixed;
  transform : translateX(150%);
  width: 80%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  color: #696969;
  background-color:rgba(0,0,0,0.7);
  transition: transform .6s;
}

.menu-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:960px) {
  .menu-list a{ 
    list-style: none;
	color: #FFFFFF}
}

.menu.open {
  transform: translateX(30%);
}

@media screen and (min-width: 1000px) {
  .btn {
    display: none;
  }

  .menu {
    position: fixed;
    transform : translateX(0);
	top: 0;
	right: 0;
	width: 50%;
	height: 100px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
  }
}


.site-header{
  position:fixed;
  left: 0px;
  top:0;
  margin:0;
  padding:7px;
  width:100%;
  background-color:#fff;
  z-index:9999;
  height:110px;
}

@media screen and (max-width:960px) {
  .site-header { 
	  height:75px; }
}

@media screen and (max-width:520px) {
  .site-header { 
	  height:54px; }
}

@media screen and (max-width:960px) {
  .site-header h1 img{ 
	  width: 300px; }
}

@media screen and (max-width:520px) {
  .site-header h1 img{ 
	  width: 200px; }
}

nav ul{
	list-style: none;
	margin: 0;
    display: flex;
	justify-content: flex-end;
	padding:0px;
	font-size: 20px;
}

 a {
	 text-decoration: none;
	 color: #000000;
}

a:hover{
color: #1468a0;
transition: all 0.4s;
}

.full{ 
  width:100%;
  height: 100vh;
  position: relative;
} 

.full:before{
	content:"";
    position:fixed;
    top:5vh;
    left:0;
    z-index:-1;
    width:100%;
    height: 100vh;
	background: url("../images/full_bg.jpg")no-repeat center;
    background-size:cover;
	}

@media screen and (max-width:960px) {
  .full:before{ 
    content:"";
    position:fixed;
    top:5vh;
    left:0;
    z-index:-1;
    width:100%;
    height: 80vh;
	background: url("../images/full_bg_m.jpg")no-repeat center;
	}
}

@media screen and (max-width:520px) {
  .full:before{ 
	content:"";
    position:fixed;
    top:10vh;
    left:0;
    z-index:-1;
    width:100%;
    height: 100vh;
    background: url("../images/full_bg_s2.jpg")no-repeat center;
	background-position: top center;
    background-size: auto 90%;
	background-color: #FFFFFF;
	}
}

#container{
  position: relative;
  z-index:1;
  background:#fff;
  padding:60px 90px;
  text-align: center;
}
@media screen and (max-width:960px) {
  #container{ 
     padding:60px 90px;}
}
@media screen and (max-width:520px) {
  #container { 
	padding:30px 20px;
	background-color: #FFFFFF}
}


.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.fadeUpTrigger{
    opacity: 0;
}

.wrapper{
  overflow: hidden;
}

.box{
	font-size: 45px;
	text-align: center;
	padding-bottom: 60px;
}

@media screen and (max-width:960px) {
  .box{ 
	  font-size: 45px;}
}
@media screen and (max-width:520px) {
  .box { 
	  font-size: 25px;	
	  padding-bottom: 30px;}
}



.sec1 .contents {
    position: relative;
	padding-bottom: 10px;
    overflow-x: hidden;
}

.sec1 .dual {
    position: relative;
}

.sec1 .dual-inner {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sec1 .dual-half {
    position: absolute;
    height: 100%;
    width: 51vw;
    left: 0;
    background: url(../images/img_4_m.jpg) no-repeat 50% 50%;
	background-color: #EEEEEE;
    background-size: cover;
}
@media screen and (max-width:520px) {
	.sec1 .dual-half{
		width: 100vw;}
}
		
.sec1 .texta-area{
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 10px;
    font-size: 1.75em;
    line-height: 1.4;
    margin-left: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-60px,0,0);
    transition: opacity 0.55s 0.4s, transform 0.55s 0.4s;
}
@media screen and (max-width:520px) {
	.sec1 .texta-area{
		width: 100%;
		margin-left: 0px;
		color: "#fff"}
	}

.sec1 .texta-area p{
    text-align: center;
}

.sec1 .texta-area p:nth-of-type(1){
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}
@media screen and (max-width:520px) {
  .sec1 .texta-area p:nth-of-type(1) { 
	  font-size: 20px;	
	  padding-bottom: 10px;}
}

.sec1 .texta-area p:nth-of-type(2){
    font-size: 16px;
    padding: 0;
    width: 60%;
    margin: 0 auto 0;
}
@media screen and (max-width:520px) {
  .sec1 .texta-area p:nth-of-type(2) { 
	  font-size: 15px;}	
}

.sec1 .texta-area.is-texta-area-show {
	opacity: 1;
	pointer-events: visible;
	transform: translate3d(0,0,0);
}

@media screen and (min-width: 768px) {
    .sec1 .texta-area {
        min-height: 150px;
    }

    .sec1 .texta-area p:nth-of-type(1){
        font-size: 30px;
    }
}

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EEEEEE;
  pointer-events: none;
  opacity: 0;
}

.sec2 .contents {
    position: relative;
    overflow-x: hidden;
	padding-bottom: 10px;
}

.sec2 .dual {
    position: relative;
}

.sec2 .dual-inner {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sec2 .dual-half {
    position: absolute;
    height: 100%;
    width: 50vw;
    left: 0;
    background: url("../images/img_2.jpg") no-repeat 50% 50%;
	background-color: #EEEEEE;
    background-size: cover;
	margin-left: 50%;
}

.sec2 .texta-area{
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 10px;
    font-size: 1.75em;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-60px,0,0);
    transition: opacity 0.55s 0.4s, transform 0.55s 0.4s;
}

.sec2 .texta-area p{
    text-align: center;
}

.sec2 .texta-area p:nth-of-type(1){
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}
@media screen and (max-width:520px) {
  .sec2 .texta-area p:nth-of-type(1) { 
	font-size: 20px;}	
}

.sec2 .texta-area p:nth-of-type(2){
    font-size: 16px;
    padding: 0;
    width: 60%;
    margin: 0 auto 0;
}
@media screen and (max-width:520px) {
  .sec2 .texta-area p:nth-of-type(2) { 
	font-size: 15px;}	
}

.sec2 .texta-area.is-texta-area-show {
	opacity: 1;
	pointer-events: visible;
	transform: translate3d(0,0,0);
}

@media screen and (min-width: 768px) {
    .sec2 .texta-area {
        min-height: 150px;
    }

    .sec2 .texta-area p:nth-of-type(1){
        font-size: 30px;
    }
}


.sec3 .contents {
    position: relative;
    overflow-x: hidden;
}

.sec3 .dual {
    position: relative;
}

.sec3 .dual-inner {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sec3 .dual-half {
    position: absolute;
    height: 100%;
    width: 51vw;
    left: 0;
    background: url("../images/img_3_m.jpg") no-repeat 50% 50%;
	background-color: #EEEEEE;
    background-size: cover;
}

.sec3 .texta-area{
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 10px;
	margin-left: 50%;
    font-size: 1.75em;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-60px,0,0);
    transition: opacity 0.55s 0.4s, transform 0.55s 0.4s;
}

.sec3 .texta-area p{
    text-align: center;
}

.sec3 .texta-area p:nth-of-type(1){
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}
@media screen and (max-width:520px) {
  .sec3 .texta-area p:nth-of-type(1) { 
	font-size: 20px;}	
}

.sec3 .texta-area p:nth-of-type(2){
    font-size: 16px;
    padding: 0;
    width: 60%;
    margin: 0 auto 0;
}
@media screen and (max-width:520px) {
  .sec3 .texta-area p:nth-of-type(1) { 
	font-size: 20px;}	
}

.sec3 .texta-area.is-texta-area-show {
	opacity: 1;
	pointer-events: visible;
	transform: translate3d(0,0,0);
}

@media screen and (min-width: 768px) {
    .sec3 .texta-area {
        min-height: 150px;
    }

    .sec3 .texta-area p:nth-of-type(1){
        font-size: 30px;
    }
}

#container2{
	position: relative;
	background-image: url("../images/about-bi.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	padding: 90px;
}
@media screen and (max-width:520px) {
    #container2 { 
	position: relative;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	padding:30px;}
}
	
#container2::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
  display: block;
}

.about-box{
	max-width: 1000px;
	margin: 0 auto;
	transform: translate(0%, 0%);
	background-color: #ffffff;
	padding: 2.25rem;
}
@media only screen and (max-width: 768px) {
	.about-box{
	padding: 30px 8px 8px 8px;
	}	
}
p.content2{
	padding: 20px 20px 30px 20px;
	text-align: left;
	font-size: 1.2em;
	line-height: 1.8;
}
@media screen and (max-width:960px) {
  p.content2 { 
	text-align: left; }
}

@media screen and (max-width:520px) {
  p.content2 { 
	text-align: left;
	font-size: 15px;}
}

.profile-contents{
	background-color: #EEEEEE;
	padding: 30px 5px;
}

.profile-box{
	width:40%;
	margin: 30px;
}

img.profile{
	width: 100%;
}

.profile-box img{
	border-radius: 25px;
}

.message-box{
	text-align: center;
	width: 60%;
	margin: auto .5rem;
}

.message-flexbox{
	display: flex;
}

p.message1{
	color: #1468a0;
    font-weight: bold;
	line-height: 4;
	font-size: 1.6em;
	letter-spacing: 0.12em;
}

p.message2{
	font-size: 1.2em;
}

@media screen and (max-width:960px) {
	.message-flexbox{
		display: block;
	}
	.profile-box{
		width:100%;
		margin: 20px 0 0 0;
		text-align: center;
	}
	.profile-box img{
		width: 60%;
		height: auto;
	}
	.message-box{
		width: auto;
	}
	p.message1{
		text-align: center;
        font-size: 1.6em;
		line-height: 3;
		letter-spacing: 0.12em;
	}
	p.message2{
		font-size: 1.2em;
		line-height: normal;
	}
	
}

@media screen and (max-width:520px) {
	.message-flexbox{
		display: block;
	}
	.profile-box{
		width:100%;
		margin: 20px 0 0 0;
		text-align: center;
	}
	.profile-box img{
		width: 60%;
		height: auto;
	}
	.message-box{
		width: auto;
	}
	p.message1{
		text-align: center;
        font-size: 15px;
		line-height: 3;
		letter-spacing: 0.12em;
	}
	p.message2{
		font-size: 15px;
		line-height: normal;
	}
}

.follow{
  margin: 0 auto;
  overflow: hidden;
}
.follow img{
  cursor: pointer;
  transition-duration: 0.3s;
}
.follow:hover img{
  opacity: 0.6;
  transition-duration: 0.3s;
}


.follow img{
	padding-top: 40px;
}

@media screen and (max-width:960px) {
	.follow{
		text-align: center;
		margin:0 auto;
}
	.follow img{
		width: 100%;
		height: auto;
		padding-top: 30px;
}
}

@media screen and (max-width:520px) {
	.follow{
		text-align: center;
		margin:0 auto;
}
	.follow img{
		width: 100%;
		height: auto;
		padding-top: 30px;		
	}
}

#container3{
	text-align: center;
	padding: 40px;
	background-color: #FFFFFF;
}

#container3 p{
	padding-bottom: 30px;
	font-size: 18px;
}
#container4{
	background-color: #3D3C3D;
	color: #ffffff;
    bottom: 0;
	width: 100%;
    height: 220px;

}
@media screen and (max-width:960px) {
  #container4 { 
    height: 230px;; }
}

@media screen and (max-width:520px) {
 #container4 { 
	 height: 250px;
	 font-size: 15px;}	
}
	
#container4 p{
	text-align: center;
	margin: 0px;
}

.footer-link{
	font-size: 15px;
	text-align: left;
	border-bottom: 1px dotted #fff;
}

.footer-link li{
	vertical-align:middle;
	display: inline-block;
	padding: 20px 0px 20px 40px;
}

@media screen and (max-width:520px) {
.footer-link li{
	display: table;
	padding: 10px 0px 5px 20px; 
	}
}

.banner{
	padding: 20px;
	border-bottom: 1px dotted #fff;

}

.footer{
	padding-top: 10px;
	line-height: 1.8;
}

.footer-rights{
	padding-top: 20px;
}

#container5 h1{
	text-align: center;
}

#container5 h4{
	margin-top: 50px;
	border-bottom: 2px solid #d7d7e1;
}

.footer-link a{
	color: #FFFFFF;
}

#container5 {
	padding: 150px;
	
}
@media screen and (max-width:960px) {
  #container5 { 
	  padding:100px 30px; }
}

@media screen and (max-width:520px) {
  #container5 {
	  padding:60px 10px; }
}


.box1{
	font-size: 45px;
	text-align: center;
}
@media screen and (max-width:520px) {
  .box1 { 
	font-size: 25px;}
}
.box2{
	font-size: 45px;
	text-align: center;
	padding-bottom: 30px;
}

@media screen and (max-width:960px) {
  .box2 { 
	  padding: 10px 0;}
	}
@media screen and (max-width:520px) {
  .box2 { 
	  padding:20px;
	  font-size: 25px;}
}

.gallery{
    columns: 5;
    padding:15px 15px;
    margin:0;
}
@media screen and (max-width:520px) {
	.gallery{ 
	  padding: 0px; }
}

.gallery li {
    margin-bottom: 20px;
    list-style:none;
}


.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;
}

@media only screen and (max-width: 900px) {
	.gallery{
	columns:3;
	}	
}

@media only screen and (max-width: 768px) {
	.gallery{
	columns: 2;
	}	
}


.beer-slider {
  font-family: Montserrat;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

iframe {
  max-width: 100%;
  max-height: 100%;
  border: none;
}

.contactform{
	position:relative;
	width:100%;
	height: 1900px;
	text-align: center;
}

.contactform iflame{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.btnform{
    position: relative;
	text-decoration: none;
	display: inline-block;
    text-align: center;
    background: transparent;
	border-radius: 25px;
    outline: none;
    transition: all 0.2s ease;
}


.btnform:hover{
	border-color:transparent;	
}


.btnform span {
	position: relative;
	z-index: 2;
	display: block;
    padding: 20px 40px;
	background:#1468a0;
	border-radius: 25px;
	color:#FFFFFF;
    transition: all 0.3s ease;
    font-size: 20px;
}


.pushdown:before {
    content:"";
    position: absolute;
	z-index: -1;
    top:4px;
    left:0;
    width: 100%;
    height: 100%;
	border-radius: 25px;
    background-color: #333;
}

.pushdown:hover span {
	background-color: #333;
	color: #fff;
	transform: translateY(4px);
}



#container6	{
	text-align: center;
	padding: 95px 90px;
	background-color: #FFFFFF;
	border-bottom: 2px solid #EEEEEE;
}

@media screen and (max-width:960px) {
  #container6{ 
     padding:60px 90px;}
}
@media screen and (max-width:520px) {
  #container6 { 
	padding:30px 20px;
	background-color: #FFFFFF}
}

.contactok{
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	color: #1468a0;
	padding-bottom: 20px;
}

.topgo{
	text-align: center;
	
}

.return{
	text-align: center;
	padding-top: 20px;
}

hr {
border: none;
    border-top: 1px solid #333333;
    margin: 32px auto;
    width: 100px;
}

.form{
	padding: 12px;
}

#container7 {
	padding-top: 100px;
	
}
@media screen and (max-width:960px) {
  #container7 { 
	  padding:100px 30px; }
}

@media screen and (max-width:520px) {
  #container7 {
	  padding:60px 10px; }
}

#container8{
	text-align: center;
	padding: 40px 0;
	background-color: #EEEEEE;
}


/*スマホ*/
.pc-dsp { display:block; }
.sp-dsp { display:none; }

@media only screen and (max-width : 520px){
.pc-dsp { display:none; }
.sp-dsp { display:block; }
}

.sp-content{
	padding-bottom: 20px;
}

.animation{
    display: flex;
    justify-content: center;
    overflow: hidden;   
}
.animation img{
    width: 100%;
    margin: 0;
}
.animation .anm_mod{
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: all 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
    height: 100%;
	padding-top:10px; 
}
.animation .anm_mod.full{
    width: 100%;
}
.animation .anm_mod.left{
    transform: translate3d(-30%, 0, 0);
}
.animation .anm_mod.right{
    transform: translate3d(30%, 0, 0);
}
.animation .anm_mod.delay_2s{
    transition: all 2s ease;
}
.animation .anm_mod.fast{
    transition: all 0.8s ease;
}
.animation .anm_mod.active{
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.anm_mod.title{
    font-size: 18px;
	font-weight: bold;
}

.anm_mod.describe{
	font-size: 15px;
}

.scrolldown{
	position:absolute;
	left:50%;
	bottom:10px;
	height:50px;
}

.scrolldown span{
	position: absolute;
	left:-20px;
	top: -15px;
	color: #FFFFFF;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 900px) {
.scrolldown span{
	color: #000;
	}	
}
@media only screen and (max-width : 520px){
.scrolldown span{
		color: #FFFFFF;}
	}

.scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #FFFFFF;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}
@media only screen and (max-width: 900px) {
.scrolldown::after{
	background: #000000;
	}	
}
@media only screen and (max-width : 520px){
	.scrolldown::after{
		background: #FFFFFF;}
	}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

#container9{
	padding: 150px;
	
}
@media screen and (max-width:960px) {
  #container9 { 
	  padding:100px 30px; }
}

@media screen and (max-width:520px) {
  #container9 {
	  padding:60px 10px; }
}


.works ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;	
	
}

.works-item{
	background-color: whitesmoke;
	box-shadow: 0 0 8px 0 #bec0c3;
	max-width: 300px;
	height:inherit;
    padding: 15px;
    color: #333;
    border-radius: 10px;
	margin: 15px;
	text-decoration: none;
	text-align: center;
	display:flex;
  	align-items: center;
  	justify-content: center;
	flex-direction: column;
	transition-duration: 0.5s;
}

.works-item:hover {
	opacity: 0.6;
	transform: scale(1.1);
  	transition-duration: 0.5s;
}

.works-item p{
	margin-top: 30px;
}

#container10{
	text-align: center;
	padding: 40px 0;
	background-color: #EEEEEE;
}

.slide-container {
    width: 100%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slide-wrapper {
  display: flex;
  animation: slide-flow 20s infinite linear 1s both;
}
.slide{
  width: 300px;
  object-fit:cover;
  border: 1px solid #ddd;
  margin: 5px;
}
@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}

.button006 a {
    background: lightsteelblue;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px auto 0 ;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border-radius: 25px;
}


.button006 a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -2em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #1468a0;
    transition: 0.3s;
}
.button006 a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background-color: #1468a0;
    transition: 0.3s;
}
.button006 a:hover:before, .button006 a:hover:after {
    right: -2.5em;
}
.button006 a:hover {
    background: #edf6ff;
    color: #1468a0;
}



.accordion-005 {
    text-align: left;
}

.accordion-005:not([open]) {
    margin-bottom: 7px;
}

.accordion-005 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-left: 5px solid #1468a0;
    background-color: #EEEEEE;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-005 summary::-webkit-details-marker {
    display: none;
}

.accordion-005 summary::before,
.accordion-005 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #bbbbbb;
    content: '';
}

.accordion-005 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-005 summary::after {
    transition: rotate .3s;
}

.accordion-005[open] summary::after {
    rotate: 90deg;
}

.accordion-005 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 0.5em 2em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-005[open] p {
    transform: none;
    opacity: 1;
}

.accordion-005 p a{
    color: #1468a0;
    word-break: break-word;
    }