@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

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, main, 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;
}

del {
  text-decoration: line-through;
}

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

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

input,
textarea,
select {
  margin: 0;
  vertical-align: middle;
}

input {
  overflow: visible;
}

select {
  text-transform: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button {
  overflow: visible;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  min-width: 320px;
  height: 100%;
  font-size: 62.5%;
  /*10px*/
}

body {
  width: 100%;
  height: 100%;
  color: #2c2626;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

main {
  height: 100%;
}

ol,
ul {
  list-style: none;
}

hr {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

button {
  width: 100%;
  font-size: 16px;
  text-transform: none;
  margin: 0;
  border: none;
  cursor: pointer;
}

a {
  color: #2c2626;
  text-decoration: none;
  transition: ease 0.2s;
}

/* base - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 559px) {
  body {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  
}
/*-----------------------------------------------------

 wrapper

-----------------------------------------------------*/
.wrapper-all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 130px;
}

/*-----------------------------------------------------

 inner

-----------------------------------------------------*/
.inner {
  width: 100%;
  height: 100%;
  padding: 0 80px;
}

/*
 inner - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 1299px) {
  .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 559px) {
  .inner {
    padding: 0 20px;
  }
}
/*-----------------------------------------------------

 header

-----------------------------------------------------*/
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 130px;
  padding: 0 30px;
  border-top: solid 1px #f4f4f4;
  background: #fff;
  position: fixed;
  left: 0;
  /*bottom: 0;*/
  top:0;
  z-index: 999;
  background-color: rgba(255,255,255,0.7);
}

.global-contact {
  display: flex;
  align-items: center;
  /*flex-wrap: wrap;*/
  background: #fff;
  position: relative;
  z-index: 999;
}

.header-logo {
  display: block;
  width: 100px;
  height: 61px;
  background: url(../images/logo_akiyazero.png) no-repeat 0 0;
  background-size: contain;
  transition: 0.1s;
}
.header-logo:hover {
  opacity: 0.75;
}

.header-contact {
  line-height: 1.6;
  margin-left: 15px;
}
.header-contact .tel-title {
  font-size: 1.3rem;
  font-weight: 700;
}
.header-contact .tel-time {
  font-size: 1.1rem;
  margin-top: 3px;
}
.header-contact .tel-tap .freedial-logo {
  width: 40px;
  height: 22px;
  margin-top: 4px;
}
.header-contact .tel-tap .tel-number {
  font-size: 2.4rem;
}

.header-nav-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-nav-button {
  display: none;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.header-nav-button span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #2e4052;
  transition: all .4s;
  position: absolute;
  left: 14px;
}
.header-nav-button span:nth-of-type(1) {
  top: 22px;
}
.header-nav-button span:nth-of-type(2) {
  top: 28px;
}

.header-nav-button.active span:nth-of-type(1) {
  top: 22px;
  left: 13px;
  transform: translateY(2px) rotate(-45deg);
}
.header-nav-button.active span:nth-of-type(2) {
  top: 28px;
  left: 13px;
  transform: translateY(-4px) rotate(45deg);
}

.header-nav-button-inner {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 999;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.header-menu-item {
  font-weight: 700;
  margin-right: 30px;
}

.header-menu-item a {
  display: inline-block;
  vertical-align: middle;
  padding: 2px 0;
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.header-menu-item a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #f7790b;
  height: 3px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.header-menu-item a:hover::before, .header-menu-item a:focus::before, .header-menu-item a:active::before {
  left: 0;
  right: 0;
}

.header-sns {
  display: flex;
}

.header-sns-item {
  display: block;
}
.header-sns-item div {
  transition: 0.1s;
}
.header-sns-item div:hover {
  opacity: 0.75;
}

.header-sns-item + .header-sns-item {
  margin-left: 10px;
}

.twetter-logo {
  width: 35px;
  height: 35px;
  background: url(../images/logo_twitter.png) no-repeat 0 0;
  background-size: contain;
}

.instagram-logo {
  width: 35px;
  height: 35px;
  background: url(../images/logo_instagram.png) no-repeat 0 0;
  background-size: contain;
}

/* Header - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 648px) {
  .header {
    padding: 0;
  }

  .global-contact {
    width: calc(100% - 99px);
    height: 99px;
    padding: 0 30px;
    background: #fff;
  }

  .header-nav {
    width: 100%;
    height: 170px;
    position: fixed;
    left: 0;
    bottom: -120%;
    z-index: 998;
    background: #fff;
    transition: all 0.25s;
  }
  .header-nav.panelactive {
    bottom: 0;
  }

  .header-nav-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 99px;
    height: 99px;
  }

  .header-nav-inner {
    width: calc(100% - 60px);
    position: absolute;
    top: 0;
    right: 30px;
  }

  .header-menu {
    width: 100%;
  }
}
@media screen and (max-width: 648px) {
  .header {
    height: auto;
    border-top: none;
    background-color: inherit;
  }

  .global-contact {
    width: 100%;
    height: auto;
    justify-content: center;
    padding: 10px;
    border-top: solid 1px #f4f4f4;
    background: #fff;
  }

  .header-logo {
    width: 28%;
    max-width: 100px;
  }

  .header-nav-button {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    right: 10px;
  }

  .header-nav {
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: -120%;
    bottom: inherit;
    transition: all 0.6s;
  }
  .header-nav.panelactive {
    left: 0;
    bottom: inherit;
  }

  .header-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    top: 80px;
    left: 40%;
    right: inherit;
  }

  .header-menu {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .header-menu-item {
    margin: 10px 0;
  }
  .header-menu-item::before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 1px;
    margin-right: 10px;
    background: #2c2626;
    vertical-align: middle;
  }
}
@media screen and (max-width: 559px) {
  .global-contact {
    padding: 10px;
  }

  .header-contact .tel-tap {
    flex-direction: row;
    padding: 0;
  }

  .header-nav-inner {
    left: 30%;
  }

  .header-menu-item {
    font-size: 1.6rem;
  }
}
/*-----------------------------------------------------

 main

-----------------------------------------------------*/
.main-header-area {
  width: 100%;
  height: 260px;
  margin-bottom: 60px;
  position: relative;
}
.main-header-area::after {
  display: block;
  content: "";
  width: 260px;
  height: 260px;
  background: #e6f4e0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.main-header-area .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.main-header {
  padding-right: 80px;
}

.main-copy {
  color: #2e4052;
  font-weight: 500;
}

.main-nav {
  display: none;
  width: 100%;
  margin: 40px 0;
}

.main-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.main-menu-item {
  width: calc(100% / 4);
  text-align: center;
  position: relative;
  transition: 0.1s;
}
.main-menu-item:hover {
  opacity: 0.75;
}
.main-menu-item::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 20px;
  border-bottom: solid 3px #2c2626;
  border-right: solid 3px #2c2626;
  border-radius: 1px;
  vertical-align: middle;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 8%;
}
.main-menu-item:last-child a {
  border-right: solid 1px #2c2626;
}
.main-menu-item a {
  display: block;
  height: 100%;
  padding: 15px 10%;
  border-top: solid 1px #2c2626;
  border-bottom: solid 1px #2c2626;
  border-left: solid 1px #2c2626;
}

.main-footer {
  padding: 60px 0;
}

/* main - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  .main-copy {
    margin-top: -40px;
  }
}
@media screen and (max-width: 559px) {
  .main-header-area {
    height: 220px;
    margin-bottom: 40px;
  }
  .main-header-area::after {
    width: 220px;
    height: 220px;
  }

  .main-header {
    padding-right: 0;
  }

  .main-nav {
    display: block;
    margin: 20px 0 40px;
  }

  .main-menu {
    flex-wrap: wrap;
  }

  .main-menu-item {
    width: 100%;
  }
  .main-menu-item a {
    padding: 10px 0;
    border-right: solid 1px #2c2626;
    border-bottom: none;
  }
  .main-menu-item:last-child a {
    border-bottom: solid 1px #2c2626;
  }

  .main-footer {
    padding: 30px 0;
  }
}
/*-----------------------------------------------------

 article

-----------------------------------------------------*/
.article {
  padding-top: 80px;
}
.article:first-of-type {
  padding-top: 0;
}

.article + .article {
  padding-bottom: 80px;
}
.article + .article:last-of-type {
  padding-bottom: 0;
}

.article-header-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.article-header {
  margin-bottom: 40px;
}

/*
 article - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  .article {
    padding-top: 60px;
  }

  .article-inner {
    padding: 0 40px;
  }

  .article + .article {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 559px) {
  .article {
    padding-top: 40px;
  }

  .article + .article {
    padding-bottom: 40px;
  }

  .article-header {
    margin-bottom: 20px;
  }
}
/*-----------------------------------------------------

 section

-----------------------------------------------------*/
.section {
  padding: 60px 0;
}

.article-header + .section {
  padding-top: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-copy {
  padding: 20px 0 15px;
}

/* section - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  .section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 559px) {
  .section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 15px;
  }
}
/*-----------------------------------------------------

 footer

-----------------------------------------------------*/
.footer {
  /*padding: 50px 0 140px;*/
  padding: 50px 0 10px;
  margin-top: auto;
  border-top: solid 1px #dedede;
}

.footer-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.footer-logo {
  width: 70%;
  max-width: 240px;
  height: 40px;
  margin-bottom: 20px;
  background: url(../images/logo_sawakenkou.png) no-repeat 0 0;
  background-size: contain;
}

.footer-address {
  font-size: 1.4rem;
}

.footer-license {
  font-size: 1.4rem;
}

.footer-license-item {
  display: inline-block;
}
.footer-license-item:first-child {
  margin-right: 2em;
}

.footer-menu {
  display: flex;
  /*flex-direction: column;*/
  margin-left: 20px;
  justify-content: flex-end;
  align-items: center;
}

.footer-menu-item {
  font-size: 1.4rem;
}
.footer-menu-item:first-child {
  margin-right: 30px;
}
.footer-menu-item::before {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #2c2626;
  border-right: solid 1px #2c2626;
  vertical-align: middle;
  margin: 0 8px 2px 0;
  transform: rotate(45deg);
}
.footer-menu-item a {
  transition: 0.1s;
}
.footer-menu-item a:hover {
  opacity: 0.75;
}

.copyright {
  color: #999;
  font-size: 1.2rem;
  margin-top: 20px;
}

/* footer - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  .footer-menu {
    margin-top: 20px;
  }
}
@media screen and (max-width: 559px) {
  .footer {
    padding: 40px 0 110px;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .footer-address {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .footer-license {
    font-size: 1.2rem;
  }

  .footer-license-item {
    display: block;
  }

  .footer-menu-item {
    font-size: 1.3rem;
  }

  .copyright {
    font-size: 1.1rem;
  }
}
/*-----------------------------------------------------

 tel

-----------------------------------------------------*/
.freedial-logo {
  margin: 5px 5px 0 0;
  background: url(../images/logo_freedial.png) no-repeat center;
  background-size: contain;
}

.tel-title {
  font-size: 2rem;
  font-weight: 700;
}

.tel-number {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  margin-right: 5px;
}

.tel-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 10px 0;
}

.tel-time {
  font-weight: 500;
}

.tel-tap {
  display: flex;
  align-items: center;
  /*flex-wrap: wrap;*/
}
.tel-tap .freedial-logo {
  width: 75px;
  height: 43px;
}
.tel-tap .tel-number {
  font-size: 4.8rem;
}

.tel-contact .button-navybox {
  margin-top: 20px;
}

/* tel - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 559px) {
  .tel-title {
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  .tel-price {
    margin-top: 0;
  }

  .tel-tap .freedial-logo {
    width: 50px;
  }
  .tel-tap .tel-number {
    font-size: 7vw;
  }
  .tel-tap .tel-price {
    font-size: 1.6rem;
  }
  .tel-tap .tel-time {
    margin-top: 5px;
  }
}
/*-----------------------------------------------------

 card

-----------------------------------------------------*/
.card-area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.card {
  width: calc(100% / 3);
  padding: 0 40px;
  margin: 30px 0;
}

.card-header {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 25px;
}
.card-header .title-greenline {
  margin-bottom: 20px;
}
.card-header .title-fourth {
  font-weight: 700;
}

/* card - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  .card {
    width: calc(100% / 2);
    padding: 0 4.5%;
  }
}
@media screen and (max-width: 559px) {
  .card {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .card-header {
    margin-bottom: 15px;
  }
}
/*-----------------------------------------------------

 service-step

-----------------------------------------------------*/
.service-step-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 25px 0;
  background: #e6f4e0;
}

.service-step {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(25% - 50px);
  max-width: 260px;
  padding: 20px 15px;
  margin: 15px 15px 15px 30px;
  border: solid 1px #58b531;
  border-radius: 15px;
  background: #fff;
  position: relative;
  opacity: 0;
}
.service-step::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 18px;
  border-color: transparent transparent transparent #58b531;
  position: absolute;
  top: 45%;
  left: calc(100% + 15px);
}
.service-step:first-child {
  margin-left: 15px;
}
.service-step:last-child {
  padding: 0;
}
.service-step:last-child::after {
  display: none;
}

