@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

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

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

/* l-content */
.l-content {
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin: 0 20px;
  margin: 0 1.25rem;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-content {
    padding: 2.5rem 0;
  }
}

.l-inner {
  width: 100%;
  max-width: 1090px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* breadcrumb */
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 25px;
  margin-left: 1.5625rem;
  position: relative;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 10px;
  height: 0.625rem;
  top: 8px;
  top: 0.5rem;
  left: -16px;
  left: -1rem;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
  }
}

/* btn */
.btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 380px;
  width: 23.75rem;
  max-width: 100%;
  min-height: 60px;
  min-height: 3.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
  background: #00695E;
  color: #fff;
  border-radius: 0.625rem;
  padding-right: 50px;
  padding-right: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    text-align: left;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
  right: 0.3125rem;
  background: url(../images/common/btn-icon.png) no-repeat center/contain;
}

/* cv */
.cv {
  text-align: center;
  padding: 60px 0;
  padding: 3.75rem 0;
  background: url(../images/common/cv-bg01.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .cv {
    padding: 2.5rem 0;
  }
}

.cv--price {
  background: url(../images/common/cv-bg02.jpg) no-repeat center/cover;
}

.cv--faq {
  background: url(../images/common/cv-bg03.jpg) no-repeat center/cover;
}

.cv--privacy {
  background: url(../images/common/cv-bg04.jpg) no-repeat center/cover;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv--privacy {
    padding: 2.5rem 1.25rem;
  }
}
.cv--privacy .cv__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .cv--privacy .cv__btn {
    margin-top: 1.25rem;
  }
}

.cv__content {
  background: rgba(255, 255, 255, .9);
  border-radius: 1.25rem;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__content {
    padding: 2.5rem 1.25rem;
  }
}

.cv__title {
  display: inline-block;
}

.cv__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    text-align: left;
    margin-top: 1.25rem;
  }
}

.cv__btn {
  text-align: left;
  margin: 55px auto 0;
  margin: 3.4375rem auto 0;
}
@media screen and (max-width: 767px) {
  .cv__btn {
    margin-top: 1.25rem;
  }
}

