@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Hind:700);
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

body{
    font-family: 'Hind', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    font-size: 15px;
    line-height: 2;
}

p,h1,h2,h3,h4,h5,h6{
    margin-top: 0;
}

img{
    vertical-align: bottom;
}

ul{
    margin: 0;
    padding: 0;
}

a{
    color: #ff0000;
    text-decoration: none;
}

a:visited{
    color: #788d98;
}

a:hover{
    text-decoration: underline;
}
.clearfix::after{
    content: "";
    display: block;
    clear: both;
}
@media screen and (min-width:600px) {
/*新********************************************/
header{
    position: fixed;
    z-index: 999;
    top: 0;
    width:100%;
    height: 180px;
    margin: 0 auto;
    background:rgba(0,0,0,0.0);
    transition: 0.5s;
}
header.scroll-nav{
    position: fixed;
    z-index: 999;
    height:180px;
    background:rgba(255,255,255,0.5);
}
/***********************************************/

.logo{
    float: left;
    margin-top: 25px;
    margin-left: 150px;
}
.sp-global-nav{
    display: none;
}
.global-nav{
    float: right;
    margin-top: 25px;
    margin-right: 170px;
}
.global-nav p{
    text-align: right;
    margin-right: 50px;
}
.global-nav li{
    float: left;
    margin: 0 3px;
    font-size: 15px;
    list-style: none;
}
.global-nav li a{
    color: #444444;
}

/*-- 新ボタン--*/
.global-nav li a{
    color: #444444;
  font-size: 15px;
  font-weight: bold;
  background: transparent;
  padding: 18px 30px;
  /*border: 3px solid #444444;
  border-radius: 6px;*/
  position: relative;
  z-index: 1;
  transition: .3s;
}
.global-nav li a::before{
    content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #eeeeee;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.global-nav li a:hover{
    color: #222222;
}
.global-nav li a:hover::before{
    transform-origin: 0% 50%;
  transform: scaleX(1);
}
/*-- 新ボタン--*/

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:1%;
  right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
  position: absolute;
  left:-20px;
  bottom:10px;
    /*テキストの形状*/
  color: #0000cc;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #0000cc;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#0000cc;
}

#wrap{
    clear: both;
}
.content{
    padding:150px;
    width: 960px;
    margin: 0 auto;
    ackground-color: cadetblue;
}
#areaid1{
    ackground-color: black;
    height: 100vh;
}
span{
    display: block;
}
.main-visual {
    background-image: url(image/bgtakuto1.jpg);
    background-size: cover;
    height: 100vh;
    width: 100%;
    font-size: 50px;
}
.main-visual p{
    position: relative;
    ackground-color: #009cd3;
    vertical-align: middle;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 180px;
    width: 100%;
    align-items:center;
    font-weight: bold;
    text-align: center;
}
.main-visual p span{
    margin-top: -20px;
}

.main-visual p span{
    color: transparent;
    animation: blur 10s ease-out infinite;
    -webkit-animation: blur 10s ease-out infinite;
}
.main-visual p span:nth-child(1) {
    animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
  }