.service-step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}

.service-step-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-step-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 15px 12px;
  position: relative;
}
.service-step-item:first-child {
  border-bottom: dotted 1px #58b531;
}
.service-step-item:first-child::after {
  content: "OR";
  display: inline-block;
  color: #58b531;
  font-size: 1.4rem;
  line-height: 20px;
  padding: 0 10px;
  border: solid 1px #58b531;
  border-radius: 10px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.service-step-item .service-step-title {
  text-align: left;
  margin: 0 20px 0 0;
}
.service-step-item .service-step-icon {
  width: 80px;
  height: 80px;
}

/*
 service-step - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 1299px) {
  .service-step-item .service-step-icon {
    width: 70px;
    height: 70px;
  }

  .service-step-title {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 859px) {
  .service-step-area {
    padding: 60px 5%;
  }

  .service-step {
    width: 100%;
    max-width: inherit;
    flex-direction: row;
    padding-right: 20px;
    margin: 0 0 40px 0;
  }
  .service-step::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 15px 0 15px;
    border-color: #58b531 transparent transparent transparent;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
  }
  .service-step:first-child {
    margin-left: 0;
  }
  .service-step:last-child {
    margin-bottom: 0;
    height: auto;
  }

  .service-step-title {
    width: 70%;
    font-size: 4vw;
    margin-bottom: 0;
  }

  .service-step-item {
    width: 100%;
    height: 50%;
    padding: 15px 40px;
  }
  .service-step-item:first-child {
    padding-bottom: 20px;
  }
  .service-step-item:last-child {
    padding-top: 20px;
  }
  .service-step-item .service-step-title {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 20px 0 0;
  }
  .service-step-item .service-step-icon {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 559px) {
  .service-step-area {
    padding: 25px;
  }

  .service-step {
    padding: 15px 20px 15px 15px;
  }

  .service-step-icon {
    width: 80px;
    height: 80px;
  }

  .service-step-item {
    padding: 15px 20px 15px 15px;
  }
  .service-step-item .service-step-icon {
    width: 80px;
    height: 80px;
  }
}
/*-----------------------------------------------------

 greenbox

-----------------------------------------------------*/
.greenbox-area {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.greenbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 240px;
  height: 240px;
  padding: 20px 15px;
  margin: 15px;
  border: solid 1px #58b531;
  border-radius: 15px;
  background: #fff;
  position: relative;
  opacity: 0;
}

.greenbox-header {
  text-align: center;
  margin-bottom: 15px;
}

.greenbox-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

.greenbox-image {
  margin-top: auto;
}

.greenbox-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}

