@charset "UTF-8";
/*
Theme Name: 株式会社.
Theme URI: https://
Description: 株式会社オリジナルテーマ
Author: Arase
Author URI:
Version: 1.0.0

*/
img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-weight: 500;
  scroll-behavior: smooth;
  color: #212121;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
  animation: fadeIn 1.2s ease-out normal;
}
html body {
  overflow-x: hidden;
}

@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
    transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
    transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}

@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
    transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
    transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
.upper {
  text-transform: uppercase;
}

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

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

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

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

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

a {
  color: #212121;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

main {
  overflow-x: hidden;
}

.wrapper {
  width: 100%;
}

.cont {
  width: 89%;
  max-width: 1100px;
  margin: 0 auto;
}

li {
  list-style: none;
}

body.active {
  overflow: hidden;
  position: relative;
}

.box {
  display: none;
}

/*アイコンの＋と-*/
.title {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 1px;
  background-color: #0099b3;
  top: 48%;
  right: 24px;
}
@media screen and (max-width: 767px) {
  .title::before,
  .title::after {
    top: 34px;
    right: 12px;
    width: 14px;
  }
}

.title::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.title::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before,
.title.close::after {
  top: 48%;
}
@media screen and (max-width: 767px) {
  .title.close::before,
  .title.close::after {
    top: 32px;
  }
}

.title.close::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

li.orange .title::before,
li.orange .title::after {
  background: #ee8800;
}

li.orange .title.close::before,
li.orange .title.close::after {
  background: #ee8800;
}

.header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 11;
}
.header .gnav .c_menu .title::before,
.header .gnav .c_menu .title::after {
  width: 9px;
  left: 130px;
  background: #fff;
  z-index: 2;
}
.header .gnav .c_menu .title span {
  position: absolute;
  left: 128px;
  top: 5px;
  background: #000;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  z-index: 1;
}
.header .gnav .c_menu .box {
  margin-top: 8px;
}
.header .gnav .c_menu .box li {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.header .gnav .c_menu .box li:last-child {
  padding-bottom: 0;
}
.header .gnav .c_menu .box li a {
  margin-left: 10px;
}
.header .gnav .c_menu .box li a::before {
  content: "- ";
}
.header h1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 24px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.header h1 img {
  height: 30px;
}
.header h1 span {
  color: #0099b3;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .header h1 span {
    margin-left: 0.5px;
    margin-top: 2px;
    font-size: 9pt;
  }
}
@media screen and (min-width: 1280px) {
  .header {
    height: 86px;
    padding-left: 32px;
    padding-right: 70px;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header .header-wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .header_entry {
    width: 86px;
    height: 86px;
    margin-left: 20px;
  }
  .header_entry a {
    background: #0099b3;
    border: solid 1px #0099b3;
    display: grid;
    place-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    width: 100%;
    height: 100%;
  }
  .header_entry a:hover {
    opacity: 1;
    color: #0099b3;
    background: #fff;
  }
  .header-wrap-pc {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .header-wrap-pc .gnav {
    height: 100%;
  }
  .header-wrap-pc .gnav ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .header-wrap-pc .gnav ul li {
    margin-left: 16px;
  }
  .header-wrap-pc .gnav ul li p {
    font-size: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .header-wrap-pc .gnav ul li p .arrow_down {
    color: #808080;
    font-size: 1rem;
    -webkit-transform: rotate(90deg) scale(0.6, 1.2);
    transform: rotate(90deg) scale(0.6, 1.2);
    display: inline-block;
    margin-left: 3px;
    margin-top: 2px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .header-wrap-pc .gnav ul .p_menu:hover p,
  .header-wrap-pc .gnav ul .p_menu:hover .arrow_down {
    color: #0099b3;
  }
  .header-wrap-pc .gnav ul .p_menu:hover p.title {
    color: unset;
  }
  .header-wrap-pc .gnav ul .p_menu p.title:hover {
    color: #0099b3;
  }
  .header-wrap-pc .p_menu {
    position: relative;
    height: 86px;
  }
  .header-wrap-pc li.home {
    display: none;
  }
  .header-wrap-pc .c_menu::before {
    content: "";
    -webkit-clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    position: absolute;
    top: -11px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 22px;
    height: 12px;
    background: #f7f7f7;
  }
  .header-wrap-pc .gnav ul li .c_menu {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    top: 74px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 32px 24px 24px;
    background-color: #f7f7f7;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    display: block;
  }
  .header-wrap-pc .gnav ul li .c_menu a {
    white-space: nowrap;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .header-wrap-pc .gnav ul li .c_menu a:hover {
    color: #0099b3;
    opacity: 1;
  }
  .header-wrap-pc .gnav ul li .c_menu li {
    margin-bottom: 8px;
    margin-left: 0;
  }
  .header-wrap-pc .gnav ul li .c_menu.wid {
    width: 240px;
  }
  .header-wrap-pc .p_menu:hover .c_menu {
    visibility: visible;
    opacity: 1;
  }
  .header_entry-sp {
    display: none;
  }
  .header h1 img {
    margin-top: -24px;
  }
}
.header-wrap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
}

.header-wrap {
  z-index: 99;
  border-radius: 0;
  background: #fff;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  width: 100%;
  height: 100dvh;
  padding-right: 0;
  padding-top: 75px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-wrap .gnav {
  position: relative;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .header-wrap .gnav {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 0;
  }
}
.header-wrap .gnav ul.flex {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  row-gap: 64px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .header-wrap .gnav ul.flex {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4%;
  }
}
.header-wrap .gnav ul.flex li {
  width: 30%;
  height: auto;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .header-wrap .gnav ul.flex li {
    width: 100%;
  }
}
.header-wrap .gnav ul.flex li p {
  font-size: 1.7rem;
  color: #0099b3;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .header-wrap .gnav ul.flex li p {
    font-size: 1.2rem;
  }
}
.header-wrap .gnav ul.flex li .arrow_down {
  display: none;
}
.header-wrap .gnav ul.flex li a {
  font-size: 1.7rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .header-wrap .gnav ul.flex li a {
    font-size: 1.2rem;
  }
}
.header-wrap .gnav ul.flex li .c_menu .title {
  color: #212121;
  margin-bottom: 0;
  font-size: 1.2rem;
}
.header-wrap .gnav ul.flex li .c_menu .title::before,
.header-wrap .gnav ul.flex li .c_menu .title::after {
  top: 10px;
  left: 111px;
}
.header-wrap .gnav ul.flex li .c_menu .title span {
  left: 109px;
  top: 4px;
}
.header-wrap .gnav ul.flex li .c_menu .box li {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.header-wrap .gnav ul.flex li .c_menu .box li a {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  margin-left: 8px;
}
.header-wrap .gnav ul.flex li .c_menu .box li:last-child {
  padding-bottom: 0;
}
.header-wrap .gnav ul.flex li .c_menu li {
  margin-bottom: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header-wrap .gnav ul.flex li .c_menu li {
    margin-bottom: 8px;
  }
}
.header-wrap .gnav ul.flex li .c_menu li a {
  font-size: 1.2rem;
}
.header-wrap .gnav ul.flex li.home {
  display: block;
}
.header-wrap .gnav ul.flex li.home a {
  color: #0099b3;
}
@media screen and (max-width: 767px) {
  .header-wrap .gnav ul.flex li.w-50 {
    width: 48%;
    margin-top: 36px;
  }
}
.header-wrap .gnav ul.flex .c_menu,
.header-wrap .gnav ul.flex .box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header-wrap .gnav ul.flex .box {
  display: none;
}
.header-wrap .header_wrap-sp_menu {
  width: 100%;
}

@media screen and (max-width: 1279.9px) {
  .header {
    height: 78px;
    top: 0;
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: fixed;
  }
  .header h1 {
    position: fixed;
    top: 11px;
    left: 10px;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header h1 img {
    margin-left: 2px;
  }
  .header h1 p {
    margin-bottom: 0px;
  }
  .header .header-wrap-pc {
    display: none;
  }
  .header .header_entry {
    display: none;
  }
  .header_entry-sp {
    position: absolute;
    right: 10px;
    top: 50px;
    display: inline-block;
    background: #0099b3;
    z-index: 11;
  }
  .header_entry-sp a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0 16px;
    line-height: 1.6rem;
    text-align: center;
  }
}
@media screen and (max-width: 460px) {
  .header h1 img {
    width: calc(100% - 45px);
    -o-object-fit: contain;
    object-fit: contain;
    text-align:left;
  }
}
.hamburger {
  cursor: pointer;
  width: 20px;
  height: 18px;
  position: fixed;
  top: 12px;
  right: 20px;
  z-index: 99;
  border: none;
  background: none;
}
@media screen and (min-width: 1280px) {
  .hamburger span {
    width: 28px;
  }
}
@media screen and (max-width: 1279.9px) {
  .hamburger {
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    right: 10px;
  }
}
@media screen and (max-width: 430px) {
  .hamburger {
    top: 19px;
  }
}
@media screen and (min-width: 1280px) {
  .hamburger {
    width: 28px;
    top: 30px;
    height: 28px;
  }
}

.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: #000;
}
@media screen and (min-width: 1280px) {
  .hamburger span {
    width: 28px;
  }
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}
@media screen and (min-width: 1280px) {
  .hamburger span:nth-child(2) {
    top: 10px;
  }
}

.hamburger span:nth-child(3) {
  top: 16px;
}
@media screen and (min-width: 1280px) {
  .hamburger span:nth-child(3) {
    top: 20px;
  }
}

.hamburger.active {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  top: 4px;
  width: 20px;
  -webkit-transform: translateY(6px) rotate(-40deg);
  transform: translateY(6px) rotate(-40deg);
}
@media screen and (min-width: 1280px) {
  .hamburger.active span:nth-child(1) {
    width: 28px;
  }
}

.hamburger.active span:nth-child(2) {
  display: none;
}

.hamburger.active span:nth-child(3) {
  top: 16px;
  width: 20px;
  -webkit-transform: translateY(-6px) rotate(40deg);
  transform: translateY(-6px) rotate(40deg);
}
@media screen and (min-width: 1280px) {
  .hamburger.active span:nth-child(3) {
    width: 28px;
  }
}

.header-wrap.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#scroll-top {
  display: none;
}

#scroll-top a {
  position: fixed;
  bottom: 12px;
  right: 30px;
  width: 40px;
  height: 40px;
  z-index: 10;
}
#scroll-top a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  #scroll-top a {
    right: 10px;
    bottom: 18px;
    width: 30px;
    height: 30px;
  }
}

h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-size: 1.6rem;
}

p,
a {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  p,
  a {
    font-size: 1.4rem;
  }
}

.page_heading {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 80px;
}

.main_visual-wrapper {
  overflow: hidden;
  max-height: 635px;
  min-height: calc(100svh - 86px);
  margin-top: 86px;
}
@media screen and (max-width: 1279.9px) {
  .main_visual-wrapper {
    margin-top: 70px;
    min-height: calc(100svh - 70px);
  }
}
@media screen and (max-width: 430px) {
  .main_visual-wrapper {
    max-height: 605px;
    min-height: auto;
  }
}

.main_visual {
  width: 100%;
  height: 635px;
  position: relative;
  max-height: 100%;
}
@media (min-width: 1301px) {
  .main_visual {
    height: auto;
    max-height: unset;
  }
}
@media screen and (max-width: 430px) {
  .main_visual {
    height: 605px;
  }
}
.main_visual .main_visual-img {
  width: 100%;
  height: 100%;
  -o-object-position: top center;
  object-position: top center;
}
.main_visual .main_visual-message {
  position: absolute;
  top: 29%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 260px;
  min-width: 552px;
  background-image: url(../img/top_message-balloon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: grid;
  justify-items: center;
  z-index: 10;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .main_visual .main_visual-message {
    width: 290px;
    min-width: auto;
    left: 49%;
  }
}
@media (min-width: 1301px) {
  .main_visual .main_visual-message {
    width: 41%;
    aspect-ratio: 552/260;
    height: auto;
  }
}
.main_visual .main_visual-message p {
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 39px;
  color: transparent;
  letter-spacing: 0.05em;
  text-align:center;
  background: repeating-linear-gradient(
    95deg,
    #0099b3 0 10%,
    #99cc00 50%,
    #ee8800 90% 100%
  );
  -webkit-background-clip: text;
}
@media screen and (max-width: 767px) {
  .main_visual .main_visual-message p {
    font-size: 2.3rem;
    margin-top: 19px;
    margin-right: 4px;
  }
}
@media (min-width: 1301px) {
  .main_visual .main_visual-message p {
    font-size: 3.2vw;
    margin-top: 7%;
  }
}
.main_visual .item {
  position: absolute;
}
.main_visual .item1 {
  top: 4%;
  height: 25%;
  left: calc(50% - 632px);
  -webkit-animation: move01 4s step-start 0.2s infinite normal;
  animation: move01 4s step-start 0.2s infinite normal;
}
@media (min-width: 1301px) {
  .main_visual .item1 {
    left: 1%;
  }
}
@media screen and (max-width: 430px) {
  .main_visual .item1 {
    top: 1%;
    width: 32.4%;
    height: auto;
    left: 3%;
  }
}
.main_visual .item2 {
  top: 0%;
  height: 25%;
  left: calc(50% - 98px);
  -webkit-animation: move02 4s step-start 0.4s infinite normal;
  animation: move02 4s step-start 0.4s infinite normal;
}
@media (min-width: 1301px) {
  .main_visual .item2 {
    left: 43%;
  }
}
@media screen and (max-width: 430px) {
  .main_visual .item2 {
    top: 89%;
    height: auto;
    width: 19.5%;
    left: 35%;
  }
}
@media (max-width: 400px) {
  .main_visual .item2 {
    top: 81%;
  }
}
.main_visual .item3 {
  top: 360px;
  height: 112px;
  left: calc(50% + 475px);
  -webkit-animation: move01 4s step-start 0.2s infinite normal;
  animation: move01 4s step-start 0.2s infinite normal;
}
@media (min-width: 1301px) {
  .main_visual .item3 {
    left: 87%;
    top: 55%;
  }
}
@media (max-width: 1250px) {
  .main_visual .item3 {
    top: 57%;
    left: calc(50% + 452px);
    height: 89px;
  }
}
@media (max-width: 1150px) {
  .main_visual .item3 {
    top: 54%;
  }
}
@media screen and (max-width: 430px) {
  .main_visual .item3 {
    top: 52%;
    height: auto;
    width: 19.5%;
    left: 79%;
  }
}
@media (max-width: 400px) {
  .main_visual .item3 {
    top: 48%;
  }
}
.main_visual .item4 {
  top: 381px;
  height: 19%;
  left: calc(50% - 311px);
  -webkit-animation: move02 4s step-start 0.4s infinite normal;
  animation: move02 4s step-start 0.4s infinite normal;
}
@media (min-width: 1301px) {
  .main_visual .item4 {
    left: 26%;
    top: 58%;
  }
}
@media screen and (max-width: 430px) {
  .main_visual .item4 {
    top: 47%;
    height: auto;
    width: 8.5%;
    left: 10%;
  }
}

.heading_type1 {
  letter-spacing: 0.13em;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0 48px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .heading_type1 {
    font-size: 1.6rem;
    padding: 0 24px;
  }
}
.heading_type1 span {
  display: block;
  font-size: 3.4rem;
  font-weight: 300;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .heading_type1 span {
    font-size: 2.6rem;
    margin-bottom: 8px;
  }
}
.heading_type1::before {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  top: 24px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(15%, #fcdbb2),
    color-stop(15%, #fcdbb2),
    color-stop(25%, #ffffff)
  );
  background-image: linear-gradient(
    to bottom,
    #fcdbb2 15%,
    #fcdbb2 15%,
    #ffffff 25%
  );
  background-position: 0px 0px;
  background-size: 5px 7px;
  background-repeat: repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .heading_type1::before {
    height: 24px;
    top: 19px;
    background-size: 5px 5px;
  }
}

.heading_type2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  font-size: 3.9rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 6.8rem;
  color: #0099b3;
}
@media screen and (max-width: 767px) {
  .heading_type2 {
    font-size: 2.4rem;
    line-height: 4.8rem;
  }
  .heading_type2 span {
    font-size: 1.8rem;
    display: block;
  }
}
.heading_type2::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -35px;
  -webkit-transform: skewX(44deg);
  transform: skewX(44deg);
  width: 33px;
  height: 100%;
  margin: 0 auto;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(55%, #f7c480),
    color-stop(55%, #f7c480),
    color-stop(45%, #ffffff)
  );
  background-image: linear-gradient(
    to bottom,
    #f7c480 55%,
    #f7c480 55%,
    #ffffff 45%
  );
  background-position: 0px 0px;
  background-size: 5px 8px;
  background-repeat: repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .heading_type2::before {
    left: -16px;
    width: 24px;
  }
}

.heading_type3 {
  letter-spacing: 0.13em;
  font-weight: 400;
  font-size: 2rem;
  color: #0099b3;
  line-height: 1;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0 50px;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .heading_type3 {
    font-size: 1.6rem;
    padding: 0 24px;
  }
}
.heading_type3 span {
  display: block;
  font-size: 3.4rem;
  font-weight: 400;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .heading_type3 span {
    font-size: 2.6rem;
    margin-bottom: 8px;
  }
}
.heading_type3::before {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  top: 20px;
  background-size: auto auto;
  background-color: #f7f7f7;
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #fcdbb2 6px,
    #fcdbb2 8px
  );
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .heading_type3::before {
    height: 24px;
    top: 17px;
    background-image: repeating-linear-gradient(
      150deg,
      transparent,
      transparent 4px,
      #fcdbb2 5px,
      #fcdbb2 6px
    );
  }
}

.orange_border {
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #fbe8ca 6px,
    #fbe8ca 8px
  );
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .orange_border {
    background-image: repeating-linear-gradient(
      150deg,
      transparent,
      transparent 4px,
      #fbe8ca 5px,
      #fbe8ca 6px
    );
  }
}

.blue_border {
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #ceebf1 6px,
    #ceebf1 8px
  );
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .blue_border {
    background-image: repeating-linear-gradient(
      150deg,
      transparent,
      transparent 4px,
      #ceebf1 5px,
      #ceebf1 6px
    );
  }
}

.green_border {
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #e0f0b2 6px,
    #e0f0b2 8px
  );
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .green_border {
    background-image: repeating-linear-gradient(
      150deg,
      transparent,
      transparent 4px,
      #e0f0b2 5px,
      #e0f0b2 6px
    );
  }
}

.top_introduction {
  padding-top: 80px;
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .top_introduction {
    padding-top: 56px;
    margin-bottom: 80px;
  }
}
.top_introduction h2 {
  margin-bottom: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top_introduction h2 {
    margin-bottom: 40px;
  }
}
.top_introduction h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2.0625;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .top_introduction h3 {
    font-size: 2.2rem;
    margin-bottom: 56px;
    line-height: 1.8;
  }
}
.top_introduction h3 span {
  display: inline-block;
  color: #0099b3;
  font-size: 4.1rem;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .top_introduction h3 span {
    font-size: 2.6rem;
    padding: 0 10px;
  }
}
.top_introduction h3 span::after {
  content: "";
  width: 5px;
  height: 14px;
  position: absolute;
  bottom: 16px;
  left: -6px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top_introduction h3 span::after {
    bottom: 9px;
    height: 8px;
  }
}
.top_introduction h3 span::before {
  content: "";
  width: 100%;
  height: 14px;
  position: absolute;
  bottom: 16px;
  left: -6px;
  z-index: -1;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 3px,
    rgb(247, 196, 128) 4px,
    rgb(247, 196, 128) 8px
  );
}
@media screen and (max-width: 767px) {
  .top_introduction h3 span::before {
    height: 8px;
    bottom: 9px;
  }
}
.top_introduction .description {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_introduction .description {
    font-size: 1.6rem;
  }
  .top_introduction .description span.sp-block {
    display: inline-block;
    width: 8px;
  }
}

