:root {
  --color-1: #00A44D;
  --color-2: #E9484D;
  --color-3: #B06394;
  --color-4: #F6AC2D;
  --color-5: #ED6D2B;
  --color-6: #EA6091;
  --color-7: #0083B6;
  --color-8: #00B2BC;
  --color-9: #E98E72;
  --color-10: #C78D4B;
}
html {
  color: #222;
  font-size: 1em;
  line-height: 1.5;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #101010;
  font-size: 1.1rem;
  line-height: 1.50;
  display: inline-block;
  background-image: url(../img/temiru_bg_3.jpg);
  background-attachment: fixed;
  background-size: 100vw;
  background-position: center;
  animation: fade 2s;
}
@keyframes fade {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}

html {
  scroll-behavior: smooth;
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pagetop__arrow {
  height: 20px;
  width: 20px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

#toppage {
  background-image: url(../img/temiru_bg_1.jpg);
  background-position: top;
  background-size: 100%;
  background-repeat: repeat;
  width: 100vw;
  margin-top: -20px;
}

/*==========================================
メニューの設定(JavaScript使用)
============================================*/
.nav_1 {
  color:#00A44D;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  padding-top: 20px;
  display: flex;
  height: 80px;
  width: 100vw;
  position: fixed;
  background-color: #FEFBC3;
  z-index: 100;
}
/*ナビゲーションを横並びに*/
.nav_1 ul{
  list-style: none;
  display: flex;
  justify-content:space-around;
  margin: 0 auto;
}

/*2階層目以降は横並びにしない*/
.nav_1 ul ul{
  display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
#toppage .nav_1 ul li{
  position: relative;
}
/*ナビゲーションのリンク設定*/
#toppage .nav_1 ul li a{
  display: block;
  text-decoration: none;
  color: #00a44d;
  padding:20px 35px;
  transition:all .3s;
}
#toppage .nav_1 ul li li a {
  padding:10px 20px;
}
#toppage .nav_1 ul li a:hover{
  color:#000; 
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
#toppage .nav_1 li.has-child ul{
/*絶対配置で位置を指定*/
  position: absolute;
  left:0;
  top:50px;
  z-index: 4;
/*形状を指定*/
  background:#ffffff;
  width:100%;
/*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
/*アニメーション設定*/
  transition: all .3s;
  border-left: #00a44d solid 10px;
}
#toppage .nav_1 li.has-child ul li {
  width: 100%;
  left: 0px;
  font-size: 1rem;
  padding: 0 -10px;
  text-align: left;
}
/*hoverしたら表示*/
.nav_1 li.has-child ul li a {
  margin-left: -30px;

}
#toppage .nav_1 li.has-child:hover > ul,
#toppage .nav_1 li.has-child ul li:hover > ul,
#toppage .nav_1 li.has-child:active > ul,
#toppage .nav_1 li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
#toppage .nav_1 li.has-child ul li.n1 a{
  color: #00A44D;
}
#toppage .nav_1 li.has-child ul li.n2 a{
  color: #B06394;
  border-bottom:solid 1px rgba(11, 127, 19, 0.6);
}
#toppage .nav_1 li.has-child ul li.n3 a{
  color: #F6AC2D;
  border-bottom:solid 1px rgba(11, 127, 19, 0.6);
}
#toppage .nav_1 li.has-child ul li:last-child > a{
 border-bottom:none;
}
#toppage .nav_1 li.has-child ul li.n1 a:hover,
#toppage .nav_1 li.has-child ul li.n1 a:active{
  background:#9de97d;
}
#toppage .nav_1 li.has-child ul li.n2 a:hover,
#toppage .nav_1 li.has-child ul li.n2 a:active{
  background:#FFA7DE;
}
#toppage .nav_1 li.has-child ul li.n3 a:hover,
#toppage .nav_1 li.has-child ul li.n3 a:active{
  background:#FFE2B0;
}
.nav_2 {
  display: block;
  position: fixed;
  width: 120px;
  left: 10px;
  top: 60px;
  z-index: 9999;
  text-align: left;
  padding: 10px;
  font-size: .9rem;
  line-height: .9rem;
  background-color: rgba(255, 255, 255, .8);
  border: var(--color-7) solid 1px;
  border-radius: 10px;
  }
