@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap");
/* --------------------------
Header
--------------------------- */
#wrapper.is-front {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #wrapper.is-front {
    padding-top: 0;
  }
}

header.is-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.5);
}

.l-header {
  height: 90px;
}
@media screen and (max-width: 767px) {
  .l-header {
	position: absolute;
    top: 0;
    left: 0;
    height: 65px;
  }
}

.l-header-brand {
  padding: 22px 0 0 50px;
}
@media screen and (max-width: 767px) {
  .l-header-brand {
    padding: 24px 0 0 24px;
  }
  .l-header-brand img {
    width: 100px;
    height: auto;
  }
}
.l-header-brand a:hover {
  opacity: 1;
}

/* --------------------------
メニュー gnav
--------------------------- */
.c-nav-button__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 90px;
  height: 90px;
  box-sizing: border-box;
  background-color: #ec911b;
  z-index: 900;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-nav-button__wrap {
    width: 65px;
    height: 65px;
  }
}
.c-nav-button__wrap.is-open {
  border-top-right-radius: 15px;
}

.c-nav-button {
  position: relative;
  top: -3px;
  margin: auto;
  width: 46px;
  height: 30px;
  border: none;
  background: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-nav-button {
    width: 37px;
    height: 22px;
  }
}
.c-nav-button span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .c-nav-button span {
    height: 3px;
  }
}
.c-nav-button span:nth-child(2) {
  top: 50%;
  width: 100%;
}
.c-nav-button span:nth-child(3) {
  top: 100%;
}
.c-nav-button.is-close span {
  top: 50%;
  transform: rotate(45deg);
}
.c-nav-button.is-close span:nth-child(2) {
  width: 0;
}
.c-nav-button.is-close span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

/* sp ナビ */
.c-nav-sp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
  position: fixed;
  top: 0;
  right: 0;
  width: fit-content;
  z-index: 2;
  padding: 75px 120px 75px 130px;
  background-color: #ec911b;
  transform: translateY(-200%);
  transition: all 0.2s ease-out;
  overflow-y: auto;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .c-nav-sp {
	gap: 30px 30px;  
    width: 100%;
    padding: 75px 10px 50px 25px;
  }
}
.c-nav-sp.is-open {
  transform: translateY(0%);
}
.c-nav-sp .menu-header-menu-container,
.c-nav-sp .menu-en-header-menu-container{
  display: contents;
}
.c-nav-sp .menu {
  display: contents;
  margin: 0;
  padding: 0;	
}
@media screen and (max-width: 767px) {
.c-nav-sp .menu {
    gap: 30px 30px;
  }
}
.c-nav-sp .menu > .menu-item {
  position: relative;
  margin: 0;
  padding: 0 0px;
}
.c-nav-sp .menu > .menu-item::before {
  display: none;
}
.c-nav-sp .menu > .menu-item > a {
  display: block;
  position: relative;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 18px;
  font-stretch: expanded;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .c-nav-sp .menu > .menu-item > a {
    font-size: 14px;
  }
}
.c-nav-sp .menu > .menu-item > a:hover {
  opacity: 0.8;
}
.c-nav-sp .menu > .menu-item > a > span {
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .c-nav-sp .menu > .menu-item > a > span {
    margin-bottom: 5px;
    font-size: 21px;
  }
}
.c-nav-sp .menu > .menu-item.current-menu-item::before {
  display: block;
  content: "";
  position: absolute;
  top: 13px;
  left: -25px;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .c-nav-sp .menu > .menu-item.current-menu-item::before {
    top: 8px;
    left: -12px;
  }
}

.c-nav-lang {
  width: 140px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-nav-lang {
    width: 100px;
    bottom: 39px;
    right: auto;
    left: calc(50% + 23px);
  }
}
.c-nav-lang__head {
  position: relative;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 12px;
  font-stretch: expanded;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-nav-lang__head {
    font-size: 9px;
  }
}
.c-nav-lang__head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 45px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-nav-lang__head::before {
    width: 33px;
  }
}
.c-nav-lang__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.c-nav-lang__link {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 32px;
  font-stretch: expanded;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  opacity: 0.38;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .c-nav-lang__link {
    font-size: 24px;
  }
}
.c-nav-lang__link:hover {
  opacity: 0.2;
}
.c-nav-lang__link.is-active {
  opacity: 1;
}
.c-nav-lang__link.is-active:hover {
  opacity: 0.8;
}

.c-pageTop {
  position: fixed;
  bottom: 15px;
  right: 0;
  width: 60px;
  height: 60px;
  padding-top: 16px;
  box-sizing: border-box;
  text-align: center;
  background-color: #234C9D;
  color: white;
  opacity: 0;
  transition: 0.3s;
  z-index: 777;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-pageTop {
    width: 40px;
    height: 40px;
    padding-top: 0px;
  }
  .c-pageTop img {
    position: relative;
    top: 3px;
    width: 20px;
    height: auto;
  }
}

.c-pageTop.is-show {
  opacity: 0.8;
}
.c-pageTop.is-show::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s ease;
}
.c-pageTop.is-show:hover {
  opacity: 1;
}
.c-pageTop.is-show:hover::after {
  opacity: 0.5;
}

/* 共通
--------------------------- */
.l-cta {
  padding: 140px 0 150px;
  background-color: #ec911b;
}
@media screen and (max-width: 767px) {
  .l-cta {
    padding: 70px 0 90px;
  }
}

