@charset "UTF-8";
body {
  font-size: 15px;
  font-feature-settings: "palt";
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

.form-link {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 999999;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #faaa20;
  transition-duration: .5s;
}

@media (max-width: 559px) {
  .form-link {
    width: 100%;
    text-align: center;
    top: auto;
    bottom: 0;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}

.form-link a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  border: solid 3px #faaa20;
  border-right: none;
  transition: all .5s ease;
}

.form-link a:hover {
  background: #fff;
  color: #faaa20;
}

@media (max-width: 559px) {
  .form-link a:hover {
    background: #faaa20;
    color: #fff;
  }
}

.form-link-none {
  opacity: 0;
  z-index: -1;
}

footer {
  background: #777;
  color: #fff;
  padding: 10px;
}

footer p {
  text-align: center;
  font-size: .6rem;
}

/*----- ヘッダー帯 -----*/
header {
  width: 100%;
  background: #fff;
}

header .header-label {
  text-align: center;
  padding: 10px;
  font-size: 1.7rem;
  font-weight: bold;
}

@media (max-width: 559px) {
  header .header-label {
    font-size: 1.2rem;
  }
}

header .header-label .baisoku {
  color: #345a9a;
  margin-right: .5rem;
}

header .header-label img {
  height: 1.8rem;
  margin-left: .5rem;
}

@media (max-width: 559px) {
  header .header-label img {
    height: 1.2rem;
    position: relative;
    bottom: -2px;
  }
}

/*----- メインビジュアル -----*/
.main-visual {
  width: 100%;
  height: 90vh;
  background: url(../img/img-mainvisual.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 30px;
}

@media (max-width: 559px) {
  .main-visual {
    height: 60vh;
  }
}

.main-visual:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  /*background: linear-gradient(to right, rgba(52,90,154,1), rgba(52,90,154,0));*/
  background: linear-gradient(to right top, #64b3f4 30%, #f6ff78);
  top: 0;
  left: 0;
  opacity: .6;
}

.main-visual .heading-wrap {
  /*max-width:580px;*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  /*left: 5%;*/
}

@media (max-width: 559px) {
  .main-visual .heading-wrap {
    /*left: auto;*/
  }
}

.main-visual .heading-wrap .heading-point {
  display: flex;
  max-width: 580px;
  margin: auto;
}

@media (max-width: 559px) {
  .main-visual .heading-wrap .heading-point {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.main-visual .heading-wrap .heading-point li {
  flex-basis: 25%;
  margin: 10px 5px;
  padding: 10px 3px;
  background: #faaa20;
  color: #fff;
  font-size: .9rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 559px) {
  .main-visual .heading-wrap .heading-point li {
    flex-basis: 40%;
    margin: 5px;
    font-size: .8rem;
    padding: 5px;
  }
}

.main-visual .heading-wrap h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin: 10px auto 30px;
  letter-spacing: .2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-stroke: 2px #233b66;
  -webkit-text-stroke: 2px #233b66;
  /*text-shadow: 5px 5px 5px rgba(0,0,0,.1);*/
  width: 95%;
  max-width: 660px;
}

.main-visual .heading-wrap h1 img {
  width: 100%;
  height: auto;
}

@media (max-width: 559px) {
  .main-visual .heading-wrap h1 {
    font-size: 8vw;
  }
}

.main-visual .heading-wrap h1 span {
  font-size: 5rem;
  position: relative;
  z-index: 9;
}

@media (max-width: 559px) {
  .main-visual .heading-wrap h1 span {
    font-size: 10vw;
  }
}

.main-visual .heading-wrap h1 span:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20px;
  background: #faaa20;
  left: 0;
  bottom: 7px;
  z-index: -1;
}

@media (max-width: 559px) {
  .main-visual .heading-wrap h1 span:before {
    bottom: 0;
  }
}

.main-visual .heading-wrap .heading-lead {
  display: flex;
  width: 100%;
  max-width: 580px;
  background: #fff;
  border-radius: 3px;
  padding: 10px;
  margin: auto;
  text-align: center;
  align-items: center;
  justify-content: space-around;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 559px) {
  .main-visual .heading-wrap .heading-lead .heading-lead-block {
    flex-basis: 40%;
  }
}

.main-visual .heading-wrap .heading-lead .heading-lead-block:first-child .lead-main {
  padding-bottom: .1rem;
}

.main-visual .heading-wrap .heading-lead .heading-lead-block .lead-main {
  color: #345A9A;
  border-bottom: 1px solid #000;
  font-size: 1.9rem;
  font-weight: bold;
  width: 100%;
}

@media (max-width: 559px) {
  .main-visual .heading-wrap .heading-lead .heading-lead-block .lead-main {
    font-size: 1rem;
  }
}

.main-visual .heading-wrap .heading-lead .heading-lead-block .lead-main img {
  height: 2rem;
  width: auto;
}

@media (max-width: 559px) {
  .main-visual .heading-wrap .heading-lead .heading-lead-block .lead-main img {
    /*height: 1.2rem;*/
    width: 100%;
    height: auto;
  }
}

.main-visual .heading-wrap .heading-lead .heading-lead-block .lead-sub {
  font-size: .9rem;
}

@media (max-width: 559px) {
  .main-visual .heading-wrap .heading-lead .heading-lead-block .lead-sub {
    font-size: .7rem;
  }
}

.main-visual .heading-wrap .heading-lead .heading-lead-block-center {
  font-size: 2rem;
  font-weight: bold;
}

@media (max-width: 559px) {
  .main-visual .heading-wrap .heading-lead .heading-lead-block-center {
    flex-basis: 5%;
  }
}

.lead {
  text-align: center;
  line-height: 2;
  /*color: #345A9A;*/
  font-weight: bold;
  background: #f3f3f3;
}

.lead-inner {
  padding: 50px 0;
}

@media (max-width: 959px) {
  .lead-inner {
    width: 90%;
    margin: auto;
  }
}

@media (max-width: 559px) {
  .lead-inner {
    text-align: left;
  }
}

@media (max-width: 559px) {
  .lead-inner br {
    display: none;
  }
}

.lead-inner p:first-child {
  margin-bottom: 1rem;
}

.lead-inner p span {
  display: inline-block;
  position: relative;
  z-index: 0;
}

@media (max-width: 559px) {
  .lead-inner p span {
    display: inline;
    color: #faaa20;
  }
}

.lead-inner p span:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 7px;
  background: #faaa20;
  bottom: 3px;
  z-index: -1;
}

@media (max-width: 559px) {
  .lead-inner p span:before {
    display: none;
  }
}

.trouble {
  padding: 50px 0;
  text-align: center;
}

.trouble h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #345a9a;
}

