@charset "UTF-8";
/* ------------- */
/* index         */
/* ------------- */
:root {
  --textblack: #222222;
  --mainColor: #0091DB;
  --bgGradation: linear-gradient(135deg, #0090DC 0%, #95D9B1 55%, #0090DC 100%);
  --en: "Lato", sans-serif;
  --jp: "Noto Sans JP", "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    scroll-behavior: auto;
  }
}

.u_main {
  font-size: 10px;
  font-weight: 400;
}
.u_main img,
.u_main svg {
  width: 100%;
  font-size: 0;
}
.u_main a {
  color: var(--mainColor);
  text-decoration: none;
  transition: 0.3s;
}
.u_main a:hover {
  transition: 0.3s;
  text-decoration: none;
}
.u_main ul,
.u_main ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u_sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u_sp {
    display: none;
  }
}

.u_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u_pc {
    display: block;
  }
}

.u_line {
  display: block;
  width: 100%;
  height: 1px;
  background: #D3D3D3;
  margin: 8px 0 60px;
}
@media screen and (min-width: 768px) {
  .u_line {
    margin: 40px 0 60px;
  }
}

.u_fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s, transform 0.8s ease-out;
}
.u_fade.u_active {
  opacity: 1;
  transform: translateY(0px);
}

/* ------------- */
/* index         */
/* ------------- */
.u_columns,
.u_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.u_columns._2column .u_column,
.u_columns._2column .u_wrapperItem,
.u_wrapper._2column .u_column,
.u_wrapper._2column .u_wrapperItem {
  width: calc(50% - 30px);
}
.u_columns._2column .u_column img,
.u_columns._2column .u_wrapperItem img,
.u_wrapper._2column .u_column img,
.u_wrapper._2column .u_wrapperItem img {
  width: 100%;
}

.u_title {
  font-size: clamp(22px, 14.9577464789px + 1.8779342723vw, 42px);
  letter-spacing: 2%;
  line-height: 2;
}

.u_image img {
  width: 100%;
}

.u_button {
  width: fit-content;
  margin: 0 auto;
}
.u_button a {
  position: relative;
  display: block;
  width: 200px;
  height: 50px;
  font-size: 16px;
  line-height: 46px;
  color: #fff;
  text-align: center;
  background-color: var(--mainColor);
  border-radius: 30px;
  border: 2px solid var(--mainColor);
  box-sizing: border-box;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .u_button a {
    width: 240px;
    height: 60px;
    font-size: 18px;
    line-height: 56px;
  }
}
.u_button a:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}
.u_button._outline a {
  color: var(--mainColor);
  background-color: #fff;
}

.u_caption {
  position: relative;
  font-size: 10px !important;
  padding: 0 0 0 0.8rem;
}
.u_caption:before {
  content: "※";
  position: absolute;
  left: 0;
  font-size: inherit;
}

.u_gradationBorder {
  width: 100%;
  position: relative;
  background: var(--bgGradation);
  border-radius: 6px;
  padding: 36px 12px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .u_gradationBorder {
    padding: 60px 10%;
  }
}
.u_gradationBorder * {
  position: relative;
  z-index: 0;
}
.u_gradationBorder:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  border-radius: 4px;
  z-index: 0;
}

.u_arrow {
  display: block;
  position: absolute;
  overflow: hidden;
}
.u_arrow:before, .u_arrow:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
}
.u_arrow:after {
  transform: translateX(-100%);
}

.u_arrow {
  right: 32px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
}
.u_arrow:before, .u_arrow:after {
  width: 16px;
  height: 16px;
  background: url(./../images/icon_arrow_white.svg) 50% 50%/cover no-repeat;
}

._outline .u_arrow:before, ._outline .u_arrow:after {
  background: url(./../images/icon_arrow_blue.svg) 50% 50%/cover no-repeat;
}

.u_arrow._blue {
  right: 0;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
}
.u_arrow._blue:before, .u_arrow._blue:after {
  width: 16px;
  height: 16px;
  background: url(./../images/icon_arrow_blue.svg) 50% 50%/cover no-repeat;
}

a .u_arrow:before {
  animation-name: transformLeftRight_after;
  animation-delay: 0s;
}

a .u_arrow:after {
  animation-name: transformRightLeft_after;
  animation-delay: 0.1s;
}

a:hover .u_arrow:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