/* greenbox - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 559px) {
  .greenbox {
    width: calc(50% - 10px);
    height: auto;
    padding: 20px 10px;
    margin: 5px;
  }

  .greenbox-header {
    margin-bottom: 15px;
  }

  .greenbox-title {
    font-size: 3.5vw;
    margin-bottom: 10px;
  }

  .greenbox-icon {
    width: 80px;
    height: 80px;
  }
}
/*-----------------------------------------------------

 plan panel

-----------------------------------------------------*/
.plan-panel-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.plan-panel {
  width: calc(50% - 25px);
  max-width: 560px;
  min-height: 480px;
  margin-right: 4%;
  border: solid 1px #dedede;
  border-radius: 20px;
  position: relative;
  opacity: 0;
  transition: 0.1s;
}
.plan-panel:hover {
  opacity: 0.75;
}
.plan-panel:last-child {
  margin-right: 0;
}
.plan-panel:hover .plan-panel-image img {
  transform: scale(1.1);
}
.plan-panel .button-circle {
  position: absolute;
  top: 210px;
  right: 40px;
}

.plan-panel-image {
  height: 240px;
  border-radius: 19px 19px 0 0;
  overflow: hidden;
}
.plan-panel-image img {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.2s;
  transition-property: transform;
}

.plan-panel-text {
  height: 50%;
  padding: 30px 40px;
}

