/* ==============================
  FV
============================== */
.mainVisual {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: calc(100vh - 1px);
  overflow: hidden;
}
.mainVisual .video-box {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  /* padding-top: 100%; */
  padding-top: calc(100vh - 1px);
  margin: 0 auto;
}
.mainVisual .video-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
}
.mainVisual video {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .mainVisual video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
#maxhub .mainVisual .scroll {
  position: absolute;
  bottom: 0;
  left: 7%;
  width: 9px;
  height: 120px;
}
#maxhub .mainVisual .scroll::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: auto;
  bottom: 0;
  left: 3.9px;
  /*線の形状*/
  width: 1px;
  height: 75px;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 3s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 35px;
    opacity: 0;
  }
  30% {
    height: 75px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 120px;
    opacity: 0;
  }
}
.mainVisual_inner {
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 10;
  margin-top: -100px;
}
.mainVisual_inner h1 {
  width: 35%;
  margin: 0 auto 60px;
}
.mainVisual_inner h1 img {
  width: 100%;
}
.mainVisual_inner h2 {
  margin: 0 0 40px;
  padding-bottom: 30px;
  font-size: 54px;
  font-size: 5.4rem;
  font-weight: 600;
  border-bottom: 2px solid #1ac0aa;
  display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.4;
}
.mainVisual_inner h2 .stext {
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: 400;
}
.mainVisual_inner h2 .ltext {
  font-size: 60px;
  font-size: 6.0rem;
  font-weight: 900;
}

.mainVisual_inner h2 .mtext {
  font-size: 32px;
  font-size: 3.2rem;
}

.mainVisual_inner h2 .sstext{
	font-size: 16px;
	font-size: 1.6rem;
}

.mainVisual_inner #btn-movie a {
  position: relative;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0);
  width: 180px;
  padding: 10px 0;
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  transition: ease 0.2s;
  z-index: 1;
}
.mainVisual_inner #btn-movie a:hover {
  text-decoration: none;
  border: 1px solid #129f8c;
}
.mainVisual_inner #btn-movie span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
  display: flex;
  justify-content: center;
}
.mainVisual_inner #btn-movie a:hover span {
  color: #fff;
}
.mainVisual_inner #btn-movie a:hover {
  color: #fff;
}
.mainVisual_inner #btn-movie a::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #1ac0aa; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.mainVisual_inner #btn-movie a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.topcopy01 {}
#btn-movie img {
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  #maxhub {
    padding-top: 55px;
  }
  .mainVisual {
    height: 51vw;
  }
  .mainVisual .video-box {
    height: 100%;
    padding-top: unset;
  }
  #maxhub .mainVisual .scroll, #maxhub-inquiry {
    display: none !important;
    opacity: 0 !important;
  }
}
@media screen and (max-width: 700px) {
  #maxhub {
    padding-top: 50px;
  }
  .mainVisual {
    height: 100vw;
  }
  .mainVisual .video-box {
    height: 100vw;
  }
  .mainVisual_inner h1 {
    width: 61vw;
    margin: 0 auto;
  }
  .mainVisual_inner h2 {
    margin: 24px 0 45px;
    font-size: 2rem;
	  font-weight: 600;
  }
	
.mainVisual_inner h2 .stext {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}
.mainVisual_inner h2 .ltext {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 900;
}