a:hover .u_arrow:after {
  animation-name: transformLeftRight;
  animation-delay: 0.1s;
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformLeftRight_after {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes transformRightLeft_after {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ------------- */
/* index         */
/* ------------- */
.u_hero {
  width: 100%;
}
.u_hero img {
  width: 100%;
}

.u_inner_lead {
  position: relative;
  text-align: center;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .u_inner_lead {
    padding: 80px 0 0;
    margin: 100px auto 0;
  }
}
.u_inner_lead:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -18%;
  right: 0;
  left: 0;
  width: calc(100% - 60px);
  height: 50%;
  margin: auto;
  background: url(./../images/text_sustainability.svg) 0 100%/contain no-repeat;
  opacity: 0.1;
}
@media screen and (min-width: 768px) {
  .u_inner_lead:before {
    bottom: -22%;
    right: 0;
    left: -1%;
    width: 102%;
    height: 50%;
  }
}

.u_inner_lead .u_title {
  position: relative;
  display: inline-block;
  font-size: clamp(22px, 14.9577464789px + 1.8779342723vw, 42px);
  color: #fff;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .u_inner_lead .u_title {
    padding: 0 0 0 40px;
  }
}
.u_inner_lead .u_title:before {
  content: "";
  display: block;
  position: absolute;
  top: clamp(8px, 4.4788732394px + 0.9389671362vw, 18px);
  left: -22px;
  width: clamp(12px, 9.8873239437px + 0.5633802817vw, 18px);
  height: clamp(12px, 9.8873239437px + 0.5633802817vw, 18px);
  background: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .u_inner_lead .u_title:before {
    left: 10px;
  }
}
.u_inner_lead p {
  font-size: clamp(16px, 15.2957746479px + 0.1877934272vw, 18px);
  line-height: 1.6;
  margin: 16px 24px 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u_inner_lead p {
    line-height: 2;
    margin: 32px auto 0;
    text-align: center;
  }
}

.u_inner_lead .u_button {
  margin-top: clamp(24px, 18.3661971831px + 1.5023474178vw, 40px);
}
.u_inner_lead .u_button._outline a {
  border: 2px solid #fff;
}
.u_inner_lead .u_button._outline a:hover {
  opacity: 1;
}

/* ------------- */
/* index         */
/* ------------- */
.u_topCommitment {
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .u_topCommitment {
    margin: 56px auto 0;
  }
}
.u_topCommitment .u_title {
  display: inline-block;
  font-size: clamp(22px, 14.9577464789px + 1.8779342723vw, 42px);
  font-weight: 600;
  padding: 0 0 0 20px;
  margin: 0;
  background: url(./../images/icon_disc.svg) 0 50%/12px 12px no-repeat;
}
@media screen and (min-width: 768px) {
  .u_topCommitment .u_title {
    padding: 0 0 0 40px;
    background: url(./../images/icon_disc.svg) 0 50%/19px 19px no-repeat;
  }
}
.u_topCommitment .u_wrapperItem p {
  font-size: clamp(16px, 11.7746478873px + 1.1267605634vw, 28px);
  line-height: 1.6;
  margin-top: clamp(15px, 7.6056338028px + 1.9718309859vw, 36px);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u_topCommitment .u_wrapperItem p {
    line-height: 2;
  }
}
.u_topCommitment .u_wrapperItem img {
  width: 100%;
  margin: 24px 0 0;
}
@media screen and (min-width: 768px) {
  .u_topCommitment .u_wrapperItem img {
    margin: 0;
  }
}
.u_topCommitment .u_button {
  margin: 16px auto 0;
}
@media screen and (min-width: 768px) {
  .u_topCommitment .u_button {
    margin: 24px auto 0;
  }
}

.u_topCommitment .u_wrapper._2column {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .u_topCommitment .u_wrapper._2column {
    flex-direction: row;
  }
}
.u_topCommitment .u_wrapper._2column .u_wrapperItem {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .u_topCommitment .u_wrapper._2column .u_wrapperItem {
    width: calc(50% - 30px);
    text-align: left;
  }
}

/* ------------- */
/* index         */
/* ------------- */
.u_bgGradation {
  width: 100vw;
  color: #fff;
  text-align: center;
  background: var(--bgGradation);
  padding: 48px 0 42px;
  margin: 60px 0 0 -4.5%;
}
@media screen and (min-width: 768px) {
  .u_bgGradation {
    width: 100%;
    padding: 0 0 80px;
    margin: 100px auto 0;
  }
}

.u_inner_action {
  padding: 0 clamp(24px, 21.8873239437px + 0.5633802817vw, 30px);
}
.u_inner_action .u_title {
  position: relative;
  display: inline-block;
  font-size: clamp(22px, 14.9577464789px + 1.8779342723vw, 42px);
  font-weight: 600;
  margin: 94px 0 0;
  padding: 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_title {
    padding: 0 0 0 40px;
    margin: 120px 0 0;
  }
}
.u_inner_action .u_title span {
  font-size: 0.9em;
}
.u_inner_action .u_title:before {
  content: "";
  display: block;
  position: absolute;
  top: clamp(8px, 4.4788732394px + 0.9389671362vw, 18px);
  left: -22px;
  width: clamp(12px, 9.8873239437px + 0.5633802817vw, 18px);
  height: clamp(12px, 9.8873239437px + 0.5633802817vw, 18px);
  background: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_title:before {
    left: 10px;
  }
}
.u_inner_action p {
  font-size: clamp(16px, 15.2957746479px + 0.1877934272vw, 18px);
  line-height: 1.6;
  margin-top: 18px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u_inner_action p {
    line-height: 2;
    text-align: center;
  }
}

.u_inner_action .u_wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper {
    flex-direction: row;
    margin-top: 56px;
  }
}
.u_inner_action .u_wrapper + .u_wrapper {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper + .u_wrapper {
    margin-top: 30px;
  }
}