@media (max-width: 559px) {
  .trouble h2 {
    font-size: 2rem;
  }
}

.trouble-inner {
  display: flex;
  width: 90%;
  max-width: 960px;
  margin: auto;
}

@media (max-width: 559px) {
  .trouble-inner {
    display: block;
  }
}

.trouble-inner-block {
  flex-basis: 25%;
  overflow: hidden;
  margin: 15px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 3px 3px 10px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 559px) {
  .trouble-inner-block {
    display: flex;
    height: 100px;
  }
}

.trouble-inner-block:first-child .block-img img {
  right: 50%;
}

@media (max-width: 559px) {
  .trouble-inner-block:first-child .block-img img {
    right: 0;
    height: 100px;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 559px) {
  .trouble-inner-block:nth-child(2) .block-img img {
    bottom: 0;
  }
}

@media (max-width: 559px) {
  .trouble-inner-block:nth-child(3) .block-img img {
    /*height: 100px;
						width: auto;*/
  }
}

.trouble-inner-block .block-img {
  overflow: hidden;
}

@media (max-width: 559px) {
  .trouble-inner-block .block-img {
    flex-basis: 50%;
  }
}

.trouble-inner-block .block-img img {
  height: 140px;
  width: auto;
  position: relative;
}

@media (max-width: 559px) {
  .trouble-inner-block .block-img img {
    width: 100%;
    height: auto;
  }
}

.trouble-inner-block .block-txt {
  font-weight: bold;
  margin: 20px 0;
}

@media (max-width: 559px) {
  .trouble-inner-block .block-txt {
    text-align: left;
    margin: 0 0 0 1rem;
    flex-basis: 50%;
  }
}

@media (max-width: 559px) {
  .trouble-inner-block .block-txt p {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}

.recommend {
  background: #345a9a;
  padding: 75px 0 50px;
  position: relative;
}

.recommend:before {
  content: "";
  display: block;
  border-style: solid;
  width: 0;
  height: 0;
  border-width: 50px 100px 0 100px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.recommend h2 {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
}

@media (max-width: 559px) {
  .recommend h2 {
    font-size: 7vw;
  }
}

.recommend h2 span {
  position: relative;
  z-index: 0;
}

.recommend h2 span:after {
  display: block;
  content: "";
  width: 100%;
  height: 10px;
  background: #faaa20;
  z-index: -1;
  position: absolute;
  bottom: 5px;
  left: 0;
}

.recommend-lead {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

@media (max-width: 559px) {
  .recommend-lead {
    font-size: 1rem;
  }
}

.recommend-wrap {
  width: 90%;
  max-width: 960px;
  margin: 30px auto 0;
}

.recommend-wrap-block {
  background: #fff;
  padding: 10px;
  border-radius: 3px;
  margin: 20px 0;
}

.recommend-wrap-block .ttl {
  display: flex;
  color: #345a9a;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  height: 4rem;
  text-align: left;
}

.recommend-wrap-block .ttl img {
  width: 40px;
  height: auto;
  margin-right: 1rem;
}

@media (max-width: 559px) {
  .recommend-wrap-block .ttl img {
    width: 30px;
    height: auto;
  }
}

.recommend-wrap-block .ttl h3 br {
  display: none;
}

@media (max-width: 559px) {
  .recommend-wrap-block .ttl h3 br {
    display: block;
  }
}

.recommend-wrap-block .txt {
  text-align: left;
  margin: auto;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.recommend-wrap-block .txt p {
  margin: 10px;
}

.recommend-wrap-block .txt .answer {
  width: calc(100% - 20px);
  position: relative;
  left: 20px;
}

@media (max-width: 559px) {
  .recommend-wrap-block .txt .answer {
    width: calc(100% - 40px);
  }
}

.recommend-wrap-block .txt .answer:before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 7px 0 7px 7px;
  border-color: transparent transparent transparent #34599a;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.point {
  padding: 50px 0;
}

.point h2 {
  font-size: 2.5rem;
  color: #345a9a;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 559px) {
  .point h2 {
    font-size: 2rem;
  }
}

.point-wrap {
  margin: auto;
  display: flex;
  width: 90%;
  max-width: 960px;
  justify-content: space-between;
}

@media (max-width: 559px) {
  .point-wrap {
    display: block;
  }
}

.point-wrap-block {
  flex-basis: 30%;
  position: relative;
  background: #fff;
  box-shadow: 3px 3px 10px 5px rgba(0, 0, 0, 0.1);
}

.point-wrap-block img {
  width: 100%;
  height: auto;
}

.point-wrap-block .number {
  color: #fff;
  background: #345a9a;
  padding: 5px;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  text-align: center;
}

.point-wrap-block .ttl {
  display: flex;
  color: #345a9a;
  font-size: 1.2rem;
  margin: 1rem 0;
  padding: 0 10px;
}

.point-wrap-block .txt {
  padding: 0 10px;
  margin-bottom: 1rem;
}

@media (max-width: 559px) {
  .point-wrap-block .txt {
    padding: 0 1rem 1rem;
  }
}

.point-wrap-block .txt ol {
  list-style-type: decimal;
}

.point-wrap-block .txt ol li {
  margin: .5rem 0 .5rem 1rem;
}

.product {
  padding: 50px 0;
  background: #DAE0E8;
  position: relative;
}

.product h2 {
  text-align: center;
  color: #345a9a;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

@media (max-width: 559px) {
  .product h2 {
    font-size: 2rem;
  }
}

.product-wrap {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 3px;
}

.product-wrap h3 {
  text-align: center;
  color: #345a9a;
  font-size: 1.6rem;
}

@media (max-width: 559px) {
  .product-wrap h3 {
    font-size: 1.4rem;
  }
}

.product-wrap h3 img {
  height: 1.5rem;
  width: auto;
}

.product-wrap .product-lead {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  margin: 1rem 0;
}

@media (max-width: 559px) {
  .product-wrap .product-lead {
    font-size: .8rem;
  }
}

.product-wrap .product-cap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (max-width: 559px) {
  .product-wrap .product-cap {
    display: block;
  }
}

.product-wrap .product-cap p {
  display: block;
  width: 32%;
  height: auto;
}

@media (max-width: 559px) {
  .product-wrap .product-cap p {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}

.product-wrap .product-cap p img {
  width: 100%;
  height: auto;
}

.product-wrap .product-list {
  border: solid 3px #345a9a;
}

.product-wrap .product-list .acd-check {
  display: none;
}

.product-wrap .product-list .acd-check:checked + .acd-label:after {
  transform: translateY(-50%) rotate(45deg);
}

.product-wrap .product-list .acd-label {
  background: #345a9a;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  position: relative;
}

@media (max-width: 559px) {
  .product-wrap .product-list .acd-label {
    font-size: 1rem;
  }
}

.product-wrap .product-list .acd-label:after {
  content: "＋";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.5rem;
  transition: all .5s ease;
}

.product-wrap .product-list .acd-content {
  display: none;
}

.product-wrap .product-list .acd-content-inner {
  display: flex;
  justify-content: space-around;
  margin: 20px;
}

@media (max-width: 559px) {
  .product-wrap .product-list .acd-content-inner {
    display: block;
  }
}

.product-wrap .product-list .acd-content-inner .block {
  margin-bottom: 1rem;
}

@media (max-width: 559px) {
  .product-wrap .product-list .acd-content-inner .block {
    font-size: .8rem;
  }
}

.product-wrap .product-list .acd-content-inner .block-ttl {
  font-size: 1rem;
  font-weight: bold;
}

@media (max-width: 559px) {
  .product-wrap .product-list .acd-content-inner .block-ttl {
    font-size: .8rem;
  }
}

.product-wrap .product-list .acd-content-inner .block ol {
  list-style-type: decimal;
}

@media (max-width: 559px) {
  .product-wrap .product-list .acd-content-inner .block ol {
    font-size: .8rem;
  }
}

.product-wrap .product-list .acd-content-inner .block ol li {
  margin-left: 1rem;
}

@media (max-width: 559px) {
  .product-wrap .product-list .acd-content-inner .block ol li {
    font-size: .8rem;
  }
}

.product-wrap-baisoku {
  margin-bottom: 30px;
}

.product-wrap-sokudoku {
  margin-bottom: 30px;
}

.product-wrap-sokudoku ol li {
  margin: 1rem 0 0;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 559px) {
  .product-wrap-sokudoku ol li {
    font-size: .8rem;
  }
}

.product-wrap-sokudoku ol ul li {
  margin: 0;
  font-weight: normal;
  font-size: .9rem;
}

@media (max-width: 559px) {
  .product-wrap-sokudoku ol ul li {
    font-size: .8rem;
  }
}

.product-wrap-sokudoku .inner-right {
  margin-top: 1.1rem;
}

.product-wrap-environment {
  font-size: 14px;
}

.product-wrap-environment h3 {
  font-size: 1.2rem;
  /*color: #000;*/
}

.environment {
  width: 90%;
  max-width: 960px;
  margin: 100px auto;
}

.environment-inner h3 {
  text-align: center;
  color: #345a9a;
}

.environment-inner-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

@media (max-width: 959px) {
  .environment-inner-block {
    display: block;
    font-size: .8rem;
  }
}

.environment-inner-block:last-child {
  border-top: 1px solid #DAE0E8;
  padding-top: 1rem;
}

.environment-inner-block p {
  font-size: 1rem;
  font-weight: bold;
  flex-basis: 15%;
  text-align: center;
}

@media (max-width: 959px) {
  .environment-inner-block p {
    margin-bottom: 1rem;
  }
}

.environment-inner-block table {
  flex-basis: 85%;
  border-collapse: collapse;
}

.environment-inner-block table th {
  background: #eee;
  /*width: 20%;*/
}

.environment-inner-block table th, .environment-inner-block table td {
  padding: .5rem 1rem;
  border: 1px solid #999999;
  margin: 0;
}

.environment-inner-block table tr th:first-of-type {
  width: 20%;
}

@media (max-width: 959px) {
  .environment-inner-block table tr th:first-of-type {
    width: 30%;
  }
}

.environment-inner-block table tr td img {
  height: 5rem;
  width: auto;
}

.voice {
  padding: 50px 0;
}

.voice h2 {
  text-align: center;
  color: #345a9a;
  font-size: 2.5rem;
}

@media (max-width: 559px) {
  .voice h2 {
    font-size: 2rem;
  }
}

.voice-lead {
  text-align: center;
  color: #345a9a;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 50px;
  width: 90%;
}

@media (max-width: 559px) {
  .voice-lead {
    font-size: 1rem;
  }
}

.voice-wrap {
  width: 90%;
  max-width: 960px;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 559px) {
  .voice-wrap {
    display: block;
  }
}

.voice-wrap:first-of-type {
  padding-bottom: 30px;
  border-bottom: 1px solid #aaa;
}

.voice-wrap-about {
  flex-basis: 25%;
}

@media (max-width: 559px) {
  .voice-wrap-about {
    position: relative;
    margin-bottom: 1rem;
  }
}

.voice-wrap-about .about-title {
  padding: 10px;
  background: #345a9a;
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  border-radius: 10px;
  color: #fff;
}

@media (max-width: 559px) {
  .voice-wrap-about .about-title {
    font-size: .8rem;
    /*position: absolute;
					left: calc(40% + 1.5rem);*/
  }
}

.voice-wrap-about .about-title:after {
  content: "";
  display: block;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #345a9a transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 559px) {
  .voice-wrap-about .about-title:after {
    /*border-width: 5px 10px 5px 0;
						border-color: transparent #345a9a transparent transparent;
						top: 50%;
						transform: translateY(-50%);
						bottom: auto;
						left: -10px;*/
    display: none;
  }
}

.voice-wrap-about img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

@media (max-width: 559px) {
  .voice-wrap-about img {
    /*width: 40%;
					margin: 0;*/
  }
}

.voice-wrap-about .about-name {
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  margin: .5rem 0;
}

@media (max-width: 559px) {
  .voice-wrap-about .about-name {
    text-align: left;
    /*position: absolute;
					left: calc(40% + 1rem);
					top: 3rem;*/
  }
}

.voice-wrap-about .about-name span {
  font-size: .9rem;
}

.voice-wrap-about .about-job {
  font-size: .7rem;
}

@media (max-width: 559px) {
  .voice-wrap-about .about-job {
    /*position: absolute;
					left: calc(40% + 1rem);
					top: 6rem;*/
  }
}

@media (max-width: 559px) {
  .voice-wrap-about .sp-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 559px) {
  .voice-wrap-about .sp-wrap-left {
    flex-basis: 35%;
  }
}

@media (max-width: 559px) {
  .voice-wrap-about .sp-wrap-right {
    flex-basis: 60%;
  }
}

.voice-wrap-comment {
  flex-basis: 70%;
}

.voice-wrap-comment .comment-catch {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (max-width: 559px) {
  .voice-wrap-comment .comment-catch {
    font-size: 1.2rem;
  }
}

.voice-wrap-comment .comment-catch span {
  position: relative;
  z-index: 0;
}

.voice-wrap-comment .comment-catch span:before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #faaa20;
  z-index: -1;
}

.voice-wrap-comment .comment-txt {
  line-height: 1.7;
}

.experience {
  padding: 50px 0;
  background: #DAE0E8;
  position: relative;
}

.experience h2 {
  text-align: center;
  color: #345a9a;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

@media (max-width: 559px) {
  .experience h2 {
    font-size: 2rem;
  }
}

.experience-wrap {
  width: 90%;
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  line-height: 2;
}

.experience-wrap-block {
  flex-basis: 30%;
}

.flow {
  padding: 50px;
}

@media (max-width: 959px) {
  .flow {
    padding: 50px 0 0;
  }
}

.flow h2 {
  text-align: center;
  color: #345a9a;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

@media (max-width: 559px) {
  .flow h2 {
    font-size: 2rem;
  }
}

.flow-wrap {
  /*display: flex;*/
  justify-content: center;
}

@media (max-width: 559px) {
  .flow-wrap {
    display: block;
    justify-content: none;
  }
}

.flow-wrap-block {
  position: relative;
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 960px;
  margin: auto;
}

@media (max-width: 959px) {
  .flow-wrap-block {
    display: block;
  }
}

@media (max-width: 559px) {
  .flow-wrap-block {
    margin-bottom: 3rem;
  }
}

.flow-wrap-block:after {
  display: block;
  content: "";
  border-style: solid;
  border-width: 20px 25px 0 25px;
  border-color: #dae0e8 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -35px;
}

@media (max-width: 559px) {
  .flow-wrap-block:after {
    /*right: auto;
					top: auto;
					bottom: -30px;
					left: 47%;
					transform: rotate(135deg) translateX(-50%);*/
  }
}

.flow-wrap-block:last-child:after {
  display: none;
}

.flow-wrap-block:nth-child(n+2) {
  margin-top: 50px;
}

@media (max-width: 559px) {
  .flow-wrap-block:nth-child(n+2) {
    margin-left: auto;
  }
}

.flow-wrap-block .block-left {
  flex-basis: 30%;
  text-align: center;
}

@media (max-width: 959px) {
  .flow-wrap-block .block-left {
    display: flex;
    align-items: center;
    text-align: left;
  }
}

.flow-wrap-block .flow-step {
  /*text-align: center;*/
  color: #345a9a;
  font-weight: bold;
  font-size: 1rem;
}

.flow-wrap-block .flow-step span {
  display: inline-block;
  /*background: #345a9a;*/
  border: 1px solid #345a9a;
  line-height: 1.9rem;
  font-size: 1.5rem;
  /*color: #fff;*/
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  text-align: center;
}

@media (max-width: 959px) {
  .flow-wrap-block .flow-step {
    margin-right: 1rem;
  }
}

@media (max-width: 559px) {
  .flow-wrap-block .flow-img img {
    width: 100%;
    height: auto;
  }
}

.flow-wrap-block .flow-about {
  /*color: #345a9a;*/
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  margin: .5rem 0;
}

.flow-wrap-block .flow-about span {
  position: relative;
  z-index: 0;
}

.flow-wrap-block .flow-about span:before {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #faaa20;
}

.flow-wrap-block .flow-txt {
  flex-basis: 70%;
}

.qanda {
  padding: 50px 0;
  background: #DAE0E8;
  position: relative;
}

.qanda h2 {
  text-align: center;
  color: #345a9a;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

@media (max-width: 559px) {
  .qanda h2 {
    font-size: 2rem;
  }
}

.qanda-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 960px;
  margin: auto;
}

@media (max-width: 559px) {
  .qanda-wrap {
    display: block;
  }
}

.qanda-wrap-left {
  flex-basis: 49.5%;
}

.qanda-wrap-right {
  flex-basis: 49.5%;
}

.qanda-block {
  /*width: 90%;
		max-width: 960px;*/
  /*flex-basis: 50%;*/
  margin: 5px auto;
}

.qanda-block .qanda-check {
  display: none;
}

.qanda-block .qanda-check:checked + .qanda-label:after {
  transform: translateY(-50%) rotate(225deg);
}

.qanda-block .qanda-label {
  display: block;
  width: 100%;
  padding: 20px 40px;
  background: #345a9a;
  color: #fff;
  font-size: 1rem;
  /*font-weight: bold;*/
  cursor: pointer;
  position: relative;
}

@media (max-width: 559px) {
  .qanda-block .qanda-label {
    font-size: .9rem;
  }
}

.qanda-block .qanda-label:before {
  content: "Q.";
  font-size: 1.5rem;
  margin-right: .5rem;
  /*color: #faaa20;*/
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.qanda-block .qanda-label:after {
  content: "";
  display: block;
  width: .7rem;
  height: .7rem;
  transform: translateY(-50%) rotate(45deg);
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
  position: absolute;
  right: 1rem;
  top: 50%;
  transition: all .5s ease;
}

.qanda-block .acd-content {
  display: none;
}

.qanda-block .acd-content-inner {
  background: #fff;
  padding: 10px 10px 10px 40px;
  position: relative;
}

.qanda-block .acd-content-inner a {
  color: #000;
}

.qanda-block .acd-content-inner:before {
  content: "A.";
  font-size: 1.5rem;
  margin-right: .5rem;
  font-weight: bold;
  color: #345a9a;
  position: absolute;
  top: 0;
  left: 10px;
}

.form {
  padding-top: 50px;
  /*width: 90%;*/
  /*max-width: 960px;*/
  margin: auto;
}

.form h2 {
  text-align: center;
  color: #345a9a;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

@media (max-width: 559px) {
  .form h2 {
    font-size: 2rem;
  }
}

.form .dummy {
  text-align: center;
  height: 500px;
}

.form iframe {
  display: block;
  margin: auto;
  width: 960px;
}

@media (max-width: 959px) {
  .form iframe {
    width: 100%;
  }
}