.cv__subtext {
  color: #00695E;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .cv__subtext {
    text-align: left;
    margin-top: 1.25rem;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  background: #00695E;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 295px;
  width: 18.4375rem;
  max-width: 100%;
  height: 100vh;
  padding: 90px 40px;
  padding: 5.625rem 2.5rem;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item {
  position: relative;
}
.drawer__item + .drawer__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.drawer__item:first-child span {
  background: url(../images/common/gnav-icon01-1.png) no-repeat center left/28px;
  background: url(../images/common/gnav-icon01-1.png) no-repeat center left/1.75rem;
  padding-left: 33px;
  padding-left: 2.0625rem;
}
.drawer__item:first-child a:hover span {
  background: url(../images/common/gnav-icon01-2.png) no-repeat center left/28px;
  background: url(../images/common/gnav-icon01-2.png) no-repeat center left/1.75rem;
}
.drawer__item:first-child.current span {
  background: url(../images/common/gnav-icon01-3.png) no-repeat center left/28px;
  background: url(../images/common/gnav-icon01-3.png) no-repeat center left/1.75rem;
}
.drawer__item:nth-child(2) span {
  background: url(../images/common/gnav-icon02-1.png) no-repeat center left/25px;
  background: url(../images/common/gnav-icon02-1.png) no-repeat center left/1.5625rem;
  padding-left: 31px;
  padding-left: 1.9375rem;
}
.drawer__item:nth-child(2) a:hover span {
  background: url(../images/common/gnav-icon02-2.png) no-repeat center left/25px;
  background: url(../images/common/gnav-icon02-2.png) no-repeat center left/1.5625rem;
}
.drawer__item:nth-child(2).current span {
  background: url(../images/common/gnav-icon02-3.png) no-repeat center left/25px;
  background: url(../images/common/gnav-icon02-3.png) no-repeat center left/1.5625rem;
}
.drawer__item:nth-child(3) span {
  background: url(../images/common/gnav-icon03-1.png) no-repeat center left/19px;
  background: url(../images/common/gnav-icon03-1.png) no-repeat center left/1.1875rem;
  padding-left: 24px;
  padding-left: 1.5rem;
}
.drawer__item:nth-child(3) a:hover span {
  background: url(../images/common/gnav-icon03-2.png) no-repeat center left/19px;
  background: url(../images/common/gnav-icon03-2.png) no-repeat center left/1.1875rem;
}
.drawer__item:nth-child(3).active > a {
  background: #1A786E;
}
.drawer__item:nth-child(3).active span {
  background: url(../images/common/gnav-icon03-2.png) no-repeat center left/19px;
  background: url(../images/common/gnav-icon03-2.png) no-repeat center left/1.1875rem;
}
.drawer__item:nth-child(3).current span {
  background: url(../images/common/gnav-icon03-3.png) no-repeat center left/19px;
  background: url(../images/common/gnav-icon03-3.png) no-repeat center left/1.1875rem;
}
.drawer__item:nth-child(4) span {
  background: url(../images/common/gnav-icon04-1.png) no-repeat center left/21px;
  background: url(../images/common/gnav-icon04-1.png) no-repeat center left/1.3125rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}
.drawer__item:nth-child(4) a:hover span {
  background: url(../images/common/gnav-icon04-2.png) no-repeat center left/21px;
  background: url(../images/common/gnav-icon04-2.png) no-repeat center left/1.3125rem;
}
.drawer__item:nth-child(4).current span {
  background: url(../images/common/gnav-icon04-3.png) no-repeat center left/21px;
  background: url(../images/common/gnav-icon04-3.png) no-repeat center left/1.3125rem;
}
.drawer__item:nth-child(5) span {
  background: url(../images/common/gnav-icon05-1.png) no-repeat center left/27px;
  background: url(../images/common/gnav-icon05-1.png) no-repeat center left/1.6875rem;
  padding-left: 32px;
  padding-left: 2rem;
}
.drawer__item:nth-child(5) a:hover span {
  background: url(../images/common/gnav-icon05-2.png) no-repeat center left/27px;
  background: url(../images/common/gnav-icon05-2.png) no-repeat center left/1.6875rem;
}
.drawer__item:nth-child(5).current span {
  background: url(../images/common/gnav-icon05-3.png) no-repeat center left/27px;
  background: url(../images/common/gnav-icon05-3.png) no-repeat center left/1.6875rem;
}
.drawer__item:nth-child(6) span {
  background: url(../images/common/gnav-icon06-1.png) no-repeat center left/20px;
  background: url(../images/common/gnav-icon06-1.png) no-repeat center left/1.25rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
.drawer__item:nth-child(6) a:hover span {
  background: url(../images/common/gnav-icon06-2.png) no-repeat center left/20px;
  background: url(../images/common/gnav-icon06-2.png) no-repeat center left/1.25rem;
}
.drawer__item:nth-child(6).current span {
  background: url(../images/common/gnav-icon06-3.png) no-repeat center left/20px;
  background: url(../images/common/gnav-icon06-3.png) no-repeat center left/1.25rem;
}
.drawer__item.current a {
  background: #fff;
  color: #00695E;
}
.drawer__item a {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.drawer__item a:hover {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  background: #1A786E;
}
.drawer__item a span {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.drawer__subitems {
  display: none;
  position: absolute;
  top: 40px;
  top: 2.5rem;
  left: 0;
  z-index: 10;
  width: 100%;
  background: #1A786E;
  border-radius: 0 0 0.625rem 0.625rem;
  padding: 16px 10px 10px;
  padding: 1rem 0.625rem 0.625rem;
}

.drawer__subitem + .drawer__subitem {
  margin-top: 6px;
  margin-top: 0.375rem;
}
.drawer__subitem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 43px;
  min-height: 2.6875rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #00695E;
  font-weight: 500;
  line-height: 1.2;
  background: #fff;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  border-radius: 0.625rem;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
}
.drawer__subitem a:hover {
  background: #00695E;
  color: #fff;
}

/* entitle */
/* footer */
.footer__content {
  background: #00695E;
  padding: 75px 0 190px;
  padding: 4.6875rem 0 11.875rem;
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding: 3.75rem 0 0.9375rem;
  }
}

.footer__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 135px;
  gap: 8.4375rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .footer__items {
    display: block;
    margin-top: 1.875rem;
  }
}

.footer__item {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.45;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__item + .footer__item {
    margin-top: 3.75rem;
  }
}

.footer__item-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #176059;
  gap: 20px;
  gap: 1.25rem;
  padding: 7px 20px;
  padding: 0.4375rem 1.25rem;
}