.plan-panel-header {
  text-align: center;
}
.plan-panel-header .title-second {
  margin: 20px 0;
}

/* .plan-panel - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 559px) {
  .plan-panel {
    width: 100%;
    min-height: auto;
    margin: 0 0 20px 0;
  }
  .plan-panel:last-child {
    margin-bottom: 0;
  }
  .plan-panel .button-circle {
    position: absolute;
    top: 130px;
    right: 20px;
  }

  .plan-panel-image {
    height: 160px;
  }

  .plan-panel-text {
    padding: 20px 20px 30px;
  }

  .plan-panel-header {
    text-align: center;
  }
  .plan-panel-header .title-second {
    margin: 20px 0;
  }
}
/*-----------------------------------------------------

 ban-contact

-----------------------------------------------------*/
.ban-contact {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border: solid 1px #58b531;
}
.ban-contact .tel-contact {
  padding: 30px;
}
.ban-contact .tel-title {
  margin-bottom: 10px;
}
.ban-contact .tel-time {
  margin-top: 10px;
}

.ban-contact-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 23.33%;
  padding: 0 3%;
  background: #58b531;
}
.ban-contact-header .title-second {
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.ban-contact-header .title-alphabet {
  color: #f4f4f4;
}

.ban-contact-image {
  width: 23.33%;
  background: url(../images/pht_calling.webp) no-repeat center top;
  background-size: cover;
}

/* ban-contact - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  .ban-contact {
    flex-wrap: wrap;
  }
  .ban-contact .tel-contact {
    width: 100%;
    text-align: center;
    padding: 15px 15px 25px;
    order: 2;
  }
  .ban-contact .tel-number {
    margin-right: 0;
  }
  .ban-contact .tel-tap {
    justify-content: center;
  }

  .ban-contact-header {
    width: 65%;
    padding: 20px 15px;
    order: 0;
  }
  .ban-contact-header .title-second {
    margin-bottom: 0;
  }
  .ban-contact-header .title-second br {
    display: none;
  }

  .ban-contact-image {
    width: 35%;
    order: 1;
  }
}
@media screen and (max-width: 559px) {
  .ban-contact .tel-number {
    font-size: 9.5vw;
  }
  .ban-contact .tel-title {
    margin-bottom: 0;
  }
  .ban-contact .tel-time {
    margin-top: 0;
  }
}
/*-----------------------------------------------------

 button

-----------------------------------------------------*/
.button-title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.1s;
}
.button-title::after {
  transform: translateZ(0);
  transition-duration: 0.1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.button-title:hover::after, .button-title:focus::after, .button-title:active::after {
  transform: translateX(4px);
}
.button-title::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/icon_arrow_right.png) no-repeat center;
  background-size: contain;
  margin-left: 10px;
}