.u_inner_action .u_wrapper .u_item_info {
  position: relative;
  width: calc(100% - 40px);
  text-align: left;
  background-color: #fff;
  padding: 24px 20px;
  border-radius: 0 30px 5px 5px;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper .u_item_info {
    margin: 42px 0 0;
    padding: 40px 24px;
    width: calc(100% - 380px);
  }
}
.u_inner_action .u_wrapper .u_item_info::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100px;
  height: 100%;
  background-color: #fff;
  z-index: 0;
}
.u_inner_action .u_wrapper .u_item_info:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper .u_item_info:after {
    display: none;
  }
}
.u_inner_action .u_wrapper._governance .u_item_info, .u_inner_action .u_wrapper._economy .u_item_info {
  padding: 24px 20px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._governance .u_item_info, .u_inner_action .u_wrapper._economy .u_item_info {
    padding: 40px 24px 80px;
  }
}
.u_inner_action .u_wrapper._environment .u_item_info {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._environment .u_item_info {
    background: #fff url(./../images/text_environment.svg) right 20px top 10px/350px 66px no-repeat;
  }
}
.u_inner_action .u_wrapper._environment .u_item_info:after {
  left: -40px;
  background: url(./../images/text_environment_sp.svg) center 30px/contain no-repeat;
}
.u_inner_action .u_wrapper._social .u_item_info {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._social .u_item_info {
    background: #fff url(./../images/text_social.svg) right 20px top 10px/180px 68px no-repeat;
  }
}
.u_inner_action .u_wrapper._social .u_item_info:after {
  right: -40px;
  background: url(./../images/text_social_sp.svg) center 30px/contain no-repeat;
}
.u_inner_action .u_wrapper._governance .u_item_info {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._governance .u_item_info {
    background: #fff url(./../images/text_governance.svg) right 20px top 10px/345px 68px no-repeat;
  }
}
.u_inner_action .u_wrapper._governance .u_item_info:after {
  left: -40px;
  background: url(./../images/text_governance_sp.svg) center 30px/contain no-repeat;
}
.u_inner_action .u_wrapper._economy .u_item_info {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._economy .u_item_info {
    background: #fff url(./../images/text_economy.svg) right 20px top 10px/254px 78px no-repeat;
  }
}
.u_inner_action .u_wrapper._economy .u_item_info:after {
  right: -40px;
  background: url(./../images/text_economy_sp.svg) center 30px/contain no-repeat;
}

.u_inner_action .u_wrapper .u_item_img {
  width: 90%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper .u_item_img {
    width: fit-content;
  }
}
.u_inner_action .u_wrapper .u_item_img img {
  max-width: 380px;
}
.u_inner_action .u_wrapper._left {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._left {
    flex-direction: row-reverse;
  }
}
.u_inner_action .u_wrapper._left .u_item_info {
  margin: 0 0 0 auto;
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._left .u_item_info {
    margin: 42px 0 0;
    border-radius: 0 36px 5px 0;
  }
}
.u_inner_action .u_wrapper._left .u_item_info::before {
  right: 0;
  top: -80px;
  width: 100%;
  height: 80px;
  border-radius: 0 40px 0 0;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._left .u_item_info::before {
    display: block;
    top: 0;
    left: -100px;
    right: auto;
    width: 100px;
    height: 100%;
    border-radius: 0 0 0 5px;
    box-shadow: -5px 0 10px 0 rgba(0, 0, 0, 0.1);
  }
}
.u_inner_action .u_wrapper._right {
  flex-direction: column-reverse;
  margin: 60px auto 0 0;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._right {
    flex-direction: row;
    margin: 30px auto 0 0;
  }
}
.u_inner_action .u_wrapper._right .u_item_info {
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._right .u_item_info {
    border-radius: 36px 0 0 5px;
  }
}
.u_inner_action .u_wrapper._right .u_item_info::before {
  left: 0;
  top: -80px;
  width: 100%;
  height: 80px;
  border-radius: 40px 0 0 0;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._right .u_item_info::before {
    display: block;
    top: 0;
    right: -100px;
    left: auto;
    width: 100px;
    height: 100%;
    border-radius: 0 0 5px 0;
    box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.1);
  }
}
.u_inner_action .u_wrapper._right .u_item_img {
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_wrapper._right .u_item_img {
    margin: 0;
  }
}

.u_inner_action .u_item_info h3 {
  margin: 0;
}
.u_inner_action .u_item_info h3 a {
  position: relative;
  color: #222222;
  font-size: clamp(22px, 18.4788732394px + 0.9389671362vw, 32px);
  font-weight: bold;
  padding: 0 24px 0 24px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_item_info h3 a {
    padding: 0 40px 0 24px;
  }
}
.u_inner_action .u_item_info h3 a:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 5px;
}
.u_inner_action .u_item_info h3 .u_arrow {
  top: calc(50% - 8px);
  right: -5px;
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_item_info h3 .u_arrow {
    top: calc(50% - 12px);
    right: -3px;
    width: 24px;
    height: 24px;
  }
}
.u_inner_action .u_item_info h3 .u_arrow:before, .u_inner_action .u_item_info h3 .u_arrow:after {
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_item_info h3 .u_arrow:before, .u_inner_action .u_item_info h3 .u_arrow:after {
    width: 24px;
    height: 24px;
  }
}
.u_inner_action ._environment h3 a:before {
  background-color: #8EB95F;
}
.u_inner_action ._social h3 a:before {
  background-color: #E5A857;
}
.u_inner_action ._governance h3 a:before {
  background-color: var(--mainColor);
}
.u_inner_action ._economy h3 a:before {
  background-color: #0061AB;
}

.u_inner_action .u_item_info ul {
  display: flex;
  flex-wrap: wrap;
}
.u_inner_action .u_item_info ul li {
  width: 100%;
  height: 55px;
  border-bottom: 1px solid #e2e2e2;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_item_info ul li {
    width: calc((100% - 40px) / 3);
    height: 60px;
    margin: 0 20px 0 0;
  }
}
.u_inner_action .u_item_info ul li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #222;
  font-size: clamp(16px, 16px + 0vw, 16px);
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_item_info ul li a {
    padding-top: 15px;
  }
}
.u_inner_action .u_item_info ul li a .u_arrow {
  top: 50%;
}
.u_inner_action .u_item_info ul li a._2lines {
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .u_inner_action .u_item_info ul li:nth-child(3n) {
    margin: 0;
  }
}

.u_inner_action .u_item_info a {
  transition: 0.3s;
}
.u_inner_action .u_item_info a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