.footer__copyright {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__link-wrapper {
    text-align: center;
    margin-top: 3.4375rem;
  }
}

.footer__link {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  padding: 0 30px;
  padding: 0 1.875rem;
  position: relative;
}
.footer__link::before, .footer__link::after {
  position: absolute;
  content: "｜";
  top: 0;
}
.footer__link::before {
  left: 0;
}
.footer__link::after {
  right: 0;
}

.footer__bottom {
  padding: 30px 0;
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding: 0.625rem 0;
  }
}

.footer__logo {
  width: 133px;
  width: 8.3125rem;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 7.375rem;
  }
}

/* form */
.form {
  font-family: "Noto Sans JP", sans-serif;
}

.form__content {
  border-radius: 1.25rem;
  border: 3px solid #F7F7F7;
  border: 0.1875rem solid #F7F7F7;
  padding: 60px 60px;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .form__content {
    padding: 1.875rem 1.25rem;
  }
}

.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .form__item {
    display: block;
  }
}
.form__item + .form__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__item + .form__item {
    margin-top: 1.5625rem;
  }
}
.form__item.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form__item.vertical .form__item-label {
  width: 100%;
  padding-top: 0;
}
.form__item.vertical .form__item-input {
  width: 100%;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__item.vertical .form__item-input {
    margin-top: 0.625rem;
  }
}
.form__item.vertical .form__item-input textarea {
  background: #fff;
  border: 3px solid #F7F7F7;
  border: 0.1875rem solid #F7F7F7;
}

.form__item-label {
  width: 24%;
  font-size: 18px;
  font-size: 1.125rem;
  padding-top: 17px;
  padding-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .form__item-label {
    width: 100%;
    padding-top: 0;
  }
}
.form__item-label.pt-5 {
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .form__item-label.pt-5 {
    padding-top: 0;
  }
}
.form__item-label label {
  display: inline-block;
  font-weight: 700;
}
.form__item-label label.required {
  position: relative;
}
.form__item-label label.required::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 2px;
  top: 0.125rem;
  right: -12px;
  right: -0.75rem;
  background: url(../images/common/required-icon.png) no-repeat center/contain;
}
.form__item-label span {
  display: inline-block;
  margin-left: -0.5em;
}