.nav_2 a {
  text-decoration: none;
}



/*スマホ対応768px以下の形状*/
@media screen and (min-width:775px){
  .nav_mb {
    display: none;
  }

}
@media screen and (max-width:774px){
  #toppage .nav_1{
    padding: 0;
    display:none;
  }
 #toppage .nav_1 ul{
    display: block;
  }
  .nav_2 {
    display: none;
  }
}
 /* =================================
ハンバーガーボタン
===================================== */

body {
  overflow-x: hidden;
}
.nav {
  display: flex;
  position: fixed;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  right: 10px;
  z-index: 100;
}
.drawer_button {
  width: 30px;
  height: 20px;
  position: relative;
  top: 20px;
  border: none;
  background: white ;
  opacity: 100%;
}
.drawer_button span {
  position: absolute;
  width: 100%;
  left: 0px;
  height: 3px;
  background-color: #000;
  transition: .5s;
}
.drawer_button span:first-of-type {/* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.drawer_button span:nth-of-type(2) {/* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.drawer_button span:last-of-type {/* ハンバーガーメニューの3番目の線 */
  top: 100%;
}
.drawer_nav_menu {
  background-color: rgba(41, 172, 52, .8); 
  position: fixed;
  top: 60px;
  width: 100vw;
  height: 70%;
  left: 0;
  transform: translateX(100%);
  transition: .5s;
  z-index: 100;
  list-style: none;
  padding-top: 50px;
  font-size: 1.5rem;
}
.drawer_nav_item {
  /* color: #fff; */
  line-height: 250%;
  text-align: center;
  font-weight: bold;
}
.drawer_nav_link {
  color: #fff;
  text-decoration: none;
}
.drawer_button.active span:first-of-type {/* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(35deg);
}
.drawer_button.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
  opacity: 0;/* 透明にする */
}
.drawer_button.active span:last-of-type{/* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-35deg);
}
.drawer_nav_menu.active {
  transform: translateX(0); 
}

}

/*====スマホ対応終わり==================================*/

/*=====================================================
ここまでメニューの設定
========================================================*/

/*======================================================
トップページの上部の設定（途中でメニューを移動）
========================================================*/
header {
  position: relative;
}
header .title {
  position: absolute;
  margin: 0 0 0 auto;
  right: 0;
  z-index: 2;
  width: 50%;
}
header .title img {
  max-width: 400px;
}

/*======================================================
ここまでトップページの上部の設定
========================================================*/
/*======================================================
トップページのイメージ及び説明
========================================================*/
#caption {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
}
.temiru_title {
  max-width: 1000px;
  width: 100%;
  margin: 100px auto 90px;
  position: relative;
}

.caption_txt {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 5px;
  position: relative;
}
.jikan_img img {
  width: 220px;
  position: absolute;
  left: -20px;
  z-index: 5;
 }
.jikan_txt {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 50px auto 20px;
  padding: 20px;
  background-color: var(--color-4);
  line-height: 1.9em;
  border: #4a4a4a solid 1px;
  clip-path: polygon(10% 5%, 100% 10%, 95% 95%, 50% 100%, 15% 88%);
  -webkit-clip-path: polygon(10% 5%, 100% 10%, 95% 95%, 50% 100%, 15% 88%);
  }

