@charset "utf-8";
p, h1, h2, h3, h4, ul, dl, dd , body  {
    padding: 0;
    margin: 0;
}
img {
    vertical-align: top;
}
body {
    color: #414141;
    font-family: 'Noto Sans','Noto Sans JP', sans-serif;
}
h2 {
    margin-top: 60px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
}

.inner {
    margin: 0 auto;
    padding: 0 20px;
    width: 1000px;
}
header {
    left: auto;
    right: auto;
    top: 0px;
    position: fixed;
    background-color: #fff;
    width: 100%;
    z-index: 100;
    padding-top: 0px;
}

header img {
    position: absolute;
}
header.logo-nav  {
    position: relative;
}


nav {
    margin-left: 300px;
    margin-top: 30px;
}
nav ul {
    display: flex;
    list-style-type: none;
    	
}
nav li {
    width: 150px;
    height: 40px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 25px;
}

nav li a {
    text-decoration: none;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #515151;
    font-weight: bold;
    /*背景色の基点とするためrelativeを指定*/
    position: relative;
    /*アニメーションの指定*/
    transition: all .7s;
}
nav li a:hover {
    color:#ffffff;
}
nav li a::after {
  content: '';
    /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
    /*背景の形状*/
  width: 0;
  height: 1px;
  opacity: 0;/*はじめは透過を0に*/
}
nav li a .btn-pink::after {
    background:#EC7070;
}
nav li a .btn-red::after {
    background:#C30D23;
}
nav li a .btn-navy::after {
    background:#0B3A63;
}
nav li a .btn-orange::after {
    background:#EC9D16;
}

/*現在地とhoverの設定*/
nav li.current a::after,
nav li a.btn-pink:hover::after {
    /*背景の形状*/
  width: 100%;
  opacity: 1;
    /*アニメーションの指定*/
  animation:bgappear-pink 0.5s forwards;
}

nav li.current a::after,
nav li a.btn-red:hover::after {
    /*背景の形状*/
  width: 100%;
  opacity: 1;
    /*アニメーションの指定*/
  animation:bgappear-red 0.5s forwards;
}

nav li.current a::after,
nav li a.btn-navy:hover::after {
    /*背景の形状*/
  width: 100%;
  opacity: 1;
    /*アニメーションの指定*/
  animation:bgappear-navy 0.5s forwards;
}

nav li.current a::after,
nav li a.btn-orange:hover::after {
    /*背景の形状*/
  width: 100%;
  opacity: 1;
    /*アニメーションの指定*/
  animation:bgappear-orange 0.5s forwards;
}

/*アニメーションで線を伸ばして背景をつける*/
@keyframes bgappear-pink{
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background:#EC7070;
  }
}

@keyframes bgappear-red{
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background:#C30D23;
  }
}

@keyframes bgappear-navy{
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background:#0B3A63;
  }
}

@keyframes bgappear-orange{
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background:#EC9D16;
  }
}

main {
    margin-top: 70px;
}
/* 20230215 yogo */
.main-text   {
    font-size: 1.5em;
    margin-top: 250px;
    margin-left: 10%;
    z-index: 10;
    position: absolute;
}
.sec2 h2, .sec4 h2, .sec5 h2  , .sec6 h2{
    text-align: center;
    padding-bottom: 30px;
}
.sec1 , .sec2  ,  .sec3  , .sec4, .sec5, .sec6{
    padding: 30px 0;

}

.sec1 h2    {
    padding-top: 30px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 10px;
    color: #ea6000;
    font-size: 3em;
    font-weight: 900;
}
.sec1 h3    {
    padding-top: 50px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 10px;
    color: #ea6000;
    font-size: 1.5em;
    font-weight: lighter;
}
#sec1 {
    position: relative;

}

.inner .sec2 {
}
a .anchor {
    display: block;
    margin-top: -50px;
}



.message-1 {
    padding-left: 1em;
}
.message-2 {
    padding-left: 10em;
}
.message-3 {
    padding-left: 20em;
}
.message-4 {
    padding-left: 30em;
}

.message-5 {
    font-size: 2em;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 10px;
    background-image: url(img/massege-b.png);
    background-repeat: no-repeat;
    background-position: center 0%;
    margin: 50px 30px;
    height: 170px;
}

.sec4 table {
    border-collapse: collapse;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    width: 900px;
}
.sec4 tr th {
    background-color: #eb9b14;
}
.sec4 tr td {
    background-color: rgba(235,155,20,0.50);
}
.sec4 th, .sec4 td {
    padding: 15px;
    border: 2px solid #fff;
    vertical-align: top;
}
.sec4 .btn-entry{
	display: table;
	margin: 0 auto;
}
.sec6 .content-area {
    margin: 0 auto;
    width: 1000px;
    display: flex;
}
.content-area .content-1 {
    width: 70%;
    background-color: #aabf5e;
    height: 450px;
}
.sec6 .content-1 iframe {
    padding: 50px 50px;
}

