@charset "UTF-8";
/* CSS Document */
img {
  max-width: 100%;
  height: auto;
  width: auto¥9;
}
header {
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  background: #FFFFEE;
  border-bottom: 1px solid #ddd;
  box-shadow: 1px 1px 7px #ccc;
  z-index: 10;
}
#header-inner1 {
  position: relative;
  width: 1180px;
  margin: 0 auto;
}
header h1, header h2 {
  position: absolute;
  top: 8px;
  width: 280px;
}
.headerAdd {
  position: absolute;
  display: block;
  top: 2px;
  right: 0;
  width: 57px;
  height: 57px;
  z-index: 100;
}
nav {
  position: absolute;
  top: 0;
  right: 65px;
  z-index: 10;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  text-decoration: none;
  font-size: 12px;
  color: #555;
  padding: 20px 30px;
  transition: all .3s;
}
nav ul li li a {
  padding: 10px 20px;
}
nav ul li a:hover {
  color: #000;
  text-decoration: none;
}
nav ul li a:visited {
  color: #555;
}
nav ul li a:active {
  color: #555;
}
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 27px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 4;
  /*形状を指定*/
  background: #ededed;
  width: 230px;
  /*はじめは非表示*/
  visibility: visible; /*JSで制御するため一旦表示*/
  opacity: 1; /*JSで制御するため一旦表示*/
  display: none; /*JSのslidetoggleで表示させるため非表示に*/
  transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  /*hoverで表示する場合
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
　*/
}
/*hoverしたら表示
nav li.has-child:hover > ul, nav li.has-child ul li:hover > ul, nav li.has-child:active > ul, nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}*/
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #555;
  border-bottom: solid 1px #ddd;
}
nav li.has-child ul li:last-child a {
  border-bottom: none;
}
nav li.has-child ul li a:hover, nav li.has-child ul li a:active {
  background: #ddffee;
  color: #000;
}
/*=========ハンバーガーメニュ====================*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: absolute;
  background: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 5px;
  right: 10px;
  display: none;
  z-index: 100;
}
/*ボタン内側*/
.openbtn span {
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #999;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
/*actクラスが付与されると線が回転して×に*/
.openbtn.act span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.act span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn.act span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
#fadein {
  position: relative;
  text-align: center;
  width: 1180px;
  margin: 0 auto;
  z-index: 1;
}
#fadein img {
  margin-top: 8px
}
#news {
  position: absolute;
  display: flex;
  align-items: stretch;
  left: 10%;
}
.newsTitle {
  display: flex;
  align-items: center;
  border: 1px solid #df7e6f;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 10px;
  background-color: white;
}
.newsContent {
  border-top: 1px solid #df7e6f;
  border-bottom: 1px solid #df7e6f;
  border-right: 1px solid #df7e6f;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 30px;
  background-color: white;
  text-align: left;
}
a.button-more, a.button-more2 {
  display: block;
  padding: 5px 15px;
  width: 80px;
  background-color: #fff;
  border-radius: 15px;
  color: #fff;
  float: right;
  text-align: left;
  font-size: 11px;
  line-height: 1em;
  background-image: url(../images/chevron-right-solid-24.png);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 10px center;
  background-color: #8ab42c;
  box-sizing: border-box;
}
a.button-more2 {
  background-color: #df7e6f;
}
a.button-more:hover, a.button-more2:hover {
  background-color: #77543E;
  text-decoration: none;
}
/*----PICKUP部分--------*/
.pickupFrame {
  width: 300px;
  padding: 20px;
  box-sizing: border-box;
  font-size: 14px;
  margin-bottom: 20px;
}
.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 92%;
  margin: 0 auto;
}
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}
.slider .slick-slide {
  margin: 0 10px;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  height: 30px;
  width: 30px;
  z-index: 99;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: -2%;
}
.slick-next { /*次へ矢印の位置と形状*/
  right: -2%;
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  display: block;
  border-radius: 50%;
  border: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  background: #ccc; /*ドットボタンの色*/
  padding: 0 3px;
}
.slick-dots .slick-active button {
  background: #777; /*ドットボタンの現在地表示の色*/
}
/*----本文部分--------*/
.contaner {
  width: 100%;
  background-color: white;
}
.contaner2 {
  width: 100%;
  background-color: #FFFFEE;
  border-top: 1px solid #ddd;
}
.wrapper90, .wrapper100 {
  width: 1180px;
  margin: 0 auto;
}
.wrapper80 {
  width: 80%;
  margin: 0 auto;
}
.wrapper10 {
  width: 100%;
  margin: 0 auto;
}
.wrapper800 {
  width: 800px;
  margin: 0 auto;
}
.sub-title, .sub-title-green, .sub-title-green2, .sub-title-orange2 {
  width: 80%;
  padding: 12px 0;
  margin: 0 auto 25px auto;
  text-align: center;
  font-size: 20px;
  font-family: "新丸ゴ R", 'ヒラギノ角ゴ Pro W5', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo;
  background-color: #fff;
  border: 3px solid #df7e6f;
  border-radius: 16px;
  color: #df7e6f;
}
.sub-title-green, .sub-title-green2 {
  color: #8ab42c;
  border: 3px solid #8ab42c;
}
.sub-title-green2 {
  width: 100%;
  font-size: 16px;
  border: 1px solid #8ab42c;
  margin: 0 auto 10px auto;
}
.sub-title-orange2 {
  width: 100%;
  font-size: 16px;
  border: 1px solid #df7e6f;
  margin: 0 auto 10px auto;
}
.sub-title-orange3, .sub-title-green3 {
  width: 250px;
  background-color: #fff;
  border: 2px solid #e78678;
  padding: 10px;
  text-align: center;
  color: #e78678;
  border-radius: 20px;
  margin-bottom: 20px;
}
.sub-title-green3 {
  border: 2px solid #90c31f;
  color: #90c31f;
}
.waku-green2 {
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  border: 1px solid #90c31f;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #fff;
}
table.ninshin {
  border-collapse: collapse;
  margin: 0 auto 10px auto;
}
table.ninshin th {
  white-space: nowrap;
  padding: 10px;
  text-align: left;
  border-bottom: 1px dotted #90c31f;
  font-weight: bold;
}
table.ninshin td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px dotted #90c31f;
}
.pad-txt {
  width: 800px;
  margin: 0 auto;
}
/*-----ボタン----------*/
a.button-o, a.button-g {
  display: block;
  padding: 10px 20px;
  width: 320px;
  margin: 0 auto;
  border-radius: 10px;
  font-size: 14px;
  background-image: url(../images/chevron-right-solid-24.png);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 15px center;
  background-color: #df7e6f;
  color: white;
  text-align: left;
  box-sizing: border-box;
}
a.button-g {
  background-color: #8ab42c;
  width: 100%;
}
a.button-o:hover, a.button-g:hover {
  background-color: #77543E;
  text-decoration: none;
}
.button-orange100 {
  display: block;
  width: 100%;
  padding: 10px 0;
  margin: 10px auto 0 auto;
  text-align: center;
  border: 1px solid #df7e6f;
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
  color: #df7e6f;
}
.button-orange100:hover {
  background-color: #FFFFEE;
  cursor: pointer;
  text-decoration: none;
}
/*----トップインフォメーション枠----*/
#topInfoAll {
  display: block;
}
.infoFame {
  position: relative;
  width: 100%;
  padding-left: 50px;
  box-sizing: border-box;
}
.character {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 100;
}
.infoFameInner {
  top: 0;
  width: 100%;
  border: 1px solid #df7e6f;
  border-radius: 20px;
  padding: 20px 20px 20px 100px;
  box-sizing: border-box;
}
/*----3カラム------*/
.flex-doctor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.dr1 {
  width: 32%;
  margin: 10px 0 20px 0;
  box-sizing: border-box;
}
.infoFame2 {
  position: relative;
  width: 100%;
  padding-left: 0;
  box-sizing: border-box;
  padding-top: 50px;
}
.character2 {
  position: absolute;
  top: 0;
  margin: 0 auto;
  z-index: 100;
  text-align: center;
  width: 100%;
}
.infoFameInner2 {
  top: 0;
  width: 100%;
  border: 1px solid #df7e6f;
  background-color: #ffffef;
  border-radius: 20px;
  padding: 70px 20px 35px 20px;
  box-sizing: border-box;
}
.waku-o, .waku-bgorange, .waku-orange2, .waku-bgorange2 {
  padding: 20px;
  border: 2px solid #df7e6f;
  border-radius: 20px;
  background-color: white;
}
.waku-bgorange {
  background-color: #df7e6f;
  color: #fff;
}
.waku-bgorange2 {
  width: 300px;
  padding: 3px 0;
  text-align: center;
  background-color: #df7e6f;
  color: #fff;
  margin: 0 auto;
  border-radius: 20px;
}
.waku-orange2 {
  width: 500px;
  padding: 5px 0;
  background-color: #fff;
  border: 2px solid #df7e6f;
  color: #000;
  text-align: center;
  margin: 10px auto;
  border-radius: 5px;
}
.waku-line-green {
  display: block;
  width: 48%;
  margin: 0;
  padding: 0;
  border: 1px solid #90c31f;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
}
.waku-line-green img {
  width: 100%
}
.shisetsu-ul {
  display: block;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #90c31f;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-sizing: border-box;
}
.shisetsu-ul li {
  padding: 10px 20px;
  border-bottom: 1px dotted #90c31f;
  list-style: none;
  background-color: #fff;
  box-sizing: border-box;
}
/*----項目リンクボタン------*/
.waku-link {
  margin: 0;
  padding: 0;
  box-shadow: 1px 1px 7px #ccc;
}
a.button-cat {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 20px;
  margin: 0 auto;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  background-image: url(../images/chevron-right-solid-242.png);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 15px center;
  background-color: #fff;
  color: #000;
  text-align: left;
  box-sizing: border-box;
}
a.button-cat:hover {
  text-decoration: none;
  background-color: #efefee;
}
/*flexbox*/
.fbox111 {
  display: flex;
  justify-content: space-between;
}
.f-box111 {
  width: 48%;
  background-color: #fff;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #e78678;
  box-sizing: border-box;
}
.fbox {
  display: block;
}
.f-box1 {
  width: 48%;
  margin: 5px auto 10px auto;
  background-color: #fff;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #e78678;
  box-sizing: border-box;
}
.fbox2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.f-box2 {
  width: 55%;
}
.f-box2 img {
  100%
}
.f-box22 {
  width: 36%;
  text-align: left;
}
.fbox3 {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-top: 49px;
}
.seibo, .yoshin {
  display: table-cell;
  width: 25%;
  text-align: center;
}
.yoshin {
  vertical-align: bottom;
}
.flow {
  display: table-cell;
  width: 48%;
  text-align: center;
  vertical-align: top;
}
.bgpink, .bggreen {
  padding: 15px;
  border-radius: 15px;
  background-color: #FFF5F5;
}
.bggreen {
  background-color: #eaffbc;
}
.dot-title-orange {
  display: block;
  padding: 5px 0;
  margin: 0 0 10px 0;
  border-top: 1px dotted #df7e6f;
  border-bottom: 1px dotted #df7e6f;
  color: #df7e6f;
  text-align: center;
}
.dot-title-green {
  display: block;
  padding: 5px 0;
  margin: 0 0 10px 0;
  border-top: 1px dotted #90c31f;
  border-bottom: 1px dotted #90c31f;
  color: #90c31f;
  text-align: center;
}
.wapContent {
  width: 980px;
  margin: 0 auto;
  padding: 50px 0 0 0;
}
.yoshin-ul {
  margin: 0 auto;
  border-top: 1px dotted #f08971;
}
.yoshin-ul li {
  padding: 10px 0;
  border-bottom: 1px dotted #f08971;
  list-style-position: inside;
}
.yoshin-ul-green {
  margin: 0 auto;
  border-top: 1px dotted #8ab42c;
}
.yoshin-ul-green li {
  padding: 10px 0;
  border-bottom: 1px dotted #8ab42c;
  list-style-position: inside;
}
.engumi-ul {
  display: block;
  margin-left: 30px;
  width: 100%;
  margin: 20px auto;
  border-top: 1px dotted #90c31f;
}
.engumi-ul li {
  padding: 15px 0;
  border-bottom: 1px dotted #90c31f;
  list-style-position: inside;
}
.graph-fbox {
  display: flex;
  justify-content: space-around;
  flex-flow: row wrap;
  margin: 0 auto;
}
.graph-item {
  width: 46%;
  margin-top: 30px;
  text-align: center;
}
.waku-qa {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #90c31f;
  border-radius: 20px;
  background-color: #ECF2D3;
}
dl.qa {
  margin: 0 10px 15px 10px;
}
dl.qa dt {
  line-height: 1.7em;
  padding: 15px 10px;
  border-top: 1px dotted #90c31f;
  cursor: pointer;
  color: #666;
}
dl.qa dd {
  line-height: 1.7em;
  padding: 15px;
  border-top: 1px dotted #90c31f;
  background: #f5f5f5;
  color: #000;
}
.q, .a {
  padding: 3px 7px;
  border-radius: 5px;
  float: left;
  margin-right: 5px;
  font-family: "source-han-sans-japanese", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo;
  font-weight: 400;
  font-style: normal;
}
.q {
  background: #90c31f;
  color: #FFF;
}
.a {
  background: #F00;
  color: #FFF;
}
.flow-orange, .flow-green {
  width: 100%;
  border-radius: 10px;
  padding: 10px 0;
  color: F000;
  margin: 3px 0;
  font-family: "fot-seurat-pron";
  background-color: #fff;
}
.flow-orange {
  border: 3px solid #f08c79;
}
.flow-green {
  border: 3px solid #90c31f;
}
.img-left {
  float: left;
  padding-right: 10px;
  width: 100px;
}
.img-right {
  float: right;
  padding-left: 10px;
  width: 100px;
}
.img-border {
	border:1px solid #ccc;
}
.waku-assen {
  width: 360px;
  margin: 0 auto;
}
.fukidashi, .fukidashi2 {
  padding: 50px;
  background-color: #fff;
  border-radius: 20px;
  line-height: 2em;
  border: 1px solid #df7e6f;
}
.fukidashi2 {
  border: 1px solid #90c31f;
}
.footer-menu {
  display: flex;
  justify-content: center;
}
a.footer-menu-box, a.current {
  display: block;
  padding: 5px 10px;
  text-align: center;
  color: #000;
  font-size: 12px;
  font-style: normal;
  margin: 2px;
  border: 1px solid #f39f8a;
  border-radius: 5px;
}
a.footer-menu-box:hover {
  background-color: #ADD28E;
  border: 1px solid #ADD28E;
  text-decoration: none;
}
a.current, .a.current:hover {
  background-color: #f39f8a;
  text-decoration: none;
  color: #fff;
}
.footer-menu-box-emp {
  display: none;
}
/*----smp pc切り替え------*/
.smp {
  display: none
}
.pc {
  display: block
}
/*------フッター--------*/
footer {
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid #df7e6f;
}
#footer-inner {
  width: 980px;
  margin: 0 auto;
  font-size: 12px;
  color: #000;
  text-align: center;
}
#footer-inner a {
  color: #000000
}
.footer-bread {
  width: 980px;
  padding: 5px 0;
  margin: 0 auto;
  font-size: 12px;
}
.footer-bread p {
  margin-left: 15px;
}
.footer-bread a {
  display: inline-block;
  padding: 0 10px;
  border-radius: 5px;
  background-color: #f39f8a;
  color: #fff;
  font-size: 12px;
}
.footer-bread a:hover {
  background-color: #6AAF7B;
  text-decoration: none;
}
.bottom-logo {
  width: 300px;
  margin: 20px auto 0 auto;
}
a.pagetop {
  position: fixed;
  right: 60px;
  bottom: 30px;
  display: none;
}
@media screen and (max-width: 1180px) {
  #header-inner1 {
    width: 100%;
  }
  header h1, header h2 {
    left: 10px;
  }
  #fadein {
    width: 95%;
    margin: 0 auto;
  }
  .wrapper90 {
    width: 90%;
    margin: 0 auto;
  }
  .wrapper100 {
    width: 100%;
    margin: 0 auto;
  }
  .wapContent {
    width: 85%;
  }
  .yoshin-ul {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #footer-inner {
    width: 96%;
  }
  .graph-fbox {
    width=90%;
  }
}
@media screen and (max-width: 980px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 61px;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #ffffee;
    /*動き*/
    transition: all 0.6s;
  }
  #g-nav.act {
    right: 0;
  }
  nav ul {
    display: block;
    width: 100%;
  }
  nav li.has-child ul, nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
  nav ul li a {
    border-bottom: 1px solid #ccc;
  }
  /*矢印の位置と向き*/
  nav ul li.has-child::before {
    left: 20px;
  }
  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
  nav ul li.has-child::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 29px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
  }
  .openbtn {
    display: block;
  }
  .dr1 {
    width: 48%;
  }
  .wrapper800 {
    width: 90%;
    margin: 0 auto;
  }
  .footer-bread {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #news {
    left: 0;
    width: 100%;
  }
  .newsContent {
    padding: 18px;
  }
  .smp {
    display: block
  }
  .pc {
    display: none
  }
  .wrapper80 {
    width: 90%;
    margin: 0 auto;
  }
  .wrapper600 {
    width: 90%;
  }
  .infoFame {
    position: relative;
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
    padding-top: 50px;
    text-align: center;
  }
  .character {
    position: absolute;
    top: 0;
    margin: 0 auto;
    z-index: 100;
    text-align: center;
    width: 100%;
  }
  .infoFameInner {
    top: 0;
    width: 100%;
    border: 1px solid #df7e6f;
    border-radius: 20px;
    padding: 100px 20px 20px 20px;
    box-sizing: border-box;
  }
  .dr1 {
    width: 100%;
    margin: 10px auto 20px auto;
  }
  .f-box2, .f-box22 {
    width: 95%;
    margin: 0 auto;
  }
  .fbox2 {
    flex-direction: column;
  }
  .fbox3 {
    display: block;
    table-layout: none;
    width: 100%;
    margin-top: 20px;
  }
  .seibo, .yoshin {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px auto;
  }
  .flow {
    display: block;
    width: 100%;
    text-align: center;
  }
  .footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  a.footer-menu-box, a.current {
    width: 48%;
    padding: 10px 0;
    margin: 1px;
    text-align: center;
    box-sizing: border-box;
    margin: 2px;
  }
  .footer-menu-box-emp {
    display: block;
    width: 48%;
    padding: 10px 0;
    margin: 1px;
    text-align: center;
    box-sizing: border-box;
    margin: 2px;
    border: none;
  }
}
@media screen and (max-width: 600px) {
  header h1, header h2 {
    position: absolute;
    top: 14px;
    width: 210px;
  }
  .wrapper90 {
    width: 93%;
    margin: 0 auto;
  }
  .pickupFrame {
    width: 250px;
  }
  .sub-title, .sub-title-green {
    width: 100%
  }
  a.button-o, a.button-g {
    width: 100%;
    font-size: 14px;
  }
  .waku-orange, .waku-green, .waku-orange2 {
    width: 90%
  }
  .fukidashi, .fukidashi2 {
    padding: 15px;
  }
  .img-left, .img-right {
    width: 70px;
  }
  .graph-item {
    width: 100%;
  }
  .waku-assen {
    width: 100%;
  }
  .sub-title-orange3, .sub-title-green3 {
    margin-left: auto;
    margin-right: auto;
  }
   .waku-line-green {
	  width: 100%;
	  text-align: left;
	  margin-bottom: 10px;
	}
  .footer-bread {
    margin: 0;
  }
	a.pagetop {
	  right: 20px;
	  bottom: 20px;
	}
}