.main-visual p span:nth-child(2) {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}
@keyframes blur {
    0%    {text-shadow:  0 0 100px #555555; opacity:0;}
    5%    {text-shadow:  0 0 90px #555555;}
    15%   {opacity: 1;}
    20%   {text-shadow:  0 0 0px #555555;}
    80%   {text-shadow:  0 0 0px #555555;}
    85%   {opacity: 1;}
    95%   {text-shadow:  0 0 90px #555555;}
    100%  {text-shadow:  0 0 100px #555555; opacity:0;}
}
  
  @-webkit-keyframes blur {
    0%    {text-shadow:  0 0 100px #777777; opacity:0;}
    5%    {text-shadow:  0 0 90px #777777;}
    15%   {opacity: 1;}
    20%   {text-shadow:  0 0 0px #777777;}
    80%   {text-shadow:  0 0 0px #777777;}
    85%   {opacity: 1;}
    95%   {text-shadow:  0 0 90px #777777;}
    100%  {text-shadow:  0 0 100px #777777; opacity:0;}
}

.taitle1{
    font-size: 110%;
}
.taitle2{
    font-size: 100%;
    text-align: center;
}
.taitle3{
    font-size: 80%;
    text-align:center;
}
.taitle4{
    position: absolute;
    font-size:80%;
    top: 410px;
    left: 500px;
}
.taitle5{
    position: absolute;
    font-size: 80%;
    top: 470px;
    left: 500px;
}

.takuto{
    position: relative;
    width: 600px;
    height: 200px;
    top: 55px;
    left:700px;
}

.imge{
    position:absolute;
    z-index: 0;
}
.imge{
    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
}
.up{
    transform: translate(0, 0);
    opacity: 1;
}
.area0{
    ackground-color: black;
    height: 100vh;
}
#areaid0{
    height: 100vh;
    ackground-color: #EEFFFF;
}
/*areaid0----------------------------*/
#areaid0 .figbox{
    margin: 0;
    padding: 0;
    width: 50%;
    height: 100vh;
    float: left;
    ackground-color: #EEFFFF;
}
#areaid0 .figbox img{
    position: relative;
    top: 150px;
    left: 130px;
    width: 100%;
    height: 70%;
}
#areaid0 .textbox{
    position: relative;
    top: 150px;
    right: 10px;
    float: right;
    width: 45%;
    ackground-color: cadetblue;
}
#areaid0 .textbox p{
    font-size: 18px;
    font-weight: bold;
}
#areaid0 .moji{
    font-family: 'Noto Sans JP', sans-serif;
    width: 90%;
    height: 90%;
    padding-top: 10px;
    padding-left: 30px;
}
/*areaid0----------------------------*/
/*areaid2----------------------------*/
#areaid2{
    ackground-color: crimson;
    /*height: 750px;*/
    height: 1000px;
    overflow:hidden;
    position: relative;
}
#areaid2 .figbox{
    margin: 0;
    padding: 0;
    width: 50%;
    height: 60vh;
    float: right;
    ackground-color: chartreuse;
}
#areaid2 .figbox img{
    position: relative;
    top: 150px;
    left: 130px;
    height: 300px;
}
#areaid2 .textbox{
    position: relative;
    top: 150px;
    left: 100px;
    float: left;
    width: 50%;
    ackground-color: cadetblue;
}
#areaid2 .textbox p{
    font-size: 20px;
    font-weight: bold;
}
#areaid2 .moji{
    font-family: 'Noto Sans JP', sans-serif;
    width: 90%;
    height: 90%;
    padding-top: 10px;
    padding-left: 30px;
}
.detailed-active-list{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    ackground-color: blue;
    argin-top: 130px;
    argin-top: 50px;
}
.detailed-active-list section{
    width: 28%;
    background-color: brown;
    position: relative;
	box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
	margin:0 0 50px 0;
    padding:20px 20px 50px 20px;
    border-radius: 10px;
}
.detailed-active-list section .active-taitle{
    background: burlywood;
    display: inline-block;
	position: absolute;
    left: -5px;
    top: -5px;
	z-index: 2;
	padding: 3px 5px;
	font-size:0.9rem;
}
.detailed-active-list section .detailed-active-img{
    padding-top:50%;
    adding-top:70%;
	background-size:cover!important;
}
.detailed-active-list section:nth-of-type(1) .detailed-active-img{
    background:url("image/katudou1f.png") no-repeat center;
    background-size: cover;
}
.detailed-active-list section:nth-of-type(2) .detailed-active-img{
    background:url("image/katudou2f.png") no-repeat center;
    background-size: cover;
}
.detailed-active-list section:nth-of-type(3) .detailed-active-img{
    background:url("image/sample1.jpg") no-repeat center;
    background-size: cover;
}
.detailed-active-list section h3{
    font-size: 1.3rem;
    text-align: center;
    border-bottom: 5px double #333;
    margin: 30px 0 0 0;
    padding: 0 0 20px 0;
}
/*areaid2----------------------------*/
/*areaid3----------------------------*/
#areaid3{
    ackground-color: crimson;
    /*height: 750px;*/
    height: 800px;
    overflow:hidden;
    position: relative;
}
#areaid3 .figbox{
    margin: 0;
    padding: 0;
    width: 50%;
    height: 60vh;
    float: left;
    ackground-color: chartreuse;
}
#areaid3 .figbox img{
    position: relative;
    top: 150px;
    left: 130px;
    height: 300px;
}
#areaid3 .textbox{
    position: relative;
    top: 150px;
    right: 100px;
    float: right;
    width: 50%;
    background-color: cadetblue;
}
#areaid3 .textbox p{
    font-size: 20px;
    font-weight: bold;
}
#areaid3 .moji{
    width: 90%;
    height: 90%;
    padding-top: 10px;
    padding-left: 30px;
}
.field-trip-gallery{
    background-color: cadetblue;
    margin-top: 140px;
}
.slider1 img{
    width: 100%;
}
.slider1 .slick-slide{
    margin:0 10px;
}
.field-trip-gallery ul{
    margin:0;
    padding: 0;
    list-style: none;
}
/*areaid3----------------------------*/