/* ポリゴンで切り抜いた図形に枠線をつける */
  .border {
    position: relative;
    border: unset;
    z-index: 1;
    background-color: #4a4a4a;
  }
  .border::after {
    content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: calc(100% - 1px);
  width: calc(100% - 1px);
  background-color: white;
  clip-path: polygon(10% 5%, 100% 10%, 95% 95%, 50% 100%, 15% 88%);
  -webkit-clip-path: polygon(10% 5%, 100% 10%, 95% 95%, 50% 100%, 15% 88%);
  z-index: -1;
  }

 #caption .caption_txt .jikan_txt p {
  padding: 50px 30px 30px 150px;
 }

 @media screen and (max-width:768px) {
  #caption .caption_txt .jikan_img img {
    width: 180px;
    top: 30px;
    left: 0px;
   }
  #caption .caption_txt .jikan_txt p {
    padding: 100px 30px 20px 30px;
   }
  #caption .caption_txt .jikan_txt {
    width: 95%;
    margin: 55px auto 10px;
    font-size: 1rem;
    padding-left: 15%;
    line-height: 1.3rem;
  }
  #caption .temiru_title {
    margin: 70px auto 0px;
  }
 }

.infotxt {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
}
.infotxt .info_title img {
  width: 200px;
  position: absolute;
  top: 50px;
  left: -20px;
}
.infotxt .info_text {
  background-color: rgba(250, 250, 250, .8);
  max-width: 1000px;
  width: 100%;
  margin: 50px auto 30px;
  border: #B06394 dashed 1px ;
}

/*---- flex-box -----*/
.infotxt .info_box {
  padding: 20px 50px 20px 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.info_item:nth-child(1) {
  flex-basis: 20%;
  text-align: right;
  padding: 20px 0 0 0;
}
.info_item:nth-child(2) {
  flex-basis: 70%;
  padding: 20px 0 0 0;
}
.info_item:nth-child(3) {
  flex-basis: 20%;
  text-align: right;
  padding: 20px 0 0 0;
}
.info_item:nth-child(4) {
  flex-basis: 70%;
  padding: 20px 0 0 0;
}
.info_item:nth-child(5) {
  flex-basis: 20%;
  text-align: right;
  padding: 20px 0 0 0;
}
.info_item:nth-child(6) {
  flex-basis: 70%;
  padding: 20px 0 0 0;
}
.info_item:nth-child(7) {
  flex-basis: 20%;
  text-align: right;
  padding: 20px 0 0 0;
}
.info_item:nth-child(8) {
  flex-basis: 70%;
  padding: 20px 0 0 0;
}
.info_item:nth-child(9) {
  flex-basis: 20%;
  text-align: right;
  padding: 20px 0 0 0;
}
.info_item:nth-child(10) {
  flex-basis: 70%;
  padding: 20px 0 0 0;
}
.infotxt p {
  padding-left: 250px;
}

@media screen and (max-width:768px) {
  .infotxt .info_box {
    display: block;
    padding: 40px;
  }
  .infotxt .info_title img {
    width: 160px;
    left: 3px;
  }
  .infotxt .info_text {
    width: 95%;
    padding-top: 80px;
  }
  .infotxt p {
    padding-left: 150px;
  }
  .info_item:nth-child(1),
  .info_item:nth-child(3),
  .info_item:nth-child(5),
  .info_item:nth-child(7),
  .info_item:nth-child(9) {
    text-align: left;
  }
  .info_item:nth-child(2),
  .info_item:nth-child(4),
  .info_item:nth-child(6),
  .info_item:nth-child(8),
  .info_item:nth-child(10) {
    padding: 0;
  }
}

/*======================================================
ここまでトップページのイメージ及び説明
========================================================*/
/*======================================================
プレ事業の内容
========================================================*/
#main {
  white-space: pre-line;
  width: 100vw;
  position: relative;
  margin: 0 auto;
}
.section {
  max-width: 1000px;
  width: 100%;
  margin: 20px auto 0;
  position: relative;
  background-color: #fff;
}

/*ぶんかつギャラリー*/
.bunkatu {
  max-width: 1200px;
  width: 100%;
  position: relative;
  top: -30px;
}
.bunkatu_title {
  position: relative;
}
.bunkatu .bunkatu_title img{
  width: 500px;
  position: absolute;
  top: -42px;
  left: -20px;
}

.bunkatu_youkou summary {
  display:flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  /* padding: 10px; */
  color: #00A44D;
  font-weight: 600;
  cursor: pointer;
  max-width: 400px;
  border: #00A44D solid 2px;
  border-radius: 10px;
  margin-top: -30px;
  margin-bottom: 5px;
  margin-left: 15%;
  list-style: none;
}

