@charset "UTF-8";
html,body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	font-family: ten-mincho, serif;
	font-style: normal;
	font-weight: 400;
	color: #333;
	letter-spacing: 0.1em;
	background-image: url("../images/bg.png");
	background-repeat: repeat;
}

#main{
  padding: 0 0 100px;
}
@media screen and (max-width: 899px) {
#main{
  padding: 0;
  }
}

/* セクション幅 */
.row{
  width: 850px;
  max-width: 90vw;
  padding: 50px 0;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
.row{
   max-width: 85vw;
  }
}

/* 文字 */
h1{
	font-family: a-otf-kaimintustd-bold, serif;
	font-style: normal;
	font-size: 43px;
	line-height: 43px;
	margin: 0 auto;
	letter-spacing: normal;
	color: #515151;
}
h2{
  font-size: 30px;
  padding: 20px 0;
}
h3{
  font-size: 17px;
  line-height: 20px;
  margin: 20px 0;
  text-align: center;
	letter-spacing: normal;
}
h4{
  font-size: 23px;
  line-height: 1.2em;
	margin: 4px auto;
}
p{
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
	letter-spacing: -0.5px;
}
@media screen and (max-width: 480px) {
  h1{
    font-size: 38px;
    line-height: 38px;
  }
  h2{
    font-size: 25px;
    padding: 20px 0 0 0;
  	letter-spacing: 0.03em;  
  }
}


.text-right{
  text-align: right;  
}
.textbox{
  text-align: justify;  
}

/* 縦書き */
.vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
@media screen and (max-width: 480px) {
.vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: horizontal-tb;
  }
}

/* リンク */
a {
	color: #333;
	text-decoration: none
}
a:hover {
	color: #333;
  opacity: 0.5;
  transition : all .7s;
}
.basic-3 {
  background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 0) 2px 
      no-repeat;
  transition:0.5s;
  padding: 5px 7px;
}
.basic-3:hover {
  --d: 75%;
}

.kaisoku a {
	color: #FF5456;
	text-decoration: none
}

/* 選択範囲の色変え */
::-moz-selection {
	color: #FFF;
	background-color: #73AC3D;
}
::selection {
	color: #FFF;
	background-color: #73AC3D;
}

/* メイン */
#wrapper {
  height: 100%;
  height: auto !important;
  position: relative;
  min-height: 100%;
  width: 100vw;
}
#wrapper header {
	width: 100%;
}
#main{
  width: 100%;
  margin: 0 auto;
}
container {
  margin: 50px 30px;
  padding: 0;
}

.textbox{
	margin: 0 auto;
	text-align: justify;
}
@media screen and (max-width: 480px){   
.textbox{
	margin: 20px 15px;
	text-align: justify;
  }
}

/*PC・スマホ画像切り替え*/
.pc_area {
  display:inline!important;
}
.sp_area {
  display:none!important;
}
@media screen and (max-width: 480px) {
.pc_area {
  display:none!important;
  }
.sp_area {
  display:inline!important;
  }
}

/* 改行の有無 */
@media screen and (min-width: 821px){   
.pc { display:block; }
.tb { display:none; }
.sp { display:none; }
}
@media screen and (max-width: 820px){   
.pc { display:none; }
.tb { display:block; }
.sp { display:none; }
}
@media screen and (max-width: 480px){   
.pc { display:none; }
.tb { display:none; }
.sp { display:block; }
}

/* 画像 */
.img-responsive {
  width: 100vw;
  height: auto;
  margin: auto;
  padding: auto;
}
img {
  max-width: 100%;
}

/* 箇条書き */
li {
  list-style-type: none;
}
.list{
  margin: 0 5px;
}
.list ul li{
  margin: 0;
}
.list li::before {
  position: relative;
  top: -3px;
  left: -8px;
  display: inline-block;
  width: 7px;
  height: 7px;
  content: '';
  border-radius: 100%;
  background: #636363;
}

/* topに戻る */
.floating-banner {
  mix-blend-mode: color-burn;
  position: fixed; /* 追従 */
  z-index: 888; /* 他の要素の下に隠れないように */
  right: 20px; /* バナーの左右の位置 */
  bottom: -15px; /* 画面の最下部にぴったりくっつくように指定 */
}
.banner {
  width: 40px; /* バナーの横幅を指定 */
}
@media screen and (max-width: 480px) {
.floating-banner {
  mix-blend-mode: normal;
  right: 10px; /* バナーの左右の位置 */
  bottom: -10px; /* 画面の最下部にぴったりくっつくように指定 */
  }
.banner {
  width: 25px; /* バナーの横幅を指定 */
  }
}

/* サイド */
.left_contents {
	padding: 0;
	float: left;
}
.right_contents {
	padding: 50px 0 0 0 0;
	float: right;
  margin: 0 auto;
}

.by20 { width: 20%; }
.by25 { width: 25%; }
.by30 { width: 30%; }
.by40 { width: 40%; }
.by50 { width: 50%; }
.by60 { width: 60%; }
.by70 { width: 70%; }
.by75 { width: 75%; }
.by80 { width: 80%; }