footer{
    position: relative;
    width: auto;
    margin-top: 50px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 50px;
    padding-left: 80px;
    /*z-index: 999;*/
    background-color: #C0C0C0;
}
.footer_menu{
    float: left;
    margin-left: 40px;
    height: 150px;
}
.footer_menu li{
    list-style: none;
}
.footer_logo{
    float: right;
    margin-right: 200px;
}
.copyright{
    text-align: center;
}
.btn a{
    background-color: #009cd3;
    color: #ffffff;
    font-size: 20px;
    width: 250px;
    display: block;
    text-align: center;
    line-height: 50px;
    margin-top: 20px;
    border-radius: 5px;
    border: 3px solid #009cd3;
}

.btn a:hover{
    text-decoration: none;
    background-color: #ffffff;
    color: #009cd3;
}

#about{
    background-image: url(image/newtakuto1.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}

#wrap{
    clear: both;
    background-color: #ffffff;
    margin-top: 220px;
    padding: 35px 0;
}

.main-center{
    width: 940px;
    margin: 0 auto;
}

h1{
    font-size: 60px;
    border-bottom: 1px solid #cccccc;
}

h2{
    font-size: 35px;
}

.icon:before{
    content:"";
    padding-right: 10px;
    border-left: 7px solid #9cb4a4;
}

.clearfix:after{
    content:"";
    display: block;
    clear: both;
}

section{
    margin-bottom: 35px;
}

#index #wrap{
    background-color: transparent;
    margin-top: 0;
    padding: 0;
    eight: 2000px;
}


#about #wrap a{
    font-size: 26px;
}

#work{
    background-image: url(image/kakoutakutoimage1.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}

.main{
    width: 700px;
    margin: 0 10px;
    float: left;
}

.sidebar{
    width: 200px;
    margin:0 10px 0 30px;
    float: right;
}

#work .work-list li{
    float: left;
    list-style: none;
    margin: 0 20px 15px 0;
}

#user{
    background-image: url(image/newtakuto4.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}

#company{
    background-image: url(image/kakoutakutoimage1.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}

#company .main th{
    width: 240px;
    background-color: #f0f0f0;
    padding: 12px 0;
    border:1px solid #cccccc;
}

#company .main td{
    width: 660px;
    padding: 12px 0 12px 40px;
    border:1px solid #cccccc;
}

table{
    border-spacing: 0;
    border-collapse: collapse;
}

#work .main th{
    width: 200px;
    background-color: #f0f0f0;
    padding: 3px 0;
    border:1px solid #cccccc;
}

#work .main td{
    width: 200px;
    padding: 3px 0 3px 40px;
    border:1px solid #cccccc;
}

#staff{
    background-image: url(image/kakoutakutoimage1.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}

#staff .main th{
    width: 200px;
    background-color: #f0f0f0;
    padding: 3px 0;
    border:1px solid #cccccc;
}

#staff .main td{
    width: 280px;
    padding: 3px 0 3px 40px;
    border:1px solid #cccccc;
}

#inquiry{
    
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}
/*activitycontent1----------------------------*/
#activitycontent1{
    ackground-color: #0000cc;
    background-image: url(image/katudou1f.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}
#activitycontent1 .main{
    ackground-color: #0000cc;
}
#activitycontent1 .main img{
    width: 100%;
}
#activitycontent1 .subjects-txt img{
    width: 100%;
    height: 100%;
}
#activitycontent1 .subjects-txt li{
    list-style: none;
}
#activitycontent1 .img1 ul{
    display: flex;
    background-color: #EEEEEE;
}
#activitycontent1 .subjects-txt2 img{
    width: 100%;
    height: 100%;
}
/*activitycontent1----------------------------*/

/*activitycontent2----------------------------*/
#activitycontent2{
    ackground-color: #0000cc;
    background-image: url(image/katudou2f.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}
#activitycontent2 .main img{
    width: 100%;
}
#activitycontent2 .subjects-txt img{
    width: 100%;
    height: 100%;
}
#activitycontent2 .subjects-txt li{
    list-style: none;
}
#activitycontent2 .img1 ul{
    display: flex;
    background-color: #EEEEEE;
}
#activitycontent2 .subjects-txt2 img{
    width: 100%;
    height: 100%;
}
/*activitycontent2----------------------------*/

/*activitycontent3----------------------------*/
#activitycontent3{
    ackground-color: #0000cc;
    background-image: url(image/katudou2f.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}