.form__item-input {
  width: 76%;
}
@media screen and (max-width: 767px) {
  .form__item-input {
    width: 100%;
    margin-top: 0.625rem;
  }
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input input[type=date], .form__item-input select, .form__item-input textarea {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  border-radius: 0.625rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input input[type=date], .form__item-input select, .form__item-input textarea {
    font-size: 1rem;
  }
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input input[type=date]::-webkit-input-placeholder, .form__item-input select::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  color: #6F6F6F;
  color: #B4B4B4;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input input[type=date]::-moz-placeholder, .form__item-input select::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  color: #6F6F6F;
  color: #B4B4B4;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input input[type=date]::-ms-input-placeholder, .form__item-input select::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  color: #6F6F6F;
  color: #B4B4B4;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input input[type=date]::placeholder, .form__item-input select::placeholder, .form__item-input textarea::placeholder {
  color: #6F6F6F;
  color: #B4B4B4;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email] {
  height: 60px;
  height: 3.75rem;
  background: #F7F7F7;
}
.form__item-input input[type=date] {
  height: 60px;
  height: 3.75rem;
  border: 3px solid #F7F7F7;
  border: 0.1875rem solid #F7F7F7;
}
.form__item-input textarea {
  height: 180px;
  height: 11.25rem;
  background: #F7F7F7;
  resize: none;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
.form__item-input select {
  height: 60px;
  height: 3.75rem;
  border: 3px solid #F7F7F7;
  border: 0.1875rem solid #F7F7F7;
  background: url(../images/common/select-icon.png) no-repeat center right 15px/13px;
  background: url(../images/common/select-icon.png) no-repeat center right 0.9375rem/0.8125rem;
  color: #6F6F6F;
  color: #B4B4B4;
}
.form__item-input select.active {
  color: #000;
}

.form__body {
  background: #F7F7F7;
  border-radius: 1.25rem;
  margin: 60px 0;
  margin: 3.75rem 0;
  padding: 60px 70px;
  padding: 3.75rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .form__body {
    border-radius: 0.625rem;
    margin: 1.875rem 0;
    padding: 1.875rem 1.25rem;
  }
}
.form__body .form__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__body .form__items {
    margin-top: 1.5625rem;
  }
}
.form__body .form__item-label {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .form__body .form__item-label {
    width: 100%;
  }
}
.form__body .form__item-input {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .form__body .form__item-input {
    width: 100%;
  }
}
.form__body .form__item-input input[type=text], .form__body .form__item-input input[type=tel], .form__body .form__item-input input[type=email], .form__body .form__item-input input[type=date], .form__body .form__item-input select, .form__body .form__item-input textarea {
  background: #fff;
}

.form__checkbox label, .form__radio label {
  display: inline-block;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__checkbox label, .form__radio label {
    display: block;
  }
}
.form__checkbox label:not(:last-child), .form__radio label:not(:last-child) {
  margin-right: 65px;
  margin-right: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .form__checkbox label:not(:last-child), .form__radio label:not(:last-child) {
    margin-right: 0;
  }
}
.form__checkbox input[type=checkbox] + span, .form__checkbox input[type=radio] + span, .form__radio input[type=checkbox] + span, .form__radio input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 33px;
  padding-left: 2.0625rem;
  position: relative;
}
.form__checkbox input[type=checkbox] + span::before, .form__checkbox input[type=checkbox] + span::after, .form__checkbox input[type=radio] + span::before, .form__checkbox input[type=radio] + span::after, .form__radio input[type=checkbox] + span::before, .form__radio input[type=checkbox] + span::after, .form__radio input[type=radio] + span::before, .form__radio input[type=radio] + span::after {
  position: absolute;
  content: "";
  display: block;
}
.form__checkbox input[type=checkbox] + span::before, .form__checkbox input[type=radio] + span::before, .form__radio input[type=checkbox] + span::before, .form__radio input[type=radio] + span::before {
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  border-radius: 0.3125rem;
  left: 0;
  top: 50%;
}
.form__checkbox input[type=checkbox] + span::after, .form__checkbox input[type=radio] + span::after, .form__radio input[type=checkbox] + span::after, .form__radio input[type=radio] + span::after {
  border-bottom: 3px solid #000;
  border-bottom: 0.1875rem solid #000;
  border-left: 3px solid #000;
  border-left: 0.1875rem solid #000;
  height: 10px;
  height: 0.625rem;
  width: 15px;
  width: 0.9375rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 6px;
  left: 0.375rem;
  top: 7px;
  top: 0.4375rem;
}
.form__checkbox input[type=checkbox]:checked + span::after, .form__checkbox input[type=radio]:checked + span::after, .form__radio input[type=checkbox]:checked + span::after, .form__radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.form__check {
  text-align: center;
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .form__check {
    margin-top: 2.5rem;
  }
}
.form__check label {
  position: relative;
}
.form__check label::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  right: -10px;
  right: -0.625rem;
  top: -3px;
  top: -0.1875rem;
  background: url(../images/common/required-icon.png) no-repeat center/contain;
}
.form__check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 40px;
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__check input[type=checkbox] + span {
    font-size: 1rem;
    padding-left: 1.75rem;
  }
}
.form__check input[type=checkbox] + span::before, .form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  display: block;
}
.form__check input[type=checkbox] + span::before {
  background: #f6f8f9;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  border-radius: 0.3125rem;
  left: 0;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .form__check input[type=checkbox] + span::before {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.form__check input[type=checkbox] + span::after {
  border-bottom: 3px solid #000;
  border-bottom: 0.1875rem solid #000;
  border-left: 3px solid #000;
  border-left: 0.1875rem solid #000;
  height: 10px;
  height: 0.625rem;
  width: 15px;
  width: 0.9375rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 6px;
  left: 0.375rem;
  top: 7px;
  top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .form__check input[type=checkbox] + span::after {
    height: 0.5rem;
    width: 0.75rem;
  }
}
.form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__box {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  border-radius: 1.25rem;
  background: #F7F7F7;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 35px 60px;
  padding: 2.1875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .form__box {
    border-radius: 0.625rem;
    margin-top: 1.875rem;
    padding: 1.875rem 1.25rem;
  }
}

.form__box-title {
  font-weight: 700;
  background: url(../images/common/note-icon.png) no-repeat center left/23px;
  background: url(../images/common/note-icon.png) no-repeat center left/1.4375rem;
  padding-left: 33px;
  padding-left: 2.0625rem;
}

.form__box-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__box-list {
    margin-top: 0.625rem;
  }
}

.form__box-list-item {
  background: url(../images/common/check-icon02.png) no-repeat left top 8px/16px;
  background: url(../images/common/check-icon02.png) no-repeat left top 0.5rem/1rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}
.form__box-list-item a {
  text-decoration: underline;
}

.form__btn {
  width: 350px;
  width: 21.875rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .form__btn {
    text-align: left;
    margin-top: 2.5rem;
  }
}

.form__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.78;
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* gnav */
.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  height: inherit;
}

