@charset "UTF-8";
/*--------------------
Reset CSS
--------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*影*/
/*テキスト背景塗りつぶし*/
/*テキストアンダーライン*/
/*テキストハイライト*/
/*三角で囲む*/
/*縦リボン*/
/*--------------------
Base Style
--------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  width: 100%;
  line-height: 1.6;
  letter-spacing: 0.09em;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  color: #13344A;
  background-color: #87C1D3;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  cursor: pointer;
}

.inner {
  max-width: 1400px;
  width: 85vw;
  margin-left: auto;
  margin-right: auto;
}

.red {
  color: #BE5353;
  font-weight: 700;
}

.white {
  color: #FCFCFC;
  font-weight: 700;
}

.yellow {
  color: #F6E159;
  font-weight: 700;
}

.fwb {
  font-weight: 700;
}

.small {
  font-weight: 500;
  font-size: 1rem;
}

.sp-only {
  display: none;
}
@media only screen and (max-width: 720px) {
  .sp-only {
    display: block;
  }
}

.desktop-only {
  display: block;
}
@media only screen and (max-width: 720px) {
  .desktop-only {
    display: none;
  }
}

.is-hidden {
  display: none;
}

.change-color {
  background-color: #FCFCFC;
  transform: 0.5s;
}

/*--------------------
Main Style
--------------------*/
/*--------------------
Header
--------------------*/
.header {
  z-index: 999;
  position: fixed;
  width: 100%;
}
.header__flex {
  height: 90px;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 720px) {
  .header__flex {
    height: 65px;
  }
}
.header__flex--left {
  width: 200px;
  z-index: 9;
}
@media only screen and (max-width: 720px) {
  .header__flex--left {
    width: 50px;
  }
}
.header__flex--right {
  display: flex;
  align-items: center;
}
.header__flex--right .btn {
  z-index: 9;
}
.header__flex--right .btn a {
  width: 100%;
  padding: 0.5em 2em;
  border-radius: 30px;
  border: 3px solid #87C1D3;
  font-size: 1.25rem;
  color: #13344A;
  background-color: #FCFCFC;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 720px) {
  .header__flex--right .btn a {
    display: none;
  }
}
.header__flex--right .btn a:hover {
  background-color: #87C1D3;
  color: #FCFCFC;
}
.header #nav {
  position: fixed;
  z-index: -1;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: #87C1D3;
  transition: all 0.5s;
}
.header #nav.panelActive {
  right: 0;
  opacity: 0.9;
  z-index: 999;
}
.header #nav.panelActive ul {
  display: block;
}
.header ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header li {
  text-align: left;
}
.header li a {
  margin-bottom: 1.5em;
  color: #FCFCFC;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  padding-left: 20px;
}
@media only screen and (max-width: 720px) {
  .header li a {
    font-size: 1rem;
  }
}
.header li a:hover {
  color: #13344A;
  border-left: 2px solid #F6E159;
}
.header .toggle {
  position: relative;
  width: 60px;
  height: 60px;
  margin-left: 30px;
  z-index: 9999;
  background-color: #87C1D3;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 720px) {
  .header .toggle {
    width: 50px;
    height: 50px;
  }
}
.header .toggle span {
  display: inline-block;
  position: absolute;
  right: 16px;
  height: 3px;
  transition: all 0.4s;
  border-radius: 2px;
  background-color: #FCFCFC;
}
@media only screen and (max-width: 720px) {
  .header .toggle span {
    right: 12px;
    height: 2px;
  }
}
.header .toggle span:nth-of-type(1) {
  top: 24px;
  width: 50%;
}
@media only screen and (max-width: 720px) {
  .header .toggle span:nth-of-type(1) {
    top: 20px;
  }
}
.header .toggle span:nth-child(2) {
  top: 34px;
  width: 36%;
}
@media only screen and (max-width: 720px) {
  .header .toggle span:nth-child(2) {
    top: 30px;
  }
}
.header .toggle.active {
  background: #FCFCFC;
}
.header .toggle.active span:nth-of-type(1) {
  background: #87C1D3;
  width: 50%;
  top: 24px;
  right: 15px;
  transform: translateY(6px) rotate(-40deg);
}
@media only screen and (max-width: 720px) {
  .header .toggle.active span:nth-of-type(1) {
    top: 20px;
    right: 12px;
  }
}
.header .toggle.active span:nth-of-type(2) {
  background: #87C1D3;
  width: 50%;
  top: 36px;
  right: 15px;
  transform: translateY(-6px) rotate(40deg);
}
@media only screen and (max-width: 720px) {
  .header .toggle.active span:nth-of-type(2) {
    top: 32px;
    right: 12px;
  }
}

/*--------------------
Main
--------------------*/
/*FV*/
.fv {
  transform: translateY(-0px);
}
@media only screen and (max-width: 720px) {
  .fv {
    transform: translateY(-0px);
  }
}

