body{
    width:100vw;
    font-family: "Sawarabi Mincho",sans-serif;
    margin:0;
}
a{
    text-decoration: none;
}
.soudaikouken{
    width:100vw;
    padding:0;
    position: fixed;
    /*基準を画面の左上に*/
    top: 0;
    left: 0;
    /*余白が入らないように*/
    margin: 0;
    /*以下装飾*/
    width: 100%;
    box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2);
        background-color: #317651;
    z-index:3;
}
.top{
    width:100vw;
    height: 201vw;
    margin-top: 54px;
    padding:0;
    z-index:2;
    position:absolute;


}
.contents_about{
    background-color: rgba(46, 163, 217,0.9);
    width:87vw;
    margin: 6vw 6vw 20vw 6vw;
    border: 2px solid #000000;
    padding:20px 15px;
    z-index:1;
    margin-top: 230vw;
    
}
.contents_detail{
    width:80vw;
    margin:20px auto;
    z-index:1;
}
img{
    width:100vw;
    z-index:1;

}
h1{
    font-size: 30px;
    font-family: 'Sawarabi Mincho', sans-serif;
    z-index:1;

}
h2{
    font-size:15px;
    font-family: 'Sawarabi Mincho', sans-serif;
    z-index:1;
    line-height:25px;

}
.contents_detail_1{
    background-color: #dd4465;
    border: 2px solid #000000;
    padding-left:8px;
    z-index:1;

}
.contents_detail_2{
    background-color: #f5f7dc;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
    z-index:1;

}
.contents_detail_2 p{
    margin:0;
    padding:18px 8px;
    z-index:1;

}
.contents_detail_3 img{
    width: 100%;
    padding: 2%;
    background-color: #f5f7dc;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    z-index:1;
}
.contents_url{
    width:100vw;
    height:70vw;
    margin-top:60px;
    z-index:1;

}
.contents_url img{
    margin:15px 0;
    z-index:1;

}







footer a{
    color:white;
    font-size:5vw;
    text-decoration: none;
    z-index:1;

}

.box2{
    background-color:black;
    padding-bottom:5vw;
    z-index:1;

}

.link{
    font-size:6vw;
    margin-bottom:7vw;
    z-index:1;

}



footer p{
    color:white;
    font-family: "Sawarabi Mincho";
    font-size:3.8vw;
    text-align: center;
    z-index:1;

}

.kyosai{
    padding-top:7vw;
    z-index:1;

}

.ftlogo{
    width:60vw;
    margin:0 auto;
    padding-top:2vw;
    z-index:1;

}

footer img{
    width:60vw;
    margin:8vw 0vw 5vw 0vw;
    z-index:1;

}




/*------headerのCSS-------*/


ul{
  list-style: none;
  margin: 0;
  padding: 0;
}


/* ドロワーメニュー
------------------------------------------------- */
.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
  z-index:1;

}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
  z-index:1;

}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index:1;

}
main {
  height: 100%;
  min-height: 100vh;
  background-color: #eee;
  transition: all .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index:1;

}

main.open {
  transform: translateX(-250px);
}

main h1 {
  font-weight: 500;
  font-family: 'Sawarabi Mincho', sans-serif;
  margin-bottom:20px;
}

main p {
  font-family: 'Sawarabi Mincho', sans-serif;
  margin:20px;
  line-height:27px;
}

.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 17px;
  right: 20px;
  z-index: 100;
/*   transform: translateX(0);
  transition: transform .5s;
 */}