#activitycontent3 .main img{
    width: 100%;
}
#activitycontent3 .subjects-txt img{
    width: 100%;
    height: 100%;
}
#activitycontent3 .subjects-txt li{
    list-style: none;
}
#activitycontent3 .img1 ul{
    display: flex;
    background-color: #EEEEEE;
}
#activitycontent3 .subjects-txt2 img{
    width: 100%;
    height: 100%;
}
/*activitycontent3----------------------------*/

}

/*レスポンシブ*/
/* 480px〜599px：SP横
------------------------------ */
@media screen and (min-width:480px) and (max-width:599px) {
    /*新********************************************/
header{
    position: fixed;
    z-index: 999;
    top: 0;
    width:100%;
    height: 180px;
    margin: 0 auto;
    background:rgba(0,0,0,0.0);
    transition: 0.5s;
}
header.scroll-nav{
    position: fixed;
    z-index: 999;
    height:130px;
    background:rgba(255,255,255,0.5);
}
/***********************************************/

.logo{
    float: left;
    margin-top: 20px;
    margin-left: 150px;
}
.global-nav{
    float: right;
    margin-top: 25px;
    margin-right: 150px;
    display: none;
}
#hamburger{
    position: relative;
    display: block;
    width: 30px;
    height: 25px;
    margin: 0 0 0 auto;
}
#hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
}
#hamburger::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
 #hamburger::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: #fff;
}
.sp-global-nav{
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    transition: all .2s ease-in-out;
    opacity: 0;
    transform: translateY(-100%);
}
.sp-global-nav ul{
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.sp-global-nav li{
    margin: 0;
    padding: 0;
}
.sp-global-nav li span{
    font-size: 15px;
    color: #fff;
}
.sp-global-nav li a, .sp-global-nav li span{
    display: block;
    padding: 20px 0;
}
/*基準となるli要素*/
.sp-global-nav .close {
    position: relative;
    padding-left: 20px;
}
/*バツ印線1*/
.sp-global-nav .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate( 45deg );
}
/*バツ印線2*/
.sp-global-nav .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate( -45deg );
}
.toggle {
    transform: translateY( 0 );
    opacity: 1;
}
/*-- 新ボタン--*/
#wrap{
    clear: both;
}
.main-visual{
    height: 100vh;
}

.taitle1{
    font-size: 110%;
}
.taitle2{
    font-size: 50%;
}
.taitle3{
    font-size: 40%;
}
.taitle4{
    font-size:80%;
}
.taitle5{
    font-size: 80%;
}
.main-visual p{
    width: 100%;
    height: 100vh;
    margin-top: 70px;
    margin-left: 0;
    font-size: 40px;
    font-weight: bold;
}
.main-visual p span{
    display: block;
    text-align: center;
    color: transparent;
    animation: blur 10s ease-out infinite;
    -webkit-animation: blur 10s ease-out infinite;
}
.main-visual p span:nth-child(1) {
    animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
  }
