@charset "UTF-8";
/* ---------------------------------------------
  変数
--------------------------------------------- */
:root {
  /* カラー変数
  --------------------------------------------- */
  /* 本文のテキスト用 */
  --al-color-body: #333;
  /* 汎用グレースケール */
  --al-color-medium: #92949C;
  --al-color-light: #F4F5F8;
  /* サイト内のメインカラー */
  --al-color-primary: #559c33;
  --al-color-secondary: #6AA0FF;
  --al-color-accent: #FFC409;
}

/* ---------------------------------------------

  ユーティリティクラス

--------------------------------------------- */
/* ---------------------------------------------
  PC or SPでのみ表示させる
--------------------------------------------- */
@media (min-width: 768px) {
  .al-is-hidden_pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .al-is-hidden_sp {
    display: none;
  }
}
/* ---------------------------------------------
  text-align
--------------------------------------------- */
.al-u-txt_left {
  text-align: left !important;
}

.al-u-txt_center {
  text-align: center !important;
}

.al-u-txt_right {
  text-align: right !important;
}



/* ---------------------------------------------

  初期スタイル調整

--------------------------------------------- */
/* a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
} */

/* ---------------------------------------------
  スタイリングのベース
--------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(1.6rem, 4vw);
  line-height: 1.6;
  color: var(--al-color-body);

}

.al-wrap {

}

main{
  margin: auto;
  /* height: 100vh; */
  background-image: url("../img/bg06.png");
  background-size:cover;
}
.al-wrap ul li,
.al-wrap ol li {
  list-style: none;
}
@media (max-width: 767px) {
  .al-wrap {
    width: 100%;
    min-width: auto;
  }
}

section {
  box-sizing: border-box;
  width: min(1020px, 100%);
  padding: 20px 10px 0;
  margin: auto;
}

/* ---------------------------------------------

  header

--------------------------------------------- */

h1 {
  padding: 15px 0 10px;
  font-size: min(3rem, 6vw);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.05em;
  background: #795742;
}

.mainText{
  font-size: 20px;
  font-weight: 600;
}



.dataText{
  font-size: min(3rem, 6vw);
  font-weight: bold;
  border-width: 0 1px;
  text-align: center;
  margin: 0 auto 20px;
  text-decoration: 	underline double 1px;
}

/* ---------------------------------------------

link_contents

--------------------------------------------- */
#link_contents{
  margin: 0 auto;
  text-align: center;
  max-width: 700px;
  padding-top: 20px;
}
.link_box{
  margin: 10px;
  display: inline-block;
}

.link_box img{
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
}

/* ---------------------------------------------

document

--------------------------------------------- */

#document_list ul{
  padding-left: 15px;
}

#document_list p{
  padding-top: 15px;

}

.document_listText{
  font-size: 18px;
  font-weight: 600;
}

.document_listsubText{
  font-size: 16px;
  font-weight: 600;
}

#document_list p:first-child{
  padding-top: 0;
}

a{
  color: #0000ee;
  text-decoration: none;
}

a:active{
  color: #551b8c;
}

a:hover{
  opacity: .7;
}

#individual{
  padding-left: 15px;
  padding-bottom: 30px;
}

li{
  padding-bottom: 10px;
}

.link_btn{
  text-align: center;
}

.link_btn_tag {
  text-align: center;
  display: inline-block;
  border: solid 3px #633e1f;
  background-color: #fff;
  color: #333;
  padding: 15px;
  margin-top: 20px;
  width: 420px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width:480px) {
  .link_btn_tag {
    padding: 12px;
    margin-top: 15px;
    width: 220px;
    font-size: 15px;
  }
}