/* .menu-trigger.active {
  transform: translateX(-250px);
}
 */.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fdfade;
  transition: all .5s;
}
.menu-trigger.active span {
  background-color: #fdfade;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

nav {
  width: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: rgb(217, 53, 50, 1);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all .5s;
}
nav.open {
  transform: translateZ(0);
}
nav li {
  color: #fdfade;
  text-align: center;
  padding: 16px 0;
  font-size: 20px;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;

	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




@charset 'UTF-8';

body {
  font-family: "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "Meiryo UI", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
* {
  box-sizing: border-box;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* ドロワーメニュー
------------------------------------------------- */
.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
  z-index:1;

}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 782%;
  opacity: 1;
}
main {
  height: 100%;
  min-height: 100vh;
  background-color: #eee;
  transition: all .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.open {
  transform: translateX(-250px);
}

.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
/*   transform: translateX(0);
  transition: transform .5s;
 */}
/* .menu-trigger.active {
  transform: translateX(-250px);
}
 */.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fdfade;
  ;
  transition: all .5s;
}
.menu-trigger.active span {
  color: #fdfade;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

nav {
  width: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: rgb(217, 53, 50, 1);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all .5s;
}
nav.open {
  transform: translateZ(0);
}
nav li {
  color: #fdfade;
  text-align: center;
  padding: 16px 0;
  font-size: 20px;
  font-family: "Sawarabi Mincho";
}





.wrapper:before{
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:0;
    width:100%;
    height:100vh;
    background:url(img/bg.png) center;
    background-size:cover;
    font-family: 'Sawarabi Mincho', sans-serif;
}

p{
    font-family: 'Sawarabi Mincho', sans-serif;
    font-weight: 900;
    z-index:1;

}

.contents{
    margin:-3vw 0vw -3vw 0vw;
    z-index:1;

}


.title{
    width:100%;
    margin:0;
    padding:13vw 0 5vw 0;
    z-index:1;

}


.content img{
    width:70vw;
    text-align: center;
    z-index:1;


}


.wrapper_bg{
    width: 85%;
    background-color: #31a2d9;
    border: 2px solid #000000;
    margin:5vw 7.5vw 5vw 7.5vw;
    padding:0;
    opacity:0.9;
    z-index:1;

}

._text{
    margin:5vw 4vw 5vw 4vw;
    font-size:16px;
    line-height:28px;
    z-index:1;

}


.title1{
    width: 85%;
    background-color: #cb72a1;
    border: 2px solid #000000;
    text-align: center;
    margin: 15vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.title1 img{
    width:60vw;
    text-align: center;
    margin:3vw 0 3vw 0;
    z-index:1;

}

.image1{
    width: 85vw;
    margin: -1vw 7.5vw 0vw 7.5vw;
    z-index:1;
}

.text1{
    width: 85%;
    background-color: #faf8dc;
    border: 2px solid #000000;
    margin: -10vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.text1 p{
    margin:9vw 4vw 5vw 4vw;
    font-size:16px;
    line-height:28px;
    z-index:1;

}





.title2{
    width: 85%;
    background-color: #ce4461;
    border: 2px solid #000000;
    text-align: center;
    margin: 10vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.title2 img{
    width:60vw;
    text-align: center;
    margin:5vw 0 5vw 0;
    z-index:1;

}

.image2{
    width: 85vw;
    margin: -1vw 7.5vw 0vw 7.5vw;
    z-index:1;
}

.text2{
    width: 85%;
    background-color: #faf8dc;
    border: 2px solid #000000;
    margin: -10vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.text2 p{
    margin:9vw 4vw 5vw 4vw;
    font-size:16px;
    line-height:28px;
    z-index:1;

}




.title3{
    width: 85%;
    background-color: #f4e23e;
    border: 2px solid #000000;
    text-align: center;
    margin: 10vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.title3 img{
    width:60vw;
    text-align: center;
    margin:3vw 0 3vw 0;
    z-index:1;

}

.image3{
    width: 86vw;
    margin: -3vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.text3{
    width: 85%;
    background-color: #faf8dc;
    border: 2px solid #000000;
    margin: -10vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.text3 p{
    margin:9vw 4vw 5vw 4vw;
    font-size:16px;
    line-height:28px;
    z-index:1;

}





.title4{
    width: 85%;
    background-color: #317651;
    border: 2px solid #000000;
    text-align: center;
    margin: 10vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.title4 img{
    width:60vw;
    text-align: center;
    margin:5vw 0 5vw 0;
    z-index:1;

}

.image4{
    width: 85vw;
    margin: -1vw 7.5vw 0vw 7.5vw;
    z-index:1;
}

.text4{
    width: 85%;
    background-color: #faf8dc;
    border: 2px solid #000000;
    margin: -10vw 7.5vw 0vw 7.5vw;
    z-index:1;
}

.text4 p{
    margin:9vw 4vw 5vw 4vw;
    font-size:16px;
    line-height:28px;
    z-index:1;
}





.title5{
    width: 85%;
    background-color: #31a2d9;
    border: 2px solid #000000;
    text-align: center;
    margin: 10vw 7.5vw 0vw 7.5vw;
    z-index:1;

}

.title5 img{
    width:60vw;
    text-align: center;
    margin:5vw 0 5vw 0;
    z-index:1;

}

.image5{
    width: 85vw;
    margin: -1vw 7.5vw 0vw 7.5vw;
    z-index:1;
}

.text5{
    width: 85%;
    background-color: #faf8dc;
    border: 2px solid #000000;
    margin: -10vw 7.5vw 15vw 7.5vw;
    z-index:1;

}

.text5 p{
    margin:9vw 4vw 5vw 4vw;
    font-size:16px;
    line-height:28px;
    z-index:1;

}







footer{
    width:100vw;
    background-color:black;
    color:white;
    margin:12vw 0 0 0 ;
    padding:0;
    z-index:1;
    position: relative;

}

footer a{
    color:white;
    font-size:5vw;
    text-decoration: none;
    z-index:1;

}

.box1{
    padding-top:5vw;
    padding-bottom:4vw;
    background-color:#d7352e;
    z-index:1;

}

.box2{
    background-color:black;
    z-index:1;
    margin-top: 60vw;
}

.link{
    font-size:6vw;
    margin-top:7vw;
    margin-bottom:7vw;
    z-index:1;

}



footer p{
    color:white;
    font-family: "Sawarabi Mincho";
    font-weight: 900;
    font-size:3.8vw;
    text-align: center;
    z-index:1;

}

.kyosai{
    margin-bottom:6vw;
    z-index:1;

}

.ftlogo{
    width:60vw;
    margin:0 auto;    
    z-index:1;
}

footer img{
    width:60vw;
    margin:8vw 0vw 5vw 0vw;
    z-index:1;

}


.red{
width:100vw;
z-index:3;
position:absolute;
background-color:#d7352e;
height:60vw;
padding: 7vw 0;
}

.red h2{
    font-size:6vw;
    color:#fdfade;
    text-align: center;
    line-height:2.5;
}