.l-cta-heading {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .l-cta-heading {
    gap: 18px;
    margin-bottom: 24px;
  }
}
.l-cta-heading__en {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 108px;
  font-stretch: expanded;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-cta-heading__en {
    font-size: 48px;
    text-align: center;
    margin: 0 auto;
  }
}
.l-cta-heading__jp {
  position: relative;
  bottom: 15px;
  background-color: #fff;
  color: #ec911b;
}
@media screen and (max-width: 767px) {
  .l-cta-heading__jp {
    bottom: 0;
    margin: auto;
  }
}

.l-cta-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.l-cta-block01__item {
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  background-color: #fff;
  margin-bottom: 35px;
  gap: 10px;
}
@media screen and (max-width: 1080px) {
  .l-cta-block01__item {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-cta-block01__item {
    border-radius: 10px;
    margin-bottom: 22px;
  }
}
.l-cta-block01__item:last-of-type {
  max-width: 100%;
}
.l-cta-block01__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  height: 110px;
}
@media screen and (max-width: 767px) {
  .l-cta-block01__link {
    height: 73px;
  }
}
.l-cta-block01__link:hover {
  opacity: 0.8;
}
.l-cta-block01__img {
  width: 65px;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-cta-block01__img {
    width: 38px;
  }
}
.l-cta-block01__contents {
  width: calc(100% - 65px - 52px - 20px);
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .l-cta-block01__contents {
    width: calc(100% - 38px - 38px - 0px);
  }
}
.l-cta-block01__lead {
  font-size: 24px;
  font-weight: bold;
  color: #ec911b;
}
@media screen and (max-width: 767px) {
  .l-cta-block01__lead {
    font-size: 16px;
  }
}
.l-cta-block01__title {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 38px;
  font-stretch: expanded;
  line-height: 1;
  color: #ec911b;
}
@media screen and (max-width: 767px) {
  .l-cta-block01__title {
    font-size: 24px;
  }
}
.l-cta-block01__title02 {
  font-size: 36px;
  font-weight: bold;
  color: #ec911b;
}
@media screen and (max-width: 767px) {
  .l-cta-block01__title02 {
    font-size: 24px;
    line-height:1.3;
  }
}
.l-cta-block01__btn {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  width: 50px;
  height: 50px;
  border: solid 1px #ec911b;
  background-color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .l-cta-block01__btn {
    width: 34px;
    height: 34px;
  }
}
.l-cta-block01__btn::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #ec911b;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .l-cta-block01__btn::after {
    top: 10px;
    left: 13px;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ec911b;
  }
}
@media screen and (max-width: 767px) {
  .l-cta-block01__btn {
    margin-top: 0;
  }
}

/* footer
--------------------------- */
footer {
  padding: 95px 0;
  background: url("../image/footer-bg01.png") no-repeat 100% 100%;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 60px 0 30px;
    background: url("../image/footer-bg01-sp.png") no-repeat 100% 100%;
    background-size: contain;
  }
}

.l-footer-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1080px) {
  .l-footer-block01 {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block01 {
    margin-bottom: 30px;
    padding-inline: 20px;
  }
}
.l-footer-block01__left {
  width: 458px;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__left {
    width: 100%;
  }
}
.l-footer-block01__brand {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__brand {
    margin-bottom: 10px;
  }
}
.l-footer-block01__brand > a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__brand > a > img {
    width: 180px;
  }
}
.l-footer-block01__name {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}
.l-footer-block01__info {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
}
.l-footer-block01__info a {
  text-decoration: none;
  color: #000;
}
.l-footer-block01__right {
  width: 100%;
  max-width: 400px;
}

.l-footer-nav .menu {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.l-footer-nav .menu li {
  width: 150px;
  margin: 0 0 40px 0;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .menu li {
    margin: 0 0 30px 0;
  }
}
.l-footer-nav .menu li::before {
  display: none;
}
.l-footer-nav .menu li a {
  text-decoration: none;
  color: #ec911b;
}
.l-footer-nav .menu li.current-menu-item::before {
  display: block;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #ec911b;
  border-radius: 0;
}

.l-footer-block02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1080px) {
  .l-footer-block02 {
    justify-content: center;
  }
}
.l-footer-block02__left {
  width: fit-content;
}
.l-footer-block02__lead {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 44.5px;
  font-stretch: expanded;
  line-height: 1;
  color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  .l-footer-block02__lead {
    font-size: 28px;
  }
}
.l-footer-block02__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  width: fit-content;
  padding-top: 30px;
  border-top: solid 1px #d8d8d8;
}
@media screen and (max-width: 767px) {
  .l-footer-block02__right {
    justify-content: center;
  }
}
.l-footer-block02__list a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: #7a7a7a;
}
.l-footer-block02__list a:hover {
  text-decoration: underline;
}
.l-footer-block02__copy {
  font-size: 12px;
  font-weight: 500;
  color: #7a7a7a;
}

html[lang=ja] .l-footer-block02__right {
  gap: 10px;
}

.c-inner {
  width: 100%;
  max-width: 1150px;
  margin: auto;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .c-inner {
    padding-inline: 10px;
  }
}

.c-inner-wrap {
  width: 100%;
  max-width: 1270px;
  margin: auto;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .c-inner-wrap {
    padding-inline: 10px;
  }
}

.c-inner-small {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding-inline: 20px;
}

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

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

.c-sub-mv {
  height: 360px;
  background-color: #d2d9d9;
  background: url("../image/subpage-kv.webp") no-repeat 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-sub-mv {
    height: 200px;
    background-position: 70% 50%;
  }
}
.c-sub-mv__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 360px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-sub-mv__inner {
    height: 200px;
  }
}
.c-sub-mv__title {
  padding-top: 50px;
  font-size: 36px;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-sub-mv__title {
    padding-top: 30px;
    font-size: 24px;
  }
}