/*SP限定固定ボタン*/
.sp-btn {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.sp-btn a {
  display: block;
  text-align: center;
  margin: 10px;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-size: 1.25rem;
  color: #13344A;
  border: 5px solid #87C1D3;
  border-radius: 50px;
  background-color: #FCFCFC;
  z-index: 9999;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/*about:こんな方は太陽光発電の名義変更が必要です。*/
.about{
  padding-top: 10%;
}
.about h2 {
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  text-align: center;
  z-index: -1;
}
@media only screen and (max-width: 720px) {
  .about h2 {
    margin-bottom: 30px;
    font-size: 1.25rem;
    line-height: 2;
  }
}
.about h2:before, .about h2:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #F6E159;
  width: 3px;
  height: 1.8em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
@media only screen and (max-width: 720px) {
  .about{
    padding-top: 15%;
  }
  .about h2:before, .about h2:after {
    display: none;
  }
}
.about h2:before {
  transform: rotate(-35deg);
}
.about h2:after {
  transform: rotate(35deg);
}
.about h2 .decoration {
  padding: 0.2em 0.4em;
  margin: 0 0.2em;
  background-color: #F6E159;
}
.about .frame {
  background: #FCFCFC;
  border-radius: 30px;
  padding: 5%;
  margin-bottom: 100px;
}
@media only screen and (max-width: 720px) {
  .about .frame {
    border-radius: 10px;
    margin-bottom: 50px;
    padding: 5% 5% 10% 5%;
  }
}
.about .list-group {
  margin-bottom: 120px;
  font-size: 1.25rem;
}
@media only screen and (max-width: 720px) {
  .about .list-group {
    margin-top: 20px;
    margin-bottom: 120px;
    font-size: 1rem;
  }
}
.about .list-group .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20% 10%;
  padding-left: 10%;
  padding-right: 5%;
}
@media only screen and (max-width: 720px) {
  .about .list-group .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10% 0;
    padding: 0;
  }
}
.about .list-group .list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .about .list-group .list__item {
    justify-content: center;
  }
}
.about .list-group .list__item img {
  width: 20%;
}
@media only screen and (max-width: 720px) {
  .about .list-group .list__item img {
    width: 15%;
    margin-right: 20px;
  }
}
.about .list-group .list__item p {
  text-align-last: left;
  width: 75%;
}
@media only screen and (max-width: 720px) {
  .about .list-group .list__item p {
    width: 50%;
  }
}
.about .text-group {
  border: 10px solid #87C1D3;
  border-radius: 20px;
  padding: 2% 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
}
@media only screen and (max-width: 720px) {
  .about .text-group {
    border: 5px solid #87C1D3;
    border-radius: 10px;
    flex-direction: column;
  }
}
.about .text-group img {
  width: 15%;
}
@media only screen and (max-width: 720px) {
  .about .text-group img {
    width: 40%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.about .text-group p {
  width: 80%;
  text-align: center;
  line-height: 2;
}
@media only screen and (max-width: 720px) {
  .about .text-group p {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align-last: left;
  }
}
.about .text-group p .decoration:first-child {
  padding: 0.2em 0.4em;
  margin: 0 0.2em;
  background-color: #BE5353;
}
.about .text-group p .decoration:last-child {
  padding-bottom: 0.02em;
  border-bottom: 5px solid #BE5353;
}

/*about-2:名義変更に必要な手続きはとても多く複雑…*/
.about_2 {
  background: #FCFCFC url(../images/bg_img.png);
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: -1;
}
.about_2 img:first-child {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
  margin-bottom: 100px;
}
@media only screen and (max-width: 720px) {
  .about_2 img:first-child {
    margin-bottom: 50px;
  }
}
.about_2 .title-area {
  position: relative;
}
.about_2 .title-area h2 {
  margin-bottom: 100px;
  padding: 0.5em 0;
  font-weight: 500;
  font-size: 1.5rem;
  color: #FCFCFC;
  background: #13344A;
  border-radius: 60px;
  text-align: center;
}
@media only screen and (max-width: 720px) {
  .about_2 .title-area h2 {
    margin-bottom: 20px;
    padding: 1em 0;
    font-size: 1.25rem;
  }
}
.about_2 .title-area h2 .yellow {
  font-size: 2.125rem;
}
@media only screen and (max-width: 720px) {
  .about_2 .title-area h2 .yellow {
    font-size: 1.5rem;
  }
}
.about_2 .title-area img {
  width: 12%;
  position: absolute;
  top: -30px;
  right: 0;
}
@media only screen and (max-width: 720px) {
  .about_2 .title-area img {
    width: 30%;
    position: static;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}
.about_2 .text-area {
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width: 720px) {
  .about_2 .text-area {
    font-size: 1.25rem;
  }
}
.about_2 .text-area .decoration {
  background: linear-gradient(transparent 50%, #F6E159 0%);
  line-height: 1.3em;
  font-size: 1.875rem;
}
@media only screen and (max-width: 720px) {
  .about_2 .text-area .decoration {
    font-size: 1.375rem;
  }
}
.about_2 .figure-area {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}
@media only screen and (max-width: 720px) {
  .about_2 .figure-area {
    flex-direction: column;
    padding-bottom: 50px;
  }
}
.about_2 .figure-area__left, .about_2 .figure-area__right {
  width: 49%;
  background: #FCFCFC;
  border-radius: 10px;
  border: 8px solid #BBD9E0;
}
@media only screen and (max-width: 720px) {
  .about_2 .figure-area__left, .about_2 .figure-area__right {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about_2 .figure-area__left h3, .about_2 .figure-area__right h3 {
  padding: 6% 2%;
  background: #BBD9E0;
  text-align: center;
  line-height: 2;
  font-size: 1.25rem;
  font-weight: 500;
}
@media only screen and (max-width: 720px) {
  .about_2 .figure-area__left h3, .about_2 .figure-area__right h3 {
    font-size: 1.25rem;
  }
}
.about_2 .figure-area__left h3 .decoration, .about_2 .figure-area__right h3 .decoration {
  padding-bottom: 0.02em;
  border-bottom: 5px solid #F6E159;
  padding-bottom: 0;
}
.about_2 .figure-area__left p, .about_2 .figure-area__right p {
  background: #BBD9E0;
  transform: translateY(-30px);
  font-size: 12px;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 720px) {
  .about_2 .figure-area__left p, .about_2 .figure-area__right p {
    transform: translateY(0);
  }
}
.about_2 .figure-area__left .list, .about_2 .figure-area__right .list {
  padding: 10%;
}
.about_2 .figure-area__left .list__item, .about_2 .figure-area__right .list__item {
  padding-bottom: 0.5em;
  list-style: disc;
  list-style-position: inside;
  font-size: 1.25rem;
  z-index: 99;
}
@media only screen and (max-width: 720px) {
  .about_2 .figure-area__left .list__item, .about_2 .figure-area__right .list__item {
    font-size: 1rem;
  }
}
.about_2 .figure-area__left {
  background: #FCFCFC url(../images/industry_icon.png);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: right 20px bottom 0;
}
.about_2 .figure-area__right {
  background: #FCFCFC url(../images/house_icon.png);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
}
.about_2 .figure-area__right li:first-child {
  list-style: none;
  padding-bottom: 1em;
}

/*about_3:太陽光発電の名義変更は代行手続きが可能！…*/
.about_3 {
  padding-top: 100px;
}
@media only screen and (max-width: 720px) {
  .about_3 {
    padding-top: 50px;
  }
}
.about_3 .group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 720px) {
  .about_3 .group {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.about_3 .group__left {
  width: 16%;
}
@media only screen and (max-width: 720px) {
  .about_3 .group__left {
    width: 30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.about_3 .group__right {
  width: 80%;
  text-align: center;
}
@media only screen and (max-width: 720px) {
  .about_3 .group__right {
    width: 100%;
  }
}
.about_3 .group__right h2 {
  padding: 0.5em 0;
  margin-bottom: 50px;
  font-size: 1.875rem;
  font-weight: 500;
  background: #F6E159;
  border-radius: 50px;
}
@media only screen and (max-width: 720px) {
  .about_3 .group__right h2 {
    padding: 0.8em 0;
    font-size: 1.25rem;
  }
}
.about_3 .group__right h2 .decoration {
  padding-bottom: 0.02em;
  border-bottom: 5px solid #BE5353;
  font-size: 2.125rem;
  font-weight: 700;
}
@media only screen and (max-width: 720px) {
  .about_3 .group__right h2 .decoration {
    font-size: 1.375rem;
  }
}
.about_3 .group__right p {
  font-size: 1.5rem;
}
@media only screen and (max-width: 720px) {
  .about_3 .group__right p {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.about_3 .group__right p .white {
  font-size: 1.875rem;
}
@media only screen and (max-width: 720px) {
  .about_3 .group__right p .white {
    font-size: 1.375rem;
  }
}

/*about_4:こんな方が多く代行をご利用されています…*/
.about_4 {
  background: #BBD9E0;
  padding-top: 100px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 720px) {
  .about_4 {
    padding-top: 50px;
    padding-bottom: 25px;
    position: relative;
    z-index: -1;
  }
}
.about_4 h2 {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 720px) {
  .about_4 h2 {
    margin-bottom: 30px;
    font-size: 1.25rem;
  }
}
.about_4 h2:before, .about_4 h2:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #87C1D3;
  width: 5px;
  height: 1.8em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
@media only screen and (max-width: 720px) {
  .about_4 h2:before, .about_4 h2:after {
    display: none;
  }
}
.about_4 h2:before {
  transform: rotate(-35deg);
}
.about_4 h2:after {
  transform: rotate(35deg);
}

/*about_5*/
.about_5 {
  background: #FCFCFC;
  text-align: center;
  font-size: 1.25rem;
  line-height: 2;
  position: relative;
  z-index: -1;
}
@media only screen and (max-width: 720px) {
  .about_5 {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.about_5 img:first-child {
  margin-bottom: 100px;
}
@media only screen and (max-width: 720px) {
  .about_5 img:first-child {
    margin-bottom: 50px;
  }
}
.about_5 img:last-child {
  width: 15%;
}
@media only screen and (max-width: 720px) {
  .about_5 img:last-child {
    width: 40%;
  }
}
.about_5 .text_1 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 720px) {
  .about_5 .text_1 {
    margin-bottom: 30px;
    text-align: left;
  }
}
.about_5 .text_1 .decoration {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.02em;
  border-bottom: 5px solid #F6E159;
}
@media only screen and (max-width: 720px) {
  .about_5 .text_1 .decoration {
    font-size: 1rem;
  }
}
.about_5 .text_2 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 720px) {
  .about_5 .text_2 {
    margin-bottom: 40px;
    line-height: 2;
    text-align: left;
  }
}
.about_5 .text_2 .decoration:nth-child(1),
.about_5 .text_2 .decoration:nth-child(2) {
  padding: 0.2em 0.4em;
  margin: 0 0.2em;
  background-color: #87C1D3;
}
.about_5 .text_2 .decoration:last-child {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.02em;
  border-bottom: 5px solid #F6E159;
}
@media only screen and (max-width: 720px) {
  .about_5 .text_2 .decoration:last-child {
    font-size: 1rem;
  }
}

/*strength:強み*/
.strength {
  background: #BBD9E0;
  padding-top: 100px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 720px) {
  .strength {
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
    z-index: -1;
  }
}
.strength h2 {
  margin-bottom: 60px;
  font-size: 2rem;
  text-align: center;
  position: relative;
}
.strength h2:before, .strength h2:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.strength h2:before {
  top: -10px;
  right: 20%;
  border-top: 0.5em solid #F6E159;
  border-right: 0.5em solid #F6E159;
  border-bottom: 0.5em solid rgba(0, 0, 0, 0);
  border-left: 0.5em solid rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 720px) {
  .strength h2:before {
    right: -10px;
    border-top: 0.3em solid #F6E159;
    border-right: 0.3em solid #F6E159;
    border-bottom: 0.3em solid rgba(0, 0, 0, 0);
    border-left: 0.3em solid rgba(0, 0, 0, 0);
  }
}
.strength h2:after {
  bottom: -10px;
  left: 20%;
  border-top: 0.5em solid rgba(0, 0, 0, 0);
  border-right: 0.5em solid rgba(0, 0, 0, 0);
  border-bottom: 0.5em solid #F6E159;
  border-left: 0.5em solid #F6E159;
}
@media only screen and (max-width: 720px) {
  .strength h2:after {
    left: -10px;
    border-top: 0.3em solid rgba(0, 0, 0, 0);
    border-right: 0.3em solid rgba(0, 0, 0, 0);
    border-bottom: 0.3em solid #F6E159;
    border-left: 0.3em solid #F6E159;
  }
}
@media only screen and (max-width: 720px) {
  .strength h2 {
    margin-bottom: 40px;
    font-size: 1.25rem;
  }
}
.strength .group__1, .strength .group__2, .strength .group__3 {
  position: relative;
  display: block;
  background: #FCFCFC;
  border: 8px solid #87C1D3;
  border-radius: 20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 720px) {
  .strength .group__1, .strength .group__2, .strength .group__3 {
    border: 4px solid #87C1D3;
    border-radius: 10px;
  }
}
.strength .group .ribbon {
  display: inline-block;
  position: absolute;
  top: -0.3em;
  left: 8%;
  padding: 10px 0;
  z-index: 2;
  width: 1.6em;
  text-align: center;
  font-size: 2.125rem;
  color: #FCFCFC;
  background: #13344A;
  border-radius: 5px 5px 0 0;
}
@media only screen and (max-width: 720px) {
  .strength .group .ribbon {
    left: 4%;
    padding: 5px 0;
    font-size: 1.375rem;
  }
}
.strength .group .ribbon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 0.8em solid #13344A;
  border-right: 0.8em solid #13344A;
  border-bottom: 10px solid transparent;
}
.strength .group .title-area {
  background: #87C1D3;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 20%;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FCFCFC;
}
@media only screen and (max-width: 720px) {
  .strength .group .title-area {
    padding-top: 0.2em;
    padding-bottom: 0.4em;
    font-size: 1.25rem;
  }
}
.strength .group .text-area {
  padding: 4% 5% 3%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1rem;
}
@media only screen and (max-width: 720px) {
  .strength .group .text-area {
    flex-direction: column;
    margin-top: 20px;
    font-size: 1.25rem;
  }
}
.strength .group .text-area img {
  width: 30%;
  height: 130px;
  object-fit: cover;
}
@media only screen and (max-width: 720px) {
  .strength .group .text-area img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.strength .group .text-area p {
  width: 67%;
}
@media only screen and (max-width: 720px) {
  .strength .group .text-area p {
    width: 100%;
    font-size: 1rem;
  }
}

/*review:お客様の声*/
.review {
  background: #87C1D3;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 720px) {
  .review {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: -1;
  }
}
.review h2 {
  font-size: 1.5rem;
  text-align: center;
  color: #FCFCFC;
  margin-bottom: 120px;
  position: relative;
}
.review h2:before, .review h2:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.review h2:before {
  top: -10px;
  right: 20%;
  border-top: 0.5em solid #F6E159;
  border-right: 0.5em solid #F6E159;
  border-bottom: 0.5em solid rgba(0, 0, 0, 0);
  border-left: 0.5em solid rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 720px) {
  .review h2:before {
    right: 30px;
    border-top: 0.3em solid #F6E159;
    border-right: 0.3em solid #F6E159;
    border-bottom: 0.3em solid rgba(0, 0, 0, 0);
    border-left: 0.3em solid rgba(0, 0, 0, 0);
  }
}
.review h2:after {
  bottom: -10px;
  left: 20%;
  border-top: 0.5em solid rgba(0, 0, 0, 0);
  border-right: 0.5em solid rgba(0, 0, 0, 0);
  border-bottom: 0.5em solid #F6E159;
  border-left: 0.5em solid #F6E159;
}
@media only screen and (max-width: 720px) {
  .review h2:after {
    left: 30px;
    border-top: 0.3em solid rgba(0, 0, 0, 0);
    border-right: 0.3em solid rgba(0, 0, 0, 0);
    border-bottom: 0.3em solid #F6E159;
    border-left: 0.3em solid #F6E159;
  }
}
@media only screen and (max-width: 720px) {
  .review h2 {
    font-size: 1.25rem;
  }
}
.review h2 .decoration {
  font-size: 2rem;
}
@media only screen and (max-width: 720px) {
  .review h2 .decoration {
    font-size: 1.375rem;
  }
}
.review .cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media only screen and (max-width: 720px) {
  .review .cards {
    flex-direction: column;
  }
}
.review .cards .card__1,
.review .cards .card__2,
.review .cards .card__3 {
  width: 32%;
  text-align: center;
  background: #FCFCFC;
  border-radius: 10px;
  padding: 10% 2% 4%;
  position: relative;
}
@media only screen and (max-width: 720px) {
  .review .cards .card__1,
.review .cards .card__2,
.review .cards .card__3 {
    width: 100%;
    margin-bottom: 100px;
    padding: 80px 5% 4%;
  }
}
.review .cards .card__1 h3,
.review .cards .card__2 h3,
.review .cards .card__3 h3 {
  margin-bottom: 0.5em;
  font-size: 1.25rem;
}
.review .cards .card__1 .line,
.review .cards .card__2 .line,
.review .cards .card__3 .line {
  width: 100%;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 720px) {
  .review .cards .card__1 .line,
.review .cards .card__2 .line,
.review .cards .card__3 .line {
    width: 90%;
  }
}
.review .cards .card__1 p,
.review .cards .card__2 p,
.review .cards .card__3 p {
  text-align: left;
  font-size: 1rem;
}
.review .cards .card__1 .poa,
.review .cards .card__2 .poa,
.review .cards .card__3 .poa {
  width: 40%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 720px) {
  .review .cards .card__1 .poa,
.review .cards .card__2 .poa,
.review .cards .card__3 .poa {
    width: 100px;
  }
}

/*service:サービスご利用の流れ*/
.service {
  background: #FCFCFC;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 720px) {
  .service {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: -1;
  }
}
.service h2 {
  margin-bottom: 60px;
  font-size: 2rem;
  text-align: center;
  position: relative;
}
.service h2:before, .service h2:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.service h2:before {
  top: -10px;
  right: 20%;
  border-top: 0.5em solid #F6E159;
  border-right: 0.5em solid #F6E159;
  border-bottom: 0.5em solid rgba(0, 0, 0, 0);
  border-left: 0.5em solid rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 720px) {
  .service h2:before {
    right: -10px;
    border-top: 0.3em solid #F6E159;
    border-right: 0.3em solid #F6E159;
    border-bottom: 0.3em solid rgba(0, 0, 0, 0);
    border-left: 0.3em solid rgba(0, 0, 0, 0);
  }
}
.service h2:after {
  bottom: -10px;
  left: 20%;
  border-top: 0.5em solid rgba(0, 0, 0, 0);
  border-right: 0.5em solid rgba(0, 0, 0, 0);
  border-bottom: 0.5em solid #F6E159;
  border-left: 0.5em solid #F6E159;
}
@media only screen and (max-width: 720px) {
  .service h2:after {
    left: -10px;
    border-top: 0.3em solid rgba(0, 0, 0, 0);
    border-right: 0.3em solid rgba(0, 0, 0, 0);
    border-bottom: 0.3em solid #F6E159;
    border-left: 0.3em solid #F6E159;
  }
}
@media only screen and (max-width: 720px) {
  .service h2 {
    margin-bottom: 40px;
    font-size: 1.25rem;
  }
}
.service .chart__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 720px) {
  .service .chart__group {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.service .chart__group--left {
  width: 100px;
  height: 100px;
  background: #87C1D3;
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
}
@media only screen and (max-width: 720px) {
  .service .chart__group--left {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.service .chart__group--left:after {
  content: "";
  position: absolute;
  background-color: #87C1D3;
  width: 22px;
  height: 5px;
  top: 50%;
  left: 100%;
  z-index: 1;
}
@media only screen and (max-width: 720px) {
  .service .chart__group--left:after {
    width: 5px;
    height: 12px;
    top: 100%;
    left: 50%;
  }
}
.service .chart__group--left .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FCFCFC;
  line-height: 1.2;
}
.service .chart__group--left .number p:last-child {
  font-size: 1.25rem;
  font-weight: 700;
}
.service .chart__group--right {
  width: 90%;
  padding: 3%;
  border: 3px solid #87C1D3;
  border-radius: 5px;
}
@media only screen and (max-width: 720px) {
  .service .chart__group--right {
    text-align: center;
  }
}
.service .chart__group--right h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/*message:メッセージ*/
.message {
  background: url(../images/bg_img_2.png) #FCFCFC;
  background-size: cover;
  background-position: 50%;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 720px) {
  .message {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: -1;
  }
}
.message h2 {
  margin-bottom: 60px;
  font-size: 2rem;
  text-align: center;
  position: relative;
}
.message h2:before, .message h2:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.message h2:before {
  top: -10px;
  right: 20%;
  border-top: 0.5em solid #F6E159;
  border-right: 0.5em solid #F6E159;
  border-bottom: 0.5em solid rgba(0, 0, 0, 0);
  border-left: 0.5em solid rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 720px) {
  .message h2:before {
    right: -10px;
    border-top: 0.3em solid #F6E159;
    border-right: 0.3em solid #F6E159;
    border-bottom: 0.3em solid rgba(0, 0, 0, 0);
    border-left: 0.3em solid rgba(0, 0, 0, 0);
  }
}
.message h2:after {
  bottom: -10px;
  left: 20%;
  border-top: 0.5em solid rgba(0, 0, 0, 0);
  border-right: 0.5em solid rgba(0, 0, 0, 0);
  border-bottom: 0.5em solid #F6E159;
  border-left: 0.5em solid #F6E159;
}
@media only screen and (max-width: 720px) {
  .message h2:after {
    left: -10px;
    border-top: 0.3em solid rgba(0, 0, 0, 0);
    border-right: 0.3em solid rgba(0, 0, 0, 0);
    border-bottom: 0.3em solid #F6E159;
    border-left: 0.3em solid #F6E159;
  }
}
@media only screen and (max-width: 720px) {
  .message h2 {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}
.message .frame {
  padding: 5%;
  background: #FCFCFC;
  text-align: center;
  border-radius: 10px;
}
@media only screen and (max-width: 720px) {
  .message .frame {
    padding: 8%;
    text-align: left;
  }
}
.message .frame p:first-child {
  margin-bottom: 30px;
}

/*qa:よくあるご質問*/
.qa {
  background: #BBD9E0;
  padding-bottom: 100px;
  padding-top: 100px;
}
@media only screen and (max-width: 720px) {
  .qa {
    padding-bottom: 60px;
    padding-top: 60px;
    position: relative;
    z-index: -1;
  }
}
.qa h2 {
  margin-bottom: 60px;
  font-size: 2rem;
  text-align: center;
  position: relative;
}
.qa h2:before, .qa h2:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.qa h2:before {
  top: -10px;
  right: 20%;
  border-top: 0.5em solid #F6E159;
  border-right: 0.5em solid #F6E159;
  border-bottom: 0.5em solid rgba(0, 0, 0, 0);
  border-left: 0.5em solid rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 720px) {
  .qa h2:before {
    right: -10px;
    border-top: 0.3em solid #F6E159;
    border-right: 0.3em solid #F6E159;
    border-bottom: 0.3em solid rgba(0, 0, 0, 0);
    border-left: 0.3em solid rgba(0, 0, 0, 0);
  }
}
.qa h2:after {
  bottom: -10px;
  left: 20%;
  border-top: 0.5em solid rgba(0, 0, 0, 0);
  border-right: 0.5em solid rgba(0, 0, 0, 0);
  border-bottom: 0.5em solid #F6E159;
  border-left: 0.5em solid #F6E159;
}
@media only screen and (max-width: 720px) {
  .qa h2:after {
    left: -10px;
    border-top: 0.3em solid rgba(0, 0, 0, 0);
    border-right: 0.3em solid rgba(0, 0, 0, 0);
    border-bottom: 0.3em solid #F6E159;
    border-left: 0.3em solid #F6E159;
  }
}
@media only screen and (max-width: 720px) {
  .qa h2 {
    margin-bottom: 40px;
    font-size: 1.25rem;
  }
}
.qa .qa-group {
  background: #FCFCFC;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 4%;
}
@media only screen and (max-width: 720px) {
  .qa .qa-group {
    padding: 6%;
    margin-bottom: 40px;
  }
}
.qa .qa-group:last-child {
  margin-bottom: 0;
}
.qa .qa-group .q {
  display: flex;
  margin-bottom: 20px;
}
.qa .qa-group .q p {
  background-color: #87C1D3;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #FCFCFC;
  margin-right: 20px;
}
.qa .qa-group .a {
  background: #BBD9E0;
  padding: 3%;
  border-radius: 10px;
}

/*qa:お問い合わせ*/
.contact {
  background: #87C1D3;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact h2 {
  margin-bottom: 60px;
  font-size: 2rem;
  text-align: center;
  position: relative;
}
.contact h2:before, .contact h2:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.contact h2:before {
  top: -10px;
  right: 20%;
  border-top: 0.5em solid #F6E159;
  border-right: 0.5em solid #F6E159;
  border-bottom: 0.5em solid rgba(0, 0, 0, 0);
  border-left: 0.5em solid rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 720px) {
  .contact h2:before {
    right: -10px;
    border-top: 0.3em solid #F6E159;
    border-right: 0.3em solid #F6E159;
    border-bottom: 0.3em solid rgba(0, 0, 0, 0);
    border-left: 0.3em solid rgba(0, 0, 0, 0);
  }
}
.contact h2:after {
  bottom: -10px;
  left: 20%;
  border-top: 0.5em solid rgba(0, 0, 0, 0);
  border-right: 0.5em solid rgba(0, 0, 0, 0);
  border-bottom: 0.5em solid #F6E159;
  border-left: 0.5em solid #F6E159;
}
@media only screen and (max-width: 720px) {
  .contact h2:after {
    left: -10px;
    border-top: 0.3em solid rgba(0, 0, 0, 0);
    border-right: 0.3em solid rgba(0, 0, 0, 0);
    border-bottom: 0.3em solid #F6E159;
    border-left: 0.3em solid #F6E159;
  }
}
@media only screen and (max-width: 720px) {
  .contact h2 {
    font-size: 1.25rem;
  }
}
.contact .form {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}
@media only screen and (max-width: 720px) {
  .contact .form {
    color: 1rem;
  }
}
.contact .form__item {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 720px) {
  .contact .form__item {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 720px) {
  .contact .form__item label {
    font-size: 1rem;
  }
}
.contact .form__item--label {
  margin-bottom: 0.2em;
  display: block;
}
@media only screen and (max-width: 720px) {
  .contact .form__item--label {
    font-size: 1rem;
  }
}
.contact .form__item--input {
  border: 3px solid #87C1D3;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 2em;
  background: #FCFCFC;
  font-size: 1.25rem;
  max-width: 500px;
}
@media only screen and (max-width: 720px) {
  .contact .form__item--input {
    font-size: 1rem;
    height: 3em;
  }
}
.contact .form__item--textarea {
  border: 3px solid #87C1D3;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  background: #FCFCFC;
  height: 200px;
  font-size: 1.25rem;
}
@media only screen and (max-width: 720px) {
  .contact .form__item--textarea {
    font-size: 1rem;
  }
}
.contact .form__btn {
  border-radius: 40px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  width: 280px;
  display: block;
  background: #FCFCFC;
  color: #13344A;
  font-size: 1.25rem;
  font-weight: 700;
  border: 3px solid #F6E159;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 720px) {
  .contact .form__btn {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
}
.contact .form__btn:hover {
  background-color: #F6E159;
}

/*--------------------
Footer
--------------------*/
.copy-right {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */


/*--------------------
太陽光パネルに関する手続きについて
--------------------*/
#topmessage{
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 0;
}
#topmessage h2:before{
  right: 10%;
}
#topmessage h2::after{
  left: 10%;
}
#topmessage .topmes_flex{
  display: flex;
  gap: 5%;
  align-items: center;
  align-content: center;
  margin-bottom: 5%;
}
#topmessage .topmes_flex .topmes_flex_img{
  width: 25%;
}
#topmessage .topmes_flex .balloon{
  width: 70%;
  text-align: left;
}
#topmessage .topmes_flex .balloon p{
}
.balloon {
  position: relative;
  background-color: #ffffff; /* 吹き出しの背景色 */
  border: 8px solid #94BFD1;  /* 吹き出しの枠線 */
  border-radius: 25px;      /* 角の丸み */
  padding: 25px;              /* 内側の余白 */
  margin-left: 20px;          /* 左側にしっぽの分のスペースを確保 */
  width: fit-content;         /* 横幅はコンテンツの量に合わせる */
  max-width: 90%;             /* 最大の横幅 */
}

/* しっぽ（外側の枠線部分） */
.balloon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -58px; /* しっぽの位置 */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 53px 48px 0;
  border-color: transparent #94BFD1 transparent transparent; /* 右側だけ枠線の色を指定 */
}

/* しっぽ（内側の塗りつぶし部分） */
.balloon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -47px; /* しっぽの位置（枠線より内側） */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 42px 47px 42px 0;
  border-color: transparent #ffffff transparent transparent; /* 右側だけ背景色を指定 */
}
@media only screen and (max-width: 720px) {
  #topmessage .topmes_flex{
    margin-bottom: 15%;
  }
  #topmessage .topmes_flex{
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  #topmessage .topmes_flex .topmes_flex_img{
    width: 60%;
    margin-left: 12%;
    margin-bottom: -15%;
  }
  #topmessage .topmes_flex .balloon{
    width: 100%;
  }.balloon {
    margin-left: 0; /* 左の余白をリセット */
    margin-top: 20px;  /* 上にしっぽの分のスペースを確保 */
  }

  /* しっぽ（上側・外枠） */
  .balloon::before {
    top: -48px; /* 上に配置 */
    left: 50%;
    transform: translateX(-50%); /* 左右中央寄せ */
    border-width: 0 35px 40px 35px; /* 下向きの三角形に */
    border-color: transparent transparent #94BFD1 transparent; /* 下側だけ色付け */
  }

  /* しっぽ（上側・内側） */
  .balloon::after {
    top: -37px; /* 上に配置（外枠より内側） */
    left: 50%;
    transform: translateX(-50%); /* 左右中央寄せ */
    border-width: 0 32px 37px 32px; /* 下向きの三角形に */
    border-color: transparent transparent #ffffff transparent; /* 下側だけ色付け */
  }
}
@media only screen and (max-width: 550px) {
  #topmessage .topmes_flex .topmes_flex_img{
    width: 60%;
    margin-left: 20%;
    margin-bottom: -30%;
  }
}

.pc{
  display: block;
}
.sp{
  display: none;
}
@media only screen and (max-width: 550px) {
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}

.strength .group .title-area h3{
  align-items: center;
  align-self: center;
  align-content: center;
}
.strength .group .title-area h3 span{
  font-size: 0.9rem;
  margin-left: 1rem;
}
@media only screen and (max-width: 550px) {
  .strength .group .title-area h3 span{
    font-size: 0.8rem;
    margin-left: 0rem;
  }
}

/* サービスについて */
#aboutservice .aboutservice_flex{
  display: flex;
  gap: 5%;
  margin-bottom: 5%;
  text-align: center;
}
#aboutservice .aboutservice_flex .aboutservice_cnt{
  width: 30%;
  text-align: center;
  background-color: #fff;
  border: 10px solid #BBD9E0;
  padding: 2rem 0 0;
  border-radius: 15px;
  align-items: flex-end;
  align-content: flex-end;
}
#aboutservice .aboutservice_flex .aboutservice_cnt img{
  margin-bottom: 2rem;
  width: auto;
  height: 8rem;
  object-fit: contain;
}
#aboutservice .aboutservice_flex .aboutservice_cnt div{
  background-color: #BBD9E0;
  padding: 0.5rem 1rem 0.2rem;
}
#aboutservice .aboutservice_flex .aboutservice_cnt div p{
  font-size: 0.7rem;
}
.centertxt{
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 700px) {
  #aboutservice{
    padding-top: 25%;
  }
  #aboutservice.review h2{
    margin-bottom:15%;
  }
  #aboutservice .aboutservice_flex{
    flex-wrap: wrap;
    margin-top: ;
  }
  #aboutservice .aboutservice_flex .aboutservice_cnt{
    width: 100%;
    margin-bottom: 2rem;
  }
}