.bunkatu_txt span {
  display: inline-block;
  padding-left: 70px;
}
.bunkatu_txt img{
  width: 400px;
  display: block;
  margin: 20px auto 0;
}

.bunkatu_txt {
  position: relative;
  top: -80px;
  margin: 0 auto -110px;
  width: 80%;
  line-height: 1.5em;
  }
.bunkatu_txt h3 {
  color: #00A44D;
}
.bunkatu_txt .sml {
  margin-left: -20px;
}

details .bunkatu_txt span {
  padding-left: 0px!important;
}
ul.space {
  margin-top: -50px;
}
ul.space li {
  margin-bottom: -20px;
  margin-left: -20px;
}
.bunkatu_txt ul.oubo, .tukutte_txt ul.oubo{
  border-left:5px solid #ddd;
  background: #eee;
  padding: 10px 10px 10px 30px;
  margin: -20px 0;
  font-size: 1rem;
  line-height: 1.3em;
}
.bunkatu_txt ul.button {
  display: flex;
  list-style: none;
  justify-content: space-around;
}
.bunkatu_txt ul.button li {
  font-size: 16px;
  text-align: center;
  padding: 4px 0;
  margin: 5px;
  max-width: 200px;
  width: 25%;
  background-color: #00A44D;
  border: none;
  border-radius: 10px;
}
.bunkatu_txt ul.button li a {
  text-decoration: none;
  color: #fff;
  display: block;
  font-weight: bold;
  margin: 0 5px;
}
.button2 {
  font-size: 16px;
  text-align: center;
  line-height: 1;
  padding:0;
  margin: 0 0 15px 36px;
  max-width: 300px;
  background-color: #00A44D;
  border: none;
  border-radius: 10px;
  height: 50px;
}
.button2 a {
  text-decoration: none;
  color: #fff;
  display: block;
  font-weight: bold;
  margin: 0 5px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  line-height: .2em;
  margin-top: -50px;
}
.f-card {
  overflow: hidden;
  border: #999 solid 1px;
    flex: 1 1 calc(33%);
  background-color: #ffffff;
  text-align: center;
}
.card-top {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}
.artist {
  margin-top: -20px;
  margin-bottom: -20px;
}
.card-content {
  padding: 20px;
}

.card-content h4 {
  margin-top: 20px;
  font-size: medium;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .f-card {
    flex: 1 1 calc(49%);
  }
  .bunkatu_youkou summary {
    margin: -15px auto 10px;
    margin-left: 15%;
    margin-right: 10%;
  }
  .bunkatu_txt span {
    margin-top: 35px;
  }

}
@media (max-width: 576px) {
  .f-card {
    flex: 1 1 calc(100%);
  }
}

/* table */


.tbl-r05 {
  margin-left: 30px;
  margin-top: -20px;
  width: 95%;
}
th {
  background: var(--color-1);
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
}
td {
  border: solid 1px #ccc;
  padding: 10px;
}
.tbl-r05 td:first-child {
  background: #ffffff;
  text-align: center;
}
.art {
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .tbl-r05 {
    width: 95%;
    margin-left: 10px;
  }
  .tbl-r05 .thead {
    display: none;
  }
  .tbl-r05 tr {
    width: 100%;
  }
  .tbl-r05 td {
    display: block;
    text-align: center;
    width: 100%;
  }
  .tbl-r05 td:first-child {
    background: #00A44D;
    color: #fff;
    /* font-weight: bold; */
    text-align: center;
  }
  .tbl-r05 td:before {
    content: attr(data-label);
    float: left;
    font-size: .9rem;
    margin-right: 15px;
    font-weight: normal;
  }
  
}

/* table ここまで */