.button-green {
  display: inline-block;
  color: #fff;
  padding: 16px 30px 17px;
  border-radius: 30px;
  background: #58b531;
  transition: 0.1s;
}
.button-green:hover {
  opacity: 0.75;
}

.button-navybox {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
  background: #2e4052;
  transition: 0.1s;
}
.button-navybox:hover {
  opacity: 0.75;
}

.button-circle {
  width: 60px;
  height: 60px;
  background: url(../images/icon_arrow_circle.png) no-repeat center;
  background-size: contain;
}

.button-confirm {
  display: inline-block;
  width: 100%;
  max-width: 560px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  border-radius: 10px;
  background: #2e4052;
}

.button-cancel {
  display: inline-block;
  width: 100%;
  max-width: 160px;
  font-size: 1.8rem;
  text-align: center;
  padding: 10px 0;
  margin: 0 30px;
  border-radius: 5px;
  background: #dedede;
}

.button-submit {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  padding: 20px 0;
  border-radius: 10px;
  background: #f7790b;
}

.button-download {
  display: inline-block;
  width: 100%;
  max-width: 560px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  border-radius: 10px;
  background: #f7790b;
}
.button-download .button-title::before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 15px;
  background: url(../images/icon_download.png) no-repeat 0 0;
  background-size: contain;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
}
.button-download .button-title::after {
  display: none;
}

/* button - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 559px) {
  .button-confirm,
  .button-cancel,
  .button-submit,
  .button-download {
    font-size: 1.6rem;
  }
}
/*-----------------------------------------------------

 title

-----------------------------------------------------*/
.title-first {
  font-size: 3.2rem;
  font-weight: 700;
}

.title-second {
  font-size: 2.8rem;
  font-weight: 700;
}

.title-third {
  font-size: 2.4rem;
  font-weight: 700;
}

.title-fourth {
  font-size: 2rem;
  font-weight: 500;
}

.title-accent {
  font-size: 1.8rem;
  font-weight: 700;
}

.title-alphabet {
  display: block;
  color: #58b531;
  font-size: 1.6rem;
  font-weight: 700;
}

.title-greenline {
  color: #58b531;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}
.title-greenline::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #58b531;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
}