._economy .u_item_info ul {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  ._economy .u_item_info ul {
    margin-top: 16px;
  }
}

/* ------------- */
/* index         */
/* ------------- */
.u_evaluation {
  text-align: center;
  padding: 60px 0 0;
}
@media screen and (min-width: 768px) {
  .u_evaluation {
    padding: 100px 0 0;
  }
}
.u_evaluation .u_title {
  color: #222;
  display: inline-block;
  font-size: clamp(22px, 14.9577464789px + 1.8779342723vw, 42px);
  padding: 0 0 0 20px;
  margin: 0;
  background: url(./../images/icon_disc.svg) 0 50%/12px 12px no-repeat;
}
@media screen and (min-width: 768px) {
  .u_evaluation .u_title {
    padding: 0 0 0 40px;
    background: url(./../images/icon_disc.svg) 0 50%/19px 19px no-repeat;
  }
}
.u_evaluation p {
  color: #222;
  font-size: clamp(16px, 16px + 0vw, 16px);
  line-height: 1.6;
  margin: 24px auto 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u_evaluation p {
    line-height: 1.8;
    text-align: center;
  }
}

.u_evaluation picture {
  display: block;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .u_evaluation picture {
    margin-top: 24px;
  }
}
.u_evaluation .u_button {
  margin-top: 32px;
}

/* ------------- */
/* index         */
/* ------------- */
.u_related {
  text-align: center;
  padding: 60px 0 0;
}
@media screen and (min-width: 768px) {
  .u_related {
    padding: 100px 0 0;
  }
}
.u_related .u_title {
  display: inline-block;
  font-size: clamp(22px, 14.9577464789px + 1.8779342723vw, 42px);
  margin: 0;
  padding: 0 0 0 20px;
  background: url(./../images/icon_disc.svg) 0 50%/12px 12px no-repeat;
}
@media screen and (min-width: 768px) {
  .u_related .u_title {
    padding: 0 0 0 40px;
    background: url(./../images/icon_disc.svg) 0 50%/19px 19px no-repeat;
  }
}

.u_relatedContainer {
  width: 100vw;
  padding: 30px 24px;
  background: linear-gradient(135deg, #D3F0FF 0%, #DCFFEA 100%);
  margin: 20px 0 0 -4.5%;
}
@media screen and (min-width: 768px) {
  .u_relatedContainer {
    width: 100%;
    padding: 40px 30px;
    margin: 50px auto 0;
  }
}
.u_relatedContainer .u_relatedList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.u_relatedContainer .u_relatedList li {
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .u_relatedContainer .u_relatedList li {
    width: calc((100% - 20px) / 2);
  }
}
.u_relatedContainer .u_relatedList li a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  color: #222;
  text-align: left;
  padding: 25px 20px;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .u_relatedContainer .u_relatedList li a {
    padding: 30px 20px;
  }
}
.u_relatedContainer .u_relatedList li a h3 {
  position: relative;
  width: fit-content;
  font-size: clamp(18px, 18px + 0vw, 18px);
}
.u_relatedContainer .u_relatedList li a p {
  font-size: clamp(16px, 16px + 0vw, 16px);
  line-height: 1.6;
  margin-top: 15px;
}
.u_relatedContainer .u_relatedList li a .u_arrow._blue {
  right: -32px;
}
.u_relatedContainer .u_relatedList li a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.u_relatedContainer .u_relatedList li:nth-of-type(2) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .u_relatedContainer .u_relatedList li:nth-of-type(2) {
    margin-top: 0;
  }
}
.u_relatedContainer .u_relatedList li:nth-child(n+3) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .u_relatedContainer .u_relatedList li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.u_relatedContainer .u_relatedList .u_panel {
  padding: 2px 2px 2px 12px;
  background: var(--bgGradation);
  border-radius: 4px;
}
.u_relatedContainer .u_relatedList .u_panel a {
  padding: 64px 32px;
  background: #fff;
  border-radius: 0 3px 3px 0;
}

/* ------------- */
/* index         */
/* ------------- */
.u_news {
  text-align: center;
  padding: 60px 0 0;
}
@media screen and (min-width: 768px) {
  .u_news {
    padding: 100px 0 0;
  }
}
.u_news .u_title {
  color: #222;
  display: inline-block;
  font-size: clamp(22px, 14.9577464789px + 1.8779342723vw, 42px);
  padding: 0 0 0 20px;
  margin: 0;
  background: url(./../images/icon_disc.svg) 0 9px/12px 12px no-repeat;
}
@media screen and (min-width: 768px) {
  .u_news .u_title {
    padding: 0 0 0 40px;
    background: url(./../images/icon_disc.svg) 0 50%/19px 19px no-repeat;
  }
}

.u_newsContainer {
  margin-top: 24px;
  width: 100%;
  background: #F6F6F6;
  border-radius: 5px;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .u_newsContainer {
    margin-top: 50px;
    padding: 16px 30px;
  }
}
.u_newsContainer ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: clamp(16px, 16px + 0vw, 16px);
}
@media screen and (min-width: 768px) {
  .u_newsContainer ul li {
    flex-direction: row;
    align-items: center;
  }
}
.u_newsContainer ul li a,
.u_newsContainer ul li .u_linkoff {
  display: inline-block;
  padding: 12px 24px 12px 0;
}
@media screen and (min-width: 768px) {
  .u_newsContainer ul li a,
  .u_newsContainer ul li .u_linkoff {
    padding: 24px 0;
  }
}
.u_newsContainer ul li time {
  min-width: 5rem;
  color: #828282;
  font-size: clamp(14px, 14px + 0vw, 14px);
}
.u_newsContainer ul li + li {
  border-top: 1px solid #D3D3D3;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .u_newsContainer ul li + li {
    padding-top: 0;
  }
}
.u_newsContainer ul .list-cate {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
}
.u_newsContainer ul .list-con {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .u_newsContainer ul .list-con {
    margin: 0 32px 0 14px;
  }
}
.u_newsContainer ul .list-con a,
.u_newsContainer ul .list-con .u_linkoff {
  position: relative;
  width: 100%;
  color: #222;
  font-size: clamp(16px, 15.2957746479px + 0.1877934272vw, 18px);
  text-align: left;
  transition: 0.3s;
}
.u_newsContainer ul a:hover {
  opacity: 0.7;
  transition: 0.3s;
  text-decoration: underline;
}

