@charset "UTF-8";
/* CSS Document */
/*ブレイクポイント　1000px, 600px, 500px, 320px*/


/*ーーーーーーーーーーーーーーーーーーーーーーーータブレット縦・スマホ横　1024以下ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media(max-width:1024px) {
    
body{
    background-color:rgba(123,120,133,1.00);
    width: 100%;
    margin: 0vw;
}

/*header ロゴアコーディオン用CSS　ここから*/
header{
    width: 100%;
    margin: 0vw;
    z-index: 99;
    display: block;
    
    /*background-color: brown;*/
}

.logo-menu{
    display: none;
}
    
.logo-menu2{
    display: block;
    widows: 100%;
    margin: 0vw;
    position: relative;
}

.acd-check{
  display: none;
    position: absolute;
    right: 20vw;
}


.acd-label{
  display: block;
    
  width: 10%;
  height: auto;
  margin: 0vw;
  color: #fff;
  cursor: pointer;
  background-color: rgba(162,158,175,0.60);
  border-radius: 12vw;
  padding: 0.6vw 0.6vw 0vw 0.6vw;
  position: fixed;
  top: 1.5vw;
  left: 44vw; /*これでレコーディオンメニューロゴの左右位置決めてる*/
  z-index: 999; 
}

.acd-label img{
    width: 100%;
    margin: 0vw;
}

.acd-content{
    
  /*--前の。キープ
  width: 100%;
  background-color: rgba(162,158,175,1.00); 
  opacity: 0;
  transition: .5s;
  visibility: hidden;
  position: absolute;
  left: 0vw;
  right: 0vw;
  top: -1vw;
  */
    
  width: 100%;
  margin: 0vw;
  background-color: rgba(162,158,175,1.00); 
  opacity: 0;
  transition: .9s;
  visibility: hidden;
  position: absolute;
  left: 0vw;
  right: 0vw;
  top: 0vw; /*モーションの位置＝どの位置から出てくるか。 例えば10vwは、top:10vw;の位置から出てくるってこと*/

}

.acd-content li{
    
    list-style: none;
    margin: 8vw 0vw;
    position: relative;
    top: 10vw;
    left: 0vw;
    text-align: center;
    float: none;
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-size: 4vw;
    
    /*background-color: rgba(72,0,255,1.00);*/

}

.acd-content a{
    /*background-color: rgba(72,0,255,1.00);  */
    text-decoration: none; /*リンク下のバーを消す*/
    /*background-color: brown;    メンテ用*/
    color: aliceblue; /*リンク文字の色変更用*/
}

.acd-check:checked + .acd-label + .acd-content{   
  width: 100%;
  margin: 0vw 0vw 0vw 0vw;
  height: 100%;
  opacity: 1;
  padding: 2vw 0vw;
  visibility: visible;
  position: fixed;
  top: -0vw; /*モーションの位置＝どの位置から出てくるか。 例えば10vwは、top:10vw;の位置から出てくるってこと*/
  left: 0vw;
  z-index: 99; 
    
  /*background-color: mediumspringgreen;*/
}
/*header ロゴアコーディオン用CSS　ここまで*/
    

main{
    width: 100%;
    position: absolute;
    top:14vw;
    left: 0vw;
    text-align: center; /*main全体にかかってる*/
    margin: 0vw;
    
    /*background-color: yellow;*/
}

main h1{
    color: aliceblue;
    position: relative;
    right: 0vw;
    margin:  2vw 4vw 4vw 4vw;
    
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-weight: 100;
    font-size: 3.5vw;
    
    /*background-color: deeppink;*/
}


/*ーーーーー　タブメニューCSS　ここから　ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*タブ切り替え全体のスタイル*/
.tabs {
  padding-bottom: 30vw; /*コンテンツの中身の表示領域？*/
  width: 90%;
  margin: 0vw;
  position: relative;
  left: 5.0vw;
    
  /*background-color: rgba(250,176,79,1.00);*/
}


/*タブのスタイル*/
.tab_item {
  width: 40%;
    
  border: 0.1vw solid rgba(255,255,255,0.00);
  border-radius: 0.7vw;
  
  padding: 0.3vw 0vw 0.3vw 0vw;
  margin: 0vw 0vw 2vw 0vw;
  text-align: center;
  display: block;
  float: none;
  position: relative;
  left: 26vw;
  
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: bold;
  font-size: 1.7vw;
  color: rgba(255,255,255,0.60); /*選択されていないタブメニュータイトルの文字色*/

  transition: all 0.2s ease;
    
  /*background-color: rgba(0,84,7,1.00);*/
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 5vw 0vw; /*タブメニュータイトルからコンテンツ内容までの距離感*/
  clear: both;
  overflow: hidden;
  width: 100%;
  margin: 0vw;
  position: relative;
  right: 6.7vw;
}

