@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url(https://use.typekit.net/hhx5tjs.css);
@import url(https://use.typekit.net/kyf7dmh.css);
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: top;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 360px) {
  html {
    font-size: 60%;
  }
}



article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

picture {
  display: inline-block;
}

body {
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  background: #fff;
}
body.noscroll {
  overflow: hidden;
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

.wrapper {
  overflow-x: hidden;
}

h2,h3,h4 {
  font-weight: 600;
}

p {
  line-height: 1.8;
  font-weight: lighter;
}

ol, ul, menu, nav {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=text],
input[type=email],
input[type=password],
input[type=submit],
input[type=reset],
button,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button, input[type=reset], input[type=submit] {
  cursor: pointer;
}

button {
  display: block;
  cursor: default;
}

a {
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

main {
  margin-left: 16rem;
}
@media screen and (max-width: 1080px) {
  main {
    margin-left: 0;
  }
}

.caveat {
  font-family: "Caveat", cursive;
}

.inner {
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 920px) {
  .inner {
    width: 90%;
  }
}

.inner810 {
  max-width: 81rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 850px) {
  .inner810 {
    width: 90%;
  }
}

.inner840 {
  max-width: 84rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 900px) {
  .inner840 {
    width: 90%;
  }
}

.inner950 {
  max-width: 95rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 990px) {
  .inner950 {
    width: 90%;
  }
}

.inner1097 {
  max-width: 109.8rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1180px) {
  .inner1097 {
    width: 90%;
  }
}

.inner1100 {
  max-width: 110rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1140px) {
  .inner1100 {
    width: 90%;
  }
}

.kiwi {
  font-family: "Kiwi Maru", serif;
}

a {
  color: #000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
a:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  display: block;
}

p {
  font-weight: 400;
}

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

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

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

/* フェイドアップ */
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeLeft02 {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

.fadeLeft03 {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeRight02 {
  animation-name: fadeRight02Anime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight02Anime {
  from {
    opacity: 0;
    transform: translateX(80vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/* ボタンベース */
/* ベースはheader.php */
.btn00 {
  width: 100%;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  background-color: #F0F0F0;
  margin-bottom: 1rem;
  color: #fff;
}

/* オレンジグラデーションボタン */
.btn01 {
  background: linear-gradient(91.44deg, #E84530 -1.01%, #F39839 100%);
}

/* LINEグリーンボタン */
.btn02 {
  background: #00C300;
}

/* グレーボタン */
.btn03 {
  color: #000;
  text-align: center;
}

/* トップページ タイトル */
.ttlbox {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 4rem;
  color: #E8953E;
  line-height: 1;
}
.ttlbox h2 {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .ttlbox {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 580px) {
  .ttlbox {
    font-size: 2.8rem;
  }
}
.ttlbox .caveat {
  font-size: 3rem;
  color: #000;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .ttlbox .caveat {
    font-size: 2.2rem;
  }
}
.ttlbox p {
  line-height: 1;
}

/* 下層ページ タイトル */
.ttlbox02 {
  text-align: left;
  margin-bottom: 5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .ttlbox02 {
    margin-bottom: 3.5rem;
  }
}
.ttlbox02 .garamond {
  font-size: 1.7rem;
  color: #9fa0a0;
  margin-bottom: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .ttlbox02 .garamond {
    font-size: 1.2rem;
  }
}
.ttlbox02 h2 {
  font-size: 4.1rem;
  font-weight: lighter;
  color: #003B82;
}
@media screen and (max-width: 768px) {
  .ttlbox02 h2 {
    font-size: 2.5rem;
  }
}

/*リンクボックス*/
.linkbox {
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1080px) {
  .linkbox {
    flex-direction: column;
    justify-content: center;
  }
}
.linkbox .btn00 {
  height: 6rem;
  width: 36rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1080px) {
  .linkbox .btn00 {
    width: 32rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .linkbox .btn00 {
    width: 28rem;
  }
}
.linkbox .btn00 img {
  aspect-ratio: 1;
}
.linkbox .btn00 p {
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .linkbox .btn00 p {
    font-size: 14px;
  }
}
.linkbox .btn01 {
  gap: 1rem;
}
.linkbox .btn01 img {
  width: 4rem;
}
@media screen and (max-width: 768px) {
  .linkbox .btn01 img {
    width: 3rem;
  }
}
.linkbox .btn02 {
  gap: 0.5rem;
}
.linkbox .btn02 img {
  width: 3rem;
}
@media screen and (max-width: 768px) {
  .linkbox .btn02 img {
    width: 3rem;
  }
}
.linkbox .btn02 p span {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  .linkbox .btn02 p span {
    font-size: 14px;
  }
}

/* 黒背景のタイトルバー */
/* 事業紹介ページではpタグにクラス付与 */
.bl-ttl {
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 2;
  font-size: 1.9rem;
  width: 100%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .bl-ttl {
    font-size: 1.3rem;
  }
}

/* プライバシーポリシーページ */
/* サイトのご利用にあたって */
.main-poricy, .main-site {
  padding-top: 20.8rem;
  margin-bottom: 8.4rem;
}
.main-poricy .ttlbox, .main-site .ttlbox {
  margin-bottom: 8.4rem;
}
.main-poricy .txt, .main-site .txt {
  font-size: 1.5rem;
  margin-bottom: 5.4rem;
}
.main-poricy .box, .main-site .box {
  margin-bottom: 5.4rem;
}
.main-poricy .box h3, .main-site .box h3 {
  font-size: 1.8rem;
  line-height: 2;
  color: #0068b6;
}
.main-poricy .box p, .main-site .box p {
  font-size: 1.5rem;
  line-height: 2.5;
}
.main-poricy .date, .main-site .date {
  text-align: end;
  font-size: 1.5rem;
  margin-bottom: 20rem;
}

/* モーダル */
.modal-sw {
  position: relative;
  cursor: pointer;
  width: 100%;
  color: #E8953E;
  text-align: center;
  padding: 1rem 0;
  border: 2px solid #E8953E;
  border-radius: 1rem;
  margin-top: 2rem;
  transition: all 0.3s;
}
.modal-sw p {
  line-height: 1;
}
.modal-sw:hover {
  color: #fff;
  background-color: #E8953E;
}

.modal {
  transition: all 0.3s;
  transform: scale(0);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 9999;
  padding: 5rem;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
}
.modal .modalbox {
  position: relative;
  background-color: #fff;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .modal .modalbox {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .modal .modalbox {
    padding: 5%;
  }
}
.modal .modalbox .pop-img {
  width: 30%;
  float: left;
  margin: 0 2rem 2rem 0;
}
.modal .modalbox .pop-h3 {
  font-size: 2rem;
  color: #F39839;
}
.modal .modalbox .pop-txt {
  font-size: 1.6rem;
}
.modal .modalbox .closeBtn {
  width: 4rem;
  aspect-ratio: 1;
  position: absolute;
  top: -5rem;
  right: 0rem;
  cursor: pointer;
  padding: 0;
}
.modal.open {
  transform: scale(1);
}

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

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

/* br-sp */
.br-sp_1420 {
  display: none;
}
@media screen and (max-width: 1420px) {
  .br-sp_1420 {
    display: block;
  }
}

.br-sp_1380 {
  display: none;
}
@media screen and (max-width: 1380px) {
  .br-sp_1380 {
    display: block;
  }
}

.br-sp_1280 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br-sp_1280 {
    display: block;
  }
}

.br-sp_1270 {
  display: none;
}
@media screen and (max-width: 1270px) {
  .br-sp_1270 {
    display: block;
  }
}

.br-sp_1180 {
  display: none;
}
@media screen and (max-width: 1180px) {
  .br-sp_1180 {
    display: block;
  }
}

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

.br-sp_820 {
  display: none;
}
@media screen and (max-width: 800px) {
  .br-sp_820 {
    display: block;
  }
}

.br-sp_580 {
  display: none;
}
@media screen and (max-width: 580px) {
  .br-sp_580 {
    display: block;
  }
}

.br-sp_480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp_480 {
    display: block;
  }
}

/* br-sp_oo-oo */
/* br-pc */
/* br-pc_oo-oo */
/*ヘッダー*/
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 16rem;
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1% 1% 2%;
}
@media screen and (max-width: 1080px) {
  .header {
    width: 100%;
    height: unset;
    flex-direction: row;
    padding: 0 1%;
    box-shadow: 5px 0 10px #333;
  }
}
.header .left {
  margin-top: 4rem;
}
@media screen and (max-width: 1080px) {
  .header .left {
    width: 7rem;
    margin: 1rem 5%;
  }
}
.header .right {
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .header .right {
    display: none;
  }
}
.header .right .nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 2rem 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.header .right .nav ul li {
  width: 50%;
  display: flex;
  justify-content: center;
}
.header .right .nav ul li a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  gap: 3px;
}
.header .right .nav ul li a img {
  width: 14px;
  aspect-ratio: 1;
  margin-inline: auto;
}

/*ハンバーガースイッチ*/
.sp-menu {
  display: none;
}
@media screen and (max-width: 1080px) {
  .sp-menu {
    display: block;
  }
}
.sp-menu .list .item {
  position: relative;
}
.sp-menu .list .item .menu-trigger {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3rem;
  cursor: pointer;
}
.sp-menu .list .item .menu-trigger span {
  display: inline-block;
  height: 2px;
  width: 100%;
  background-color: #E8953E;
  position: absolute;
  left: 0;
}
.sp-menu .list .item .menu-trigger span:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.sp-menu .list .item .menu-trigger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.sp-menu .list .item .menu-trigger span:nth-child(3) {
  top: 100%;
  transition: all 0.3s;
}
.sp-menu .list .item .menu-trigger.open span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
  transform-origin: center;
}
.sp-menu .list .item .menu-trigger.open span:nth-child(2) {
  opacity: 0;
}
.sp-menu .list .item .menu-trigger.open span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
}

/*SPメニュー*/
.sp-nav {
  display: none;
  width: 50%;
  height: 100vh;
  min-width: 35rem;
  background-color: #fff;
  position: fixed;
  right: 0;
  z-index: 10;
  padding-top: 10rem;
}
@media screen and (max-width: 580px) {
  .sp-nav {
    min-width: unset;
    width: 100%;
  }
}
.sp-nav ul {
  display: flex;
  flex-direction: column;
}
.sp-nav ul li a {
  width: 34rem;
  margin: 1rem auto;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 1.6rem;
  position: relative;
}
.sp-nav ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(91.44deg, #E84530 -1.01%, #F39839 100%);
}
.sp-nav ul li a:hover {
  opacity: 0.8;
}
.sp-nav ul li a span {
  font-size: 1.2rem;
  display: block;
  padding-top: 5px;
}

/*メインビジュアル*/
@media screen and (max-width: 1080px) {
  .mv {
    padding-top: 6.6rem;
  }
}
.mv .box {
  display: flex;
  align-items: start;
  position: relative;
  z-index: 5;
}
.mv .box .left {
  width: 90rem;
  width: 70.31vw;
  position: relative;
  max-height: 73rem;
}
.mv .box .left img {
  max-height: 73rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 0 6rem 0;
}
.mv .box .left >img {
  /*min-height: 30rem;*/
}
@media screen and (min-width: 1281px) {
  .mv .box .left {
    width: 70vw;
  }
}
@media screen and (min-width: 1481px) {
  .mv .box .left {
    width: 100vw;
  }
}
.mv .box .left .txtbox {
  display: flex;
  position: absolute;
  bottom: 3rem;
  left: 2rem;
}
@media screen and (max-width: 768px) {
  .mv .box .left .txtbox {
    flex-direction: column;
    left: 0rem;
    bottom: -40%;
  }
}
@media screen and (max-width: 580px) {
  .mv .box .left .txtbox {
    bottom: -22rem;
  }
}
.mv .box .left .txtbox img {
  width: 25rem;
  width: 19.53vw;
  transform: translateY(3rem);
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .mv .box .left .txtbox img {
    transform: translateY(2rem);
    width: 18rem;
  }
}
.mv .box .left .txtbox p {
  transform: translate(-10rem, 6rem);
}
@media screen and (max-width: 768px) {
  .mv .box .left .txtbox p {
    transform: translate(0rem, 0rem);
  }
}
.mv .box .left .txtbox p span {
  font-size: 2.6rem;
  font-size: 2.03vw;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background-color: #2090A9;
  display: block;
  margin-bottom: 1rem;
  border-radius: 0 10px 10px 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 8px 8px 9rem;
}
@media screen and (max-width: 768px) {
  .mv .box .left .txtbox p span {
    font-size: 3vw;
    padding: 8px 8px 8px 7rem;
  }
}
.mv .box .left .txtbox p span:nth-child(2) {
  font-size: 4.6rem;
  font-size: 3.59vw;
}
@media screen and (max-width: 768px) {
  .mv .box .left .txtbox p span:nth-child(2) {
    font-size: 4.6vw;
  }
}
.mv .box .left .banner {
  max-width: 650px;
  width: 70vw;
  position: absolute;
  bottom: -28vw;
  transform: translate(-50%, 0);
  left: calc(8rem + 50%);
}
.mv .box .left .banner img {
  border-radius: 0;
}
@media screen and (min-width: 1281px) {
  .mv .box .left .banner {
    bottom: -34rem;
  }
}
@media screen and (max-width: 1080px) {
  .mv .box .left .banner {
    width: 300px;
    left: 50vw;
    bottom: -28rem;
  }
}
@media screen and (max-width: 768px) {
  .mv .box .left .banner {
    bottom: -33rem;
  }
}
@media screen and (max-width: 580px) {
  .mv .box .left .banner {
    bottom: -40rem;
  }
}
.mv .box .right {
  font-weight: 500;
  width: calc(100% - 90rem);
  width: calc(100% - 70vw);
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .mv .box .right {
    padding-top: 2rem;
  }
}
.mv .box .right .inbox {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  gap: 2rem;
}
@media screen and (min-width: 1481px) {
  .mv .box .right .inbox {
    margin-inline: 0;
    margin-left: 5rem;
  }
}
.mv .box .right .inbox .txt00 {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.mv .box .right .inbox .txt01 {
  font-size: 4rem;
  font-size: 3.13vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv .box .right .inbox .txt01 {
    font-size: 4.5vw;
  }
}
.mv .box .right .inbox .txt01 span {
  border-radius: 3px;
  width: 4.6rem;
  width: 3.59vw;
  aspect-ratio: 1;
  display: inline-block;
  padding: 3px;
  margin-bottom: 1rem;
  line-height: 0.9;
}
@media screen and (max-width: 768px) {
  .mv .box .right .inbox .txt01 span {
    width: 5.6vw;
    padding: 8%;
  }
}
.mv .box .right .inbox .txt01 span:nth-child(odd) {
  background-color: #F39839;
}
.mv .box .right .inbox .txt01 span:nth-child(even) {
  background-color: #FABD15;
}
.mv .box .right .inbox .txt02 {
  font-size: 4.6rem;
  font-size: 3.59vw;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .mv .box .right .inbox .txt02 {
    font-size: 6.5vw;
  }
}
.mv .box .right .inbox .txt02 span {
  margin-bottom: 1rem;
}
.mv .box .right .inbox .txt02 span:nth-child(odd) {
  color: #FABD15;
}
.mv .box .right .inbox .txt02 span:nth-child(even) {
  color: #F39839;
}
.mv .box .right .inbox .txt02 .up {
  transform: translateY(-6px);
}
.mv .box02 {
  background-color: #FFF2D1;
  border-radius: 0 0 0 6rem;
  width: 1010px;
  width: 78.91vw;
  margin-left: auto;
  padding: 5rem 0 4rem 8rem;
  margin-top: -13rem;
  position: relative;
  z-index: 2;
}
.mv .box02 .banner {
  max-width: 1000px;
  width: 90%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1080px) {
  .mv .box02 {
    width: 75vw;
    padding: 15rem 0 4rem 8rem;
  }
}
@media screen and (max-width: 768px) {
  .mv .box02 {
    width: 90%;
    padding: 21rem 0 1rem;
    margin-top: -25%;
  }
  .mv .box02 .banner {
    margin-inline: auto;
  }
}
@media screen and (max-width: 580px) {
  .mv .box02 {
    width: 90%;
    padding: 3rem 0 1rem;
    margin-top: 3%;
  }
}

.mv .box02 .txt01 {
  color: #E8953E;
  font-size: 3.2rem;
  font-size: 2.5vw;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1180px) {
  .mv .box02 .txt01 {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .mv .box02 .txt01 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1180px) {
  .mv .box02 .linkbox {
    flex-direction: column;
  }
  .mv .box02 .linkbox .btn00 {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .mv .box02 .linkbox .btn00 {
    font-size: 14px;
    width: 28rem;
  }
  .mv .box02 .linkbox .btn00 p {
    font-size: 14px;
  }
  .mv .box02 .linkbox .btn01 {
    font-size: 14px;
  }
  .mv .box02 .linkbox .btn01 img {
    width: 3rem;
  }
  .mv .box02 .linkbox .btn02 img {
    width: 2.5rem;
  }
  .mv .box02 .linkbox .btn02 p {
    font-size: 14px;
  }
  .mv .box02 .linkbox .btn02 p span {
    font-size: 14px;
  }
  .mv .box02 .link-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    flex-direction: row;
    gap: 3%;
    padding: 1rem;
    background-color: #fff5;
  }
  .mv .box02 .link-fixed .btn00 {
    width: 24rem;
  }
  .mv .box02 .link-fixed .btn01 p,.mv .box02 .link-fixed .btn02 p,.mv .box02 .link-fixed .btn02 p span {
    font-size: 12px;
  }
}
/* Youtube */
.youtube {
  width: 90%;
  margin: 8rem auto;
  aspect-ratio: 16 / 9;
}
@media screen and (max-width: 768px) {
  .youtube {
    margin: -3rem auto 4rem;
  }
}
.ttlbox000 {
  margin-top: 7rem;
}

.sec01 {
  background-image: url("../img/sec01/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  text-align: center;
  color: #fff;
  margin-top: 12rem;
  padding-top: 8rem;
  overflow-x: clip;
  position: relative;
}
@media screen and (max-width: 580px) {
  .sec01 {
    padding-inline: 3%;
  }
}
.sec01 .parts02 {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.3rem;
}
.sec01 .ttl {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.sec01 .ttl h2 {
  font-weight: 500;
  font-size: 3.2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .sec01 .ttl h2 {
    font-size: 2.4rem;
  }
}
.sec01 .ttl h2::after {
  content: "";
  display: inline-block;
  width: 103%;
  height: 2.4rem;
  position: absolute;
  bottom: 0rem;
  left: -1%;
  background-color: #E84530;
  z-index: -1;
  /*@media screen and (min-width: 1281px) {
      width: calc(81vw - 16rem);
  }
  @media screen and (min-width: 1381px) {
      width: calc(75vw - 18rem);
  }
  @media screen and (min-width: 1481px) {
      width: calc(75vw - 20rem);
  }
  @media screen and (min-width: 1581px) {
      width: calc(75vw - 22rem);
  }
  @media screen and (min-width: 1681px) {
      width: calc(75vw - 24rem);
  }
  @media screen and (min-width: 1781px) {
      width: calc(75vw - 26rem);
  }
  @media screen and (min-width: 1881px) {
      width: calc(75vw - 29rem);
  }
  @media screen and (min-width: 1981px) {
      width: calc(75vw - 31rem);
  }*/
}
@media screen and (min-width: 1281px) {
  .sec01 .ttl h2::after {
    width: calc(100% + 3vw);
  }
}
@media screen and (max-width: 768px) {
  .sec01 .ttl h2::after {
    height: 1.5rem;
  }
}
.sec01 .ttl h2 span {
  position: relative;
  z-index: 5;
}
.sec01 .ttl h2 span::after {
  content: "";
  display: none;
  width: 103%;
  height: 2.4rem;
  position: absolute;
  bottom: 0rem;
  left: -1%;
  background-color: #E84530;
  z-index: -1;
}
@media screen and (max-width: 1270px) {
  .sec01 .ttl h2 span::after {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .ttl h2 span::after {
    height: 1.5rem;
  }
}
.sec01 .ttl .parts {
  position: absolute;
  right: -17rem;
  top: -1.2rem;
  width: 18rem;
  z-index: 5;
}
@media screen and (min-width: 1281px) {
  .sec01 .ttl .parts {
    right: -19rem;
  }
}
@media screen and (max-width: 1270px) {
  .sec01 .ttl .parts {
    top: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .ttl .parts {
    top: 3.1rem;
    width: 12rem;
    right: -11rem;
  }
}
.sec01 .subttl {
  margin-top: 3.5rem;
  margin-bottom: 4rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .sec01 .subttl {
    font-size: 1.4rem;
  }
}
.sec01 .ul-01 {
  display: flex;
  justify-content: center;
  max-width: 940px;
  width: 100%;
  margin-inline: auto;
  padding: 0rem 0 19rem;
}
@media screen and (max-width: 1180px) {
  .sec01 .ul-01 {
    padding-inline: 3%;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .ul-01 {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.sec01 .ul-01 li {
  width: 20%;
}
.sec01 .ul-01 li:nth-child(even) {
  transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  .sec01 .ul-01 li {
    width: calc((100% - 1rem) / 2);
    max-width: 20rem;
  }
  .sec01 .ul-01 li:nth-child(even) {
    transform: translateY(0%);
  }
}

.sec02 .ttlbox {
  margin: 14rem auto 4rem;
}
.sec02 .ttlbox h2 {
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec02 .ttlbox h2 {
    font-size: 3.2rem;
  }
}
.sec02 .ttlbox h2 span {
  font-size: 2rem;
  color: #000;
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .sec02 .ttlbox h2 span {
    font-size: 1.6rem;
  }
}
.sec02 .ul-02 {
  display: flex;
  gap: 2rem;
  max-width: 94rem;
  width: 94%;
  margin-inline: auto;
}
@media screen and (max-width: 1080px) {
  .sec02 .ul-02 {
    flex-direction: column;
  }
}
.sec02 .ul-02 li {
  border-radius: 1rem;
  width: calc((100% - 4rem) / 3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}
@media screen and (max-width: 1080px) {
  .sec02 .ul-02 li {
    width: 100%;
  }
}
.sec02 .ul-02 li .point {
  font-size: 4rem;
  text-align: center;
  padding: 1rem 0 1.5rem;
  color: #fff;
  background: linear-gradient(90deg, #E8953E 0%, #E6B12D 100%);
  border-radius: 1rem 1rem 0 0;
  line-height: 1;
}
.sec02 .ul-02 li .point span {
  font-size: 8rem;
  display: contents;
  line-height: 0.6;
}
.sec02 .ul-02 li h3 {
  font-weight: 500;
  font-size: 2.6rem;
  color: #E8953E;
  margin: 3rem 0;
  text-align: center;
}
.sec02 .ul-02 li h3 span {
  font-size: 1.6rem;
  display: block;
}
.sec02 .ul-02 li .txt {
  padding: 0 3rem 3rem 3rem;
  font-size: 1.4rem;
}
.sec02 .ul-02 li .dino01 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 6.5rem;
}
@media screen and (max-width: 1200px) {
  .sec02 .ul-02 li .dino01 {
    transform: translate(0%, -100%);
  }
}
@media screen and (max-width: 580px) {
  .sec02 .ul-02 li .dino01 {
    transform: translate(0%, 0%);
  }
}
.sec02 .ul-02 li .dino02 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  width: 8rem;
}
@media screen and (max-width: 1200px) {
  .sec02 .ul-02 li .dino02 {
    transform: translate(0%, 100%);
  }
}

.sec03 {
  padding-top: 28rem;
}
.sec03 .box {
  display: flex;
  justify-content: end;
  width: 90%;
  padding: 3.8rem 8rem 3.8rem 3.8rem;
  margin-left: auto;
  gap: 3rem;
  background-image: url("../img/sec03/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  position: relative;
}
@media screen and (min-width: 1481px) {
  .sec03 .box {
    justify-content: center;
  }
}
@media screen and (max-width: 1080px) {
  .sec03 .box {
    flex-direction: column-reverse;
    justify-content: center;
    width: 95%;
    padding: 3rem 3% 3rem 5%;
  }
}
.sec03 .box .parts03 {
  position: absolute;
  top: 0;
  right: 12rem;
  width: 10rem;
  transform: translateY(-50%);
}
.sec03 .box .left {
  width: 40rem;
  position: absolute;
  top: 38%;
  left: -5%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 1481px) {
  .sec03 .box .left {
    left: -11%;
  }
}
@media screen and (max-width: 1280px) {
  .sec03 .box .left {
    width: 40%;
  }
}
@media screen and (max-width: 1080px) {
  .sec03 .box .left {
    width: 90%;
    max-width: 34rem;
    margin-inline: auto;
    position: static;
    transform: translate(0, 0);
  }
}
.sec03 .box .right {
  width: 55rem;
}
@media screen and (min-width: 1281px) {
  .sec03 .box .right {
    width: 44vw;
  }
}
@media screen and (max-width: 1280px) {
  .sec03 .box .right {
    width: 65%;
  }
}
@media screen and (max-width: 1080px) {
  .sec03 .box .right {
    width: 90%;
  }
}
.sec03 .box .right .ttlbox {
  text-align: left;
  margin-bottom: 1rem;
}
.sec03 .box .right .txt01, .sec03 .box .right .txt02 {
  text-decoration-line: underline;
  text-decoration-color: #828282;
  text-underline-offset: 5px;
}
.sec03 .box .right .txt01 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1080px) {
  .sec03 .box .right .txt01 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1080px) {
  .sec03 .box .right .txt02 {
    font-size: 1.4rem;
  }
}

.sec04 .ul-04 {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 900px;
  width: 100%;
  margin: 14rem auto 3rem;
}
@media screen and (max-width: 1180px) {
  .sec04 .ul-04 {
    padding-inline: 3%;
  }
}
.sec04 .ul-04 li {
  width: calc((100% - 6rem) / 3);
  border: 2px solid #969696;
  border-radius: 1rem;
  padding: 2rem 1.8rem 8rem;
  position: relative;
}
@media screen and (max-width: 980px) {
  .sec04 .ul-04 li {
    width: calc((100% - 3rem) / 2);
  }
}
@media screen and (max-width: 580px) {
  .sec04 .ul-04 li {
    width: 100%;
  }
}
.sec04 .ul-04 li .parts {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 980px) {
  .sec04 .ul-04 li .parts {
    display: none;
  }
}
.sec04 .ul-04 li .li-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.sec04 .ul-04 li .li-img img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.sec04 .ul-04 li h3 {
  font-weight: 500;
  font-size: 1.6rem;
  color: #E8953E;
  text-align: center;
  padding: 2rem 0;
}
.sec04 .ul-04 li .modal-sw {
  position: absolute;
  bottom: 2rem;
  width: calc(100% - 4rem);
  left: 50%;
  transform: translate(-50%, 0%);
}
.sec04 .ul-04 li > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}
.sec04 .video-link {
  width: 44rem;
  margin-inline: auto;
  border-radius: 1rem;
  padding: 5px;
  background: linear-gradient(91.16deg, #E8953E 0%, #E6B12D 100%);
  box-shadow: 4px 4px 0px 0px #126D52;
  transition: all 0.3s;
}
@media screen and (max-width: 580px) {
  .sec04 .video-link {
    width: 90%;
    margin-inline: auto;
  }
}
.sec04 .video-link a {
  width: 100%;
  padding: 1rem 0;
  border-radius: 1rem;
  border: 2px dashed #FFF0CB;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 580px) {
  .sec04 .video-link a {
    gap: 1rem;
  }
}
.sec04 .video-link a img {
  width: 4rem;
}
@media screen and (max-width: 580px) {
  .sec04 .video-link a img {
    width: 3rem;
  }
}
.sec04 .video-link a p {
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 580px) {
  .sec04 .video-link a p {
    font-size: 1.4rem;
  }
}
.sec04 .video-link a:hover {
  opacity: 1;
}
.sec04 .video-link:hover {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.sec05 {
  background-color: #F0F0F0;
  margin-top: 22rem;
}
.sec05 .box {
  background-color: #fff;
  width: 82rem;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 5px;
  box-shadow: 10px 10px 0px 0px #E8953E;
  transform: translateY(-50%);
}
@media screen and (max-width: 980px) {
  .sec05 .box {
    width: 90%;
    margin-inline: auto;
  }
}
.sec05 .box .inbox {
  border-radius: 1rem;
  border: 2px dashed #E8953E;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}
@media screen and (max-width: 980px) {
  .sec05 .box .inbox {
    flex-direction: column;
    gap: 3rem;
  }
}
.sec05 .box .inbox .left {
  width: 24rem;
  border-right: 1.5px solid #000;
}
@media screen and (max-width: 980px) {
  .sec05 .box .inbox .left {
    width: 100%;
    border-right: none;
  }
}
.sec05 .box .inbox .left .ttlbox {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .sec05 .box .inbox .left .ttlbox {
    text-align: center;
  }
}
.sec05 .box .inbox .right {
  width: calc(100% - 24rem);
  padding-left: 6rem;
}
@media screen and (max-width: 980px) {
  .sec05 .box .inbox .right {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.sec05 .box .inbox .right p {
  line-height: 1;
}
.sec05 .box .inbox .right .txt01 {
  font-size: 2.6rem;
  font-weight: 500;
  display: flex;
  align-items: end;
}
.sec05 .box .inbox .right .txt01 span {
  font-size: 3.2rem;
  margin-inline: 10px;
}
@media screen and (max-width: 980px) {
  .sec05 .box .inbox .right .txt01 {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .sec05 .box .inbox .right .txt01 {
    font-size: 2rem;
  }
  .sec05 .box .inbox .right .txt01 span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 580px) {
  .sec05 .box .inbox .right .txt01 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.sec05 .box .inbox .right .txt00 {
  font-size: 2rem;
  margin: 20px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sec05 .box .inbox .right .txt00 img {
  width: 30px;
  aspect-ratio: 1;
  
}
@media screen and (max-width: 980px) {
  .sec05 .box .inbox .right .txt00 {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .sec05 .box .inbox .right .txt00 {
    font-size: 2rem;
  }
}
.flash {
  animation: flash 2s linear infinite;
}
@keyframes flash {
  0% {
      opacity: 1;
  }
  25% {
      opacity: 0;
  }
  50% {
      opacity: 1;
  }
  75% {
      opacity: 1;
  }
  100% {
      opacity: 1;
  }
}
.sec05 .box .inbox .right .txt02 {
  font-size: 6rem;
  color: #E84530;
  text-shadow: 4px 4px 0px #FABD15;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 980px) {
  .sec05 .box .inbox .right .txt02 {
    font-size: 4rem;
  }
}
.sec05 .box .inbox .right .txt02 span {
  font-size: 2rem;
  vertical-align: baseline;
}
.sec05 .txt03 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .sec05 .txt03 {
    font-size: 1.6rem;
  }
}
.sec05 .txt04 {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 500;
  padding-bottom: 4rem;
  color: #E8953E;
}
@media screen and (max-width: 768px) {
  .sec05 .txt04 {
    font-size: 3.4rem;
  }
}
.sec05 .link-wrap {
  width: 100%;
  background-image: url("../img/sec05/bg03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}
.sec05 .link-wrap .txt05 {
  color: #fff;
  font-weight: 500;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .sec05 .link-wrap .txt05 {
    font-size: 2rem;
  }
}
.sec05 .link-wrap .linkbox {
  justify-content: center;
}

.column {
  max-width: 800px;
  width: 100%;
  padding-top: 15rem;
  margin-inline: auto;
  margin-bottom: 14rem;
}
@media screen and (max-width: 960px) {
  .column {
    padding-inline: 3%;
  }
}
.column .ttlbox {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .column .ttlbox {
    text-align: center;
  }
}
.column .ul-column {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .column .ul-column {
    padding-inline: 3%;
  }
}
.column .ul-column li {
  width: calc((100% - 6rem) / 3);
}
@media screen and (max-width: 768px) {
  .column .ul-column li {
    width: calc((100% - 3rem) / 2);
  }
}
@media screen and (max-width: 480px) {
  .column .ul-column li {
    width: 100%;
  }
}
.column .ul-column li a {
  width: 100%;
}
.column .ul-column li a .img {
  aspect-ratio: 246/160;
  overflow: hidden;
  margin-bottom: 1rem;
}
.column .ul-column li a .img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.column .ul-column li a .txtbox {
  font-size: 1.4rem;
}

.sec06 {
  padding-bottom: 20rem;
}
.sec06 .ttlbox {
  text-align: left;
  padding-left: 15rem;
  background-color: #FFF2D1;
  border-radius: 0 0 6rem 0;
  padding: 10rem 3rem 3rem 15rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .sec06 .ttlbox {
    padding: 10rem 3rem 3rem 3%;
  }
}
@media screen and (max-width: 580px) {
  .sec06 .ttlbox {
    margin-bottom: 5rem;
  }
}
.sec06 .box {
  overflow-x: clip;
  position: relative;
  z-index: 5;
}
.sec06 .box::after {
  content: "";
  display: inline-block;
  background-color: #FFF2D1;
  width: 54rem;
  height: 20rem;
  border-radius: 0 0 0 6rem;
  position: absolute;
  bottom: -4rem;
  right: 0;
  z-index: -1;
}
.sec06 .box .slider {
  transform: translateX(15rem);
}
@media screen and (max-width: 768px) {
  .sec06 .box .slider {
    transform: translateX(5rem);
  }
}
.sec06 .box .slider .slick-arrow {
  width: 6rem;
  cursor: pointer;
  position: absolute;
  top: -12rem;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 580px) {
  .sec06 .box .slider .slick-arrow {
    width: 4rem;
    top: -4.5rem;
  }
}
.sec06 .box .slider .prev_icon {
  right: 29rem;
}
@media screen and (max-width: 1080px) {
  .sec06 .box .slider .prev_icon {
    right: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .sec06 .box .slider .prev_icon {
    right: 7rem;
  }
}
.sec06 .box .slider .prev_icon:hover {
  background-color: #FFF2D1;
}
.sec06 .box .slider .next_icon {
  right: 37rem;
}
@media screen and (max-width: 1080px) {
  .sec06 .box .slider .next_icon {
    right: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .sec06 .box .slider .next_icon {
    right: 14rem;
  }
}
.sec06 .box .slider .next_icon:hover {
  background-color: #FFF2D1;
}
.sec06 .box .slider .slick-track {
  display: flex;
}
.sec06 .box .slider .slider_item {
  height: auto !important;
  background-color: #fff;
  margin-inline: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #969696;
  box-shadow: 6px 6px 0px 0px #E6B12D;
  margin-bottom: 1rem;
}
.sec06 .box .slider .slider_item .inbox .sli-img {
  aspect-ratio: 240/160;
  margin-bottom: 1rem;
}
.sec06 .box .slider .slider_item .inbox .sli-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sec06 .box .slider .slider_item .inbox .txtbox .tag01 {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 4px 20px;
  border-radius: 4rem;
  border: 1px solid #3c3c3c;
  text-align: center;
}
.sec06 .box .slider .slider_item .inbox .txtbox .name {
  font-size: 1.8rem;
  font-weight: 500;
  color: #E8953E;
  margin: 6px 0 14px;
}
@media screen and (max-width: 580px) {
  .sec06 .box .slider .slider_item .inbox .txtbox .name {
    font-size: 16px;
    margin: 5px 0 10px;
  }
}
.sec06 .box .slider .slider_item .inbox .txtbox .txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 580px) {
  .sec06 .box .slider .slider_item .inbox .txtbox .txt {
    font-size: 12px;
  }
}

/* アコーディオン */
.toggle_contents {
  display: none;
  padding: 5px 10px;
}

.faq {
  background-image: url("../img/faq/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 8rem 0 18rem;
}
@media screen and (max-width: 1180px) {
  .faq {
    padding-inline: 3%;
  }
}
.faq .ttlbox {
  color: #006BAF;
  font-weight: 500;
}
.faq .ttlbox .caveat {
  color: #006BAF;
  font-weight: lighter;
  margin-bottom: 5px;
}
.faq .box .toggle_wrap {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}
.faq .box .toggle_wrap .toggle_switch {
  position: relative;
  cursor: pointer;
  padding: 2rem 4rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 6px 6px 0px 0px #006BAF;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  transition: all 0.3s;
}
.faq .box .toggle_wrap .toggle_switch > img {
  width: 2.5rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .faq .box .toggle_wrap .toggle_switch > img {
    width: 1.8rem;
  }
}
.faq .box .toggle_wrap .toggle_switch > p {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .faq .box .toggle_wrap .toggle_switch > p {
    font-size: 1.6rem;
  }
}
.faq .box .toggle_wrap .toggle_switch::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 14px;
  background: url("../img/faq/arrow.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: transform 0.2s;
}
.faq .box .toggle_wrap .toggle_switch:nth-child(1) {
  margin-top: 0;
}
.faq .box .toggle_wrap .toggle_switch:hover {
  transform: translate(6px, 6px);
  box-shadow: none;
}
.faq .box .toggle_wrap .toggle_switch:hover > img {
  transform: scale(1.1);
}
.faq .box .toggle_wrap .toggle_switch:hover::after {
  transform: translateY(-50%) scale(1.2);
}
.faq .box .toggle_wrap .toggle_switch.open::after {
  transform: rotateZ(180deg);
  top: 46%;
}
.faq .box .toggle_wrap .toggle_contents {
  display: none;
  padding: 0 4rem 4rem 4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .faq .box .toggle_wrap .toggle_contents {
    padding: 0 0 4rem 0;
  }
}
.faq .box .toggle_wrap .toggle_contents .inbox {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.faq .box .toggle_wrap .toggle_contents .inbox img {
  width: 2.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .faq .box .toggle_wrap .toggle_contents .inbox img {
    width: 1.8rem;
  }
}
.faq .box .toggle_wrap .toggle_contents .inbox p {
  padding-top: 4rem;
}

/* トップページから各ページへのリンク */
.link-top {
  padding: 22rem 2rem 18rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .link-top {
    padding: 16.5rem 0 10rem;
  }
}
.link-top .box {
  position: relative;
  max-width: 115.5rem;
  width: 100%;
  aspect-ratio: 1155/500;
  background-color: #EFEFEF;
  margin-bottom: 47rem;
}
@media screen and (max-width: 768px) {
  .link-top .box {
    margin-top: 0rem;
    width: 90%;
    margin-bottom: 17.5rem;
  }
}
.link-top .box .left {
  width: 44rem;
  aspect-ratio: 1;
  background-image: url("../img/top/bg02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: -8vw;
  left: 10.5vw;
  z-index: 5;
}
@media screen and (min-width: 1366px) {
  .link-top .box .left {
    bottom: -6rem;
  }
}
@media screen and (max-width: 768px) {
  .link-top .box .left {
    width: 13.6rem;
    left: 5.5vw;
    bottom: -3rem;
  }
}
.link-top .box .left a {
  width: 100%;
  height: 100%;
  padding: 7.5rem 6rem;
}
@media screen and (max-width: 768px) {
  .link-top .box .left a {
    position: relative;
    padding: 0;
  }
}
.link-top .box .left a .ttlbox02 {
  margin-bottom: 4rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .link-top .box .left a .ttlbox02 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-left: 1.2rem;
  }
}
.link-top .box .left a .ttlbox02 h3 {
  font-size: 4.7rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .link-top .box .left a .ttlbox02 h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .link-top .box .left a .ttlbox02 .garamond {
    margin-bottom: 0;
    letter-spacing: 0;
    text-align: left;
  }
}
.link-top .box .left a .ttlbox02 p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .link-top .box .left a .ttlbox02 p {
    text-align: left;
    font-size: 1rem;
  }
}
.link-top .box .left a > p {
  color: #fff;
  line-height: 2.5;
  margin-bottom: 4rem;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .link-top .box .left a > p {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .link-top .box .left a .btn03 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
  }
  .link-top .box .left a .btn03 span {
    font-size: 1rem;
  }
}
.link-top .box .right {
  width: 58vw;
  max-width: 77.5rem;
  aspect-ratio: 775/500;
  position: absolute;
  left: 38vw;
  top: -10rem;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .link-top .box .right {
    left: unset;
    right: -10%;
    width: 80vw;
    top: -9rem;
  }
}
.link-top .box:last-child {
  margin-bottom: 0;
}
.link-top .box02 {
  margin-left: auto;
  margin-bottom: 28rem;
}
@media screen and (max-width: 768px) {
  .link-top .box02 {
    margin-bottom: 17.5rem;
  }
}
.link-top .box02 .left {
  top: -6rem;
  bottom: unset;
  left: unset;
  right: 10.5vw;
}
@media screen and (max-width: 768px) {
  .link-top .box02 .left {
    top: unset;
    bottom: -3rem;
    right: 5.5vw;
  }
}
.link-top .box02 .right {
  top: -19rem;
  bottom: unset;
  left: unset;
  right: 38vw;
}
@media screen and (max-width: 768px) {
  .link-top .box02 .right {
    top: -9rem;
    right: unset;
    left: -10%;
  }
}
.link-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 100%;
  transform: translateX(-50%);
  background-image: linear-gradient(180deg, rgb(0, 184, 238), rgb(0, 32, 99));
}

/* 採用情報 */
.recruit {
  background-image: url("../img/top/bg03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.recruit a {
  padding: 12rem 0 11rem;
}
@media screen and (max-width: 768px) {
  .recruit a {
    padding: 5rem 0;
  }
}
.recruit a .ttlbox {
  margin-bottom: 4.5rem;
  color: #fff;
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .recruit a .ttlbox {
    margin-bottom: 3rem;
  }
}
.recruit a .txt01 {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .recruit a .txt01 {
    font-size: 1.2rem;
  }
}
.recruit a .ul-rec {
  margin: 3.6rem 0 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.recruit a .ul-rec li {
  width: 33.3333333333%;
}
.recruit a .btn03 {
  margin-inline: auto;
}

/* フッター */
.footer {
  margin-left: 16rem;
  background-image: url("../img/sec05/bg02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: calc(100% - 16rem);
  aspect-ratio: 1120/182;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .footer {
    width: 100%;
    margin-left: 0;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    display: none;
  }
}

.copy {
  margin-left: 16rem;
  text-align: center;
  padding: 1rem 0;
}
@media screen and (max-width: 1080px) {
  .copy {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .copy {
    padding: 1rem 0 10rem;
  }
}

.main-pg {
  color: #231815;
}

/* companyとbusinessのMV */
.pg-mv01 {
  padding: 23.7rem 0 13rem;
}
@media screen and (max-width: 768px) {
  .pg-mv01 {
    padding: 19rem 0 5rem;
  }
}
.pg-mv01 .box {
  position: relative;
  max-width: 115.5rem;
  width: 100%;
  aspect-ratio: 1155/500;
  background-color: #EFEFEF;
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  .pg-mv01 .box {
    width: 90%;
  }
}
.pg-mv01 .box .left {
  width: 44rem;
  aspect-ratio: 1;
  background-image: url("../img/top/bg02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: -6rem;
  left: 10.5vw;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .pg-mv01 .box .left {
    width: 13.5rem;
    bottom: -4rem;
  }
}
.pg-mv01 .box .left a {
  width: 100%;
  height: 100%;
  padding: 7.5rem 6rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .pg-mv01 .box .left a {
    padding: 0;
  }
}
.pg-mv01 .box .left a .ttlbox02 {
  margin-bottom: 4rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pg-mv01 .box .left a .ttlbox02 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    padding-inline: 10% 5%;
  }
}
.pg-mv01 .box .left a .ttlbox02 h3 {
  font-size: 4.7rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pg-mv01 .box .left a .ttlbox02 h3 {
    font-size: 1.7rem;
    text-align: left;
    margin-bottom: 0;
  }
}
.pg-mv01 .box .left a .ttlbox02 p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .pg-mv01 .box .left a .ttlbox02 p {
    font-size: 1rem;
    text-align: left;
  }
}
.pg-mv01 .box .left a > p {
  color: #fff;
  line-height: 2.5;
  margin-bottom: 4rem;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .pg-mv01 .box .left a > p {
    display: none;
  }
}
.pg-mv01 .box .right {
  width: 58vw;
  max-width: 77.5rem;
  aspect-ratio: 775/500;
  position: absolute;
  left: 39.5vw;
  top: -10rem;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .pg-mv01 .box .right {
    left: unset;
    right: -10%;
    width: 80vw;
    top: -9rem;
  }
}
.pg-mv01 .box:last-child {
  margin-bottom: 0;
}

/* news,column */
.news, .column {
  padding: 15rem 0 9rem;
}
@media screen and (max-width: 768px) {
  .news, .column {
    padding: 6rem 0 4rem;
  }
}
.news .news-mv, .news .column-mv, .column .news-mv, .column .column-mv {
  position: relative;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .news .news-mv, .news .column-mv, .column .news-mv, .column .column-mv {
    margin-top: 6rem;
    margin-bottom: 5rem;
  }
}
.news .news-mv .img, .news .column-mv .img, .column .news-mv .img, .column .column-mv .img {
  width: 26.2rem;
  aspect-ratio: 1;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news .news-mv .ttlbox, .news .column-mv .ttlbox, .column .news-mv .ttlbox, .column .column-mv .ttlbox {
  text-align: center;
  /*コラムページのMVに画像を反映させる場合は
  コメントアウト外す
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  .garamond,p {
      color: #fff;
  }
  @media screen and (max-width: 768px) {
      top: 50%;
  }*/
}
.news .box, .column .box {
  padding: 6rem 0 8rem;
}
.news .box .image, .column .box .image {
  margin-bottom: 4rem;
}
.news .box img, .column .box img {
  max-width: 50rem;
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .news .box, .column .box {
    padding: 3rem 0 4rem;
  }
}
.news .box h2, .column .box h2 {
  font-size: 3rem;
  line-height: 2;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .news .box h2, .column .box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.news .box p, .column .box p {
  font-size: 1.6rem;
  line-height: 2;
  padding-inline: 5%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .news .box p, .column .box p {
    font-size: 1.4rem;
  }
}
.news .box .date, .column .box .date {
  font-size: 1.4rem;
}
.news .btn02 a, .column .btn02 a {
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.main-column h2, .main-column h3, .main-column h4 {
  color: #E8953E;
  font-weight: 500;
}
.main-column h2 {
  font-size: 2.6rem;
  padding: 2rem;
  color: #fff;
  margin: 4rem 0 3rem;
  position: relative;
  z-index: 2;
}
.main-column h2::before {
  content: "";
  display: inline-block;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border-radius: 1rem;
  border: 2px dashed #FFF0CB;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-column h2::after {
  content: "";
  display: inline-block;
  background: linear-gradient(91.16deg, #E8953E 0%, #E6B12D 100%);
  box-shadow: 4px 4px 0px 0px #126D52;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  z-index: -1;
}
.main-column h3 {
  font-size: 2.2rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-top: 5rem;
  margin-bottom: 3rem;
  border-bottom: 4px double #126D52;
}
.main-column h3::before {
  content: "✔︎";
  margin-right: 1rem;
}
.main-column h4 {
  font-size: 1.8rem;
  padding-left: 2em;
  border-left: 2px double #126D52;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.main-column ul, .main-column ol {
  list-style: unset;
  padding-left: calc(5% + 1.5em);
  margin: 3rem 0;
}
.main-column ul li, .main-column ol li {
  line-height: 1.8;
}
.main-column ol {
  list-style: decimal;
}
.main-column .btn02 {
  background: linear-gradient(91.16deg, #fff 0%, #fff 100%);
  background-color: unset;
  margin-inline: auto;
  border-radius: 1rem;
  transition: all 0.3s;
}
.main-column .btn02 a {
  margin-bottom: 0;
  border: 1px solid #000;
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: all 0.3s;
}
.main-column .btn02:hover {
  background: linear-gradient(91.16deg, #E8953E 0%, #E6B12D 100%);
}
.main-column .btn02:hover a {
  color: #fff;
}
.main-column .ul-column {
  list-style: none;
  width: 100%;
  padding-left: 0;
}
.main-column .ul-column li {
  margin-bottom: 2rem;
  width: 100%;
}
.main-column .ul-column li a {
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 2px dotted #333;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .main-column .ul-column li a {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.main-column .ul-column li a .img, .main-column .ul-column li a .image {
  width: 30rem;
}
.main-column .ul-column li a .date {
  display: block;
}
.main-column .ul-column li a .ttl {
  font-size: 1.8rem;
}
.main-column .news .ul-news {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 3rem;
  border-top: 2px solid #003B82;
}
@media screen and (max-width: 768px) {
  .main-column .news .ul-news {
    gap: 1rem;
  }
}
.main-column .news .ul-news li {
  width: calc((100% - 6rem) / 3);
}
@media screen and (max-width: 1080px) {
  .main-column .news .ul-news li {
    width: calc((100% - 3rem) / 2);
  }
}
@media screen and (max-width: 580px) {
  .main-column .news .ul-news li {
    width: 100%;
  }
}
.main-column .news .ul-news li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: none;
}
.main-column .news .ul-news li a .image {
  width: 100%;
  overflow: hidden;
}
.main-column .news .ul-news li a .image img {
  transition: all 0.3s;
}
.main-column .news .ul-news li a .txtbox {
  width: 100%;
}
.main-column .news .ul-news li a .txtbox span {
  display: block;
  width: 100%;
}
@media screen and (max-width: 580px) {
  .main-column .news .ul-news li a .txtbox {
    text-align: center;
  }
}
.main-column .news .ul-news li a:hover .image img {
  transform: scale(1.1);
}
.main-column #toc_container {
  margin-inline: auto;
  border-radius: 1rem;
}
.main-column #toc_container .toc_title .toc_toggle .toc_brackets {
  display: none;
}
.main-column #toc_container .toc_title .toc_toggle a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(91.16deg, #E8953E 0%, #E6B12D 100%);
  color: #fff;
  line-height: 1.5;
}
.main-column #toc_container .toc_list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main-column #toc_container .toc_list li a .toc_number {
  line-height: 1;
  padding: 3px 1rem;
  background-color: rgba(18, 109, 82, 0.1882352941);
}

/* ページネーション */
.pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 5rem auto;
}
.pagination .wp-pagenavi a {
  display: inline-block;
  border: 2px solid #003B82;
}
.pagination .wp-pagenavi span, .pagination .wp-pagenavi span.current {
  border: 2px solid #003B82;
}

/* 購入に関しての注意点 */
.site .box h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #E8953E;
}
.site ul {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.site ul li {
  text-align: left;
}
.site .sec01 {
  background-image: unset;
  color: #000;
  margin-top: 0;
}
.site .ttlbox {
  margin-bottom: 0;
}

.main-company .txt00 {
  text-align: center;
  margin-bottom: 4rem;
  line-height: 2.5;
  color: #003B82;
  display: none;
}
@media screen and (max-width: 768px) {
  .main-company .txt00 {
    display: block;
  }
}
.main-company .sec01 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .main-company .sec01 {
    padding: 6.5rem 0 4rem;
  }
}
.main-company .sec01 .inner1100 {
  position: relative;
  padding-left: 7rem;
}
@media screen and (max-width: 768px) {
  .main-company .sec01 .inner1100 {
    padding-left: 0;
  }
}
.main-company .sec01 .ttlbox {
  color: #003B82;
}
@media screen and (max-width: 768px) {
  .main-company .sec01 .ttlbox {
    margin-bottom: 0;
  }
}
.main-company .sec01 .ttlbox h2 {
  font-size: 2.3rem;
  text-align: left;
  line-height: 1;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  .main-company .sec01 .ttlbox h2 {
    font-size: 2rem;
    margin-bottom: 1.3rem;
  }
}
.main-company .sec01 .ttlbox .txt {
  font-size: 2.2rem;
  text-align: left;
  line-height: 2;
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 768px) {
  .main-company .sec01 .ttlbox .txt {
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
    letter-spacing: 0.05em;
  }
}
.main-company .sec01 .txt01 {
  font-size: 1.7rem;
  font-weight: lighter;
  max-width: 76rem;
  width: 80%;
  line-height: 2;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .main-company .sec01 .txt01 .sp-txt {
    display: flex;
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
    align-items: baseline;
    gap: 1.2rem;
  }
  .main-company .sec01 .txt01 .sp-txt span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .main-company .sec01 .txt01 {
    font-size: 1.2rem;
    max-width: unset;
    width: 100%;
  }
}
.main-company .sec01 .image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 43rem;
}
@media screen and (max-width: 768px) {
  .main-company .sec01 .image {
    position: static;
    margin-top: 2.2rem;
    width: 90%;
    margin-inline: auto;
  }
}
.main-company .sec02, .main-company .sec03 {
  padding: 10rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .main-company .sec02, .main-company .sec03 {
    padding: 6.5rem 0 4.7rem;
  }
}
.main-company .sec02 .table-company, .main-company .sec03 .table-company {
  border-bottom: 1px solid #241916;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main-company .sec02 .table-company, .main-company .sec03 .table-company {
    border-bottom: none;
  }
}
.main-company .sec02 .table-company tr, .main-company .sec03 .table-company tr {
  border-top: 1px solid #241916;
}
@media screen and (max-width: 768px) {
  .main-company .sec02 .table-company tr, .main-company .sec03 .table-company tr {
    border-top: none;
  }
}
.main-company .sec02 .table-company tr td, .main-company .sec02 .table-company tr th, .main-company .sec03 .table-company tr td, .main-company .sec03 .table-company tr th {
  padding: 2.5rem 0;
}
.main-company .sec02 .table-company tr th, .main-company .sec03 .table-company tr th {
  padding-left: 1.5rem;
  color: #003B82;
  font-weight: lighter;
  text-align: left;
  width: 18rem;
}
@media screen and (max-width: 768px) {
  .main-company .sec02 .table-company tr th, .main-company .sec03 .table-company tr th {
    border-bottom: 1px solid #000;
    padding: 0 0 0.5rem;
  }
}
.main-company .sec02 .table-company tr th span, .main-company .sec03 .table-company tr th span {
  font-size: 1.2rem;
}
.main-company .sec02 .table-company tr td, .main-company .sec03 .table-company tr td {
  width: calc(100% - 18rem);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .main-company .sec02 .table-company tr td, .main-company .sec03 .table-company tr td {
    margin-bottom: 2.2rem;
    padding: 0;
  }
}
.main-company .sec02 .table-company tr td a, .main-company .sec03 .table-company tr td a {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .main-company .sec02 .table-company tr td ul, .main-company .sec03 .table-company tr td ul {
    letter-spacing: -0.05em;
  }
}
.main-company .sec02 .table-company tr td .ul-td, .main-company .sec03 .table-company tr td .ul-td {
  padding-left: 2em;
  list-style: decimal;
}
@media screen and (max-width: 768px) {
  .main-company .sec02 .table-company tr td .ul-td, .main-company .sec03 .table-company tr td .ul-td {
    padding-left: 1em;
  }
}
.main-company .sec02 .table-company tr td span, .main-company .sec03 .table-company tr td span {
  display: block;
}
@media screen and (max-width: 768px) {
  .main-company .sec02 .table-company tr th, .main-company .sec02 .table-company tr td, .main-company .sec03 .table-company tr th, .main-company .sec03 .table-company tr td {
    width: 100%;
    display: block;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .main-company .sec02 .table-company tr:last-child td, .main-company .sec03 .table-company tr:last-child td {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.main-company .sec03 {
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .main-company .sec03 {
    padding-top: 7.6rem;
  }
}
.main-company .sec03 .table-company tr th span {
  font-size: 1.2rem;
}
.main-company .sec03 .table-company tr td {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-company .sec03 .table-company tr td {
    font-size: 1.2rem;
  }
}
.main-company .sec03 .table-company tr td .add a {
  color: #003B82;
  position: relative;
  text-decoration: underline;
  margin-left: 0.5rem;
}
.main-company .sec03 .table-company tr td .add a:hover {
  opacity: 0.8;
}
.main-company .sec04 .inner1097 {
  padding: 14.5rem 0 16.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-company .sec04 .inner1097 {
    width: 100%;
    padding: 7.5rem 0 6rem;
  }
}
.main-company .sec04 .inner1097::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.3rem;
  height: 100%;
  top: 0;
  left: 14.85rem;
  transform: translateX(-50%);
  background-image: linear-gradient(180deg, rgb(0, 184, 238), rgb(0, 32, 99));
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .main-company .sec04 .inner1097::after {
    left: calc(24vw + 0.85rem);
  }
}
.main-company .sec04 .table-history {
  width: 100%;
}
.main-company .sec04 .table-history tr th, .main-company .sec04 .table-history tr td {
  padding-bottom: 5rem;
  padding-bottom: 2.5rem;
}
.main-company .sec04 .table-history tr th {
  width: 14rem;
  color: #003B82;
  font-size: 3rem;
  font-weight: 400;
  text-align: end;
  padding-right: 2.7rem;
  position: relative;
}
.main-company .sec04 .table-history tr th span {
  font-size: 1.4rem;
  font-weight: lighter;
  display: block;
  font-family: "Noto Serif JP", serif;
}
.main-company .sec04 .table-history tr th::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1.7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: linear-gradient(-45deg, #00b8ee, #32618d);
  top: 2rem;
  right: -1.7rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .main-company .sec04 .table-history tr th {
    font-size: 1.5rem;
    width: 24vw;
    padding-inline: 0 0.7rem;
  }
  .main-company .sec04 .table-history tr th span {
    font-size: 1rem;
    transform: translateX(5px);
  }
}
.main-company .sec04 .table-history tr td {
  width: calc(100% - 14rem);
  padding-left: 2.7rem;
  padding-left: 3.55rem;
  vertical-align: middle;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-company .sec04 .table-history tr td {
    font-size: 1rem;
    width: calc(100% - 24vw);
    padding-right: 3%;
    padding-left: 2.7rem;
    letter-spacing: -0.05em;
    line-height: 2;
  }
}
.main-company .sec04 .table-history tr:last-child td, .main-company .sec04 .table-history tr:last-child th {
  color: #003B82;
}
.main-company .sec04 .table-history tr:last-child td::after, .main-company .sec04 .table-history tr:last-child th::after {
  display: none;
}
.main-company .sec05 {
  position: relative;
}
.main-company .sec05 .imgbox {
  display: flex;
}
.main-company .sec05 .imgbox .left {
  width: 50%;
  overflow: hidden;
}
.main-company .sec05 .imgbox .left img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-company .sec05 .imgbox .right {
  width: 50%;
}
.main-company .sec05 .imgbox .right .inleft, .main-company .sec05 .imgbox .right .right {
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.main-company .sec05 .imgbox .right .inleft img, .main-company .sec05 .imgbox .right .right img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-company .sec05 .txtbox {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11rem;
  width: 98%;
  height: -moz-fit-content;
  height: fit-content;
}
.main-company .sec05 .txtbox p {
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .main-company .sec05 .txtbox {
    font-size: 3rem;
  }
  .main-company .sec05 .txtbox p {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .main-company .ttlbox .garamond {
    font-size: 2rem;
    margin-bottom: 0rem;
  }
  .main-company .ttlbox .txt {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
  }
}

.main-business #business {
  padding: 0;
}
.main-business .txt00 {
  text-align: center;
  margin-bottom: 4rem;
  line-height: 2.5;
  color: #003B82;
  display: none;
}
@media screen and (max-width: 768px) {
  .main-business .txt00 {
    display: block;
    margin-bottom: 2.8rem;
    line-height: 2;
  }
}
.main-business .ttlbox02 {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .main-business .ttlbox02 {
    padding-inline: 5%;
  }
}
@media screen and (max-width: 480px) {
  .main-business .ttlbox02 {
    padding-inline: 0;
  }
}
.main-business .ttlbox02 h2 {
  font-weight: 500;
}
.main-business .business.pg-mv {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .main-business .business.pg-mv .box {
    margin-bottom: 6rem;
  }
}
.main-business .business.pg-mv .txtbox {
  margin: 3rem auto 6.6rem;
}
@media screen and (max-width: 768px) {
  .main-business .business.pg-mv .txtbox {
    padding-inline: 5%;
    margin-bottom: 4rem;
  }
}
.main-business .business.pg-mv .txtbox p {
  text-align: center;
  line-height: 2.5;
  font-size: 1.7rem;
  color: #003b82;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .main-business .business.pg-mv .txtbox p {
    font-size: 1.2rem;
    text-align: left;
  }
}
.main-business #linkbox {
  padding: 0;
}
.main-business #linkbox::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-business .linkbox {
    margin-bottom: 5rem;
  }
}
.main-business .linkbox ul {
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80rem;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .main-business .linkbox ul {
    gap: 2.3rem 1.5rem;
    justify-content: left;
  }
}
.main-business .linkbox ul li {
  width: calc((100% - 2rem) / 2);
}
@media screen and (max-width: 768px) {
  .main-business .linkbox ul li {
    width: calc(50% - 0.75rem);
  }
}
.main-business .linkbox ul li a {
  border: none;
}
@media screen and (max-width: 768px) {
  .main-business .linkbox ul li a {
    padding-top: 0;
  }
}
.main-business .linkbox ul li a .image {
  width: 100%;
  aspect-ratio: 200/130;
  margin-bottom: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .main-business .linkbox ul li a .image {
    margin-bottom: 1rem;
  }
}
.main-business .linkbox ul li a .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.main-business .linkbox ul li a:hover .image img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .main-business .linkbox ul li a .ja {
    font-size: 1rem;
  }
}
.main-business .linkbox ul li:nth-child(5) {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .main-business .linkbox ul li:nth-child(5) {
    margin-inline: auto;
  }
}
.main-business .linkbox ul li:nth-child(5) a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border: 2px solid #003B82;
}
.main-business .linkbox ul li:nth-child(5) a p {
  margin: 0;
}
.main-business .linkbox ul li:nth-child(5) a img {
  width: 4.2rem;
  margin: 0;
}
.main-business .linkbox ul li:nth-child(5) a:hover img {
  transform: translateX(3px);
}
.main-business section {
  position: relative;
  padding: 15rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .main-business section {
    padding: 7.4rem 0;
  }
}
.main-business section .txt01 {
  text-align: center;
  font-weight: lighter;
  line-height: 2.5;
  margin-bottom: 6rem;
  color: #231815;
}
@media screen and (max-width: 768px) {
  .main-business section .txt01 {
    text-align: left;
    font-size: 1.2rem;
    padding-inline: 5%;
    margin-bottom: 2.5rem;
  }
}
.main-business section::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(90deg, rgb(0, 184, 238), rgb(0, 121, 180) 41%, rgb(0, 32, 99));
}
.main-business section .p-info {
  color: #003B82;
  text-align: center;
  padding: 4.5rem 0 3rem;
}
.main-business .sec01 .ttlbox02 {
  text-align: center;
}
.main-business .sec01 .ul-busi {
  display: flex;
  flex-wrap: wrap;
  gap: 7rem 3.6rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec01 .ul-busi {
    gap: 2.6rem 1.5rem;
  }
}
.main-business .sec01 .ul-busi li {
  width: calc((100% - 7.2rem) / 3);
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec01 .ul-busi li {
    width: calc(50% - 0.75rem);
    font-size: 1.2rem;
    letter-spacing: -0.05em;
  }
}
.main-business .sec01 .ul-busi li .img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec01 .ul-busi li .img {
    margin-bottom: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .main-business #sec02 {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .inner1100 {
    width: 100%;
  }
}
.main-business .sec02 .ttlbox02 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .ttlbox02 {
    width: 90%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .ttlbox02 h2 {
    letter-spacing: -0.05em;
  }
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .txt01 {
    width: 90%;
    margin-inline: auto;
  }
}
.main-business .sec02 .ul-busi02 {
  display: flex;
  gap: 6px;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .ul-busi02 {
    gap: 0;
    margin-bottom: 4.5rem;
    width: 90%;
    margin-inline: auto;
  }
}
.main-business .sec02 .ul-busi02 li {
  width: calc((100% - 12px) / 3);
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .ul-busi02 li {
    width: 33.3333333333%;
  }
}
.main-business .sec02 .box {
  background-image: url("../img/business/bg03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 5rem 7rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .box {
    padding: 6rem 0;
  }
}
.main-business .sec02 .box .inbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #003b82;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .box .inbox {
    flex-direction: column;
    gap: 2.6rem;
    padding-inline: 5%;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.main-business .sec02 .box .inbox .left {
  width: calc(50% - 3.25rem);
  max-width: 43.4rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .box .inbox .left {
    width: 100%;
  }
}
.main-business .sec02 .box .inbox .left h3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2;
  color: #003b82;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .box .inbox .left h3 {
    font-size: 1.8rem;
  }
}
.main-business .sec02 .box .inbox .left p {
  font-size: 1.7rem;
  font-weight: lighter;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .box .inbox .left p {
    font-size: 1.2rem;
  }
}
.main-business .sec02 .box .inbox .right {
  width: 36.2rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .box .inbox .right {
    width: 100%;
    padding-bottom: 5rem;
    border-bottom: 1px solid #003B82;
  }
}
.main-business .sec02 .box .img01 {
  max-width: 84rem;
  width: 90%;
  margin: 7rem auto 4.2rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .box .img01 {
    margin: 3.5rem auto;
  }
}
.main-business .sec02 .box .txt02 {
  color: #003b82;
  font-size: 1.7rem;
  font-weight: lighter;
  text-align: center;
  line-height: 2.5;
  position: relative;
  display: block;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.8rem 3rem;
  background-image: url("../img/business/bg06.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .main-business .sec02 .box .txt02 {
    font-size: 1.2rem;
    text-align: left;
    background-image: unset;
    padding: 0 3rem;
  }
}
.main-business .sec02 .modal > .box {
  background-image: unset;
  padding: 3rem;
}
.main-business #sec03 {
  padding-bottom: 15.4rem;
}
@media screen and (max-width: 768px) {
  .main-business #sec03 {
    padding-bottom: 0;
  }
}
.main-business .sec03 .ttlbox02 {
  text-align: center;
}
.main-business .sec03 .ul-busi03 > li {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 5.6rem;
  border-bottom: 1px solid #003b82;
  padding-bottom: 8rem;
  padding-top: 6.6rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec03 .ul-busi03 > li {
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 0rem;
    border-bottom: none;
  }
}
.main-business .sec03 .ul-busi03 > li .left, .main-business .sec03 .ul-busi03 > li .right {
  max-width: 42.3rem;
  width: calc(50% - 2.8rem);
}
@media screen and (max-width: 768px) {
  .main-business .sec03 .ul-busi03 > li .left, .main-business .sec03 .ul-busi03 > li .right {
    width: 100%;
  }
}
.main-business .sec03 .ul-busi03 > li .right h3 {
  color: #003b82;
  font-size: 2.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .main-business .sec03 .ul-busi03 > li .right h3 {
    font-size: 1.5rem;
  }
}
.main-business .sec03 .ul-busi03 > li .right .subttl {
  font-size: 1.9rem;
  font-weight: 500;
  color: #003b82;
  margin-bottom: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .main-business .sec03 .ul-busi03 > li .right .subttl {
    font-size: 1.3rem;
  }
}
.main-business .sec03 .ul-busi03 > li .right .txt {
  font-size: 1.5rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .main-business .sec03 .ul-busi03 > li .right .txt {
    font-size: 1.1rem;
  }
}
.main-business .sec03 .ul-busi03 > li:first-child {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .main-business .sec03 .ul-busi03 > li:last-child {
    border-bottom: 0;
    padding-bottom: 6rem;
  }
}
.main-business .schedule::-webkit-scrollbar {
  display: block;
}
.main-business .sec04 .ttlbox02 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .inner1100 {
    width: 100%;
  }
}
.main-business .sec04 .img {
  margin: 5rem auto 11rem;
  max-width: 72.6rem;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .img {
    overflow-x: scroll;
    width: 100%;
    margin: 3.5rem 0 5rem;
  }
  .main-business .sec04 .img img {
    width: 70rem;
  }
}
.main-business .sec04 .box01 {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 6.5rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box01 {
    flex-direction: column;
    gap: 5rem;
    width: 90%;
    margin-inline: auto;
    margin-bottom: 5rem;
  }
}
.main-business .sec04 .box01 .left, .main-business .sec04 .box01 .right {
  width: calc(50% - 3.25rem);
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box01 .left, .main-business .sec04 .box01 .right {
    width: 100%;
  }
}
.main-business .sec04 .box01 .left .txtbox h3, .main-business .sec04 .box01 .right .txtbox h3 {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
  padding-bottom: 1.2rem;
  color: #003b82;
  border-bottom: 1px solid #003b82;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box01 .left .txtbox h3, .main-business .sec04 .box01 .right .txtbox h3 {
    font-size: 1.5rem;
  }
}
.main-business .sec04 .box01 .left .txtbox p, .main-business .sec04 .box01 .right .txtbox p {
  font-size: 1.5rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box01 .left .txtbox p, .main-business .sec04 .box01 .right .txtbox p {
    font-size: 1.1rem;
  }
}
.main-business .sec04 .box01 .right .txtbox:nth-child(1) {
  margin-bottom: 6rem;
}
.main-business .sec04 .box02 {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box02 {
    margin-bottom: 4rem;
    width: 90%;
    margin-inline: auto;
  }
}
.main-business .sec04 .box02 .left {
  width: 40%;
}
.main-business .sec04 .box02 .center, .main-business .sec04 .box02 .right {
  width: calc((60% - 14px) / 2);
}
.main-business .sec04 .box02 .center img:first-child, .main-business .sec04 .box02 .right img:first-child {
  margin-bottom: 7px;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box02 {
    gap: 4px;
    flex-wrap: wrap;
  }
  .main-business .sec04 .box02 .left {
    width: 55.5%;
  }
  .main-business .sec04 .box02 .center {
    width: calc(44.5% - 4px);
  }
  .main-business .sec04 .box02 .center img:nth-child(2) {
    margin-bottom: 4px;
  }
  .main-business .sec04 .box02 .right {
    width: 100%;
    display: flex;
    gap: 4px;
  }
  .main-business .sec04 .box02 .right img {
    width: calc(50% - 2px);
  }
  .main-business .sec04 .box02 .right img:first-child {
    margin-bottom: 0;
  }
}
.main-business .sec04 .ul-busi04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .ul-busi04 {
    gap: 1rem;
  }
}
.main-business .sec04 .ul-busi04 li {
  width: calc(50% - 1.4rem);
  padding: 4rem 4.5rem 5rem;
  background-color: #e5e5e6;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .ul-busi04 li {
    width: 100%;
    padding: 2.8rem 5%;
  }
}
.main-business .sec04 .ul-busi04 li h3 {
  color: #003b82;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .ul-busi04 li h3 {
    font-size: 1.7rem;
  }
}
.main-business .sec04 .ul-busi04 li > p {
  color: #003b82;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .ul-busi04 li > p {
    font-size: 1.7rem;
  }
}
.main-business .sec04 .ul-busi04 li .inbox {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .ul-busi04 li .inbox {
    gap: 1.5rem;
  }
}
.main-business .sec04 .ul-busi04 li .inbox p {
  width: calc(60% - 1rem);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .ul-busi04 li .inbox p {
    width: calc(60% - 1.5rem);
    font-size: 1rem;
  }
}
.main-business .sec04 .ul-busi04 li .inbox img {
  width: calc(40% - 1rem);
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .ul-busi04 li .inbox img {
    width: 40%;
  }
}
.main-business .sec04 .bgbox {
  position: relative;
  width: 100%;
  margin: 9.5rem 0 6.5rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .bgbox {
    margin: 6rem 0 3rem;
  }
}
.main-business .sec04 .bgbox .ttlbox {
  position: absolute;
  left: 14.5%;
  top: 28%;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .bgbox .ttlbox {
    top: 16%;
  }
}
.main-business .sec04 .bgbox .ttlbox p {
  font-size: 2.3rem;
  text-align: left;
  color: #231815;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .bgbox .ttlbox p {
    font-size: 1.6rem;
  }
}
.main-business .sec04 .bgbox .ttlbox .times {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .bgbox .ttlbox .times {
    font-size: 1.5rem;
  }
}
.main-business .sec04 .txt00 {
  text-align: center;
  font-size: 2.2rem;
  color: #003b82;
  display: block;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .txt00 {
    font-size: 1.5rem;
  }
}
.main-business .sec04 .txt000 {
  max-width: 81rem;
  width: 80%;
  margin: 4rem auto 6.8rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .txt000 {
    margin: 0 5% 3rem;
    width: 90%;
    font-size: 1.2rem;
  }
}
.main-business .sec04 .tablebox {
  max-width: 96rem;
  width: 90%;
  margin: 0 auto 9.8rem;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .tablebox {
    flex-direction: column;
    gap: 0;
    margin-bottom: 5rem;
  }
}
.main-business .sec04 .tablebox .table-busi {
  font-size: 1.5rem;
  width: calc(50% - 1.75rem);
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .tablebox .table-busi {
    width: 100%;
  }
}
.main-business .sec04 .tablebox .table-busi tr th {
  width: 8.3rem;
  padding-right: 1rem;
  border-right: 1px solid #000;
  vertical-align: top;
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding-top: 0.35rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .tablebox .table-busi tr th {
    width: 6rem;
    font-size: 1rem;
  }
}
.main-business .sec04 .tablebox .table-busi tr td {
  width: calc(100% - 8.3rem);
  padding-left: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .tablebox .table-busi tr td {
    width: calc(100% - 6rem);
    font-size: 1rem;
    letter-spacing: -0.05em;
  }
}
.main-business .sec04 .box03 {
  margin-bottom: 9.8rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 {
    width: 90%;
    margin-inline: auto;
    margin-bottom: 0rem;
  }
}
.main-business .sec04 .box03 .bl-ttl {
  margin-bottom: 4.5rem;
}
.main-business .sec04 .box03 .inbox-wrap {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
}
@media screen and (max-width: 1080px) {
  .main-business .sec04 .box03 .inbox-wrap {
    flex-direction: column;
    gap: 3rem;
  }
}
.main-business .sec04 .box03 .inbox-wrap .inbox {
  width: calc(50% - 1.4rem);
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 1.4rem;
}
@media screen and (max-width: 1080px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox {
    width: 100%;
  }
}
.main-business .sec04 .box03 .inbox-wrap .inbox .left, .main-business .sec04 .box03 .inbox-wrap .inbox .right {
  width: calc(50% - 0.7rem);
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox .left p, .main-business .sec04 .box03 .inbox-wrap .inbox .right p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox .left {
    width: calc(60% - 0.7rem);
  }
}
.main-business .sec04 .box03 .inbox-wrap .inbox .left .txtwrap .ttl {
  color: #003b82;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #003b82;
  margin-bottom: 1rem;
  line-height: 1;
}
.main-business .sec04 .box03 .inbox-wrap .inbox .left .txtwrap ul {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox .left .txtwrap ul {
    gap: 0.5rem;
  }
}
.main-business .sec04 .box03 .inbox-wrap .inbox .left .txtwrap ul li {
  width: calc(50% - 1rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox .left .txtwrap ul li {
    font-size: 1.1rem;
    gap: 0;
    width: calc(50% - 0.25rem);
  }
}
.main-business .sec04 .box03 .inbox-wrap .inbox .left .txtwrap ul li span {
  width: 9rem;
  display: inline-block;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox .left .txtwrap ul li span {
    width: 6.7rem;
    letter-spacing: -0.05em;
  }
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox .right {
    width: calc(40% - 0.7rem);
  }
}
@media screen and (max-width: 1280px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox:first-child .left {
    width: 28.8rem;
  }
  .main-business .sec04 .box03 .inbox-wrap .inbox:first-child .right {
    width: calc(100% - 28.8rem - 0.7rem);
  }
}
@media screen and (max-width: 1080px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox:first-child .left {
    width: calc(55% - 0.7rem);
  }
  .main-business .sec04 .box03 .inbox-wrap .inbox:first-child .right {
    width: calc(45% - 0.7rem);
  }
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox:first-child .left {
    width: calc(60% - 0.7rem);
  }
  .main-business .sec04 .box03 .inbox-wrap .inbox:first-child .right {
    width: calc(40% - 0.7rem);
  }
}
@media screen and (max-width: 768px) {
  .main-business .sec04 .box03 .inbox-wrap .inbox02 .left, .main-business .sec04 .box03 .inbox-wrap .inbox02 .right {
    width: calc(50% - 1.4rem);
  }
}
.main-business .sec05 .ttlbox02 {
  text-align: center;
}
.main-business .sec05 .ttlbox02 .garamond {
  font-size: 3.3rem;
  color: #003b82;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .ttlbox02 .garamond {
    font-size: 2.5rem;
  }
}
.main-business .sec05 .ttlbox02 h2 {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .ttlbox02 h2 {
    font-size: 1.2rem;
  }
}
.main-business .sec05 .box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box {
    flex-direction: column;
    gap: 2rem;
  }
}
.main-business .sec05 .box .left {
  width: 20rem;
}
.main-business .sec05 .box .left p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1.5em;
}
.main-business .sec05 .box .right {
  max-width: 37rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box .right {
    font-size: 1rem;
    text-align: center;
  }
}
.main-business .sec05 .box .right ul li {
  margin-bottom: 1rem;
}
.main-business .sec05 .box02 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box02 ul {
    justify-content: left;
    margin-bottom: 7.5rem;
  }
}
.main-business .sec05 .box02 ul li {
  width: 25%;
  border-top: 1px solid #231815;
  padding: 3rem 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box02 ul li {
    width: 50%;
  }
}
.main-business .sec05 .box02 ul li .left {
  width: 100%;
  margin-bottom: 2rem;
}
.main-business .sec05 .box02 ul li .left p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1.5em;
}
.main-business .sec05 .box02 ul li .right {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box02 ul li .right {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box02 ul li .letter-012 {
    letter-spacing: -0.12em;
  }
}
.main-business .sec05 .box02 ul .li01 {
  padding: 0 1rem;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box02 ul .li01 {
    width: 100%;
    padding-bottom: 1.3rem;
    margin-bottom: 7.5rem;
    border-bottom: 1px solid #231815;
  }
  .main-business .sec05 .box02 ul .li01 img {
    padding-top: 2rem;
  }
}
.main-business .sec05 .box02 ul .li02 {
  border-top: none;
  padding-top: 0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box02 ul .li02 {
    width: 100%;
  }
  .main-business .sec05 .box02 ul .li02 img {
    padding-top: 2rem;
  }
  .main-business .sec05 .box02 ul .li02 p {
    letter-spacing: -0.1em;
  }
}
.main-business .sec05 .box02 ul .li02 .flexbox {
  display: flex;
  justify-content: center;
}
.main-business .sec05 .box02 ul .li02 .flexbox .inbox {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box02 ul .b-b {
    border-bottom: 1px solid #231815;
  }
}
.main-business .sec05 .box02 .txt03 {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .main-business .sec05 .box02 .txt03 {
    font-size: 1.2rem;
  }
}

.main-concept .concept-mv {
  padding-top: 7.9rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv {
    padding-top: 0;
  }
}
.main-concept .concept-mv .bar {
  width: 1px;
  margin: 13.3rem auto 7.3rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .bar {
    margin: 3.3rem auto 5.3rem;
  }
}
.main-concept .concept-mv .bar img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-concept .concept-mv .box {
  text-align: center;
}
.main-concept .concept-mv .box .txtbox {
  margin: 14.2rem 0 4.5rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .box .txtbox {
    margin: 10rem 0 4.5rem;
  }
}
.main-concept .concept-mv .box .txtbox h2 {
  line-height: 1;
  font-size: 8.2rem;
  font-weight: 400;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .box .txtbox h2 {
    font-size: 4.6rem;
    margin-bottom: 2rem;
  }
}
.main-concept .concept-mv .box .txtbox p {
  font-size: 2.2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .box .txtbox p {
    font-size: 1.3rem;
  }
}
.main-concept .concept-mv .box .ulmv {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.main-concept .concept-mv .box .ulmv li {
  width: 16.6666666667%;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .box .ulmv li {
    width: 33.3333333333%;
  }
}
.main-concept .concept-mv .box .txt {
  display: inline-block;
  font-size: 1.7rem;
  line-height: 3;
  margin-top: 7.4rem;
  padding-inline: 5%;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .box .txt {
    font-size: 1.1rem;
    line-height: 2.5;
    letter-spacing: -0.05em;
    margin-top: 4.5rem;
    padding-inline: 0;
  }
}
.main-concept .concept-mv .sec01 .garamond {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
}
.main-concept .concept-mv .sec01 img {
  height: 13.7rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec01 img {
    height: 7rem;
  }
}
.main-concept .concept-mv .sec02 {
  padding-top: 7.5rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec02 {
    padding-top: 6rem;
    padding-bottom: 0rem;
  }
}
.main-concept .concept-mv .sec02 .flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 5%;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec02 .flexbox {
    padding-inline: 0;
  }
}
.main-concept .concept-mv .sec02 .flexbox .inbox {
  width: 46rem;
  aspect-ratio: 1;
  background-image: url("../img/concept/bg01.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 980px) {
  .main-concept .concept-mv .sec02 .flexbox .inbox {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec02 .flexbox .inbox {
    width: 50%;
    min-width: 32rem;
    margin-inline: auto;
    gap: 3rem;
  }
}
.main-concept .concept-mv .sec02 .flexbox .inbox p {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec02 .flexbox .inbox p {
    display: block;
    width: 90%;
    margin-inline: auto;
    font-size: 1.1rem;
  }
}
.main-concept .concept-mv .sec02 .flexbox .inbox .tate {
  font-weight: 500;
  font-size: 4rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec02 .flexbox .inbox .tate {
    font-size: 2.5rem;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: 0;
  }
}
.main-concept .concept-mv .sec02 .flexbox02 {
  margin-top: -8rem;
}
@media screen and (max-width: 980px) {
  .main-concept .concept-mv .sec02 .flexbox02 {
    margin-top: 0;
  }
}
.main-concept .concept-mv .sec02 .flexbox02 .inbox:first-child {
  transform: translateX(1rem);
}
.main-concept .concept-mv .sec02 .flexbox02 .inbox:last-child {
  transform: translateX(-1rem);
}
@media screen and (max-width: 980px) {
  .main-concept .concept-mv .sec02 .flexbox02 {
    flex-direction: column;
    transform: translateY(0);
  }
  .main-concept .concept-mv .sec02 .flexbox02 .inbox {
    transform: translateY(-4rem);
  }
  .main-concept .concept-mv .sec02 .flexbox02 .inbox:nth-child(2) {
    transform: translateY(-8rem);
  }
  .main-concept .concept-mv .sec02 .flexbox02 .inbox:first-child {
    transform: translateY(-4rem);
  }
  .main-concept .concept-mv .sec02 .flexbox02 .inbox:last-child {
    transform: translateY(-8rem);
  }
}
.main-concept .concept-mv .sec03 {
  position: relative;
}
.main-concept .concept-mv .sec03 .box {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  gap: 8rem;
  padding: 14rem 0%;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .main-concept .concept-mv .sec03 .box {
    padding: 14rem 5%;
  }
}
@media screen and (max-width: 980px) {
  .main-concept .concept-mv .sec03 .box {
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec03 .box {
    flex-direction: column;
    padding: 7.5rem 5%;
  }
}
.main-concept .concept-mv .sec03 .box .left {
  text-align: left;
  width: calc(50% - 8rem);
}
@media screen and (max-width: 980px) {
  .main-concept .concept-mv .sec03 .box .left {
    width: calc(70% - 4rem);
  }
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec03 .box .left {
    width: 100%;
  }
}
.main-concept .concept-mv .sec03 .box .left h2 {
  white-space: nowrap;
  font-size: 13.8rem;
  font-weight: 400;
  margin-bottom: 6rem;
  line-height: 1;
}
@media screen and (max-width: 1180px) {
  .main-concept .concept-mv .sec03 .box .left h2 {
    font-size: 8.7vw;
  }
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec03 .box .left h2 {
    font-size: 7rem;
    margin-bottom: 2.5rem;
  }
}
.main-concept .concept-mv .sec03 .box .left .img02 {
  margin-bottom: 3.3rem;
}
.main-concept .concept-mv .sec03 .box .left .txt01 {
  line-height: 2.5;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec03 .box .left .txt01 {
    font-size: 1.2rem;
  }
}
.main-concept .concept-mv .sec03 .box .left .ul02 {
  width: 80%;
  display: flex;
  gap: 3px;
  margin-top: 5rem;
}
.main-concept .concept-mv .sec03 .box .left .ul02 li {
  width: calc(100% - 2px);
}
.main-concept .concept-mv .sec03 .box .right {
  width: 50%;
}
@media screen and (max-width: 980px) {
  .main-concept .concept-mv .sec03 .box .right {
    width: 30%;
  }
}
.main-concept .concept-mv .sec03 .box::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 99vw;
  height: 5px;
  background-image: linear-gradient(-90deg, rgb(0, 184, 238), rgb(0, 32, 99));
}
.main-concept .concept-mv .sec03 .box:last-child::after {
  display: none;
}
.main-concept .concept-mv .sec03 .box:first-child .left h2 {
  letter-spacing: 0.2em;
}
.main-concept .concept-mv .sec03 .box02 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec03 .box02 {
    flex-direction: column;
  }
}
.main-concept .concept-mv .sec03 .box02 .right {
  position: relative;
}
.main-concept .concept-mv .sec03 .box02 .right .parts01 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22.8rem;
  transform: translate(25%, 50%);
}
.main-concept .concept-mv .sec03 .box02 .right .parts01 img {
  -o-object-fit: contain;
     object-fit: contain;
}
.main-concept .concept-mv .sec03 .box03 .right {
  position: relative;
}
.main-concept .concept-mv .sec03 .box03 .right .parts01 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22.8rem;
  transform: translate(0%, 50%);
}
.main-concept .concept-mv .sec03 .box03 .right .parts01 img {
  -o-object-fit: contain;
     object-fit: contain;
}
.main-concept .concept-mv .sec03 .box03 .img02 .parts01 {
  left: unset;
  right: 0;
  bottom: 0;
  width: 15rem;
  height: 9.5rem;
}
.main-concept .concept-mv .sec03 .img01, .main-concept .concept-mv .sec03 .img02 {
  width: 100%;
}
.main-concept .concept-mv .sec03 .img01 {
  position: relative;
}
.main-concept .concept-mv .sec03 .img01.sp .parts01 {
  position: absolute;
  top: -7%;
  right: 3%;
  width: 11.4rem;
  height: 8.2rem;
}
.main-concept .concept-mv .sec03 .img02 {
  position: relative;
}
.main-concept .concept-mv .sec03 .img02 .parts01 {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 19rem;
  height: 14.6rem;
  transform: rotate(8deg);
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec03 .img02 .parts01 {
    left: 0;
    top: unset;
    bottom: 0;
    min-width: 10rem;
    width: 23vw;
    transform: translateY(20%);
    height: unset;
    aspect-ratio: 19/14.6;
  }
}
.main-concept .concept-mv .sec03 .parts02 {
  writing-mode: vertical-rl;
  font-size: 13.8rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 10%;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec03 .parts02 {
    font-size: 7rem;
    right: unset;
    left: 5%;
    top: -5rem;
  }
}
.main-concept .concept-mv .sec03 .parts03 {
  position: absolute;
  top: 38%;
  right: 8%;
}
.main-concept .concept-mv .sec03 .parts03 ul li {
  width: 18.3rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec03 .parts03 {
    top: 15%;
    right: unset;
    left: 5%;
  }
  .main-concept .concept-mv .sec03 .parts03 ul li {
    width: 13rem;
  }
}
.main-concept .concept-mv .sec04 .flexbox01 {
  display: flex;
  justify-content: end;
  padding-right: 2%;
  margin-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec04 .flexbox01 {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.main-concept .concept-mv .sec04 .flexbox01 .left, .main-concept .concept-mv .sec04 .flexbox01 .right {
  width: 50.3rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec04 .flexbox01 .left, .main-concept .concept-mv .sec04 .flexbox01 .right {
    width: 50%;
  }
}
.main-concept .concept-mv .sec04 .flexbox01 .right {
  position: relative;
}
.main-concept .concept-mv .sec04 .flexbox01 .right .parts01 {
  position: absolute;
  bottom: -3rem;
  right: 2%;
  width: 22.8rem;
}
.main-concept .concept-mv .sec04 .flexbox01 .right .parts01 img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec04 .flexbox01 .right .parts01 {
    width: 10rem;
  }
}
.main-concept .concept-mv .sec04 .box00 {
  display: flex;
  align-items: start;
  justify-content: end;
  padding-right: 5%;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec04 .box00 {
    flex-direction: column;
  }
}
.main-concept .concept-mv .sec04 .box00 .left {
  writing-mode: vertical-rl;
  font-size: 13.8rem;
  font-weight: 700;
  padding-right: 20rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec04 .box00 .left {
    width: 90%;
    margin-inline: auto;
    font-size: 7rem;
    padding-right: 0;
    writing-mode: unset;
  }
}
.main-concept .concept-mv .sec04 .box00 .right {
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec04 .box00 .right {
    width: 90%;
    margin-inline: auto;
    font-size: 1.2rem;
  }
}
.main-concept .concept-mv .sec04 .box00 .right .txt01 {
  line-height: 3;
  margin-bottom: 7.4rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec04 .box00 .right .txt01 {
    margin-bottom: 4rem;
  }
}
.main-concept .concept-mv .sec04 .box00 .right .parts03 ul {
  display: flex;
  gap: 5px;
}
.main-concept .concept-mv .sec04 .box00 .right .parts03 ul li {
  width: 18.3rem;
}
.main-concept .concept-mv .sec04 .bar {
  padding-bottom: 7.6rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec04 .bar {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .flexbox-sp {
    display: flex;
    align-items: start;
  }
}
.main-concept .concept-mv .sec05 .flexbox-sp .left-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .flexbox-sp .left-sp {
    writing-mode: vertical-rl;
    font-size: 7rem;
    font-weight: 500;
    display: block;
    padding-left: 5%;
    letter-spacing: 0.3em;
  }
}
.main-concept .concept-mv .sec05 .flexbox-sp .flexbox {
  display: flex;
  padding-left: 2%;
  margin-bottom: 15.6rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .flexbox-sp .flexbox {
    margin-bottom: 4rem;
    flex-direction: column;
    width: 60%;
    margin-left: auto;
  }
}
.main-concept .concept-mv .sec05 .flexbox-sp .flexbox .left, .main-concept .concept-mv .sec05 .flexbox-sp .flexbox .right {
  width: 52rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .flexbox-sp .flexbox .left, .main-concept .concept-mv .sec05 .flexbox-sp .flexbox .right {
    width: 100%;
  }
}
.main-concept .concept-mv .sec05 .flexbox-sp .flexbox .right {
  position: relative;
}
.main-concept .concept-mv .sec05 .flexbox-sp .flexbox .right .parts01 {
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 31rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .flexbox-sp .flexbox .right .parts01 {
    width: 17rem;
    bottom: unset;
    top: -18rem;
    right: unset;
    left: -5rem;
  }
}
.main-concept .concept-mv .sec05 .box01 {
  display: flex;
  justify-content: center;
  margin-bottom: 14rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .box01 {
    flex-direction: column-reverse;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .box01 .left {
    width: 90%;
    margin-inline: auto;
    font-size: 1.2rem;
  }
}
.main-concept .concept-mv .sec05 .box01 .left .txt {
  line-height: 3;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.main-concept .concept-mv .sec05 .box01 .right {
  writing-mode: vertical-rl;
  font-size: 13.8rem;
  font-weight: 700;
  padding-left: 19rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .box01 .right {
    font-size: 7rem;
    padding-left: 5%;
    margin-right: auto;
    display: none;
  }
}
.main-concept .concept-mv .sec05 .parts03 {
  padding-bottom: 23rem;
}
@media screen and (max-width: 768px) {
  .main-concept .concept-mv .sec05 .parts03 {
    padding-bottom: 6rem;
  }
}
.main-concept .concept-mv .sec05 .parts03 ul {
  display: flex;
  justify-content: end;
  gap: 5px;
  padding-right: 2%;
}
.main-concept .concept-mv .sec05 .parts03 ul li {
  width: 18.3rem;
}
.main-concept .w500 {
  font-weight: 500 !important;
}

.main-recruit {
  margin-top: 7.88rem;
}
@media screen and (max-width: 768px) {
  .main-recruit {
    margin-top: 5.8rem;
  }
}
.main-recruit .mv-recruit .box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .main-recruit .mv-recruit .box {
    flex-direction: column;
  }
}
.main-recruit .mv-recruit .box .left, .main-recruit .mv-recruit .box .right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .main-recruit .mv-recruit .box .left, .main-recruit .mv-recruit .box .right {
    width: 100%;
  }
}
.main-recruit .mv-recruit .box .left {
  background-image: url("../img/recruit/bg01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.main-recruit .mv-recruit .box .left .ttlbox00 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .main-recruit .mv-recruit .box .left .ttlbox00 {
    position: static;
    transform: translate(0, 0);
    padding-top: 5rem;
  }
}
.main-recruit .mv-recruit .box .left .ttlbox00 .ttl {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .mv-recruit .box .left .ttlbox00 .ttl {
    margin-bottom: 4rem;
  }
}
.main-recruit .mv-recruit .box .left .ttlbox00 .ttl h1 {
  width: 19vw;
  max-width: 33.8rem;
  min-width: 29.5rem;
}
.main-recruit .mv-recruit .box .left .ttlbox00 .ttl .parts01 {
  position: absolute;
  bottom: -9rem;
  right: -8rem;
  width: 22rem;
}
.main-recruit .mv-recruit .box .left .ttlbox00 .ttl .parts01 img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .main-recruit .mv-recruit .box .left .ttlbox00 .ttl .parts01 {
    width: 11rem;
    bottom: -4rem;
    right: 5rem;
  }
}
.main-recruit .mv-recruit .box .left .ttlbox00 p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .main-recruit .mv-recruit .box .left .ttlbox00 p {
    width: 19vw;
    min-width: 29.5rem;
    margin-inline: auto;
    font-size: 1.2rem;
    padding-bottom: 5rem;
  }
}
.main-recruit .linkbox {
  margin-top: 8.3rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .linkbox {
    margin-top: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .linkbox ul li a {
    padding-top: 1.5rem;
  }
}
.main-recruit .sec01 {
  padding-top: 14rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec01 {
    padding-top: 6.5rem;
  }
}
.main-recruit .sec01 .box {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec01 .box {
    flex-direction: column;
    gap: 1rem;
  }
}
.main-recruit .sec01 .box .left {
  color: #003b82;
  font-size: 3.3rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec01 .box .left {
    font-size: 2rem;
  }
}
.main-recruit .sec01 .box .right h2 {
  font-size: 2.2rem;
  color: #003b82;
  margin-bottom: 4.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec01 .box .right h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.main-recruit .sec01 .box .right p {
  font-size: 1.7rem;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec01 .box .right p {
    font-size: 1.2rem;
  }
}
.main-recruit .sec02 {
  padding-top: 14rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 {
    padding-top: 8.5rem;
  }
}
.main-recruit .sec02 .inner1100 {
  width: 100%;
}
.main-recruit .sec02 .sp-ttl {
  color: #003b82;
  font-size: 1.5rem;
  line-height: 2;
  padding-left: 5%;
}
.main-recruit .sec02 .voice-archive {
  padding-bottom: 14rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive {
    padding-bottom: 5rem;
    padding-inline: 5%;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice {
    gap: 1.2rem;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li {
  background-color: #0068b6;
  width: calc((100% - 8rem) / 3);
}
@media screen and (max-width: 1180px) {
  .main-recruit .sec02 .voice-archive .ul-voice li {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li {
    width: 100%;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a {
  width: 100%;
  aspect-ratio: 1;
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a {
    aspect-ratio: unset;
    flex-direction: column;
    justify-content: left;
    padding: 1.2rem;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a .left {
  min-width: 9rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.2s;
}
.main-recruit .sec02 .voice-archive .ul-voice li a .left .number {
  display: flex;
  justify-content: left;
}
.main-recruit .sec02 .voice-archive .ul-voice li a .left .number p:nth-child(1) {
  font-size: 1.2rem;
  transform: translate(0, 120%) rotate(90deg);
  line-height: 1;
  height: -moz-fit-content;
  height: fit-content;
  width: 2.5rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a .left .number p:nth-child(1) {
    transform: translate(0, 70%) rotate(90deg);
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a .left .number .custom-no {
  font-size: 6rem;
  line-height: 1;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a .left .number .custom-no {
    font-size: 5rem;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a .left .category {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  background-color: #fff;
  color: #003b82;
  padding: 8px 15px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a .left .category {
    padding: 7px 14px;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a .left .year {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.main-recruit .sec02 .voice-archive .ul-voice li a .left .name {
  font-size: 1.5rem;
  line-height: 1;
}
.main-recruit .sec02 .voice-archive .ul-voice li a .right {
  position: relative;
  width: 70%;
  text-align: end;
  transition: all 0.3s;
  transition-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a .right {
    text-align: left;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a .right p {
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a .right p {
    font-size: 1rem;
    letter-spacing: -0.05em;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a .right .name {
  font-size: 1.5rem;
}
.main-recruit .sec02 .voice-archive .ul-voice li a .human {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  width: 60%;
}
.main-recruit .sec02 .voice-archive .ul-voice li a .human img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a .human {
    left: unset;
    right: 0rem;
    bottom: -6rem;
    transform: translate(-5%, 0);
    width: 15.5rem;
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a:hover .left {
  transform: translateX(-5px);
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a:hover .left {
    transform: translateX(0);
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a:hover .right {
  transform: translateY(5px);
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a:hover .right {
    transform: translateY(0);
  }
}
.main-recruit .sec02 .voice-archive .ul-voice li a:hover .human {
  transform: translateX(-50%) scale(1.1);
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-archive .ul-voice li a:hover .human {
    transform: translateX(-5%) scale(1);
  }
}
.main-recruit .sec02 .voice-detail .img {
  overflow: hidden;
}
.main-recruit .sec02 .voice-detail .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-recruit .sec02 .voice-detail .ul-voice02 #voice02 .sp-ttl, .main-recruit .sec02 .voice-detail .ul-voice02 #voice03 .sp-ttl, .main-recruit .sec02 .voice-detail .ul-voice02 #voice04 .sp-ttl {
  padding: 4.5rem 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 #voice02 .box_a, .main-recruit .sec02 .voice-detail .ul-voice02 #voice03 .box_a, .main-recruit .sec02 .voice-detail .ul-voice02 #voice04 .box_a {
    gap: 0;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li {
  padding-top: 10rem;
  padding-bottom: 36rem;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li {
    padding-inline: 5%;
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li {
    padding-top: 7.2rem;
    padding-bottom: 0;
    padding-inline: 0;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box {
  display: flex;
  gap: 4.5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box {
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-inline: 5%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .left .number {
  width: 12.4rem;
  height: 12.4rem;
  background-color: #0068b6;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .left .number {
    width: 9.3rem;
    height: 9.3rem;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .left .number p:nth-child(1) {
  transform: translateY(-4px) rotate(90deg);
  transform-origin: center;
  font-size: 1.5rem;
  width: 4rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .left .number p:nth-child(1) {
    font-size: 1.1rem;
    width: 3rem;
    transform: translateY(0px) rotate(90deg);
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .left .number .custom-no {
  font-size: 7.5rem;
  line-height: 1;
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .left .number .custom-no {
    font-size: 5.6rem;
    transform: translateY(5px);
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile {
  color: #003b82;
  position: relative;
  width: 100%;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile .name-en {
  font-size: 2rem;
  line-height: 1;
  margin-right: 1.2rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile .name-en {
    font-size: 1.7rem;
    display: inline-block;
    width: calc(100% - 7.6rem - 1.4rem);
    margin-right: 0;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p {
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p {
    flex-wrap: wrap;
    justify-content: left;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p span {
    display: block;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p .category {
  border: 1px solid #003b82;
  padding: 8px 14px;
  margin-right: 1.4rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p .category {
    font-size: 1.5rem;
    display: inline-block;
    width: 7.6rem;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p .name-ja {
  font-size: 1.7rem;
  padding-top: 2px;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p .year, .main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p .post {
  font-size: 1.4rem;
  padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p .year, .main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile p .post {
    font-size: 1.2rem;
    width: 100%;
    padding-top: 1rem;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile .pro-ttl {
  position: absolute;
  bottom: 0;
  left: calc(50% - 3rem - 2rem);
  color: #003b82;
  font-size: 2rem;
  line-height: 2;
  transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box .profile .pro-ttl {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box-wrap {
    padding-inline: 5%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc {
  width: 100%;
  display: flex;
  gap: 6rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc {
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 4.5rem;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .left, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .right {
  width: calc(50% - 3rem);
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .left, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .right {
    width: 100%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .left p, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .right p {
  line-height: 2.5;
  font-size: 1.7rem;
  transform: translateY(-13px);
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .left p, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .right p {
    transform: translateY(0);
    font-size: 1.2rem;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .left .img, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_abc .right .img {
  width: 100%;
  aspect-ratio: 522/367;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_a .right p.sp-ttl {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    padding-left: 0;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_b {
    flex-direction: column-reverse;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_b .right .img:nth-child(1) {
  width: 100%;
  aspect-ratio: 512/346;
  margin-bottom: 1rem;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_b .right .img:nth-child(2) {
  width: 58%;
  aspect-ratio: 295/199;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_c, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e {
  margin-left: 16.9rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_c, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e {
    margin-left: 0;
    gap: 4rem;
    margin-bottom: 4rem;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_c .right, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e .right {
  width: calc(100% - 16.9rem - (50% - 3rem));
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_c .right, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e .right {
    width: 100%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_c .right .img:nth-child(1), .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e .right .img:nth-child(1) {
  width: 100%;
  aspect-ratio: 338/208;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_c .right .img:nth-child(1), .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e .right .img:nth-child(1) {
    width: 70%;
    margin-left: 30%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_c .right .img:nth-child(2), .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e .right .img:nth-child(2) {
  width: 76.3%;
  aspect-ratio: 258/208;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_c .right .img:nth-child(2), .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e .right .img:nth-child(2) {
    width: 50%;
    margin-left: 30%;
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_c, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e {
    margin-left: 0;
  }
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_c .right, .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e .right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_e {
    margin-bottom: 1rem;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_d {
  margin-left: 16.9rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_d {
    margin-left: 0;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_d .right {
  width: calc(100% - 16.9rem - (50% - 3rem));
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_d .right {
    width: 100%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_d .right .img:nth-child(1) {
  width: 76.3%;
  aspect-ratio: 258/208;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_d .right .img:nth-child(1) {
    width: 50%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_d .right .img:nth-child(2) {
  width: 100%;
  aspect-ratio: 338/208;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_d .right .img:nth-child(2) {
    width: 70%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_f {
  margin-left: 16.9rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_f {
    margin-left: 0;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_f .left {
  width: calc(100% - 16.9rem - (50% - 3rem));
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_f .left {
    width: 100%;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_f .left .img:nth-child(1) {
  width: 100%;
  aspect-ratio: 338/208;
  margin-bottom: 1rem;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box_f .left .img:nth-child(2) {
  width: 76.3%;
  aspect-ratio: 258/208;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box_f .left .img:nth-child(2) {
    width: 50%;
    margin-left: auto;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box02 {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 7rem;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box02 .left, .main-recruit .sec02 .voice-detail .ul-voice02 li .box02 .right {
  width: calc(50% - 3.5rem);
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box02 .left .img:nth-child(1) {
  width: 100%;
  margin-bottom: 1rem;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box02 .left .img:nth-child(2) {
  width: 65%;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box02 .right p {
  line-height: 2.5;
  font-size: 1.7rem;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 {
  padding: 5.2rem 5%;
  background-color: #ebebec;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 99vw;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box03 {
    padding: 4.2rem 5%;
    width: 100%;
    position: static;
    transform: translate(0, 0);
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .ttlbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.4rem;
  max-width: 1100px;
  margin-inline: auto;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .ttlbox h2, .main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .ttlbox p {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .ttlbox p {
    font-size: 1rem;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .table-voice {
  width: 100%;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .table-voice tr th, .main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .table-voice tr td {
  padding: 9px 24px 9px 14px;
  line-height: 1;
  border-left: 2px dotted #003b82;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .table-voice tr th:nth-child(1), .main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .table-voice tr td:nth-child(1) {
  padding-left: 0;
  border-left: none;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .table-voice tr th {
  color: #003b82;
  text-align: left;
  font-size: 2.2rem;
  border-bottom: 2px solid #003b82;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .table-voice tr td {
  font-size: 1.5rem;
}
.main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .she-img {
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec02 .voice-detail .ul-voice02 li .box03 .she-img {
    max-width: 34rem;
    margin-inline: 0;
    min-width: 310px;
  }
}
.main-recruit .sec02 .voice-detail .ul-voice02 li::after {
  content: "";
  display: inline-block;
  width: 99vw;
  height: 3px;
  background-color: #0068b6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main-recruit .sec02 .voice-detail .ul-voice02 li:nth-child(2) .box .profile .pro-ttl, .main-recruit .sec02 .voice-detail .ul-voice02 li:nth-child(3) .box .profile .pro-ttl, .main-recruit .sec02 .voice-detail .ul-voice02 li:nth-child(4) .box .profile .pro-ttl {
  left: 0;
}
.main-recruit .sec03 {
  background-image: url("../img/recruit/bg02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 12.5rem;
  border-top: 3px solid #0068b6;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec03 {
    background-image: url("../img/recruit/bg02-sp.jpg");
    padding-top: 7.5rem;
  }
}
.main-recruit .sec03 .ttlbox h2, .main-recruit .sec03 .ttlbox p {
  color: #fff;
}
.main-recruit .sec03 .txt01 {
  color: #fff;
  font-size: 1.7rem;
  line-height: 3;
  margin-bottom: 7.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec03 .txt01 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 4.2rem;
  }
}
.main-recruit .sec03 .ul-rec {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5rem;
}
.main-recruit .sec03 .ul-rec li {
  width: calc((100% - 15rem) / 4);
  margin-bottom: 11rem;
}
@media screen and (max-width: 1080px) {
  .main-recruit .sec03 .ul-rec li {
    width: calc((100% - 10rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .sec03 .ul-rec li {
    width: 75%;
    margin-inline: auto;
    margin-bottom: 5rem;
  }
}
.main-recruit .sec03 .ul-rec li p {
  color: #fff;
}
.main-recruit .sec03 .ul-rec li .ttl {
  margin: 2.5rem 0;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec03 .ul-rec li .ttl {
    text-align: center;
    font-size: 1.7rem;
    margin: 1.7rem 0;
  }
}
.main-recruit .sec03 .ul-rec li .txt {
  line-height: 2.5;
  font-size: 1.4rem;
}
.main-recruit .sec03 .ul-rec li .txt span {
  display: block;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec03 .ul-rec li .txt {
    font-size: 1.2rem;
  }
}
.main-recruit .sec04 {
  padding: 14rem 0;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec04 {
    padding: 7rem 0 6rem;
  }
}
.main-recruit .sec04 .ttlbox {
  margin-bottom: 3.4rem;
}
.main-recruit .sec04 .table-rec {
  border-bottom: 1px solid #898989;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec04 .table-rec {
    border-bottom: none;
  }
}
.main-recruit .sec04 .table-rec tr {
  border-top: 1px solid #898989;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec04 .table-rec tr {
    border-top: none;
  }
}
.main-recruit .sec04 .table-rec tr th, .main-recruit .sec04 .table-rec tr td {
  padding: 2.2rem 0;
  font-size: 1.7rem;
}
.main-recruit .sec04 .table-rec tr th {
  padding-left: 1rem;
  width: 13rem;
  color: #0267b6;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec04 .table-rec tr th {
    padding: 1rem 0 0.5rem;
    border-bottom: 1px solid #241916;
  }
}
.main-recruit .sec04 .table-rec tr td {
  width: calc(100% - 13rem);
  letter-spacing: -0.05em;
}
.main-recruit .sec04 .table-rec tr td a {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .main-recruit .sec04 .table-rec tr td {
    padding: 0.5rem 0 1rem;
    letter-spacing: -0.07em;
  }
}
@media screen and (max-width: 768px) {
  .main-recruit .sec04 .table-rec tr th, .main-recruit .sec04 .table-rec tr td {
    display: block;
    width: 100%;
    font-size: 1.2rem;
  }
}

.main-procurement .procurement-mv {
  position: relative;
  padding-top: 7.8rem;
}
@media screen and (max-width: 768px) {
  .main-procurement .procurement-mv {
    height: 30rem;
    padding-top: 5.8rem;
  }
  .main-procurement .procurement-mv .img {
    height: 100%;
  }
  .main-procurement .procurement-mv .img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.main-procurement .procurement-mv .ttlbox {
  position: absolute;
  top: calc(50% + 3.9rem);
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-procurement .procurement-mv .ttlbox .garamond, .main-procurement .procurement-mv .ttlbox p {
  color: #fff;
}
.main-procurement .sec01 {
  padding: 12.4rem 0 15rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec01 {
    padding: 4rem 5% 8rem;
  }
}
.main-procurement .sec01 .txt01 {
  color: #0068b6;
  line-height: 2;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec01 .txt01 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 3rem;
  }
}
.main-procurement .sec01 .txt02 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec01 .txt02 {
    font-size: 1.2rem;
  }
}
.main-procurement .sec01 .txt03 {
  color: #0068b6;
  line-height: 1;
}
.main-procurement .sec01 .txt03 span {
  border: 1px solid #0068b6;
  display: inline-block;
  width: 17rem;
  padding: 1.5rem 0;
  margin-right: 1rem;
}
.main-procurement .sec01 .txt03 span:last-child {
  padding: 2.2rem 0 0 0;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1180px) {
  .main-procurement .sec01 .txt03 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-inline: 5%;
  }
  .main-procurement .sec01 .txt03 span {
    width: calc(50% - 0.5rem);
    margin-right: 0;
    font-size: 1.2rem;
  }
  .main-procurement .sec01 .txt03 span:last-child {
    padding-top: 0;
    margin-left: auto;
  }
}
.main-procurement .sec02 .ul-pro {
  display: flex;
  gap: 1.8rem;
  margin-bottom: 11rem;
}
@media screen and (max-width: 1080px) {
  .main-procurement .sec02 .ul-pro {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 8rem;
  }
}
.main-procurement .sec02 .ul-pro li {
  width: calc((100% - 3.6rem) / 3);
  aspect-ratio: 1;
  background-image: url("../img/procurement/bg01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 4rem 0 0;
}
@media screen and (max-width: 1080px) {
  .main-procurement .sec02 .ul-pro li {
    width: 100%;
    aspect-ratio: unset;
  }
}
.main-procurement .sec02 .ul-pro li .garamond {
  padding-bottom: 1.6rem;
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
}
.main-procurement .sec02 .ul-pro li .garamond::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .main-procurement .sec02 .ul-pro li .garamond {
    font-size: 1.4rem;
  }
}
.main-procurement .sec02 .ul-pro li p {
  line-height: 2.5;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  min-height: 24rem;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec02 .ul-pro li p {
    font-size: 1.2rem;
    height: unset;
    min-height: unset;
    margin: 3rem 0;
  }
}
.main-procurement .sec03 {
  padding: 11rem 0 14rem;
  background-color: #e3eff6;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 {
    padding: 6rem 0 8rem;
  }
}
.main-procurement .sec03 .message {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .ttlbox {
    margin-bottom: 0;
  }
}
.main-procurement .sec03 .txt01 {
  font-size: 1.7rem;
  padding: 5.4rem 0 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .txt01 {
    padding: 4rem 0 6rem;
    font-size: 1.4rem;
  }
}
.main-procurement .sec03 .box {
  margin-bottom: 14rem;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .box {
    margin-bottom: 6rem;
  }
}
.main-procurement .sec03 .box .ttl01 {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #0068b6;
  width: 100%;
  color: #0068b6;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .box .ttl01 {
    font-size: 1.6rem;
  }
}
.main-procurement .sec03 .box .ul-pro02 {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
}
@media screen and (max-width: 1080px) {
  .main-procurement .sec03 .box .ul-pro02 {
    flex-direction: column;
  }
}
.main-procurement .sec03 .box .ul-pro02 li {
  width: calc((100% - 4rem) / 3);
  padding: 3.5rem 0;
  background-color: #fff;
}
@media screen and (max-width: 1080px) {
  .main-procurement .sec03 .box .ul-pro02 li {
    width: 100%;
    padding: 2rem 0;
  }
}
.main-procurement .sec03 .box .ul-pro02 li .inbox {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .box .ul-pro02 li .inbox {
    font-size: 1.4rem;
  }
}
.main-procurement .sec03 .box .ul-pro02 li .inbox a {
  margin-inline: auto;
}
.main-procurement .sec03 .box .txt02 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .box .txt02 {
    font-size: 1.2rem;
  }
}
.main-procurement .sec03 .box02 {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .box02 {
    margin-bottom: 3rem;
  }
}
.main-procurement .sec03 .box02 .txt03 {
  text-align: center;
  margin-top: 6rem;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .box02 .txt03 {
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.main-procurement .sec03 .box02 .txt03 a {
  display: inline-block;
  color: #0068b6;
  border-bottom: 1px solid #0068b6;
  line-height: 1;
  padding-top: 1.7rem;
}
.main-procurement .sec03 .box02 .txt03 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .main-procurement .sec03 .box02 .txt03 a {
    padding-top: 0.6rem;
  }
}
.main-procurement .sec03 .table-pro {
  width: 100%;
  border-bottom: 1px solid #000;
}
.main-procurement .sec03 .table-pro p {
  line-height: 3rem;
}
.main-procurement .sec03 .table-pro input {
  width: 100%;
  border: 1px solid #000;
  height: 3rem;
  background-color: #fff;
  padding-left: 5px;
}
.main-procurement .sec03 .table-pro textarea {
  border: 1px solid #000;
  background-color: #fff;
  padding-left: 5px;
  margin-bottom: 1.5rem;
  width: 100%;
}
.main-procurement .sec03 .table-pro select {
  cursor: pointer;
  background-color: #fff;
  width: 100%;
  padding-left: 5px;
}
.main-procurement .sec03 .table-pro .select {
  position: relative;
}
.main-procurement .sec03 .table-pro .select::after {
  content: "▼";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 12px;
  line-height: 1;
  width: 12px;
  height: 12px;
  color: #90989c;
  transform: translateY(-50%);
}
.main-procurement .sec03 .table-pro tr {
  border-top: 1px solid #000;
}
.main-procurement .sec03 .table-pro tr th, .main-procurement .sec03 .table-pro tr td {
  padding: 6rem 0;
}
.main-procurement .sec03 .table-pro tr th {
  padding-left: 1.8rem;
  text-align: left;
  vertical-align: top;
  font-size: 1.8rem;
  width: 30rem;
}
@media screen and (max-width: 980px) {
  .main-procurement .sec03 .table-pro tr th {
    padding-top: 3rem;
    padding-bottom: 0.5rem;
    padding-left: 0;
  }
}
.main-procurement .sec03 .table-pro tr .required p {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.main-procurement .sec03 .table-pro tr .required p::after {
  content: "必須";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  color: #fff;
  background-color: #0068b6;
  font-size: 1.5rem;
  line-height: 1;
  padding: 6px 8px;
}
@media screen and (max-width: 980px) {
  .main-procurement .sec03 .table-pro tr .required p::after {
    font-size: 1rem;
  }
}
.main-procurement .sec03 .table-pro tr td {
  width: calc(100% - 30rem);
}
@media screen and (max-width: 980px) {
  .main-procurement .sec03 .table-pro tr td {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
  }
}
.main-procurement .sec03 .table-pro tr td span {
  display: inline-block;
  margin-bottom: 1rem;
}
.main-procurement .sec03 .table-pro tr td .mt4 {
  margin-top: 4rem;
}
.main-procurement .sec03 .table-pro tr td .flex {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.main-procurement .sec03 .table-pro tr td .flex03 {
  align-items: center;
  flex-direction: row;
}
.main-procurement .sec03 .table-pro tr td p {
  margin-right: 5px;
}
.main-procurement .sec03 .table-pro tr .td01 p {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 980px) {
  .main-procurement .sec03 .table-pro tr .td01 p {
    width: 100%;
  }
}
.main-procurement .sec03 .table-pro tr .td01 div p {
  width: -moz-fit-content;
  width: fit-content;
}
.main-procurement .sec03 .table-pro tr .td01 div .td02 {
  width: 16.2rem;
}
.main-procurement .sec03 .table-pro tr p.td02 {
  width: 16.3rem;
}
.main-procurement .sec03 .table-pro tr p.td02.flex {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.main-procurement .sec03 .table-pro tr .flex02 {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  margin-bottom: 1.5rem;
}
.main-procurement .sec03 .table-pro tr .flex02 input {
  border: none;
}
.main-procurement .sec03 .table-pro tr p.td02.place {
  border: 1px solid #000;
  margin-bottom: 1.5rem;
}
.main-procurement .sec03 .table-pro tr input#area, .main-procurement .sec03 .table-pro tr input#city {
  width: 50%;
  border: none;
}
.main-procurement .sec03 .table-pro tr p.td03 {
  width: 58.2rem;
  height: 15rem;
}
@media screen and (max-width: 980px) {
  .main-procurement .sec03 .table-pro tr p.td03 {
    width: 100%;
  }
}
.main-procurement .sec03 .table-pro tr p.td04 {
  width: 28rem;
  border: 1px solid #000;
}
.main-procurement .sec03 .table-pro tr .w118 {
  width: 11.8rem;
}
.main-procurement .sec03 .table-pro tr .w4 {
  width: 4rem;
}
@media screen and (max-width: 980px) {
  .main-procurement .sec03 .table-pro tr th, .main-procurement .sec03 .table-pro tr td {
    display: block;
    width: 100%;
    font-size: 1.2rem;
  }
}
.main-procurement .sec03 button, .main-procurement .sec03 .btn-con {
  margin: 10rem auto;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #000;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.main-procurement .sec03 button input, .main-procurement .sec03 .btn-con input {
  color: #fff;
  padding: 2rem 12rem 2rem 3rem;
}
.main-procurement .sec03 button a, .main-procurement .sec03 .btn-con a {
  padding: 0 !important;
  color: #fff;
}
.main-procurement .sec03 button::after, .main-procurement .sec03 .btn-con::after {
  content: "";
  background-image: url("../img/common/arrow01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.3rem;
  aspect-ratio: 42/15;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}
.main-procurement .sec03 button:hover::after, .main-procurement .sec03 .btn-con:hover::after {
  transform: translate(3px, -50%);
}
@media screen and (max-width: 980px) {
  .main-procurement .sec03 button, .main-procurement .sec03 .btn-con {
    margin: 4rem auto;
  }
}
.main-procurement .sec03 button a, .main-procurement .sec03 .btn-con a {
  width: 100%;
  background-color: #000;
  padding: 2rem 2.7rem;
}
.main-procurement .sec03 button a p, .main-procurement .sec03 .btn-con a p {
  line-height: 1;
  color: #fff;
  font-size: 1.7rem;
  position: relative;
}
.main-procurement .sec03 button a p span, .main-procurement .sec03 .btn-con a p span {
  margin-left: 7rem;
  width: 4rem;
  display: inline-block;
  transition: all 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  .main-procurement .sec03 button a p, .main-procurement .sec03 .btn-con a p {
    font-size: 1.2rem;
  }
}
.main-procurement .sec03 button a:hover p span, .main-procurement .sec03 .btn-con a:hover p span {
  transform: translateX(3px);
}
.main-procurement .sec03 .btn-thanks a {
  padding: 2rem 12rem 2rem 3rem !important;
}

.main-contact .contact-mv {
  position: relative;
  padding-top: 7.8rem;
}
@media screen and (max-width: 768px) {
  .main-contact .contact-mv {
    padding-top: 11rem;
  }
}
.main-contact .contact-mv .img {
  width: 26.2rem;
  aspect-ratio: 1;
  margin: 11.4rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .main-contact .contact-mv .img {
    margin-top: 0;
  }
}
.main-contact .contact-mv .ttlbox {
  position: absolute;
  top: calc(50% + 3.9rem + 5.7rem);
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-contact .contact-mv .ttlbox .garamond, .main-contact .contact-mv .ttlbox p {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .main-contact .contact-mv .ttlbox {
    top: calc(50% + 5.5rem);
  }
}
.main-contact .sec03 {
  padding: 11rem 0 14rem;
}
@media screen and (max-width: 768px) {
  .main-contact .sec03 {
    padding: 6rem 0 8rem;
  }
}
.main-contact .sec03 .message {
  text-align: center;
}
.main-contact .sec03 .txt01 {
  font-size: 1.7rem;
  padding: 5.4rem 0 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-contact .sec03 .txt01 {
    font-size: 1.4rem;
    padding: 3rem 0 4rem;
  }
}
.main-contact .sec03 .box {
  margin-bottom: 14rem;
}
@media screen and (max-width: 768px) {
  .main-contact .sec03 .box {
    margin-bottom: 8rem;
  }
}
.main-contact .sec03 .box .ttl01 {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #0068b6;
  width: 100%;
  color: #0068b6;
}
@media screen and (max-width: 768px) {
  .main-contact .sec03 .box .ttl01 {
    font-size: 1.4rem;
  }
}
.main-contact .sec03 .box .ul-pro02 {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
}
@media screen and (max-width: 1080px) {
  .main-contact .sec03 .box .ul-pro02 {
    flex-direction: column;
  }
}
.main-contact .sec03 .box .ul-pro02 li {
  width: calc((100% - 4rem) / 3);
  padding: 3.5rem 0;
  background-color: #e3eff6;
}
@media screen and (max-width: 1080px) {
  .main-contact .sec03 .box .ul-pro02 li {
    width: 100%;
  }
}
.main-contact .sec03 .box .ul-pro02 li .inbox {
  text-align: center;
  font-size: 1.4rem;
}
.main-contact .sec03 .box .ul-pro02 li .inbox a {
  margin-inline: auto;
  color: #0068b6;
}
.main-contact .sec03 .box .txt02 {
  text-align: center;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .main-contact .sec03 .box .txt02 {
    font-size: 1.2rem;
  }
}
.main-contact .sec03 .box02 {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 768px) {
  .main-contact .sec03 .box02 {
    margin-bottom: 4rem;
  }
}
.main-contact .sec03 .box02 .txt03 {
  text-align: center;
  margin-top: 6rem;
  line-height: 3;
}
.main-contact .sec03 .box02 .txt03 a {
  display: inline-block;
  color: #0068b6;
  border-bottom: 1px solid #0068b6;
  line-height: 1;
  padding-top: 1.7rem;
}
.main-contact .sec03 .box02 .txt03 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .main-contact .sec03 .box02 .txt03 {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
  .main-contact .sec03 .box02 .txt03 a {
    padding-top: 1.3rem;
  }
}
.main-contact .sec03 .table-pro {
  width: 100%;
  border-bottom: 1px solid #000;
}
.main-contact .sec03 .table-pro p {
  line-height: 3rem;
}
.main-contact .sec03 .table-pro input {
  width: 100%;
  border: 1px solid #000;
  height: 3rem;
}
.main-contact .sec03 .table-pro textarea {
  border: 1px solid #000;
}
.main-contact .sec03 .table-pro select {
  cursor: pointer;
  width: 100%;
}
.main-contact .sec03 .table-pro .select {
  position: relative;
}
.main-contact .sec03 .table-pro .select::after {
  content: "▼";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 12px;
  line-height: 1;
  width: 12px;
  height: 12px;
  color: #90989c;
  transform: translateY(-50%);
}
.main-contact .sec03 .table-pro tr {
  border-top: 1px solid #000;
}
.main-contact .sec03 .table-pro tr th, .main-contact .sec03 .table-pro tr td {
  padding: 6rem 0;
}
.main-contact .sec03 .table-pro tr th {
  padding-left: 1.8rem;
  text-align: left;
  vertical-align: top;
  font-size: 1.8rem;
  width: 30rem;
}
@media screen and (max-width: 980px) {
  .main-contact .sec03 .table-pro tr th {
    padding-top: 3rem;
    padding-bottom: 0.5rem;
    padding-left: 0;
  }
}
.main-contact .sec03 .table-pro tr .required p {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.main-contact .sec03 .table-pro tr .required p::after {
  content: "必須";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  color: #fff;
  background-color: #0068b6;
  font-size: 1.5rem;
  line-height: 1;
  padding: 6px 8px;
}
@media screen and (max-width: 980px) {
  .main-contact .sec03 .table-pro tr .required p::after {
    font-size: 1rem;
  }
}
.main-contact .sec03 .table-pro tr td {
  width: calc(100% - 30rem);
}
@media screen and (max-width: 980px) {
  .main-contact .sec03 .table-pro tr td {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
  }
}
.main-contact .sec03 .table-pro tr td span {
  display: inline-block;
}
.main-contact .sec03 .table-pro tr td .flex {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.main-contact .sec03 .table-pro tr td p {
  background-color: #fff;
  padding-left: 5px;
  margin-right: 5px;
}
.main-contact .sec03 .table-pro tr .td01 p {
  width: 41rem;
}
@media screen and (max-width: 980px) {
  .main-contact .sec03 .table-pro tr .td01 p {
    width: 100%;
  }
}
.main-contact .sec03 .table-pro tr p.td02 {
  width: 16.3rem;
}
.main-contact .sec03 .table-pro tr p.td02.flex {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.main-contact .sec03 .table-pro tr .flex02 {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  margin-bottom: 1.5rem;
}
.main-contact .sec03 .table-pro tr .flex02 input {
  border: none;
}
.main-contact .sec03 .table-pro tr p.td02.place {
  border: 1px solid #000;
  margin-bottom: 1.5rem;
}
.main-contact .sec03 .table-pro tr input#area, .main-contact .sec03 .table-pro tr input#city {
  width: 50%;
  border: none;
}
.main-contact .sec03 .table-pro tr p.td03 {
  width: 58.2rem;
  height: 15rem;
}
@media screen and (max-width: 980px) {
  .main-contact .sec03 .table-pro tr p.td03 {
    width: 100%;
  }
}
.main-contact .sec03 .table-pro tr p.td04 {
  width: 28rem;
  border: 1px solid #000;
}
.main-contact .sec03 .table-pro tr .w118 {
  width: 11.8rem;
}
@media screen and (max-width: 980px) {
  .main-contact .sec03 .table-pro tr th, .main-contact .sec03 .table-pro tr td {
    display: block;
    width: 100%;
    font-size: 1.2rem;
  }
}
.main-contact .sec03 button, .main-contact .sec03 .btn-con, .main-contact .sec03 label {
  margin: 10rem auto;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7rem;
  position: relative;
  cursor: pointer;
}
.main-contact .sec03 button input, .main-contact .sec03 .btn-con input, .main-contact .sec03 label input {
  color: #fff;
  padding: 2rem 12rem 2rem 3rem;
}
.main-contact .sec03 button a, .main-contact .sec03 .btn-con a, .main-contact .sec03 label a {
  padding: 0 !important;
  color: #fff;
}
.main-contact .sec03 button::after, .main-contact .sec03 .btn-con::after, .main-contact .sec03 label::after {
  content: "";
  background-image: url("../img/common/arrow01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.3rem;
  aspect-ratio: 42/15;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}
.main-contact .sec03 button:hover::after, .main-contact .sec03 .btn-con:hover::after, .main-contact .sec03 label:hover::after {
  transform: translate(3px, -50%);
}
@media screen and (max-width: 980px) {
  .main-contact .sec03 button, .main-contact .sec03 .btn-con, .main-contact .sec03 label {
    margin: 4rem auto;
  }
}
.main-contact .sec03 button a, .main-contact .sec03 .btn-con a, .main-contact .sec03 label a {
  width: 100%;
  background-color: #000;
  padding: 2rem 2.7rem;
}
.main-contact .sec03 button a p, .main-contact .sec03 .btn-con a p, .main-contact .sec03 label a p {
  line-height: 1;
  color: #fff;
  font-size: 1.7rem;
  position: relative;
}
.main-contact .sec03 button a p span, .main-contact .sec03 .btn-con a p span, .main-contact .sec03 label a p span {
  margin-left: 7rem;
  width: 4rem;
  display: inline-block;
  transition: all 0.3s;
}
@media screen and (max-width: 980px) {
  .main-contact .sec03 button a p, .main-contact .sec03 .btn-con a p, .main-contact .sec03 label a p {
    font-size: 1.2rem;
  }
}
.main-contact .sec03 button a:hover p span, .main-contact .sec03 .btn-con a:hover p span, .main-contact .sec03 label a:hover p span {
  transform: translateX(3px);
}
.main-contact .sec03 .btn-thanks a {
  padding: 2rem 12rem 2rem 3rem !important;
}/*# sourceMappingURL=style.css.map */

.main-poricy .sec01 {
  background-image: unset;
  color: #000;
}
/* index.php内の404スタイル */
.e404 {
  padding: 5%;
  text-align: center;
}
.e404 p {
  line-height: 2;
  font-size: 2rem;
}
.e404 a {
  margin: 4rem auto;
  background: #00C300;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

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