.u_newsContainer .tag {
  display: inline-block;
  width: max-content;
  font-size: clamp(12px, 12px + 0vw, 12px);
  font-weight: bold;
  border-radius: 20px;
  padding: 4px 12px;
  margin: 0 0 0 14px;
}
.u_newsContainer .tag._news {
  color: #194E34;
  background-color: #a4d6b4;
}

.u_newsContainer .list-con a {
  position: relative;
}
.u_newsContainer .list-con a .u_arrow {
  right: 0;
  top: calc(50% - 8px);
  width: 18px;
  height: 18px;
}
.u_newsContainer .list-con a .u_arrow:before, .u_newsContainer .list-con a .u_arrow:after {
  width: 18px;
  height: 18px;
  background: url(./../images/icon_arrow_blue.svg) 50% 50%/cover no-repeat;
}
.u_newsContainer .list-con a .u_arrow._blue {
  right: 0;
}
@media screen and (min-width: 768px) {
  .u_newsContainer .list-con a .u_arrow._blue {
    right: -24px;
  }
}

/* ------------- */
/* index         */
/* ------------- */
.u_banners {
  width: fit-content;
  text-align: center;
  margin: 60px auto 20px;
}
@media screen and (min-width: 768px) {
  .u_banners {
    margin: 100px auto 0;
  }
}
.u_banners .u_banner {
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .u_banners .u_banner {
    max-width: 354px;
  }
}

/* ------------- */
/* index         */
/* ------------- */
.u_inner .u_title_disc {
  display: inline-block;
  font-size: clamp(22px, 18.4788732394px + 0.9389671362vw, 32px);
  font-weight: bold;
  padding: 0 0 0 22px;
  background: url(./../images/icon_disc.svg) 0 9px/12px 12px no-repeat;
}
@media screen and (min-width: 768px) {
  .u_inner .u_title_disc {
    padding: 0 0 0 30px;
    background: url(./../images/icon_disc.svg) 0 50%/19px 19px no-repeat;
  }
}
.u_inner .u_title_disc + p {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .u_inner .u_title_disc + p {
    margin-top: 36px;
  }
}
.u_inner p {
  font-size: clamp(16px, 16px + 0vw, 16px);
  line-height: 2.3;
}

.u_image {
  width: 100%;
  max-width: 468px;
  text-align: center;
  margin: 60px auto 0;
}
.u_image figcaption {
  font-weight: bold;
  font-size: clamp(10px, 9.2957746479px + 0.1877934272vw, 12px);
  margin: 15px auto 0;
}
@media screen and (min-width: 768px) {
  .u_image figcaption {
    margin: 20px auto 0;
  }
}

.u_textLinkBlue {
  color: var(--mainColor);
  text-decoration: underline;
}
.u_textLinkBlue:hover {
  color: var(--mainColor);
  text-decoration: none;
}

.u_buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .u_buttons {
    flex-direction: row;
  }
}
.u_buttons .u_button {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .u_buttons .u_button {
    width: calc((100% - 40px) / 3);
  }
}
.u_buttons .u_button a {
  width: 100%;
  display: flex;
  align-items: center;
  height: 55px;
  font-size: 16px;
  text-decoration: none;
  text-align: left;
  line-height: 1.1;
  padding: 0 0 0 32px;
}
@media screen and (min-width: 768px) {
  .u_buttons .u_button a {
    height: 60px;
    line-height: 1.2;
  }
}

.u_relatedLink {
  background: #FAFAFA;
  border-radius: 5px;
  margin: 60px auto 0;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .u_relatedLink {
    padding: 40px 10%;
  }
}
.u_relatedLink .u_relatedLink_title {
  font-size: clamp(22px, 21.2957746479px + 0.1877934272vw, 24px);
  font-weight: bold;
  padding: 0 0 0 32px;
  background: url(./../images/icon_disc.svg) 0 50%/19px 19px no-repeat;
}
.u_relatedLink a {
  position: relative;
  color: #222;
  transition: 0.3;
}
.u_relatedLink a:hover {
  opacity: 0.8;
  text-decoration: none;
  transition: 0.3;
}
.u_relatedLink .u_relatedLink_top {
  margin: 30px 0 0;
}
.u_relatedLink .u_relatedLink_top a {
  font-size: clamp(18px, 18px + 0vw, 18px);
  font-weight: bold;
}
.u_relatedLink .u_relatedLink_top .u_arrow {
  top: calc(50% - 12px);
  right: -40px;
  width: 24px;
  height: 24px;
}
.u_relatedLink .u_relatedLink_top .u_arrow:before, .u_relatedLink .u_relatedLink_top .u_arrow:after {
  width: 24px;
  height: 24px;
}
.u_relatedLink ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .u_relatedLink ul {
    flex-direction: row;
    margin: 8px 0 0;
  }
}
.u_relatedLink ul li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u_relatedLink ul li {
    width: calc((100% - 40px) / 2);
  }
}
.u_relatedLink ul li a {
  display: block;
  font-size: 16px;
  border-bottom: 1px solid #e2e2e2;
  padding: 15px 0 10px;
}
.u_relatedLink ul li:nth-child(n+3) {
  margin-top: 8px;
}