.tab_content_description{
  /*background-color: rgba(81,0,25,1.00);*/
}


/*選択されているタブのコンテンツのみを表示*/
#care1:checked ~ #care1_content,
#care2:checked ~ #care2_content,
#care3:checked ~ #care3_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  /* background-color: #5ab4bd; */
  color: #fff;
  border: 0.1vw solid rgba(255,255,255,1.00);
  border-radius: 0.7vw;

}
/*ーーーーー　タブメニューCSS　ここまで　ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/


/*ーーー　「chapter-1」中身　ここからーーー*/
.chapter{
    width: 80%;
    margin: 0vw 0vw -4vw 0vw;
    position: relative;
    top: -10vw;
    left: 15.5vw;
    color: aliceblue;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    
    /*background-color: rgba(0,139,48,1.00);*/
}

.chapter h2{
    padding: 2vw 0vw 0vw 0vw;
    margin-top: 10vw;
    
    font-size: 3vw;
}

.chapter p{
    font-weight: 100;
    font-size: 1.6vw;
    margin: 3vw 0vw;
    padding: 0vw 5vw;
    text-align: left;

}

iframe{
    width: 90%;

}


p.another{
    width: 80%;
    margin: 0vw;

    color: aliceblue;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 1.4vw;
    
    border: 0.1vw solid rgba(255,255,255,0.50);
    padding: 1vw;
    position: relative;
    top: -3vw;
    left: 8vw;
    
}



/*ーーー　「chapter-1」中身　ここまでーーー*/







footer{
    width: 100%;
    margin-top: -25vw;
    position: relative;
    left: 0vw;
    padding: 0vw 0vw 0vw 0vw;
    height: 55vw;
    z-index: 20;
    background-color: rgba(84,82,90,1.00);
    text-align: center;
}

.contact-icon{
    width: 100%;
    margin: 0vw;
    position: relative;
    top: 4vw;
    left: 0vw;
    /*background-color: blue;    */
}

.contact-icon a{
    /*background-color: aqua;*/
    padding: 1vw 0vw 0vw 0vw;
    margin: 0vw 3vw;
}

.contact-icon img{
    width: 4%;
    margin: 0vw 0vw;
}

.footer-menu-list{
    width: 90%; /*これが100%だったせいで謎余白ができてた*/
    margin: 0vw 0vw;
    position: relative;
    top: 8vw;
    left: 10%;
    
    /*background-color: lawngreen;*/
}

.footer-menu-list li{
    width: 15%; /*.footer-menu-listのwidthが100%なので、*/
    margin: 0vw 0vw;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: aliceblue;
    font-size: 2vw;
    list-style: none;
    position: relative;
    top:0vw;
    left: 0vw;
    float: left;
    
    /*background-color: rgba(255,244,0,1.00);*/
}

.footer-menu-list a{
    text-decoration: none; /*リンク下のバーを消す*/
    color: aliceblue; /*リンク文字の色変更用*/
    
    /*background-color: brown;*/
}

.copyright{
    margin: 0vw 0vw 2vw 0vw;
    position: relative;
    top: 14vw;
    
    /*background-color: rgba(125,68,28,0.50);*/
}

.copyright p{
    width: 100%;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    
    /*background-color: rgba(140,180,60,0.50);*/
}    
    
.footer-logo{
    width: 100%;
    margin: 0vw;
    position: relative;
    top: 16vw;
    left: 0vw;
    text-align: center;
    
    /*background-color: black;*/
}

.footer-logo img{
    width: 7%;
    margin: 0vw;
    position: relative;
    right: 0%;
    
    /*background-color: lightcoral;*/
}

.c-mark{
    width: 100%;
    margin: 0vw;
    position: relative;
    top: 16vw;
    left: 0vw;
    text-align: center;
    font-size: 0.8vw;
    
    color: rgba(255,255,255,1.00);
}
    
}

/*ーーーーーーーーーーーーーーーーーーーーーーーータブレット縦・スマホ横　1000以下ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/


/*ーーーーーーーーーーーーーーーーーーーーーーーースマホ縦　599以下ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media(max-width:599px) {

body{
    width: 100%;
    margin: 0vw;
    position: relative;
    top: 0vw;
    overflow-x: hidden;
    background-color:rgba(123,120,133,1.00);
}

    /*header ロゴアコーディオン用CSS　ここから*/