/* footer */
.footer-nav {
  margin-bottom: 20px;
  text-align: center;
}
.footer-nav a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-nav a {
    font-size: 12px;
  }
}
.footer-nav a:hover {
  text-decoration: underline;
}

/* トップへ戻る */
.common-bottom {
  padding: 56px 0;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .common-bottom {
    padding: 40px 0;
  }
}
.common-bottom__link-wrap {
  width: fit-content;
  margin: auto;
  text-align: center;
}
.common-bottom__link {
  display: block;
  position: relative;
  padding-inline: 32px;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .common-bottom__link {
    padding-inline: 28px;
    font-size: 16px;
  }
}
.common-bottom__link::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .common-bottom__link::after {
    top: calc(50% - 7px);
    width: 14px;
    height: 14px;
  }
}
.common-bottom__link--other::after {
  left: 0px;
  transform: rotate(-135deg);
}
.common-bottom__link--front::after {
  right: 0px;
  transform: rotate(45deg);
}
.common-bottom__link:hover {
  opacity: 0.7;
}

.c-page {
  background: url("../image/page-bg01.webp") no-repeat 50% 0%;
  background-size: cover;
}

:where(.front) img {
  vertical-align: bottom;
}
:where(.front) h1 + *,
:where(.front) h2 + *,
:where(.front) h3 + *,
:where(.front) h4 + *,
:where(.front) h5 + *,
:where(.front) h6 + * {
  margin-top: 0rem;
}
:where(.front) * {
  letter-spacing: -0.02em;
}
:where(.front) a {
  text-decoration: none;
  transition: 0.2s;
  color: initial;
}
:where(.front) a:hover {
  opacity: 0.8;
}

.front-bg01 {
  background: url("../image/top-bg01.webp") no-repeat 50% 0%;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .front-bg01 {
    background: url("../image/top-bg01-sp.webp") no-repeat 50% 0%;
    background-size: 100% auto;
  }
}

.front-mv {
  position: relative;
  padding: 120px 50px 100px;
}
@media screen and (max-width: 767px) {
  .front-mv {
    padding: 108px 0px 0px;
  }
}
.front-mv__title {
  margin-bottom: 15px;
  font-size: 53.5px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .front-mv__title {
    font-size: 52px;
  }
}
@media screen and (max-width: 767px) {
  .front-mv__title {
    margin-bottom: 20px;
    font-size: 30.5px;
  }
}
.front-mv__text {
  margin: 0;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .front-mv__text {
    font-size: 16px;
  }
}

.front-mv-bg {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
.front-mv-bg::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 5%;
  width: 502px;
  height: 196px;
  background: url("../image/The-Future-Of.png") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .front-mv-bg::before {
    left: 0%;
  }
}
@media screen and (max-width: 767px) {
  .front-mv-bg::before {
    left: 10px;
    width: 225px;
    height: 87px;
  }
}
.front-mv-bg::after {
  content: "";
  position: absolute;
  bottom: -62px;
  right: 5%;
  width: 515px;
  height: 183px;
  background: url("../image/Food-Production.png") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .front-mv-bg::after {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .front-mv-bg::after {
    bottom: -56px;
    right: 10px;
    width: 269px;
    height: 96px;
  }
}

.front-mv-slide2 {
  margin: 0 auto 110px;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .front-mv-slide2 {
    margin-bottom: 80px;
    padding: 20px 0;
  }
}
.front-mv-slide2 .swiper-wrapper {
  display: flex;
  align-items: center;
}
.front-mv-slide2 .swiper-slide {
  width: auto;
}
.front-mv-slide2 .swiper-slide.swiper-slide-active .slide-card01 {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .front-mv-slide2 .swiper-slide.swiper-slide-active .slide-card01 {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  }
}
.front-mv-slide2 .swiper-slide.swiper-slide-prev .slide-card01, .front-mv-slide2 .swiper-slide.swiper-slide-next .slide-card01 {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1080px) {
  .front-mv-slide2 .swiper-slide.swiper-slide-prev .slide-card01, .front-mv-slide2 .swiper-slide.swiper-slide-next .slide-card01 {
    box-shadow: none;
  }
}
.front-mv-slide2 .swiper-slide-shadow-right,
.front-mv-slide2 .swiper-slide-shadow-left {
  display: none;
}

.swiper-button-prev {
  left: -33px;
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 6%;
    width: 37px;
    height: 37px;
  }
}
.swiper-button-prev::after {
  font-size: 28px;
  color: #ec911b;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev::after {
    font-size: 16px;
  }
}

.swiper-button-next {
  right: -33px;
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 6%;
    width: 37px;
    height: 37px;
  }
}
.swiper-button-next::after {
  font-size: 28px;
  color: #ec911b;
}
@media screen and (max-width: 767px) {
  .swiper-button-next::after {
    font-size: 16px;
  }
}

.slide-card01 {
  position: relative;
  width: 100%;
  border-radius: 27px;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .slide-card01 {
    width: 460px;
  }
}
@media screen and (max-width: 767px) {
  .slide-card01 {
    width: 272px;
  }
}
.slide-card01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #ec911b);
  opacity: 0.9;
}
.slide-card01__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 460/690;
}

.slide-card01__img img:hover {
	opacity: 0.8;
}

.slide-card01__img > a:hover {
	opacity: 1;
}