.gnav__item {
  position: relative;
}
.gnav__item:first-child span {
  background: url(../images/common/gnav-icon01-1.png) no-repeat center left/28px;
  background: url(../images/common/gnav-icon01-1.png) no-repeat center left/1.75rem;
  padding-left: 33px;
  padding-left: 2.0625rem;
}
.gnav__item:first-child a:hover span {
  background: url(../images/common/gnav-icon01-2.png) no-repeat center left/28px;
  background: url(../images/common/gnav-icon01-2.png) no-repeat center left/1.75rem;
}
.gnav__item:first-child.current span {
  background: url(../images/common/gnav-icon01-3.png) no-repeat center left/28px;
  background: url(../images/common/gnav-icon01-3.png) no-repeat center left/1.75rem;
}
.gnav__item:nth-child(2) span {
  background: url(../images/common/gnav-icon02-1.png) no-repeat center left/25px;
  background: url(../images/common/gnav-icon02-1.png) no-repeat center left/1.5625rem;
  padding-left: 31px;
  padding-left: 1.9375rem;
}
.gnav__item:nth-child(2) a:hover span {
  background: url(../images/common/gnav-icon02-2.png) no-repeat center left/25px;
  background: url(../images/common/gnav-icon02-2.png) no-repeat center left/1.5625rem;
}
.gnav__item:nth-child(2).current span {
  background: url(../images/common/gnav-icon02-3.png) no-repeat center left/25px;
  background: url(../images/common/gnav-icon02-3.png) no-repeat center left/1.5625rem;
}
.gnav__item:nth-child(3) span {
  background: url(../images/common/gnav-icon03-1.png) no-repeat center left/19px;
  background: url(../images/common/gnav-icon03-1.png) no-repeat center left/1.1875rem;
  padding-left: 24px;
  padding-left: 1.5rem;
}
.gnav__item:nth-child(3) a:hover span {
  background: url(../images/common/gnav-icon03-2.png) no-repeat center left/19px;
  background: url(../images/common/gnav-icon03-2.png) no-repeat center left/1.1875rem;
}
.gnav__item:nth-child(3).active > a {
  color: #fff;
  background: #1A786E;
}
.gnav__item:nth-child(3).active > a span {
  background: url(../images/common/gnav-icon03-2.png) no-repeat center left/19px;
  background: url(../images/common/gnav-icon03-2.png) no-repeat center left/1.1875rem;
}
.gnav__item:nth-child(3).current span {
  background: url(../images/common/gnav-icon03-3.png) no-repeat center left/19px;
  background: url(../images/common/gnav-icon03-3.png) no-repeat center left/1.1875rem;
}
.gnav__item:nth-child(4) span {
  background: url(../images/common/gnav-icon04-1.png) no-repeat center left/21px;
  background: url(../images/common/gnav-icon04-1.png) no-repeat center left/1.3125rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}
