@charset "UTF-8";
/***
    The new CSS reset - version 1.8.3 (last updated 21.1.2023)
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
  width: 100%;
  height: auto;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/*color
-------------------------------------------------------*/
/*font
-------------------------------------------------------*/
/*メディアクエリ
-------------------------------------------------------*/
/*共通
-------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  letter-spacing: 3%;
  font-family: "Noto Sans JP", sans-serif;
  color: #505050;
}

.inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

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

.page-bg {
  background: #EDF3EB;
  padding-top: 40px;
}
@media screen and (max-width: 1064px) {
  .page-bg {
    padding-top: 24px;
  }
}
@media screen and (max-width: 600px) {
  .page-bg {
    padding-top: 16px;
  }
}

.post__article {
  padding-block: 80px 120px;
}
@media screen and (max-width: 1064px) {
  .post__article {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .post__article {
    padding-block: 60px;
  }
}

.post__content {
  background: #fff;
  border-radius: 12px;
  padding: 60px 16px;
}
@media screen and (max-width: 600px) {
  .post__content {
    padding: 40px 16px;
  }
}

/* ヘッダー
---------------------------------------------------------*/
.header__menu--btn {
  padding: 8px 24px;
  background: #2E8D1B;
  color: #fff;
  border: 1px solid #2E8D1B;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__menu--btn svg {
  width: 14px;
  height: 14px;
}
.header__menu--btn:hover {
  color: #2E8D1B;
  background: #fff;
}

