@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif, "Montserrat", "Hiragino Sans", "メイリオ", serif;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  body {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

main {
  min-height: 100vh;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 1281px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .sp_only {
    display: none !important;
  }
}

.basic_width {
  max-width: 1220px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .basic_width {
    padding: 0 5vw;
  }
}

.f_gr {
  color: #45CE2B;
}

.f_blu {
  color: #1157FB;
}

.ttl {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.8rem;
  letter-spacing: 0.1;
  padding: 30px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ttl {
    font-size: 25px;
    padding: 10px 0;
  }
}
.ttl.slide-in_inner {
  display: inline-block;
}

h2 {
  font-size: 38px;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 25px;
  }
}

span[id] {
  display: block;
  height: 50px;
  margin-top: -50px;
  content: "";
}

.tb_spec {
  margin: 20px 0;
}
.tb_spec table {
  border-collapse: collapse;
}
.tb_spec tr {
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tb_spec tr {
    font-size: 14px;
  }
}
.tb_spec tr::after {
  content: "";
  position: absolute;
  background-color: #1157FB;
  width: 30px;
  height: 1px;
  left: 0;
  top: -2px;
}
.tb_spec tr:first-child {
  border-top: none;
}
.tb_spec tr:first-child::after {
  background-color: initial;
}
.tb_spec tr:last-child {
  border-bottom: none;
}
.tb_spec tr th {
  width: 20%;
  padding: 13px 20px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .tb_spec tr th {
    padding: 10px 0;
  }
}
.tb_spec tr td {
  width: 100%;
  padding: 13px 30px;
  line-height: 1.5rem;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .tb_spec tr td {
    padding: 10px 0 10px 10px;
  }
}

.btn_main_style {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.15rem;
  padding: 20px 90px;
  border-radius: 90px;
  background-color: #fff;
  box-shadow: 0px 8px 10px 0px rgba(17, 87, 251, 0.2392156863);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .btn_main_style {
    padding: 20px 110px;
  }
}
.btn_main_style::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  /*背景の形状*/
  width: 0;
  height: 100%;
  background-image: linear-gradient(90deg, #45CE2B, #1157FB);
  border-radius: 90px;
  /*アニメーションの指定*/
  transition: all 0.3s cubic-bezier(0.52, 0.03, 0.65, 0.99);
  opacity: 0; /*はじめは透過0*/
}
@media screen and (max-width: 768px) {
  .btn_main_style::after {
    background-color: #fff;
  }
}
.btn_main_style:hover {
  color: #fff;
  z-index: 1;
}
.btn_main_style:hover::after {
  width: 100%; /*横幅を伸ばす*/
  opacity: 1; /*不透明に*/
}