.mainVisual_inner h2 .mtext {
  font-size: 24px;
  font-size: 2.4rem;
}
  .mainVisual_inner #btn-movie a {
    width: 61vw;
    padding: 10px 0;
    border-radius: 24px;
    font-size: 1.5rem;
    margin-top: 50px;
  }
}
/* ==============================
  FV 動画POPUP
============================== */
.mfp-container {
  right: 0;
  width: 90vw;
  max-width: 1080px;
  margin: 0 auto;
}
.mfp-wrap.mfp-ready .mfp-container .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-delay: 0.2s, 0.2s;
  -o-transition-delay: 0.2s, 0.2s;
  transition-delay: 0.2s, 0.2s;
  position: relative;
  width: 100%;
  /* padding-top: 56.25%; */
}
.mfp-video .mfp-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mfp-content {
  animation: open 1s;
}
@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mfp-content::before, .mfp-content::after {
  content: "";
  background: #ffffff;
  display: block;
  width: 21px;
  height: 1px;
  position: absolute;
  right: 0;
  top: -21px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.mfp-content::before {
  right: 0;
  top: -21px;
  -webkit-transform: translateX(3px) translateY(4px) rotate(-45deg);
  -ms-transform: translateX(3px) translateY(4px) rotate(-45deg);
  transform: translateX(3px) translateY(4px) rotate(-45deg);
}
.mfp-content::after {
  right: 0;
  top: -13px;
  -webkit-transform: translateX(3px) translateY(-4px) rotate(45deg);
  -ms-transform: translateX(3px) translateY(-4px) rotate(45deg);
  transform: translateX(3px) translateY(-4px) rotate(45deg);
}
/* ==============================
  コンテンツ
============================== */
#wrapper {
  padding: 150px 0 0;
  background: linear-gradient(90deg, rgb(245, 245, 245), rgb(212, 227, 234));
  box-sizing: border-box;
}
.bgw {
  background: #FFFFFF;
}
#wrapper article {
  max-width: 1150px;
  padding: 50px 10px 0;
  margin: -50px auto 0;
}
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #131313;
}
h2.line {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: normal;
  margin: 0 0 35px;
  padding: 0 0 0 15px;
  border-left: 3px solid #ccc;
  line-height: 1.3;
}
h2.cbp {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	color: #1ac0aa;
	line-height: 1.4;
	margin-bottom: 10px;
}
.fb {
  display: flex;
}
.fdc {
  flex-direction: column;
}
.jc-c {
  justify-content: center;
}
.jc-sb {
  justify-content: space-between;
}
.jc-fe {
  justify-content: flex-end;
}
.ac {
  align-items: center;
}
.w70 {
  width: 70%;
}
.w48 {
  width: 48%;
}
.w30 {
  width: 30%;
}
.w25 {
  width: 25%;
}
.copy01 {
  text-align: center;
  font-weight: 400;
  font-size: 36px;
  font-size: 3.6rem;
  margin: 0;
	color: #1ac0aa;
}
.copy02 {
  text-align: center;
  font-size: 24px;
	font-size: 2.4rem;
  margin: 0 0 5px;
}
.cbcp {
  text-align: center;
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: 400;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  margin-bottom: 40px;
}
.cp-gb{
	width: 30%;
	font-size: 18px;
	font-size: 1.8rem;
	color: #fff;
	text-align: center;
	background: #1ac0aa;
	padding: 10px 20px;
	line-height: 1.4;
	border-radius: 10px;
}
.cpx {
  padding: 0 20px;
}
.cbcp2 {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
}

.cbcp2-1{
	margin-top: 80px
}
.cbcp2-2{
	font-size: 38px;
	font-size: 3.8rem;
	color: #1ac0aa;
	font-weight: 600;
	line-height: 1.4;
}
.cbcp2-2 span{
	font-size: 24px;
	font-size: 2.4rem;
}
.cbcp2-3{
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: 600;
	margin-bottom: 80px;
}

.cbcp3 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.cbcp4 {
  font-size: 20px;
  margin-bottom: 50px;
}
.cbcp5 {
  font-size: 20px;
  font-weight: bold;
}
.pt {
  display: flex;
  align-items: center;
	margin-bottom: 20px;
}
.pt .point {
  font-family: Arial, Helvetica, "sans-serif";
  background: #1ac0aa;
  color: #FFFFFF;
  text-align: center;
  margin-right: 20px;
  padding: 10px 12px 5px;
  font-size: 16px;
  line-height: 1;
}
.pt .point span {
  font-size: 32px;
  font-weight: bold;
}
.pt .title {
  padding: 0;
  font-size: 20px;
  font-size: 2.0rem;
	line-height: 1.2;
	margin-bottom: 10px;
}