.main-visual p span:nth-child(2) {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}
@keyframes blur {
    0%    {text-shadow:  0 0 100px #555555; opacity:0;}
    5%    {text-shadow:  0 0 90px #555555;}
    15%   {opacity: 1;}
    20%   {text-shadow:  0 0 0px #555555;}
    80%   {text-shadow:  0 0 0px #555555;}
    85%   {opacity: 1;}
    95%   {text-shadow:  0 0 90px #555555;}
    100%  {text-shadow:  0 0 100px #555555; opacity:0;}
}
  
  @-webkit-keyframes blur {
    0%    {text-shadow:  0 0 100px #777777; opacity:0;}
    5%    {text-shadow:  0 0 90px #777777;}
    15%   {opacity: 1;}
    20%   {text-shadow:  0 0 0px #777777;}
    80%   {text-shadow:  0 0 0px #777777;}
    85%   {opacity: 1;}
    95%   {text-shadow:  0 0 90px #777777;}
    100%  {text-shadow:  0 0 100px #777777; opacity:0;}
}

.imge{
    position:absolute;
    z-index: 0;
}
.imge{
    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
}
.up{
    transform: translate(0, 0);
    opacity: 1;
}
.area0{
    ackground-color: black;
    height: 100vh;
}
#areaid0{
    height: 100vh;
    ackground-color: #EEFFFF;
}
/*areaid0----------------------------*/
#areaid0 .figbox{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50%;
    background-color: #EEFFFF;
}
#areaid0 .figbox img{
    /*
    position: relative;
    top: 100px;
    left: 0px;
    width: 100%;
    height: 50%;*/
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
#areaid0 .textbox{
    /*
    position: relative;
    top: 150px;
    right: 10px;
    width: 100%;
    height: 50%;
    */
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    ackground-color: cadetblue;
}
#areaid0 .textbox p{
    font-size: 15px;
    font-weight: bold;
}
#areaid0 .moji{
    font-family: 'Noto Sans JP', sans-serif;
    width: 90%;
    height: 90%;
    padding-top: 10px;
    padding-left: 30px;
}
/*areaid0----------------------------*/
/*areaid2----------------------------*/
#areaid2 .figbox{
    margin: 0;
    margin-top: 50px;
    padding: 0;
    width: 100%;
    height: 25vh;
    ackground-color: chartreuse;
}
#areaid2 .figbox img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
#areaid2 .textbox{
    top: 150px;
    left: 100px;
    width: 100%;
    ackground-color: cadetblue;
}
#areaid2 .textbox p{
    font-size: 15px;
    font-weight: bold;
}
#areaid2 .moji{
    font-family: 'Noto Sans JP', sans-serif;
    width: 90%;
    height: 90%;
    padding-top: 10px;
    padding-left: 30px;
}
.detailed-active-list{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    ackground-color: blue;
}
.detailed-active-list section{
    width: 25%;
    background-color: brown;
    position: relative;
	box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
	margin:0 0 20px 0;
    padding:20px 20px 20px 20px;
    border-radius: 10px;
}
.detailed-active-list section .active-taitle{
    background: burlywood;
    display: inline-block;
	position: absolute;
    left: -5px;
    top: -5px;
	z-index: 2;
	padding: 3px 5px;
	font-size:0.9rem;
}
.detailed-active-list section .detailed-active-img{
    padding-top:70%;
	background-size:cover!important;
}
.detailed-active-list section:nth-of-type(1) .detailed-active-img{
    background:url("image/katudou1f.png") no-repeat center;
    background-size: cover;
}
.detailed-active-list section:nth-of-type(2) .detailed-active-img{
    background:url("image/katudou2f.png") no-repeat center;
    background-size: cover;
}
.detailed-active-list section:nth-of-type(3) .detailed-active-img{
    background:url("image/sample1.jpg") no-repeat center;
    background-size: cover;
}
.detailed-active-list section h3{
    font-size: 1.3rem;
    text-align: center;
    border-bottom: 5px double #333;
    margin: 30px 0 0 0;
    padding: 0 0 20px 0;
}
/*areaid2----------------------------*/
/*areaid3----------------------------*/
#areaid3{
    ackground-color: crimson;
    height: 750px;
    overflow:hidden;
}
#areaid3 .figbox{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 30vh;
    ackground-color: chartreuse;
}
#areaid3 .figbox img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
}
#areaid3 .textbox{
    width: 100%;
    ackground-color: cadetblue;
}
#areaid3 .textbox p{
    font-size: 15px;
    font-weight: bold;
}
#areaid3 .moji{
    width: 90%;
    height: 90%;
    padding-top: 10px;
    padding-left: 30px;
}
.field-trip-gallery{
    background-color: #006699;
}
.slider1 img{
    width: 100%;
    height: auto;
}
.slider1 .slick-slide{
    margin:0 10px;
}
.field-trip-gallery ul{
    margin:0;
    padding: 0;
    list-style: none;
}
/*areaid3----------------------------*/

footer{
    position: relative;
    width: auto;
    margin-top: 50px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 50px;
    padding-left: 80px;
    /*z-index: 999;*/
    background-color: #C0C0C0;
}
.footer_menu{
    float: left;
    margin-left: 40px;
    height: 150px;
}
.footer_menu li{
    list-style: none;
}
.footer_logo{
    float: right;
    margin-right: 200px;
}
.copyright{
    text-align: center;
}
.btn a{
    background-color: #009cd3;
    color: #ffffff;
    font-size: 20px;
    width: 250px;
    display: block;
    text-align: center;
    line-height: 50px;
    margin-top: 20px;
    border-radius: 5px;
    border: 3px solid #009cd3;
}

.btn a:hover{
    text-decoration: none;
    background-color: #ffffff;
    color: #009cd3;
}

#about{
    background-image: url(image/newtakuto1.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
}

#wrap{
    clear: both;
    background-color: #ffffff;
    margin-top: 220px;
    padding: 35px 0;
}

.main-center{
    width: 940px;
    margin: 0 auto;
}

h1{
    font-size: 65px;
    border-bottom: 1px solid #cccccc;
}

h2{
    font-size: 35px;
}

.icon:before{
    content:"";
    padding-right: 10px;
    border-left: 7px solid #9cb4a4;
}

.clearfix:after{
    content:"";
    display: block;
    clear: both;
}

section{
    margin-bottom: 35px;
}

#index #wrap{
    background-color: transparent;
    margin-top: 0;
    padding: 0;
    eight: 2000px;
}

}