.page_bottom ul {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 3.6%;
  -moz-column-gap: 3.6%;
  column-gap: 3.6%;
}
@media screen and (max-width: 767px) {
  .page_bottom ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 32px;
    -ms-flex-line-pack: center;
    align-content: center;
  }
}
.page_bottom ul li {
  width: 48.2%;
  max-width: 530px;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_bottom ul li {
    width: 100%;
  }
}
.page_bottom ul li a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 180px 20px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_bottom ul li a {
    padding: 112px 20px 16px;
  }
}
.page_bottom ul li a p {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.13em;
  font-weight: 500;
  background-color: rgba(0, 153, 179, 0.6);
  padding: 20px 16px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_bottom ul li a p {
    font-size: 1.45rem;
    padding: 10px 8px;
  }
}
.page_bottom ul li .casestudy {
  background-image: url(../img/link-casestudy.jpg);
}
.page_bottom ul li .allabout {
  background-image: url(../img/link-allabout.jpg);
}
.page_bottom ul li .crosstalk {
  background-image: url(../img/link-crosstalk.jpg);
}
.page_bottom ul li .voices {
  background-image: url(../img/link-voices.jpg);
}
.page_bottom ul li .interview {
  background-image: url(../img/link-interview.jpg);
}
.page_bottom ul li .info {
  background-image: url(../img/link-info.jpg);
}
.page_bottom ul li .internship {
  background-image: url(../img/link-internship.jpg);
}
.page_bottom ul li .faq {
  background-image: url(../img/link-faq.jpg);
}
.page_bottom ul li .program {
  background-image: url(../img/link-program.jpg);
}
.page_bottom ul li .human-resources {
  background-image: url(../img/link-human-resources.jpg);
}
.page_bottom ul li .benefits {
  background-image: url(../img/link-benefits.jpg);
}

.page_bottom.plus-h {
  background: #f7f7f7;
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  .page_bottom.plus-h {
    padding-top: 48px;
  }
}
.page_bottom.plus-h .heading_type3 {
  margin-bottom: 66px;
}
@media screen and (max-width: 767px) {
  .page_bottom.plus-h .heading_type3 {
    margin-bottom: 40px;
  }
}

.page_bottom-entry_btn {
  margin-top: 64px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page_bottom-entry_btn {
    margin-top: 40px;
  }
}
.page_bottom-entry_btn a {
  display: block;
  background: #0099b3;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 500;
  width: 100%;
  letter-spacing: 0.3em;
  line-height: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_bottom-entry_btn a {
    font-size: 1.4rem;
    padding: 20px 20px;
  }
}
.page_bottom-entry_btn a::after {
  content: "";
  display: inline-block;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 21px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .page_bottom-entry_btn a::after {
    width: 6px;
    height: 9px;
    margin-left: 12px;
  }
}

.small_wrap {
  text-align: center;
  display: block;
  background: #80ccd9;
  padding: 6px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .small_wrap {
    padding: 6px 0;
  }
}
.small_wrap small {
  font-weight: 400;
  line-height: 1.4461538462;
  font-size: 1.3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .small_wrap small {
    font-size: 1rem;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    text-wrap: nowrap;
  }
}

/* fadeUp */
.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fade {
  opacity: 0;
}

.page_top {
  margin-top: 156px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .page_top {
    margin-top: 126px;
    margin-bottom: 56px;
  }
}
.page_top .cont {
  max-width: 1000px;
}
.page_top .pankuzu {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .page_top .pankuzu {
    margin-left: 0;
  }
}
.page_top .pankuzu li {
  color: #0099b3;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2777777778;
}
@media screen and (max-width: 767px) {
  .page_top .pankuzu li {
    font-size: 1.3rem;
  }
}
.page_top .pankuzu li span {
  vertical-align: text-top;
  display: inline-block;
}
.page_top .pankuzu li:first-child {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .page_top .pankuzu li:first-child {
    font-size: 1.4rem;
  }
}
.page_top .pankuzu li::after {
  content: "";
  width: 1px;
  height: 23px;
  background: #0099b3;
  margin: 0 20px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .page_top .pankuzu li::after {
    height: 16px;
    margin: 0 16px;
  }
}
.page_top .pankuzu li:last-child::after {
  content: none;
}

.heading_note {
  margin-top: 16px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.8666666667;
}
@media screen and (max-width: 767px) {
  .heading_note {
    font-size: 1rem;
  }
}

.interview_archive {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .interview_archive {
    margin-bottom: 80px;
  }
}

.interview_archive-wrapper {
  margin-top: 116px;
  gap: 95px 6%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .interview_archive-wrapper {
    margin-top: 48px;
  }
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper {
    gap: 40px 8%;
  }
}
.interview_archive-wrapper li {
  width: 320px;
  max-width: 100%;
  height: 456px;
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li {
    width: 46%;
    max-width: 320px;
    height: 300px;
  }
}
.interview_archive-wrapper li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.interview_archive-wrapper li a picture {
  width: 100%;
  height: 100%;
  position: absolute;
}
.interview_archive-wrapper li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.interview_archive-wrapper li a .position {
  background: rgba(0, 153, 179, 0.7);
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .interview_archive-wrapper li a .position {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li a .position {
    font-size: 1.3rem;
    line-height: 3rem;
  }
}
.interview_archive-wrapper li a .interview-inner {
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  min-height: 139px;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview_archive-wrapper li a .interview-inner {
    min-height: 130px;
  }
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li a .interview-inner {
    padding: 8px;
    min-height: 126px;
  }
  .interview_archive-wrapper li a .interview-inner .department {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .interview_archive-wrapper li a .interview-inner .department br {
    display: none;
  }
  .interview_archive-wrapper li a .interview-inner .sm-fz {
    font-size: 1rem;
    line-height: 1.2;
  }
  .interview_archive-wrapper li a .interview-inner .detail {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.interview_archive-wrapper li a .interview-inner::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 45px 45px;
  border-color: transparent transparent #4db8ca transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li a .interview-inner::before {
    border-width: 0 0 30px 30px;
  }
}
.interview_archive-wrapper li a .interview-inner::after {
  content: "";
  width: 6px;
  height: 8px;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 9px;
  right: 9px;
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li a .interview-inner::after {
    right: 4px;
    bottom: 6px;
  }
}
.interview_archive-wrapper li a .description_wrap {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 153, 179, 0.85);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li a .description_wrap {
    padding: 20px;
  }
}
.interview_archive-wrapper li a .description_wrap p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.07em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li a .description_wrap p {
    font-size: 1.4rem;
  }
  .interview_archive-wrapper li a .description_wrap p br {
    display: none;
  }
}
.interview_archive-wrapper li a .description_wrap span {
  position: absolute;
  bottom: 110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li a .description_wrap span {
    bottom: 40px;
    width: 24px;
    height: 24px;
  }
}
.interview_archive-wrapper li a .description_wrap span::after {
  content: "";
  width: 7px;
  height: 10px;
  background-image: url(../img/arrow_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: 52%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 430px) {
  .interview_archive-wrapper li a .description_wrap span::after {
    top: 7px;
  }
}
.interview_archive-wrapper li a:hover .description_wrap {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}

.interview-inner .department {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .interview-inner .department {
    font-size: 1.4rem;
  }
}
.interview-inner .lih {
  line-height: 1.5;
}
.interview-inner .name {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.8947368421;
}
@media screen and (max-width: 767px) {
  .interview-inner .name {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 6px;
  }
}
.interview-inner .name span {
  font-size: 1.5rem;
  display: inline-block;
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  .interview-inner .name span {
    font-size: 1.1rem;
    display: block;
    line-height: 1.2;
    margin-left: 0;
  }
}
.interview-inner .detail {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .interview-inner .detail {
    font-size: 1.4rem;
  }
}
.interview-inner p.note {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 32px;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .interview-inner p.note {
    font-size: 1rem;
    margin-top: 16px;
  }
}

.page_top-mv {
  margin-top: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  height: 100%;
}
.page_top-mv img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 500px 0;
}
@media screen and (max-width: 767px) {
  .page_top-mv img {
    border-radius: 0 0 150px 0;
    height: auto;
    aspect-ratio: 5/3;
  }
}
.page_top-mv .position {
  position: absolute;
  left: 0;
  top: 74px;
  color: #fff;
  background-color: rgba(0, 153, 179, 0.7);
  font-size: 2.8rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  line-height: 5.4rem;
  padding: 0 24px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .page_top-mv .position {
    top: 24px;
    font-size: 1.8rem;
    line-height: 3.6rem;
  }
}
.page_top-mv .upper {
  position: absolute;
  right: 26px;
  bottom: 52px;
  color: #0099b3;
  background: rgba(255, 255, 255, 0.7);
  line-height: 1;
  padding: 3px 24px 7px;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .page_top-mv .upper {
    font-size: 3.6rem;
    right: 0;
    bottom: 32px;
  }
}

.page_top-mv.interview img {
  aspect-ratio: unset;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .crosstalk_top .heading_type2 {
    font-size: 2.4rem;
  }
}

.heading_note2 {
  text-align: center;
  color: #0099b3;
  font-size: 2.3rem;
  letter-spacing: 0.13em;
  padding-right: 72px;
}
@media screen and (max-width: 767px) {
  .heading_note2 {
    font-size: 1.6rem;
    padding: 0;
  }
}

.crosstalk_member {
  padding-top: 104px;
  margin-bottom: 104px;
}
@media screen and (max-width: 767px) {
  .crosstalk_member {
    padding-top: 56px;
    margin-bottom: 56px;
  }
}
.crosstalk_member .note {
  text-align: center;
  margin-top: -10px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .crosstalk_member .note {
    font-size: 1.2rem;
    margin-top: -6px;
  }
}
.crosstalk_member h3 {
  color: #0099b3;
  font-size: 4rem;
  letter-spacing: 0.18em;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .crosstalk_member h3 {
    font-size: 3rem;
  }
}
.crosstalk_member .crosstalk_member-inner {
  margin-top: -44px;
  padding: 60px 4.5% 34px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .crosstalk_member .crosstalk_member-inner {
    padding-top: 50px;
    margin-top: -35px;
  }
}
.crosstalk_member .crosstalk_member-inner ul {
  gap: 32px 44px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .crosstalk_member .crosstalk_member-inner ul {
    gap: 24px 6%;
  }
}
.crosstalk_member .crosstalk_member-inner ul li {
  width: 165px;
}
@media screen and (max-width: 767px) {
  .crosstalk_member .crosstalk_member-inner ul li {
    width: 47%;
    max-width: 165px;
  }
}
.crosstalk_member .crosstalk_member-inner ul img {
  margin-bottom: 16px;
}
.crosstalk_member .crosstalk_member-inner ul .position {
  font-size: 1.6rem;
  line-height: 1.625;
  margin-bottom: 6px;
}
@media screen and (max-width: 430px) {
  .crosstalk_member .crosstalk_member-inner ul .position {
    font-size: 1.4rem;
  }
}
.crosstalk_member .crosstalk_member-inner ul .name {
  font-size: 1.9rem;
}
@media screen and (max-width: 430px) {
  .crosstalk_member .crosstalk_member-inner ul .name {
    font-size: 1.6rem;
  }
}
.crosstalk_member .crosstalk_member-inner ul .furigana {
  font-size: 1.5rem;
  margin-bottom: 6px;
  margin-top: -2px;
}
@media screen and (max-width: 430px) {
  .crosstalk_member .crosstalk_member-inner ul .furigana {
    font-size: 1.3rem;
  }
}
.crosstalk_member .crosstalk_member-inner ul .detail {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 430px) {
  .crosstalk_member .crosstalk_member-inner ul .detail {
    font-size: 1.4rem;
  }
}

.crosstalk_session {
  margin-bottom: 144px;
}
@media screen and (max-width: 767px) {
  .crosstalk_session {
    margin-bottom: 80px;
  }
}
.crosstalk_session .session_title-wrap {
  margin-top: 38px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .session_title-wrap {
    margin-bottom: 40px;
  }
}
.crosstalk_session .session_title-wrap p {
  text-align: center;
  font-size: 2.7rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #0099b3;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .session_title-wrap p {
    font-size: 2rem;
    margin-top: 16px;
  }
}
.crosstalk_session .session_title-wrap h3 {
  width: 100%;
  max-width: 806px;
  margin: -16px auto 0;
  padding: 24px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .session_title-wrap h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 430px) {
  .crosstalk_session .session_title-wrap h3 br {
    display: none;
  }
}
.crosstalk_session .talk {
  padding: 0 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .talk {
    padding: 0;
  }
}
.crosstalk_session .talk h4 {
  color: #0099b3;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .talk h4 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}
.crosstalk_session .talk h4::before {
  content: "";
  display: inline-block;
  width: 58px;
  height: 1px;
  background: #0099b3;
  vertical-align: super;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .talk h4::before {
    width: 40px;
  }
}
.crosstalk_session .talk ul {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .talk ul {
    margin-bottom: 40px;
  }
}
.crosstalk_session .talk ul.mb {
  margin-bottom: 66px;
}
.crosstalk_session .talk ul li {
  margin-bottom: 32px;
}
.crosstalk_session .talk ul li .img {
  width: 90px;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .talk ul li .img {
    width: 70px;
  }
}
.crosstalk_session .talk ul li .img img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 50%;
  margin-bottom: 6px;
  -o-object-position: top;
  object-position: top;
}
.crosstalk_session .talk ul li .img p {
  font-size: 1.5rem;
  letter-spacing: 0.13em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .talk ul li .img p {
    font-size: 1.3rem;
  }
}
.crosstalk_session .talk ul li .comment {
  width: calc(100% - 130px);
  line-height: 1.75;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .crosstalk_session .talk ul li .comment {
    width: calc(100% - 90px);
    font-weight: 400;
  }
}

.interview_detail_top {
  margin-top: 86px;
  margin-bottom: 64px;
  height: calc(100svh - 86px);
}
@media screen and (max-width: 1279.9px) {
  .interview_detail_top {
    margin-top: 70px;
    height: calc(100svh - 70px);
  }
}
.interview_detail_top .cont {
  height: 100%;
}