.slide-card01__num {
  position: absolute;
  top: 37px;
  left: 37px;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 67.5px;
  font-stretch: expanded;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: left;
  color: #ec911b;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .slide-card01__num {
    top: 20px;
    left: 23px;
    font-size: 39.5px;
  }
}
.slide-card01__num > span {
  display: block;
  position: relative;
  left: 3px;
  font-size: 18px;
  font-stretch: expanded;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .slide-card01__num > span {
    font-size: 10.5px;
  }
}
.slide-card01__text {
  position: absolute;
  bottom: 40px;
  left: 0px;
  width: 100%;
  padding: 0 34px;
  font-size: 28px;
  line-height: 1.39;
  color: #fff;
  z-index: 2;
}
@media (max-width: 1400px) {
  .slide-card01__text br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .slide-card01__text {
    bottom: 24px;
    padding: 0 24px;
    font-size: 20px;
  }
}

/* 製品紹介 */
.front-sec01 {
  position: relative;
  padding: 90px 0 95px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .front-sec01 {
    padding: 60px 0 60px;
  }
}
.front-sec01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1113px;
  height: 1px;
  margin: auto;
  background-color: #ececec;
}
@media screen and (max-width: 767px) {
  .front-sec01::after {
    width: calc(100% - 20px);
    left: 10px;
  }
}

.front-sec01-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .front-sec01-heading {
    gap: 10px;
    margin-bottom: 0px;
  }
}
.front-sec01-heading__en {
  opacity: 0.49;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 108px;
  font-stretch: expanded;
  line-height: 1;
  letter-spacing: -2.16px;
  color: #c1c1c1;
}
@media screen and (max-width: 1080px) {
  .front-sec01-heading__en {
    font-size: 75px;
  }
}
@media screen and (max-width: 1080px) {
  .front-sec01-heading__en {
    font-size: 38px;
  }
}

.front-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 70px;
  padding: 0px 25px;
  background-color: #ec911b;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.72px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .front-heading {
    height: 33px;
    padding: 0px 12px;
    font-size: 18px;
  }
}

.p-front-sec01-slider {
  position: relative;
  width: 100vw;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-front-sec01-slider {
    padding: 30px 0 10px 0;
  }
}

.p-front-sec01-block01 {
  display: flex;
  width: 100%;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-front-sec01-block01 {
    padding-left: 10px;
    margin-bottom: 30px;
  }
}
.p-front-sec01-block01__item {
  width: 380px !important;
  border-radius: 23px;
  padding: 40px 30px 60px 30px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-front-sec01-block01__item {
    width: 258px !important;
    padding: 30px 20px 50px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}
.p-front-sec01-block01__link {
  display: block;
  width: 100%;
}
.p-front-sec01-block01__contents {
  min-height: 180px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-front-sec01-block01__contents {
    min-height: 160px;
  }
}
.p-front-sec01-block01__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-front-sec01-block01__en {
  width: calc(100% - 60px);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 35px;
  font-stretch: expanded;
  line-height: 1.07;
  text-align: left;
  color: #ec911b;
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  .p-front-sec01-block01__en {
    margin-bottom: 10px;
    width: calc(100% - 40px);
    font-size: 24px;
  }
}
.p-front-sec01-block01__title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-front-sec01-block01__title {
    margin-bottom: 10px;
  }
}
.p-front-sec01-block01__cat {
  display: inline-block;
  height: 30px;
  padding: 7px 16px;
  border-radius: 6px;
  background-color: #fff5e9;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.32px;
  text-align: left;
  color: #ec911b;
}
@media screen and (max-width: 767px) {
  .p-front-sec01-block01__cat {
    height: 22px;
    padding: 5px 12px;
    font-size: 12px;
  }
}
.p-front-sec01-block01__btn {
  margin-top: 10px;
}
.p-front-sec01-block01__img {
  text-align: center;
}
.p-front-sec01-block01__img img {
  width: 320px;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .p-front-sec01-block01__img img {
    max-width: 206px;
  }
}
.p-front-sec01-block01 .swiper-slide-active {
  background-color: #ec911b;
}
.p-front-sec01-block01 .swiper-slide-active .p-front-sec01-block01__title,
.p-front-sec01-block01 .swiper-slide-active .p-front-sec01-block01__en {
  color: #fff;
}

.front-sec01-block02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .front-sec01-block02 {
    flex-direction: column;
    justify-content: center;
    gap: 33px;
  }
}
.front-sec01-block02 .swiper-pagination {
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .front-sec01-block02 .swiper-pagination {
    text-align: center;
  }
}
.front-sec01-block02 .swiper-pagination-bullet-active {
  background-color: #ec911b !important;
  border-color: #ec911b;
}
.front-sec01-block02 .swiper-pagination-bullet {
  border-color: #ec911b;
}

.c-btn-mark {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  width: 50px;
  height: 50px;
  border: solid 1px #ec911b;
  background-color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .c-btn-mark {
    width: 34px;
    height: 34px;
  }
}
.c-btn-mark::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #ec911b;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .c-btn-mark::after {
    top: 10px;
    left: 13px;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ec911b;
  }
}

.c-btn-mark-small::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 37px;
  height: 37px;
  border: solid 1px #fff;
  background-color: transparent;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .c-btn-mark-small::before {
    width: 28px;
    height: 28px;
  }
}
.c-btn-mark-small::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .c-btn-mark-small::after {
    top: 9px;
    left: 12px;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
  }
}

.c-btn01 {
  display: inline-block;
  position: relative;
  min-width: 300px;
  height: 70px;
  padding: 19px 50px 10px 15px;
  border-radius: 50px;
  background-color: #ec911b;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    min-width: 228px;
    height: 53px;
    padding: 15px 40px 10px 15px;
    font-size: 16px;
  }
}
.c-btn01__icon {
  position: absolute;
  top: 16px;
  right: 54px;
}
.c-btn01__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 37px;
  height: 37px;
  border: solid 1px #fff;
  background-color: transparent;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .c-btn01__icon::before {
    width: 28px;
    height: 28px;
  }
}
.c-btn01__icon::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .c-btn01__icon::after {
    top: 9px;
    left: 12px;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .c-btn01__icon {
    top: 12px;
    right: 40px;
  }
}
.c-btn01:hover {
  opacity: 0.8;
}