/* 蓄電池の設置(FIT終了の方) */
.setting{
  background-color: #fff;
  margin-top: 10%;
  border-radius: 25px;
  padding: 8% 8%;
  text-align: center;
}
.setting h3{
  font-size: 1.6rem;
  background: linear-gradient(transparent 70%, #F5E159 60%);
  display: inline-block;
  margin-bottom: 5%;
}
.setting .setting_mes{
  padding: 5% 0;
  background: url(../images/settingbk.png) no-repeat center 100% ;
  background-size: contain;
}
.setting .setting_mes p{
  line-height: 2rem;
}
@media only screen and (max-width: 700px) {
  .setting .setting_mes p{
    text-align: left;
  }
}

.fitsec{
  margin-top: 10%;
}
#aboutservice h4{
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 2%;
}
#aboutservice h4 span{
  color: #F5E159;
  margin-right: 0.5rem;
}
.fitsec table{
  width: 100%;
  border-collapse: separate; /* これを追加 */
  border-spacing: 0; /* セル間の隙間をなくす、または調整 */
}
.fitsec table thead{
  background-color: #BBD9E0;
}
.fitsec table thead tr{
}
.fitsec table thead tr th{
  border-right: 1px solid #000;
  border-bottom: #707070 1px solid;
  padding: 0.5rem;
  border-top: 1px solid #000;
}
.fitsec table thead tr th:first-child{
  border-radius:10px 0 0 0 ;
  border-left: 1px solid #000;
}
.fitsec table thead tr th:last-child{
  border-radius:0 10px 0 0 ;
}
.fitsec table tbody{
}
.fitsec table tbody tr td{
  border-right: 1px solid #000;
  padding: 0.5rem;
  align-items: center;
  align-content: center;
  border-bottom: #707070 1px solid;
}
.fitsec table tbody tr td:first-child{
  border-radius:0 0 10px 0;
  border-radius:0 0 0 10px;
  border-left: 1px solid #000;
}
.fitsec table tbody tr td:last-child{
  border-radius:0 0 10px 0 ;
}