@media screen and (max-width:768px) {
  .section .bunkatu_txt img{
    top: -30px;
    right: 0px;
    width: 300px;
  }
  .section .bunkatu .bunkatu_title img {
    top: -35px;
    left: 0px;
    width: 350px;
  }
  .section .bunkatu_txt span {
    padding-left: 0;
  }
  .section .bunkatu_txt ul.oubo {
    margin: -20px 0 -20px -20px;
    width: 100%;
  }
  .bunkatu_txt ul.button, .tukutte_txt ul.button {
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: -20px;
  }
  .bunkatu_txt ul.button li, .tukutte_txt ul.button li {
    width: 80%;
    margin-bottom: 30px;
  }
  .bunkatu_txt .sml {
    margin-left: 2em;
  }
}

/*窓ガラスプロジェクト*/
.tukutte_title_1 {
  position: relative;
}
.tukutte_title_1 img{
  width: 150px;
  position: absolute;
  top: 100px;
  left: -80px;
  z-index: 2;
}
.tukutte_title_2 {
  position: relative;
}
.tukutte_title_2 img{
  width: 300px;
  position: absolute;
  top: -100px;
  left: 100px;
 }
.tukutte_txt span.tukutte_txt1 {
  display: inline-block;
  margin: -60px 0 20px 0;
}
.tukutte_txt img.tukutte_pic {
  width: 400px;
  display: block;
  margin: -100px auto 20px;
}
.tukutte_txt {
  position: relative;
  margin: -50px auto -20px;
  width: 80%;
  line-height: 1.5em;
  }
.tukutte_txt2 {
  position: relative;
  top: -80px;
  margin: 0 auto -110px;
  line-height: 1.5em;
  }
.tukutte_txt .tukutte_a {
  position: relative;
}
.tukutte_txt .tukutte_a img {
  position: absolute;
  width: 300px;
  top: -10px;
}
.tukutte_txt .tukutte_b {
  position: relative;
}
.tukutte_txt .tukutte_b img {
  position: absolute;
  width: 350px;
  top: px;
}
.tukutte_txt h3 {
  color: #B06394;
}
.tukutte_txt p h3 {
  font-size:large;
}
.tukutte_txt span {
  margin-left: ;
}
.tukutte_txt ol {
  list-style: none;
  counter-reset: number;
  margin-top: -10px;
  margin-bottom: -20px;
  line-height: 1.1;
}
.tukutte_txt ol li {
  position: relative;
  padding-left: 1rem;
}
.tukutte_txt ul.button {
  display: flex;
  list-style: none;
  justify-content:center;
}
.tukutte_txt ul.button li {
  font-size: 16px;
  text-align: center;
  padding: 4px 0;
  margin: 0 20px;
  max-width: 200px;
  width: 25%;
  border-radius: 10px;
  justify-content: center;
}
.tukutte_txt ul.button li a {
  text-decoration: none;
  color: #fff;
  display: block;
  font-weight: bold;
  margin: 0 5px;
}
.tukutte_txt .tbl-title {
  margin-bottom: -20px;
}
.tukutte_btn li {
  background-color: var(--color-3) !important;
  border: none;
}
.nittei_txt {
  margin-top: -20px;
}
.nittei_txt span {
  margin-left: 20px;
}
.kaijou_btn {
  background-color: var(--color-3) !important;
  border: none;
  display: block;
  font-weight: bold;
  margin: 0 50px;
  text-align: center;
  padding: 5px;
  max-width: 200px;
  width: 50%;
  border-radius: 10px;
}
.kaijou_btn a {
  text-decoration: none;
  color: #fff;
}
.tukutte_youkou summary {
  display:flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  color: var(--color-3);
  font-weight: 600;
  cursor: pointer;
  max-width: 400px;
  border: var(--color-3) solid 2px;
  border-radius: 10px;
  margin-left: 8%;
  margin-top: -30px;
  list-style: none;
}
.tukutte_btn2 {
  max-width:450px;
  height:auto;
  border: solid 2px var(--color-3);
  font-weight:bold;
  margin-left: 8%;
  margin-right: 5%;
}