.p-front-sec01-btn {
  text-align: right;
}

.front-bg02 {
  position: relative;
}
.front-bg02::before {
  content: "";
  position: absolute;
  top: -300px;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("../image/top-bg02.webp") no-repeat 100% 0%;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .front-bg02::before {
    top: -140px;
    width: 100%;
    background: url("../image/top-bg02-sp.webp") no-repeat 100% 0%;
    background-size: contain;
  }
}
.front-bg02::after {
  content: "";
  position: absolute;
  bottom: -270px;
  left: 0;
  width: 40%;
  height: 100%;
  background: url("../image/top-bg03.webp") no-repeat 0% 0%;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .front-bg02::after {
    bottom: -270px;
    width: 100%;
    background: url("../image/top-bg03-sp.webp") no-repeat 0% 0%;
    background-size: contain;
  }
}

.front-sec02 {
  padding: 120px 0 140px;
}
@media screen and (max-width: 767px) {
  .front-sec02 {
    padding: 60px 0 70px;
  }
}

.front-sec02-block01 {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 55px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .front-sec02-block01 {
    gap: 30px;
  }
}
.front-sec02-block01__left {
  width: 43%;
}
@media screen and (max-width: 1080px) {
  .front-sec02-block01__left {
    width: 100%;
  }
}
.front-sec02-block01__lead {
  margin-top: 20px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.46;
}
@media screen and (max-width: 767px) {
  .front-sec02-block01__lead {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.5;
  }
}
.front-sec02-block01__right {
  width: 57%;
  max-width: 511px;
}
@media screen and (max-width: 1080px) {
  .front-sec02-block01__right {
    width: 100%;
    max-width: 100%;
  }
}
.front-sec02-block01__right p {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .front-sec02-block01__right p {
    font-size: 16px;
  }
}

.p-front-sec02-block02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 38px;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .p-front-sec02-block02 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02 {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.p-front-sec02-block02::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -58px;
  width: 80px;
  height: 687px;
  background: url("../image/COMPANY.png") no-repeat 50% 50%;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1080px) {
  .p-front-sec02-block02::before {
    right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02::before {
    top: -395px;
    right: 23px;
    width: 47px;
    height: 396px;
  }
}
.p-front-sec02-block02__item {
  border-radius: 23px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__item {
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}
.p-front-sec02-block02__link {
  display: block;
  position: relative;
}
.p-front-sec02-block02__img {
  position: relative;
  text-align: center;
}
.p-front-sec02-block02__img img {
  width: 100%;
  border-radius: 23px;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__img img {
    border-radius: 12px;
  }
}
.p-front-sec02-block02__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #ec911b);
  opacity: 1;
  border-radius: 23px;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__img::after {
    border-radius: 12px;
  }
}
.p-front-sec02-block02__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  min-height: 60px;
  padding: 0 35px;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__contents {
    bottom: 24px;
    min-height: auto;
    padding: 0 24px;
  }
}
.p-front-sec02-block02__left {
  width: calc(100% - 54px);
}
.p-front-sec02-block02__title {
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__title {
    margin-bottom: 0px;
    font-size: 18px;
  }
}
.p-front-sec02-block02__en {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 18px;
  font-stretch: expanded;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__en {
    font-size: 14px;
  }
}
.p-front-sec02-block02__btn {
  margin-top: 10px;
  display: inline-block;
  position: relative;
  margin-top: 10px;
  width: 50px;
  height: 50px;
  border: solid 1px #ec911b;
  background-color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__btn {
    width: 34px;
    height: 34px;
  }
}
.p-front-sec02-block02__btn::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #ec911b;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__btn::after {
    top: 10px;
    left: 13px;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ec911b;
  }
}
.p-front-sec02-block02__btn {
  background-color: transparent;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__btn {
    margin-top: 5px;
  }
}
.p-front-sec02-block02__btn::after {
  border-left: 17px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-block02__btn::after {
    border-left: 11px solid #fff;
  }
}

.p-front-sec02-btn {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-front-sec02-btn {
    text-align: center;
  }
}

.front-sec03 {
  padding: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .front-sec03 {
    padding: 0 0;
  }
}
.front-sec03__inner {
  background: url("../image/REASON.png") repeat-x 0% 84px;
  background-size: 1297px auto;
  background-color: #ec911b;
  color: #fff;
  border-radius: 31px;
  padding: 160px 0 170px;
}
@media screen and (max-width: 767px) {
  .front-sec03__inner {
    border-radius: 20px;
    padding: 90px 10px 70px;
    background-position: 0 60px;
    background-size: auto 39px;
  }
}
.front-sec03__lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .front-sec03__lead {
    font-size: 14px;
  }
}

.front-sec03-heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .front-sec03-heading {
    margin-bottom: 20px;
  }
}
.front-sec03-heading__jp {
  background-color: #fff;
  color: #ec911b;
}