p.pt-txt{
	font-size: 16px;
	font-size: :1.6rem;
	margin-bottom: 20px;
}
.title .ls {
  font-size: 24px;
	color: #1ac0aa;
  line-height: 1.2;
}
.title .sb {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.stxt {
  font-size: 14px;
  font-size: 1.4rem;
}
.cbh4 {
  font-size: 20px;
  font-size: 2.0rem;
}
.spec-name {
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}
a.btn {
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 100vh;
  background-color: #8e989e;
  box-sizing: border-box;
}
a.btn:hover {
  color: #fff;
  background: #667076;
}
img.ds {
  border-radius: 10px;
  box-shadow: 0px 5px 10px 1px rgba(88, 97, 100, 0.5);
}
.movie-bg {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(90deg, rgb(245, 245, 245), rgb(212, 227, 234));
  text-align: center;
}
.movie-bg h4 {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb150 {
  margin-bottom: 150px;
}
.mb200 {
  margin-bottom: 100px;
}
.pt100 {
  padding-top: 100px;
}
.mt50 {
  margin-top: 50px;
}
.txtAC {
  text-align: center;
}
.txtAR {
  text-align: right;
}
p {
  font-size: 18px;
  font-size: 1.8rem;
}
.pc_none {
  display: none;
}
@media (max-width:767px) {
  .spfd-c {
    flex-direction: column;
  }
  .spfd-cr {
    flex-direction: column-reverse;
  }
  #wrapper article {
    padding: 50px 20px 0;
    margin: -50px auto 0;
  }
  .sptxtAC {
    text-align: center;
  }

  .spmb10 {
    margin-bottom: 10px;
  }

  .spmb30 {
    margin-bottom: 30px;
  }

  .spmb50 {
    margin-bottom: 50px;
  }
  .spw100 {
    width: 100%;
  }
  .txtAR {
    text-align: left;
  }
  .copy01 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .cbcp {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .cpx img {
    padding: 0 10px;
    width: 50%;
  }
  .cbcp2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .cbcp3 {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
  }
  .cbcp5 {
    text-align: center;
  }
  h2.cbp {
    font-size: 2.0rem;
  }
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
	
	.mb100 {
  margin-bottom: 50px;
}
	p {
  font-size: 16px;
  font-size: 1.6rem;
		line-height: 1.6;
}
	.cbcp2-1{
	margin-top: 0px
}
	.cbh4 {
  font-size: 18px;
  font-size: 1.8rem;
		line-height: 1.6;
}
}
/*固定ナビ系*/
.yug {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.titlenav {
  width: 100%;
  /*margin-bottom: 20px;TOP絵100%用*/
  background: #f9f9f9;
  box-shadow: inset 0px -2px 6px 1px rgba(111, 111, 111, 0.08);
}
.titlenav .wrap {
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.ol_sns div {
  margin: 0 10px;
}
.ol_subnav {
  background: #f4f4f4;
  padding: 10px 20px;
}
/*0227変更*/
.sn {
  margin: 0 auto;
  align-items: center;
}
/*.sn div {
  padding: 0 5px;
}*/
.fg1 {
  flex-grow: 1;
}
.sn div a {
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  color: #101010;
}
.sn div a:hover {
  color: #3774bf;
}
.sn .led-btn, .led-btn {
  color: #ededed;
  margin-left: 10px;
  background: #033b7f;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5px 15px;
}
.sn div.led-btn a, .led-btn a {
  color: #fff;
  text-decoration: none;
}
@media (max-width:767px) {
  .sn {
    width: 100%;
  }
  .fg1 {
    flex-grow: 0;
  }
  .ol_subnav {
    padding: 10px;
  }
  .ol_subnav div {
    padding: 0;
    margin-bottom: 0;
  }
  .ol_subnav .sn div {
    padding: 0 10px;
  }
}
/* 固定ヘッダー */
.titlenav.fixed {
  position: fixed; /* ←fixedで固定する*/
  top: 0;
  left: 0;
  z-index: 11;
}
.sc300:before {
  content: "";
  display: block;
  height: 350px; /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -350px; /* heightと同じ分のネガティブマージン */
  visibility: hidden;
}
.sc100:before {
  content: "";
  display: block;
  height: 50px; /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -50px; /* heightと同じ分のネガティブマージン */
  visibility: hidden;
}
@media (max-width:767px) {
  .titlenav.fixed {
    margin-top: 0px;
  }
  .sc300:before, .sc100:before {
    height: 0px; /* 調整したい高さ（固定ヘッダーの高さ） */
    margin-top: 0px; /* heightと同じ分のネガティブマージン */
  }
  .ol_subnav .led-btn {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 5px;
    color: #222222;
    margin-left: 0;
  }
}
.youtube-movie {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.youtube-movie iframe {
  width: 100%;
  height: 100%;
}
.arrow_u {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.arrow_u:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #8c969c;
  border-right: solid 2px #8c969c;
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  left: 0;
  margin: auto;
}
.arrow_r {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}
.arrow_r:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #5393e0;
  border-right: solid 2px #5393e0;
  transform: rotate(315deg);
  position: absolute;
  top: 7px;
  right: 0;
  margin: auto;
}
.mail-icon {
  position: absolute;
  top: 5px;
  left: 0;
  margin: auto;
}
.arrow_l {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.arrow_l:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #8c969c;
  border-right: solid 2px #8c969c;
  transform: rotate(315deg);
  position: absolute;
  top: 7px;
  left: 0;
  margin: auto;
}
sup {
  font-size: 12px;
  font-size: 1.2rem;
}
/* コンテンツ内共通 SNSボタン */
.sns_wrap {
  margin: 0 0 40px;
  height: 22px;
}
.sns_wrap {
  margin: 0 0 20px;
  height: 22px;
}
.sns {
  /*float: right;*/
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.sns li {
  float: left;
  margin: 0 0 0 10px;
}
.sns li:first-child {
  margin: 0;
}
p.pdf {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
}
.contact-menu {
  font-size: 12px;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.contact-title {
  position: relative;
  margin-right: 20px;
  padding-right: 15px;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
}
.contact-title::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4em; /* arrow size */
  height: 0.4em; /* arrow size */
  border-top: 1px solid #808080; /* thickness, color */
  border-right: 1px solid #808080;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sp-contact-title {
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-box {
  box-sizing: border-box;
  border: 1px solid #b1b1b1;
  padding: 5px 10px;
  border-radius: 5px;
}
.c-line {
  padding: 0 10px;
}
.pdr20 {
  padding-right: 20px;
}
.pdr10 {
  padding-right: 10px;
}
.fd {
  font-size: 10px;
  font-size: 1.0rem;
  line-height: 1.4;
}
.fd span {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}
@media (max-width:767px) {
  .ol_subnav div.contact-box {
    padding: 5px 10px;
    margin-top: 15px;
  }
  .ol_subnav div.contact-box div {
    padding: 0 5px;
    margin-bottom: 0;
  }
  .fd {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .fd span {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .mainVisual_inner {
    margin-top: 0;
  }
}
@media (max-width:450px) {
  .ol_subnav div.contact-box {
    padding: 5px;
  }
  .ol_subnav div.contact-box div {
    padding: 0 5px;
    margin-bottom: 0;
  }
  .fd {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .fd span {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .contact-menu .contact-box {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .sn div a {
    font-size: 12px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #101010;
  }
  .ol_subnav .sn div {
    padding: 0 8px;
  }
	.mainVisual_inner h2 {
    margin: 24px 0 45px;
    font-size: 1.6rem;
	  font-weight: 600;
  }
	
.mainVisual_inner h2 .stext {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}
.mainVisual_inner h2 .ltext {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 900;
}

.mainVisual_inner h2 .mtext {
  font-size: 20px;
  font-size: 2.0rem;
}
}
.pr10 {
  padding-right: 10px;
}

.pr30 {
  padding: 10px 30px;
}

.mr10 {
  margin-right: 10px;
}
/*アコーディオン*/
/* 必須 */
.accordion-content {
  display: none;
}
/* 装飾用 */
.accordion-header {
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
}
.accordion-header::before, .accordion-header::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #151E2F;
}
.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.accordion-header.active::after {
  transform: rotate(0deg);
}
.accordion-content {
  background-color: #FFF;
  padding: 12px 20px 10px;
  margin-bottom: 30px;
}
.accordion-header span, .accordion-content span {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.kassei-bar {
  background-color: #878a55;
  color: #fff;
  margin: 0 auto;
  width: 80%;
  box-sizing: border-box;
}
/* hover */
.accordion-header.kassei-bar:hover {
  background-color: #5c602b;
}
.accordion-header.kassei-bar span, .accordion-content.kassei-cont span {
  padding-left: 0;
}
.accordion-content.kassei-cont {
  margin: 0 auto;
  background-color: #eaeae6;
  padding: 40px;
  width: 80%;
  box-sizing: border-box;
  line-height: 1.5;
}
@media screen and (max-width: 700px) {
  .kassei-bar {
    width: 100%;
  }
  .accordion-content.kassei-cont {
    width: 100%;
  }
}
/* hover */
.accordion-header:hover {
  background-color: #F2F2F2;
}
/**/
.fukidasi{
	position: absolute;
	top: 30%;
	left: 5%;
}

.aiocr-box{
    background: #f2f2f2;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    width: 60%;
    margin: 0 auto 20px;
}

.aiocr-box .title{
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: bold;
}

.aiocr-box .title span{
	font-size: 18px;
	font-size: 1.8rem;
}

.aiocr-box .title span.stxt{
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
}

.aiocr-box2{
    background: #20b5a3;
    font-size: 24px;
    font-size: 2rem;
	font-weight: bold;
    color: #fff;
    padding: 5px 20px;
    text-align: center;
    width: 60%;
    margin: 0 auto 20px;
    border-radius: 5px;
}

.aiocr-txt{
	font-weight: bold;
	margin-bottom: 50px;
}

.kugiri-line{
	border-bottom: 1px solid #c0c0c0;
	margin-bottom: 80px;
}

@media screen and (max-width: 700px) {
.aiocr-box{
    width: 100%;
    margin: 0 auto 10px;
	box-sizing: border-box;
}

.aiocr-box .title{
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
}

.aiocr-box .title span{
	font-size: 16px;
	font-size: 1.6rem;
}

.aiocr-box .title span.stxt{
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
}

.aiocr-box2{
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
    width: 90%;
}

.aiocr-txt{
	font-weight: bold;
	margin-bottom: 30px;
}

.cp-gb{
	box-sizing: border-box;
	padding: 10px 20px;
	line-height: 1.4;
	border-radius: 10px;
	margin: 0 20px 20px;
	width: 100%;
}
.copy02 {
  font-size: 16px;
	font-size: 1.6rem;
}
.cbcp2-1{
	font-size: 16px;
	font-size: 1.6rem;
}
.cbcp2-2{
	font-size: 24px;
	font-size: 2.4rem;
}
.cbcp2-2 span{
	font-size: 18px;
	font-size: 1.8rem;
}
.cbcp2-3{
	font-size: 20px;
	font-size: 2.0rem;
	margin-bottom: 50px;
}
}