.u_pinchout {
  display: block;
  text-align: center;
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .u_pinchout {
    display: none;
  }
}
.u_pinchout img {
  width: 220px;
}

/* ------------- */
/* index         */
/* ------------- */
.u_commitment {
  position: relative;
}
.u_commitment .u_message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .u_commitment .u_message {
    flex-direction: row-reverse;
    gap: 20px;
  }
}
.u_commitment .u_message .u_message_photo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u_commitment .u_message .u_message_photo {
    width: 45%;
  }
}
.u_commitment .u_message .u_message_photo img {
  width: 100%;
}
.u_commitment .u_message .u_message_text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u_commitment .u_message .u_message_text {
    width: 55%;
  }
}
.u_commitment .u_message .u_message_text h3 {
  position: relative;
  font-size: clamp(16px, 11.7746478873px + 1.1267605634vw, 28px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -1px;
}
.u_commitment .u_message .u_message_text h3:before {
  content: "";
  display: block;
  position: absolute;
  top: -1.5rem;
  left: 6px;
  width: 24px;
  height: 20px;
  background: url(./../images/icon_quote.svg) left top/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .u_commitment .u_message .u_message_text h3:before {
    top: -2rem;
    left: 0;
    width: 38px;
    height: 32px;
  }
}
.u_commitment .u_message .u_message_name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .u_commitment .u_message .u_message_name {
    margin: 40px auto 0;
  }
}
.u_commitment .u_message .u_message_name p {
  font-size: clamp(10px, 8.5915492958px + 0.3755868545vw, 14px);
}
.u_commitment .u_message .u_message_name img {
  height: clamp(25px, 19.7183098592px + 1.4084507042vw, 40px);
  margin-left: clamp(12px, 9.1830985915px + 0.7511737089vw, 20px);
}

.u_commitment .u_title_disc {
  margin-top: 60px;
}
.u_commitment .u_title_disc:nth-of-type(1) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .u_commitment .u_title_disc:nth-of-type(1) {
    margin-top: 72px;
  }
}

/* ------------- */
/* index         */
/* ------------- */
.u_group .u_image {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .u_group .u_image {
    max-width: 82%;
  }
}

.u_group_policy {
  padding: 15px;
  background: linear-gradient(135deg, #D3F0FF 0%, #DCFFEA 100%);
  margin-top: clamp(20px, 16.4788732394px + 0.9389671362vw, 30px);
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .u_group_policy {
    padding: 40px 30px;
  }
}
.u_group_policy .u_inner {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 15px;
}
@media screen and (min-width: 768px) {
  .u_group_policy .u_inner {
    padding: 30px 40px;
  }
}
.u_group_policy .u_inner ol {
  margin: 0;
  padding: 0 0 0 24px;
}
.u_group_policy .u_inner ol li {
  position: relative;
  font-size: clamp(16px, 15.2957746479px + 0.1877934272vw, 18px);
  padding: 0 0 0 8px;
}
.u_group_policy .u_inner ol li::marker {
  color: var(--mainColor);
  font-weight: bold;
}
.u_group_policy .u_inner ol li + li {
  margin-top: clamp(15px, 16.7605633803px - 0.4694835681vw, 10px);
}

.u_group .u_wrapperItem {
  padding: 0;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .u_group .u_wrapperItem {
    margin: 0 auto 40px;
  }
}
.u_group .u_message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .u_group .u_message {
    flex-direction: row-reverse;
    gap: 20px;
  }
}
.u_group .u_message .u_message_photo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u_group .u_message .u_message_photo {
    width: 45%;
  }
}
.u_group .u_message .u_message_photo img {
  width: 100%;
}
.u_group .u_message .u_message_text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u_group .u_message .u_message_text {
    width: 55%;
  }
}
.u_group .u_message .u_message_text h3 {
  position: relative;
  font-size: clamp(16px, 13.8873239437px + 0.5633802817vw, 22px);
  font-weight: 400;
  line-height: 1.8;
}
.u_group .u_message .u_message_text h3:before {
  content: "";
  display: block;
  position: absolute;
  top: -1.5rem;
  left: 6px;
  width: 24px;
  height: 20px;
  background: url(./../images/icon_quote.svg) left top/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .u_group .u_message .u_message_text h3:before {
    top: -2.5rem;
    left: 0;
    width: 38px;
    height: 32px;
  }
}
.u_group .u_message .u_message_name {
  margin: 15px auto 0;
}
@media screen and (min-width: 768px) {
  .u_group .u_message .u_message_name {
    margin: 20px auto 0;
  }
}
.u_group .u_message .u_message_name p {
  font-size: clamp(10px, 8.5915492958px + 0.3755868545vw, 14px);
  line-height: 1.8;
}
.u_group .u_message .u_message_name strong {
  display: inline-block;
  font-size: clamp(16px, 14.5915492958px + 0.3755868545vw, 20px);
  font-weight: 400;
  margin: 8px auto 0;
}

.u_more {
  position: relative;
  text-align: center;
  padding-top: clamp(60px, 52.9577464789px + 1.8779342723vw, 80px);
  border-top: 1px solid #d3d3d3;
  margin: 32px 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .u_more {
    margin: 24px 0;
  }
}
.u_more h4 {
  font-size: clamp(22px, 21.2957746479px + 0.1877934272vw, 24px);
}
.u_more .u_arrow._button {
  right: 24px;
}