.front-sec03-block01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
}
@media screen and (max-width: 1080px) {
  .front-sec03-block01 {
    grid-template-columns: 584px;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .front-sec03-block01 {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.p-front-sec03-card01 {
  border-radius: 13px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .p-front-sec03-card01 {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}
.p-front-sec03-card01__link {
  display: block;
  position: relative;
}
.p-front-sec03-card01__img {
  position: relative;
  text-align: center;
}
.p-front-sec03-card01__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  min-height: 60px;
  padding: 0 35px;
}
@media screen and (max-width: 767px) {
  .p-front-sec03-card01__contents {
    bottom: 24px;
    min-height: auto;
    padding: 0 20px;
  }
}
.p-front-sec03-card01__left {
  width: calc(100% - 54px);
}
.p-front-sec03-card01__en {
  margin-bottom: 5px;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 18px;
  font-stretch: expanded;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-front-sec03-card01__en {
    font-size: 12px;
  }
}
.p-front-sec03-card01__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-front-sec03-card01__title {
    font-size: 14px;
  }
}
.p-front-sec03-card01__btn {
  margin-top: 10px;
  display: inline-block;
  position: relative;
  margin-top: 10px;
  width: 50px;
  height: 50px;
  border: solid 1px #ec911b;
  background-color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .p-front-sec03-card01__btn {
    width: 34px;
    height: 34px;
  }
}
.p-front-sec03-card01__btn::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #ec911b;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .p-front-sec03-card01__btn::after {
    top: 10px;
    left: 13px;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ec911b;
  }
}
.p-front-sec03-card01__btn {
  background-color: transparent;
  border: 1px solid #fff;
}
.p-front-sec03-card01__btn::after {
  border-left: 17px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-front-sec03-card01__btn::after {
    border-left: 11px solid #fff;
  }
}

.front-bg04 {
  position: relative;
}
.front-bg04::before {
  content: "";
  position: absolute;
  top: -200px;
  right: 0;
  width: 100%;
  height: calc(100% + 200px);
  background: url("../image/top-bg04.webp") no-repeat 50% 0%;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .front-bg04::before {
    background: url("../image/top-bg04-sp.webp") no-repeat 50% 0%;
  }
}

.front-sec04 {
  padding: 60px 0 160px;
}
@media screen and (max-width: 767px) {
  .front-sec04 {
    padding: 70px 0 45px;
  }
}
.front-sec04__lead {
  margin-bottom: 70px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .front-sec04__lead {
    margin-bottom: 45px;
    font-size: 16px;
    line-height: 1.7;
  }
}

.front-sec04-heading {
  text-align: center;
  margin-bottom: 35px;
}
.front-sec04-heading__en {
  margin-bottom: 20px;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 108px;
  font-stretch: expanded;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .front-sec04-heading__en {
    margin-bottom: 15px;
    font-size: 60px;
  }
}
.front-sec04-heading__jp {
  margin: auto;
}

.p-front-sec04-block01 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 27px 27px;
  margin-bottom: 57px;
}
.p-front-sec04-block01__item {
  width: 352px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__item {
    max-width: 100%;
    margin: auto;
  }
}
.p-front-sec04-block01__link {
  display: flex;
  align-items: center;
  height: 180px;
  position: relative;
  padding: 0px 20px 0px;
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__link {
    height: 124px;
  }
}
.p-front-sec04-block01__link:hover {
  opacity: 0.8;
}
.p-front-sec04-block01__img {
  position: relative;
  text-align: center;
  width: 75px;
  padding-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__img {
    width: 65px;
  }
}
.p-front-sec04-block01__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% - 75px);
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__contents {
    width: calc(100% - 65px);
  }
}
.p-front-sec04-block01__left {
  width: calc(100% - 54px);
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__left {
    width: calc(100% - 38px);
    padding-left: 10px;
  }
}
.p-front-sec04-block01__title {
  margin-bottom: 5px;
  font-size: 29px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__title {
    font-size: 24px;
  }
}
.p-front-sec04-block01__en {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 14px;
  font-stretch: expanded;
  line-height: 1.6;
  letter-spacing: -0.28px;
  text-align: left;
  color: #ec911b;
}
.p-front-sec04-block01__btn {
  margin-top: 0px;
  display: inline-block;
  position: relative;
  margin-top: 10px;
  width: 50px;
  height: 50px;
  border: solid 1px #ec911b;
  background-color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__btn {
    width: 34px;
    height: 34px;
  }
}
.p-front-sec04-block01__btn::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #ec911b;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__btn::after {
    top: 10px;
    left: 13px;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #ec911b;
  }
}
.p-front-sec04-block01__btn--pt2 {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .p-front-sec04-block01__btn--pt2 {
    margin-top: 10px;
  }
}

.p-front-sec04-btn {
  text-align: center;
}

.front-sec05 {
  padding: 0 0 135px;
}
@media screen and (max-width: 767px) {
  .front-sec05 {
    padding: 0 0 50px;
  }
}
.front-sec05__inner {
  padding: 70px 0 100px;
  border-radius: 31px;
  background-color: #ececec;
}
@media screen and (max-width: 767px) {
  .front-sec05__inner {
    border-radius: 10px;
    padding: 60px 10px 60px;
  }
}

.front-sec05-heading {
  text-align: center;
}
.front-sec05-heading__en {
  margin-bottom: 20px;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 72px;
  font-stretch: expanded;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .front-sec05-heading__en {
    margin-bottom: 10px;
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .front-sec05-heading__jp {
    margin: auto;
  }
}

.front-sec05-block01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .front-sec05-block01 {
    gap: 20px;
  }
}
.front-sec05-block01__head {
  width: 262px;
}
@media screen and (max-width: 767px) {
  .front-sec05-block01__head {
    width: 100%;
  }
}
.front-sec05-block01__body {
  width: 712px;
}
@media screen and (max-width: 1080px) {
  .front-sec05-block01__body {
    width: 100%;
  }
}