header{
    width: 100%;
    margin: 0vw;
    z-index: 99;
    display: block;
    /*background-color: brown; */
}
    
.logo-menu{
    display: none;
}
    
.logo-menu2{
    display: block;
    widows: 100%;
    margin: 0vw;
    position: relative;
}

.acd-check{
  display: none;
    position: absolute;
    right: 20vw;
}


.acd-label{
  display: block;
    
  width: 20%;
  height: auto;
  margin: 0vw;
  color: #fff;
  cursor: pointer;
  background-color: rgba(162,158,175,0.60);
  border-radius: 12vw;
  padding: 1.5vw 1.5vw 0vw 1.5vw;
  position: fixed;
  top: 1.5vw;
  left: 39vw; /*これでレコーディオンメニューロゴの左右位置決めてる*/
  z-index: 999; 
}

.acd-label img{
    width: 100%;
    margin: 0vw;
}

.acd-content{
    
  /*--前の。キープ
  width: 100%;
  background-color: rgba(162,158,175,1.00); 
  opacity: 0;
  transition: .5s;
  visibility: hidden;
  position: absolute;
  left: 0vw;
  right: 0vw;
  top: -1vw;
  */
    
  width: 100%;
  margin: 0vw;
  background-color: rgba(162,158,175,1.00); 
  opacity: 0;
  transition: .9s;
  visibility: hidden;
  position: absolute;
  left: 0vw;
  right: 0vw;
  top: 0vw; /*モーションの位置＝どの位置から出てくるか。 例えば10vwは、top:10vw;の位置から出てくるってこと*/

}

.acd-content li{
    
    list-style: none;
    margin: 12vw 0vw;
    position: relative;
    top: 20vw;
    left: 0vw;
    text-align: center;
    float: none;
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-size: 5vw;
    
    /*ackground-color: rgba(72,0,255,1.00);*/

}

.acd-content a{
    /*background-color: rgba(72,0,255,1.00);  */
    text-decoration: none; /*リンク下のバーを消す*/
    /*background-color: brown;    メンテ用*/
    color: aliceblue; /*リンク文字の色変更用*/
}

.acd-check:checked + .acd-label + .acd-content{   
  width: 100%;
  margin: 0vw 0vw 0vw 0vw;
  height: 100%;
  opacity: 1;
  padding: 2vw 0vw;
  visibility: visible;
  position: fixed;
  top: -0vw; /*モーションの位置＝どの位置から出てくるか。 例えば10vwは、top:10vw;の位置から出てくるってこと*/
  left: 0vw;
  z-index: 99; 
    
  /*background-color: mediumspringgreen;*/
}
/*header ロゴアコーディオン用CSS　ここまで*/
    

main{
    width: 100%;
    margin: 31vw 0vw 0vw 0vw;
    position: relative;
    left: 0vw;
    
    /*background-color: wheat;*/

}

main h1{
    color: aliceblue;
    position: relative;
    right: 0vw;
    box-sizing: border-box;
    margin:  2vw 4vw 10vw 4vw;
    
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-weight: 100;
    font-size: 9vw;
    
    /*background-color: slategray;*/
}


/*ーーーーー　タブメニューCSS　ここから　ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*タブ切り替え全体のスタイル*/
.tabs {
  padding-bottom: 0vw; /*コンテンツの中身の表示領域？*/
  width: 100%;
  margin: 0vw 0vw;
  position: relative;
  top: -5vw;
  left: 0.0vw;
  
  /*background-color: rgba(250,76,79,1.00);*/
}    
    
/*タブのスタイル*/
.tab_item {
  width: calc(100%/2); /*カッコ内の分母＝タブメニューの一列に表示されるコンテンツタイトル。　この場合4つのタイトルが横並びに表示される。しかし今回は実際に表示したい個数＋１でやると正常に表示される*/
  /*分子％はコンテンツタイトルのワイド*/
    
  border: 0.1vw solid rgba(255,255,255,0.00);
  border-radius: 0.6vw;
  padding: 0.3vw 5vw 0.3vw 5vw;  
    

  margin: 0vw 0.0vw 5vw 0.0vw;
  display: block;
  float: none;
  position: relative;
  left: 20vw;
  
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: bold;
  font-size: 3.70vw;
  color: rgba(255,255,255,1.00); /*選択されていないタブメニュータイトルの文字色*/

  transition: all 0.2s ease;
    
  /*background-color: rgba(0,84,7,1.00); */
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 5vw 0vw; /*タブメニュータイトルからコンテンツ内容までの距離感*/
  clear: both;
  overflow: hidden;
  width: 100.0%;
  margin: 15vw 0vw 0vw 0vw;
  position: relative;
  right: 0vw;
    
  /*background-color: darkgray;*/
}

