@charset "UTF-8";

html{
    font-size:100%; /*ユーザー設定の文字サイズを正しく反映*/
}
*{
    box-sizing:border-box; /*余白や線を幅や高さに含める*/
}
img{
    width:100%;
    max-width:100%; /*画像が親要素からはみ出すのを防ぐ*/
    height:auto;
}
body{
    background-color:#fff;
    margin:0;
    padding:0;
}




@media screen and （max-width: 768px） {
/* 768px以下の画面サイズで適用されるスタイル */
}

@media screen and （min-width: 769px） and （max-width: 1024px） {
/* 769px~1024pxの画面サイズで適用されるスタイル */
}

@media screen and （min-width: 1025px） {
/* 1025px以上の画面サイズで適用されるスタイル */
}

/* 画像サイズ調整 */



/* 画像と文章を左右交互 */
.inner{
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 20px 50px;
}
.box{
  display: flex;
  flex-direction: row;
}
.box + .box{
  margin-top: 80px;
}
.box__body{
  width: 50%;
  padding: 0 20px;
}
.box__ttl {
  font-size: 20px;
  color: #00763C;
  text-transform: uppercase;
}
.box__txt {
  margin-top: 20px;
}
.box__image{
  width: 50%;
}
.box__image img{
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width:767px){
  .box {
    display: block;
  }
  .box + .box{
    margin-top: 60px;
  }
  .box__body{
    width: 100%;
    padding: 0;
  }
  .box__image{
    margin-top: 20px;
    width: 100%;
  }
}
.box.reverse{
  flex-direction: row-reverse;
}
.D{
    font-size: 30px;
    color: #00763C;
    text-align:center
}


/* 箇条書き */
ul {
  padding: 0;
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
  
}

ul li, ol li {
  color: #404040;
  border-left: solid 6px #1fa67a;/*左側の線*/
  border-bottom: solid 2px #dadada;/*下に灰色線*/
  background: whitesmoke;
  margin-bottom: 5px;/*下のバーとの余白*/
  line-height: 1.5;
  padding: 0.5em;
  list-style-type: none!important;/*ポチ消す*/
  font-weight: bold;
}



/*背景ポント*/
section {
  background-image: url(./images/7.jpg);
  background-position: left 10% bottom 10%;
  background-repeat: no-repeat;
  background-size: contain;
}



/*メニュー*/

nav{
 position: absolute;
 right: 0;
 margin-right: 50px; 
 margin-top: 20px;
}


/* nav内のaタグのデフォルトスタイル */
  nav a {
    color: #333; /* 初期文字色 */
    text-decoration: none; /* 下線を消すなど */
  }

  /* nav内のaタグにマウスを合わせたときのスタイル */
  nav a:hover {
    color: #00763C; /* マウスを合わせたときの文字色 */
  }


  .cp_h1title {
  color: #00763C;
  text-align: center;
  padding: 5px;
  border-top: 3px double #00763C;
  border-bottom: 3px double #00763C;
}


/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #737373;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

.copyright {
    text-align: center; /* テキストを中央揃えにする */
}