.gnav__item:nth-child(4) a:hover span {
  background: url(../images/common/gnav-icon04-2.png) no-repeat center left/21px;
  background: url(../images/common/gnav-icon04-2.png) no-repeat center left/1.3125rem;
}
.gnav__item:nth-child(4).current span {
  background: url(../images/common/gnav-icon04-3.png) no-repeat center left/21px;
  background: url(../images/common/gnav-icon04-3.png) no-repeat center left/1.3125rem;
}
.gnav__item:nth-child(5) span {
  background: url(../images/common/gnav-icon05-1.png) no-repeat center left/27px;
  background: url(../images/common/gnav-icon05-1.png) no-repeat center left/1.6875rem;
  padding-left: 32px;
  padding-left: 2rem;
}
.gnav__item:nth-child(5) a:hover span {
  background: url(../images/common/gnav-icon05-2.png) no-repeat center left/27px;
  background: url(../images/common/gnav-icon05-2.png) no-repeat center left/1.6875rem;
}
.gnav__item:nth-child(5).current span {
  background: url(../images/common/gnav-icon05-3.png) no-repeat center left/27px;
  background: url(../images/common/gnav-icon05-3.png) no-repeat center left/1.6875rem;
}
.gnav__item:nth-child(6) span {
  background: url(../images/common/gnav-icon06-1.png) no-repeat center left/20px;
  background: url(../images/common/gnav-icon06-1.png) no-repeat center left/1.25rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
.gnav__item:nth-child(6) a:hover span {
  background: url(../images/common/gnav-icon06-2.png) no-repeat center left/20px;
  background: url(../images/common/gnav-icon06-2.png) no-repeat center left/1.25rem;
}
.gnav__item:nth-child(6).current span {
  background: url(../images/common/gnav-icon06-3.png) no-repeat center left/20px;
  background: url(../images/common/gnav-icon06-3.png) no-repeat center left/1.25rem;
}
.gnav__item.current a {
  background: #fff;
  color: #00695E;
}
.gnav__item a {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media screen and (max-width: 1350px) {
  .gnav__item a {
    font-size: 0.9375rem;
  }
}
.gnav__item a:hover {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  background: #1A786E;
}
.gnav__item a span {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.gnav__subitems {
  display: none;
  position: absolute;
  top: 40px;
  top: 2.5rem;
  left: 0;
  z-index: 10;
  width: 100%;
  background: #1A786E;
  border-radius: 0 0 0.625rem 0.625rem;
  padding: 16px 10px 10px;
  padding: 1rem 0.625rem 0.625rem;
}

.gnav__subitem + .gnav__subitem {
  margin-top: 6px;
  margin-top: 0.375rem;
}
.gnav__subitem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 43px;
  min-height: 2.6875rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #00695E;
  font-weight: 500;
  line-height: 1.2;
  background: #fff;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  border-radius: 0.625rem;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
}
@media screen and (max-width: 1350px) {
  .gnav__subitem a {
    font-size: 0.9375rem;
  }
}
.gnav__subitem a:hover {
  background: #00695E;
  color: #fff;
}

/* hamburger */
.hamburger {
  position: absolute;
  z-index: 30;
  right: 13px;
  right: 0.8125rem;
  top: 12px;
  top: 0.75rem;
  width: 20px;
  width: 1.25rem;
  height: 26px;
  height: 1.625rem;
  cursor: pointer;
}
.hamburger.active .hamburger__border {
  top: 12px;
  top: 0.75rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  left: 0;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 0;
}
.hamburger__border:nth-child(2) {
  top: 12px;
  top: 0.75rem;
}
.hamburger__border:nth-child(3) {
  top: 24px;
  top: 1.5rem;
}

/* header */
.header {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 20px;
  top: 1.25rem;
  z-index: 100;
  width: calc(100% - 2.5rem);
  height: 70px;
  height: 4.375rem;
  background: #00695E;
  border-radius: 0.625rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 1350px) {
  .header {
    height: 4.0625rem;
    padding: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .header {
    top: 0;
    width: 100%;
    height: 3.125rem;
    border-radius: 0;
    padding: 0.3125rem 0.625rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  height: inherit;
}

.header__logo {
  width: 74px;
  width: 4.625rem;
  max-width: 100%;
}
@media screen and (max-width: 1350px) {
  .header__logo {
    width: 4.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 3.625rem;
  }
}
.header__logo a {
  display: block;
}

.header__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 1350px) {
  .header__title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .header__title {
    font-size: 0.875rem;
  }
}

/* main */
.main {
  overflow: hidden;
}

/* mv */
.mv {
  text-align: center;
  padding: 150px 0 50px;
  padding: 9.375rem 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 6.25rem 0 2.5rem;
  }
}

.mv--about .mv__title {
  background: url(../images/common/mv-icon01.png) no-repeat left top 20px/55px;
  background: url(../images/common/mv-icon01.png) no-repeat left top 1.25rem/3.4375rem;
  padding-left: 70px;
  padding-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .mv--about .mv__title {
    background: url(../images/common/mv-icon01.png) no-repeat left top 0.5rem/2.1875rem;
    padding-left: 2.6875rem;
  }
}

.mv--shizai .mv__title {
  background: url(../images/common/mv-icon02.png) no-repeat left top 20px/50px;
  background: url(../images/common/mv-icon02.png) no-repeat left top 1.25rem/3.125rem;
  padding-left: 65px;
  padding-left: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .mv--shizai .mv__title {
    background: url(../images/common/mv-icon02.png) no-repeat left top 0.5rem/2.1875rem;
    padding-left: 2.6875rem;
  }
}

.mv--seminar .mv__title {
  background: url(../images/common/mv-icon06.png) no-repeat left top 20px/55px;
  background: url(../images/common/mv-icon06.png) no-repeat left top 1.25rem/3.4375rem;
  padding-left: 70px;
  padding-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .mv--seminar .mv__title {
    background: url(../images/common/mv-icon06.png) no-repeat left top 0.5rem/2.1875rem;
    padding-left: 2.6875rem;
  }
}

.mv--document .mv__title {
  background: url(../images/common/mv-icon03.png) no-repeat left top 20px/38px;
  background: url(../images/common/mv-icon03.png) no-repeat left top 1.25rem/2.375rem;
  padding-left: 53px;
  padding-left: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .mv--document .mv__title {
    background: url(../images/common/mv-icon03.png) no-repeat left top 0.3125rem/2rem;
    padding-left: 2.5rem;
  }
}

.mv--news .mv__title {
  background: url(../images/common/mv-icon04.png) no-repeat left top 20px/42px;
  background: url(../images/common/mv-icon04.png) no-repeat left top 1.25rem/2.625rem;
  padding-left: 57px;
  padding-left: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .mv--news .mv__title {
    background: url(../images/common/mv-icon04.png) no-repeat left top 0.3125rem/2.1875rem;
    padding-left: 2.8125rem;
  }
}

.mv--faq .mv__title {
  background: url(../images/common/mv-icon05.png) no-repeat left top 20px/42px;
  background: url(../images/common/mv-icon05.png) no-repeat left top 1.25rem/2.625rem;
  padding-left: 57px;
  padding-left: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .mv--faq .mv__title {
    background: url(../images/common/mv-icon05.png) no-repeat left top 0.3125rem/2.1875rem;
    padding-left: 2.8125rem;
  }
}

.mv__subtitle {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 900;
  color: #00695E;
}
@media screen and (max-width: 767px) {
  .mv__subtitle {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.mv__title {
  display: inline-block;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 900;
  color: #00695E;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1.125rem;
  }
}
.mv__text span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__text span {
    font-size: 1rem;
  }
}

.mv__links {
  gap: 10px 26px;
  gap: 0.625rem 1.625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.mv__link {
  display: inline;
}
.mv__link + .mv__link {
  margin-left: 26px;
  margin-left: 1.625rem;
  position: relative;
}
.mv__link + .mv__link::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-radius: 50%;
  background: #00695E;
  top: 11px;
  top: 0.6875rem;
  left: -15px;
  left: -0.9375rem;
}
.mv__link a, .mv__link span {
  font-size: 14px;
  font-size: 0.875rem;
}
.mv__link a {
  font-weight: 700;
  color: #00695E;
  text-decoration: underline;
}
.mv__link span {
  font-weight: 500;
}

/* news */
.news__item {
  border-bottom: 1px solid #BFBFBF;
  border-bottom: 0.0625rem solid #BFBFBF;
}

.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  gap: 1.125rem;
  padding: 18px 0;
  padding: 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .news__item-inner {
    display: block;
    padding: 0.9375rem 0;
  }
}

.news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news__item-date {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  min-width: 105px;
  min-width: 6.5625rem;
}

.news__item-category {
  min-width: 84px;
  min-width: 5.25rem;
}
.news__item-category span {
  display: inline-block;
  font-weight: 700;
  color: #2CB521;
  background: #fff;
  border: 1px solid #2CB521;
  border: 0.0625rem solid #2CB521;
  border-radius: 0.3125rem;
  padding: 3px 9px;
  padding: 0.1875rem 0.5625rem;
}
.news__item-category span.news {
  color: #2CB521;
  border-color: #2CB521;
}
.news__item-category span.important {
  color: #00695E;
  border-color: #00695E;
}
.news__item-category span.withdraw {
  color: #24A196;
  border-color: #24A196;
}

.news__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.56;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    margin-top: 0.8125rem;
  }
}