@media screen and (max-width: 768px) {
.left_contents,.right_contents {
	padding: 0;
  margin: 0 auto;
  width: 90vw;
  float: none;
  }
.right_contents img {
	padding: 25px 0 0 0;
  width: 85vw;
  }
.right_contents {
  width: 90vw;
  margin: 0 auto;
  padding: 20px 0 0 0 0;
  }
}

/* 回り込み解除 */
.clear {
clear: both;
}

/* 水平・垂直方向の中央揃え */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

/* コンテンツ */
.wrap {
  column-count: 3;
  padding: 0 0 50px 0;
}
.wrap p {
  font-size: 80%;
  line-height: 1.3em;
}
.wrap img {
  border: none;
  border-radius: 7px;
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}
.item {
  break-inside: avoid;
  margin: 0 5px 25px;
}
.item p {
  margin: 5px 0;
}
@media only screen and (min-width: 769px) and (max-width: 820px)  {
  .wrap { column-count: 3; }
}
@media screen and (max-width: 768px) {
  .wrap { column-count: 3; }
}
@media screen and (max-width: 480px) {
  .wrap { column-count: 2; }
}


/* テーブル */
table {
  margin: 0 auto 20px;
  padding: 0 20px;
  width: 100%;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
}
.tbl-r02 th,td {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-size: 17px;
  line-height: 22px;
	letter-spacing: -0.5px;
  text-align: justify;
  /* [disabled]max-width: 690px; */  
}
.tbl-r02 td {
  width: 85%;
  border: none;
  padding: 10px 0 15px 0;
}
.tbl-r02 th {
  width: 15%;
  padding: 10px 15px 15px 0;
  vertical-align: top;
}
.tbl-r02 td {
  width: 80%;
  border: none;
  padding: 10px 0 15px 0;
}
@media screen and (max-width: 768px) {
table {
  padding: 10px 20px;
  text-align: left;
  /* [disabled]max-width: 690px; */  
  margin: 20px auto;
  width: 100%;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
}
 .last td:last-child {
  width: 100%;
}
.tbl-r02 th {
  width: 100%;
  font-size: 130%;
}
.tbl-r02 th {
  display: block;
  width: 100%;
  padding: 10px 0 5px;
}
.tbl-r02 td {
  display: block;
  width: 100%;
  padding: 0 0 10px;
  text-align: justify;
}
}

/* コンテンツ横並び */
.inline-block {
  display: inline-block;      /* インラインブロック要素にする */
  margin: 5px 2px;              /* 余白指定 */
  width: 47.3%;
  height: 75px;
  padding: 10px 5px;
  vertical-align: top;
}
.inline-block p {
  text-align: justify;
  font-size: 75%;
  line-height: 1.6em;
  vertical-align: text-top;
}
.inline-block a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
.inline-block {
  display: inline-block;      /* インラインブロック要素にする */
  margin: 5px;              /* 余白指定 */
  width: 95%;
  vertical-align: top;
  }
}

.h31,.r03,.r06 {
  background-color: rgba(174,218,251,0.20);
  border-radius: 10px;
}
.r01,.r04,.r07 {
  background-color: rgba(251,174,174,0.20);
  border-radius: 10px;
}
.r02,.r05 {
  background-color: rgba(174,251,218,0.20);
  border-radius: 10px;
}




/* マウスオーバーした際の背景色 */
.btn_hover:hover h1 {
	color: rgba(51,51,51,0.50);
	transition : all .5s;
}
.btn_hover:hover h5 {
	color: rgba(51,51,51,0.50);
  transition : all .5s;
}

/* スクロールアップ */
.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(40px);
  transition: all 2s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* top画像 */
.title {                    /* ロゴ部分の指定 */
  text-align: center;        /* 文字を中央揃え */
  width: 220px;                /* 幅指定 */
  margin: 0 auto;            /* 中央寄せ */
}
.top_bg {                /* 背景部分の指定 */
	padding: 200px 0;                /* 余白指定 */
	background-image: url("../images/top_bg.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: auto 100vh;
}
@media screen and (max-width: 480px) {
.title {
  width: 170px;
  }
}

/* セクション別背景 */
#news     {background-image: url("../images/news.png");}
#greeting {background-image: url("../images/greeting.png");}
#activity {background-image: url("../images/activity.png");}
#report   {background-image: url("../images/report.png");}
#history  {background-image: url("../images/history.png");}
#profile  {background-image: url("../images/profile.png");}
#contact  {background-image: url("../images/contact.png");}
#link     {background-image: url("../images/link.png");}
#news,#greeting,#activity,#report,#history,#profile,#contact,#link {
  padding: 110px 0 0 0;
  background-position: 70px 50px;
  background-repeat: no-repeat;
  background-size: 45vw;  
}
#link p {
  margin: 0 0 30px 0;
  padding: 0;
}
@media screen and (max-width: 480px) {
  #news,#greeting,#activity,#report,#history,#profile,#contact,#link {
    background-repeat: no-repeat;
    background-position: 10px 30px;
    background-size: 100vw;  
  }
}