.content-area .content-2 {
    width: 30%;
    background-color: #aabf5e;
    text-align: center;
    height: 450px;
}
.content-2 img {
    margin-top: 40px;


}
.sec3 h3 {
    font-size: 1.3em;
    margin: 10px 0;
    letter-spacing: 0.1em;
}
.sec3 .sec3-text {
	margin: 10px auto;
    font-size: 2.1em;
	display: table;
}
.textbox {
    height: 150px;
    z-index: 100;
}
.sec3  {
    position: relative;
}






.content-2 img {
    padding: 15px 10px;
}
.sec2 .wrapper {
    background-color: rgba(195,13,35,0.20);
    width: 1000px;
    margin-top: 10px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 50px;
    height: 650px;
}
.sec2 .boxarea {
    display: flex;
    justify-content: center;
}
.sec2 .wrapper h3 {
    letter-spacing: 0.05em;
    font-size: 1.5em;
}


.sec2 .box {
    width: 250px;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: rgba(195,13,35,0.20);
    height: 300px;
    margin-left: 10px;
    margin-right: 10px;
}

.sec2 .box-2 {
    background-color: rgba(195,13,35,0.20);
    width: 900px;
    margin: 0 auto;
    height: 70px
];
    text-align: center;
    height: 70px;
    border-radius: 10px;
    line-height: 70px;
}
.sec2 h3   , .sec2 h4{
    text-align: center;
    padding-top: 40px;
    padding-bottom: 15px;

}

.sec2 .content-area {
    margin-top: 10px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 50px;
    display: flex;
}
.sec2 .content-a h3 {
    font-size: 2.5em;
    padding-bottom: 40px;
    letter-spacing: 0.05em;
}

.sec2 .content-a {
    margin-top: 0;
    margin-left: 50px;
    margin-bottom: 0;
    width: 40%;
}
.sec2 .content-b {
    margin-top: 0;
    margin-left: 50px;
    margin-bottom: 0;
    width: 60%;
}


.summary-1 {
    margin: 10px 0;
    padding: 15px;
    border: 2px solid #0070bf;
}
.summary-2 {
    margin: 10px 0;
    padding: 15px;
    border: 2px solid #00b050;
}
.summary-3 {
    margin: 10px 0;
    padding: 15px;
    border: 2px solid #e95513;
}
.summary-4 {
    margin: 10px 0;
    padding: 15px;
    border: 2px solid #e3007f;
}
.summary-5 {
    margin-top: 10px;
    margin-right: 0;
    margin-bottom: 10px;
    padding: 15px;
    border: 2px solid #7e308d;
}
.sec5 dt  {
    padding: 10px;
    background-color: rgba(10,57,98,0.40);
}
.sec5 .palist {
    margin: 0 auto;
    width: 900px;
}
.sec5 dd {
    padding: 15px;
    background-color: rgba(10,57,98,0.20);
    margin-bottom: 5px;
}
footer {
    background-color: rgba(235,155,20,0.80);
    text-align: center;
    width: 100%;
    height: 300px;
    margin-top: 50px;
}
footer img {
    margin: 30px 0 20px 0;
}


@media screen and (max-width:1060px){
        .inner {
        width: calc(100% - 60px);
    }
    nav ul {
        flex-wrap: wrap;
    }
.sec2 .wrapper {
    width: calc(100% - 60px);
}
}

@media screen and (max-width: 600px){
    header .logo-nav img{
        width: 25vw;
}
    nav{
        margin-left: 30vw;
    }
    nav li{
        display: block;
        width: 50vw;
        color: #414141;
    }
    nav li:nth-child(1){
        background-color: #EC7070;
    }
nav li:nth-child(2){
        background-color: #EC9D16;
    }
nav li:nth-child(3){
        background-color: #C30D23;
    }
nav li:nth-child(4){
        background-color: #0B3A63;
    }
nav li:nth-child(5){
        background-color: #EC9D16;
    }
nav a{
color: #ffffff !important;
}
#nav-toggle{
    width: 70px;
height: 50px;
margin-left: auto;
position: relative;
right: 20px;
}
#nav-toggle span {
	width: 30px;
	height: 4px;
	display: block;
	background-color: #333333;
	position: absolute;
transition: 0.3s;
}
#nav-toggle span:nth-child(1) {
	top: 12px;
	background-color: #EC7070;
}
#nav-toggle span:nth-child(2)  {
	top: 23px;
	background-color: #C30D23;
}
#nav-toggle span:nth-child(3) {
	top: 34px;
	background-color: #0B3A63;
}
#nav-toggle.open span:nth-child(1) {
	top: 23px;
	transform: rotate(315deg);
}
#nav-toggle.open span:nth-child(2)  {
	width: 0px;
	left: 50%;
}
#nav-toggle.open span:nth-child(3)  {
	top: 23px;
	transform:rotate(-315deg)
}
#nav-toggle span {
	transition: 0.3s;
}
nav ul{
display: none;
}
}


@media screen and (min-width:601px){
nav ul {
	display: flex !important;
}
}