/* レスポンシブ対応 */
@media screen and (max-width:768px) {
  .tukutte_txt img.tukutte_pic{
    top: 0px;
    right: 0px;
    width: 80%;
    max-width: 300px;
  }
  .tukutte_btn {
    margin-left: 5%;
  }
  .section .tukutte_title_1 img {
    top: -20px;
    left: 0px;
    width: 80px;
  }
  .section .tukutte_title_2 img {
    top: -100px;
    left: 90px;
    width: 250px;
  }
  .tukutte_txt span.tukutte_txt1 {
    margin: -60px 0 20px 50px;
  }
  .tukutte_txt ul.button {
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: -20px;
  }
  .tukutte_txt ul.button li {
    width: 80%;
    margin-bottom: 30px;
  }
  .bunkatu_txt .sml {
    margin-left: 2em;
  }
  .tukutte_youkou summary {
    margin: -15px 5% 10px;
  }
}

/* ガラスプロジェクトtable */


.tbl-r03 {
  margin-left: 10px;
  margin-top: -20px;
  width: 95%;
}
.tbl-r03 th {
  background: var(--color-3);
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
}
.tbl-r03 td {
  border: solid 1px #ccc;
  padding: 10px;
}
.tbl-r03 td span {
  color: red;
}
.tbl-r03 td:first-child {
  background: #ffffff;
  text-align:;
}

@media screen and (max-width: 768px) {
  .tbl-r03 {
    width: 95%;
    margin-left: 10px;
  }
  .tbl-r03 .thead {
    display: none;
  }
  .tbl-r03 tr {
    width: 100%;
  }
  .tbl-r03 td {
    display: block;
    text-align: center;
    width: 100%;
  }
  .tbl-r03 td:first-child {
    background: var(--color-3);
    color: #fff;
    /* font-weight: bold; */
    text-align: center;
  }
  .tbl-r03 td span {
    color:#F6AC2D;
  }
  .tbl-r03 td:before {
    content: attr(data-label);
    float: left;
    font-size: .9rem;
    margin-right: 15px;
    font-weight: normal;
  }
  
}

/* ガラスプロジェクトtable ここまで */

/*やってみたいこと*/
.section .kangae_title {
  position: relative;
}
.section .kangae_title img{
  width: 550px;
  position: absolute;
  top: -40px;
  left: -100px;
}
.section .kangae_pic {
  position: relative;
}
.section .kangae_pic img {
  width: 300px;
  position: absolute;
  top: -130px;
  right: -20px;
}
.section .kangae_txt {
  position: relative;
  margin: -20px auto;
  width: 80%;
  line-height: 1.5em;
}
.section .kangae_txt h3 {
  color: #F6AC2D;
}

@media screen and (max-width:768px) {
  .section .kangae_pic img{
    top: -30px;
    right: 0px;
    width: 200px;
  }
  .section .kangae_title img {
    left: 0px;
    width: 350px;
  }
  .section .kangae_txt {
    margin: -40px auto 0;
    width: 80%;
  }
}

/*======================================================
ここまでプレ事業の内容
========================================================*/

/*======================================================
フッター
========================================================*/
#footer {
  background-image: url(../img/temiru_bg_1.jpg);
  background-attachment: fixed;
  background-size: 100%;
  background-repeat: repeat;
  width: 100vw;
  margin-bottom: -80px;
   }
#footer .footer_txt {
  position: relative;
  margin: -20px auto;
  max-width: 1000px;
  width: 80%;
  line-height: 1.5em;
}
#footer .footer_txt h3 {
  color: #00A44D;
}
#footer .footer_txt p, ul {
margin-left: 30px;
}
#footer .footer_txt ul.annai_pc {
  display: flex;
  list-style: none;
  margin-top: -30px;
}
#footer .footer_txt ul.annai_pc li {
  margin: 0 40px 0 0;
  width: 500px;
 }
 #footer .footer_txt .annai_sp {
  display: none;
 }

@media screen and (max-width:768px) {
  #footer .footer_txt ul.annai_pc {
    display: none;
  }
  #footer .footer_txt .annai_sp {
    display: inline-block;  
    margin: -70px 0 20px 40px;
     }
 }

/*======================================================
ここまでフッター
========================================================*/
 


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