/*
 title - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 559px) {
  .title-first {
    font-size: 2.4rem;
  }

  .title-second {
    font-size: 2rem;
  }

  .title-third {
    font-size: 1.8rem;
  }

  .title-fourth {
    font-size: 1.8rem;
  }

  .title-accent {
    font-size: 1.6rem;
  }

  .title-alphabet {
    font-size: 1.4rem;
  }

  .title-greenline {
    font-size: 1.2rem;
  }
}
/*-----------------------------------------------------

 text

-----------------------------------------------------*/
.text-green {
  color: #58b531;
}

.text-orange {
  color: #f7790b;
}

.text-red {
  color: #e60013;
}

.text-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-note {
  color: #7d7d7d;
  font-size: 1.2rem;
  margin-top: 5px;
}

.text-hojokin {
  display: inline-block;
  background: #fff;
  font-size: 18px;
  border: 1px solid #111;
  padding: 0 15px 2px;
  position: absolute;
  top: calc(100% - 165px);
  right: 30px;
}

@media screen and (max-width: 559px) {
  .text-hojokin {
    font-size: 12px;
    padding: 0 10px;
    top: auto;
    right: 3.33%;
    bottom: 30px;
  }
}
/*-----------------------------------------------------

 bg

-----------------------------------------------------*/
.bg-gray {
  background: #f4f4f4;
}

.bg-green {
  background: #e6f4e0;
}