/* ------------- */
/* index         */
/* ------------- */
.u_activity .u_mainImage {
  width: 100%;
}
.u_activity .u_mainImage img {
  width: 100%;
}
.u_activity .u_mainImage .u_mainImage_lead {
  margin-top: clamp(40px, 43.5211267606px - 0.9389671362vw, 30px);
  font-size: clamp(16px, 16px + 0vw, 16px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .u_activity .u_mainImage .u_mainImage_lead {
    line-height: 2.4;
  }
}
.u_activity .u_title_disc {
  margin: 60px 0 0;
}
@media screen and (min-width: 768px) {
  .u_activity .u_title_disc:nth-of-type(1) {
    margin: 80px 0 0;
  }
}
.u_activity figcaption {
  font-weight: bold;
  font-size: clamp(10px, 9.2957746479px + 0.1877934272vw, 12px);
  text-align: center;
  margin: 15px auto 0;
}
@media screen and (min-width: 768px) {
  .u_activity figcaption {
    margin: 20px auto 0;
  }
}

.u_activity .u_columns {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .u_activity .u_columns {
    flex-direction: row;
  }
}
.u_activity .u_columns._2column {
  margin-top: clamp(20px, 16.4788732394px + 0.9389671362vw, 30px);
}
.u_activity .u_columns._2column .u_column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u_activity .u_columns._2column .u_column {
    width: calc(50% - 30px);
  }
}

.u_priority {
  padding: 30px 0 0;
  border-top: 1px solid #D3D3D3;
}
.u_priority .u_priority_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .u_priority .u_priority_header {
    gap: 30px;
    flex-direction: row;
  }
}
.u_priority .u_priority_body {
  margin: clamp(24px, 21.8873239437px + 0.5633802817vw, 30px) 0 0;
  padding: 0 0 0 20px;
}
.u_priority:nth-of-type(4) + p {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .u_priority:nth-of-type(4) + p {
    margin-top: 30px;
  }
}

.u_priority:nth-of-type(1) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .u_priority:nth-of-type(1) {
    margin-top: 20px;
  }
}
.u_priority:nth-of-type(4) {
  border-bottom: 1px solid #D3D3D3;
}

.u_priority_photo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u_priority_photo img {
    max-width: 380px;
    min-width: 380px;
  }
}

.u_activity .u_priority_text {
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u_activity .u_priority_text {
    width: calc(100% - 380px - 30px);
  }
}
.u_activity .u_priority_text .u_button {
  margin: clamp(20px, 16.4788732394px + 0.9389671362vw, 30px) 0 0;
}
.u_activity .u_priority_text .u_button:hover {
  opacity: 0.75;
}
.u_activity .u_priority_text em {
  display: inline-block;
  position: relative;
  font-size: clamp(22px, 18.4788732394px + 0.9389671362vw, 32px);
  font-style: normal;
  font-weight: bold;
  margin-top: 16px;
}
.u_activity .u_priority_text em:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: #eee;
}
.u_activity .u_priority_text em + p {
  font-size: clamp(16px, 15.2957746479px + 0.1877934272vw, 18px);
  margin-top: 15px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .u_activity .u_priority_text em + p {
    line-height: 1;
  }
}
.u_activity .u_priority_text .u_caption {
  margin-top: 5px;
}

.u_activity .u_priority_number {
  display: flex;
  width: fit-content;
  font-size: clamp(12px, 11.2957746479px + 0.1877934272vw, 14px);
  line-height: 1.8rem;
  padding: 4px 8px 1px;
  background-color: #eee;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .u_activity .u_priority_number {
    padding: 3px 10px 1px;
  }
}
.u_activity .u_priority_number span {
  font-size: clamp(16px, 14.5915492958px + 0.3755868545vw, 20px);
  font-weight: bold;
  padding: 0 0 0 8px;
}

.u_priority_body dl dt {
  position: relative;
  font-size: clamp(16px, 15.2957746479px + 0.1877934272vw, 18px);
  font-weight: bold;
  margin-bottom: 8px;
}
.u_priority_body dl dt:before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: -16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: url(./../images/icon_disc.svg) 0 50%/19px 19px no-repeat;
}
@media screen and (min-width: 768px) {
  .u_priority_body dl dt:before {
    top: 10px;
    left: -20px;
    width: 10px;
    height: 10px;
  }
}
.u_priority_body dl dd {
  position: relative;
  padding: 0 0 0 16px;
  font-size: 16px;
}
.u_priority_body dl dd:before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: -4px;
}
.u_priority_body dl dd + dt {
  margin-top: 24px;
}

.u_priority_text._green .u_priority_number {
  color: #01A10E;
  background-color: #EBF7EC;
}
.u_priority_text._green em:before {
  background-color: #01A10E;
}
.u_priority_text._blue .u_priority_number {
  color: #0378D7;
  background-color: #DFF1FF;
}
.u_priority_text._blue em:before {
  background-color: #0378D7;
}
.u_priority_text._orange .u_priority_number {
  color: #F57600;
  background-color: #FFF3EB;
}
.u_priority_text._orange em:before {
  background-color: #F57600;
}
.u_priority_text._pink .u_priority_number {
  color: #EE449F;
  background-color: #FFEBFA;
}
.u_priority_text._pink em:before {
  background-color: #EE449F;
}

.u_horizontalScroll {
  overflow: scroll;
  max-width: 100%;
}
.u_horizontalScroll img {
  width: 800px;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .u_horizontalScroll img {
    width: 100%;
    max-width: 100%;
  }
}