.tab_content_description{
    /*background-color: rgba(81,0,25,1.00); */
}


/*選択されているタブのコンテンツのみを表示*/
#top-news:checked ~ #top-news_content,
#year2021:checked ~ #year2021_content,
#year2022:checked ~ #year2022_content,
#year2023:checked ~ #year2023_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  color: #fff;
  border: 0.05vw solid rgba(255,255,255,1.00);
  border-radius: 0.6vw;
  padding: 0.3vw 5.0vw 0.3vw 5.0vw;

}
/*ーーーーー　タブメニューCSS　ここまで　ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/


/*ーーー　「chapter-1」中身　ここからーーー*/
.chapter{
    width: 80%;
    margin: 0vw 0vw 2vw 0vw;
    position: relative;
    top: -9vw;
    left: 9.2vw;
    color: aliceblue;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    
    /*background-color: rgba(0,139,148,1.00);*/
}

.chapter h2{
    padding: 0vw 0vw 0vw 0vw;
    margin-top: 3vw;
    font-size: 4.4vw;
    /*background-color: blue;*/
}

.chapter p{
    font-weight: 100;
    font-size: 2.8vw;
    
    width: 100%;
    margin: 3vw 0vw;
    padding: 0vw 0vw;
    text-align: left;
    
    /*background-color: deeppink;*/
}

iframe{
    width: 100%;
    height: 75%;
    
    margin: 5vw 0vw 0vw 0vw;
    
    /*background-color: aqua;*/
    z-index: 99;
    

}


/*ーーー　「chapter-1」中身　ここまでーーー*/


p.another{
    width: 80%;
    margin: 0vw;

    color: aliceblue;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 1.4vw;
    
    border: 0.1vw solid rgba(255,255,255,0.50);
    padding: 1vw;
    position: relative;
    top: -5vw;
    left: 8vw;
    
}




footer{
    padding: 0vw 0vw; /*これによってフッターの幅や位置をを最終決定している */
    margin-top: 5vw;
    position: relative;
    top: 0%;
    width: 100%;
    height: 147vw;
    background-color: rgba(84,82,90,1.00);
    z-index: 30;
   
}

.contact-icon{
    width: 100%;
    margin: 0vw;    
    position: relative;
    top: 10vw;
    left: 0vw;
    text-align: center;
    
    /*background-color: violet;*/
}

.contact-icon a{
    /*background-color: aqua;    メンテ用*/
    padding: 1vw 0vw 0vw 0vw;
    margin: 0vw 1vw;
    
    /*background-color: darkviolet;*/
    
}

.contact-icon img{
    width: 8%;
    margin: 0vw 5vw;
}

.footer-menu-list{
    width: 100%;
    margin: 0vw;    
    position: relative;
    top: 18vw;
    left: 0vw;
    text-align: center;
    
    /*background-color: lime;*/
}

.footer-menu-list li{
    width: 100%;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: aliceblue;
    font-size: 3.5vw;
    list-style: none;
    float: none;
    margin: 3vw 0vw;
    text-align: center;
    
    /*background-color: rgba(255,244,0,1.00);    メンテ用*/
}

.footer-menu-list a{
    text-decoration: none; /*リンク下のバーを消す*/
    color: aliceblue; /*リンク文字の色変更用*/

    /*background-color: brown;    メンテ用*/

}

.copyright{
    margin: 0vw 0vw 7vw 0vw;
    position: relative;
    top: 25vw;
    
    /*background-color: rgba(125,68,28,0.50);*/
}

.copyright p{
    width: 100%;
    font-size: 3vw;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    
    /*background-color: rgba(140,180,60,0.50);*/
}    
    
.footer-logo{
    width: 100%;
    margin: 0vw;
    position: relative;
    top: 25vw;
    left: 0vw;
    text-align: center;
    
    /*background-color: black;*/
}

.footer-logo img{
    width: 17%;
    position: relative;
    left: 0vw;
}

.c-mark{
    width: 100%;
    margin: 0vw;
    position: relative;
    top: 26vw;
    left: 0vw;
    font-size: 2vw;
    color: rgba(255,255,255,1.00);
    
    /*background-color: lightsalmon;*/
}
    
}
/*ーーーーーーーーーーーーーーーーーーーーーーーースマホ縦　500以下ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/



/*ーーーーーーーーーーーーーーーーーーーーーーーー小型スマホ縦　320以下ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media(max-width:320px) {
  
}
/*ーーーーーーーーーーーーーーーーーーーーーーーー小型スマホ縦　320以下ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