@media only screen and (max-width: 700px) {
  .fitsec table tbody tr td:first-child{
    border-radius:0 0 0 0;
  }
  .fitsec table tbody tr td:last-child{
    border-radius:0 0 0 0 ;
  }
  .fitsec table tbody tr:last-child td:first-child{
    border-radius:0 0 0 10px;
  }
  .fitsec table tbody tr:last-child td:last-child{
    border-radius:0 0 10px 0;
  }
  .fitsec table tbody tr td{
    border-bottom: 1px solid #000;
  }
  .fitsec table tbody,
  .fitsec table thead,
  .fitsec table tbody tr,
  .fitsec table thead tr
  {
    width: 100%;
    margin: 0;
  }
  .fitsec table thead tr td:first-child{
    width: 40%;
  }
  .fitsec table thead tr td:last-child{
    border-bottom: 1px solid #000;
    width: 60%;
  }
  .fitsec table tbody tr td:first-child{
    width: 40%;
  }
  .fitsec table tbody tr td:last-child{
    border-bottom: 1px solid #000;
    width: 60%;
  }
}

.merit_flex{
  margin-top: 10%;
}
.aboutservice_cnt{
  position: relative;
}
.merit_flex .aboutservice_cnt .ribbon {
  display: inline-block;
  position: absolute;
  top: -0.3em;
  left: 8%;
  padding: 10px 0;
  z-index: 2;
  width: 1.6em;
  text-align: center;
  font-size: 2.125rem;
  color: #FCFCFC;
  background: #13344A;
  border-radius: 5px 5px 0 0;
}
@media only screen and (max-width: 720px) {
  .merit_flex .aboutservice_cnt .ribbon {
    left: 4%;
    padding: 5px 0;
    font-size: 1.375rem;
  }
}
.merit_flex .aboutservice_cnt .ribbon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 0.8em solid #13344A;
  border-right: 0.8em solid #13344A;
  border-bottom: 10px solid transparent;
}

.hojokin{
  margin-top: 10%;
}
.hojokin div{
  border: #88C1D3 5px solid;
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
}
.lastmes{
  text-align: left;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
}