/* ------------- */
/* index         */
/* ------------- */
.u_child .u_mainImage {
  width: 100%;
}
.u_child .u_mainImage img {
  width: 100%;
}
.u_child .u_mainImage .u_mainImage_lead {
  margin-top: clamp(40px, 43.5211267606px - 0.9389671362vw, 30px);
  font-size: clamp(16px, 16px + 0vw, 16px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .u_child .u_mainImage .u_mainImage_lead {
    line-height: 2.4;
  }
}
.u_child .u_more {
  margin: 0;
  border-top: 0;
}

h1 {
  font-family: "FP-ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic", "ヒラギノ角ゴ Pro W3", Osaka, "ＭＳ Ｐゴシック", Frutiger, Helvetica, sans-serif !important;
}

.page,
h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", "Lato", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif !important;
  color: #222;
}

@media screen and (max-width: 768px) {
  .jkw-nav2_sp {
    height: 50px;
    justify-content: space-between;
  }
  .head-border {
    height: 3px;
  }
  .nav-logo-sp {
    width: 180px;
    max-width: 180px;
  }
  .nav-logo-sp img {
    width: 100% !important;
  }
  .nav-logo-sp a {
    font-size: inherit;
  }
  .nav-menu-sp {
    width: 24px;
    max-width: 24px;
    padding: 0;
  }
  .nav-menu-sp .sp_ham label {
    padding: 0;
  }
  .sp_ham {
    margin: 0;
    padding-top: 0;
  }
  .sp_ham label::after {
    top: 7px;
    font-size: 32px;
  }
  .sp_ham input:checked ~ .sp_ham-content {
    margin-top: 0;
    top: 50px;
  }
  .gnavsearch2_sp {
    width: 24px;
    max-width: 24px;
    padding: 0;
  }
  .gnavsearch2_sp button {
    background-color: transparent !important;
  }
  .gnavsearch2_sp button input[type=image] {
    width: 20px !important;
    height: 20px !important;
    margin-top: 6px !important;
  }
  .sp_ham-content > ul > li > a,
  .sp_ham-content > ul > li > label {
    font-size: 12px;
  }
  .sp_ham-content > ul > li > a {
    margin: 0;
    padding: 1em 0;
  }
  .sp_actab > input[type=checkbox] + label::after {
    font-size: 18px;
    top: 14px;
  }
  .sp_actab-content > ul > li > a {
    font-size: 12px;
    padding: 10px 0;
  }
  .actab_bottom {
    font-weight: normal;
  }
  .jvc_breadcrumb,
  .customtitle-area {
    margin-top: 0;
  }
  .jvc_breadcrumb ul li,
  .jvc_breadcrumb ul li a {
    font-size: 12px;
  }
  .customtitle {
    font-size: 36px;
  }
  .modal-header-box-left H5 {
    font-size: 12px;
  }
  .mf_finder_searchBox_selects,
  .mf_finder_searchBox_doctype_select,
  .mf_finder_searchBox_doctype:after {
    display: none;
  }
  .mf_finder_searchBox_query_wrap {
    border-bottom: none;
  }
  .mf_finder_header .mf_finder_searchBox_submit {
    font-size: 16px;
  }
  .mf_finder_searchBox {
    width: 80%;
    margin: 0 auto !important;
  }
  .modal-body input[type=text] {
    height: 16px;
    font-size: 12px;
    border-bottom: none;
  }
  .modal-header {
    padding: 32px 0px 0 0px;
  }
  .modal-header-box-right i {
    font-size: 1em;
  }
  .modal-body {
    padding: 0 15px;
  }
  .ft_actab label {
    padding: 0;
    max-height: 40px;
    line-height: 40px;
  }
  .ft_sp li {
    max-height: 40px !important;
    line-height: 40px !important;
    padding: 0 16px;
  }
  .ft_sp li > a {
    margin-left: 15px;
    display: block;
  }
  .ft_actab label > span {
    margin-left: 30px;
    display: block;
  }
  .ft_actab label > span,
  .ft_sp li > a {
    color: #545454;
    font-size: 12px;
  }
  .ft_actab input[type=checkbox] + label::before,
  .ft_sp li::before {
    width: 12px;
    height: 12px;
    top: 55%;
  }
  .ft_actab input[type=checkbox] + label::before {
    left: -18px;
  }
  .ft_sp li::before {
    left: 12px;
  }
  .ft_actab input[type=checkbox] + label::after,
  .ft_sp li::after {
    border: solid 4px transparent;
    border-left: solid 4px #fff;
    top: 50%;
    left: 17px;
  }
  .ft_actab input[type=checkbox]:checked + label::after {
    top: 22px !important;
    left: 14px !important;
  }
  .ft_actab-content p {
    font-size: 12px;
    padding: 10px 3em 6px !important;
  }
  #footer_SP {
    margin-top: 0 !important;
  }
  #footer_SP .footersocialLink {
    margin: 16px auto 15px !important;
  }
  .socialLink {
    justify-content: center;
  }
  .socialLink a {
    flex: none !important;
  }
  .socialLink a + a {
    margin: 0 0 0 16px;
  }
  .socialLink img.mobile {
    width: 24px !important;
  }
  .storeBanner {
    width: 20%;
    text-align: center;
    margin-top: 0 !important;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8px;
  }
  .storeBanner img {
    width: 100%;
  }
  .site_footer_sp {
    font-size: 12px;
    line-height: 2;
  }
  #page-top2 a {
    width: 30px;
    height: 30px;
    font-size: 17px !important;
    padding: 3px 0 0 !important;
  }
}