/* pagination */
.pagination {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 2.5rem;
  }
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.5rem;
  }
}
.pagination a, .pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  width: 3.75rem;
  min-width: 60px;
  min-width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #fff;
  color: #00695E;
  border-radius: 0.625rem;
  border: 1px solid #00695E;
  border: 0.0625rem solid #00695E;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 2.8125rem;
    min-width: 2.8125rem;
    height: 2.8125rem;
    font-size: rm(16);
  }
}
.pagination .current {
  color: #fff;
  background: #00695E;
}
.pagination .dots {
  border: none;
  background: none;
  width: unset;
  min-width: unset;
}
.pagination .prev, .pagination .next {
  border: none;
}
.pagination .prev {
  background: url(../images/common/prev-icon.png) no-repeat center/29px;
  background: url(../images/common/prev-icon.png) no-repeat center/1.8125rem;
}
@media screen and (max-width: 767px) {
  .pagination .prev {
    background-size: 1.5625rem;
  }
}
.pagination .next {
  background: url(../images/common/next-icon.png) no-repeat center/29px;
  background: url(../images/common/next-icon.png) no-repeat center/1.8125rem;
}
@media screen and (max-width: 767px) {
  .pagination .next {
    background-size: 1.5625rem;
  }
}

/* qa */
.qa__item {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  background: #D0E3E1;
  border-radius: 1.25rem;
}
.qa__item + .qa__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.qa__item-header {
  border-radius: 1.25rem;
  padding: 25px 40px;
  padding: 1.5625rem 2.5rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa__item-header {
    padding: 1.0625rem 2.5rem 1.0625rem 1.25rem;
  }
}
.qa__item-header::after, .qa__item-header::before {
  position: absolute;
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 3px;
  height: 0.1875rem;
  background: #00695E;
  right: 40px;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 1.25rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .qa__item-header::after, .qa__item-header::before {
    right: 1.25rem;
  }
}
.qa__item-header::before {
  top: 49%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.qa__item-header.active::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.qa__item-title {
  font-weight: 700;
  color: #00695E;
}

.qa__item-body {
  display: none;
  padding: 0 40px 40px;
  padding: 0 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .qa__item-body {
    padding: 0 0.625rem 1.25rem;
  }
}

.qa__item-text {
  background: #fff;
  border-radius: 0.625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .qa__item-text {
    padding: 1.0625rem 1.25rem;
  }
}

/* subtitle */
.subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1EA813;
  border-left: 6px solid #1EA813;
  border-left: 0.375rem solid #1EA813;
  padding-left: 5px;
  padding-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
    border-left: 0.25rem solid #1EA813;
  }
}