.fadein {
  animation-name: fadein;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slideup {
  transform: translateY(50px);
}

.slidedown {
  transform: translateY(-50px);
}

.slideright {
  transform: translateX(50px);
}

.slideleft {
  transform: translateX(-50px);
}

._fade_in_box {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
._fade_in_box.ready {
  opacity: 1;
  transform: translateY(0px);
}

header {
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}
header a img:hover {
  opacity: 0.8;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  header {
    padding: initial;
  }
}
@media screen and (max-width: 768px) {
  header {
    width: 100vw;
    height: 60px;
    padding: initial;
  }
}
@media screen and (max-width: 768px) {
  header .con_header {
    width: 100vw;
    display: flex;
    justify-content: space-between;
  }
}
header .con_header .header_logo {
  display: flex;
  padding: 15px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  header .con_header .header_logo {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  header .con_header .header_logo {
    padding: initial;
    padding: 5px;
  }
  header .con_header .header_logo.active {
    display: none;
    animation-name: fadeIn;
    animation-fill-mode: forwards;
    animation-duration: 0.4s;
  }
}
header .con_header .header_logo img {
  width: 250px;
  padding-left: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  header .con_header .header_logo img {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  header .con_header .header_logo img {
    width: auto;
    height: 100%;
    padding: initial;
  }
}
header .con_header .header_logo span {
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  header .con_header .header_logo span {
    display: none;
  }
}
header .hamburger {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 60px;
  height: 60px;
}
header .hamburger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  right: 15px;
  height: 1px;
  border-radius: 5px;
  background: #1157FB;
  width: 70%;
}
header .hamburger span:nth-of-type(1) {
  top: 18px;
}
header .hamburger span:nth-of-type(2) {
  top: 29px;
}
header .hamburger span:nth-of-type(3) {
  top: 40px;
}
header .hamburger.active {
  position: absolute;
  width: 70px;
  height: 70px;
  margin-top: 20px;
  right: 0;
}
header .hamburger.active span {
  background-color: #fff;
}
header .hamburger.active span:nth-of-type(1) {
  top: 20px;
  right: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
header .hamburger.active span:nth-of-type(3) {
  top: 33px;
  right: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}
header .header_menu {
  display: flex;
  text-align: center;
}
@media screen and (min-width: 1281px) {
  header .header_menu {
    padding-right: 50px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  header .header_menu {
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  header .header_menu {
    display: none;
  }
}
header .header_menu.active {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
}
@media screen and (max-width: 768px) {
  header .header_menu.active {
    display: block;
    position: fixed;
    background-color: #45CE2B;
    width: 100vw;
    height: 100vh;
    color: #fff;
    left: 0;
    z-index: -1;
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  header .header_menu .header_logo {
    width: 60vw;
    margin: 0 auto;
  }
  header .header_menu .header_logo img {
    width: 100%;
  }
}
header .header_menu li {
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  header .header_menu li {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  header .header_menu li {
    font-size: 18px;
  }
  header .header_menu li:nth-child(2) {
    margin-top: 20px;
  }
}
header .header_menu .con_menu a {
  padding: 20px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  header .header_menu .con_menu a {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 768px) {
  header .header_menu .con_menu a {
    padding: 10px 50px;
  }
}
header .header_menu .con_menu a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 8px;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #1157FB;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}
header .header_menu .con_menu a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}
header .header_menu .contact .nav_link {
  padding: 10px 50px;
  border-radius: 30px;
  border: 1px solid #45CE2B;
  color: #45CE2B;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  header .header_menu .contact .nav_link {
    padding: 8px 20px;
  }
}
header .header_menu .contact .nav_link::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  /*背景の形状*/
  width: 0;
  height: 100%;
  background-color: #45CE2B;
  border-radius: 90px;
  /*アニメーションの指定*/
  transition: all 0.3s cubic-bezier(0.52, 0.03, 0.65, 0.99);
  opacity: 0; /*はじめは透過0*/
}
header .header_menu .contact .nav_link:hover {
  color: #fff;
  z-index: 1;
}
header .header_menu .contact .nav_link:hover::after {
  width: 100%; /*横幅を伸ばす*/
  opacity: 1; /*不透明に*/
}
@media screen and (max-width: 768px) {
  header .header_menu .btn_contact {
    width: 80vw;
    background-color: #fff;
    border-radius: 25px;
    padding: 35px 140px 10px 20px;
    text-align: left;
    margin: 0 auto;
    margin-top: 20px;
  }
  header .header_menu .btn_contact button {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: #000;
  }
  header .header_menu .btn_contact button::before {
    position: absolute;
    content: "CONTACT";
    font-family: "Montserrat";
    font-weight: 600;
    color: #F5F5F5;
    font-size: 25px;
    letter-spacing: 0.1rem;
    z-index: 2;
    top: -25px;
  }
  header .header_menu .btn_contact button::after {
    content: "";
    mask-image: url("../img/pc/arrow_green.svg");
    mask-repeat: no-repeat;
    mask-size: cover;
    background-color: #1157FB;
    width: 10px;
    height: 16px;
    position: absolute;
    top: 5px;
    left: 105px;
    transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
  }
  header .header_menu .btn_contact:hover button::after {
    left: 110px;
  }
}

.header_shadow {
  box-shadow: 0px 8px 15px 0px rgba(112, 112, 112, 0.2);
}

.main_visual {
  width: 96vw;
  height: auto;
  margin: 0 auto;
  padding: 90px 0;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main_visual {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .main_visual {
    padding: 60px 5vw 0;
  }
}
.main_visual .box_photo {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  border-radius: 90px;
  position: relative;
}
.main_visual .box_photo img {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main_visual .box_photo {
    height: 50vw;
    border-radius: 60px;
  }
}
@media screen and (max-width: 768px) {
  .main_visual .box_photo {
    width: 100%;
    height: calc(80vh - 60px);
    border-radius: 40px;
  }
  .main_visual .box_photo img {
    width: 100%;
  }
}
.main_visual h1 {
  position: absolute;
  color: #fff;
  text-align: left;
  font-size: 60px;
  line-height: 75px;
  font-weight: 800;
  text-shadow: 0px 0px 10px rgba(112, 112, 112, 0.5);
  z-index: 2;
  left: 2vw;
  top: 30vh;
}
.main_visual h1 .txt_h1_eng {
  font-family: "Montserrat";
  font-size: 80px;
  letter-spacing: 0.25rem;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main_visual h1 {
    top: 25vh;
    font-size: 35px;
    line-height: 55px;
  }
}
@media screen and (max-width: 768px) {
  .main_visual h1 {
    font-size: 35px;
    line-height: 45px;
    top: initial;
    bottom: 30px;
  }
}
.main_visual.fadein::before {
  opacity: 10;
}
@media screen and (max-width: 768px) {
  .main_visual {
    width: 100%;
  }
  .main_visual::before {
    content: "";
    width: 100%;
    height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 3s;
  }
  .main_visual.fadein::before {
    opacity: 10;
  }
}
@media screen and (max-width: 768px) {
  .main_visual._child .box_photo {
    width: 100%;
    height: calc(40vh - 60px);
    border-radius: 40px;
  }
  .main_visual._child .box_photo img {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main_visual._child {
    align-items: center;
    position: relative;
    margin: auto 0;
  }
  .main_visual._child .txt_h1_eng {
    font-size: 40px;
    letter-spacing: 0.25rem;
  }
  .main_visual._child h1 {
    font-size: 30px;
    line-height: 45px;
    align-items: center;
    top: initial;
    bottom: initial;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_news {
    padding: 0 2vw;
  }
}
@media screen and (max-width: 768px) {
  .contents_news {
    padding: 0 2vw;
    margin-top: 50px;
  }
}
.contents_news h2 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .contents_news h2 {
    padding-left: 4vw;
  }
}
.contents_news h2::after {
  position: absolute;
  content: "NEWS";
  font-family: "Montserrat";
  color: #F5F5F5;
  font-weight: 600;
  font-size: 85px;
  letter-spacing: 0.5rem;
  z-index: -2;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_news h2::after {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contents_news h2::after {
    font-size: 50px;
  }
}
.contents_news .con_news_topic {
  margin: 30px 0 70px;
  padding: 60px 90px 40px;
  border-radius: 70px;
  box-shadow: 0px 8px 15px 0px rgba(112, 112, 112, 0.2);
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_news .con_news_topic {
    padding: 60px 30px 40px;
    border-radius: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contents_news .con_news_topic {
    margin: 10px 0 50px;
    border-radius: 40px;
    padding: 20px 20px 30px;
  }
}
.contents_news .con_news_topic li {
  padding-bottom: 15px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_news .con_news_topic li {
    font-size: 18px;
  }
}
.contents_news .con_news_topic a {
  position: relative;
}
.contents_news .con_news_topic a::after {
  content: url("../img/pc/arrow_green.svg");
  width: 15px;
  height: 15px;
  position: absolute;
  padding-left: 10px;
  padding-top: 2px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.contents_news .con_news_topic a::after img {
  width: 100%;
}
.contents_news .con_news_topic a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  color: #45CE2B;
}
.contents_news .con_news_topic a:hover::after {
  padding-left: 15px;
}
.contents_news .con_news_topic .ttl_date {
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .contents_news .con_news_topic .ttl_date {
    display: block;
    margin-bottom: -5px;
  }
}
.contents_news .con_news_topic .btn_all_news {
  font-size: 20px;
  text-align: right;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_news .con_news_topic .btn_all_news {
    font-size: 18px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .contents_news .con_news_topic .btn_all_news {
    font-size: 16px;
    margin: -5px 25px 0 0;
  }
}

.contents_mission {
  width: 96vw;
  margin: 0 auto;
  background-color: rgba(17, 87, 251, 0.05);
  border-radius: 90px;
  padding-bottom: 85px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_mission {
    border-radius: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contents_mission {
    border-radius: 40px;
    padding-bottom: 45px;
  }
}
.contents_mission h2 {
  position: relative;
  z-index: 3;
  padding-top: 70px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_mission h2 {
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contents_mission h2 {
    padding-left: 4vw;
    padding-top: 30px;
  }
}
.contents_mission h2::after {
  position: absolute;
  content: "MISSION";
  font-family: "Montserrat";
  font-weight: 600;
  color: #FFF;
  font-size: 85px;
  letter-spacing: 0.5rem;
  z-index: -1;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_mission h2::after {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contents_mission h2::after {
    font-size: 50px;
    left: 8vw;
  }
}
.contents_mission .con_mission_inner {
  display: flex;
  padding: 50px 0;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_mission .con_mission_inner {
    padding: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contents_mission .con_mission_inner {
    flex-direction: column-reverse;
    padding: 50px 4vw;
  }
}
.contents_mission .con_mission_inner .con_left {
  width: 50%;
  text-align: right;
  font-size: 30px;
  line-height: 2.5rem;
  font-weight: 600;
  margin: auto 0;
  margin-right: 25px;
}
.contents_mission .con_mission_inner .con_left p {
  padding-bottom: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_mission .con_mission_inner .con_left {
    font-size: 25px;
    line-height: 35px;
  }
}
@media screen and (max-width: 768px) {
  .contents_mission .con_mission_inner .con_left {
    margin: 0 auto;
  }
  .contents_mission .con_mission_inner .con_left p {
    font-size: 20px;
    text-align: center;
  }
  .contents_mission .con_mission_inner .con_left .nav_link {
    display: block;
    margin: 0 auto;
  }
  .contents_mission .con_mission_inner .con_left .btn_main_style {
    display: block;
    margin: 0 auto;
    width: 90%;
    padding: 15px 0;
    text-align: center;
  }
}
.contents_mission .con_mission_inner .con_right {
  width: 50%;
}
.contents_mission .con_mission_inner .con_right img {
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .contents_mission .con_mission_inner .con_left, .contents_mission .con_mission_inner .con_right {
    width: 100%;
  }
}
.contents_mission .con_advance {
  width: 90%;
  background-color: rgba(17, 87, 251, 0.05);
  mix-blend-mode: multiply;
  display: flex;
  justify-content: center;
}
.contents_mission .con_advance.ready {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contents_mission .con_advance {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }
}
.contents_mission .con_advance .img_3up {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .contents_mission .con_advance .img_3up {
    width: 180px;
    margin: 0 auto;
  }
}
.contents_mission .con_advance .img_3up img {
  width: 100%;
}
.contents_mission .con_advance .txt_3up {
  margin: auto 0;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .contents_mission .con_advance .txt_3up {
    padding: initial;
  }
}

.contents_business {
  padding: 100px 0;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_business {
    padding: 100px 2vw;
  }
}
@media screen and (max-width: 768px) {
  .contents_business {
    padding: 50px 5vw;
  }
}
.contents_business h2 {
  position: relative;
  z-index: 3;
  padding-bottom: 40px;
}
.contents_business h2::after {
  position: absolute;
  content: "BUSINESS";
  font-family: "Montserrat";
  font-weight: 600;
  color: #F5F5F5;
  font-size: 85px;
  letter-spacing: 0.5rem;
  z-index: 2;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_business h2::after {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .contents_business h2::after {
    font-size: 50px;
    left: 8vw;
    z-index: -1;
  }
}
.contents_business .con_business_inner .top_menu_business {
  border-radius: 90px;
  background-color: #fff;
  box-shadow: 0px 8px 10px 0px rgba(17, 87, 251, 0.2392156863);
  transition: all 0.3s cubic-bezier(0.52, 0.03, 0.65, 0.99);
  display: flex;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_business .con_business_inner .top_menu_business {
    border-radius: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contents_business .con_business_inner .top_menu_business {
    border-radius: 40px;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.contents_business .con_business_inner .top_menu_business .box_photo {
  width: 50%;
  overflow: hidden;
  border-radius: 70px 0 0 70px;
}
.contents_business .con_business_inner .top_menu_business .box_photo img {
  width: 100%;
  transition: all 0.3s cubic-bezier(0.52, 0.03, 0.65, 0.99);
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_business .con_business_inner .top_menu_business .box_photo {
    border-radius: 50px 0 0 50px;
    height: 30vh;
  }
}
@media screen and (max-width: 768px) {
  .contents_business .con_business_inner .top_menu_business .box_photo {
    border-radius: 40px 40px 0 0;
  }
  .contents_business .con_business_inner .top_menu_business .box_photo img {
    width: 100%;
  }
}
.contents_business .con_business_inner .top_menu_business .box_menu {
  width: 50%;
  margin: auto 0;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .contents_business .con_business_inner .top_menu_business .box_menu {
    padding: 10px 35px 20px;
  }
}
.contents_business .con_business_inner .top_menu_business .box_menu .num_business {
  font-family: "Montserrat";
  font-size: 85px;
  font-weight: 600;
  color: #F5F5F5;
  padding-bottom: 40px;
  letter-spacing: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_business .con_business_inner .top_menu_business .box_menu .num_business {
    font-size: 60px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contents_business .con_business_inner .top_menu_business .box_menu .num_business {
    font-size: 40px;
    padding-bottom: 10px;
    letter-spacing: 0.1rem;
  }
}
.contents_business .con_business_inner .top_menu_business .box_menu .ttl_business {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .contents_business .con_business_inner .top_menu_business .box_menu .ttl_business {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .contents_business .con_business_inner .top_menu_business .box_menu .ttl_business {
    font-size: 22px;
  }
}
.contents_business .con_business_inner .top_menu_business .box_menu .ttl_business::after {
  content: "";
  background-image: url("../img/pc/arrow_green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 30px;
  position: absolute;
  margin-left: 10px;
  margin-top: -2px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
@media screen and (max-width: 768px) {
  .contents_business .con_business_inner .top_menu_business .box_menu .txt_business {
    line-height: 1.25rem;
  }
}
.contents_business .con_business_inner .top_menu_business:hover {
  box-shadow: 0px 8px 10px 0px rgba(69, 206, 43, 0.2392156863);
}
.contents_business .con_business_inner .top_menu_business:hover img {
  transform: scale(1.1);
}
.contents_business .con_business_inner .top_menu_business:hover .ttl_business::after {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .contents_business .con_business_inner .top_menu_business .box_photo, .contents_business .con_business_inner .top_menu_business .box_menu {
    width: 100%;
    max-width: 100%;
  }
}

.con_lemontsale {
  text-align: center;
  font-weight: 600;
  font-size: 25px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_lemontsale {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .con_lemontsale p {
    font-size: 20px;
    padding: 25px 0;
  }
}
.con_lemontsale img {
  width: 100%;
}
.con_lemontsale a:hover img {
  opacity: 0.8;
}

.company_story_con {
  text-align: center;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .company_story_con {
    padding: 50px 0;
  }
  .company_story_con h2 {
    padding: 30px 5vw;
    line-height: 2rem;
  }
}
.company_story_con .logo_koushin_genki {
  padding-bottom: 60px;
}
.company_story_con .logo_koushin_genki img {
  width: 600px;
}
@media screen and (max-width: 768px) {
  .company_story_con .logo_koushin_genki {
    padding: 50px 5vw;
  }
  .company_story_con .logo_koushin_genki img {
    width: 100%;
  }
}
.company_story_con .story_img_photo {
  display: block;
  position: relative;
  margin: 40px 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
}
.company_story_con .story_img_photo img {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.company_story_con h3 {
  font-size: 35px;
  font-weight: 600;
  padding: 30px 0 30px;
}
@media screen and (max-width: 768px) {
  .company_story_con h3 {
    font-size: 25px;
  }
}
.company_story_con .company_story_txt {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .company_story_con .company_story_txt {
    padding: 0 5vw;
    font-size: 14px;
    line-height: 1.5rem;
  }
}
.company_story_con .company_story_name {
  display: block;
  text-align: center;
  padding: 50px 0;
}
.company_story_con .company_story_name .com_story_name_txt {
  text-align: left;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .company_story_con .company_story_name .com_story_name_txt {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
  }
}
.company_story_con .company_story_name .com_story_name_txt .name_bold {
  font-weight: 600;
  font-size: 28px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .company_story_con .company_story_name .com_story_name_txt .name_bold {
    margin: initial;
    margin-left: 15px;
  }
}
.company_story_con .company_story_name .com_story_name_txt .f_blu {
  font-weight: 600;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .company_story_con .company_story_name .com_story_name_txt .f_blu {
    display: block;
  }
}
.company_story_con .con_company_business_detail {
  display: flex;
  flex-direction: row;
  margin-bottom: 80px;
}
.company_story_con .con_company_business_detail .detail_txt {
  display: flex;
  flex-direction: column;
  width: 55%;
  text-align: left;
  font-size: 16px;
  padding-top: 20px;
  padding-right: 20px;
}
.company_story_con .con_company_business_detail .detail_txt .nav_link {
  position: relative;
  width: auto;
}
.company_story_con .con_company_business_detail .detail_txt button {
  display: block;
  margin-top: 25px;
  font-size: 20px;
  padding-left: 70px;
}
@media screen and (max-width: 768px) {
  .company_story_con .con_company_business_detail .detail_txt button {
    font-size: 16px;
  }
}
.company_story_con .con_company_business_detail .detail_txt button::before {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #1157FB;
  width: 16px;
  height: 26px;
  position: absolute;
  top: 20px;
  right: 65px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.company_story_con .con_company_business_detail .detail_txt button:hover::before {
  right: 60px;
  background-color: #fff;
}
.company_story_con .con_company_business_detail .detail_txt h4 {
  font-size: 25px;
  padding-bottom: 10px;
}
.company_story_con .con_company_business_detail .detail_photo {
  width: 45%;
}
.company_story_con .con_company_business_detail .detail_photo img {
  width: 100%;
  border-radius: 30px;
}
.company_story_con .con_company_business_detail:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .company_story_con .con_company_business_detail:nth-child(2n) {
    flex-direction: column-reverse;
  }
}
.company_story_con .con_company_business_detail:nth-child(2n) .detail_txt {
  padding: initial;
  padding-top: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .company_story_con .con_company_business_detail:nth-child(2n) .detail_txt {
    padding: initial;
  }
}
@media screen and (max-width: 768px) {
  .company_story_con .con_company_business_detail {
    flex-direction: column-reverse;
    padding: 0 4vw;
  }
  .company_story_con .con_company_business_detail .detail_txt, .company_story_con .con_company_business_detail .detail_photo {
    width: 100%;
    padding: initial;
  }
  .company_story_con .con_company_business_detail .detail_txt h4, .company_story_con .con_company_business_detail .detail_photo h4 {
    text-align: center;
    line-height: 2rem;
    padding: 10px 0;
  }
  .company_story_con .con_company_business_detail .detail_txt .nav_link, .company_story_con .con_company_business_detail .detail_photo .nav_link {
    margin: 0 auto;
  }
}

.con_info_company {
  width: 96vw;
  margin: 0 auto;
  background-color: rgba(17, 87, 251, 0.05);
  border-radius: 90px;
  text-align: center;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .con_info_company {
    padding: 0 4vw 50px;
    border-radius: 40px;
  }
}
.con_info_company table {
  margin: 0 auto;
  width: 800px;
}
@media screen and (max-width: 768px) {
  .con_info_company table {
    width: 100%;
  }
}
.con_info_company h4 {
  position: relative;
  z-index: 3;
}
.con_info_company h4::after {
  position: absolute;
  content: "COMPANY";
  font-family: "Montserrat";
  font-weight: 600;
  color: #FFF;
  font-size: 85px;
  letter-spacing: 0.5rem;
  z-index: -1;
  left: 20vw;
}
@media screen and (max-width: 768px) {
  .con_info_company h4::after {
    font-size: 50px;
    letter-spacing: 0.1rem;
    left: initial;
    right: 0;
    top: 20px;
  }
}

.con_info_company h4,
.con_info_company_access h4 {
  font-size: 35px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .con_info_company h4,
  .con_info_company_access h4 {
    font-size: 25px;
    text-align: left;
    padding: 50px 0 10px;
  }
}

.con_info_company_access {
  padding: 80px 0;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_info_company_access {
    padding: 80px 2vw;
  }
}
@media screen and (max-width: 768px) {
  .con_info_company_access {
    width: 100%;
    padding: 0 5vw 60px;
  }
}
.con_info_company_access h4 {
  position: relative;
  z-index: 3;
}
.con_info_company_access h4::after {
  position: absolute;
  content: "ACCESS";
  font-family: "Montserrat";
  font-weight: 600;
  color: #f5f5f5;
  font-size: 85px;
  letter-spacing: 0.5rem;
  z-index: -1;
  left: 0;
}
@media screen and (max-width: 768px) {
  .con_info_company_access h4::after {
    font-size: 50px;
    left: initial;
    right: 0;
  }
}
.con_info_company_access .con_access_txt {
  padding-bottom: 35px;
}
.con_info_company_access iframe {
  width: 100%;
  height: 350px;
  border-radius: 60px;
}

.trading_fv.main_visual .box_photo {
  display: block;
}
.trading_fv.main_visual .box_photo img {
  display: inline-block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.business_page_detail {
  text-align: center;
  line-height: 2rem;
}
.business_page_detail h2 {
  padding: 70px 0 90px;
}
@media screen and (max-width: 768px) {
  .business_page_detail h2 {
    padding: 50px 0;
  }
}
.business_page_detail .detail_box {
  width: 100%;
  display: flex;
  padding: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .business_page_detail .detail_box {
    flex-direction: column;
    padding: 0 5vw 30px 0;
  }
}
.business_page_detail .detail_box .detail_box_picture {
  width: 45%;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}
.business_page_detail .detail_box .detail_box_picture img {
  width: 100%;
}
.business_page_detail .detail_box .detail_box_txt {
  width: 45%;
  margin: auto 0;
  text-align: left;
  padding-left: 35px;
}
@media screen and (max-width: 768px) {
  .business_page_detail .detail_box .detail_box_txt {
    line-height: 1.5rem;
    padding-top: 15px;
  }
}
.business_page_detail .detail_box .detail_box_txt h3 {
  color: #45CE2B;
  font-size: 30px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .business_page_detail .detail_box .detail_box_picture, .business_page_detail .detail_box .detail_box_txt {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .business_page_detail .business_page_detail_txt {
    padding: 0 5vw;
    font-size: 16px;
  }
}

.trading_achievement {
  border-radius: 70px;
  box-shadow: 0px 8px 15px 0px rgba(112, 112, 112, 0.2);
  margin-top: 70px;
  padding: 70px 150px;
}
@media screen and (max-width: 768px) {
  .trading_achievement {
    width: 90vw;
    margin: 70px auto 0;
    padding: 20px 5vw 50px;
    border-radius: 40px;
  }
}
.trading_achievement h3 {
  text-align: center;
  font-size: 35px;
  color: #fff;
  background-color: #45CE2B;
  width: 25vw;
  margin: 0 auto;
  padding: 20px 0px;
  border-radius: 80px;
}
@media screen and (max-width: 768px) {
  .trading_achievement h3 {
    width: 100%;
    font-size: 25px;
    padding: 15px 0;
  }
}
.trading_achievement .trade_achieve_con {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .trading_achievement .trade_achieve_con {
    flex-direction: column;
  }
}
.trading_achievement .trade_achieve_con .achieve_box {
  width: 45%;
  position: relative;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .trading_achievement .trade_achieve_con .achieve_box {
    padding-top: 45px;
  }
}
.trading_achievement .trade_achieve_con .achieve_box span {
  position: absolute;
  font-family: "Montserrat";
  font-weight: 600;
  color: #f5f5f5;
  font-size: 85px;
  letter-spacing: 0.5rem;
  z-index: -1;
  left: 0;
  top: 60px;
}
@media screen and (max-width: 768px) {
  .trading_achievement .trade_achieve_con .achieve_box span {
    top: 40px;
  }
}
.trading_achievement .trade_achieve_con .achieve_box .f_gr {
  text-align: center;
  font-size: 25px;
  line-height: 1.75rem;
  padding-bottom: 15px;
}
.trading_achievement .trade_achieve_con .achieve_box .thum_achieve {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 15px;
}
.trading_achievement .trade_achieve_con .achieve_box .thum_achieve img {
  width: 100%;
}
.trading_achievement .trade_achieve_con .achieve_box .txt_archieve {
  font-size: 18px;
  line-height: 1.5rem;
}
@media screen and (max-width: 768px) {
  .trading_achievement .trade_achieve_con .achieve_box .txt_archieve {
    font-size: 16px;
    letter-spacing: 0.01rem;
  }
}
.trading_achievement .trade_achieve_con .achieve_box:first-child {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .trading_achievement .trade_achieve_con .achieve_box {
    width: 100%;
  }
}

.con_next_vision {
  width: 96vw;
  margin: 80px auto;
  background-color: rgba(17, 87, 251, 0.05);
  border-radius: 90px;
  text-align: center;
  padding: 70px 0;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_next_vision {
    padding: 70px 2vw;
  }
}
@media screen and (max-width: 768px) {
  .con_next_vision {
    margin: 50px auto;
    border-radius: 40px;
    padding: 50px 5vw;
  }
}
.con_next_vision h4 {
  color: #1157FB;
  font-family: "Montserrat";
  font-size: 60px;
  padding: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .con_next_vision h4 {
    font-size: 40px;
    font-weight: bold;
  }
}
.con_next_vision .vision_txt {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .con_next_vision .vision_txt {
    font-size: 16px;
    text-align: left;
  }
}
.con_next_vision .vision_img {
  width: 850px;
  height: 200px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .con_next_vision .vision_img {
    width: 100%;
    height: 180px;
    margin: 20px auto;
    border-radius: 30px;
  }
}
.con_next_vision .vision_img img {
  width: 100%;
}
.con_next_vision h5 {
  color: #1157FB;
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .con_next_vision h5 {
    font-size: 20px;
  }
}
.con_next_vision .nav_link {
  position: relative;
  display: inline-block;
}
.con_next_vision button {
  display: block;
  margin: 25px auto 0;
  font-size: 20px;
  padding: 35px 90px 35px 70px;
}
@media screen and (max-width: 768px) {
  .con_next_vision button {
    padding: 15px 0;
    width: 80vw;
  }
}
.con_next_vision button::before {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #1157FB;
  width: 16px;
  height: 26px;
  position: absolute;
  top: 34px;
  right: 65px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
@media screen and (max-width: 768px) {
  .con_next_vision button::before {
    top: 14px;
  }
}
.con_next_vision button:hover::before {
  right: 60px;
  background-color: #fff;
}

.business_page_detail._reuse .f_gr {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box {
    margin: 30px 0;
    padding: 0 5vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .business_page_detail._reuse .detail_box .detail_box_picture {
    position: relative;
    overflow: hidden;
  }
  .business_page_detail._reuse .detail_box .detail_box_picture img {
    height: 100%;
    width: auto;
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box .detail_box_picture {
    border-radius: 30px;
  }
}
.business_page_detail._reuse .detail_box .detail_box_txt {
  position: relative;
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .business_page_detail._reuse .detail_box .detail_box_txt {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box .detail_box_txt {
    width: 100%;
    padding: initial;
  }
}
.business_page_detail._reuse .detail_box .detail_box_txt span {
  display: block;
  font-family: "Montserrat";
  font-weight: 600;
  color: #f5f5f5;
  font-size: 85px;
  letter-spacing: 0.5rem;
  z-index: -1;
  left: 0;
  top: 0px;
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box .detail_box_txt span {
    font-size: 60px;
    margin-top: 30px;
  }
}
.business_page_detail._reuse .detail_box .detail_box_txt h3 {
  color: #45CE2B;
  font-size: 30px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box .detail_box_txt h3 {
    font-size: 25px;
    padding: 25px 0 20px;
  }
}
.business_page_detail._reuse .detail_box:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box:nth-child(2n) {
    flex-direction: column;
  }
}
.business_page_detail._reuse .detail_box:nth-child(2n) .detail_box_picture {
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box:nth-child(2n) .detail_box_picture {
    border-radius: 30px;
  }
}
.business_page_detail._reuse .detail_box:nth-child(2n) .detail_box_txt {
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box:nth-child(2n) .detail_box_txt {
    padding: initial;
  }
}
.business_page_detail._reuse .detail_box:nth-child(2n) .detail_box_txt span {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box:nth-child(2n) .detail_box_txt span {
    text-align: left;
  }
}
.business_page_detail._reuse .detail_box:nth-child(2n) .detail_box_txt h3 {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .business_page_detail._reuse .detail_box:nth-child(2n) .detail_box_txt h3 {
    text-align: left;
  }
}

.reuse_box .swiper-wrapper {
  transition-timing-function: linear;
}
.reuse_box .swiper {
  max-width: 100%;
  margin: 0 auto;
}
.reuse_box .swiper .swiper-slide {
  width: 23vw !important;
  height: 200px !important;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reuse_box .swiper .swiper-slide {
    width: 80vw !important;
    height: 150px !important;
  }
}
.reuse_box .swiper .swiper-slide img {
  display: inline;
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .reuse_box .swiper .swiper-slide img {
    height: 100%;
    width: auto;
  }
}
.reuse_box ._txt {
  padding: 45px 0;
}
@media screen and (max-width: 768px) {
  .reuse_box ._txt {
    padding: 30px 5vw;
    line-height: 1.5rem;
  }
}

.reuse_partner_con {
  width: 100%;
  background-color: #45CE2B;
  color: #fff;
  align-items: center;
  border-radius: 70px;
  display: flex;
  margin-top: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .reuse_partner_con {
    width: 96vw;
    margin: 0 auto;
    border-radius: 50px;
    padding: initial;
  }
}
@media screen and (max-width: 768px) {
  .reuse_partner_con {
    flex-direction: column;
    border-radius: 40px;
    width: 96vw;
    margin: 50px auto;
  }
}
@media screen and (max-width: 768px) {
  .reuse_partner_con.basic_width {
    padding: initial;
  }
}
.reuse_partner_con ._img {
  width: 50%;
  overflow: hidden;
  border-radius: 70px 0 0 70px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .reuse_partner_con ._img {
    border-radius: 50px 0 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .reuse_partner_con ._img {
    border-radius: 30px 30px 0 0;
  }
}
.reuse_partner_con ._img img {
  width: 100%;
}
.reuse_partner_con ._txt {
  width: 50%;
  padding: 0 30px;
  line-height: 1.75rem;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .reuse_partner_con ._txt {
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .reuse_partner_con ._txt {
    line-height: 1.25rem;
    padding-bottom: 35px;
  }
}
.reuse_partner_con ._txt h4 {
  font-size: 35px;
  padding: 0 0 50px 0;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .reuse_partner_con ._txt h4 {
    font-size: 30px;
    padding: 0 0 15px 0;
  }
}
@media screen and (max-width: 768px) {
  .reuse_partner_con ._txt h4 {
    font-size: 25px;
    padding: 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .reuse_partner_con ._img, .reuse_partner_con ._txt {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_next_vision._reuse .vision_img {
    position: relative;
  }
  .con_next_vision._reuse .vision_img img {
    position: absolute;
    bottom: -150px;
    left: 0;
  }
}

.business_page_detail._fruits .detail_box .detail_box_txt h3 {
  line-height: 45px;
}
@media screen and (max-width: 768px) {
  .business_page_detail._fruits .detail_box .detail_box_txt h3 {
    font-size: 25px;
    line-height: 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .business_page_detail._fruits .detail_box .detail_box_txt {
    line-height: 1.5rem;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .business_page_detail._fruits .detail_box .detail_box_txt {
    padding: initial;
    padding-left: 5vw;
    line-height: 1.25rem;
  }
}
.business_page_detail._fruits .detail_box:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .business_page_detail._fruits .detail_box:nth-child(2n) {
    flex-direction: column;
    padding-right: 0;
    padding-left: 5vw;
  }
}
.business_page_detail._fruits .detail_box:nth-child(2n) .detail_box_picture {
  border-radius: 40px 0 0 40px;
}
.business_page_detail._fruits .detail_box:nth-child(2n) .detail_box_txt {
  padding-right: 30px;
}
.business_page_detail._fruits .detail_box:nth-child(2n) .detail_box_txt span {
  text-align: right;
}
.business_page_detail._fruits .detail_box:nth-child(2n) .detail_box_txt h3 {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .business_page_detail._fruits .detail_box:nth-child(2n) .detail_box_txt {
    padding: initial;
    padding-right: 5vw;
  }
  .business_page_detail._fruits .detail_box:nth-child(2n) .detail_box_txt h3 {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .business_page_detail._fruits .detail_box:nth-child(3n) .detail_box_txt {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .business_page_detail._fruits .detail_box:nth-child(3n) {
    padding-bottom: initial;
  }
}

@media screen and (max-width: 768px) {
  .con_lemontsale._fruits {
    background-color: rgba(69, 206, 43, 0.1);
    padding-bottom: 30px;
    margin-bottom: 50px;
  }
}

.con_next_vision._fruits ._flex {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .con_next_vision._fruits ._flex {
    flex-direction: column;
  }
}
.con_next_vision._fruits ._flex ._flex_box {
  width: 45%;
  padding: 0 20px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_next_vision._fruits ._flex ._flex_box {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .con_next_vision._fruits ._flex ._flex_box {
    width: 100%;
    padding: initial;
  }
}
.con_next_vision._fruits ._flex ._flex_box .vision_img {
  width: 100%;
}
.con_next_vision._fruits ._flex ._flex_box .vision_img img {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_next_vision._fruits ._flex ._flex_box .vision_img {
    border-radius: 40px;
    position: relative;
  }
  .con_next_vision._fruits ._flex ._flex_box .vision_img img {
    height: 100%;
    width: auto;
    position: absolute;
    left: -10%;
  }
}
.con_next_vision._fruits ._flex ._flex_box .vision_txt {
  padding: 0 30px 60px;
  line-height: 1.75rem;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_next_vision._fruits ._flex ._flex_box .vision_txt {
    padding: 0 15px 60px;
  }
  .con_next_vision._fruits ._flex ._flex_box .vision_txt h5 {
    font-size: 25px;
    line-height: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .con_next_vision._fruits ._flex ._flex_box .vision_txt {
    padding: initial;
    margin-bottom: 30px;
  }
  .con_next_vision._fruits ._flex ._flex_box .vision_txt h5 {
    text-align: center;
    margin-bottom: 20px;
  }
}

.sns_block {
  position: relative;
}
.sns_block ul {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}
.sns_block ul li {
  width: 35px;
  height: 35px;
  border-radius: 18px;
  opacity: 0.8;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .sns_block ul li {
    width: 30px;
    height: 30px;
    border-radius: 15px;
  }
}
.sns_block ul .tiktok {
  position: relative;
  background-color: #111;
}
.sns_block ul .tiktok::before {
  content: "";
  position: absolute;
  background-image: url("../img/tiktok.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 25px;
  right: 10px;
  top: 8px;
}
@media screen and (max-width: 768px) {
  .sns_block ul .tiktok::before {
    width: 15px;
    height: 25px;
    right: 8px;
    top: 6px;
  }
}
.sns_block ul .instagram {
  position: relative;
  background: linear-gradient(45deg, rgb(131, 58, 180) 0%, rgb(253, 29, 29) 50%, rgb(252, 176, 69) 100%);
}
.sns_block ul .instagram::before {
  content: "";
  position: absolute;
  background-image: url("../img/instagram.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  right: 6px;
  top: 7px;
}
@media screen and (max-width: 768px) {
  .sns_block ul .instagram::before {
    width: 19px;
    height: 19px;
    right: 5px;
    top: 6px;
  }
}
.sns_block ul .whatsapp {
  position: relative;
  background-color: #25D366;
}
.sns_block ul .whatsapp::before {
  content: "";
  position: absolute;
  background-image: url("../img/whatsapp.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  right: 6px;
  top: 7px;
}
@media screen and (max-width: 768px) {
  .sns_block ul .whatsapp::before {
    width: 19px;
    height: 19px;
    right: 5px;
    top: 5px;
  }
}
.sns_block ul .facebook {
  position: relative;
  background-color: #1877f2;
}
.sns_block ul .facebook::before {
  content: "";
  position: absolute;
  background-image: url("../img/facebook.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  right: 0px;
  top: 6px;
}
@media screen and (max-width: 768px) {
  .sns_block ul .facebook::before {
    width: 25px;
    height: 25px;
    right: -3px;
    top: 6px;
  }
}
.sns_block ul .line {
  position: relative;
  background-color: #06c755;
}
.sns_block ul .line::before {
  content: "";
  position: absolute;
  background-image: url("../img/line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  right: 6px;
  top: 7px;
}
@media screen and (max-width: 768px) {
  .sns_block ul .line::before {
    width: 20px;
    height: 20px;
    right: 5px;
    top: 6px;
  }
}
.sns_block ul a:hover {
  opacity: 0.6;
}

footer {
  background-color: #1157FB;
  color: #fff;
  padding: 50px 0;
  text-align: center;
  border-radius: 90px 90px 0 0;
}

.con_footer {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_footer {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .con_footer {
    display: block;
  }
}
.con_footer .left {
  width: 41%;
  text-align: left;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_footer .left {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .con_footer .left {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.con_footer .left .company {
  font-weight: 800;
  font-size: 20px;
  padding-top: 20px;
}
.con_footer .left .info_link {
  font-size: 14px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .con_footer .left .info_link {
    text-align: center;
    padding-top: 40px;
  }
}
.con_footer .left a {
  position: relative;
}
.con_footer .left a::after {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #fff;
  width: 10px;
  height: 16px;
  position: absolute;
  top: 3px;
  left: 130px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.con_footer .left a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  color: #fff;
}
.con_footer .left a:hover::after {
  left: 133px;
}
.con_footer .footer_menu_list {
  width: 25%;
  text-align: left;
  font-size: 14px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_footer .footer_menu_list {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .con_footer .footer_menu_list {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
.con_footer .footer_menu_list li {
  padding-bottom: 10px;
}
.con_footer .footer_menu_list a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  color: #fff;
}
.con_footer .right {
  width: 33%;
  text-align: right;
  margin-top: 70px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_footer .right {
    width: 100%;
    text-align: center;
    margin: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .con_footer .right {
    display: block;
    width: 100%;
    margin: 60px 0 50px;
    text-align: center;
  }
}
.con_footer .right .btn_contact {
  background-color: #fff;
  border-radius: 35px;
  padding: 70px 170px 50px 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .con_footer .right .btn_contact {
    border-radius: 30px;
    padding: 50px 170px 30px 20px;
  }
}
.con_footer .right .btn_contact button {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #000;
}
.con_footer .right .btn_contact button::before {
  position: absolute;
  content: "CONTACT";
  font-family: "Montserrat";
  font-weight: 600;
  color: #F5F5F5;
  font-size: 40px;
  letter-spacing: 0.1rem;
  z-index: 2;
  top: -35px;
}
@media screen and (max-width: 768px) {
  .con_footer .right .btn_contact button::before {
    font-size: 30px;
    top: -25px;
  }
}
.con_footer .right .btn_contact button::after {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #1157FB;
  width: 10px;
  height: 16px;
  position: absolute;
  top: 5px;
  left: 105px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.con_footer .right .btn_contact:hover button::after {
  left: 110px;
}

.copyright {
  font-size: 12px;
  padding-top: 30px;
}

.con_contact {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .con_contact {
    width: 90vw;
    max-width: 90vw;
    padding: 30px 0 80px;
  }
}
.con_contact.confirm label {
  justify-content: flex-start;
  font-weight: 400;
}
.con_contact.confirm .form_ttl {
  margin-right: 30px;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .con_contact.confirm .form_ttl {
    margin-top: 5px;
    display: block;
    width: 100%;
  }
}
.con_contact.thanks {
  padding-top: 25vh;
  text-align: center;
}
.con_contact.thanks h1 {
  margin-top: 50px;
  line-height: 2.5rem;
}
.con_contact.thanks .thx_txt {
  font-size: 18px;
  line-height: 2.5rem;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .con_contact.thanks .thx_txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .con_contact.thanks .btn_main_style {
    padding: 20px 60px;
  }
}

.wpcf7-form {
  text-align: left;
  font-weight: 400;
}
.wpcf7-form table {
  width: 100%;
  margin: 0 auto;
}
.wpcf7-form table td p, .wpcf7-form table th p {
  margin: 7px 0;
}
@media screen and (max-width: 768px) {
  .wpcf7-form table td, .wpcf7-form table th {
    display: block;
    text-align: left;
    width: 100%;
  }
  .wpcf7-form table td p, .wpcf7-form table th p {
    margin: 0;
  }
}
.wpcf7-form table th {
  position: relative;
  font-size: 16px;
  width: 20%;
  padding-left: 45px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .wpcf7-form table th {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form table th {
    padding: 0;
    width: 100%;
    margin-top: 40px;
  }
}
.wpcf7-form table td {
  width: 80%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .wpcf7-form table td {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form table td {
    width: 100%;
  }
}
.wpcf7-form table td p span {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .wpcf7-form table td p span {
    width: 100%;
  }
}
.wpcf7-form .con_btn_form {
  text-align: center;
  margin: 15px 0;
  display: flex;
  justify-content: center;
}
.wpcf7-form .wpcf7-response-output {
  border: none !important;
  text-align: center;
  font-size: 14px;
  color: #dc3232;
}
.wpcf7-form .required::before {
  position: absolute;
  content: "必須";
  color: #FFF;
  font-size: 13px;
  padding: 3px 5px;
  background-color: #45CE2B;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .wpcf7-form .required::before {
    padding: 2px 5px;
    top: -27px;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form input {
    width: 100%;
    text-align: left;
    margin: 0;
  }
}
.wpcf7-form textarea {
  height: 200px;
  line-height: 1.5rem;
}
.wpcf7-form input, .wpcf7-form textarea {
  width: calc(100% - 150px);
  text-align: left;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .wpcf7-form input, .wpcf7-form textarea {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form input, .wpcf7-form textarea {
    width: 100%;
    margin-top: 10px;
  }
}
.wpcf7-form input[type=submit], .wpcf7-form input[type=button] {
  width: initial;
  text-align: initial;
  background-color: initial;
  padding: initial;
  border-radius: initial;
  border: initial;
  font-size: initial;
  font-weight: initial;
  margin: initial;
  margin: 15px auto;
  font-size: 18px;
  font-weight: bold;
  width: 300px;
  padding: 20px 80px;
  color: #45CE2B;
  border: 0.5px solid #45CE2B;
  position: relative;
  text-align: center;
}
.wpcf7-form input[type=submit]:hover, .wpcf7-form input[type=button]:hover {
  color: #fff;
  background-color: #45CE2B;
}
.wpcf7-form input[type=checkbox] {
  justify-content: center;
  width: 15px;
  margin-right: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wpcf7-form input[type=checkbox] {
    margin: initial;
    padding: 10px;
  }
}
.wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label:after { /*チェックアイコン*/
  border: none;
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
  height: 11px;
  left: -30px;
  top: 5px;
  margin: 0 auto;
  transform: rotate(45deg);
  width: 7px;
  opacity: 1;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
    left: -15px;
    top: 7px;
  }
}
.wpcf7-form ::placeholder {
  font-size: 14px;
  font-weight: normal;
  color: #ccc;
}
.wpcf7-form .wpcf7-not-valid-tip {
  width: calc(100% - 150px);
  font-size: 14px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .wpcf7-form .wpcf7-not-valid-tip {
    margin: initial;
  }
}
.wpcf7-form .wpcf7-spinner {
  display: none;
}
.wpcf7-form ._contact_confirm tr {
  border-bottom: 1px solid #1157FB;
}
.wpcf7-form ._contact_confirm tr:last-child {
  border: none;
}
.wpcf7-form ._contact_confirm td p {
  font-size: 16px;
}
.wpcf7-form ._contact_confirm .required::before {
  top: 28px;
}
.wpcf7-form ._contact_confirm th p, .wpcf7-form ._contact_confirm td p {
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .wrap_checkbox {
    padding: 30px 0;
  }
}
.wrap_checkbox label {
  justify-content: center;
}
.wrap_checkbox .wpcf7-list-item-label {
  width: initial;
  position: relative;
}

.wrap_submit p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .wrap_submit label {
    text-align: center;
  }
}

.con_policy {
  padding: 20px 0 80px;
}
@media screen and (max-width: 768px) {
  .con_policy {
    padding: -10px 0 50px;
  }
}

.policy_txt {
  overflow-y: scroll;
  width: 100%;
  height: 150px;
  text-align: left;
  font-size: 12px;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.privacy_policy input[type=checkbox].check_btn_item {
  display: none;
  appearance: none;
}

.privacy_policy {
  margin: 40px 0;
  font-size: 18px;
}
.privacy_policy .mwform-checkbox-field-text {
  font-weight: bold;
  font-size: 15px;
}
.privacy_policy .check_btn_item + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}
.privacy_policy .check_btn_item + span::after, .privacy_policy .check_btn_item + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.privacy_policy .check_btn_item + span::before {
  border: 1px solid #AAA;
  border-radius: 4px;
  left: 0;
  height: 18px;
  width: 18px;
  margin-top: 2px;
  background-color: #fff;
}
.privacy_policy .check_btn_item + span::after {
  border: none;
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
  height: 11px;
  left: 6px;
  opacity: 0;
  top: 4px;
  transform: rotate(45deg);
  width: 7px;
}
.privacy_policy .check_btn_item:checked + span::after {
  opacity: 1;
}

.con_thanks {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  padding: 100px 0 220px;
}
@media screen and (max-width: 768px) {
  .con_thanks {
    width: 90vw;
    max-width: 90vw;
  }
}
.con_thanks h1 {
  font-weight: bold;
  padding: 100px 0 60px;
  font-size: 30px;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 768px) {
  .con_thanks h1 {
    font-size: 22px;
    letter-spacing: 0.2rem;
    line-height: 1.8rem;
  }
}
.con_thanks .thx_txt {
  font-size: 18px;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .con_thanks .thx_txt {
    font-size: 13px;
    line-height: 1.8rem;
  }
  .con_thanks .thx_txt p {
    margin: 20px;
  }
}

.news_fv.main_visual .box_photo {
  height: 55vh;
}
.news_fv.main_visual .box_photo h1 {
  top: 20vh;
  text-shadow: none;
  color: #000;
}
.news_fv.main_visual .box_photo h1 .txt_h1_eng {
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .news_fv.main_visual .box_photo {
    height: 30vh;
    width: 100%;
    border-radius: 50px;
    position: relative;
  }
  .news_fv.main_visual .box_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }
  .news_fv.main_visual .box_photo h1 {
    top: 10vh;
  }
}
@media screen and (max-width: 768px) {
  .news_fv.main_visual .box_photo {
    height: 30vh;
  }
  .news_fv.main_visual .box_photo img {
    object-fit: cover;
  }
  .news_fv.main_visual .box_photo h1 {
    top: 15vh;
  }
}

.news_all, .news_post {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .news_all, .news_post {
    max-width: 100%;
    padding: 0 5vw 80px;
  }
}
@media screen and (max-width: 768px) {
  .news_all, .news_post {
    flex-direction: column-reverse;
    max-width: 100%;
  }
}
.news_all .news-contents-body, .news_post .news-contents-body {
  width: 80%;
  margin-left: 80px;
}
@media screen and (max-width: 768px) {
  .news_all .news-contents-body, .news_post .news-contents-body {
    margin: initial;
    margin: 40px 0;
    width: 100%;
    padding: 0 5vw;
  }
}
.news_all .news-contents-body ul li, .news_post .news-contents-body ul li {
  display: flex;
  margin: 0px 0 50px;
}
@media screen and (max-width: 768px) {
  .news_all .news-contents-body ul li, .news_post .news-contents-body ul li {
    flex-direction: column;
  }
}
.news_all .news-contents-body ul li .thum, .news_post .news-contents-body ul li .thum {
  width: 300px;
  height: 190px;
  border: 1px solid #CFCFCF;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news_all .news-contents-body ul li .thum, .news_post .news-contents-body ul li .thum {
    width: 100%;
    height: 25vh;
    margin: 0 auto;
  }
}
.news_all .news-contents-body ul li .thum img, .news_post .news-contents-body ul li .thum img {
  height: auto;
  width: 100%;
}
.news_all .news-contents-body ul li .box_txt, .news_post .news-contents-body ul li .box_txt {
  vertical-align: middle;
  margin: auto 0;
  padding-left: 30px;
  font-size: 18px;
  width: calc(100% - 300px);
}
@media screen and (max-width: 768px) {
  .news_all .news-contents-body ul li .box_txt, .news_post .news-contents-body ul li .box_txt {
    width: 100%;
    padding: initial;
    margin-top: 8px;
  }
}
.news_all .news-contents-body ul li .box_txt .ttl_date, .news_post .news-contents-body ul li .box_txt .ttl_date {
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .news_all .news-contents-body ul li .box_txt .ttl_date, .news_post .news-contents-body ul li .box_txt .ttl_date {
    font-size: 16px;
    padding-bottom: 5px;
  }
}
.news_all .news-contents-body ul li:hover .thum, .news_post .news-contents-body ul li:hover .thum {
  border-color: #1157FB;
}
.news_all .news-contents-body ul li:hover .box_txt, .news_post .news-contents-body ul li:hover .box_txt {
  color: #1157FB;
}
.news_all .news-contents-body ul li:hover .box_txt .ttl_date.f_gr, .news_post .news-contents-body ul li:hover .box_txt .ttl_date.f_gr {
  color: #1157FB;
}

.category_side_bar {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .category_side_bar {
    width: 100%;
    padding: 40px 5vw;
    background-color: rgba(69, 206, 43, 0.1);
  }
}

.news_all .page_navi {
  text-align: center;
  display: flex;
  justify-content: center;
}
.news_all .page_navi .page-numbers {
  font-size: 14px;
  background-color: #fff;
  padding: 4px 12px;
  margin: 0 3px;
  border-radius: 20px;
  box-shadow: 0px 8px 15px 0px rgba(112, 112, 112, 0.2);
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.news_all .page_navi .page-numbers.current {
  background-color: #45CE2B;
  color: #fff;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.news_all .page_navi .page-numbers.next {
  box-shadow: none;
  background-color: initial;
}
.news_all .page_navi .page-numbers.prev {
  box-shadow: none;
  background-color: initial;
}
.news_all .page_navi a:hover {
  background-color: #1157FB;
  color: #fff;
}
.news_all .page_navi a .prev {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #45CE2B;
  width: 16px;
  height: 26px;
  top: 28px;
  left: 45px;
  transform: rotate(180deg);
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.news_all .page_navi a .prev:hover {
  background-color: #1157FB;
}
.news_all .page_navi a .next {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #45CE2B;
  width: 16px;
  height: 26px;
  top: 28px;
  left: 45px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.news_all .page_navi a .next:hover {
  background-color: #1157FB;
}

.blog_parts_news {
  position: sticky;
  text-align: center;
  top: 150px;
}
.blog_parts_news h2 {
  font-size: 23px;
  padding-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .blog_parts_news h2 {
    font-size: 20px;
  }
}
.blog_parts_news h2::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 15px;
  left: 0;
}
.blog_parts_news .con_news_topic {
  text-align: left;
  display: block;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .blog_parts_news .con_news_topic {
    font-size: 14px;
  }
}
.blog_parts_news .con_news_topic li {
  margin-bottom: 15px;
}
.blog_parts_news .con_news_topic li .ttl_date {
  margin-bottom: 3px;
}
.blog_parts_news .con_news_topic li:hover {
  color: #1157FB;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}
.blog_parts_news .con_news_topic li:hover .ttl_date.f_gr {
  color: #1157FB;
}
.blog_parts_news .con_news_topic span {
  display: block;
}

.news_post .thum {
  width: 90%;
  height: calc(60vh - 100px);
  border: 1px solid #CFCFCF;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
.news_post .thum img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .news_post .thum {
    width: 100%;
    height: calc(100% - 100px);
    margin-bottom: 20px;
  }
  .news_post .thum img {
    height: auto;
  }
}
.news_post .ttl_date {
  font-size: 16px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .news_post .ttl_date {
    font-size: 14px;
  }
}
.news_post .ttl_txt {
  font-size: 25px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .news_post .ttl_txt {
    width: 100%;
    font-size: 20px;
    line-height: 1.5rem;
    margin-bottom: 30px;
  }
}
.news_post .post_txt {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .news_post .post_txt {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.news_post .post_txt p {
  margin: 5px 0 20px;
}
.news_post .post_txt p img {
  width: 50%;
  display: block;
  margin: 10px auto;
}
.news_post .post_txt .wp-block-image img {
  width: 50%;
  display: block;
  margin: 10px auto;
}
.news_post .post_txt h3, .news_post .post_txt h4, .news_post .post_txt h5 {
  font-size: 22px;
  color: #45CE2B;
  font-weight: bold;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .news_post .post_txt h3, .news_post .post_txt h4, .news_post .post_txt h5 {
    font-size: 18px;
  }
}
.news_post .post_txt h4 {
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .news_post .post_txt h4 {
    font-size: 18px;
  }
}
.news_post .post_txt h5 {
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .news_post .post_txt h5 {
    font-size: 16px;
  }
}
.news_post .post_txt a {
  color: #45CE2B;
}
.news_post .post_txt a:hover {
  color: #1157FB;
}
.news_post .page_btn_con {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .news_post .page_btn_con {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.news_post .btn_main_style {
  width: 40%;
  font-size: 16px;
  text-align: center;
  padding: initial;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .news_post .btn_main_style {
    width: 47%;
  }
}
@media screen and (max-width: 768px) {
  .news_post .btn_main_style {
    width: 100%;
    margin: 5px 0;
    font-size: 14px;
  }
}
.news_post .btn_main_style.left a {
  display: block;
  padding: 30px 70px 30px 40px;
}
@media screen and (max-width: 768px) {
  .news_post .btn_main_style.left a {
    padding: 20px 40px 20px 25px;
  }
}
.news_post .btn_main_style.left a::before {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #1157FB;
  width: 16px;
  height: 26px;
  position: absolute;
  top: 40%;
  right: 45px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
@media screen and (max-width: 768px) {
  .news_post .btn_main_style.left a::before {
    top: 30%;
    right: 25px;
  }
}
.news_post .btn_main_style.left a:hover::before {
  right: 40px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .news_post .btn_main_style.left a:hover::before {
    right: 20px;
  }
}
.news_post .btn_main_style.right a {
  display: block;
  padding: 30px 40px 30px 70px;
}
@media screen and (max-width: 768px) {
  .news_post .btn_main_style.right a {
    padding: 20px 25px 20px 40px;
  }
}
.news_post .btn_main_style.right a::before {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #1157FB;
  width: 16px;
  height: 26px;
  position: absolute;
  top: 40%;
  left: 45px;
  transform: rotate(180deg);
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
@media screen and (max-width: 768px) {
  .news_post .btn_main_style.right a::before {
    top: 30%;
    left: 25px;
  }
}
.news_post .btn_main_style.right a:hover::before {
  left: 40px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .news_post .btn_main_style.right a:hover::before {
    left: 20px;
  }
}

.con_guideline {
  font-size: 16px;
  padding: 120px 0;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .con_guideline {
    padding: 120px 5vw;
  }
}
@media screen and (max-width: 768px) {
  .con_guideline {
    padding: 80px 5vw;
  }
}

.main_visual .bg_404 {
  margin: 100px 0 0;
  font-size: 300px;
  line-height: 300px;
  color: #F5F5F5;
  font-family: "Montserrat";
  font-weight: bold;
}
.main_visual .txt_404 {
  margin: 15px 0 50px;
}
.main_visual .btn_main_style {
  padding: 30px 90px;
}
.main_visual .btn_main_style::before {
  content: "";
  mask-image: url("../img/pc/arrow_green.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #1157FB;
  width: 16px;
  height: 26px;
  position: absolute;
  top: 35%;
  right: 45px;
  transition: all 0.2s cubic-bezier(0.52, 0.03, 0.65, 0.99);
}
.main_visual .btn_main_style:hover::before {
  right: 40px;
  background-color: #fff;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
  line-height: 2.5rem;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.box {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.box.ready {
  opacity: 1;
  transform: translateX(0px);
}