@charset "UTF-8";
/*
Theme Name: ADD+
Description: 
Author: Metaphor Team
Version: 1.0.0
Text Domain: ADD+
Domain Path: /languages
Tags: corporate, business, responsive, modern, slider
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
:root {
  --color-primary: #231815;
  --color-secondary: #ff7700;
  --color-accent: #ff0000;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #777777;
  --color-gray-50: #fafafa;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #f0f0f0;
  --color-gray-300: #e0e0e0;
  --color-gray-400: #cccccc;
  --color-gray-500: #c8c8c8;
  --color-gray-600: #aeaeae;
  --color-gray-700: #333333;
  --color-gray-800: #1a1a1a;
  --color-gray-900: #2d2d2d;
  --color-dark-bg: #252525;
  --color-blue-bg: #0042ac;
  --color-lightblue-bg: #61bfe4;
  --color-green-bg: #00b56b;
  --color-green: #54ae26;
  --color-yellow-bg: #ffee00;
  --color-yellow-2-bg: #fbff00;
  --color-orange-bg: #f15130;
  --color-card-bg: #323232;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-size-xs: 1rem;
  --font-size-sm: 1.1rem;
  --font-size-base: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.2rem;
  --font-size-5xl: 4rem;
  --font-size-6xl: 6.4rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.5;
  --line-height-loose: 1.6;
  --spacing-xs: 0.4rem;
  --spacing-sm: 0.8rem;
  --spacing-md: 1.2rem;
  --spacing-lg: 1.6rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 2.4rem;
  --spacing-3xl: 3.2rem;
  --spacing-4xl: 4rem;
  --spacing-5xl: 4.8rem;
  --spacing-6xl: 6rem;
  --spacing-8xl: 8rem;
  --spacing-10xl: 12rem;
  --radius-sm: 0.4rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.2rem;
  --radius-xl: 1.6rem;
  --radius-full: 50%;
  --shadow-sm: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  --shadow-md: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 2rem 2.5rem rgba(0, 0, 0, 0.25);
  --shadow-card: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 0.8rem 3rem rgba(0, 0, 0, 0.12);
  --shadow-button: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  --shadow-button-hover: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.15);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --container-max-width: 120rem;
  --container-padding: 2rem;
  --header-height: 8rem;
  --header-height-mobile: 6rem;
  --section-padding: var(--spacing-10xl);
  --section-padding-mobile: var(--spacing-8xl);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-primary);
  background-color: var(--color-white);
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
}
@media (min-width: 960px) {
  body {
    font-size: 1.8rem;
  }
}
@media (max-width: 959px) {
  body {
    font-size: 1.4rem;
  }
}

@media (max-width: 959px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .pc-only {
    display: block;
  }
}

@media (max-width: 959px) {
  .sp-only {
    display: block;
  }
}
@media (min-width: 960px) {
  .sp-only {
    display: none !important;
  }
}

.l-container {
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 959px) {
  .l-container {
    width: calc(100% - 50px);
  }
}
@media (min-width: 960px) {
  .l-container {
    min-width: 870px;
    width: 90%;
    max-width: 1240px;
  }
}

/*
Theme Name: ADD+
Description: 
Author: Metaphor Team
Version: 1.0.0
Text Domain: ADD+
Domain Path: /languages
Tags: corporate, business, responsive, modern, slider
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
.l-header {
  position: fixed;
  width: 100vw;
  padding: 0 30px;
  z-index: 1000;
  background-color: var(--color-white);
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  top: 0;
  left: 0;
}
@media (min-width: 960px) {
  .l-header {
    height: 105px;
  }
}
@media (max-width: 959px) {
  .l-header {
    height: 70px;
  }
}
.l-header__inner {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  .l-header__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 960px) {
  .l-header__inner__logo img {
    height: 72px;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
}
@media (max-width: 959px) {
  .l-header__inner__logo img {
    height: 56px;
    margin: auto;
    display: block;
  }
}

.l-footer {
  text-align: center;
  padding-top: 30px;
}
@media (min-width: 960px) {
  .l-footer {
    min-height: 60px !important;
  }
}
@media (max-width: 959px) {
  .l-footer {
    padding-bottom: 10rem;
  }
}
.l-footer img {
  display: block;
  margin: 0 auto 30px;
}
@media (min-width: 960px) {
  .l-footer img {
    width: 240px;
  }
}
@media (max-width: 959px) {
  .l-footer img {
    width: 200px;
  }
}
.l-footer p {
  margin: 15px 0;
}
@media (min-width: 960px) {
  .l-footer p {
    font-size: 16px;
  }
}
@media (max-width: 959px) {
  .l-footer p {
    font-size: 14px;
  }
}

.c-card {
  position: relative;
  color: var(--color-primary);
  text-decoration: none;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 1px solid var(--color-primary);
}
.c-card:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.c-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-card-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  pointer-events: none;
  z-index: 100;
}

@media (min-width: 960px) {
  .c-card:hover .c-card-screen {
    opacity: 1;
    background-color: attr(data-hover-color);
  }
}

@media (max-width: 959px) {
  .c-card:active .c-card-screen {
    opacity: 1;
    background-color: attr(data-hover-color);
  }
}

.c-card-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: var(--font-size-3xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-3xl) * 0.001 * 0);
  text-decoration: underline;
}
@media (max-width: 959px) {
  .c-card-title {
    top: 0.5rem;
    left: 0.5rem;
  }
}

.c-card-category {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  text-align: right;
  font-size: var(--font-size-xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-xl) * 0.001 * 0);
}
@media (max-width: 959px) {
  .c-card-category {
    bottom: 1rem;
    right: 1rem;
    font-size: var(--font-size-sm);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-sm) * 0.001 * 0);
  }
}

.c-card-image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.c-card-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: calc(100% - 15rem);
  height: calc(100% - 15rem);
}
@media (max-width: 959px) {
  .c-card-image img {
    width: calc(100% - 5rem);
    height: calc(100% - 5rem);
  }
}

@media (min-width: 960px) {
  .c-grid:hover .c-card {
    outline: 1px solid var(--color-gray-300);
  }
  .c-grid:hover .c-card-image {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}

@media (max-width: 959px) {
  .c-grid:active .c-card {
    outline: 1px solid var(--color-gray-300);
  }
  .c-grid:active .c-card-image {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}

@media (min-width: 960px) {
  .c-grid:hover .c-card:hover {
    outline: 1px solid var(--color-primary);
    position: relative;
    z-index: 1000;
  }
  .c-grid:hover .c-card:hover .c-card-image {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}

@media (max-width: 959px) {
  .c-grid:active .c-card:active {
    outline: 1px solid var(--color-primary);
    position: relative;
    z-index: 1000;
  }
  .c-grid:active .c-card:active .c-card-image {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}

.c-grid {
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
}
@media (max-width: 959px) {
  .c-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/*
Theme Name: ADD+
Description: 
Author: Metaphor Team
Version: 1.0.0
Text Domain: ADD+
Domain Path: /languages
Tags: corporate, business, responsive, modern, slider
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
.fixedBtn {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 12px 10px 5px 10px;
  width: 100%;
}
.fixedBtn img {
  width: 100%;
}

.reflection {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.reflection::after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 10s ease-in-out infinite;
}

@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  90% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }
  91% {
    -webkit-transform: scale(6) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  90% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }
  91% {
    -webkit-transform: scale(6) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*
Theme Name: ADD+
Description: 
Author: Metaphor Team
Version: 1.0.0
Text Domain: ADD+
Domain Path: /languages
Tags: corporate, business, responsive, modern, slider
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
.l-cv {
  width: 100%;
}
@media (min-width: 960px) {
  .l-cv {
    background: url("./img/bg/cv.jpg") no-repeat center center;
    padding: 70px 0;
    background-size: cover;
  }
}
@media (max-width: 959px) {
  .l-cv {
    background: url("./img/bg/cv-sp.jpg") no-repeat center center;
    padding: 30px 0;
    background-size: cover;
  }
}
.l-cv__wrapper {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .l-cv__wrapper {
    grid-template-columns: 1fr 2fr;
    gap: 36px;
  }
}
@media (max-width: 959px) {
  .l-cv__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.l-cv__wrapper__item--img {
  width: 100%;
}
@media (min-width: 960px) {
  .l-cv__wrapper__item--img img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 959px) {
  .l-cv__wrapper__item--img img {
    width: 100%;
    margin: auto;
    display: inline;
  }
}
.l-cv__wrapper__item--content__inner {
  width: 100%;
}
.l-cv__wrapper__item--content__inner .underline {
  width: 100%;
  margin-bottom: 20px;
}
.l-cv__wrapper__item--content__inner img {
  margin: 0 auto 30px;
  width: 100%;
}
@media (min-width: 960px) {
  .l-cv__wrapper__item--content__inner img {
    width: 100%;
  }
}
@media (max-width: 959px) {
  .l-cv__wrapper__item--content__inner img {
    margin: auto;
  }
}
.l-cv__wrapper__item--content__inner h4 {
  line-height: 1.5;
  color: var(--color-blue-bg);
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .l-cv__wrapper__item--content__inner h4 {
    font-size: 24px;
  }
}
@media (max-width: 959px) {
  .l-cv__wrapper__item--content__inner h4 {
    font-size: 20px;
  }
}
.l-cv__wrapper__item--content__inner h4 span {
  font-weight: var(--font-weight-black);
}
@media (min-width: 960px) {
  .l-cv__wrapper__item--content__inner h4 span {
    font-size: 36px;
  }
}
@media (max-width: 959px) {
  .l-cv__wrapper__item--content__inner h4 span {
    font-size: 28px;
  }
}
.l-cv__wrapper__item--content a {
  width: 100%;
}
@media (min-width: 960px) {
  .l-cv__wrapper__item--content a img {
    display: block;
    width: 100%;
  }
}
@media (max-width: 959px) {
  .l-cv__wrapper__item--content a img {
    width: 100%;
    display: block;
  }
}
.l-cv__wrapper__item--content .text-small {
  font-size: 1.1rem;
  margin-top: 2rem;
}

/*
Theme Name: ADD+
Description: 
Author: Metaphor Team
Version: 1.0.0
Text Domain: ADD+
Domain Path: /languages
Tags: corporate, business, responsive, modern, slider
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
.l-fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 960px) {
  .l-fv {
    height: calc(100vh - 105px);
    min-height: 800px;
    background: url("./img/fv.jpg") no-repeat center center;
    background-size: cover;
    margin-top: 105px;
  }
}
@media (max-width: 959px) {
  .l-fv {
    height: 70vh;
    background: url("./img/fv-sp.jpg") no-repeat center center;
    background-size: cover;
    margin-top: 70px;
  }
}
.l-fv img {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 959px) {
  .l-fv img {
    width: 32rem;
  }
}
.l-fv__inner {
  position: absolute;
  color: #fff;
  text-shadow: 0.5rem 0.5rem 1.6rem rgba(0, 0, 0, 0.7);
}
@media (min-width: 960px) {
  .l-fv__inner {
    bottom: 10rem;
    left: 10rem;
  }
}
@media (max-width: 959px) {
  .l-fv__inner {
    width: 100%;
    margin: auto;
    display: block;
    bottom: 6rem;
    left: 0;
    text-align: center;
  }
}
.l-fv__inner h1 {
  font-weight: var(--font-weight-black);
  margin-bottom: 5px;
}
@media (min-width: 960px) {
  .l-fv__inner h1 {
    font-size: 56px;
  }
}
@media (max-width: 959px) {
  .l-fv__inner h1 {
    font-size: 22px;
  }
}
.l-fv__inner p {
  font-weight: var(--font-weight-black);
}
@media (min-width: 960px) {
  .l-fv__inner p {
    margin-top: 20px;
    font-size: 24px;
  }
}
@media (max-width: 959px) {
  .l-fv__inner p {
    font-size: 13px;
    margin-top: 10px;
  }
}

.l-lead {
  padding: 85px 0;
  text-align: center;
}
@media (min-width: 960px) {
  .l-lead {
    background: url("./img/bg/lead.jpg") no-repeat center center;
    background-size: cover;
  }
}
@media (max-width: 959px) {
  .l-lead {
    background: url("./img/bg/lead-sp.jpg") no-repeat center center;
    background-size: cover;
  }
}
.l-lead h3 {
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .l-lead h3 {
    font-size: 24px;
  }
}
@media (max-width: 959px) {
  .l-lead h3 {
    font-size: 20px;
  }
}
.l-lead h2 {
  font-size: 40px;
  font-weight: var(--font-weight-black);
  color: var(--color-yellow-bg);
  line-height: 200%;
  margin-bottom: 40px;
  letter-spacing: 3px;
  position: relative;
}
@media (max-width: 959px) {
  .l-lead h2 {
    font-size: 2.4rem;
  }
}
.l-lead p {
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: 150%;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .l-lead p {
    font-size: 24px;
  }
}
@media (max-width: 959px) {
  .l-lead p {
    font-size: 1.6rem;
  }
}

.l-appeal-01 {
  padding: 4rem 0;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.l-appeal-01 h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-green);
  font-size: 3.6rem;
  font-weight: 900;
}
@media (max-width: 959px) {
  .l-appeal-01 h2 {
    font-size: 2.4rem;
  }
}
.l-appeal-01__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 959px) {
  .l-appeal-01__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6rem;
  }
}
.l-appeal-01__row p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.l-appeal-01__circle {
  background-color: var(--color-green);
  width: 24rem;
  height: 24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
  position: relative;
}
@media (max-width: 959px) {
  .l-appeal-01__circle {
    width: 100%;
    height: 5rem;
    font-size: 1.4rem;
    border-radius: 100rem;
  }
}
.l-appeal-01__circle p {
  margin-bottom: 0;
}
.l-appeal-01__circle:not(:last-child)::after {
  content: "▶︎";
  color: var(--color-green);
  position: absolute;
  top: calc(50% - 36px);
  right: -64px;
  font-size: 3.6rem;
}
@media (max-width: 959px) {
  .l-appeal-01__circle:not(:last-child)::after {
    content: "▼";
    top: 110%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    font-size: 2.8rem;
  }
}
@media (max-width: 959px) {
  .l-appeal-01__col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}
@media (max-width: 959px) {
  .l-appeal-01__col img {
    width: 10rem;
  }
}
.l-appeal-01__problem ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media (max-width: 959px) {
  .l-appeal-01__problem ul {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }
}
.l-appeal-01__problem li {
  background-color: var(--color-green);
  color: #fff;
  border-radius: 0.4rem;
  text-align: center;
  font-weight: bold;
  padding: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.l-appeal-01__column {
  border-radius: 1.6rem;
  padding: 2.4rem;
  background: #efefef;
  margin-top: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
}
@media (max-width: 959px) {
  .l-appeal-01__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 959px) {
  .l-appeal-01__column img {
    width: 100%;
  }
}

.l-appeal-02 {
  background-image: url(./img/bg/green.jpg);
  padding: 4rem;
}
@media (max-width: 959px) {
  .l-appeal-02 {
    padding: 4rem 0;
  }
}
.l-appeal-02 .l-container {
  padding: 0 8rem;
}
@media (max-width: 959px) {
  .l-appeal-02 .l-container {
    padding: 0;
  }
}
.l-appeal-02__title {
  text-align: center;
  color: #00b56b;
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
@media (max-width: 959px) {
  .l-appeal-02__title {
    font-size: 2.4rem;
  }
}
.l-appeal-02__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 959px) {
  .l-appeal-02__row {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-appeal-02__row h2 {
  margin-bottom: 1.6rem;
}
@media (max-width: 959px) {
  .l-appeal-02__row h2 {
    font-size: 1.8rem;
  }
}
.l-appeal-02__column {
  background-color: #fff;
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 3rem;
}
.l-appeal-02__column h2 {
  text-align: center;
  color: #00b56b;
  margin-bottom: 3rem;
}
@media (max-width: 959px) {
  .l-appeal-02__column h2 {
    font-size: 1.6rem;
  }
}
.l-appeal-02__column__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media (max-width: 959px) {
  .l-appeal-02__column__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-appeal-02__column__col {
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
}
@media (max-width: 959px) {
  .l-appeal-02__column__col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}
.l-appeal-02__column__col img {
  width: 100%;
}
@media (max-width: 959px) {
  .l-appeal-02__column__col img {
    width: 15rem;
  }
}
.l-appeal-02__column__col p {
  font-size: 1.4rem;
}

.l-cover {
  padding: 6rem 0;
}
.l-cover h2 {
  font-size: 4.8rem;
  font-weight: 900;
  text-align: center;
  color: var(--color-green);
  margin: 4rem auto;
}

@media (min-width: 960px) {
  .l-point__item {
    padding: 60px 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 959px) {
  .l-point__item {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 960px) {
  .l-point__item .l-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 2.4rem;
  }
}
@media (max-width: 959px) {
  .l-point__item .l-container {
    padding: 50px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.l-point__item .l-container p {
  margin-bottom: 30px;
}
.l-point__item .l-container img {
  width: 100%;
}
@media (min-width: 960px) {
  .l-point__item__content {
    min-width: 57rem;
  }
}
.l-point__item__content .number {
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-bold);
  color: var(--color-green);
}
@media (min-width: 960px) {
  .l-point__item__content .number {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 959px) {
  .l-point__item__content .number {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.l-point__item__content .number span {
  font-weight: var(--font-weight-semibold);
  margin-left: 5px;
}
@media (min-width: 960px) {
  .l-point__item__content .number span {
    font-size: 56px;
  }
}
@media (max-width: 959px) {
  .l-point__item__content .number span {
    font-size: 36px;
  }
}
.l-point__item__content h2 {
  font-weight: var(--font-weight-medium);
  line-height: 64px;
  color: var(--color-green);
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .l-point__item__content h2 {
    font-size: 32px;
    line-height: 150%;
  }
}
@media (max-width: 959px) {
  .l-point__item__content h2 {
    font-size: 20px;
    line-height: 200%;
  }
}
.l-point__item__content h2 span {
  font-weight: var(--font-weight-black);
}
@media (min-width: 960px) {
  .l-point__item__content h2 span {
    font-size: 48px;
  }
}
@media (max-width: 959px) {
  .l-point__item__content h2 span {
    font-size: 30px;
  }
}
@media (max-width: 959px) {
  .l-point__item__content p {
    font-size: 16px;
    line-height: 32px;
  }
}
@media (max-width: 959px) {
  .l-point__item__img {
    margin-top: 2rem;
  }
}
.l-point__item__img img {
  width: 100%;
  max-width: 620px;
}
.l-point__item--reverse {
  background-color: var(--color-green);
}
@media (min-width: 960px) {
  .l-point__item--reverse .l-container {
    padding: 60px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 2.4rem;
  }
}
@media (max-width: 959px) {
  .l-point__item--reverse .l-container {
    padding: 50px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.l-point__item--reverse .l-container h2,
.l-point__item--reverse .l-container h3,
.l-point__item--reverse .l-container p {
  color: var(--color-white);
}
.l-point__item--reverse .l-container p {
  margin-bottom: 30px;
}
.l-point__item--reverse .l-container img {
  width: 100%;
}

.l-recommendation {
  background-color: var(--color-yellow-2-bg);
  position: relative;
}
@media (min-width: 960px) {
  .l-recommendation {
    padding: 140px 0;
  }
}
@media (max-width: 959px) {
  .l-recommendation {
    padding: 100px 0;
  }
}
.l-recommendation::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("./img/bg/attention.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  height: 65px;
  width: 100%;
}
.l-recommendation::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("./img/bg/attention.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 65px;
  width: 100%;
}
.l-recommendation__wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (min-width: 960px) {
  .l-recommendation__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 959px) {
  .l-recommendation__wrapper {
    text-align: center;
    display: block;
  }
}
@media (min-width: 960px) {
  .l-recommendation__wrapper__item img {
    margin-right: 30px;
  }
}
@media (max-width: 959px) {
  .l-recommendation__wrapper__item img {
    width: 100px;
    margin: 0 auto 30px auto;
  }
}
.l-recommendation__wrapper__item h1 {
  font-weight: var(--font-weight-black);
  line-height: 150%;
}
@media (min-width: 960px) {
  .l-recommendation__wrapper__item h1 {
    font-size: 40px;
  }
}
@media (max-width: 959px) {
  .l-recommendation__wrapper__item h1 {
    font-size: 28px;
  }
}
.l-recommendation__wrapper__item h1 span {
  font-weight: var(--font-weight-black);
}
@media (min-width: 960px) {
  .l-recommendation__wrapper__item h1 span {
    font-size: 64px;
  }
}
@media (max-width: 959px) {
  .l-recommendation__wrapper__item h1 span {
    font-size: 36px;
  }
}
.l-recommendation__wrapper__item p {
  font-weight: var(--font-weight-black);
}
@media (min-width: 960px) {
  .l-recommendation__wrapper__item p {
    font-size: 40px;
  }
}
@media (max-width: 959px) {
  .l-recommendation__wrapper__item p {
    font-size: 20px;
  }
}

.l-case {
  background-image: url("./img/bg/case.jpg");
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media (min-width: 960px) {
  .l-case {
    padding: 105px 0;
  }
}
@media (max-width: 959px) {
  .l-case {
    padding: 55px 0;
  }
}
@media (min-width: 960px) {
  .l-case .l-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 960px) {
  .l-case__wrapper {
    width: 100%;
  }
}
@media (max-width: 959px) {
  .l-case__wrapper {
    margin-bottom: 40px;
  }
}
.l-case__wrapper h3 {
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}
@media (min-width: 960px) {
  .l-case__wrapper h3 {
    font-size: 32px;
    margin-bottom: 28px;
  }
}
@media (max-width: 959px) {
  .l-case__wrapper h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
.l-case__wrapper h3 span img {
  margin-right: 10px;
}
.l-case__wrapper__item {
  display: grid;
}
@media (min-width: 960px) {
  .l-case__wrapper__item {
    gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 959px) {
  .l-case__wrapper__item {
    gap: 8px;
    grid-template-columns: 1fr;
  }
}
.l-case__wrapper__item__inner {
  background-color: var(--color-yellow-bg);
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  font-weight: var(--font-weight-black);
}
@media (min-width: 960px) {
  .l-case__wrapper__item__inner {
    height: 240px;
  }
}
@media (max-width: 959px) {
  .l-case__wrapper__item__inner {
    height: auto;
    font-size: 16px;
    padding: 2rem;
  }
}
.l-case__wrapper__item__inner span {
  font-size: 2.4rem;
}
@media (max-width: 959px) {
  .l-case__wrapper__item__inner span {
    font-size: 2.4rem;
  }
}
.l-case__wrapper__bottom {
  margin-top: 10rem;
}
.l-case__wrapper__bottom h3 {
  text-align: center;
}
.l-case__wrapper__bottom__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 959px) {
  .l-case__wrapper__bottom__item {
    grid-template-columns: 1fr;
  }
}
.l-case__wrapper__bottom__item__child {
  background-color: var(--color-yellow-bg);
  padding: 2rem;
}
.l-case__wrapper__bottom__item__child h4 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.l-case__wrapper__bottom__item__child p {
  font-size: 1.5rem;
}

.l-guideline {
  background-color: #0f57c9;
  padding: 5rem;
}
@media (max-width: 959px) {
  .l-guideline {
    padding: 2rem 0;
  }
}
.l-guideline h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 5rem;
}
.l-guideline h2 span {
  color: #0f57c9;
  background-color: #fff;
  padding: 0 0.5rem;
  margin: 0 1rem;
  font-size: 3.6rem;
}
@media (max-width: 959px) {
  .l-guideline h2 span {
    font-size: 2.4rem;
  }
}
.l-guideline__inner__box {
  border-radius: 1rem;
  border: 2px solid #fff;
  padding: 4rem 6rem;
  position: relative;
}
@media (max-width: 959px) {
  .l-guideline__inner__box {
    padding: 4rem 2rem;
  }
}
.l-guideline__inner__box h3 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  background-color: #0f57c9;
  padding: 0 4rem;
}
@media (max-width: 959px) {
  .l-guideline__inner__box h3 {
    padding: 0;
    width: 90%;
    text-align: center;
  }
}
.l-guideline__inner__box__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.l-guideline__inner__box__row__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 0.8rem;
  text-align: center;
  font-weight: bold;
  padding: 3rem;
}
.l-guideline__inner__box p {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.l-harassment {
  background-size: cover;
  width: 100%;
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  .l-harassment {
    background: url("./img/bg/harassment.jpg") no-repeat center center;
    height: 516px;
    background-size: 100%;
  }
}
@media (max-width: 959px) {
  .l-harassment {
    background: url("./img/bg/harassment-sp.jpg") no-repeat center center;
    height: 70vh;
    background-size: 100%;
  }
}
.l-harassment__content {
  position: absolute;
  color: var(--color-white);
  text-align: center;
}
@media (min-width: 960px) {
  .l-harassment__content {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (max-width: 959px) {
  .l-harassment__content {
    bottom: 10%;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
.l-harassment__content h1 {
  font-weight: var(--font-weight-black);
  margin-bottom: 20px;
  line-height: 150%;
}
@media (min-width: 960px) {
  .l-harassment__content h1 {
    font-size: 45px;
  }
}
@media (max-width: 959px) {
  .l-harassment__content h1 {
    font-size: 36px;
  }
}
.l-harassment__content p {
  font-weight: var(--font-weight-bold);
  line-height: 200%;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .l-harassment__content p {
    font-size: 24px;
  }
}
@media (max-width: 959px) {
  .l-harassment__content p {
    font-size: 20px;
  }
}

.l-warning {
  text-align: center;
  padding: 6rem 0;
}
@media (max-width: 959px) {
  .l-warning {
    padding: 3rem 0;
  }
}
.l-warning h2 {
  font-weight: var(--font-weight-black);
  color: var(--color-green);
  margin-bottom: 20px;
  line-height: 150%;
}
@media (min-width: 960px) {
  .l-warning h2 {
    font-size: 48px;
  }
}
@media (max-width: 959px) {
  .l-warning h2 {
    font-size: 28px;
  }
}
.l-warning p {
  font-weight: var(--font-weight-bold);
  line-height: 200%;
}
@media (min-width: 960px) {
  .l-warning p {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 959px) {
  .l-warning p {
    font-size: 18px;
  }
}
.l-warning h3 {
  font-size: 4.8rem;
  font-weight: 900;
  text-align: center;
  color: var(--color-green);
  margin: 4rem auto;
}
@media (max-width: 959px) {
  .l-warning h3 {
    font-size: 2.4rem;
  }
}

.l-merit {
  background: url("./img/bg/merit.jpg") no-repeat center center;
  padding: 60px 0 70px 0;
}
.l-merit h1 {
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  text-align: center;
  line-height: 200%;
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  .l-merit h1 {
    font-size: 32px;
  }
}
@media (max-width: 959px) {
  .l-merit h1 {
    font-size: 16px;
  }
}
.l-merit h1 span {
  font-weight: var(--font-weight-black);
  border-bottom: solid 10px var(--color-yellow-bg);
}
@media (min-width: 960px) {
  .l-merit h1 span {
    font-size: 64px;
  }
}
@media (max-width: 959px) {
  .l-merit h1 span {
    font-size: 40px;
  }
}
.l-merit__wrapper {
  display: grid;
  gap: 16px;
  margin-bottom: 1.6rem;
}
@media (min-width: 960px) {
  .l-merit__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 959px) {
  .l-merit__wrapper {
    grid-template-columns: 1fr;
  }
}
.l-merit__wrapper__item {
  background-color: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  width: 100%;
}
@media (max-width: 959px) {
  .l-merit__wrapper__item {
    height: auto;
    width: 100%;
  }
}
.l-merit__wrapper__item h2 {
  font-weight: var(--font-weight-black);
  color: var(--color-orange-bg);
  margin-bottom: 10px;
}
@media (min-width: 960px) {
  .l-merit__wrapper__item h2 {
    font-size: 30px;
  }
}
@media (max-width: 959px) {
  .l-merit__wrapper__item h2 {
    font-size: 24px;
  }
}
.l-merit__wrapper__item p {
  font-weight: var(--font-weight-bold);
  color: var(--color-gray);
}
.l-merit__wrapper__item p span {
  color: var(--color-orange-bg);
}
@media (min-width: 960px) {
  .l-merit__wrapper__item p {
    font-size: 16px;
  }
}
@media (max-width: 959px) {
  .l-merit__wrapper__item p {
    font-size: 14px;
  }
}

.l-voice {
  background-color: var(--color-lightblue-bg);
  background: url("./img/bg/voice.jpg") no-repeat center center;
}
@media (min-width: 960px) {
  .l-voice {
    padding: 60px 0 70px 0;
  }
}
@media (max-width: 959px) {
  .l-voice {
    padding: 30px 0;
  }
}
.l-voice h1 {
  font-weight: var(--font-weight-bold);
  color: var(--color-blue-bg);
  text-align: center;
  line-height: 200%;
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  .l-voice h1 {
    font-size: 32px;
  }
}
@media (max-width: 959px) {
  .l-voice h1 {
    font-size: 18px;
  }
}
.l-voice h1 span {
  font-weight: var(--font-weight-black);
  border-bottom: solid 10px var(--color-yellow-bg);
}
@media (min-width: 960px) {
  .l-voice h1 span {
    font-size: 64px;
  }
}
@media (max-width: 959px) {
  .l-voice h1 span {
    font-size: 40px;
  }
}
.l-voice__wrapper__item {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  .l-voice__wrapper__item {
    gap: 45px;
    grid-template-columns: 2fr auto;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item {
    gap: 15px;
    grid-template-columns: auto auto;
  }
}
.l-voice__wrapper__item span {
  font-weight: var(--font-weight-black);
  border-bottom: solid 10px var(--color-yellow-bg);
}
@media (min-width: 960px) {
  .l-voice__wrapper__item span {
    font-size: 64px;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item span {
    font-size: 40px;
  }
}
.l-voice__wrapper__item__img {
  text-align: center;
}
.l-voice__wrapper__item__img img {
  height: auto;
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .l-voice__wrapper__item__img img {
    width: 140px;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item__img img {
    width: 60px;
  }
}
.l-voice__wrapper__item__img p {
  font-weight: var(--font-weight-black);
  margin-bottom: 5px;
  line-height: 100%;
}
.l-voice__wrapper__item__img h5 {
  font-weight: var(--font-weight-black);
  line-height: 100%;
}
@media (min-width: 960px) {
  .l-voice__wrapper__item__img h5 {
    font-size: 28px;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item__img h5 {
    font-size: 16px;
  }
}
.l-voice__wrapper__item__content {
  background-color: var(--color-white);
  height: 100%;
  border-radius: 24px;
  position: relative;
}
@media (min-width: 960px) {
  .l-voice__wrapper__item__content {
    padding: 50px 45px;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item__content {
    padding: 15px;
  }
}
@media (min-width: 960px) {
  .l-voice__wrapper__item__content p {
    font-size: 20px;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item__content p {
    font-size: 14px;
  }
}
.l-voice__wrapper__item__content p span {
  font-weight: var(--font-weight-black);
  border-bottom: solid 10px var(--color-yellow-bg);
}
@media (min-width: 960px) {
  .l-voice__wrapper__item__content p span {
    font-size: 64px;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item__content p span {
    font-size: 40px;
  }
}
.l-voice__wrapper__item:nth-child(2n-1) .l-voice__wrapper__item__content:before {
  content: "";
  position: absolute;
  top: 30%;
  width: 30px;
  height: 30px;
  background: url("./img/common/polygon.svg") left center no-repeat;
  -webkit-transform: rotate(300deg);
          transform: rotate(300deg);
}
@media (min-width: 960px) {
  .l-voice__wrapper__item:nth-child(2n-1) .l-voice__wrapper__item__content:before {
    left: -15px;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item:nth-child(2n-1) .l-voice__wrapper__item__content:before {
    left: -10px;
  }
}
.l-voice__wrapper__item:nth-child(2n) .l-voice__wrapper__item__content:before {
  content: "";
  position: absolute;
  top: 30%;
  width: 30px;
  height: 30px;
  background: url("./img/common/polygon.svg") left center no-repeat;
}
@media (min-width: 960px) {
  .l-voice__wrapper__item:nth-child(2n) .l-voice__wrapper__item__content:before {
    right: -25px;
  }
}
@media (max-width: 959px) {
  .l-voice__wrapper__item:nth-child(2n) .l-voice__wrapper__item__content:before {
    right: -15px;
  }
}

.l-hoken {
  background: url(img/bg/hoken.jpg) no-repeat center center;
  background-size: cover;
  padding: 8rem 0;
}
@media (max-width: 959px) {
  .l-hoken {
    padding: 4rem 0;
  }
}
.l-hoken__wrapper__about {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 4rem;
  display: grid;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__about {
    padding: 3rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.l-hoken__wrapper__about__text img {
  max-width: 100%;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__about__text img {
    margin-bottom: 1rem;
  }
}
.l-hoken__wrapper__about__text h2 {
  font-size: 3.6rem;
  font-weight: 900;
  color: #eaac0e;
  margin-bottom: 1.6rem;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__about__text h2 {
    font-size: 2.4rem;
  }
}
.l-hoken__wrapper__about__text h3 {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__about__text h3 {
    font-size: 1.8rem;
  }
}
.l-hoken__wrapper__about__text p {
  margin-bottom: 1.6rem;
}
.l-hoken__wrapper__about__description {
  background-color: #fff8db;
  padding: 3rem;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__about__description {
    padding: 2rem;
  }
}
.l-hoken__wrapper__about__description h3 {
  margin-bottom: 1.6rem;
}
.l-hoken__wrapper__about__description p {
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__about__description p {
    font-size: 1.4rem;
  }
}
.l-hoken__wrapper__feature {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 4rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__feature {
    padding: 3rem;
  }
}
.l-hoken__wrapper__feature h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4rem;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__feature h2 {
    margin-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-hoken__wrapper__feature h2 img {
  max-width: 100%;
}
.l-hoken__wrapper__feature h2 span {
  padding-bottom: 1.2rem;
}
.l-hoken__wrapper__feature__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__feature__row {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}
.l-hoken__wrapper__feature__col h3 {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: #316fd2;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__feature__col h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
.l-hoken__wrapper__feature__col p {
  font-size: 1.5rem;
  line-height: 1.75;
}
@media (max-width: 959px) {
  .l-hoken__wrapper__feature__col p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
}

.l-introduction {
  background-color: var(--color-green-bg);
  padding: 62px 0;
}
.l-introduction h1 {
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  text-align: center;
  line-height: 125%;
}
@media (min-width: 960px) {
  .l-introduction h1 {
    font-size: 40px;
    margin-bottom: 66px;
  }
}
@media (max-width: 959px) {
  .l-introduction h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.l-introduction__wrapper {
  display: grid;
}
@media (min-width: 960px) {
  .l-introduction__wrapper {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (min-width: 960px) {
  .l-introduction__wrapper__content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__content {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-introduction__wrapper__content h2 {
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}
@media (min-width: 960px) {
  .l-introduction__wrapper__content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 125%;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__content h2 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 185%;
  }
}
.l-introduction__wrapper__content p {
  color: var(--color-white);
}
@media (min-width: 960px) {
  .l-introduction__wrapper__content p {
    font-size: 20px;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__content p {
    font-size: 16px;
  }
}
.l-introduction__wrapper__content .driver {
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  margin: 24px 0;
}
.l-introduction__wrapper__content__inner h3 {
  color: var(--color-white);
}
@media (min-width: 960px) {
  .l-introduction__wrapper__content__inner h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__content__inner h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 960px) {
  .l-introduction__wrapper__content__inner .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__content__inner .flex {
    display: grid;
    grid-template-columns: 65px 1fr;
  }
}
@media (min-width: 960px) {
  .l-introduction__wrapper__content__inner .flex p {
    font-size: 20px;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__content__inner .flex p {
    font-size: 14px;
  }
}
@media (min-width: 960px) {
  .l-introduction__wrapper__content__inner .flex p:nth-child(1) {
    margin-right: 20px;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__content__inner .flex p:nth-child(1) {
    margin-right: 15px;
  }
}
.l-introduction__wrapper__content__inner ul {
  list-style: none;
  padding: 0;
}
.l-introduction__wrapper__content__inner ul li {
  color: var(--color-white);
}
@media (min-width: 960px) {
  .l-introduction__wrapper__content__inner ul li {
    font-size: 20px;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__content__inner ul li {
    font-size: 14px;
  }
}
.l-introduction__wrapper__content__inner ul li:before {
  content: "・";
  margin-right: 10px;
  color: var(--color--white);
}
@media (min-width: 960px) {
  .l-introduction__wrapper__img {
    text-align: center;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__img {
    text-align: right;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 960px) {
  .l-introduction__wrapper__img img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__img img {
    width: 100%;
    height: auto;
    margin: auto;
  }
}
.l-introduction__wrapper__img h2 {
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  line-height: 130%;
}
@media (min-width: 960px) {
  .l-introduction__wrapper__img h2 {
    margin-top: 1.6rem;
    font-size: 24px;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__img h2 {
    margin-top: 1.6rem;
    font-size: 14px;
  }
}
.l-introduction__wrapper__img h2 span {
  font-weight: var(--font-weight-bold);
  display: block;
}
@media (min-width: 960px) {
  .l-introduction__wrapper__img h2 span {
    margin-top: 30px;
    font-size: 48px;
  }
}
@media (max-width: 959px) {
  .l-introduction__wrapper__img h2 span {
    margin-top: 15px;
    font-size: 21px;
  }
}

.l-study {
  background: #ddedff url(img/bg/blue.jpg) no-repeat center center;
  background-size: cover;
}
@media (min-width: 960px) {
  .l-study {
    padding: 80px 0;
  }
}
@media (max-width: 959px) {
  .l-study {
    padding: 40px 0;
  }
}
.l-study h2 {
  color: var(--color-blue-bg);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 900;
}
@media (min-width: 960px) {
  .l-study h2 {
    font-size: 48px;
  }
}
@media (max-width: 959px) {
  .l-study h2 {
    font-size: 28px;
  }
}
.l-study p {
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}
.l-study__wrapper {
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .l-study__wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 959px) {
  .l-study__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.l-study__wrapper__item {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 960px) {
  .l-study__wrapper__item {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 959px) {
  .l-study__wrapper__item {
    grid-template-columns: 1fr;
  }
}
.l-study__wrapper__item__text {
  margin-bottom: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 24px 40px;
  gap: 20px;
  border-radius: 20px;
}
@media (min-width: 960px) {
  .l-study__wrapper__item__text {
    padding: 24px;
  }
}
@media (max-width: 959px) {
  .l-study__wrapper__item__text {
    padding: 24px 15px;
  }
}
.l-study__wrapper__item__text__inner img {
  width: 100%;
  margin: auto;
  display: block;
}
.l-study__wrapper__item__text__inner h3 {
  color: var(--color-blue-bg);
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}
.l-study__wrapper__item__text__inner p {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: left;
}
.l-study__wrapper__item__text__inner .label {
  background-color: #fbff00;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 800;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-study__wrapper__item__text__inner .label img {
  width: 22px;
  height: 22px;
  margin: 0 8px 0 0;
}
.l-study__wrapper__img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.l-study__wrapper__img img {
  margin: 0 auto 20px;
  display: block;
}
@media (min-width: 960px) {
  .l-study__wrapper__img img:nth-child(1) {
    width: 400px;
  }
  .l-study__wrapper__img img:nth-child(2) {
    width: 190px;
  }
}
@media (max-width: 959px) {
  .l-study__wrapper__img img:nth-child(1) {
    width: 90%;
  }
  .l-study__wrapper__img img:nth-child(2) {
    width: 50%;
  }
}
.l-study__wrapper__img p {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.l-details {
  background-color: var(--color-green-bg);
  padding: 6rem 0;
}
@media (max-width: 959px) {
  .l-details {
    padding: 3rem 0;
  }
}
.l-details h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.6rem;
  font-weight: 800;
}
@media (max-width: 959px) {
  .l-details h2 {
    font-size: 2.4rem;
  }
}
.l-details h3 {
  border-radius: 100px;
  background: #fff;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-green-bg);
  width: 30rem;
  margin: 3rem auto;
  text-align: center;
}
.l-details table {
  color: #fff;
  border-spacing: 0;
  margin: auto;
}
.l-details table th,
.l-details table td {
  padding: 1rem 2rem;
  border-bottom: 1px solid #fff;
  font-weight: 600;
}
@media (max-width: 959px) {
  .l-details table th,
  .l-details table td {
    padding: 1rem;
  }
}
@media (max-width: 959px) {
  .l-details table th {
    min-width: 10rem;
  }
}
.l-details table tr:first-child th,
.l-details table tr:first-child td {
  border-top: 1px solid #fff;
}
.l-details__copy {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  margin: 4rem auto 0;
  color: #fff;
}

.l-partner {
  padding: 6rem 0;
}
@media (max-width: 959px) {
  .l-partner {
    padding: 3rem 0;
  }
}
.l-partner__content h2 {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 800;
}
@media (max-width: 959px) {
  .l-partner__content h2 {
    font-size: 2rem;
  }
}
.l-partner__content h2 img {
  vertical-align: middle;
  margin-right: 1rem;
}
.l-partner__content__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  margin-top: 3rem;
}
@media (max-width: 959px) {
  .l-partner__content__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 959px) {
  .l-partner__content__col img {
    width: calc(100% - 4rem);
    margin: auto;
    display: block;
  }
}

@media (max-width: var(--breakpoint-md)) {
  .u-show-pc {
    display: none !important;
  }
}

@media (min-width: calc(var(--breakpoint-md) + 1px)) {
  .u-show-sp {
    display: none !important;
  }
}

@media (min-width: calc(var(--breakpoint-md) + 1px)) {
  .u-hide-pc {
    display: none !important;
  }
}

@media (max-width: var(--breakpoint-md)) {
  .u-hide-sp {
    display: none !important;
  }
}

.u-text-center {
  text-align: center !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-1 {
  margin-top: var(--spacing-sm) !important;
}

.u-mt-2 {
  margin-top: var(--spacing-md) !important;
}

.u-mt-3 {
  margin-top: var(--spacing-lg) !important;
}

.u-mt-4 {
  margin-top: var(--spacing-xl) !important;
}

.u-mt-5 {
  margin-top: var(--spacing-2xl) !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-1 {
  margin-bottom: var(--spacing-sm) !important;
}

.u-mb-2 {
  margin-bottom: var(--spacing-md) !important;
}

.u-mb-3 {
  margin-bottom: var(--spacing-lg) !important;
}

.u-mb-4 {
  margin-bottom: var(--spacing-xl) !important;
}

.u-mb-5 {
  margin-bottom: var(--spacing-2xl) !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: var(--spacing-sm) !important;
}

.u-pt-2 {
  padding-top: var(--spacing-md) !important;
}

.u-pt-3 {
  padding-top: var(--spacing-lg) !important;
}

.u-pt-4 {
  padding-top: var(--spacing-xl) !important;
}

.u-pt-5 {
  padding-top: var(--spacing-2xl) !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: var(--spacing-sm) !important;
}

.u-pb-2 {
  padding-bottom: var(--spacing-md) !important;
}

.u-pb-3 {
  padding-bottom: var(--spacing-lg) !important;
}

.u-pb-4 {
  padding-bottom: var(--spacing-xl) !important;
}

.u-pb-5 {
  padding-bottom: var(--spacing-2xl) !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-grid {
  display: grid !important;
}

.u-hidden {
  display: none !important;
}

.u-w-full {
  width: 100% !important;
}

.u-w-auto {
  width: auto !important;
}

.u-h-full {
  height: 100% !important;
}

.u-h-auto {
  height: auto !important;
}