/* table */
.table-wrapper {
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  .table-wrapper {
    overflow: auto;
  }
}

.table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #2CB522;
  border: 0.0625rem solid #2CB522;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .table {
    width: 62.5rem;
  }
}
.table tr:nth-child(odd) td {
  background: #fff;
}
.table tr:nth-child(even) td {
  background: #EFFFE6;
}
.table th {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  background: #2CB522;
}
.table th:not(:first-child) {
  border-left: 1px solid #fff;
  border-left: 0.0625rem solid #fff;
}
.table td:not(:first-child) {
  border-left: 1px solid #2CB521;
  border-left: 0.0625rem solid #2CB521;
}

/* text */
.text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
}

/* title */
@media screen and (max-width: 767px) {
  .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.title span {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  background: url(../images/common/title-icon.png) no-repeat left top 10px/21px;
  background: url(../images/common/title-icon.png) no-repeat left top 0.625rem/1.3125rem;
  padding-left: 32px;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .title span {
    font-size: 1.625rem;
    background-position: left top 0.3125rem;
    line-height: 1.4;
  }
}


/* ===================================
   ヘッダーロゴサイズ調整（全ページ共通）
   コンテナ(.header__logo)と画像の両方を揃えて
   テキストとのかぶりを防止
   =================================== */
.header__logo {
  width: 90px !important;
  flex-shrink: 0;
}
.header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 74px !important;
  }
}