/*-----------------------------------------------------

 anime

-----------------------------------------------------*/
/* move
-----------------------------------------------------*/
.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fade in
-----------------------------------------------------*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeIn-trigger {
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fade up
-----------------------------------------------------*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.global-contact.fadeUp,
.global-form.fadeUp {
  animation-duration: 0.5s;
}

.fadeUp-trigger {
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fade right
-----------------------------------------------------*/
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* fade down
-----------------------------------------------------*/
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* zoom in
-----------------------------------------------------*/
.zoomIn {
  animation-name: zoomIn;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* soft jump
-----------------------------------------------------*/
.softJump {
  animation: softJump 3s ease-out infinite;
  animation-delay: 3s;
  opacity: 1;
}

@keyframes softJump {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
/*------------------- breadcrumbs ---------------------*/
.breadcrumbs {width: 1198px; margin: 20px auto 0; font-size: 1.3rem;}
@media screen and (max-width: 1299px){
  /*.breadcrumbs {width: 100%;height: 100%;padding: 0 40px;margin-top: 10px;font-size: 14px;}*/ 
  .breadcrumbs{width: 90% !important;}
  .overview .inner{padding-top: 20px;}
  .contact > .inner{padding-top: 20px;}
  .main-nav{padding-top: 20px;}
}
/*---------------- END breadcrumbs --------------------*/


/*-----------------20231218 追記-----------------------*/
.header-menu-item-contact{background: #58b531; padding: 10px; color: #fff; border-radius: 5px;}
.header-menu-item-contact a{color: #fff;}
@media screen and (max-width: 859px){
  .header-menu-item-contact:before{content: unset;} 
}

.cta_banner{display:none;}
.header-menu-item-contact{background: #58b531; padding: 10px; color: #fff;}
.header-menu-item-contact a{color: #fff;}
@media screen and (max-width: 639px){
.cta_banner{display: block; position: fixed; bottom: 0; width: 100% !important; padding: 10px 5px; border-radius: 0; display: flex; justify-content: space-between; background: #fff; z-index: 997;}
.cta_banner .s-sub{display:flex; justify-content:space-between; margin:0 0 10px;}
.cta_banner .s-sub i.circle{width: 15px; height: 15px; border: solid 5px; border-radius: 20px; display: inline-block; line-height: 0.7rem; margin:0 10px 0 0;}
.cta_banner .s-sub .left{font-size:1rem; font-weight:bold;}
.cta_banner .s-sub .right{font-size:1rem; color:#365484;}
.cta_banner .box-form{padding: 0; width: 49%;}
.cta_banner .box-form .btn{display: flex; justify-content: space-between; background: #58b530; color: #ffffff; padding: 0; border-radius: 5px; height: 54px; align-items: center; box-shadow: 3px 2px 5px 0px rgb(0 0 0 / 25%);}
.cta_banner .box-form .btn .icon{background: #ffffff; padding: 14px 2px; border-radius: 5px 0 0 5px; width: 30px; transform: translateX(-1px);}
.cta_banner .box-form .btn .icon i:before{font-size:20px; color: #051530;}
.cta_banner .box-form .btn p {font-weight: bold; line-height: 1.5rem; text-align: center;}
.cta_banner .box-form .btn p span{font-size: 0.8rem;}

.cta_banner .box-form{display: flex; justify-content: space-around; padding: 0 10px;}
.cta_banner a{text-decoration: none;}
.cta_banner a .btn{transition: 0.3s ease-in-out;}
.cta_banner a:hover .btn{transform: translate(1px, 2px); box-shadow: none;}
.cta_banner i{color: #58b530;}

.cta_banner .header-contact{margin:0; width: 50%; box-shadow: 3px 2px 5px 0px rgb(0 0 0 / 20%); border-radius: 5px; padding: 2px 0px 2px 5px;}
.cta_banner .header-contact .tel-title{font-size: 1rem;}
.cta_banner .header-contact .tel-tap .tel-number{font-size: 1.2em;}
.cta_banner .header-contact .tel-time{font-size:0.8rem;}
.cta_banner .txt-box{ width: 150px;}
.cta_banner .txt-box .sub-txt{font-size: 1rem; padding: 0 0 3px 0;}
.cta_banner .txt-box .txt{font-size: 1.3rem;} 
.cta_banner .header-contact .tel-tap .freedial-logo{width: 30px; height: 18px; margin-top: 0px;}
}
/*-----------------END 20231218 追記-------------------*/

/*----------------- 20240112 追記 -----------------------*/
.global-contact_sp{display: none;}
.header .global-contact{background: none;padding: 0;margin-right: 15px;}

.footer_2 .footer-area{flex-wrap: nowrap;}
.footer_2 .footer-area .footer-menu{flex-direction: column;justify-content: normal;align-items: normal;}
.footer_2 .footer-area .footer-nav{display: flex;}

@media screen and (max-width: 648px){
.header .global-contact{justify-content: left;}
}

@media screen and (max-width: 648px){
.global-contact_sp {display: flex;justify-content: left;padding-left: 20px !important;background-color: rgba(255,255,255,0.7) !important;height: 80px;margin-right: 0 !important;}
.global-contact_pc{display: none;}
.header .header-contact{display: none;}
}

@media screen and (max-width: 648px){
.footer_2 .footer-area{    flex-wrap: wrap;}
.footer_2 .footer-area .footer-nav{flex-direction: column;margin-top: 20px;}
.footer_2 .footer-area .footer-nav .footer-menu{margin-top: 0;margin-left: 0;}
}
/*----------------- END 20240112 追記 -----------------------*/

/*----------------- 20240206 追記 -----------------------*/
#column{padding-top: 80px;}
#column .card_items{display: flex; justify-content: space-between;}
#column .card_items img{width: 390px; height: 240px; object-fit: cover;}
#column .column_btn{margin-top: 60px;}
#column .card_items .title{font-weight: 500; margin-top: 10px;}
#column .card_items li{width: 390px;}
#column .content{width: 1300px; margin: 0 auto;}
#column .br_sp{display: none;}
@media screen and (max-width: 648px){
  #column .card_items{flex-direction: column;}
  #column .card_items img{width: 100%; height: auto;}
  #column .card_items li{margin-bottom: 20px; width: 100%;}
  #column .column_btn{margin-top: 20px; margin-bottom: 30px;}
  #column .br_sp{display: block;}
  #column .content{width: 100%;}
}
/*----------------- END 20240206 追記 -----------------------*/
/*----------------- 20240613 追記 -----------------------*/
@media screen and (max-width: 639px) {
    .cta_banner .header-contact {text-align: center;}
    .header-contact .tel-tap{display: block; margin: auto;}
}
/*----------------- END 20240613 追記 -----------------------*/
/*----------------- 20240718 追記 -----------------------*/
.footer-logo_02{background: unset;}
.footer-logo_02 img{width: 70%; max-width: 240px; height: 40px; margin-bottom: 20px; background-size: contain; object-fit: contain;}
@media screen and (max-width: 559px){
.footer-logo_02 img{margin-bottom: 10px;}
}
#registration{background: #f4f4f4;}
#registration .inner{width: 1360px; margin: auto;}
#registration .plan-panel-area{flex-wrap: unset; border: solid 1px #dedede; background: #fff; border-radius: 20px; padding: 30px;}
#registration .plan-panel-area span{color: #f7790b; font-weight: bold;}
#registration .plan-panel-area a{color: #3982ff; text-decoration: underline;}
#registration .plan-panel-area p{padding: 30px 30px 30px 0;}
#registration .plan-panel-area img{width: 400px; height: auto; border-radius: 20px;}
@media screen and (max-width: 559px){
  #registration .inner{width: 100%;}
  #registration .plan-panel-area{flex-direction: column;}
  #registration .plan-panel-area p{padding: 20px 0 0 0;}
}
/*----------------- 20240718 END -----------------------*/
/*------------------- 20240828 追記 -------------------------*/
.footer .footer-nav .footer-menu-item-add::before {
    transform: rotate(180deg);
    margin: 0 2px 5px 0;
}
.footer .footer-nav .footer-menu-item-add {
    font-size: 1.2rem;
    margin: 0 9px;
}
/*----------------- END 20240828 追記 -----------------------*/
/*---------------------- 20240830 ボタン追記 ----------------------------*/
.footer_2 .top_transition{
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px #ccc;
  padding: 10px;
  right: 50px;
  cursor: pointer;
  color: #000;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  position: fixed;
  bottom: 50px;
}
.footer_2 .top_transition:hover{
  opacity:0.8;
}
.footer_2 .top_transition i {
      font-size: 30px !important;
}
@media screen and (max-width: 980px) {
  .footer_2 .top_transition{
    right: 25px;
    bottom: 50px;
  }
}
  @media screen and (max-width: 768px) {
    .footer_2 .top_transition{
      right: 15px;
      bottom: 85px;
    }
  }
/*-------------------- END 20240830 ボタン追記 ------------------------*/
/*--------------------  20240925 追記 ------------------------*/
.column_btn .br_sp {
    display: none;
}
#case .column_btn{margin-top: 25px;}
@media screen and (max-width: 648px) {
    .column_btn .br_sp{
        display: block;
    }
}
.button-green { border-radius: calc(infinity* 1px);}
 .supervisor_box {
        /*border-top: solid 3px #58b531;
        border-bottom: solid 3px #58b531;*/
        padding-bottom: 30px;
    }

    .supervisor_box .title {
        text-align: center;
        font-size: 22px;
        background-color: #58b531;
        font-weight: bold;
        color: #fff;
        margin-bottom: 20px;
    }

    .supervisor_box .supervisor_detail {
        display: flex;
        justify-content: space-between;
        max-width: 1300px;
    margin: 0 auto;
    }

    .supervisor_box .supervisor_detail img {
        width: 260px;
        width: 300px;
        object-fit: contain;
    }

    .supervisor_box .supervisor_detail .supervisor_text {
        padding: 20px 0 20px 40px;
    }

    .supervisor_box .supervisor_detail .supervisor_text .name {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .supervisor_box .supervisor_detail .supervisor_text .text {
        margin-top: 20px;
    }
    .footer-license-item a{transition: 0.1s;color: #009ce1;text-decoration: underline;}
    .footer-license-item a:hover{opacity: 0.75;}
    @media screen and (max-width: 790px) {
      .supervisor_box .supervisor_detail {
            flex-direction: column;
        }

        .supervisor_box .supervisor_detail img {
            margin: 0 auto;
            height: 250px;
        }

        .supervisor_box .supervisor_detail .supervisor_text .name {
            margin-top: 20px;
        }

        .supervisor_box .supervisor_detail .supervisor_text {
            padding: 0;
        }
    }
/*-------------------- END 20240925 追記 ------------------------*/
/* 20241210 start 追記 */
.supervisor_box .supervisor_detail .supervisor_text .name a {
  position: relative;
  color: #0000ff;
  text-decoration: underline;
}
.supervisor_box .supervisor_detail .supervisor_text .name a::after {
  content: "";
  position: absolute;
  top: 28%;
  right: -28%;
  width: 20px;
  height: 15px;
  display: inline-block;
  background: url("https://akiyazero.jp/column/wp-content/uploads/2024/12/link_icon_1.webp");
  background-size: 20px 15px;
  background-repeat: no-repeat;
}
.supervisor_box .supervisor_detail .supervisor_text p a {
  position: relative;
  color: #0000ff;
  text-decoration: underline;
}
.supervisor_box .supervisor_detail .supervisor_text p a {
  position: relative;
}
.supervisor_box .supervisor_detail .supervisor_text p a::after {
  content: "";
  position: absolute;
  top: 28%;
  left: 101%;
  width: 16px;
  height: 12px;
  display: inline-block;
  background: url("https://akiyazero.jp/column/wp-content/uploads/2024/12/link_icon_1.webp");
  background-size: 16px 12px;
  background-repeat: no-repeat;
}
/* 20241210 end 追記 */