.interview_detail-content .top_lead {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.7333333333;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .top_lead {
    font-size: 2rem;
    margin-bottom: 48px;
  }
  .interview_detail-content .top_lead br {
    display: none;
  }
}
.interview_detail-content .interview-inner {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-inner {
    margin-bottom: 56px;
  }
}
.interview_detail-content .interview-inner p {
  text-align: center;
}
.interview_detail-content .interview-inner .department {
  line-height: 1.6;
}
.interview_detail-content .interview-career h3 {
  font-size: 4rem;
  font-weight: 500;
  color: #0099b3;
  text-align: center;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-career h3 {
    font-size: 3rem;
  }
}
.interview_detail-content .interview-career .interview-career-inner {
  margin-top: -29px;
  padding: 60px 0 30px;
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-career .interview-career-inner {
    padding: 32px 0 24px;
    margin-top: -20px;
    margin-bottom: 64px;
  }
}
.interview_detail-content .interview-career .interview-career-inner ol {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.interview_detail-content .interview-career .interview-career-inner li {
  font-size: 1.7rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  line-height: 1.8823529412;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-career .interview-career-inner li {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
.interview_detail-content .interview-career .interview-career-inner li span {
  display: inline-block;
  color: #0099b3;
  min-width: 90px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-career .interview-career-inner li span {
    min-width: 70px;
  }
}
.interview_detail-content
  .interview-career
  .interview-career-inner
  .yandm
  li
  span {
  min-width: 115px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content
    .interview-career
    .interview-career-inner
    .yandm
    li
    span {
    min-width: 100px;
  }
}
.interview_detail-content .interview-qa .interview-qa1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa1 {
    margin-bottom: 64px;
  }
}
.interview_detail-content .interview-qa .interview-qa1 .interview-qa_detail {
  margin: 0 auto 70px;
  max-width: 705px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa1 .interview-qa_detail {
    margin-bottom: 40px;
  }
}
.interview_detail-content .interview-qa .interview-qa1 .interview-pic1 {
  width: 100%;
  height: auto;
  aspect-ratio: 1280/462;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa1 .interview-pic1 {
    aspect-ratio: 3/2;
  }
}
.interview_detail-content .interview-qa .interview-qa1 .interview-pic1 img {
  width: 100%;
  height: 100%;
}
.interview_detail-content .interview-qa .interview-qa_detail h3 {
  color: #0099b3;
  font-size: 2.3rem;
  line-height: 1.5652173913;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-align: left;
  margin-bottom: 24px;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa_detail h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.interview_detail-content .interview-qa .interview-qa_detail h3::before {
  content: "";
  display: inline-block;
  width: 58px;
  height: 1px;
  background: #0099b3;
  vertical-align: super;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa_detail h3::before {
    width: 40px;
  }
}
.interview_detail-content .interview-qa .interview-qa_detail p {
  font-weight: 400;
  line-height: 2.25;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  text-align: justify;
}
.interview_detail-content .interview-qa .cont.flex-top {
  gap: 24px 4%;
  margin-bottom: 80px;
  max-width: unset;
  width: 87.9%;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .cont.flex-top {
    margin-bottom: 56px;
    width: 89%;
    max-width: 1100px;
  }
}
.interview_detail-content .interview-qa .cont.flex-top .interview-qa_detail {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .cont.flex-top .interview-qa_detail {
    width: 100%;
  }
}
.interview_detail-content .interview-qa .cont.flex-top .interview-pic {
  width: 51.5%;
  height: auto;
  aspect-ratio: 3/2;
  margin-top: 70px;
  position: relative;
  padding-right: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .cont.flex-top .interview-pic {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 430px) {
  .interview_detail-content .interview-qa .cont.flex-top .interview-pic {
    margin-top: 30px;
    margin-bottom: 24px;
  }
}
.interview_detail-content .interview-qa .cont.flex-top .interview-pic::before {
  content: "";
  width: 61.4%;
  height: calc(100% + 68px);
  position: absolute;
  right: 0;
  top: -60px;
  z-index: -1;
  background: #f5fae6;
}
@media screen and (max-width: 767px) {
  .interview_detail-content
    .interview-qa
    .cont.flex-top
    .interview-pic::before {
    right: -8%;
    height: calc(100% + 56px);
    top: -40px;
  }
}
@media screen and (max-width: 430px) {
  .interview_detail-content
    .interview-qa
    .cont.flex-top
    .interview-pic::before {
    top: -33px;
  }
}
.interview_detail-content .interview-qa .interview-qa2 .cont {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa2 .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: auto;
  }
}
.interview_detail-content .interview-qa .interview-qa3 .cont {
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa3 .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa3 .cont {
    margin-left: auto;
  }
}
.interview_detail-content .interview-qa .interview-qa3 .cont .interview-pic {
  padding-right: 0;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa3 .cont .interview-pic {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }
}
@media screen and (max-width: 430px) {
  .interview_detail-content .interview-qa .interview-qa3 .cont .interview-pic {
    margin-top: 30px;
    margin-bottom: 24px;
  }
}
.interview_detail-content
  .interview-qa
  .interview-qa3
  .cont
  .interview-pic::before {
  background-size: auto auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #ceebf1 6px,
    #ceebf1 8px
  );
  right: auto;
  left: 0;
}
@media screen and (max-width: 767px) {
  .interview_detail-content
    .interview-qa
    .interview-qa3
    .cont
    .interview-pic::before {
    left: -8%;
    height: calc(100% + 56px);
    top: -40px;
    background-image: repeating-linear-gradient(
      150deg,
      transparent,
      transparent 4px,
      #ceebf1 5px,
      #ceebf1 6px
    );
  }
}
@media screen and (max-width: 430px) {
  .interview_detail-content
    .interview-qa
    .interview-qa3
    .cont
    .interview-pic::before {
    top: -33px;
  }
}
.interview_detail-content .interview-qa .interview-qa3 .annotation {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa3 .annotation {
    margin-bottom: 56px;
  }
}
.interview_detail-content .interview-qa .interview-qa3 .annotation .cont {
  margin: 0 auto;
  max-width: 940px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 25px solid #e6f5f7;
  border-right: 25px solid #e6f5f7;
  padding: 0 12px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa3 .annotation .cont {
    border-width: 16px;
  }
}
.interview_detail-content .interview-qa .interview-qa3 .annotation .cont p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa3 .annotation .cont p {
    line-height: 2;
    font-size: 1.4rem;
  }
}
.interview_detail-content
  .interview-qa
  .interview-qa3
  .annotation
  .cont
  p
  span {
  font-weight: bold;
}
.interview_detail-content .interview-qa .interview-qa4 {
  margin-bottom: 0;
}
.interview_detail-content .interview-qa .interview-qa4 h3 {
  margin-right: -30px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa4 h3 {
    margin-right: 0;
  }
}
.interview_detail-content .interview-qa .interview-qa4 .interview-qa_detail {
  max-width: 770px;
  padding-top: 50px;
  margin-bottom: 0;
  padding-bottom: 70px;
  padding-left: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .interview-qa4 .interview-qa_detail {
    padding-left: 0;
    padding-top: 32px;
    padding-bottom: 48px;
  }
}
.interview_detail-content
  .interview-qa
  .interview-qa4
  .interview-qa_detail::before {
  content: "";
  height: 100%;
  width: 72.7%;
  background: #fdf3e5;
  position: absolute;
  right: -50px;
  top: 0;
  z-index: -1;
}
.interview_detail-content .interview-qa .strong_point {
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .strong_point {
    margin-bottom: 80px;
  }
}
.interview_detail-content .interview-qa .strong_point .interview-qa_detail {
  background: rgba(238, 136, 0, 0.8);
  max-width: 760px;
  width: 100%;
  padding: 30px 40px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -135px;
  z-index: 2;
  position: relative;
  margin-left: auto;
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .interview_detail-content .interview-qa .strong_point .interview-qa_detail {
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .strong_point .interview-qa_detail {
    margin-top: -32px;
    padding: 30px 24px;
  }
}
.interview_detail-content .interview-qa .strong_point .interview-qa_detail h3 {
  color: #fff;
  margin-right: -30px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content
    .interview-qa
    .strong_point
    .interview-qa_detail
    h3 {
    margin-right: 0;
  }
}
.interview_detail-content
  .interview-qa
  .strong_point
  .interview-qa_detail
  h3::before {
  background: #fff;
}
.interview_detail-content .interview-qa .strong_point .interview-qa_detail p {
  color: #fff;
}
.interview_detail-content .interview-qa .private .cont {
  max-width: 1000px;
}
.interview_detail-content .interview-qa .private .interview-career-inner {
  padding: 50px 20px 44px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px 30px;
  border-radius: 0 0 0 200px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .private .interview-career-inner {
    padding-top: 32px;
    border-radius: 0 0 0 60px;
  }
}
.interview_detail-content .interview-qa .private .interview-career-inner p {
  width: 39.5%;
  line-height: 2.25;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .interview_detail-content .interview-qa .private .interview-career-inner p {
    width: 100%;
  }
}
.interview_detail-content
  .interview-qa
  .private
  .interview-career-inner
  picture {
  width: 35%;
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .interview_detail-content
    .interview-qa
    .private
    .interview-career-inner
    picture {
    width: 92%;
  }
}

.slider {
  max-width: 792px;
  width: 89%;
  margin: 74px auto 55px;
}
@media screen and (max-width: 767px) {
  .slider {
    margin-top: 0;
    width: 96%;
    margin-bottom: 32px;
  }
}

.slide-item {
  width: 136px;
  margin: 0 14px;
}
@media screen and (max-width: 430px) {
  .slide-item {
    width: calc(50vw - 60px);
    margin: 0 8px;
  }
}
.slide-item a,
.slide-item img {
  width: 100%;
}
.slide-item img {
  margin-bottom: 24px;
}
.slide-item .department {
  line-height: 1.5;
}
.slide-item .detail {
  font-size: 1.5rem;
}

.slick-arrow {
  width: 23px;
  height: 24px;
  position: absolute;
  cursor: pointer;
  background-image: url(../img/slider_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 160px;
}
@media screen and (max-width: 767px) {
  .slick-arrow {
    width: 12px;
  }
}

.prev-arrow {
  left: -72px;
}
@media screen and (max-width: 767px) {
  .prev-arrow {
    left: -30px;
  }
}
@media screen and (max-width: 430px) {
  .prev-arrow {
    left: -15px;
  }
}

.next-arrow {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  right: -72px;
}
@media screen and (max-width: 767px) {
  .next-arrow {
    right: -30px;
  }
}
@media screen and (max-width: 430px) {
  .next-arrow {
    right: -15px;
  }
}

.page_faq .cont {
  max-width: 1000px;
}

.heading_type4 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  padding-top: 20px;
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .heading_type4 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
.heading_type4::before {
  content: "";
  display: block;
  width: 63px;
  height: 1px;
  background: #0099b3;
  position: absolute;
  top: 0;
  left: 0;
}

.faq_contents {
  margin-top: 56px;
  margin-bottom: 145px;
}
@media screen and (max-width: 767px) {
  .faq_contents {
    margin-bottom: 80px;
  }
}
.faq_contents p {
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}
.faq_contents .title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.65;
  padding: 22px 0;
  border-bottom: solid 1px #f7f7f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .faq_contents .title {
    font-size: 1.5rem;
    padding-right: 30px;
  }
}
.faq_contents .title img {
  width: 27px;
  -o-object-fit: contain;
  object-fit: contain;
  display: inline-block;
  margin-right: 24px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .faq_contents .title img {
    width: 20px;
    margin-top: 2px;
  }
}
.faq_contents .title.close {
  border: none;
}
.faq_contents .box {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  padding: 24px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .faq_contents .box {
    font-size: 1.4rem;
  }
}
.faq_contents li.blue .box {
  background: #f7fcfd;
}
.faq_contents li.orange .box {
  background: #fefbf7;
}
.faq_contents .faq_inner {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .faq_contents .faq_inner {
    margin-bottom: 80px;
  }
}

.page_info {
  position: relative;
  overflow: hidden;
}
.page_info::before {
  content: "";
  position: absolute;
  top: 127px;
  right: 0;
  width: 100%;
  height: calc(100% - 127px);
  background-image: url(../img/info_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-position: right top;
}
@media screen and (max-width: 767px) {
  .page_info::before {
    background-image: url(../img/info_bg-sp.png);
    height: calc(100% - 104px);
    top: 104px;
    width: 150%;
    background-repeat: repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .page_info .heading_type2 {
    font-size: 2.4rem;
  }
}
.page_info .cont {
  max-width: 1000px;
}
.page_info .requirements {
  margin-bottom: 72px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .page_info table {
    overflow-x: auto;
  }
}
.page_info tbody {
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  .page_info tbody {
    min-width: 580px;
  }
}
.page_info table,
.page_info tbody {
  display: block;
}
.page_info tr {
  border-bottom: 1px solid #0099b3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .page_info tr {
    font-size: 1.4rem;
  }
}
.page_info tr th,
.page_info tr .blue {
  color: #0099b3;
  font-weight: 700;
}
.page_info tr th,
.page_info tr td {
  padding: 10px 0 10px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.875;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .page_info tr th,
  .page_info tr td {
    padding-left: 10px;
  }
}
.page_info tr th {
  font-weight: 700;
  width: 188px;
  min-width: 188px;
}
@media screen and (max-width: 767px) {
  .page_info tr th {
    width: 100px;
    min-width: 100px;
  }
}
.page_info tr td {
  font-weight: 400;
  width: calc(100% - 188px);
}
@media screen and (max-width: 767px) {
  .page_info tr td {
    width: calc(100% - 100px);
  }
}
.page_info tr td .flex-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .page_info tr td .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 16px;
  }
}
.page_info tr td .flex-top:last-child {
  margin-bottom: 0;
}
.page_info tr td .left {
  width: 110px;
}
@media screen and (max-width: 767px) {
  .page_info tr td .left {
    width: 100%;
  }
}
.page_info tr td .right {
  width: calc(100% - 110px);
}
@media screen and (max-width: 767px) {
  .page_info tr td .right {
    width: 100%;
  }
}
.page_info .child_2 {
  border: none;
}
.page_info .child_2 td,
.page_info .child_2 th {
  border-bottom: 1px solid #0099b3;
}
.page_info .flow {
  margin-bottom: 148px;
}
@media screen and (max-width: 767px) {
  .page_info .flow {
    margin-bottom: 80px;
  }
}
.page_info .flow h3 {
  margin-bottom: 40px;
}
.page_info .flow ol {
  width: 100%;
  max-width: 657px;
  margin: 0 auto;
}
.page_info .flow .flex {
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .page_info .flow .flex {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.page_info .flow .flex .no {
  width: 108px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0099b3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .page_info .flow .flex .no {
    width: 70px;
    font-size: 1.8rem;
    margin-top: 4px;
  }
}
.page_info .flow .flex .flow_detail {
  width: calc(100% - 108px);
  padding: 8px 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  border: solid 1px #0099b3;
  text-align: center;
  background: #f7f7f7;
  position: relative;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .page_info .flow .flex .flow_detail {
    width: calc(100% - 70px);
    font-size: 1.5rem;
  }
}
.page_info .flow .flex .flow_detail::after {
  content: "";
  width: 1px;
  height: 23px;
  background: #0099b3;
  position: absolute;
  bottom: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.page_info .flow li:last-child {
  margin-bottom: 0;
}
.page_info .flow li:last-child .flow_detail {
  background: #0099b3;
  color: #fff;
}
.page_info .flow li:last-child .flow_detail::after {
  content: none;
}

.page_top-type2 {
  margin-bottom: 18px;
}

.page_top-type2_mv {
  width: 100%;
  height: auto;
  aspect-ratio: 1280/520;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 70px;
  z-index: -1;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page_top-type2_mv {
    padding-top: 30px;
    aspect-ratio: 5/2.5;
  }
}
.page_top-type2_mv .heading_type2-wrap {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  padding: 18px 24px 18px 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  max-width: 96%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_top-type2_mv .heading_type2-wrap {
    padding: 10px 24px 10px 50px;
  }
}
.page_top-type2_mv .heading_type2-wrap .heading_type2::before {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(55%, #f7c480),
    color-stop(55%, #f7c480),
    color-stop(45%, transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #f7c480 55%,
    #f7c480 55%,
    transparent 45%
  );
}

.page-allabout .page_top-type2_mv {
  background-image: url(../img/allabout01.jpg);
}

.page-allabout .blue_border {
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #c2e0f0 6px,
    #c2e0f0 8px
  );
}

.anchor_link {
  max-width: 1030px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 48px 35px;
  margin-bottom: 80px;
}
.anchor_link a {
  width: 320px;
  position: relative;
  height: auto;
  aspect-ratio: 320/57;
  position: relative;
  z-index: 2;
}
.anchor_link a::after {
  content: "";
  width: 10px;
  height: 16px;
  background-image: url(../img/arrow_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg) scale(1, 1.5);
  transform: rotate(90deg) scale(1, 1.5);
  left: 49%;
  position: absolute;
  bottom: -20px;
}
.anchor_link a .no {
  color: #0099b3;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .anchor_link a .no {
    font-size: 1.4rem;
    top: -10px;
  }
}
.anchor_link a .chapter_title {
  font-size: 2.1rem;
  text-align: center;
  line-height: 5.7rem;
}
@media screen and (max-width: 767px) {
  .anchor_link a .chapter_title {
    font-size: 1.7rem;
  }
}

.session_title-wrap {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  padding: 44px 0 45px;
  position: relative;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .session_title-wrap {
    padding: 30px 10px;
    margin-bottom: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.session_title-wrap p {
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.18em;
  color: #0099b3;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .session_title-wrap p {
    font-size: 2rem;
  }
}
.session_title-wrap h3 {
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 0.13em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .session_title-wrap h3 {
    font-size: 2.2rem;
  }
}

.introduction_contents .chapter {
  padding-top: 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter {
    margin-bottom: 0;
  }
}
.introduction_contents .chapter p.description {
  font-size: 2.1rem;
  line-height: 2;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter p.description {
    font-size: 1.6rem;
    text-align: left;
    max-width: 460px;
    margin: 0 auto;
  }
}
.introduction_contents .chapter p.description .blue {
  color: #0099b3;
  font-weight: 700;
}
.introduction_contents .chapter .cont {
  position: relative;
  z-index: 1;
}
.introduction_contents .chapter .bg_wrap {
  padding-top: 280px;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  margin-top: -110px;
  padding-bottom: 178px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter .bg_wrap {
    padding-top: 200px;
    padding-bottom: 100px;
    margin-top: -70px;
  }
}
.introduction_contents .chapter .bg_wrap .bg1,
.introduction_contents .chapter .bg_wrap .bg2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.introduction_contents .chapter .bg_wrap .bg1 img,
.introduction_contents .chapter .bg_wrap .bg2 img {
  -o-object-fit: unset;
  object-fit: unset;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter .bg_wrap .bg1 img,
  .introduction_contents .chapter .bg_wrap .bg2 img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.introduction_contents .chapter .illustration {
  margin-top: 40px;
}
.introduction_contents .chapter .illustration .flex {
  max-width: 490px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 8px;
}
.introduction_contents .chapter .illustration .flex p {
  background: #80ccd9;
  width: 40%;
  max-width: 196px;
  height: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: 0.13em;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter .illustration .flex p {
    font-size: 1.6rem;
  }
}
.introduction_contents .chapter .illustration .flex::before,
.introduction_contents .chapter .illustration .flex::after {
  content: "";
  width: 14.3%;
  height: 2px;
  background: #0099b3;
  position: absolute;
  top: 50%;
  left: 43%;
}
.introduction_contents .chapter .illustration .flex::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.introduction_contents .chapter .illustration .flex::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.introduction_contents .chapter .illustration .illustration_logo {
  margin-top: 8px;
  padding-top: 100px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter .illustration .illustration_logo {
    padding-top: 80px;
    max-width: 490px;
    margin-left: auto;
    margin-right: auto;
  }
}
.introduction_contents .chapter .illustration .illustration_logo .img_wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 31px 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter .illustration .illustration_logo .img_wrap {
    padding: 20px;
  }
}
.introduction_contents .chapter .illustration .illustration_logo::before {
  content: "";
  background-image: url(../img/allabout_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 28px;
  height: 68px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter .illustration .illustration_logo::before {
    width: 20px;
  }
}
.introduction_contents .chapter2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 {
    margin-bottom: 0;
  }
}
.introduction_contents .chapter2 .bg_wrap {
  margin-top: 90px;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 p.description {
    text-align: center;
  }
}
.introduction_contents .chapter2 .bg2 {
  z-index: -1;
  margin-top: 136px;
  height: calc(100% - 136px);
}
.introduction_contents .chapter2 .cont {
  max-width: 928px;
}
.introduction_contents .chapter2 .chapter2_link {
  margin-top: 90px;
  margin-bottom: 170px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link {
    margin-top: 70px;
    margin-bottom: 100px;
  }
}
.introduction_contents .chapter2 .chapter2_link .detail {
  width: calc(100% - 434px);
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .detail {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
}
.introduction_contents .chapter2 .chapter2_link .detail a {
  display: block;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .detail a {
    margin-bottom: 24px;
  }
}
.introduction_contents .chapter2 .chapter2_link .detail a p {
  font-size: 2rem;
  letter-spacing: 0.13em;
  color: #0099b3;
  margin-top: -16px;
  text-align: center;
  margin-bottom: -14px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .detail a p {
    font-size: 1.6rem;
  }
}
.introduction_contents .chapter2 .chapter2_link .detail a h4 {
  font-size: 2.6rem;
  letter-spacing: 0.13em;
  text-align: center;
  background-color: unset;
  padding: 18px 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .detail a h4 {
    font-size: 2rem;
  }
}
.introduction_contents .chapter2 .chapter2_link .detail .lead {
  color: #009999;
  font-size: 2.7rem;
  line-height: 1.7740740741;
  letter-spacing: 0.07em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .detail .lead {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.introduction_contents .chapter2 .chapter2_link .detail .description {
  font-size: 1.6rem;
  line-height: 2.25;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .detail .description {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.introduction_contents .chapter2 .chapter2_link .detail .description a {
  color: #009999;
  text-decoration: underline;
  display: inline;
}
.introduction_contents .chapter2 .chapter2_link .img {
  max-width: 370px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .img {
    margin: 24px auto 0;
  }
}
.introduction_contents .chapter2 .chapter2_link .img a {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .img a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.introduction_contents .chapter2 .chapter2_link .img picture {
  display: contents;
}
.introduction_contents .chapter2 .chapter2_link .img img {
  width: calc(100% - 61px);
  height: auto;
  aspect-ratio: 308/590;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .img img {
    aspect-ratio: 2/1;
    width: 100%;
  }
}
.introduction_contents .chapter2 .chapter2_link .img p {
  color: #009999;
  font-size: 4.8rem;
  letter-spacing: 0.18em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link .img p {
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    font-size: 2rem;
  }
}
.introduction_contents .chapter2 .chapter2_link.mos_green .blue_border {
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #b2e0e0 6px,
    #b2e0e0 8px
  );
}
.introduction_contents .chapter2 .chapter2_link.orange {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.introduction_contents .chapter2 .chapter2_link.orange .img a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.introduction_contents .chapter2 .chapter2_link.orange .img a p {
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link.orange .img a p {
    font-size: 2rem;
  }
}
.introduction_contents .chapter2 .chapter2_link.orange .img p,
.introduction_contents .chapter2 .chapter2_link.orange .lead,
.introduction_contents .chapter2 .chapter2_link.orange .description a {
  color: #ee8800;
}
.introduction_contents .chapter2 .chapter2_link.green .orange_border {
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #e0f0b2 6px,
    #e0f0b2 8px
  );
}
.introduction_contents .chapter2 .chapter2_link.green a h4 {
  padding: 17px 0;
}
.introduction_contents .chapter2 .chapter2_link.green .img a p {
  font-size: 3.9rem;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link.green .img a p {
    font-size: 2rem;
  }
}
.introduction_contents .chapter2 .chapter2_link.green .img p,
.introduction_contents .chapter2 .chapter2_link.green .lead,
.introduction_contents .chapter2 .chapter2_link.green .description a {
  color: #99cc00;
}
.introduction_contents .chapter2 .chapter2_link.light_blue {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 154px;
}
.introduction_contents .chapter2 .chapter2_link.light_blue .blue_border {
  background-image: repeating-linear-gradient(
    150deg,
    transparent,
    transparent 6px,
    #b2e0e8 6px,
    #b2e0e8 8px
  );
}
.introduction_contents .chapter2 .chapter2_link.light_blue .img a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.introduction_contents .chapter2 .chapter2_link.light_blue .img a p {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .chapter2_link.light_blue .img a p {
    font-size: 2rem;
  }
}
.introduction_contents .chapter2 .chapter2_link.light_blue .img p,
.introduction_contents .chapter2 .chapter2_link.light_blue .lead,
.introduction_contents .chapter2 .chapter2_link.light_blue .description a {
  color: #3399cc;
}
.introduction_contents
  .chapter2
  .chapter2_link.light_blue
  .detail
  .description {
  letter-spacing: 0.06em;
}
.introduction_contents .chapter2 .bg_wrap2 {
  margin-top: -148px;
  padding-top: 282px;
  padding-bottom: 184px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 {
    padding-top: 150px;
    padding-bottom: 140px;
  }
}
.introduction_contents .chapter2 .bg_wrap2 .bg3 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 .bg3 {
    top: -50px;
  }
}
.introduction_contents .chapter2 .bg_wrap2 .bg3 img {
  -o-object-fit: unset;
  object-fit: unset;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 .bg3 img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 23px 2.5%;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list {
    row-gap: 16px;
  }
}
.introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list a {
  text-align: center;
  max-width: 23%;
  width: 196px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: 0.13em;
  line-height: 1.4782608696;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list a {
    max-width: 40%;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list a span {
  font-size: 1.9rem;
  line-height: 1.7894736842;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list a span {
    font-size: 1.1rem;
  }
}
.introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list a:nth-child(1) {
  background: #009999;
}
.introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list a:nth-child(2) {
  background: #ee8800;
}
.introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list a:nth-child(3) {
  background: #99cc00;
}
.introduction_contents .chapter2 .bg_wrap2 .chapter2_link_list a:nth-child(4) {
  background: #3399cc;
}
.introduction_contents .chapter2 .bg_wrap2 .gradation {
  position: relative;
  margin-top: 107px;
  background: #fff;
  width: 326px;
  height: 101px;
  display: grid;
  place-content: center;
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-left: auto;
  margin-right: auto;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 .gradation {
    height: 75px;
    margin-top: 90px;
  }
}
.introduction_contents .chapter2 .bg_wrap2 .gradation p {
  color: transparent;
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  background: repeating-linear-gradient(
    95deg,
    #0099b3 0 10%,
    #99cc00 50%,
    #ee8800 90% 100%
  );
  -webkit-background-clip: text;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 .gradation p {
    font-size: 2.4rem;
  }
}
.introduction_contents .chapter2 .bg_wrap2 .gradation::before {
  content: "";
  background-image: url(../img/allabout_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 28px;
  height: 68px;
  position: absolute;
  top: -102px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter2 .bg_wrap2 .gradation::before {
    top: -85px;
  }
}
.introduction_contents .chapter3 {
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 {
    margin-bottom: 70px;
    margin-top: -50px;
  }
}
.introduction_contents .chapter3 h4 {
  color: #0099b3;
  font-size: 3.1rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 26px 3px;
  border-bottom: solid 1px #0099b3;
  font-weight: 500;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 h4 {
    font-size: 2rem;
  }
}
.introduction_contents .chapter3 .process {
  margin-top: 100px;
  margin-bottom: 100px;
}
.introduction_contents .chapter3 .process ol li .process_title {
  color: #fff;
  width: 377px;
  height: 77px;
  max-width: 100%;
  display: grid;
  place-content: center;
  background: #0099b3;
  margin: 0 auto 28px;
  font-size: 2.7rem;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .process ol li .process_title {
    font-size: 2rem;
    height: 50px;
  }
}
.introduction_contents .chapter3 .process ol li .cont {
  max-width: 900px;
}
.introduction_contents .chapter3 .process ol li .no_title {
  color: #1fa9b9;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .process ol li .no_title {
    font-size: 1.8rem;
  }
}
.introduction_contents .chapter3 .process ol li .process_description {
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .process ol li .process_description {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.introduction_contents .chapter3 .process ol li .process_description .semi {
  font-weight: 600;
}
.introduction_contents
  .chapter3
  .process
  ol
  li
  .process_description
  .semi
  span {
  color: #0099b3;
}
.introduction_contents .chapter3 .about_materiality ol li {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .about_materiality ol li {
    padding-bottom: 80px;
  }
}
.introduction_contents .chapter3 .about_materiality ol li .about_no {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.introduction_contents .chapter3 .about_materiality ol li .about_no img {
  height: 32px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .about_materiality ol li .about_no img {
    height: 26px;
  }
}
.introduction_contents .chapter3 .about_materiality ol li .about_materiality {
  color: #4cb8ca;
  font-size: 2.7rem;
  background: #fff;
  padding: 17px 40px;
  letter-spacing: 0.13em;
  line-height: 1.6;
  margin: 0 auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .about_materiality ol li .about_materiality {
    font-size: 1.8rem;
  }
}
.introduction_contents .chapter3 .about_materiality ol li .about_detail {
  text-align: center;
  color: #fff;
  font-size: 2.1rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .about_materiality ol li .about_detail {
    font-size: 1.6rem;
  }
}
.introduction_contents
  .chapter3
  .about_materiality
  ol
  li:nth-child(2)
  .about_materiality {
  color: #0099b3;
}
.introduction_contents
  .chapter3
  .about_materiality
  ol
  li:nth-child(3)
  .about_materiality {
  color: #0099b3;
}
.introduction_contents .chapter3 ol li {
  padding-top: 192px;
  padding-bottom: 160px;
  position: relative;
  margin-top: -70px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 ol li {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
.introduction_contents .chapter3 ol li .bg3 {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: unset;
  object-fit: unset;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 ol li .bg3 {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.introduction_contents .chapter3 ol li:nth-child(n + 2) {
  margin-top: -90px;
}
.introduction_contents .chapter3 .last_message {
  padding: 42px 0;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .last_message {
    margin-top: 60px;
  }
}
.introduction_contents .chapter3 .last_message p {
  font-size: 3.5rem;
  letter-spacing: 0.13em;
  line-height: 1.8857142857;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .introduction_contents .chapter3 .last_message p {
    font-size: 2rem;
  }
}

.common_top .page_top-mv {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .common_top .page_top-mv {
    margin-top: 24px;
  }
}
.common_top .page_top-mv img {
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .common_top .page_top-mv img {
    aspect-ratio: 5/2.5;
  }
}

@media screen and (max-width: 767px) {
  .page-benfits .heading_type2 {
    font-size: 2rem;
    line-height: 1.6;
  }
  .page-benfits .heading_type2::before {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .benefits_wrap,
  .human-resources_wrap {
    margin-top: 40px;
  }
}
.benefits_wrap .chapter,
.human-resources_wrap .chapter {
  padding-top: 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .chapter,
  .human-resources_wrap .chapter {
    margin-bottom: 0;
  }
}

.benefits_wrap {
  margin-top: 68px;
}
.benefits_wrap .anchor_link a {
  height: 90px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .anchor_link a {
    height: 70px;
  }
}
.benefits_wrap .anchor_link a .chapter_title {
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .anchor_link a .chapter_title {
    font-size: 1.6rem;
  }
}
.benefits_wrap .cont {
  max-width: 1030px;
}
.benefits_wrap .benefit1_list {
  row-gap: 36px;
  margin-bottom: 16px;
}
.benefits_wrap .benefit1_list li {
  width: 47.8%;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  border: solid 1px #0099b3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
  aspect-ratio: 493/278;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}
.benefits_wrap .benefit1_list li .benefit1_list-title {
  position: absolute;
  top: 0;
  left: 0;
  background: #0099b3;
  color: #fff;
  font-size: 2.4rem;
  padding: 9px 12px 9px 17px;
  line-height: 1;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li .benefit1_list-title {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li .benefit1_list-title {
    font-size: 1.8rem;
    padding: 6px 10px;
  }
}
.benefits_wrap .benefit1_list li .benefit1_list-title::after {
  content: "";
  background: #0099b3;
  -webkit-clip-path: polygon(0 0, 100% 0%, 4% 100%);
  clip-path: polygon(0 0, 100% 0%, 4% 100%);
  height: 100%;
  width: 30px;
  position: absolute;
  right: -29px;
  top: 0;
}
.benefits_wrap .benefit1_list li .note {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li .note {
    padding-top: 4px;
  }
}
.benefits_wrap .benefit1_list li div.flex {
  width: 100%;
}
.benefits_wrap .benefit1_list li .data .num {
  font-size: 9.5rem;
  font-weight: 400;
  color: #0099b3;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li .data .num {
    font-size: 7.4vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li .data .num {
    font-size: 6rem;
  }
}
.benefits_wrap .benefit1_list li .data .num span {
  color: #212121;
  font-size: 2.25rem;
  vertical-align: baseline;
  font-weight: 700;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li .data .num span {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li .data .num span {
    font-size: 1.8rem;
  }
}
.benefits_wrap .benefit1_list li .data .num .num_s {
  color: #0099b3;
  font-size: 6.4rem;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li .data .num .num_s {
    font-size: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li .data .num .num_s {
    font-size: 4rem;
  }
}
.benefits_wrap .benefit1_list li .data .num .thin {
  font-weight: 300;
  font-size: 9.5rem;
  color: #0099b3;
  letter-spacing: 0;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li .data .num .thin {
    font-size: 7.4vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li .data .num .thin {
    font-size: 6rem;
  }
}
.benefits_wrap .benefit1_list li .data .data-comment {
  font-size: 1.7rem;
  font-weight: 400;
  color: #5a5757;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li .data .data-comment {
    font-size: 1.33vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li .data .data-comment {
    font-size: 1.2rem;
  }
}
.benefits_wrap .benefit1_list li .data-title {
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li .data-title {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li .data-title {
    font-size: 1.6rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(1) {
  padding: 0 5% 0 6.5%;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(1) {
    padding: 0 10%;
  }
}
.benefits_wrap .benefit1_list li:nth-child(1) img {
  width: 43.5%;
  margin-top: 10.6%;
}
.benefits_wrap .benefit1_list li:nth-child(2) {
  padding: 0 4% 0 7.5%;
}
.benefits_wrap .benefit1_list li:nth-child(2) img {
  width: 35.5%;
  margin-top: 8%;
}
.benefits_wrap .benefit1_list li:nth-child(2) .data {
  margin-top: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: auto;
}
.benefits_wrap .benefit1_list li:nth-child(2) .data .data-title {
  margin-right: 8px;
}
.benefits_wrap .benefit1_list li:nth-child(2) .data .num {
  line-height: 1;
  margin-top: -9px;
  margin-left: 14px;
}
.benefits_wrap .benefit1_list li:nth-child(2) .data .data-comment {
  margin-top: 11px;
}
.benefits_wrap .benefit1_list li:nth-child(3) {
  padding: 0 3.5% 0 5.5%;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(3) {
    padding: 0 10%;
  }
}
.benefits_wrap .benefit1_list li:nth-child(3) img {
  width: 34.5%;
  margin-top: 10%;
}
.benefits_wrap .benefit1_list li:nth-child(3) .data {
  margin-top: 34px;
}
.benefits_wrap .benefit1_list li:nth-child(3) .data .data-title {
  margin-right: 8px;
}
.benefits_wrap .benefit1_list li:nth-child(3) .data .num {
  line-height: 1;
  letter-spacing: -0.06em;
}
.benefits_wrap .benefit1_list li:nth-child(3) .data .num .tanni {
  font-size: 2.44rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li:nth-child(3) .data .num .tanni {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(3) .data .num .tanni {
    font-size: 1.8rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(3) .data .data-comment {
  margin-top: -4px;
  text-align: right;
}
.benefits_wrap .benefit1_list li:nth-child(4) {
  padding: 0 3% 0 3%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.benefits_wrap .benefit1_list li:nth-child(4) .graph {
  width: 31%;
  margin-top: 9%;
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap {
  width: 40%;
  margin-top: 17%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .hiritsu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .hiritsu img {
  width: 41%;
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .data {
  margin-top: -20px;
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num {
  font-size: 7.4vw;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num {
    font-size: 8.3rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num {
    font-size: 6rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num .num_m {
  font-size: 4.3vw;
  color: #0099b3;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num .num_m {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num .num_m {
    font-size: 4rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num .num_s {
  font-size: 2vw;
  color: #212121;
  margin-left: 5px;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num .num_s {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .num .num_s {
    font-size: 1.8rem;
    margin-left: 3px;
  }
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .woman {
  color: #f5a519;
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .data .woman .num_m {
  color: #f5a519;
}
.benefits_wrap .benefit1_list li:nth-child(4) .wrap .data-title {
  margin-bottom: 11px;
  margin-left: 6px;
}
.benefits_wrap .benefit1_list li:nth-child(5) {
  padding: 0 3.5% 0 4%;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(5) {
    padding: 0 10%;
  }
}
.benefits_wrap .benefit1_list li:nth-child(5) img {
  width: 40.5%;
  margin-top: 21%;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(5) img {
    margin-top: 14%;
  }
}
.benefits_wrap .benefit1_list li:nth-child(5) .flex {
  height: 100%;
}
.benefits_wrap .benefit1_list li:nth-child(5) .data {
  width: 55%;
  background-image: url(../img/benefits09.svg);
  background-size: 92%;
  background-repeat: no-repeat;
  background-position: 0px 10px;
  padding: 12% 9% 17% 3%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li:nth-child(5) .data {
    padding: 15% 9% 14% 3%;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(5) .data {
    width: 130px;
    height: 130px;
    padding: 8% 9% 9% 5%;
    background-size: 93%;
  }
}
.benefits_wrap .benefit1_list li:nth-child(5) .data .data-title {
  margin-right: 8px;
}
.benefits_wrap .benefit1_list li:nth-child(5) .data .num {
  line-height: 1;
  letter-spacing: -0.06em;
  font-size: 8rem;
  margin-left: 0.7rem;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li:nth-child(5) .data .num {
    font-size: 7.4vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(5) .data .num {
    font-size: 4rem;
    margin-left: 0.3rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(5) .data .num .num_s {
  font-size: 5.8rem;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li:nth-child(5) .data .num .num_s {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(5) .data .num .num_s {
    font-size: 3rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(5) .data .num .tanni {
  font-size: 2.44rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1279.9px) {
  .benefits_wrap .benefit1_list li:nth-child(5) .data .num .tanni {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(5) .data .num .tanni {
    font-size: 1.8rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(5) .data .data-comment {
  margin-top: -4px;
  margin-right: 6px;
  text-align: right;
}

.benefits_wrap .note {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.5294117647;
  font-weight: 400;
  color: #5a5757;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .note {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.benefits_wrap .note2 {
  letter-spacing: 0;
  margin-top: 16px;
}

.benefit2 .session_title-wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .benefit2 .session_title-wrap {
    margin-bottom: 60px;
  }
}
.benefit2 .benefit2_lead {
  text-align: center;
  font-size: 2.1rem;
  line-height: 2;
  margin-bottom: 86px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .benefit2 .benefit2_lead {
    font-size: 1.8rem;
    margin-bottom: 60px;
  }
}
.benefit2 ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 86px 53px;
}
@media screen and (max-width: 767px) {
  .benefit2 ul {
    gap: 50px 30px;
  }
}
.benefit2 ul li {
  width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 430px) {
  .benefit2 ul li {
    width: 80%;
  }
}
.benefit2 ul li img {
  width: 48%;
  margin-bottom: 32px;
}
.bene-logo1 {
  width: 190%;
  height: 148px;
  text-align: center;
  margin-left: -10px;
}
.bene-logo2 {
  width: 150%;
  height: 148px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .benefit2 ul li img {
    width: 43%;
    margin-bottom: 16px;
  }
}
.benefit2 ul li h4 {
  color: #0099b3;
  font-size: 2.2rem;
  line-height: 1.3928571429;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .benefit2 ul li h4 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.benefit2 ul li h4 span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .benefit2 ul li h4 span {
    font-size: 1.6rem;
  }
}
.benefit2 ul li p {
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: justify;
}
.benefit2 ul li p a {
  color: #009999;
  text-decoration: underline;
  display: inline;
}
@media screen and (max-width: 767px) {
  .benefit2 ul li p {
    font-size: 1.5rem;
  }
}

#benefit3 {
  margin-bottom: 144px;
}
@media screen and (max-width: 767px) {
  #benefit3 {
    margin-bottom: 80px;
  }
}

.business_wrap {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .business_wrap {
    margin-top: 48px;
  }
}
.business_wrap .business_top .business_top-heading {
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .business_wrap .business_top .business_top-heading {
    margin-bottom: 48px;
  }
}
.business_wrap .business_top .business_top-heading h2,
.business_wrap .business_top .business_top-heading p {
  color: #0099b3;
  text-align: center;
  letter-spacing: 0.13em;
}
.business_wrap .business_top .business_top-heading h2 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .business_wrap .business_top .business_top-heading h2 {
    font-size: 2.2rem;
  }
}
.business_wrap .business_top .business_top-heading p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .business_wrap .business_top .business_top-heading p {
    font-size: 1.6rem;
  }
  .business_wrap .business_top .business_top-heading p br {
    display: none;
  }
  .business_wrap .business_top .business_top-heading p br.sp-block {
    display: block;
  }
}

/*tabの形状*/
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: -1px;
}
.tab li {
  width: 25%;
}

.tab li a {
  display: grid;
  height: auto;
  width: 100%;
  color: #fff;
  font-size: 2.15rem;
  letter-spacing: 0.13em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 138px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .tab li a {
    font-size: 1.2rem;
    aspect-ratio: unset;
    height: 60px;
    margin-top: 20px;
  }
}
.tab li a:hover {
  opacity: 1;
}

.tab li:nth-child(1) a {
  background: #00b9cc;
}

.tab li:nth-child(2) a {
  background: #0099b3;
}

.tab li:nth-child(3) a {
  background: #06808f;
}

.tab li:nth-child(4) a {
  background: #006d85;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  margin-top: 0;
  opacity: 1;
  height: 168px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .tab li.active a {
    aspect-ratio: unset;
    height: 80px;
    padding-top: 20px;
  }
}

/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
}

.area.is-active {
  display: block;
}

#tab_menu1 {
  background: #00b9cc;
}
#tab_menu1 .second {
  background: #0099b3;
}

#tab_menu2 {
  background: #0099b3;
}

#tab_menu3 {
  background: #06808f;
}

#tab_menu4 {
  background: #006d85;
}

.area h3 {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 5.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00b9cc;
  background: #fff;
  padding: 0 15px;
  letter-spacing: 0.13em;
  margin-bottom: 78px;
}
@media screen and (max-width: 767px) {
  .area h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 4rem;
  }
}
.area h4 {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.13em;
  position: relative;
  padding-bottom: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .area h4 {
    font-size: 1.6rem;
  }
}
.area h4::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .area h4::after {
    height: 1px;
  }
}
.area .top {
  padding-top: 120px;
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .area .top {
    padding: 60px 0 80px;
  }
}
.area .top .cont {
  max-width: 1000px;
}
.area .top .content {
  max-width: 840px;
  margin: 164px 80px 122px auto;
}
@media screen and (max-width: 1024px) {
  .area .top .content {
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .area .top .content {
    margin-top: 70px;
    margin-bottom: 70px;
    max-width: 500px;
  }
}
.area .top .content .left {
  width: 32.1%;
  margin-bottom: 32px;
}
.area .top .content .left p {
  color: #0099b3;
  font-size: 2.1rem;
  letter-spacing: 0.13em;
  line-height: 1.5238095238;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .area .top .content .left p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 430px) {
  .area .top .content .left p {
    font-size: 1rem;
  }
}
.area .top .content .left p span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .area .top .content .left p span {
    font-size: 1rem;
  }
}
.area .top .content .left .back_img {
  background-image: url(../img/wholesale02.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.area .top .content .center {
  width: 14.5%;
  margin-bottom: 40px;
}
.area .top .content .center p {
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .area .top .content .center p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 430px) {
  .area .top .content .center p {
    font-size: 1rem;
  }
}
.area .top .content .center p:first-child::after,
.area .top .content .center p:nth-child(2)::before {
  content: "";
  width: 100%;
  height: 16px;
  background-image: url(../img/business_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 430px) {
  .area .top .content .center p:first-child::after,
  .area .top .content .center p:nth-child(2)::before {
    margin-top: 2px;
    height: 8px;
  }
}
.area .top .content .center p:nth-child(2)::before {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  margin-top: 18px;
  margin-bottom: 2px;
}
.area .top .content .right {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 590px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .area .top .content .right {
    font-size: 1.2rem;
    padding: 20px 16px;
  }
}
@media screen and (max-width: 430px) {
  .area .top .content .right {
    padding: 10px;
  }
}
.area .top .content .right .circle_wrap {
  border-radius: 20px;
  border: solid 3px #fff;
  padding: 94px 40px 32px;
}
@media screen and (max-width: 767px) {
  .area .top .content .right .circle_wrap {
    padding: 80px 20px 32px;
  }
}
.area .top .content .right .circle {
  width: 31%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 2.1rem;
  margin-top: 13px;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .area .top .content .right .circle {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 430px) {
  .area .top .content .right .circle {
    margin-top: 6px;
    font-size: 1rem;
  }
}
.area .top .content .right .circle:first-child {
  background: #00435e;
}
.area .top .content .right .circle:nth-child(2),
.area .top .content .right .circle:nth-child(5) {
  background: #08324f;
}
.area .top .content .right .circle:nth-child(3) {
  background: #005c7e;
}
.area .top .content .right .circle:nth-child(4) {
  background: #006f8f;
}
.area .top .content .right .right_bottom .ar {
  position: relative;
  font-size: 2.2rem;
  letter-spacing: 0.13em;
  color: #fff;
  margin: 23px 0;
  padding-right: 61px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .area .top .content .right .right_bottom .ar {
    font-size: 1.6rem;
    margin: 14px 0;
  }
}
.area .top .content .right .right_bottom .ar::after {
  content: "";
  display: block;
  width: 17px;
  height: 64px;
  background-image: url(../img/business_arrow3.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -16px;
  left: 49%;
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
@media screen and (max-width: 767px) {
  .area .top .content .right .right_bottom .ar::after {
    width: 12px;
    height: 43px;
    top: -10px;
  }
}
.area .top .content .right .right_bottom .waku {
  width: 100%;
}
.area .top .content .right .img_wrap {
  width: 100%;
  position: absolute;
  top: -43px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .area .top .content .right .img_wrap {
    top: -25px;
  }
}
.area .top .content .right .img_wrap img {
  width: 62px;
  display: block;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .area .top .content .right .img_wrap img {
    width: 50px;
    margin-bottom: 5px;
  }
}
.area .top .content .right .img_wrap p {
  text-align: center;
  color: #fff;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .area .top .content .right .img_wrap p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 430px) {
  .area .top .content .right .img_wrap p {
    font-size: 1.1rem;
  }
}
.area .point {
  margin-right: 5px;
  margin-left: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .area .point {
    margin-left: 10px;
  }
}
.area .point::after,
.area .point::before {
  content: "";
  width: 2px;
  position: absolute;
  background: #fff;
}
.area .point::before {
  bottom: 15px;
  height: calc(100% - 55px);
  left: -2px;
}
.area .point::after {
  right: 0;
  top: 20px;
  height: calc(100% - 40px);
}
.area .point span {
  position: absolute;
  height: 2px;
  display: block;
  background: #fff;
}
.area .point .border1 {
  top: 0;
  right: 0;
  width: calc(100% - 40px);
}
.area .point .border2 {
  width: 100%;
  bottom: 0;
  right: 0;
}
.area .point .upper {
  position: absolute;
  -webkit-transform: rotate(-42deg);
  transform: rotate(-42deg);
  font-size: 2.25rem;
  letter-spacing: 0.2em;
  border-bottom: 2px solid #fff;
  top: -16px;
  left: -47px;
  line-height: 1.4;
  padding: 0 3px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .area .point .upper {
    font-size: 1.6rem;
    top: -7px;
    left: -29px;
  }
}
.area .point .description {
  color: #fff;
  line-height: 2.25;
  padding: 20px 24px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .area .point .description {
    padding: 16px 20px;
    line-height: 1.8;
  }
}
.area .second {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .area .second {
    padding-top: 80px;
  }
}
.area .second .cont {
  max-width: 1030px;
}
.area .second h3 {
  color: #0099b3;
}
.area .second p {
  color: #fff;
}
.area .second .supplier_wrap {
  max-width: 808px;
  margin: 0 auto 102px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 400px;
    margin-bottom: 80px;
  }
}
.area .second .supplier_wrap .supplier {
  text-align: center;
}
.area .second .supplier_wrap .supplier:nth-child(1) {
  z-index: 3;
  width: 50%;
  margin-bottom: 32px;
  margin-left: -30px;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(1) {
    margin-left: -24px;
    margin-bottom: 60px;
  }
}
.area .second .supplier_wrap .supplier:nth-child(1) .img_wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.area .second .supplier_wrap .supplier:nth-child(1) .img_wrap::after {
  content: "";
  width: 480px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 57px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(1) .img_wrap::after {
    top: 42px;
    width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(1) .description {
    margin-left: 20px;
  }
}
.area .second .supplier_wrap .supplier:nth-child(2),
.area .second .supplier_wrap .supplier:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.area .second .supplier_wrap .supplier:nth-child(2) {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(2) {
    width: 50%;
    margin-right: -24px;
  }
}
.area .second .supplier_wrap .supplier:nth-child(2) .description {
  margin-top: 20px;
  margin-left: -30px;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(2) .description {
    margin-left: 0;
    margin-right: 20px;
  }
}
.area .second .supplier_wrap .supplier:nth-child(3) {
  width: 100%;
}
.area .second .supplier_wrap .supplier:nth-child(3) .supplier_kind {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(3) .supplier_kind {
    margin-bottom: 5px;
  }
}
.area .second .supplier_wrap .supplier:nth-child(3) .waku {
  position: relative;
  z-index: 2;
}
.area .second .supplier_wrap .supplier:nth-child(3) .waku::before,
.area .second .supplier_wrap .supplier:nth-child(3) .waku::after {
  content: "";
  width: 2px;
  height: 300px;
  background: #fff;
  position: absolute;
  bottom: 22px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(3) .waku::before,
  .area .second .supplier_wrap .supplier:nth-child(3) .waku::after {
    bottom: 0;
    height: 260px;
  }
}
.area .second .supplier_wrap .supplier:nth-child(3) .waku::before {
  left: 28%;
  -webkit-transform: rotate(-47deg);
  transform: rotate(-47deg);
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(3) .waku::before {
    left: 30%;
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
}
.area .second .supplier_wrap .supplier:nth-child(3) .waku::after {
  right: 28%;
  -webkit-transform: rotate(47deg);
  transform: rotate(47deg);
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(3) .waku::after {
    right: 30%;
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
}
.area .second .supplier_wrap .supplier:nth-child(3) .waku {
  max-width: 580px;
}
.area .second .supplier_wrap .supplier:nth-child(2) {
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(2) .supplier_kind {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier:nth-child(2) .description {
    margin-bottom: 20px;
  }
}
.area .second .supplier_wrap .supplier_kind {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5833333333;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .area .second .supplier_wrap .supplier_kind {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .supplier_kind {
    font-size: 1.5rem;
  }
}
.area .second .supplier_wrap .img_wrap {
  width: 120px;
  height: 120px;
  display: grid;
  place-content: center;
  background: #fff;
  justify-items: center;
  border-radius: 50%;
  position: relative;
  margin-inline: auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .img_wrap {
    width: 80px;
    height: 80px;
  }
}
.area .second .supplier_wrap .img_wrap img {
  width: 59%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.area .second .supplier_wrap .flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.area .second .supplier_wrap .back_img {
  width: 140px;
  height: 140px;
  background-image: url(../img/wholesale02.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .back_img {
    width: 90px;
    height: 90px;
  }
}
.area .second .supplier_wrap .description {
  line-height: 1.9375;
  letter-spacing: 0.13em;
  text-align: center;
  margin-top: 33px;
}
.area .second .supplier_wrap .description-pana {
  background: #0099b3;
}

@media screen and (max-width: 1024px) {
  .area .second .supplier_wrap .description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .area .second .supplier_wrap .description {
    font-size: 1.2rem;
    margin-top: 20px;
    border-radius: 10px;
    background: #0099b3;
  }
  .area .second .supplier_wrap .description br {
    display: none;
  }
}
.area .solution {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .area .solution {
    padding-bottom: 80px;
  }
}
.area .solution h4 {
  margin-bottom: 82px;
}
@media screen and (max-width: 767px) {
  .area .solution h4 {
    margin-bottom: 40px;
  }
}
.area .solution ul {
  row-gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .area .solution ul {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-column-gap: 5%;
    -moz-column-gap: 5%;
    column-gap: 5%;
  }
}
.area .solution ul li {
  width: 27%;
  padding: 0 4%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .area .solution ul li {
    width: 44%;
    max-width: 205px;
    padding: 0;
  }
}
.area .solution ul li p {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.13em;
  line-height: 1.3888888889;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .area .solution ul li p {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.area .bottom {
  padding: 115px 0;
  background: #006d85;
}
@media screen and (max-width: 767px) {
  .area .bottom {
    padding: 80px 0;
  }
}
.area .bottom .cont {
  max-width: 1000px;
}
.area .bottom h3 {
  margin-bottom: 113px;
  color: #006d85;
}
@media screen and (max-width: 767px) {
  .area .bottom h3 {
    margin-bottom: 60px;
  }
}

#tab_menu2 h3 {
  color: #0099b3;
}
#tab_menu2 .content {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content {
    max-width: 400px;
    margin-left: auto;
    margin-bottom: 70px;
  }
}
#tab_menu2 .content .bottom {
  max-width: 828px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 20px 21px;
  background: none;
  border: solid 3px #fff;
  border-radius: 20px;
  gap: 20px;
  margin-bottom: 127px;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .bottom {
    border-width: 2px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    margin-bottom: 0;
  }
}
#tab_menu2 .content .bottom .waku {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#tab_menu2 .content .bottom .bottom_right p {
  background: #fff;
  border-radius: 10px;
  padding: 3px 16px;
  color: #0099b3;
  font-size: 2.1rem;
  letter-spacing: 0.13em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .bottom .bottom_right p {
    font-size: 1.2rem;
    border-radius: 6px;
  }
}
#tab_menu2 .content .right2 {
  width: 100%;
  position: relative;
  z-index: 2;
}
#tab_menu2 .content .right2 .circle {
  width: 18%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  #tab_menu2 .content .right2 .circle {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .right2 .circle {
    font-size: 1rem;
    padding: 5px;
  }
}
#tab_menu2 .content .right2 .circle:first-child {
  background: #00435e;
}
#tab_menu2 .content .right2 .circle:last-child {
  background: #005c7e;
}
#tab_menu2 .content .right2 .img_wrap {
  background: #08324f;
  width: 23%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
#tab_menu2 .content .right2 .img_wrap p {
  font-size: 2.1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  #tab_menu2 .content .right2 .img_wrap p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .right2 .img_wrap p {
    font-size: 1rem;
  }
}
#tab_menu2 .content .right2 .img_wrap img {
  width: 30%;
  margin-bottom: 11px;
  min-width: 34px;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .right2 .img_wrap img {
    width: 10%;
    min-width: 20px;
    margin-bottom: 5px;
  }
}
#tab_menu2 .content .right2 .circle_text {
  font-size: 2.1rem;
  width: 17%;
  color: #fff;
  margin: 20px 0;
  text-align: center;
  letter-spacing: 0.13em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #tab_menu2 .content .right2 .circle_text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .right2 .circle_text {
    font-size: 1rem;
    margin: 15px 0;
  }
}
#tab_menu2 .content .right2 .circle_text::before,
#tab_menu2 .content .right2 .circle_text::after {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 75/7;
  background-image: url(../img/business_arrow4.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  z-index: -1;
  top: -16px;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .right2 .circle_text::before,
  #tab_menu2 .content .right2 .circle_text::after {
    top: -8px;
  }
}
#tab_menu2 .content .right2 .circle_text::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  top: auto;
  bottom: -16px;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .right2 .circle_text::after {
    bottom: -8px;
  }
}
#tab_menu2 .content .left {
  width: 34.2%;
  margin-top: 42px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .left {
    width: 32.1%;
    margin-top: 80px;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu2 .content .left P {
    font-size: 1.2rem;
  }
}
#tab_menu2 .content .left .white {
  background: #fff;
  width: 91%;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  text-align: center;
}
#tab_menu2 .content .center {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 14px;
  letter-spacing: 0.13em;
  margin-left: 17%;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .center {
    margin-left: 54px;
    margin-bottom: 6px;
  }
}
#tab_menu2 .content .center p {
  position: relative;
}
@media screen and (max-width: 1024px) {
  #tab_menu2 .content .center p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .center p {
    font-size: 1rem;
  }
}
#tab_menu2 .content .center p:first-child::after,
#tab_menu2 .content .center p:nth-child(2)::before {
  background-image: url(../img/business_arrow3.svg);
  width: 17px;
  height: 64px;
  top: 0;
  position: absolute;
  right: -35px;
  display: block;
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  #tab_menu2 .content .center p:first-child::after,
  #tab_menu2 .content .center p:nth-child(2)::before {
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .center p:first-child::after,
  #tab_menu2 .content .center p:nth-child(2)::before {
    height: 30px;
    width: 7px;
    right: -14px;
  }
}
#tab_menu2 .content .center p:nth-child(2) {
  margin: 0 94px 0 78px;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .center p:nth-child(2) {
    margin: 0 24px 0 35px;
  }
}
#tab_menu2 .content .center p:nth-child(2)::before {
  left: -30px;
  right: auto;
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
  top: -19px;
}
@media screen and (max-width: 1024px) {
  #tab_menu2 .content .center p:nth-child(2)::before {
    top: -13px;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .center p:nth-child(2)::before {
    left: -10px;
  }
}
#tab_menu2 .content .center .diagonal::before {
  content: "";
  display: block;
  width: 155px;
  height: auto;
  left: -55%;
  bottom: -16px;
  aspect-ratio: 192/150;
  background-image: url(../img/business_arrow7.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  #tab_menu2 .content .center .diagonal::before {
    width: 114px;
    left: -71%;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu2 .content .center .diagonal::before {
    width: 49px;
    height: auto;
    left: -30%;
    bottom: 0px;
  }
}
#tab_menu2 .second {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .second .solution ul li:nth-child(1) {
    margin: 0 20%;
  }
}
#tab_menu2 .note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  line-height: 1.9375;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  #tab_menu2 .note {
    margin-top: 30px;
  }
}

.area .solution2 .flex-top {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 7%;
  -moz-column-gap: 7%;
  column-gap: 7%;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .area .solution2 .flex-top {
    margin-bottom: 0px;
    row-gap: 4%;
  }
}
.area .solution2 .flex-top li {
  padding: 0;
  width: 19%;
}
@media screen and (max-width: 767px) {
  .area .solution2 .flex-top li {
    width: 44%;
    max-width: 205px;
  }
}
.area .solution2 .flex-top li p {
  margin-top: 11px;
}
.area .solution2 .flex-top li:nth-child(2) {
  margin-top: 0;
}
.area .solution2 .flex-top li:nth-child(4) {
  margin-left: auto;
  margin-right: 24%;
  margin-top: 3px;
  width: 26%;
}
@media screen and (max-width: 767px) {
  .area .solution2 .flex-top li:nth-child(4) {
    width: 55%;
    margin-right: auto;
    margin-top: 5px;
  }
}

.triangle {
  max-width: 815px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 72px auto 110px;
}
@media screen and (max-width: 767px) {
  .triangle {
    max-width: 500px;
    margin-bottom: 70px;
  }
}
.triangle p {
  font-size: 2.1rem;
  letter-spacing: 0.13em;
  line-height: 1.5238095238;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .triangle p {
    font-size: 1.2rem;
  }
}
.triangle .back_img {
  background-image: url(../img/wholesale02.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: #0099b3;
}
.triangle .triangle1,
.triangle .triangle3,
.triangle .triangle6 {
  width: 27%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .triangle .triangle1,
  .triangle .triangle3,
  .triangle .triangle6 {
    width: 32%;
  }
}
.triangle .triangle2 {
  width: 42.8%;
  margin: 0 10px;
  margin-bottom: 105px;
}
@media screen and (max-width: 767px) {
  .triangle .triangle2 {
    width: 34%;
    margin: 0 0 40px;
  }
}
.triangle .triangle2::after {
  background-image: url(../img/business_arrow6.svg);
  height: 18px;
  content: "";
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .triangle .triangle2::after {
    background-image: url(../img/business_arrow4.svg);
    margin-top: 5px;
    height: 10px;
    background-position: center;
  }
}
@media screen and (max-width: 767px) {
  .triangle .triangle2,
  .triangle .triangle2 p {
    font-size: 1rem;
  }
}
.triangle .triangle4,
.triangle .triangle5 {
  width: 20%;
  margin-top: -55px;
}
@media screen and (max-width: 767px) {
  .triangle .triangle4,
  .triangle .triangle5 {
    width: 20%;
    margin-top: -22px;
  }
}
.triangle .triangle4 p,
.triangle .triangle5 p {
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .triangle .triangle4 p,
  .triangle .triangle5 p {
    font-size: 1rem;
    text-wrap: unset;
  }
}
.triangle .triangle4 p:first-child::after,
.triangle .triangle4 p:nth-child(2)::before,
.triangle .triangle5 p:first-child::after,
.triangle .triangle5 p:nth-child(2)::before {
  content: "";
  width: 100%;
  height: 18px;
  background-image: url(../img/business_arrow5.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .triangle .triangle4 p:first-child::after,
  .triangle .triangle4 p:nth-child(2)::before,
  .triangle .triangle5 p:first-child::after,
  .triangle .triangle5 p:nth-child(2)::before {
    height: 10px;
    background-position: center;
  }
}
.triangle .triangle4 p:nth-child(2)::before,
.triangle .triangle5 p:nth-child(2)::before {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  margin-top: 12px;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .triangle .triangle4 p:nth-child(2)::before,
  .triangle .triangle5 p:nth-child(2)::before {
    margin-top: 5px;
  }
}
.triangle .triangle4 p:nth-child(2),
.triangle .triangle5 p:nth-child(2) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .triangle .triangle4 p:nth-child(2),
  .triangle .triangle5 p:nth-child(2) {
    margin-right: 0;
  }
}
.triangle .triangle4 {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  margin-left: 22%;
  margin-right: 9%;
}
.triangle .triangle5 {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  margin-right: 19%;
  margin-left: 9%;
}
@media screen and (max-width: 767px) {
  .triangle .triangle5 {
    margin-right: 23%;
    margin-left: 5%;
  }
}
.triangle .triangle3 {
  background: #08324f;
}
.triangle .triangle3 img {
  width: 29%;
  min-width: 32px;
  margin: 0 auto 10px;
  display: block;
}
.triangle .triangle6 {
  background: #00435e;
  margin-top: -65px;
}
@media screen and (max-width: 767px) {
  .triangle .triangle6 {
    margin-top: -22px;
  }
}
.triangle .triangle6 img {
  width: 46%;
  margin: 0 auto 10px;
  display: block;
}

.vendor-lease .business_top .business_top-heading {
  margin-bottom: 156px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .business_top .business_top-heading {
    margin-bottom: 48px;
  }
}
.vendor-lease .business_top .business_top-heading h2,
.vendor-lease .business_top .business_top-heading p {
  color: #ee8800;
}
.vendor-lease .area {
  display: block;
  background: #ee8800;
}
.vendor-lease .area h3 {
  color: #ee8800;
}
.vendor-lease .bottom {
  background: #ee8800;
}
.vendor-lease .triangle2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle2 {
    margin-bottom: 40px;
  }
}
.vendor-lease .triangle .triangle3 {
  background: #af5b00;
}
.vendor-lease .triangle .triangle6 {
  background: #b76b1a;
}
.vendor-lease .triangle .triangle6 img {
  width: 19.2%;
  min-width: 21px;
}
.vendor-lease .triangle4 p:nth-child(2) {
  width: 150%;
  margin-left: -27%;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle4 p:nth-child(2) {
    width: 100%;
    margin-left: -15px;
  }
}
.vendor-lease .triangle4 p:nth-child(2)::before {
  margin-left: -21%;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle4 p:nth-child(2)::before {
    margin-left: 15px;
  }
}
.vendor-lease .triangle5 {
  margin-top: -31px;
  margin-right: 13%;
  margin-left: 11%;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle5 {
    margin-right: 14%;
    margin-left: 9%;
    width: 20%;
    margin-top: -30px;
  }
}
.vendor-lease .triangle4 {
  margin-left: 15%;
  margin-right: 12%;
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle4 {
    margin-left: 14%;
    margin-right: 9%;
    width: 20%;
    margin-top: -20px;
  }
}
.vendor-lease .triangle6 {
  margin-top: -119px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle6 {
    margin-top: -52px;
  }
}
.vendor-lease .triangle6 img {
  margin-bottom: 6px;
}
.vendor-lease .vendor-lease-point {
  background: #ce7000;
  padding: 120px 0 92px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point {
    padding: 80px 0;
  }
}
.vendor-lease .vendor-lease-point h3 {
  color: #ce7000;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point h3 {
    margin-bottom: 60px;
  }
}
.vendor-lease .vendor-lease-point .cont {
  max-width: 1000px;
}
.vendor-lease .vendor-lease-point ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 82px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul {
    row-gap: 60px;
  }
}
.vendor-lease .vendor-lease-point ul li {
  width: 100%;
}
.vendor-lease .vendor-lease-point ul li .upper {
  font-size: 1.5rem;
  padding-bottom: 4px;
  top: -5px;
  left: -34px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .upper {
    font-size: 1.3rem;
    padding: 0 6px 4px;
  }
}
.vendor-lease .vendor-lease-point ul li .point {
  padding: 16px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: 38px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .point {
    margin-left: 0;
    padding: 20px 0;
  }
}
.vendor-lease .vendor-lease-point ul li .point::after {
  display: none;
}
.vendor-lease .vendor-lease-point ul li .point::before {
  height: calc(100% - 55px);
  bottom: 15px;
}
.vendor-lease .vendor-lease-point ul li .point .no {
  width: 140px;
  display: grid;
  place-content: center;
  margin: 20px 0 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .point .no {
    width: 40px;
    margin: 0px 20px 10px;
  }
}
.vendor-lease .vendor-lease-point ul li .point .no img {
  width: 46px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .point .no img {
    width: 20px;
  }
}
.vendor-lease .vendor-lease-point ul li .point .no::after {
  content: "";
  background-image: url(../img/orange_back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 59px;
  height: 58px;
  position: absolute;
  bottom: -50px;
  right: -18px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .point .no::after {
    display: none;
  }
}
.vendor-lease .vendor-lease-point ul li .point div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px 0 34px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .point div {
    padding: 0 0 0 24px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    border: none;
  }
}
.vendor-lease .vendor-lease-point ul li .point div .point_title {
  font-size: 2.37rem;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  color: #fff;
  margin-top: 5px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .point div .point_title {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}
.vendor-lease .vendor-lease-point ul li .point div .description {
  font-size: 1.7rem;
  letter-spacing: 0.13em;
  padding: 0;
  font-weight: 400;
  line-height: 1.7058823529;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .point div .description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .vendor-lease .vendor-lease-point ul li .point .border1 {
    width: calc(100% - 38px);
  }
}

@media screen and (max-width: 1024px) {
  .page-shop .heading_type2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .page-shop .heading_type2 {
    line-height: 1.6;
  }
  .page-shop .heading_type2 span {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    text-align: center;
  }
  .page-shop .page_top-mv {
    margin-top: 48px;
  }
}

.shop .business_top .business_top-heading h2,
.shop .business_top .business_top-heading p {
  color: #99cc00;
}
.shop .area {
  display: block;
  background: #99cc00;
}
.shop .area h3 {
  color: #99cc00;
}
.shop .area .bottom {
  background: #99cc00;
}
.shop .area .cont {
  max-width: 1000px;
}
.shop .area .top {
  padding: 120px 0 0;
}
@media screen and (max-width: 767px) {
  .shop .area .top {
    padding: 60px 0 80px;
  }
}
.shop .shop_content {
  max-width: 963px;
  margin-top: 63px;
  margin-bottom: 116px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .shop .shop_content {
    max-width: 500px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
}
.shop .shop_content p {
  font-size: 2.1rem;
  letter-spacing: 0.13em;
  line-height: 1.5238095238;
  color: #fff;
  text-align: center;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .shop .shop_content p {
    font-size: 1.2rem;
  }
}
.shop .shop_content .circle {
  width: 200px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .shop .shop_content .circle {
    font-size: 1.2rem;
    width: 25%;
    margin-bottom: 5px;
    width: 120px;
  }
}
.shop .shop_content .circle,
.shop .shop_content .back_img {
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
}
.shop .shop_content .circle1 {
  background: #516b00;
}
.shop .shop_content .circle1 img {
  width: 36%;
  margin-bottom: 11px;
  min-width: 72px;
}
@media screen and (max-width: 767px) {
  .shop .shop_content .circle1 img {
    margin-bottom: 5px;
    min-width: 40px;
  }
}
.shop .shop_content .circle2 {
  background: #679100;
  padding-top: 10px;
}
.shop .shop_content .circle2 img {
  width: 40%;
  margin-bottom: 7px;
  min-width: 80px;
}
@media screen and (max-width: 767px) {
  .shop .shop_content .circle2 img {
    margin-bottom: 5px;
    min-width: 48px;
  }
}
.shop .shop_content .shop_arrow {
  position: relative;
  text-align: left;
  margin-left: 182px;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .shop .shop_content .shop_arrow {
    margin-left: 134px;
    width: 100px;
  }
}
.shop .shop_content .shop_arrow::after {
  content: "";
  display: block;
  width: 17px;
  height: 67px;
  background-image: url(../img/business_arrow3.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -6px;
  left: -21px;
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
@media screen and (max-width: 767px) {
  .shop .shop_content .shop_arrow::after {
    width: 12px;
    height: 43px;
    max-height: 100%;
    top: -3px;
  }
}
.shop .shop_content .waku {
  max-width: 580px;
  margin-top: 5px;
}
.shop .shop_center {
  background: #679100;
  padding: 120px 0 92px;
}
@media screen and (max-width: 767px) {
  .shop .shop_center {
    padding: 80px 0;
  }
}
.shop .shop_center h3 {
  color: #679100;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .shop .shop_center h3 {
    margin-bottom: 60px;
  }
}
.shop .shop_center .cont {
  max-width: 1000px;
}
.shop .shop_center ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 82px;
}
@media screen and (max-width: 767px) {
  .shop .shop_center ul {
    row-gap: 60px;
  }
}
.shop .shop_center ul li {
  width: 100%;
}

.shop .shop_center ul li .upper {
  font-size: 1.5rem;
  padding-bottom: 4px;
  top: -5px;
  left: -34px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
 .shop .shop_center ul li .upper {
    font-size: 1.3rem;
    padding: 0 6px 4px;
  }
}
.shop .shop_center ul li .point {
  padding: 16px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: 38px;
}
@media screen and (max-width: 767px) {
 .shop .shop_center ul li .point {
    margin-left: 0;
    padding: 20px 0;
  }
}
.shop .shop_center ul li .point::after {
  display: none;
}
.shop .shop_centerul li .point::before {
  height: calc(100% - 41px);
  bottom: 0;
}
.shop .shop_center ul li .point .no {
  width: 140px;
  display: grid;
  place-content: center;
  margin: 20px 0 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
 .shop .shop_center ul li .point .no {
    width: 40px;
    margin: 0px 20px 10px;
  }
}
.shop .shop_center ul li .point .no img {
  width: 46px;
}
@media screen and (max-width: 767px) {
 .shop .shop_center ul li .point .no img {
    width: 20px;
  }
}
.shop .shop_center ul li .point .no::after {
  content: "";
  background-image: url(../img/green_back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 59px;
  height: 58px;
  position: absolute;
  bottom: -50px;
  right: -18px;
}
@media screen and (max-width: 767px) {
  .shop .shop_center ul li .point .no::after {
    display: none;
  }
}
.shop .shop_center ul li .point div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px 0 34px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 767px) {
 .shop .shop_center ul li .point div {
    padding: 0 0 0 24px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    border: none;
  }
}
.shop .shop_center ul li .point div .point_title {
  font-size: 2.37rem;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  color: #fff;
  margin-top: 5px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .shop .shop_center ul li .point div .point_title {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}
.shop .shop_center ul li .point div .description {
  font-size: 1.7rem;
  letter-spacing: 0.13em;
  padding: 0;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .shop .shop_center ul li .point div .description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .shop .shop_center ul li .point .border1 {
    width: calc(100% - 38px);
  }
}

.shop .shop_center ul li .left {
  width: calc(66%);
  margin-right:25px;
}
@media screen and (max-width: 767px) {
  .shop .shop_center ul li .left {
    width: 100%;
  }
}
.shop .shop_center ul li .left h3 {
  color: #679100;
  margin-bottom: 25px;
  padding: 0 13px;
}
@media screen and (max-width: 767px) {
  .shop .shop_center ul li .left h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.6;
    padding: 5px 13px;
  }
}
.shop .shop_center ul li .left p {
  color: #fff;
  line-height: 2.25;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: justify;
}
.shop .shop_center ul li .right {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .shop .shop_center ul li .right {
    width: 100%;
  }
}
.shop .shop_center .container {
  display: flex;
  flex-wrap: wrap;
}
.shop .shop_center img {
  width: 30vw;
  margin-top: 7px;
}
@media screen and (max-width: 981px) {
.shop .shop_center ul li .right {
  width: 28%;
  text-align:right;
}
  .shop .shop_center img {
  width: 28vw;
  }
}
@media screen and (max-width: 767px) {
.shop .shop_center ul li .right {
  margin: auto;
  width: 60vw;
}
  .shop .shop_center img {
  margin-top:12px;
  width: 60vw;
  }
}
.retail .business_top .business_top-heading h2,
.retail .business_top .business_top-heading p {
  color: #3399cc;
}
.retail .area {
  display: block;
  background: #3399cc;
}
.retail .area h3 {
  color: #3399cc;
}
.retail .area .bottom {
  background: #3399cc;
}
.retail .area .cont {
  max-width: 1000px;
}
.retail .area .top {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .retail .area .top {
    padding: 60px 0 80px;
  }
}
.retail .area .triangle2 {
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .retail .area .triangle2 {
    margin-bottom: 20px;
  }
}
.retail .area .triangle3 {
  background: #0072b2;
}
.retail .area .triangle3 img {
  width: 34%;
  margin: 0 auto 7px;
  display: block;
}
.retail .area .triangle6 {
  background: #1a6690;
  margin-top: 0;
}
.retail .area .triangle6 img {
  width: 34%;
}
.retail .area .triangle4 p:nth-child(2) {
  margin-left: -25px;
}
@media screen and (max-width: 767px) {
  .retail .area .triangle4 p:nth-child(2) {
    margin-left: 0;
  }
}
.retail .area .triangle4 p:nth-child(2)::before {
  background-position: center;
  margin-top: 19px;
  margin-left: 14px;
  margin-bottom: 7px;
  width: 230px;
}
@media (max-width: 900px) {
  .retail .area .triangle4 p:nth-child(2)::before {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .retail .area .triangle4 p:nth-child(2)::before {
    width: 100%;
    margin-top: 16px;
    margin-left: 5px;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 430px) {
  .retail .area .triangle4 p:nth-child(2)::before {
    width: 96%;
    margin-left: 9px;
  }
}
.retail .area .triangle5 p:nth-child(2)::before {
  background-position: center;
  margin-top: 7px;
  margin-bottom: 4px;
  margin-left: -22px;
  width: 230px;
}
@media (max-width: 900px) {
  .retail .area .triangle5 p:nth-child(2)::before {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .retail .area .triangle5 p:nth-child(2)::before {
    width: 100%;
    margin-left: -15px;
  }
}
@media screen and (max-width: 430px) {
  .retail .area .triangle5 p:nth-child(2)::before {
    width: 96%;
  }
}
.retail .area .triangle4 {
  margin-left: 13%;
  margin-right: 2%;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .retail .area .triangle4 {
    margin-left: 15%;
    margin-right: 7%;
    margin-top: 0;
  }
}
.retail .area .triangle5 {
  margin-top: -1px;
  margin-right: 11%;
  margin-left: 3%;
}
@media screen and (max-width: 767px) {
  .retail .area .triangle5 {
    margin-top: -1px;
    margin-right: 11%;
    margin-left: 3%;
  }
}
.retail .area .triangle4,
.retail .area .triangle5 {
  width: 27%;
}
@media screen and (max-width: 767px) {
  .retail .area .triangle4,
  .retail .area .triangle5 {
    width: 23%;
  }
}
@media screen and (max-width: 430px) {
  .retail .area .triangle4,
  .retail .area .triangle5 {
    width: 27%;
  }
}
.retail .area .triangle4 p::before,
.retail .area .triangle5 p::before {
  background-image: url(../img/business_arrow8.svg);
}
.retail .area .waku {
  max-width: 590px;
  margin-top: 5%;
}
@media screen and (max-width: 767px) {
  .retail .area .waku {
    margin-top: 7%;
  }
}

.area .retail_center {
  padding: 115px 0 85px;
  background: #0072b2;
}
@media screen and (max-width: 767px) {
  .area .retail_center {
    padding: 80px 0;
  }
}
.area .retail_center .cont {
  max-width: 1000px;
}
.area .retail_center .cont2 {
  max-width: 1200px;
  width: 94%;
}
@media screen and (max-width: 767px) {
  .area .retail_center .cont2 {
    width: 89%;
  }
}
.area .retail_center h3 {
  color: #0072b2;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .area .retail_center h3 {
    margin-bottom: 30px;
  }
}
.area .retail_center ul li {
  width: 100%;
  border-bottom: solid 1px #3f99d5;
  padding: 34px 9% 31px 8.4%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .area .retail_center ul li {
    padding: 20px 0 0;
  }
}
.area .retail_center ul li h4 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 1px;
}
@media screen and (max-width: 767px) {
  .area .retail_center ul li h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }
}
.area .retail_center ul li h4::after {
  display: none;
}
.area .retail_center ul li p {
  line-height: 2.25;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .area .retail_center ul li p {
    line-height: 1.8;
  }
}
.area .retail_center ul li .left {
  width: 23%;
  margin-right: 36px;
}
@media screen and (max-width: 767px) {
  .area .retail_center ul li .left {
    width: 45%;
    max-width: 200px;
    margin: 0 auto 20px;
  }
}
.area .retail_center ul li .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .area .retail_center ul li .right {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.area .retail_center ul li:last-child {
  border-bottom: none;
}

.page-casestudy .page_top-type2_mv {
  background-image: url(../img/casestudy01.jpg);
}
@media screen and (max-width: 767px) {
  .page-casestudy .heading_type2 {
    font-size: 2rem;
    line-height: 1.6;
  }
  .page-casestudy .heading_type2::before {
    height: 48px;
  }
}
.page-casestudy .session_title-wrap {
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .session_title-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
  .page-casestudy .session_title-wrap .upper {
    font-size: 1.6rem;
    top: -13px;
  }
}
.page-casestudy p.description {
  letter-spacing: 0.05em;
}
.page-casestudy .keyword_contents .keyword_contents-top {
  background: #0099b3;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_contents-top {
    margin-bottom: 50px;
  }
}
.page-casestudy .keyword_contents .keyword_contents-top p {
  text-align: center;
  font-size: 2.1rem;
  line-height: 2;
  color: #fff;
  padding: 40px 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_contents-top p {
    font-size: 1.6rem;
    padding: 30px 0;
  }
  .page-casestudy .keyword_contents .keyword_contents-top p br {
    display: none;
  }
}
.page-casestudy .keyword_contents .anchor_link {
  gap: 48px 30px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .anchor_link {
    gap: 48px 20px;
    margin-bottom: 0;
  }
}
.page-casestudy .keyword_contents .anchor_link a {
  width: 235px;
  max-width: 40%;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .anchor_link a {
    max-width: 45%;
    aspect-ratio: unset;
  }
}
.page-casestudy .keyword_contents .anchor_link a .no {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .anchor_link a .no {
    font-size: 1.2rem;
  }
}
.page-casestudy .keyword_contents .anchor_link a::after {
  left: 47.5%;
  bottom: -23px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .anchor_link a::after {
    bottom: -15px;
    width: 8px;
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .anchor_link a .chapter_title {
    font-size: 1.5rem;
    line-height: 4.5rem;
  }
}
.page-casestudy .keyword_contents .keyword {
  padding-top: 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword {
    margin-bottom: 0;
  }
}
.page-casestudy .keyword_contents .keyword .cont {
  max-width: 1030px;
}
.page-casestudy .keyword_contents .keyword .description {
  font-size: 2.1rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword .description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 430px) {
  .page-casestudy .keyword_contents .keyword .description {
    text-align: justify;
  }
}
.page-casestudy .keyword_contents .case_wrap {
  margin-top: 90px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 60px 42px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap {
    margin-top: 60px;
    row-gap: 40px;
  }
}
.page-casestudy .keyword_contents .case_wrap .case_title {
  position: relative;
  margin-bottom: 40px;
}
.page-casestudy .keyword_contents .case_wrap .case_title .no {
  width: 100px;
  color: #0099b3;
  font-size: 2rem;
  letter-spacing: 0.13em;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap .case_title .no {
    font-size: 1.6rem;
  }
}
.page-casestudy .keyword_contents .case_wrap .case_title .case_title-bg {
  background-image: url(../img/casestudy_bg.png);
  background-size: cover;
  text-align: center;
  margin-top: -14px;
  padding: 20px 0;
  letter-spacing: 0.13em;
  line-height: 1.9047619048;
}

.page-casestudy .keyword_contents .case_wrap .case {
  width: 494px;
}

.page-casestudy .keyword_contents .case_wrap .case3 {
  width: 1030px;
}

@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap .case {
    max-width: 400px;
  }
}
.page-casestudy .keyword_contents .case_wrap .case .triangle {
  margin-top: 40px;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap .case .triangle {
    max-width: 335px;
  }
}
.page-casestudy .keyword_contents .case_wrap .case .triangle p {
  color: #0099b3;
  font-size: 1.7rem;
  line-height: 1.5882352941;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap .case .triangle p {
    font-size: 1.2rem;
  }
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .img_wrap {
  background: #b2e0e8;
  justify-items: center;
  width: 34%;
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .img_wrap img {
  height: 53px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap .case .triangle .img_wrap img {
    height: 40px;
  }
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .img_wrap p {
  letter-spacing: 0;
  color: #0c7e94;
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .triangle2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 23%;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .triangle2::after {
  background-image: url(../img/casestudy_arrow1.svg);
  height: 15px;
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .triangle3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  background: #0099b3;
  color: #fff;
  width: 34%;
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .triangle7 {
  position: absolute;
  top: 52%;
  left: 4%;
  width: 145px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap .case .triangle .triangle7 {
    left: 0;
  }
}
.page-casestudy
  .keyword_contents
  .case_wrap
  .case
  .triangle
  .triangle7::before {
  content: "";
  display: block;
  width: 60px;
  height: 15px;
  background-image: url(../img/casestudy_arrow2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: rotate(44deg);
  transform: rotate(44deg);
  position: absolute;
  right: -35px;
  top: -10px;
}
@media screen and (max-width: 767px) {
  .page-casestudy
    .keyword_contents
    .case_wrap
    .case
    .triangle
    .triangle7::before {
    right: 2px;
    width: 43px;
    height: 10px;
  }
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .triangle7 p {
  letter-spacing: 0;
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .triangle8 {
  position: absolute;
  top: 52%;
  right: 15%;
}
.page-casestudy
  .keyword_contents
  .case_wrap
  .case
  .triangle
  .triangle8::before {
  content: "";
  display: block;
  width: 60px;
  height: 15px;
  background-image: url(../img/casestudy_arrow2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: rotate(-44deg);
  transform: rotate(-44deg);
  position: absolute;
  left: -39px;
  top: -9px;
}
@media screen and (max-width: 767px) {
  .page-casestudy
    .keyword_contents
    .case_wrap
    .case
    .triangle
    .triangle8::before {
    left: -33px;
    width: 43px;
    height: 10px;
    top: -11px;
  }
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .triangle8 p {
  letter-spacing: 0;
}
.page-casestudy .keyword_contents .case_wrap .case .triangle .triangle6 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  background: #0099b3;
  color: #fff;
  width: 34%;
  margin-top: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.page-casestudy .keyword_contents .case_wrap .case2 p.triangle6 span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap .case2 p.triangle6 span {
    font-size: 1rem;
  }
}
.page-casestudy .keyword_contents .keyword2 .note {
  margin-top: 15px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword2 .note {
    font-size: 1.2rem;
  }
}
.page-casestudy .keyword_contents .keyword2 .note span {
  color: #0099b3;
  text-decoration: underline;
}
.page-casestudy .keyword_contents .case_wrap2 {
  gap: 32px 0.97%;
  margin-top: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .flex-top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 100%;
}
.page-casestudy .keyword_contents .case_wrap2 .left {
  width: 73.8%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .left_detail {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .left_detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 10px;
    margin-left: 12px;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .item2,
.page-casestudy .keyword_contents .case_wrap2 .item3,
.page-casestudy .keyword_contents .case_wrap2 .item7 {
  width: calc((100% - 20px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .item2,
  .page-casestudy .keyword_contents .case_wrap2 .item3,
  .page-casestudy .keyword_contents .case_wrap2 .item7,
  .page-casestudy .keyword_contents .case_wrap2 .item5 {
    width: 100%;
    position: relative;
  }
  .page-casestudy .keyword_contents .case_wrap2 .item2::before,
  .page-casestudy .keyword_contents .case_wrap2 .item3::before,
  .page-casestudy .keyword_contents .case_wrap2 .item7::before,
  .page-casestudy .keyword_contents .case_wrap2 .item5::before {
    content: "";
    height: 26px;
    width: 12px;
    top: 50%;
    left: -16px;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    background: #999;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .center {
  width: 24.27%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .center {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .item1,
.page-casestudy .keyword_contents .case_wrap2 .top,
.page-casestudy .keyword_contents .case_wrap2 .item4,
.page-casestudy .keyword_contents .case_wrap2 .item6 {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.5882352941;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .item1,
  .page-casestudy .keyword_contents .case_wrap2 .top,
  .page-casestudy .keyword_contents .case_wrap2 .item4,
  .page-casestudy .keyword_contents .case_wrap2 .item6 {
    font-size: 1.5rem;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .item1,
.page-casestudy .keyword_contents .case_wrap2 .item4,
.page-casestudy .keyword_contents .case_wrap2 .item6 {
  padding: 36px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .item1,
  .page-casestudy .keyword_contents .case_wrap2 .item4,
  .page-casestudy .keyword_contents .case_wrap2 .item6 {
    height: 70px;
    display: grid;
    place-content: center;
    padding: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .item1,
  .page-casestudy .keyword_contents .case_wrap2 .item4 {
    height: auto;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    width: 45px;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .top {
  height: 81px;
  display: grid;
  place-content: center;
  margin-bottom: 8px;
  position: relative;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .top {
    height: auto;
    padding: 10px;
    font-size: 1.5rem;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .top::before {
  content: "";
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 36px;
  height: 17px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -28px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .top::before {
    content: none;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .bottom {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: left;
  min-height: 215px;
  padding: 20px 27px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .bottom {
    font-size: 1.3rem;
    line-height: 1.7;
    padding: 12px 18px;
    min-height: unset;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .item1 {
  background: #999;
}
.page-casestudy .keyword_contents .case_wrap2 .item2 .top {
  background: #99cc00;
}
.page-casestudy .keyword_contents .case_wrap2 .item2 .top::before {
  background: #999;
}
.page-casestudy .keyword_contents .case_wrap2 .item2 .bottom {
  background: #e0f0b2;
  text-align: justify;
}
.page-casestudy .keyword_contents .case_wrap2 .item3 .top {
  background: #ee8800;
}
.page-casestudy .keyword_contents .case_wrap2 .item3 .top::before {
  background: #999;
}
.page-casestudy .keyword_contents .case_wrap2 .item3 .bottom {
  background: #fadbb2;
  text-align: justify;
}
.page-casestudy .keyword_contents .case_wrap2 .item4 {
  background: #0099b3;
}
.page-casestudy .keyword_contents .case_wrap2 .item5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .case_wrap2 .item5 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 12px;
  }
  .page-casestudy .keyword_contents .case_wrap2 .item5::before {
    background: #0099b3;
  }
}
.page-casestudy .keyword_contents .case_wrap2 .item5 .top {
  background: #0099b3;
}
.page-casestudy .keyword_contents .case_wrap2 .item5 .top::before {
  background: #0099b3;
}
.page-casestudy .keyword_contents .case_wrap2 .item5 .bottom {
  background: #b2e0e8;
  text-align: justify;
}
.page-casestudy .keyword_contents .case_wrap2 .item6 {
  background: #3399cc;
}
.page-casestudy .keyword_contents .case_wrap2 .item7 .top {
  background: #3399cc;
}
.page-casestudy .keyword_contents .case_wrap2 .item7 .top::before {
  background: #999;
}
.page-casestudy .keyword_contents .case_wrap2 .item7 .bottom {
  background: #c2e0f0;
  text-align: justify;
}
.page-casestudy .keyword_contents .keyword3 {
  margin-bottom: 0;
}
.page-casestudy .keyword_contents .keyword3 .cont {
  position: relative;
  width: 96%;
}
@media screen and (max-width: 1024px) {
  .page-casestudy .keyword_contents .keyword3 .cont {
    width: 89%;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont h4 {
  font-size: 2.1rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 16px;
  margin-top: 100px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont h4 {
    font-size: 1.6rem;
    margin-top: 40px;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global {
  position: relative;
}
.page-casestudy .keyword_contents .keyword3 .cont .global .left {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .left {
    margin-top: 0;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .left,
.page-casestudy .keyword_contents .keyword3 .cont .global .right {
  width: 34.9%;
}
@media screen and (max-width: 1024px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .left,
  .page-casestudy .keyword_contents .keyword3 .cont .global .right {
    width: 49%;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .center {
  width: 26.7%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .center {
    display: none;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .center span {
  width: 9px;
  height: 9px;
  background-image: url(../img/star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.page-casestudy .keyword_contents .keyword3 .cont .global .center span::before {
  content: "";
  display: block;
  position: absolute;
}
.page-casestudy .keyword_contents .keyword3 .cont .global .center .star1 {
  top: 40.5%;
  left: 39%;
}
.page-casestudy .keyword_contents .keyword3 .cont .global .center .star2 {
  bottom: 16%;
  left: 14.5%;
}
.page-casestudy
  .keyword_contents
  .keyword3
  .cont
  .global
  .center
  .star2::before {
  background: #3399cc;
  height: auto;
  width: 250px;
  top: 5px;
  aspect-ratio: 246/17;
  left: 8px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.page-casestudy .keyword_contents .keyword3 .cont .global .center .star3 {
  top: 35.5%;
  right: 9%;
}
.page-casestudy
  .keyword_contents
  .keyword3
  .cont
  .global
  .center
  .star3::before {
  background: #99cc00;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 43px;
  aspect-ratio: 43/13;
  height: auto;
  top: 5px;
  left: 9px;
}
.page-casestudy .keyword_contents .keyword3 .cont .global .center .star4 {
  top: 55.2%;
  left: 16.5%;
}
.page-casestudy
  .keyword_contents
  .keyword3
  .cont
  .global
  .center
  .star4::before {
  background: #ee8800;
  aspect-ratio: 73/20;
  width: 80px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 0 100%);
  clip-path: polygon(0 0, 100% 0%, 0 100%);
  height: auto;
  top: 6px;
  left: -78px;
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item1,
.page-casestudy .keyword_contents .keyword3 .cont .global .item2,
.page-casestudy .keyword_contents .keyword3 .cont .global .item3,
.page-casestudy .keyword_contents .keyword3 .cont .global .item4 {
  padding: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .item1,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item2,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item3,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item4 {
    padding: 20px 10px;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item1 p,
.page-casestudy .keyword_contents .keyword3 .cont .global .item2 p,
.page-casestudy .keyword_contents .keyword3 .cont .global .item3 p,
.page-casestudy .keyword_contents .keyword3 .cont .global .item4 p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .item1 p,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item2 p,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item3 p,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item4 p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 430px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .item1 p,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item2 p,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item3 p,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item4 p {
    font-size: 1rem;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item1 img,
.page-casestudy .keyword_contents .keyword3 .cont .global .item2 img,
.page-casestudy .keyword_contents .keyword3 .cont .global .item3 img,
.page-casestudy .keyword_contents .keyword3 .cont .global .item4 img {
  width: 60px;
  margin: 0 auto 20px;
  display: block;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .item1 img,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item2 img,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item3 img,
  .page-casestudy .keyword_contents .keyword3 .cont .global .item4 img {
    width: 40px;
    margin-bottom: 10px;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item1 {
  background: #8e396a;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .item1 {
    margin-bottom: 5px;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item4 {
  background: #3399cc;
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item4::after {
  bottom: 37%;
  right: -19.5%;
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item3 {
  background: #99cc00;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .item3 {
    margin-bottom: 5px;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item2 {
  background: #ee8800;
  padding-top: 18px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .item2 {
    padding-top: 20px;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .global .item2 img {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont .global .item2 img {
    margin-bottom: 10px;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .note {
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-weight: 400;
  margin-top: 12px;
}
@media screen and (max-width: 1024px) {
  .page-casestudy .keyword_contents .keyword3 .cont .note {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword3 .cont .note {
    font-size: 1.2rem;
  }
}
.page-casestudy .keyword_contents .keyword3 .cont .note span {
  color: #ee8800;
}
.page-casestudy .keyword_contents .global_bottom {
  position: relative;
  padding-top: 260px;
  padding-bottom: 230px;
  margin-top: -132px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .global_bottom {
    margin-top: -60px;
    padding: 160px 0 100px;
    margin-bottom: 0;
  }
}
.page-casestudy .keyword_contents .global_bottom .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.page-casestudy .keyword_contents .global_bottom .bg img {
  -o-object-fit: unset;
  object-fit: unset;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .global_bottom .bg img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.page-casestudy .keyword_contents .global_bottom .cont {
  max-width: 910px;
}
.page-casestudy .keyword_contents .global_bottom p {
  line-height: 2.25;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #231815;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .global_bottom p {
    line-height: 2;
  }
}
.page-casestudy .keyword_contents .global_bottom .flex picture {
  width: 47.9%;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .global_bottom .flex picture {
    width: 49%;
  }
}
.page-casestudy .keyword_contents #keyword4 .case_wrap {
  -webkit-column-gap: 4%;
  -moz-column-gap: 4%;
  column-gap: 4%;
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .case_wrap {
    margin-top: 60px;
    row-gap: 20px;
  }
}
.page-casestudy .keyword_contents #keyword4 .case_wrap .case {
  max-width: 725px;
}

@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .case_wrap .case {
    width: 100%;
    max-width: 494px;
  }
  .page-casestudy .keyword_contents #keyword4 .case_wrap .case3 {
    max-width: 530px;
  }
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .case_wrap .case_title {
    margin-bottom: 20px;
  }
}
.page-casestudy
  .keyword_contents
  #keyword4
  .case_wrap
  .case_title
  .case_title-bg {
  background-image: url(../img/casestudy_bg01.png);
}
.page-casestudy
  .keyword_contents
  #keyword4
  .case_wrap
  .case_title
  .description {
  line-height: 1.9047619048;
  letter-spacing: 0.13em;
}
.page-casestudy .keyword_contents #keyword4 .case_wrap .detail {
  line-height: 2.25;
  letter-spacing: 0.02em;
  color: #231815;
  font-weight: 400;
  text-align: justify;
}

.page-casestudy .keyword_contents #keyword4 .case_wrap .detail .blueline {
  color: #0099b3;
  border-bottom: solid 1px #0099b3;
  font-weight: 400;
}

.page-casestudy .keyword_contents #keyword4 .case_wrap picture {
  width: 48%;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .case_wrap picture {
    width: 100%;
    max-width: 494px;
    margin: 0 auto;
  }
}
.page-casestudy .keyword_contents #keyword4 .case_wrap picture img {
  width: 100%;
  height: 100%;
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow {
  margin-top: 36px;
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .scheme_flow {
    margin-top: 30px;
    margin-bottom: 80px;
  }
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .description span {
  color: #0099b3;
  letter-spacing: 0.14em;
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 725px;
  width: 100%;
  margin: 24px auto 0;
}
.sdgs-icons{
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex {
    max-width: 510px;
  }
  .sdgs-icons{
    margin-top: 48px;
  }
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex p {
  text-align: center;
  line-height: 1.5882352941;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex p {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item1,
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item3,
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item5 {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 23%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item1,
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item3,
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item5 {
    width: 24%;
  }
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item2,
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item4 {
  width: 120px;
  margin: 0 -10% 30px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item2,
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item4 {
    width: 70px;
    margin-bottom: 10px;
  }
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item2 p,
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item4 p {
  color: #717171;
}
.page-casestudy
  .keyword_contents
  #keyword4
  .scheme_flow
  .flex
  .item2
  p:first-child::after {
  content: "";
  display: block;
  width: 67%;
  height: 15px;
  background-image: url(../img/casestudy_arrow5.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 10px auto;
}
@media screen and (max-width: 767px) {
  .page-casestudy
    .keyword_contents
    #keyword4
    .scheme_flow
    .flex
    .item2
    p:first-child::after {
    height: 10px;
  }
}
.page-casestudy
  .keyword_contents
  #keyword4
  .scheme_flow
  .flex
  .item2
  p:last-child {
  color: #0099b3;
}
.page-casestudy
  .keyword_contents
  #keyword4
  .scheme_flow
  .flex
  .item2
  p:last-child::before {
  content: "";
  display: block;
  width: 67%;
  height: 15px;
  background-image: url(../img/casestudy_arrow3.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 3px auto;
}
@media screen and (max-width: 767px) {
  .page-casestudy
    .keyword_contents
    #keyword4
    .scheme_flow
    .flex
    .item2
    p:last-child::before {
    height: 10px;
  }
}
.page-casestudy
  .keyword_contents
  #keyword4
  .scheme_flow
  .flex
  .item4
  p:first-child::after {
  content: "";
  display: block;
  width: 67%;
  height: 15px;
  background-image: url(../img/casestudy_arrow4.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 10px auto;
}
@media screen and (max-width: 767px) {
  .page-casestudy
    .keyword_contents
    #keyword4
    .scheme_flow
    .flex
    .item4
    p:first-child::after {
    height: 10px;
  }
}
.page-casestudy
  .keyword_contents
  #keyword4
  .scheme_flow
  .flex
  .item4
  p:last-child::before {
  content: "";
  display: block;
  width: 67%;
  height: 15px;
  background-image: url(../img/casestudy_arrow4.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  margin: 3px auto;
}
@media screen and (max-width: 767px) {
  .page-casestudy
    .keyword_contents
    #keyword4
    .scheme_flow
    .flex
    .item4
    p:last-child::before {
    height: 10px;
  }
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item1 {
  background: #b2e0e8;
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item1 img {
  width: 20%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item1 img {
    margin-bottom: 5px;
    width: 30%;
    min-width: 24px;
  }
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item1 p {
  color: #0c7e94;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item1 p {
    margin-bottom: 0;
  }
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item3 {
  background: #0099b3;
  color: #fff;
}
.page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item5 {
  background: #fff;
  border: none;
  color: #0c7e94;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents #keyword4 .scheme_flow .flex .item5 {
    border-width: 2px;
  }
}
.page-casestudy .keyword_contents .keyword_message {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message {
    margin-bottom: 80px;
  }
}
.page-casestudy .keyword_contents .keyword_message .cont {
  max-width: 1030px;
}
.page-casestudy .keyword_contents .keyword_message .cont p {
  letter-spacing: 0;
}
.page-casestudy .keyword_contents .keyword_message .title {
  background: #0099b3;
  padding: 35px 45px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .title {
    padding: 15px 60px 15px 20px;
  }
}
.page-casestudy .keyword_contents .keyword_message .title h3 {
  font-size: 2.7rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .title h3 {
    font-size: 2rem;
  }
}
.page-casestudy .keyword_contents .keyword_message .title span {
  width: 48px;
  height: 48px;
  display: block;
  background: #fff;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 430px) {
  .page-casestudy .keyword_contents .keyword_message .title span {
    right: 25px;
    width: 32px;
    height: 32px;
  }
}
.page-casestudy .keyword_contents .keyword_message .title::before,
.page-casestudy .keyword_contents .keyword_message .title::after {
  z-index: 3;
  right: 53px;
  width: 12px;
  height: 2px;
  top: 49%;
}
@media screen and (max-width: 430px) {
  .page-casestudy .keyword_contents .keyword_message .title::before,
  .page-casestudy .keyword_contents .keyword_message .title::after {
    right: 35px;
    height: 1px;
  }
}
.page-casestudy .keyword_contents .keyword_message .title.close::before,
.page-casestudy .keyword_contents .keyword_message .title.close::after {
  top: 49%;
}
.page-casestudy .keyword_contents .keyword_message .box {
  padding: 87px 130px;
  border: solid 1px #0099b3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box {
    padding: 40px 24px;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .flex {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 50px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 25px;
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .flex {
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .flex img {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .flex img {
    width: 150px;
    margin: 0 auto;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .flex .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .flex .right {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .flex .right .name {
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .flex .right .name {
    font-size: 1.6rem;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .flex .right .detail {
  line-height: 1.875;
  font-weight: 400;
}
.page-casestudy .keyword_contents .keyword_message .box .content {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .content {
    margin-bottom: 40px;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .content p {
  font-weight: 400;
  line-height: 2.25;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .content p {
    line-height: 2;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .content p sup {
  font-size: 1rem;
}
.page-casestudy .keyword_contents .keyword_message .box .content .question {
  color: #0099b3;
  font-size: 2.3rem;
  margin-bottom: 20px;
  line-height: 2;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .content .question {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .note {
  padding: 34px 45px;
  margin-top: 85px;
  border: 1px #000 dotted;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .note {
    padding: 24px;
    margin-top: 40px;
  }
}
.page-casestudy .keyword_contents .keyword_message .box .note p {
  line-height: 2.25;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .page-casestudy .keyword_contents .keyword_message .box .note p {
    line-height: 2;
  }
}

.anchor_link.personality {
  margin-top: 40px;
}
.anchor_link.personality a {
  aspect-ratio: 320/80;
}
.anchor_link.personality a .chapter_title {
  line-height: 8rem;
}

.personality_content {
  padding-top: 100px;
  margin-bottom: 160px;
}
.personality_content .cont {
  max-width: 800px;
}
.personality_content .cont .description {
  line-height: 2;
  letter-spacing: 0.1em;
}
.personality_content .cont h4 {
  margin: 100px 0 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.personality_content .cont img {
  width: 100%;
  margin-bottom: 100px;
}
.personality_content .cont .text_bg {
  background-image: url(../img/casestudy_bg.png);
  background-size: cover;
  text-align: center;
  padding: 50px 20px;
  letter-spacing: 0.13em;
  font-size: 3rem;
  margin-bottom: 100px;
}

.program_content {
  margin-top: 120px;
  margin-bottom: 160px;
}
.program_content h3 {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 100px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}
.program_content img {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}
.program_content h4 {
  margin-top: 100px;
  margin-bottom: 8dvb;
}
.program_content .program_wrap {
  max-width: 800px;
  margin: 0 auto;
}
.program_content .program_wrap table {
  width: 100%;
}
.program_content .program_wrap table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 20px;
  width: 100%;
  border-bottom: solid 1px #0099b3;
}
.program_content .program_wrap table th {
  color: #0099b3;
  font-weight: 500;
}
.program_content .program_wrap table th,
.program_content .program_wrap table td {
  font-size: 1.8rem;
}
.program_content .program_wrap table td:first-child,
.program_content .program_wrap table th:first-child {
  width: 20%;
}
.program_content .program_wrap table td:nth-child(2),
.program_content .program_wrap table td:nth-child(3),
.program_content .program_wrap table th:nth-child(2),
.program_content .program_wrap table th:nth-child(3) {
  width: 40%;
}
.program_content .program_wrap p {
  margin-top: 16px;
  max-width: 800px;
}
.program_content .program_wrap h5 {
  font-weight: 500;
  font-size: 1.6rem;
  color: #0099b3;
}
.program_content .program_wrap ul li {
  font-size: 1.8rem;
  margin-top: 16px;
}
.program_content .program_wrap ul li::before {
  content: "・";
}

.voice_content h3 {
  text-align: center;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #0099b3;
  margin-top: 20px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .voice_content h3 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.voice_content .lead {
  text-align: center;
  color: #0099b3;
  letter-spacing: 0.13em;
  font-weight: 400;
  line-height: 1.8125;
}
.voice_content .voice_list {
  margin-top: 75px;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}
.voice_content .voice_list li {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li {
    margin-bottom: 30px;
  }
}
.voice_content .voice_list li .title {
  position: relative;
  padding: 24px 33px 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li .title {
    padding: 15px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.voice_content .voice_list li .title .orange_border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.voice_content .voice_list li .title .orange_border::after {
  content: "";
  width: 48px;
  height: 48px;
  top: 30px;
  right: 35px;
  background: #0099b3;
  display: block;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li .title .orange_border::after {
    width: 30px;
    height: 30px;
    top: 15px;
    right: 20px;
  }
}
.voice_content .voice_list li .title .no {
  color: #fff;
  background: #0099b3;
  padding: 13px 15px 14px;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li .title .no {
    font-size: 1.6rem;
    padding: 3px 5px;
    margin-bottom: 10px;
  }
}
.voice_content .voice_list li .title .voice_list_title {
  font-size: 2.2rem;
  width: calc(100% - 200px);
  margin-left: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li .title .voice_list_title {
    font-size: 1.5rem;
    width: 100%;
    margin-left: 0;
  }
}
.voice_content .voice_list li .title::before,
.voice_content .voice_list li .title::after {
  background: #fff;
  width: 12px;
  height: 2px;
  right: 53px;
  top: 53px;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li .title::before,
  .voice_content .voice_list li .title::after {
    width: 10px;
    right: 30px;
    top: 29px;
  }
}
.voice_content .voice_list li .title.close::after {
  opacity: 0;
}
.voice_content .voice_list li .box {
  margin: 31px 36px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li .box {
    margin: 20px 0 0;
  }
}
.voice_content .voice_list li .box p {
  margin-bottom: 16px;
  padding: 8px 16px 9px;
  font-size: 1.7rem;
  text-indent: -1.6em;
  padding-left: 39px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li .box p {
    font-size: 1.4rem;
  }
}
.voice_content .voice_list li .box p::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 13px;
}
@media screen and (max-width: 767px) {
  .voice_content .voice_list li .box p::before {
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }
}
.voice_content .voice_list li .box p:nth-child(4n + 1) {
  background: #f5fae5;
}
.voice_content .voice_list li .box p:nth-child(4n + 1)::before {
  background: #99cc00;
}
.voice_content .voice_list li .box p:nth-child(4n + 2) {
  background: #fdf3e5;
}
.voice_content .voice_list li .box p:nth-child(4n + 2)::before {
  background: #ee8800;
}
.voice_content .voice_list li .box p:nth-child(4n + 3) {
  background: #ebf5fa;
}
.voice_content .voice_list li .box p:nth-child(4n + 3)::before {
  background: #3399cc;
}
.voice_content .voice_list li .box p:nth-child(4n + 4) {
  background: #e5f5f5;
}
.voice_content .voice_list li .box p:nth-child(4n + 4)::before {
  background: #009999;
}

body.voices .page_top-mv img {
  width: 83.5%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body.voices .heading_type2 {
    font-size: 2rem;
  }
  body.voices .page_top-mv img {
    aspect-ratio: 2.6/1;
    -o-object-position: -10px;
    object-position: -10px;
    width: 100%;
  }
}

.internship {
  padding-bottom: 160px;
}
.internship .internship_top {
  margin-bottom: 100px;
}
.internship .internship_top p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.internship .internship_top img {
  width: 200px;
  margin-left: 50px;
}
.internship table {
  margin-bottom: 100px;
}
.internship table th {
  width: 300px;
}
.internship table td {
  width: calc(100% - 300px);
}
.internship .internship_voice {
  margin-top: 50px;
  margin-bottom: 100px;
}
.internship .internship_voice .flex-top {
  margin-bottom: 50px;
}
.internship .internship_voice .flex-top .left {
  width: 100px;
  margin-right: 30px;
}
.internship .internship_voice .flex-top .left img {
  border-radius: 50%;
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.internship .internship_voice .flex-top .left p {
  text-align: center;
}
.internship .internship_voice .flex-top .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.8;
}
.internship .flow {
  margin-bottom: 100px;
}
.internship .flow ol {
  margin: 20px 0;
}
.internship .flow ol li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.internship .flow ol .no {
  font-weight: 400;
}
.internship .flow ol .flow_detail {
  max-width: 450px;
}
.internship .information .address {
  margin-left: 20px;
}
.internship .information .address p {
  letter-spacing: 0.05em;
}
.internship .information .address a {
  color: #0099b3;
}

.human-resources_wrap {
  margin-top: 68px;
}
.human-resources_wrap .anchor_link a .chapter_title {
  line-height: 9rem;
}
.human-resources_wrap .anchor_link a {
  min-height: 90px;
}
.human-resources_wrap .chapter .content p {
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap .chapter .content p {
    line-height: 2;
  }
}
.human-resources_wrap #resources1 .cont {
  max-width: 760px;
}
.human-resources_wrap #resources1 .content h4 {
  padding: 50px 20px;
  margin-bottom: 100px;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  background-image: url(../img/casestudy_bg.png);
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources1 .content h4 {
    font-size: 2rem;
    margin-bottom: 40px;
    padding: 30px 20px;
  }
}
.human-resources_wrap #resources2 .cont {
  max-width: 760px;
}
.human-resources_wrap #resources2 .resources2_cycle {
  padding-top: 95px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources2 .resources2_cycle {
    padding-top: 40px;
    margin-bottom: 30px;
  }
}
.human-resources_wrap #resources2 .resources2_cycle h4 {
  font-size: 2.1rem;
  text-align: center;
  letter-spacing: 0.13em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources2 .resources2_cycle h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.human-resources_wrap #resources2 .resources2_cycle img {
  width: 100%;
}
.human-resources_wrap #resources3 {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 {
    margin-bottom: 80px;
  }
}
.human-resources_wrap #resources3 .cont {
  max-width: 760px;
}
.human-resources_wrap #resources3 h4 {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.13em;
  padding-bottom: 16px;
  font-weight: 400;
  position: relative;
  margin-bottom: 74px;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.human-resources_wrap #resources3 h4::before {
  content: "";
  width: 65px;
  height: 1px;
  background: #0099b3;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 h4::before {
    width: 40px;
  }
}
.human-resources_wrap #resources3 table {
  width: 100%;
}
.human-resources_wrap #resources3 table thead,
.human-resources_wrap #resources3 table tbody {
  width: 100%;
}
.human-resources_wrap #resources3 table th {
  color: #0099b3;
}
.human-resources_wrap #resources3 table tr {
  border-bottom: solid 1px #0099b3;
  padding: 13px 20px;
  padding-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.human-resources_wrap #resources3 table th,
.human-resources_wrap #resources3 table td {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 table th,
  .human-resources_wrap #resources3 table td {
    font-size: 1.4rem;
  }
}
.human-resources_wrap #resources3 table .table1 {
  width: 21%;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 table .table1 {
    width: 18%;
  }
}
.human-resources_wrap #resources3 table .table2 {
  width: 48%;
  padding-left: 2%;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 table .table2 {
    width: 41%;
  }
}
.human-resources_wrap #resources3 table .table3 {
  width: 34.2%;
  padding-left: 2%;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 table .table3 {
    width: 41%;
  }
}
.human-resources_wrap #resources3 .table {
  margin-bottom: 95px;
}
.human-resources_wrap #resources3 .table_note {
  margin-bottom: 100px;
  margin-top: 20px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 .table_note {
    margin-top: 15px;
    margin-bottom: 80px;
  }
}
.human-resources_wrap #resources3 .list_title {
  color: #0099b3;
}
.human-resources_wrap #resources3 ul li {
  font-weight: 400;
  line-height: 2.25;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 ul li {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.human-resources_wrap #resources3 .resources3_pic {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .human-resources_wrap #resources3 .resources3_pic {
    margin-top: 30px;
  }
}
@media screen and (max-width: 430px) {
  .human-resources_wrap #resources3 .resources3_pic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.human-resources_wrap #resources3 .resources3_pic picture {
  width: 48.4%;
  aspect-ratio: 368/275;
  height: auto;
}
@media screen and (max-width: 430px) {
  .human-resources_wrap #resources3 .resources3_pic picture {
    width: 100%;
  }
}
.human-resources_wrap #resources3 .resources3_pic img {
  width: 100%;
  height: 100%;
}

#tab_menu4 .triangle6,
.vendor-lease .triangle6 {
  margin-top: 0;
}
#tab_menu4 .triangle2,
.vendor-lease .triangle2 {
  margin-top: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle2,
  .vendor-lease .triangle2 {
    margin-top: 0px;
    margin-bottom: 17px;
  }
}
#tab_menu4 .triangle2::after,
.vendor-lease .triangle2::after {
  content: none;
}
#tab_menu4 .triangle2 p:first-child::after,
#tab_menu4 .triangle2 p:nth-child(2)::before,
.vendor-lease .triangle2 p:first-child::after,
.vendor-lease .triangle2 p:nth-child(2)::before {
  background-image: url(../img/business_arrow6.svg);
  height: 18px;
  content: "";
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle2 p:first-child::after,
  #tab_menu4 .triangle2 p:nth-child(2)::before,
  .vendor-lease .triangle2 p:first-child::after,
  .vendor-lease .triangle2 p:nth-child(2)::before {
    background-image: url(../img/business_arrow4.svg);
    margin-top: 5px;
    height: 10px;
    background-position: center;
  }
}
#tab_menu4 .triangle2 p:nth-child(2)::before,
.vendor-lease .triangle2 p:nth-child(2)::before {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle2 p:nth-child(2)::before,
  .vendor-lease .triangle2 p:nth-child(2)::before {
    margin-top: 5px;
  }
}
#tab_menu4 .waku,
.vendor-lease .waku {
  margin-top: 3%;
  max-width: 590px;
}
#tab_menu4 .triangle4 p::after,
.vendor-lease .triangle4 p::after {
  content: none;
}
#tab_menu4 .triangle4 p::before,
.vendor-lease .triangle4 p::before {
  content: "";
  background-image: url(../img/business_arrow8.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-top: 10px;
  width: 230px;
  aspect-ratio: 300/23;
  height: auto;
  position: absolute;
  top: -26px;
  right: -76px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle4 p::before,
  .vendor-lease .triangle4 p::before {
    width: 100%;
    min-width: 100px;
    top: -18px;
    right: -15px;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu4 .triangle4 p::before,
  .vendor-lease .triangle4 p::before {
    right: -24px;
  }
}
#tab_menu4 .triangle4,
.vendor-lease .triangle4 {
  margin-left: 16%;
  margin-right: 13%;
  margin-top: -29px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle4,
  .vendor-lease .triangle4 {
    margin-top: 0%;
    margin-left: 15%;
    margin-right: 1%;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu4 .triangle4,
  .vendor-lease .triangle4 {
    margin-top: 0%;
    margin-left: 14%;
    margin-right: 1%;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle4,
  #tab_menu4 .triangle5,
  .vendor-lease .triangle4,
  .vendor-lease .triangle5 {
    width: 27%;
    max-width: 110px;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu4 .triangle4,
  #tab_menu4 .triangle5,
  .vendor-lease .triangle4,
  .vendor-lease .triangle5 {
    max-width: 90px;
  }
}
#tab_menu4 .triangle4 p,
#tab_menu4 .triangle5 p,
.vendor-lease .triangle4 p,
.vendor-lease .triangle5 p {
  position: relative;
}
#tab_menu4 .triangle5,
.vendor-lease .triangle5 {
  margin-top: -2px;
  margin-right: 24%;
  margin-left: 4%;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle5,
  .vendor-lease .triangle5 {
    margin-top: -3px;
    margin-right: 20%;
    margin-left: 4%;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu4 .triangle5,
  .vendor-lease .triangle5 {
    margin-top: 7px;
    margin-right: 21%;
    margin-left: 8%;
  }
}
#tab_menu4 .triangle5 p:first-child,
.vendor-lease .triangle5 p:first-child {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle5 p:first-child,
  .vendor-lease .triangle5 p:first-child {
    margin-bottom: 23px;
  }
}
#tab_menu4 .triangle5 p:nth-child(2),
.vendor-lease .triangle5 p:nth-child(2) {
  padding-left: 56px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle5 p:nth-child(2),
  .vendor-lease .triangle5 p:nth-child(2) {
    padding-left: 27px;
    margin-right: -10px;
  }
}
#tab_menu4 .triangle5 p:first-child::after,
#tab_menu4 .triangle5 p:nth-child(2)::before,
.vendor-lease .triangle5 p:first-child::after,
.vendor-lease .triangle5 p:nth-child(2)::before {
  background-image: url(../img/business_arrow8.svg);
  width: 230px;
  top: -32px;
  left: 7px;
  aspect-ratio: 300/23;
  height: auto;
  position: absolute;
  margin: 0;
}
#tab_menu4 .triangle5 p:first-child::after,
.vendor-lease .triangle5 p:first-child::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  top: unset;
  left: -20px;
  bottom: -26px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle5 p:first-child::after,
  .vendor-lease .triangle5 p:first-child::after {
    width: 100%;
    min-width: 100px;
    left: -3px;
    bottom: -9px;
  }
}
#tab_menu4 .triangle5 p:nth-child(2)::before,
.vendor-lease .triangle5 p:nth-child(2)::before {
  -webkit-transform: unset;
  transform: unset;
  left: 19px;
  top: -20px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle5 p:nth-child(2)::before,
  .vendor-lease .triangle5 p:nth-child(2)::before {
    width: 80%;
    left: 18px;
    top: -7px;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu4 .triangle5 p:nth-child(2)::before,
  .vendor-lease .triangle5 p:nth-child(2)::before {
    width: 100%;
    min-width: 85px;
    left: 8px;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu4 .triangle6 p,
  .vendor-lease .triangle6 p {
    font-size: 1rem;
  }
}

#tab_menu4 .top h3 {
  color: #006d85;
}
#tab_menu4 .bottom {
  background: #00b9cc;
}
#tab_menu4 .bottom h3 {
  color: #00b9cc;
}
#tab_menu4 .solution {
  padding-bottom: 0;
}

.vendor-lease .area .top {
  padding-bottom: 0;
}

.vendor-lease .triangle .triangle2 {
  margin-top: 0;
  margin-bottom: 69px;
}
@media screen and (max-width: 430px) {
  .vendor-lease .triangle .triangle2 {
    margin-top: -10px;
    margin-bottom: 40px;
  }
}
.vendor-lease .triangle .triangle3_second {
  background: #b76b19;
}
.vendor-lease .triangle .triangle4 p::after {
  content: none;
}
.vendor-lease .triangle .triangle4 {
  width: 30%;
  margin-left: 6%;
  margin-right: 2%;
  margin-top: -60px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle .triangle4 {
    width: 27%;
    margin-left: 18%;
    margin-right: 4%;
    margin-top: -33px;
  }
}
.vendor-lease .triangle .triangle4 p::before {
  top: -29px;
  left: 27px;
}
@media (max-width: 860px) {
  .vendor-lease .triangle .triangle4 p::before {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle .triangle4 p::before {
    width: 90%;
    min-width: 100px;
    top: -21px;
    left: 18px;
  }
}
@media screen and (max-width: 430px) {
  .vendor-lease .triangle .triangle4 p::before {
    width: 100%;
    left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle .triangle5 p:first-child {
    margin-bottom: 23px;
    padding-left: 23px;
  }
}
.vendor-lease .triangle .triangle5 {
  width: 30%;
  margin-top: -8px;
  margin-right: 7%;
  margin-left: 5%;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle .triangle5 {
    width: 27%;
    margin-top: 7px;
    margin-right: 21%;
    margin-left: 1%;
  }
}
.vendor-lease .triangle .triangle5 p:first-child::after {
  left: 7px;
}
@media (max-width: 860px) {
  .vendor-lease .triangle .triangle5 p:first-child::after {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle .triangle5 p:first-child::after {
    width: 90%;
    min-width: 100px;
    left: 19px;
  }
}
@media screen and (max-width: 430px) {
  .vendor-lease .triangle .triangle5 p:first-child::after {
    width: 100%;
    left: 7px;
  }
}
.vendor-lease .triangle .triangle5 p:nth-child(2) {
  text-align: right;
  margin-right: -20px;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle .triangle5 p:nth-child(2) {
    margin-right: -27px;
  }
}
.vendor-lease .triangle .triangle5 p:nth-child(2)::before {
  left: 46px;
  top: -17px;
}
@media (max-width: 860px) {
  .vendor-lease .triangle .triangle5 p:nth-child(2)::before {
    width: 178px;
  }
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle .triangle5 p:nth-child(2)::before {
    width: 70%;
    min-width: 90px;
    left: 36px;
    top: -10px;
  }
}
@media screen and (max-width: 430px) {
  .vendor-lease .triangle .triangle5 p:nth-child(2)::before {
    width: 77%;
    left: 22px;
  }
}
.vendor-lease .triangle .waku {
  margin-top: -5%;
}
@media screen and (max-width: 767px) {
  .vendor-lease .triangle .waku {
    margin-top: -6%;
  }
}

#tab_menu3 .top h3 {
  color: #06808f;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .top h3 {
    line-height: 1.4;
    margin-bottom: 40px;
    padding: 5px 15px;
  }
}
#tab_menu3 .second {
  background: #06808f;
}
#tab_menu3 .content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 933px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .content {
    max-width: 420px;
    margin-top: 0;
  }
}
#tab_menu3 .content p {
  color: #fff;
  font-size: 1.64vw;
}
@media screen and (min-width: 1280px) {
  #tab_menu3 .content p {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu3 .content p {
    font-size: 1rem;
  }
}
#tab_menu3 .content_top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
#tab_menu3 .arrow1 {
  margin: 24px 0;
  position: relative;
  text-align: left;
  margin-left: 189px;
  width: 160px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .arrow1 {
    margin: 10px 0;
    margin-left: 157px;
    width: 140px;
  }
}
#tab_menu3 .arrow1::before {
  content: "";
  display: block;
  width: 17px;
  height: auto;
  aspect-ratio: 4/15;
  background-image: url(../img/kankyo_arrow1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -17px;
  left: -22px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .arrow1::before {
    width: 7px;
    top: -5px;
    left: -12px;
  }
}
#tab_menu3 .arrow2 {
  position: relative;
  width: 19%;
  margin-bottom: 7px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .arrow2 {
    width: 19%;
    margin-left: -2%;
    margin-right: -2%;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
#tab_menu3 .arrow2::after {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10/1;
  background-image: url(../img/kankyo_arrow2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
}
#tab_menu3 .arrow3 {
  position: relative;
  text-align: center;
  width: 33%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .arrow3 {
    width: 28%;
  }
}
#tab_menu3 .arrow3::before {
  content: "";
  display: block;
  width: 49%;
  height: auto;
  aspect-ratio: 193/150;
  background-image: url(../img/kankyo_arrow3.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .arrow3::before {
    width: 50px;
  }
}
#tab_menu3 .arrow3::after {
  content: none;
}
#tab_menu3 .arrow4 {
  position: relative;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 27%;
  padding-left: 14%;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .arrow4 {
    width: 38%;
    padding-left: 17%;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu3 .arrow4 {
    padding-left: 19%;
  }
}
#tab_menu3 .arrow4::before {
  content: "";
  display: block;
  width: 17px;
  height: auto;
  aspect-ratio: 4/15;
  background-image: url(../img/kankyo_arrow1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 767px) {
  #tab_menu3 .arrow4::before {
    width: 7px;
  }
}
#tab_menu3 .arrow_left::after {
  -webkit-transform: scale(-1, 1) translateY(-40%);
  transform: scale(-1, 1) translateY(-40%);
}
#tab_menu3 .img_wrap {
  width: 18%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 1.64vw;
  letter-spacing: 0.1em;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #004d64;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 1280px) {
  #tab_menu3 .img_wrap {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu3 .img_wrap {
    font-size: 1rem;
    width: 22%;
  }
}
#tab_menu3 .img_wrap p {
  color: #fff;
  font-size: 1.64vw;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (min-width: 1280px) {
  #tab_menu3 .img_wrap p {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu3 .img_wrap p {
    font-size: 1rem;
  }
}
#tab_menu3 .img_wrap span {
  font-size: 1.41vw;
  letter-spacing: 0;
  display: block;
}
@media screen and (min-width: 1280px) {
  #tab_menu3 .img_wrap span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu3 .img_wrap span {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    font-size: 1rem;
  }
}
#tab_menu3 .circle_text {
  letter-spacing: 0.13em;
}
#tab_menu3 .circle_1 img {
  width: 34%;
  margin-bottom: 14px;
  margin-top: -18px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .circle_1 img {
    width: 39%;
    margin-bottom: 5px;
    margin-top: -8px;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu3 .circle_2 {
    padding: 10px 3px;
  }
}
#tab_menu3 .circle_2 img {
  width: 34%;
  margin-bottom: 13px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .circle_2 img {
    margin-bottom: 3px;
    margin-top: 5px;
  }
}
#tab_menu3 .circle_3 {
  background: #08324f;
  width: 24%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .circle_3 {
    padding: 10px 3px;
  }
}
#tab_menu3 .circle_3 img {
  width: 75%;
  margin-bottom: 9px;
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .circle_3 img {
    margin-bottom: 6px;
  }
}
#tab_menu3 .circle_3 p span {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .circle_4 {
    padding: 10px 3px;
  }
}
#tab_menu3 .circle_4 img {
  width: 23%;
  margin-bottom: 6px;
  margin-top: -5px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .circle_4 img {
    margin-bottom: 3px;
    margin-top: -3px;
  }
}
#tab_menu3 .circle_4 p span {
  letter-spacing: -0.14em;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .circle_4 p span {
    letter-spacing: -0.1em;
  }
}
#tab_menu3 .center {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 22px 0 26px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .center {
    margin: 10px 0;
  }
}
#tab_menu3 .center p {
  letter-spacing: 0.13em;
}
#tab_menu3 .center p:nth-child(1) {
  padding-right: 51px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .center p:nth-child(1) {
    padding-right: 10px;
  }
}
#tab_menu3 .center p:nth-child(1)::before {
  top: -68px;
  right: 15%;
}
@media (max-width: 900px) {
  #tab_menu3 .center p:nth-child(1)::before {
    top: -58px;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu3 .center p:nth-child(1)::before {
    top: -23px;
    right: -6%;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu3 .center p:nth-child(1)::before {
    top: -17px;
  }
}
#tab_menu3 .center p:nth-child(2)::before {
  margin: 0;
}
#tab_menu3 .center p:nth-child(3) {
  padding-left: 2px;
}
@media screen and (max-width: 767px) {
  #tab_menu3 .center p:nth-child(3) {
    padding-left: 0;
  }
}
#tab_menu3 .center p:nth-child(3)::before {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  top: -68px;
  left: 15%;
}
@media (max-width: 900px) {
  #tab_menu3 .center p:nth-child(3)::before {
    top: -58px;
  }
}
@media screen and (max-width: 767px) {
  #tab_menu3 .center p:nth-child(3)::before {
    top: -23px;
    left: -6%;
  }
}
@media screen and (max-width: 430px) {
  #tab_menu3 .center p:nth-child(3)::before {
    top: -17px;
  }
}
#tab_menu3 .center1 {
  width: 100%;
}
#tab_menu3 .bottom {
  background: unset;
  padding: 0;
}
#tab_menu3 .waku {
  max-width: 584px;
}
#tab_menu3 .second {
  padding-top: 0;
}
#tab_menu3 .solution .flex-top {
  margin-bottom: 0;
}

sub {
  font-size: 1rem;
  vertical-align: inherit;
}
.benefits_wrap .benefit1_list li:nth-child(6) {
  padding: 0 3.5% 0 3.5%;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) {
    padding: 0 4%;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 20px;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .num {
  line-height: 1;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .num .num_s {
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .num .num_s {
    margin-left: 3px;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .left {
  width: 33%;
  margin-top: 8%;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .left {
    margin-top: 8px;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .flex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-left: 7%;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .flex img {
  width: 36%;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .flex p {
  line-height: 1.1;
  margin-left: 3px;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num {
  font-size: 7.4vw;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num {
    font-size: 8.3rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num {
    font-size: 6rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num .num_m {
  font-size: 4.3vw;
  color: #0099b3;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num .num_m {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num .num_m {
    font-size: 4rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num .num_s {
  font-size: 2vw;
  color: #212121;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num .num_s {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .left .num .num_s {
    font-size: 1.8rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .graph {
  width: 29%;
  margin-top: 6%;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .graph {
    margin-top: 8px;
    width: 27%;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right {
    width: 30%;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .flex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .flex img {
  width: 29%;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .flex p {
  font-size: 1.4vw;
  margin-left: 5px;
  font-weight: 700;
  line-height: 1.1;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .flex p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .flex p {
    font-size: 1.2rem;
    margin-left: 3px;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num_s {
  color: #212121;
  font-size: 1.5vw;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num_s {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num_s {
    font-size: 1.3rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num {
  font-size: 4vw;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num {
    font-size: 5.3rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num {
    font-size: 3.6rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num_m {
  font-size: 2.4vw;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num_m {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .num_m {
    font-size: 2rem;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .osaka {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .osaka {
    margin-bottom: 8px;
  }
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .osaka .num,
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .osaka .num_m {
  color: #f5a519;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .other img {
  width: 25%;
}
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .other .num,
.benefits_wrap .benefit1_list li:nth-child(6) .wrap .right .other .num_m {
  color: #9d9d9e;
}