.front-sec05-posts {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.front-sec05-posts__item {
  display: flex;
  align-items: flex-start;
  padding: 35px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .front-sec05-posts__item {
    flex-wrap: wrap;
    padding: 30px 0;
  }
}
.front-sec05-posts__item::before {
  display: none !important;
}
.front-sec05-posts__date {
  width: 122px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #898989;
}
@media screen and (max-width: 767px) {
  .front-sec05-posts__date {
    padding-top: 3px;
    font-size: 12px;
  }
}
.front-sec05-posts__category {
  width: 125px;
}
.front-sec05-posts__category a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 100px;
  height: 25px;
  margin-right: 20px;
  background-color: #ec911b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .front-sec05-posts__category a {
    width: 80px;
    height: 21px;
    height: 25px;
    font-size: 12px;
  }
}
.front-sec05-posts__title {
  width: calc(100% - 122px - 125px);
  position: relative;
  top: -3px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .front-sec05-posts__title {
    padding: 15px 40px 0 0;
    width: 100%;
  }
}
.front-sec05-posts__title > span {
  position: absolute;
  top: -6px;
  right: 50px;
}
.front-sec05-posts__title > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 37px;
  height: 37px;
  border: solid 1px #fff;
  background-color: transparent;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .front-sec05-posts__title > span::before {
    width: 28px;
    height: 28px;
  }
}
.front-sec05-posts__title > span::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .front-sec05-posts__title > span::after {
    top: 9px;
    left: 12px;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .front-sec05-posts__title > span {
    top: 12px;
    right: 35px;
  }
}
.front-sec05-posts__title > span::before {
  background-color: transparent;
  border: 1px solid #ec911b;
}
.front-sec05-posts__title > span::after {
  border-left: 12px solid #ec911b;
}
@media screen and (max-width: 767px) {
  .front-sec05-posts__title > span::after {
    border-left: 8px solid #ec911b;
  }
}