.h-btn--arrow {
  stroke: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__menu--btn:hover .h-btn--arrow {
  stroke: #2E8D1B;
}

/* トップページ
---------------------------------------------------------*/
.r-top__block--btn {
  padding: 12px 24px;
  background: #2E8D1B;
  color: #fff;
  border: 1px solid #2E8D1B;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.r-top__block--btn svg {
  width: 14px;
  height: 14px;
}
.r-top__block--btn:hover {
  color: #2E8D1B;
  background: #fff;
}

.r-top__btn--arrow {
  stroke: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.r-top__block--btn:hover .r-top__btn--arrow {
  stroke: #2E8D1B;
}

.r-top__btn--outline {
  background: transparent;
  color: #2E8D1B;
}
.r-top__btn--outline:hover {
  color: #fff;
  background: #2E8D1B;
}

.r-top__arrow--outline {
  stroke: #2E8D1B;
}

.r-top__btn--outline:hover .r-top__arrow--outline {
  stroke: #fff;
}

.r-cta__btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  margin-top: 40px;
}
.r-cta__btn:hover {
  color: #fff;
  background: green;
  border: 1px solid #2E8D1B;
}

.r-cta__arrow {
  stroke: #fff;
}

.r-cta__btn:hover .r-cta__arrow {
  stroke: #fff;
}

/* 下層ページ
---------------------------------------------------------*/
.r-about__outline {
  background: transparent;
  color: #2E8D1B;
}
.r-about__outline:hover {
  color: #fff;
  background: #2E8D1B;
}

.r-about__outline--icon {
  width: 10px;
  stroke: #2E8D1B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.r-about__outline:hover .r-about__outline--icon {
  stroke: #fff;
}

/* コーポレートサイト
---------------------------------------------------------*/
.corp__btn {
  padding: 12px 24px;
  background: transparent;
  color: #2E8D1B;
  border: 1px solid #2E8D1B;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.corp__btn svg {
  width: 14px;
  height: 14px;
}
.corp__btn:hover {
  color: #fff;
  background: #2E8D1B;
}

.corp__btn--arrow {
  stroke: #2E8D1B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.corp__btn:hover .corp__btn--arrow {
  stroke: #fff;
}

.entry__btn--wrapper {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .entry__btn--wrapper {
    margin-top: 28px;
  }
}

.news__btn--wrapper {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .news__btn--wrapper {
    margin-top: 28px;
  }
}

.products__btn--wrapper {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .products__btn--wrapper {
    margin-top: 28px;
  }
}

/* コーポレートサイト
---------------------------------------------------------*/
.error__btn {
  padding: 12px 24px;
  background: transparent;
  color: #2E8D1B;
  border: 1px solid #2E8D1B;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 240px;
}
.error__btn svg {
  width: 14px;
  height: 14px;
}
.error__btn:hover {
  color: #fff;
  background: #2E8D1B;
}

.corp__btn--arrow {
  stroke: #2E8D1B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.corp__btn:hover .corp__btn--arrow {
  stroke: #fff;
}

header {
  padding-block: 20px;
}
@media screen and (max-width: 1064px) {
  header {
    padding-block: 20px;
  }
}

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

.header__logo {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__logo:hover {
  opacity: 0.7;
}

.header__logo--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1064px) {
  .header__logo--wrap {
    gap: 8px;
  }
}
.header__logo--wrap img {
  width: 150px;
}
@media screen and (max-width: 1064px) {
  .header__logo--wrap img {
    width: 120px;
  }
}
.header__logo--wrap p {
  padding: 1px 12px;
  border-radius: 8px;
  border: 1px solid #505050;
}
@media screen and (max-width: 1064px) {
  .header__logo--wrap p {
    font-size: 14px;
    padding: 1px 8px;
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1064px) {
  .header__menu {
    display: none;
  }
}

.header__menu--lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.header__menu--list {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu--list:hover {
  color: #2E8D1B;
}

.c-header__menu--icon {
  width: 14px;
  stroke: #505050;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-header__icon:hover .c-header__menu--icon {
  stroke: #2E8D1B;
}

/*ドロワー
---------------------------------------------------------*/
.is-tab {
  display: none;
}
@media screen and (max-width: 1064px) {
  .is-tab {
    display: block;
  }
}

.drawer_icon {
  position: absolute;
  top: 28px;
  right: 16px;
  z-index: 100;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer_icon.is-active {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  position: fixed;
}
.drawer_icon.is-active .drawer_icon_bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #fff;
}
.drawer_icon.is-active .drawer_icon_bar2 {
  display: none;
}
.drawer_icon.is-active .drawer_icon_bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background: #fff;
}

.drawer_icon_bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer_icon_bar1,
.drawer_icon_bar2,
.drawer_icon_bar3 {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #2E8D1B;
  top: 0;
  left: 0;
}

.drawer_icon_bar1 {
  top: 0;
}

.drawer_icon_bar2 {
  top: 8px;
}

.drawer_icon_bar3 {
  top: 16px;
}

.drawer_content {
  width: 300px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 99;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer_content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer_content_items {
  margin-top: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.drawer_content_item {
  color: #2E8D1B;
}
.drawer_content_item a {
  display: inline;
  font-size: 18px;
}

.drawer-btn {
  display: inline-block;
}

.drawer-arrow {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.drawer-btn a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #fff;
  background: #2E8D1B;
  padding: 8px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer_background {
  background: #505050;
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer_background.is-active {
  display: block;
}

.c-header__d-menu--icon {
  width: 14px;
  stroke: #505050;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* MV
----------------------------------------------*/
.mv {
  width: 100%;
  height: 100svh;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .mv {
    height: 650px;
  }
}
@media screen and (max-width: 600px) {
  .mv {
    height: 360px;
  }
}
.mv::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background: url("../img/r-mv.png") top/cover no-repeat;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1064px) {
  .mv::before {
    background: url("../img/r-mv_img-tab.png") top/cover no-repeat;
  }
}
@media screen and (max-width: 600px) {
  .mv::before {
    background: url("../img/r-mv_img-sp.png") top/cover no-repeat;
  }
}

.mv__content {
  position: absolute;
  z-index: 10;
  font-size: 48px;
  font-weight: 700;
  background: #fff;
  padding-inline: 48px;
  top: 70%;
}
@media screen and (max-width: 1064px) {
  .mv__content {
    font-size: 28px;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 600px) {
  .mv__content {
    font-size: 24px;
    max-width: 90%;
  }
}
.mv__content span {
  font-size: 56px;
  color: #2E8D1B;
}
@media screen and (max-width: 1064px) {
  .mv__content span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .mv__content span {
    font-size: 28px;
  }
}

/* Message
----------------------------------------------*/
.message {
  padding-block: 120px;
}
@media screen and (max-width: 1064px) {
  .message {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .message {
    font-size: 60px;
  }
}

.r-top__message--title {
  color: #2E8D1B;
  text-align: center;
}

.message--content {
  font-size: 24px;
  font-weight: 500;
  line-height: 180%;
  margin-top: 56px;
}
@media screen and (max-width: 1064px) {
  .message--content {
    font-size: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .message--content {
    font-size: 18px;
  }
}

.message--president__wrapper {
  margin-top: 40px;
  width: 60%;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .message--president__wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .message--president__wrapper {
    width: 100%;
  }
}
.message--president__wrapper::after {
  content: "代表取締役 村木 隆仁";
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #2E8D1B;
  background-color: #fff;
  padding: 8px 16px;
}
@media screen and (max-width: 1064px) {
  .message--president__wrapper::after {
    font-size: 24px;
    right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .message--president__wrapper::after {
    font-size: 18px;
    right: 8px;
    bottom: 32px;
  }
}

/* About&Work 画像とテキストの横並び
----------------------------------------------*/
.r-top__block--wrapper {
  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;
  gap: 80px;
}
@media screen and (max-width: 1064px) {
  .r-top__block--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.r-top__block--contents {
  width: 445px;
}
@media screen and (max-width: 1064px) {
  .r-top__block--contents {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .r-top__block--contents {
    width: 100%;
  }
}

.r-top__block--title {
  color: #2E8D1B;
}

.r-top__block--text {
  margin-block: 48px 40px;
  line-height: 150%;
}
@media screen and (max-width: 1064px) {
  .r-top__block--text {
    margin-block: 24px;
  }
}

.r-top__block--img {
  width: 500px;
}
@media screen and (max-width: 1064px) {
  .r-top__block--img {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .r-top__block--img {
    width: 100%;
  }
}

/* About
----------------------------------------------*/
.about {
  padding-block: 120px;
}
@media screen and (max-width: 1064px) {
  .about {
    padding-block: 80px;
  }
}

.r-top__block--about {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 1064px) {
  .r-top__block--about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* Our Work
----------------------------------------------*/
.work {
  padding-block: 120px;
}
@media screen and (max-width: 1064px) {
  .work {
    padding-block: 80px;
  }
}

.r-top__block--work {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1064px) {
  .r-top__block--work {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* Image Slide
----------------------------------------------*/
.img-slide {
  padding-block: 80px;
  overflow: hidden;
}
@media screen and (max-width: 1064px) {
  .img-slide {
    padding-block: 60px;
  }
}

@-webkit-keyframes marquee-right {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.img-slide__wrapper {
  -webkit-animation: marquee-right 20s linear infinite;
          animation: marquee-right 20s linear infinite; /* 20s スクロール1回にかかる秒数 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.img-slide__content {
  width: 500px;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .img-slide__content {
    width: 450px;
    height: 450px;
  }
}
@media screen and (max-width: 600px) {
  .img-slide__content {
    width: 350px;
    height: 350px;
  }
}
.img-slide__content img {
  border-radius: 12px;
}

.img-slide1 img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.img-slide2 .slide2-img1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
}
.img-slide2 .slide2-img2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
}

.img-slide3 img {
  position: absolute;
  bottom: 10%;
}

.img-slide4 img {
  position: absolute;
  top: 0;
}

.img-slide5 .slide5-img1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
}
.img-slide5 .slide5-img2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
}

/*トップページ h2
----------------------------------------------*/
.r-top__title--wrap p {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 600;
}
@media screen and (max-width: 1064px) {
  .r-top__title--wrap p {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .r-top__title--wrap p {
    font-size: 32px;
  }
}
.r-top__title--wrap h2 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1064px) {
  .r-top__title--wrap h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .r-top__title--wrap h2 {
    font-size: 16px;
  }
}

/* 下層ページ 見出しトップ
----------------------------------------------*/
.page__header {
  background: #2E8D1B;
  margin-inline: 40px;
  border-radius: 12px;
  height: 240px;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .page__header {
    margin-inline: 24px;
    height: 220px;
  }
}
@media screen and (max-width: 600px) {
  .page__header {
    margin-inline: 16px;
    height: 140px;
  }
}

.page__header--inner {
  margin-inline: 80px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 1064px) {
  .page__header--inner {
    margin-inline: 40px;
  }
}

.page__header--en {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .page__header--en {
    font-size: 18px;
  }
}

.page__header--ja {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .page__header--ja {
    font-size: 24px;
  }
}

.environment {
  padding-block: 120px;
  background: #EDF3EB;
}
@media screen and (max-width: 1064px) {
  .environment {
    padding-block: 80px;
  }
}

.environ_contents--wrapper {
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .environ_contents--wrapper {
    margin-top: 40px;
  }
}

.environ__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #D9D9D9;
  padding: 40px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1064px) {
  .environ__unit {
    gap: 28px;
    padding: 56px 16px 40px;
  }
}
@media screen and (max-width: 600px) {
  .environ__unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.environ__unit:first-of-type {
  border-top: 1px solid #D9D9D9;
}
.environ__unit:hover {
  background: #fff;
  color: #2E8D1B;
}

.environ__unit--content {
  padding-left: 60px;
}
@media screen and (max-width: 1064px) {
  .environ__unit--content {
    padding-left: 0;
  }
}

.environ__unit--title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1064px) {
  .environ__unit--title-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}

.environ__unit--title {
  color: #2E8D1B;
  font-size: 32px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
@media screen and (max-width: 600px) {
  .environ__unit--title {
    font-size: 24px;
  }
}
.environ__unit--title::before {
  position: absolute;
  color: #2E8D1B;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 10%;
  padding: 2px 12px;
  border: 1px solid #D9D9D9;
  display: inline-block;
  border-radius: 12px;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1064px) {
  .environ__unit--title::before {
    left: 0;
    top: -16px;
    font-size: 14px;
    padding: 1px 8px;
  }
}

.environ__unit--title1::before {
  content: "01";
}

.environ__unit--title2::before {
  content: "02";
}

.environ__unit--title3::before {
  content: "03";
}

.environ__unit--title-sub {
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.environ__unit--text {
  font-weight: 500;
  line-height: 1.8;
  margin-top: 40px;
}
@media screen and (max-width: 1064px) {
  .environ__unit--text {
    margin-top: 24px;
  }
}

.environ__unit--img {
  width: 375px;
}
@media screen and (max-width: 1064px) {
  .environ__unit--img {
    width: 50%;
    max-width: 375px;
  }
}
@media screen and (max-width: 600px) {
  .environ__unit--img {
    width: 100%;
  }
}

.cta {
  background-image: url(../img/cta_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding-block: 80px 120px;
  text-align: center;
}
@media screen and (max-width: 1064px) {
  .cta {
    padding-block: 80px;
  }
}

.r-cta__block--title {
  color: #fff;
}

.cta__text {
  color: #fff;
  line-height: 1.8;
  font-weight: 500;
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .cta__text {
    margin-top: 40px;
  }
}

footer {
  padding-block: 80px 40px;
}
@media screen and (max-width: 600px) {
  footer {
    padding-block: 60px 24px;
  }
}

#footer {
  position: relative;
}

#c-footer {
  position: relative;
}

.page-top__btn {
  position: absolute;
  width: 110px;
  height: 110px;
  right: 24px;
  top: -60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .page-top__btn {
    top: -50px;
    width: 100px;
    height: 100px;
  }
}
.page-top__btn:hover {
  top: -70px;
}

.footer__contents--wrapper {
  margin-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1064px) {
  .footer__contents--wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .footer__contents--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}

.footer__company--name {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__company--name:hover {
  opacity: 0.7;
}
.footer__company--name img {
  width: 130px;
}
.footer__company--name p {
  font-size: 18px;
  color: #2E8D1B;
  font-weight: 700;
}
@media screen and (max-width: 1064px) {
  .footer__company--name p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .footer__company--name p {
    font-size: 15px;
  }
}

.footer__company--address {
  margin-top: 24px;
  line-height: 1.8;
}
@media screen and (max-width: 1064px) {
  .footer__company--address {
    margin-top: 16px;
  }
}

.footer__menu--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1064px) {
  .footer__menu--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
@media screen and (max-width: 600px) {
  .footer__menu--wrapper {
    gap: 24px;
  }
}

.footer__menu-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding-right: 40px;
  border-right: 1px solid #D9D9D9;
}
@media screen and (max-width: 1064px) {
  .footer__menu-1 {
    padding-right: 0;
    border-right: none;
  }
}

.footer__menu-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin-left: 40px;
}
@media screen and (max-width: 1064px) {
  .footer__menu-2 {
    margin-left: 0;
  }
}

.footer__list a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}
.footer__list a:hover {
  color: #2E8D1B;
}

.copy-right {
  font-size: 14px;
  color: #D9D9D9;
  text-align: center;
}

.r-footer__menu--icon {
  width: 14px;
  stroke: #505050;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.r-footer__icon:hover .r-footer__menu--icon {
  stroke: #2E8D1B;
}

.c-footer__menu--icon {
  width: 14px;
  stroke: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-footer__icon:hover .c-footer__menu--icon {
  stroke: #2E8D1B;
}

/* Mission
---------------------------------------------------------*/
.mission {
  padding-block: 120px;
  background-image: url(../img/mission_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1064px) {
  .mission {
    padding-block: 80px;
    background-size: cover;
    background-position: -120px;
  }
}
@media screen and (max-width: 600px) {
  .mission {
    font-size: 60px;
  }
}

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

.mission__title {
  color: #2E8D1B;
  font-size: 56px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .mission__title {
    font-size: 48px;
  }
}
@media screen and (max-width: 600px) {
  .mission__title {
    font-size: 40px;
  }
}
.mission__title::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 40px;
  background: #2E8D1B;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -60px;
}

.mission__word {
  color: #2E8D1B;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 1064px) {
  .mission__word {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .mission__word {
    font-size: 20px;
  }
}

.mission__text {
  margin-top: 60px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 1064px) {
  .mission__text {
    font-size: 16px;
  }
}

/* Origin
---------------------------------------------------------*/
.company__origin {
  padding-block: 120px 60px;
}
@media screen and (max-width: 1064px) {
  .company__origin {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .company__origin {
    padding-block: 60px;
    margin-inline: 16px;
  }
}

.company__origin--wrapper {
  text-align: center;
  background: #fff;
  padding: 60px;
  width: 80%;
  border-radius: 12px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .company__origin--wrapper {
    width: 90%;
    padding: 60px 40px;
  }
}
@media screen and (max-width: 600px) {
  .company__origin--wrapper {
    width: 100%;
    padding: 40px 16px;
  }
}

.company__origin--title {
  font-size: 24px;
  color: #2E8D1B;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .company__origin--title {
    font-size: 18px;
  }
}

.company__origin--text {
  line-height: 1.8;
}

/* OutLine
---------------------------------------------------------*/
.company__outline {
  padding-block: 60px 120px;
}
@media screen and (max-width: 1064px) {
  .company__outline {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .company__outline {
    padding-block: 60px;
    margin-inline: 16px;
  }
}

.company__outline--title {
  font-size: 24px;
  color: #2E8D1B;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .company__outline--title {
    font-size: 18px;
  }
}

.company__outline--content {
  width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .company__outline--content {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .company__outline--content {
    width: 100%;
  }
}

.company__outline--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 24px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 600px) {
  .company__outline--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .company__outline--row {
    padding-block: 16px;
    gap: 8px;
  }
}
.company__outline--row:first-of-type {
  border-top: 1px solid #D9D9D9;
}
.company__outline--row ul {
  list-style-type: disc;
  padding-left: 30px;
}
@media screen and (max-width: 1064px) {
  .company__outline--row ul {
    padding-left: 28px;
  }
}

.company__outline--row-head {
  width: 160px;
  font-weight: 700;
  padding-inline: 16px;
  text-align: center;
}
@media screen and (max-width: 1064px) {
  .company__outline--row-head {
    width: 140px;
    padding-inline: 8px;
  }
}
@media screen and (max-width: 600px) {
  .company__outline--row-head {
    width: 100%;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.company__outline--row-info {
  width: calc(100% - 160px);
  padding-inline: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 1064px) {
  .company__outline--row-info {
    padding-inline: 8px;
    width: calc(100% - 140px);
  }
}
@media screen and (max-width: 600px) {
  .company__outline--row-info {
    width: 100%;
  }
}
.company__outline--row-info iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.company__outline--btn-wrapper {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .company__outline--btn-wrapper {
    margin-top: 24px;
  }
}

.r-work__content--block {
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .r-work__content--block {
    margin-top: 40px;
  }
}

.r-work__content--wrapper {
  background: #fff;
  padding: 80px 40px;
  border-radius: 12px;
}
@media screen and (max-width: 1064px) {
  .r-work__content--wrapper {
    padding: 40px 16px;
  }
}

.r-work__content--img-head {
  text-align: center;
  color: #2E8D1B;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 1064px) {
  .r-work__content--img-head {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .r-work__content--img-head {
    font-size: 16px;
  }
}

.r-work__content--ima-wrapper {
  text-align: center;
}

.r-work__content--img-pc {
  width: 900px;
}
@media screen and (max-width: 1064px) {
  .r-work__content--img-pc {
    display: none;
  }
}

.r-work__content--img-tab {
  width: 520px;
  display: none;
}
@media screen and (max-width: 1064px) {
  .r-work__content--img-tab {
    display: inline-block;
  }
}
@media screen and (max-width: 600px) {
  .r-work__content--img-tab {
    display: none;
  }
}

.r-work__content--img-sp {
  width: 180px;
  display: none;
}
@media screen and (max-width: 600px) {
  .r-work__content--img-sp {
    display: inline-block;
  }
}

.role__title {
  font-size: 24px;
  color: #2E8D1B;
  font-weight: 700;
  text-align: center;
  margin-block: 80px 40px;
}
@media screen and (max-width: 600px) {
  .role__title {
    font-size: 18px;
    margin-block: 60px 24px;
  }
}

.role__text {
  text-align: center;
  line-height: 1.8;
  width: 60%;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .role__text {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .role__text {
    width: 100%;
  }
}
.role__text span {
  color: #2E8D1B;
  font-weight: 700;
}

.worry__wrapper {
  text-align: center;
}

.worry__text {
  margin-top: 60px;
  text-align: center;
  font-size: 24px;
  color: #2E8D1B;
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 2px solid #2E8D1B;
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .worry__text {
    font-size: 20px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 600px) {
  .worry__text {
    font-size: 16px;
  }
}

.r-work__user--wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 1064px) {
  .r-work__user--wrapper {
    margin-top: 60px;
  }
}

.r-work__user--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1064px) {
  .r-work__user--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.r-work__user--individual {
  padding-bottom: 48px;
  border-bottom: 1px solid #D9D9D9;
}

.r-work__user--corporation {
  padding-block: 48px;
  border-bottom: 1px solid #D9D9D9;
}

.r-work__user--content-icon {
  width: 180px;
}

.r-work__user--content-head {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #2E8D1B;
  margin-bottom: 8px;
}

.r-work__content--lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  width: 666px;
}
@media screen and (max-width: 1064px) {
  .r-work__content--lists {
    width: 100%;
  }
}

.r-work__content--list {
  position: relative;
  padding-left: 24px;
}
.r-work__content--list::before {
  position: absolute;
  content: "";
  background-image: url(../img/check_green.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.work__message {
  text-align: center;
  color: #2E8D1B;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  margin-top: 60px;
}
@media screen and (max-width: 1064px) {
  .work__message {
    font-size: 18px;
  }
}
/* Work Style
---------------------------------------------------------*/
.work-style {
  padding-block: 120px 60px;
}
@media screen and (max-width: 1064px) {
  .work-style {
    padding-block: 80px;
  }
}
@media screen and (max-width: 600px) {
  .work-style {
    padding-block: 40px;
    margin-inline: 16px;
  }
}

.work-style__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1064px) {
  .work-style__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-inline: 40px;
  }
}
@media screen and (max-width: 600px) {
  .work-style__wrapper {
    margin-inline: 0;
    gap: 24px;
  }
}

.work-style__title {
  color: #2E8D1B;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 1064px) {
  .work-style__title {
    margin-bottom: 24px;
  }
}

.work-style__text {
  line-height: 1.8;
}

.work-style__img {
  max-width: 420px;
}
@media screen and (max-width: 1064px) {
  .work-style__img {
    max-width: 100%;
  }
}

/* Data
---------------------------------------------------------*/
.r-data {
  padding-block: 60px;
}

.r-environ__title {
  color: #2E8D1B;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1064px) {
  .r-environ__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .r-environ__title {
    font-size: 28px;
  }
}
.r-environ__title span {
  font-family: "Montserrat", sans-serif;
}

.r-environ__data--title {
  position: relative;
}
.r-environ__data--title::after {
  position: absolute;
  content: "※2026年1月現在";
  font-size: 14px;
  color: #505050;
  bottom: 8px;
  padding-left: 16px;
}
@media screen and (max-width: 600px) {
  .r-environ__data--title::after {
    font-size: 12px;
    bottom: -20px;
    padding-left: 0;
    margin-left: -98px;
  }
}

.r-data__contents--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .r-data__contents--wrapper {
    gap: 40px;
    max-width: 600px;
  }
}
@media screen and (max-width: 600px) {
  .r-data__contents--wrapper {
    max-width: 300px;
  }
}

.r-data__row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .r-data__row1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.data__small {
  background: #fff;
  border-radius: 12px;
  width: 350px;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1064px) {
  .data__small {
    gap: 28px;
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 600px) {
  .data__small {
    width: 300px;
    height: 300px;
  }
}

.data__large {
  background: #fff;
  border-radius: 12px;
  padding: 40px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.data__content--title {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1064px) {
  .data__content--title {
    font-size: 20px;
  }
}

.data1 img {
  width: 90px;
  height: auto;
}
@media screen and (max-width: 1064px) {
  .data1 img {
    width: 80px;
  }
}

.data1__number--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 16px;
}

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

.data1__text--title {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1064px) {
  .data1__text--title {
    font-size: 18px;
  }
}

.data1__text--numb {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #2E8D1B;
}
@media screen and (max-width: 1064px) {
  .data1__text--numb {
    font-size: 40px;
  }
}

.data1__mark {
  font-size: 48px;
}
@media screen and (max-width: 1064px) {
  .data1__mark {
    font-size: 40px;
  }
}

.data2 {
  background: #fff;
  border-radius: 12px;
}
.data2 img {
  width: 104px;
  height: auto;
}
@media screen and (max-width: 1064px) {
  .data2 img {
    width: 80px;
  }
}

.data2_text {
  color: #2E8D1B;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 1064px) {
  .data2_text {
    font-size: 40px;
  }
}

.data2_unit {
  font-weight: 500;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1064px) {
  .data2_unit {
    font-size: 18px;
  }
}

.data3__content--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1064px) {
  .data3__content--wrapper {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .data3__content--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.data3__graph {
  width: 230px;
  height: 230px;
}
@media screen and (max-width: 1064px) {
  .data3__graph {
    width: 180px;
    height: 180px;
  }
}

.data3__rank {
  width: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1064px) {
  .data3__rank {
    gap: 24px;
  }
}

.data__rank--normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 8px 8px;
  border-bottom: 1px solid #505050;
}

.data__rank--normal--title {
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1064px) {
  .data__rank--normal--title {
    font-size: 18px;
  }
}

.data__rank--normal--data {
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1064px) {
  .data__rank--normal--data {
    font-size: 18px;
  }
}

.data3__countup2 {
  font-size: 16px;
  padding-left: 8px;
}

.data__rank--emphasis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 8px 8px;
  border-bottom: 2px solid #2E8D1B;
}

.data__rank--emphasis--title {
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #2E8D1B;
}
@media screen and (max-width: 1064px) {
  .data__rank--emphasis--title {
    font-size: 22px;
  }
}

.data__rank--emphasis--data {
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #2E8D1B;
}
@media screen and (max-width: 1064px) {
  .data__rank--emphasis--data {
    font-size: 22px;
  }
}

.data3__unit--emphasis {
  font-size: 16px;
  color: #2E8D1B;
}
@media screen and (max-width: 1064px) {
  .data3__unit--emphasis {
    font-size: 14px;
  }
}

.data3__countup2--emphasis {
  font-size: 16px;
  color: #2E8D1B;
  padding-left: 8px;
}
@media screen and (max-width: 1064px) {
  .data3__countup2--emphasis {
    font-size: 14px;
  }
}

.data4 {
  background: #fff;
  border-radius: 12px;
}

.data4_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .data4_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.data4__content--wrapper {
  text-align: center;
}
.data4__content--wrapper img {
  width: 100px;
}
@media screen and (max-width: 1064px) {
  .data4__content--wrapper img {
    width: 80px;
  }
}
.data4__content--wrapper p {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1064px) {
  .data4__content--wrapper p {
    font-size: 16px;
  }
}

.data5 {
  background: #fff;
  border-radius: 12px;
}

.data6 {
  background: #fff;
  border-radius: 12px;
}

.data6__content--wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 600px) {
  .data6__content--wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.grid__content {
  font-size: 24px;
  color: #2E8D1B;
  font-weight: 500;
  padding-left: 80px;
}
@media screen and (max-width: 1064px) {
  .grid__content {
    font-size: 18px;
    padding-left: 54px;
  }
}

.data6__content--1 {
  position: relative;
}
.data6__content--1::before {
  content: "";
  position: absolute;
  background-image: url(../img/data6__icon-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1064px) {
  .data6__content--1::before {
    width: 40px;
    height: 40px;
  }
}

.data6__content--2 {
  position: relative;
}
.data6__content--2::before {
  content: "";
  position: absolute;
  background-image: url(../img/data6__icon-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1064px) {
  .data6__content--2::before {
    width: 40px;
    height: 40px;
  }
}

.data6__content--3 {
  position: relative;
}
.data6__content--3::before {
  content: "";
  position: absolute;
  background-image: url(../img/data6__icon-3.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1064px) {
  .data6__content--3::before {
    width: 40px;
    height: 40px;
  }
}

.data6__content--4 {
  position: relative;
}
.data6__content--4::before {
  content: "";
  position: absolute;
  background-image: url(../img/data6__icon-4.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1064px) {
  .data6__content--4::before {
    width: 40px;
    height: 40px;
  }
}

.data7 {
  background: #fff;
  border-radius: 12px;
}

.data8 {
  background: #fff;
  border-radius: 12px;
  padding-inline: 24px;
}

.data8__content--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.data8__content {
  font-size: 24px;
  font-weight: 500;
  padding-left: 50px;
}
@media screen and (max-width: 1064px) {
  .data8__content {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .data8__content {
    font-size: 16px;
    padding-left: 42px;
  }
}

.data8__content--1 {
  position: relative;
}
.data8__content--1::before {
  content: "";
  position: absolute;
  background-image: url(../img/data8__img1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .data8__content--1::before {
    width: 32px;
    height: 36px;
  }
}

.data8__content--2 {
  position: relative;
}
.data8__content--2::before {
  content: "";
  position: absolute;
  background-image: url(../img/data8__img2.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .data8__content--2::before {
    width: 32px;
    height: 32px;
  }
}

.data8__content--3 {
  position: relative;
}
.data8__content--3::before {
  content: "";
  position: absolute;
  background-image: url(../img/data8__img3.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .data8__content--3::before {
    width: 32px;
    height: 32px;
  }
}

.data8__content--4 {
  position: relative;
}
.data8__content--4::before {
  content: "";
  position: absolute;
  background-image: url(../img/data8__img4.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .data8__content--4::before {
    width: 32px;
    height: 32px;
  }
}

.data8__content--5 {
  position: relative;
}
.data8__content--5::before {
  content: "";
  position: absolute;
  background-image: url(../img/data8__img5.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 36px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .data8__content--5::before {
    width: 32px;
    height: 29px;
  }
}

.data8__content--6 {
  position: relative;
}
.data8__content--6::before {
  content: "";
  position: absolute;
  background-image: url(../img/data8__img6.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .data8__content--6::before {
    width: 32px;
    height: 32px;
  }
}

.data8__content--7 {
  position: relative;
}
.data8__content--7::before {
  content: "";
  position: absolute;
  background-image: url(../img/data8__img7.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 33px;
  height: 55px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .data8__content--7::before {
    width: 24px;
    height: 40px;
  }
}

/* Interview
---------------------------------------------------------*/
.interview {
  padding-block: 60px 120px;
}
@media screen and (max-width: 600px) {
  .interview {
    padding-block: 40px 80px;
  }
}

.interview__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.interview__card {
  max-width: 200px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.interview__card:hover {
  opacity: 0.7;
}

.interview__card--img {
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .interview__card--img {
    margin-bottom: 4px;
  }
}

.interview__card--title {
  color: #2E8D1B;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .interview__card--title {
    font-size: 20px;
    margin-bottom: 0;
  }
}

.interview__card--text {
  font-weight: 500;
}

.entry__section {
  padding-bottom: 120px;
}
@media screen and (max-width: 1064px) {
  .entry__section {
    padding-bottom: 80px;
  }
}

.entry__inner {
  background: #fff;
  margin-inline: 40px;
  border-radius: 12px;
  padding: 80px 16px;
}
@media screen and (max-width: 600px) {
  .entry__inner {
    margin-inline: 20px;
    padding: 40px 16px;
  }
}

.entry_title {
  color: #2E8D1B;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1064px) {
  .entry_title {
    font-size: 28px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 600px) {
  .entry_title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.entry__content--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.entry__text {
  margin-bottom: 28px;
}

.entry__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.entry__tel img {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 600px) {
  .entry__tel img {
    width: 28px;
    height: 28px;
  }
}

.entry__tel--number {
  color: #2E8D1B;
  font-size: 40px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4px;
}
@media screen and (max-width: 600px) {
  .entry__tel--number {
    font-size: 32px;
    letter-spacing: 2px;
  }
}

/* Interview Header
-------------------------------------------------------*/
.interview__head {
  width: 700px;
  margin-inline: auto;
  padding-block: 80px;
  position: relative;
  max-width: 700px;
}
@media screen and (max-width: 1064px) {
  .interview__head {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .interview__head {
    width: 100%;
    padding-block: 60px 32px;
  }
}

.interview__head--img {
  width: 100%;
  height: auto;
}

.interview__head--info {
  padding: 16px 32px;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: 24px;
  bottom: 108px;
}
@media screen and (max-width: 600px) {
  .interview__head--info {
    padding: 16px 24px;
  }
}

.interview__head--text {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1064px) {
  .interview__head--text {
    font-size: 16px;
  }
}

.interview__head--name {
  color: #2E8D1B;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1064px) {
  .interview__head--name {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .interview__head--name {
    font-size: 20px;
  }
}

/* Interview Content
-------------------------------------------------------*/
.interview__article {
  padding-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .interview__article {
    padding-bottom: 40px;
  }
}

.interview__content {
  background: #fff;
  border-radius: 12px;
  padding: 60px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 1064px) {
  .interview__content {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .interview__content {
    padding: 40px 16px;
    gap: 32px;
  }
}

.interview__content--unit {
  width: 700px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1064px) {
  .interview__content--unit {
    width: 520px;
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .interview__content--unit {
    width: 100%;
    font-size: 16px;
    gap: 16px;
  }
}

.interview__question {
  padding-left: 30px;
  color: #2E8D1B;
  position: relative;
}
.interview__question::before {
  position: absolute;
  content: "Q";
  font-family: "Montserrat", sans-serif;
  left: 0;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .interview__question::before {
    font-size: 18px;
  }
}

.interview__answer {
  padding-left: 30px;
  position: relative;
}
.interview__answer::before {
  position: absolute;
  content: "A";
  font-family: "Montserrat", sans-serif;
  left: 0;
  font-size: 22px;
  top: 2px;
}
@media screen and (max-width: 600px) {
  .interview__answer::before {
    font-size: 18px;
  }
}

/* 勧誘方針
-------------------------------------------------------*/
.s-policy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1064px) {
  .s-policy__content {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .s-policy__content {
    gap: 32px;
  }
}

.s-policy__head--text {
  color: #2E8D1B;
  font-size: 22px;
  font-weight: 500;
  width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .s-policy__head--text {
    width: 520px;
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .s-policy__head--text {
    width: 100%;
    font-size: 18px;
  }
}

.s-policy__content--unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .s-policy__content--unit {
    width: 520px;
  }
}
@media screen and (max-width: 600px) {
  .s-policy__content--unit {
    width: 100%;
  }
}

.s-policy__content--unit-numb {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  background: #2E8D1B;
  display: inline-block;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
}

.s-policy__content--unit-text {
  line-height: 24px;
  width: calc(100% - 40px);
}

.interview__content--unit {
  width: 700px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1064px) {
  .interview__content--unit {
    width: 520px;
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .interview__content--unit {
    width: 100%;
    font-size: 16px;
    gap: 16px;
  }
}

.s-policy__content--name {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .s-policy__content--name {
    font-size: 14px;
  }
}
.s-policy__content--name span {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .s-policy__content--name span {
    font-size: 18px;
  }
}

/* サイトマップ
-------------------------------------------------------*/
.sitemap__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
}
@media screen and (max-width: 1064px) {
  .sitemap__content {
    gap: 80px;
  }
}
@media screen and (max-width: 600px) {
  .sitemap__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sitemap__content--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.sitemap__content--title {
  color: #2E8D1B;
  font-size: 32px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 32px;
}

.sitemap__content--list {
  font-weight: 500px;
}
.sitemap__content--list > li > a {
  position: relative;
  padding-left: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sitemap__content--list > li > a::before {
  position: absolute;
  content: "";
  background-image: url(../img/sitemap_list-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sitemap__content--list > li > a:hover {
  opacity: 0.7;
}

.sitemap__interview--wrap-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.sitemap__interview--lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-weight: 500px;
  padding-left: 20px;
}
.sitemap__interview--lists > li > a {
  position: relative;
  padding-left: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sitemap__interview--lists > li > a::before {
  position: absolute;
  content: "";
  background-image: url(../img/sitemap_list-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sitemap__interview--lists > li > a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 600px) {
  .sitemap__content--wrapper {
    width: 310px;
  }
}

/* プラグイン「WP Sitemap Page」関連
-------------------------------------------------------*/
/* サイトマップ内のカテゴリー名を非表示にする */
.wsp-category-title {
  display: none !important;
}

.wsp-posts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-weight: 500px;
  padding-left: 10px;
}
.wsp-posts-list > li > a {
  position: relative;
  padding-left: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wsp-posts-list > li > a::before {
  position: absolute;
  content: "";
  background-image: url(../img/sitemap_list-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wsp-posts-list > li > a:hover {
  opacity: 0.7;
}

/* プライバシーポリシー
-------------------------------------------------------*/
.p-policy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1064px) {
  .p-policy__content {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .p-policy__content {
    gap: 32px;
  }
}

.p-policy__content--head {
  width: 700px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1064px) {
  .p-policy__content--head {
    width: 520px;
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-policy__content--head {
    width: 100%;
    font-size: 18px;
  }
}

.p-policy__content--head-title {
  color: #2E8D1B;
  font-size: 24px;
  font-weight: 500;
  padding: 8px;
  border-left: 5px solid #2E8D1B;
}

.p-policy__content--head-c-name {
  font-weight: 500;
  text-align: right;
}

.p-policy__content--head-text {
  line-height: 1.5em;
}

.p-policy__content--unit {
  width: 700px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1064px) {
  .p-policy__content--unit {
    width: 520px;
  }
}
@media screen and (max-width: 600px) {
  .p-policy__content--unit {
    width: 100%;
  }
}
.p-policy__content--unit p {
  line-height: 1.5em;
}
.p-policy__content--unit p a {
  text-decoration: underline;
  color: #0000EE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-policy__content--unit p a:hover {
  color: #FF0000;
}

.p-policy__content--unit-title {
  color: #2E8D1B;
  font-size: 20px;
  font-weight: 500;
  padding: 8px;
  border-bottom: 1px solid #d9d9d9;
}

.p-policy2__box1 {
  text-align: center;
  padding: 8px;
  border: 1px dashed #d9d9d9;
}
@media screen and (max-width: 1064px) {
  .p-policy2__box1 {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.p-policy2__box2 {
  padding: 16px;
  border: 1px solid #2E8D1B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.p-policy2__box2-content ul > li {
  position: relative;
  padding-left: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-policy2__box2-content ul > li::before {
  position: absolute;
  content: "";
  background-image: url(/img/sitemap_list-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-policy2__box2-content ul > li > a {
  text-decoration: underline;
  color: #0000EE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-policy2__box2-content ul > li > a:hover {
  color: #FF0000;
}

.p-policy2__box2-title {
  font-size: 18px;
  color: #2E8D1B;
  font-weight: 500;
  margin-bottom: 16px;
}

.p-policy__content--unit-detail > ul {
  padding-left: 16px;
}

.p-policy13__box {
  padding: 16px;
  border: 1px solid #2E8D1B;
}

.p-policy13__box--title {
  color: #2E8D1B;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

.p-policy13__box--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.p-policy13__contact--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 600px) {
  .p-policy13__contact--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-policy13__contact--head {
  width: 100px;
  color: #2E8D1B;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .p-policy13__contact--head {
    width: 100%;
  }
}

.p-policy13__contact--text {
  padding-left: 8px;
  width: calc(100% - 100px);
}
@media screen and (max-width: 600px) {
  .p-policy13__contact--text {
    padding-left: 0;
    width: 100%;
  }
}

.p-policy__footer--text {
  width: 700px;
  margin-inline: auto;
  text-align: right;
}
@media screen and (max-width: 1064px) {
  .p-policy__footer--text {
    width: 520px;
  }
}
@media screen and (max-width: 600px) {
  .p-policy__footer--text {
    width: 100%;
  }
}

/* お客さま本位の業務運営にかかる方針
-------------------------------------------------------*/
.customer-oriented__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.customer-oriented__head--text {
  width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .customer-oriented__head--text {
    width: 520px;
  }
}
@media screen and (max-width: 600px) {
  .customer-oriented__head--text {
    width: 100%;
  }
}

.customer-oriented__content--wrap {
  width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .customer-oriented__content--wrap {
    width: 520px;
  }
}
@media screen and (max-width: 600px) {
  .customer-oriented__content--wrap {
    width: 100%;
  }
}

.customer-oriented__content--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.customer-oriented__content-title {
  color: #2E8D1B;
  font-size: 24px;
  font-weight: 500;
  padding: 8px;
  border-left: 5px solid #2E8D1B;
}
@media screen and (max-width: 600px) {
  .customer-oriented__content-title {
    font-size: 20px;
  }
}

.customer-oriented__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.customer-oriented__unit ul {
  list-style: disc;
  padding-left: 40px;
}

.customer-oriented__unit-title {
  color: #2E8D1B;
  font-size: 20px;
  font-weight: 500;
  padding: 8px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 600px) {
  .customer-oriented__unit-title {
    font-size: 18px;
  }
}

/* Header
---------------------------------------------------------*/
.c-header__logo--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1064px) {
  .c-header__logo--wrap {
    gap: 8px;
  }
}
.c-header__logo--wrap img {
  width: 130px;
}
@media screen and (max-width: 1064px) {
  .c-header__logo--wrap img {
    width: 110px;
  }
}
@media screen and (max-width: 600px) {
  .c-header__logo--wrap img {
    width: 90px;
  }
}

.c-header__logo--text {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 1064px) {
  .c-header__logo--text {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .c-header__logo--text {
    font-size: 20px;
  }
}

.header__content--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1064px) {
  .header__content--wrapper {
    display: none;
  }
}

.c-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 1064px) {
  .c-header__right {
    display: none;
  }
}

.c-header__right--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-header__tel img {
  width: 28px;
  height: 28px;
}
.c-header__tel p {
  color: #2E8D1B;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.c-header__menu--lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 56px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__content--company {
  font-size: 28px;
  font-weight: 700;
}

.drawer__contact--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.drawer__contact--tel img {
  width: 24px;
  height: 24px;
}
.drawer__contact--tel p {
  color: #2E8D1B;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.drawer__content-name {
  font-weight: 700;
  font-size: 24px;
}

/* MV
---------------------------------------------------------*/
.c-mv {
  width: 100%;
  height: 100svh;
  position: relative;
}
@media screen and (max-width: 1064px) {
  .c-mv {
    height: 650px;
  }
}
@media screen and (max-width: 600px) {
  .c-mv {
    height: 360px;
  }
}
.c-mv::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background: url("../img/c-mv.png") 20%/cover no-repeat;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1064px) {
  .c-mv::before {
    background: url("../img/c-mv__tab.png") top/cover no-repeat;
  }
}
@media screen and (max-width: 600px) {
  .c-mv::before {
    background: url("../img/c-mv__sp.png") 15%/cover no-repeat;
  }
}

.c-mv__content1 {
  position: absolute;
  z-index: 10;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  top: 60%;
  left: 40px;
  -webkit-animation: text-animation1 14s infinite;
          animation: text-animation1 14s infinite;
}
@media screen and (max-width: 1064px) {
  .c-mv__content1 {
    font-size: 28px;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 600px) {
  .c-mv__content1 {
    font-size: 24px;
    left: 16px;
  }
}
@-webkit-keyframes text-animation1 {
  /* 0%〜35%は100%表示 */
  0%, 35% {
    opacity: 1;
  }
  /* 35%〜50%かけてフワッと消える */
  50%, 85% {
    opacity: 0;
  }
  /* 85%〜100%かけてフワッと現れる */
  100% {
    opacity: 1;
  }
}
@keyframes text-animation1 {
  /* 0%〜35%は100%表示 */
  0%, 35% {
    opacity: 1;
  }
  /* 35%〜50%かけてフワッと消える */
  50%, 85% {
    opacity: 0;
  }
  /* 85%〜100%かけてフワッと現れる */
  100% {
    opacity: 1;
  }
}

.c-mv__content2 {
  position: absolute;
  z-index: 10;
  font-size: 60px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  top: 10%;
  right: 40px;
  -webkit-animation: text-animation2 14s infinite;
          animation: text-animation2 14s infinite;
}
@media screen and (max-width: 1064px) {
  .c-mv__content2 {
    font-size: 28px;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 600px) {
  .c-mv__content2 {
    font-size: 24px;
    right: 16px;
  }
}
@-webkit-keyframes text-animation2 {
  /* 0%〜35%は非表示 */
  0%, 35% {
    opacity: 0;
  }
  /* 35%〜50%かけてフワッと現れる */
  50%, 85% {
    opacity: 1;
  }
  /* 85%〜100%かけてフワッと消える */
  100% {
    opacity: 0;
  }
}
@keyframes text-animation2 {
  /* 0%〜35%は非表示 */
  0%, 35% {
    opacity: 0;
  }
  /* 35%〜50%かけてフワッと現れる */
  50%, 85% {
    opacity: 1;
  }
  /* 85%〜100%かけてフワッと消える */
  100% {
    opacity: 0;
  }
}

.c-mv__recruit {
  position: absolute;
  content: "";
  width: 140px;
  height: auto;
  right: 16px;
  bottom: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1064px) {
  .c-mv__recruit {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .c-mv__recruit {
    width: 90px;
  }
}
.c-mv__recruit:hover {
  bottom: 22px;
}

/* アケル
---------------------------------------------------------*/
.c-about__title {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1064px) {
  .c-about__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .c-about__title {
    font-size: 24px;
  }
}
.c-about__title span {
  font-size: 40px;
  color: #2E8D1B;
}
@media screen and (max-width: 1064px) {
  .c-about__title span {
    font-size: 36px;
  }
}
@media screen and (max-width: 600px) {
  .c-about__title span {
    font-size: 32px;
  }
}

/* 取扱い保険商品
---------------------------------------------------------*/
.products {
  padding-bottom: 60px;
}
@media screen and (max-width: 1064px) {
  .products {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .products {
    padding-bottom: 20px;
  }
}

.products__content--unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1064px) {
  .products__content--unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .products__content--unit {
    gap: 28px;
  }
}
.products__content--unit:first-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .products__content--unit:first-of-type {
    margin-bottom: 60px;
  }
}

.products__unit--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: 300px;
  height: 180px;
  border-radius: 12px;
}
@media screen and (max-width: 600px) {
  .products__unit--title {
    width: 250px;
    height: 130px;
  }
}

.products__title--user {
  background: #2E8D1B;
}

.products__title--company {
  background: #1B8D6B;
}

.products__title--icon {
  width: 40px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .products__title--icon {
    width: 32px;
  }
}

.products__title--text {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .products__title--text {
    font-size: 20px;
  }
}

.products__name--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: calc(100% - 360px);
}
@media screen and (max-width: 1064px) {
  .products__name--wrapper {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.products__name {
  color: #2E8D1B;
  padding: 6px 12px;
  border: 1px solid #2E8D1B;
  display: block;
  border-radius: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products__name--company {
  color: #1B8D6B;
  padding: 6px 12px;
  border: 1px solid #1B8D6B;
  display: block;
  border-radius: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 取扱い保険会社一覧
---------------------------------------------------------*/
.products__company {
  padding-top: 80px;
}
@media screen and (max-width: 600px) {
  .products__company {
    padding-top: 60px;
  }
}

.products__company--wrapper {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1064px) {
  .products__company--wrapper {
    grid-template-columns: repeat(2, 280px);
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .products__company--wrapper {
    grid-template-columns: repeat(2, 150px);
    gap: 16px;
  }
}

.products__company--unit {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products__company--unit:hover {
  opacity: 0.7;
}
.products__company--unit img {
  width: 280px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .products__company--unit img {
    width: 150px;
  }
}

/* News
---------------------------------------------------------*/
.top__news {
  padding-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .top__news {
    padding-bottom: 60px;
  }
}

.news__contents {
  width: 896px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1064px) {
  .news__contents {
    width: 100%;
  }
}

.news__content--unit {
  background: #fff;
  padding: 32px 40px;
  width: 100%;
  display: block;
  border-radius: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .news__content--unit {
    padding: 24px 32px;
  }
}
.news__content--unit:hover {
  opacity: 0.7;
}

.news__content--unit-time {
  color: #929292;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .news__content--unit-time {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.news__content--unit-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 600px) {
  .news__content--unit-title {
    font-size: 16px;
  }
}

.pagination {
  margin-block: 40px 80px;
  text-align: center;
}

.pagination a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  opacity: 0.6;
}

.pagination a.next,
.pagination a.prev {
  font-size: 16px;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  color: #2E8D1B;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  height: 35px;
  line-height: 35px;
  margin-right: 14px;
  min-width: 35px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: green;
  color: #fff;
  font-weight: 500;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 35px;
  min-width: initial;
  width: auto;
}

/* Footer
---------------------------------------------------------*/
#c-footer {
  background: #505050;
  color: #fff;
}

.c-footer__company--name {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 250px;
  padding: 16px;
  border-radius: 8px;
}
.c-footer__company--name:hover {
  opacity: 0.7;
}
.c-footer__company--name img {
  width: 130px;
}
.c-footer__company--name p {
  font-size: 18px;
  color: #2E8D1B;
  font-weight: 700;
  display: inline;
}
@media screen and (max-width: 1064px) {
  .c-footer__company--name p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .c-footer__company--name p {
    font-size: 15px;
  }
}

/* ネットde保険 ページ
---------------------------------------------------------*/
.net-insurance__contents {
  width: 780px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .net-insurance__contents {
    width: 100%;
    max-width: 780px;
  }
}

.net-insurance__unit {
  padding: 40px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1064px) {
  .net-insurance__unit {
    gap: 32px;
    padding: 28px 16px;
  }
}
@media screen and (max-width: 600px) {
  .net-insurance__unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.net-insurance__unit:hover {
  opacity: 0.7;
}

.net-insurance__unit-subtitle {
  color: #2E8D1B;
  font-size: 14px;
  padding: 4px 8px;
  border: 1px solid #2E8D1B;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 8px;
}

.net-insurance__unit-title {
  font-size: 24px;
  font-weight: 500;
  color: #2E8D1B;
  margin-bottom: 24px;
}
@media screen and (max-width: 1064px) {
  .net-insurance__unit-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .net-insurance__unit-title {
    font-size: 18px;
  }
}

.net-insurance__unit-text {
  font-size: 15px;
}

.net-insurance__unit-img {
  max-width: 270px;
  height: auto;
}
@media screen and (max-width: 1064px) {
  .net-insurance__unit-img {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  .net-insurance__unit-img {
    width: 100%;
  }
}

.entry {
  background: #fff;
  border-radius: 12px;
  padding: 80px 120px;
  width: 890px;
  margin-inline: auto;
}
@media screen and (max-width: 1064px) {
  .entry {
    width: 100%;
    max-width: 890px;
    padding: 80px 40px;
  }
}
@media screen and (max-width: 600px) {
  .entry {
    padding: 40px 16px;
  }
}

.entry__header {
  margin-bottom: 40px;
}

.entry-published {
  color: #929292;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 10%;
}
@media screen and (max-width: 1064px) {
  .entry-published {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .entry-published {
    font-size: 15px;
  }
}

.entry__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 10%;
  margin-bottom: 28px;
}
@media screen and (max-width: 1064px) {
  .entry__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .entry__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.entry__img {
  width: 100%;
  height: auto;
}
.entry__img img {
  border-radius: 12px;
}

.entry__body h2 {
  font-size: 28px;
  font-weight: 700;
  padding: 4px 8px;
  border-left: 6px solid #2E8D1B;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .entry__body h2 {
    font-size: 22px;
  }
}
.entry__body h3 {
  font-size: 24px;
  padding: 4px 8px;
  font-weight: 700;
  border-bottom: 2px solid #2E8D1B;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .entry__body h3 {
    font-size: 20px;
  }
}
.entry__body h4 {
  font-size: 22px;
  font-weight: 700;
  color: #2E8D1B;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .entry__body h4 {
    font-size: 18px;
  }
}
.entry__body p {
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .entry__body p {
    font-size: 15px;
  }
}
.entry__body strong {
  font-weight: 700;
}
.entry__body a {
  text-decoration: underline;
  color: #0073AA;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.entry__body a:hover {
  opacity: 0.7;
}
.entry__body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.entry__body figure {
  max-width: 100%;
  height: auto;
}
.entry__body figcaption {
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .entry__body figcaption {
    font-size: 15px;
  }
}
.entry__body iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 16px;
}
.entry__body ul {
  list-style-type: disc;
  padding-left: 16px;
  margin-bottom: 16px;
}

.wp-block-buttons {
  margin-bottom: 16px;
}

.error__content {
  padding-inline: 16px;
}

.error__head--content {
  font-family: "Montserrat", sans-serif;
  color: #2E8D1B;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.error__head--content-numb {
  font-size: 96px;
}
@media screen and (max-width: 1064px) {
  .error__head--content-numb {
    font-size: 80px;
  }
}
@media screen and (max-width: 600px) {
  .error__head--content-numb {
    font-size: 56px;
  }
}

.error__head--content-text {
  font-size: 48px;
}
@media screen and (max-width: 1064px) {
  .error__head--content-text {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .error__head--content-text {
    font-size: 24px;
  }
}

.error__text {
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.error__btn--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .error__btn--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}