/* margin top */
.u-mt10 {
  margin-top: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

/* margin bottom */
.u-mb0 {
  margin-bottom: 0px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb105 {
  margin-bottom: 105px;
}

.u-mb110 {
  margin-bottom: 110px;
}

.u-mb115 {
  margin-bottom: 1115px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-mb125 {
  margin-bottom: 125px;
}

.u-mb130 {
  margin-bottom: 130px;
}

.u-mb135 {
  margin-bottom: 135px;
}

.u-mb140 {
  margin-bottom: 140px;
}

.u-mb145 {
  margin-bottom: 145px;
}

.u-mb150 {
  margin-bottom: 150px;
}

.u-mb160 {
  margin-bottom: 160px;
}

.u-mb170 {
  margin-bottom: 170px;
}

.u-mb180 {
  margin-bottom: 180px;
}

.u-mb190 {
  margin-bottom: 190px;
}

.u-mb200 {
  margin-bottom: 200px;
}

.u-mb210 {
  margin-bottom: 210px;
}

.u-mb220 {
  margin-bottom: 220px;
}

.u-mb230 {
  margin-bottom: 230px;
}

.u-mb240 {
  margin-bottom: 240px;
}

.u-mb250 {
  margin-bottom: 250px;
}

@media screen and (max-width: 1080px) {
  .u-mb0--tb {
    margin-bottom: 0px;
  }
  .u-mb5--tb {
    margin-bottom: 5px;
  }
  .u-mb10--tb {
    margin-bottom: 10px;
  }
  .u-mb15--tb {
    margin-bottom: 15px;
  }
  .u-mb20--tb {
    margin-bottom: 20px;
  }
  .u-mb25--tb {
    margin-bottom: 25px;
  }
  .u-mb30--tb {
    margin-bottom: 30px;
  }
  .u-mb35--tb {
    margin-bottom: 35px;
  }
  .u-mb40--tb {
    margin-bottom: 40px;
  }
  .u-mb45--tb {
    margin-bottom: 45px;
  }
  .u-mb50--tb {
    margin-bottom: 50px;
  }
  .u-mb55--tb {
    margin-bottom: 55px;
  }
  .u-mb60--tb {
    margin-bottom: 60px;
  }
  .u-mb65--tb {
    margin-bottom: 65px;
  }
  .u-mb70--tb {
    margin-bottom: 70px;
  }
  .u-mb75--tb {
    margin-bottom: 75px;
  }
  .u-mb80--tb {
    margin-bottom: 80px;
  }
  .u-mb85--tb {
    margin-bottom: 85px;
  }
  .u-mb90--tb {
    margin-bottom: 90px;
  }
  .u-mb95--tb {
    margin-bottom: 95px;
  }
  .u-mb100--tb {
    margin-bottom: 100px;
  }
  .u-mb110--tb {
    margin-bottom: 110px;
  }
  .u-mb120--tb {
    margin-bottom: 120px;
  }
  .u-mb130--tb {
    margin-bottom: 130px;
  }
  .u-mb140--tb {
    margin-bottom: 140px;
  }
  .u-mb150--tb {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 767px) {
  .u-mb0--sp {
    margin-bottom: 0px;
  }
  .u-mb5--sp {
    margin-bottom: 5px;
  }
  .u-mb10--sp {
    margin-bottom: 10px;
  }
  .u-mb15--sp {
    margin-bottom: 15px;
  }
  .u-mb20--sp {
    margin-bottom: 20px;
  }
  .u-mb25--sp {
    margin-bottom: 25px;
  }
  .u-mb30--sp {
    margin-bottom: 30px;
  }
  .u-mb35--sp {
    margin-bottom: 35px;
  }
  .u-mb40--sp {
    margin-bottom: 40px;
  }
  .u-mb45--sp {
    margin-bottom: 45px;
  }
  .u-mb50--sp {
    margin-bottom: 50px;
  }
  .u-mb55--sp {
    margin-bottom: 55px;
  }
  .u-mb60--sp {
    margin-bottom: 60px;
  }
  .u-mb65--sp {
    margin-bottom: 65px;
  }
  .u-mb70--sp {
    margin-bottom: 70px;
  }
  .u-mb75--sp {
    margin-bottom: 75px;
  }
  .u-mb80--sp {
    margin-bottom: 80px;
  }
  .u-mb85--sp {
    margin-bottom: 85px;
  }
  .u-mb90--sp {
    margin-bottom: 90px;
  }
  .u-mb95--sp {
    margin-bottom: 95px;
  }
  .u-mb100--sp {
    margin-bottom: 100px;
  }
  .u-mb110--sp {
    margin-bottom: 110px;
  }
  .u-mb120--sp {
    margin-bottom: 120px;
  }
  .u-mb130--sp {
    margin-bottom: 130px;
  }
  .u-mb140--sp {
    margin-bottom: 140px;
  }
  .u-mb150--sp {
    margin-bottom: 150px;
  }
  .u-mb160--sp {
    margin-bottom: 160px;
  }
  .u-mb170--sp {
    margin-bottom: 170px;
  }
  .u-mb180--sp {
    margin-bottom: 180px;
  }
  .u-mb190--sp {
    margin-bottom: 190px;
  }
  .u-mb200--sp {
    margin-bottom: 200px;
  }
  .u-mb210--sp {
    margin-bottom: 210px;
  }
  .u-mb220--sp {
    margin-bottom: 220px;
  }
  .u-mb230--sp {
    margin-bottom: 230px;
  }
  .u-mb240--sp {
    margin-bottom: 240px;
  }
  .u-mb250--sp {
    margin-bottom: 250px;
  }
  .u-mb260--sp {
    margin-bottom: 260px;
  }
  .u-mb270--sp {
    margin-bottom: 270px;
  }
  .u-mb280--sp {
    margin-bottom: 280px;
  }
  .u-mb290--sp {
    margin-bottom: 290px;
  }
  .u-mb300--sp {
    margin-bottom: 300px;
  }
}
.u-mr10 {
  margin-right: 10px;
}

.u-mr20 {
  margin-right: 20px;
}

/* padding top */
.u-pt0 {
  padding-top: 0px;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pt15 {
  padding-top: 15px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt50 {
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .u-pt0-sp {
    padding-top: 0;
  }
}
.u-px0 {
  padding-left: 0;
  padding-right: 0;
}

/* padding right */
.u-pr0 {
  padding-right: 0px;
}

.u-pr10 {
  padding-right: 10px;
}

.u-pr15 {
  padding-right: 15px;
}

.u-pr20 {
  padding-right: 20px;
}

.u-pr30 {
  padding-right: 30px;
}

.u-pr40 {
  padding-right: 40px;
}

.u-pr50 {
  padding-right: 40px;
}

@media screen and (max-width: 1080px) {
  .u-pr0--tb {
    padding-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .u-pr0--sp {
    padding-right: 0px;
  }
  .u-pr20--sp {
    padding-right: 20px;
  }
}
/* padding left */
.u-pl0 {
  padding-left: 0px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-pl15 {
  padding-left: 15px;
}

.u-pl20 {
  padding-left: 20px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-pl50 {
  padding-left: 40px;
}

@media screen and (max-width: 1080px) {
  .u-pl20--tb {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .u-pl0--sp {
    padding-left: 0px;
  }
}
/* text align */
.u-text-center {
  text-align: center;
}

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

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

@media screen and (max-width: 767px) {
  .u-text-left--sp {
    text-align: left;
  }
  .u-text-center--sp {
    text-align: center;
  }
}
/* レスポンシブの改行 */
.u-pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-pc-none {
    display: block;
  }
}

.u-tb-show {
  display: none;
}
@media screen and (max-width: 1080px) {
  .u-tb-show {
    display: block;
  }
}

.u-tb-none {
  display: block;
}
@media screen and (max-width: 1080px) {
  .u-tb-none {
    display: none;
  }
}

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

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

/* Color */
.u-color-main {
  color: #ec911b;
}

.u-color-white {
  color: #fff;
}

/* BG Color */
.u-bg-gray {
  background-color: #eaf1f3;
}

/* tel number */
.u-tel {
  color: inherit;
  text-decoration: none;
}
.u-tel:hover {
  opacity: 1;
}

/* flame */
.u-flame01 {
  padding: 22px 22px 22px 22px;
  border-radius: 10px;
  background-color: rgba(230, 232, 239, 0.51);
}
@media screen and (max-width: 767px) {
  .u-flame01 {
    padding: 15px 15px 15px 15px;
  }
}

/* font */
.u-font13 {
  font-size: 13px;
}

.u-font14 {
  font-size: 14px;
}

.u-font15 {
  font-size: 15px;
}

.u-font18 {
  font-size: 18px;
}

.u-font20 {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .u-font13--sp {
    font-size: 13px;
  }
}

@media screen and (max-width: 1080px) {
  .u-font16--tb {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .u-font16--sp {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .u-font14--sp {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .u-font13--sp {
    font-size: 13px;
  }
}

/* font family */
.u-font-family {
  font-family: "Noto Sans JP", sans-serif;
}

.u-bold {
  font-weight: bold;
}

/* color */
.u-text-light {
  color: #756a78;
}

/* indent */
.u-indent {
  text-indent: 1em;
}

/* wide */
.u-w100 {
  width: 100%;
}

.u-w700 {
  width: 700px;
  max-width: 100%;
  margin-inline: auto;
}

.u-w900 {
  width: 900px;
  max-width: 100%;
  margin-inline: auto;
}

.u-w1000 {
  width: 1000px;
  max-width: 100%;
  margin-inline: auto;
}

/* Link */
.u-mail {
  color: #ec911b;
}
