@charset "UTF-8";

/*
 Theme Name: 株式会社マツモトWebサイトテーマ
 Version: 1.0
*/

/*============
  変数
==============*/
:root{
  --content_width: 1280px;

  --bg_color: #fff;
  --main_color: #000;
  --accent_color: #007566;

  --base_font-family: "Roboto", "Zen Kaku Gothic Antique", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif;
  --f_shippori: "Shippori Antique", sans-serif;
  --f_ooohbaby: "Oooh Baby", cursive;
  --base_font-size: 1.6rem;
}

/*============
  共通
==============*/
html {
  font-size: 10px;
}
body {
  font-family: var(--base_font-family);
  background-color: var(--bg_color);
  color: var(--main_color);
  font-size: var(--base_font-size);
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 83px;
}

body::before {
  content: '';
  background: url(./assets/img/common/bg_line.svg) 0 0 repeat-y;
  background-size: auto;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  margin-inline: auto;
  opacity: .5;
}

p {
  font-weight: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

.main {
  margin-top: 130px;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

/* コンテンツ幅 */
.page-content {
  max-width: var(--content_width);
  width: 100%;
  margin-inline: auto;
}

/* フォームリセット */
input, button, textarea, select, submit {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 見出し */
.ttl_eg {
  margin-bottom: 5px;
  font-size: 8rem;
  font-weight: 200;
  line-height: 1;
  color: #B9B9B9;
}

.txt-change-color-1 span:nth-child(1),
.txt-change-color-2 span:nth-child(2),
.txt-change-color-3 span:nth-child(3),
.txt-change-color-4 span:nth-child(4),
.txt-change-color-5 span:nth-child(5) {
  color: var(--accent_color);
}

.ttl_txt {
  font-size: 2.4rem;
  letter-spacing: .03em;
  font-weight: 500;
}

.page-block .ttl {
  margin-bottom: 60px;
}

/* 見出し */
.ttl-h2--normal {
  font-weight: 300;
  font-size: 2.8rem;
  letter-spacing: .03em;
  line-height: 1;
  border-bottom: 1px solid #7f8685;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
}
.ttl-h2--normal::before {
  content: '';
  background-color: var(--accent_color);
  width: 150px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
}

/* プラン用見出し */
.plan-ttl {
  position: relative;
  border-top: 1px solid var(--accent_color);
  border-bottom: 1px solid var(--accent_color);
  background: #f4f4f4;
  line-height: 1.4;
  padding: 0.4em 0.5em;
  font-size: 2.3rem;
  font-weight: normal;
  letter-spacing: .03em;
}

.plan-ttl > span {
  position: absolute;
  background: var(--accent_color);
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 7px 15px;
  font-size: .6em;
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 300;
}


/* テキスト配置 */
.txt-center {
  text-align: center;
}

/* リンクボタン */
.link-btn {
  max-width: 400px;
  margin-inline: auto;
}

.link-btn a {
  background-color: var(--accent_color);
  border: 1px solid;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: .03em;
  padding: 17px 10px;
  font-size: 2.4rem;
  text-decoration: none;
  transition: all .3s;
}

.entry-btn {
  max-width: 600px;
}

.entry-btn a {
  font-size: 2.8rem;
  padding: 25px 10px;
}

.link-txt a,
.link-txt span {
  display: block;
  color: var(--accent_color);
  font-weight: bold;
  font-size: 18px;
  position: relative;
  padding-left: 40px;
  text-decoration: none;
}

.link-txt a::before,
.link-txt span::before {
  content: '';
  background: url(./assets/img/common/icon_link_arrow.svg) 0 0 no-repeat;
  background-size: 30px 5px;
  width: 30px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
  transition: all .3s;
}

.link-txt--white a,
.link-txt--white span {
  color: #fff;
}

.link-txt--white a::before,
.link-txt--white span::before {
  background: url(./assets/img/common/icon_link_arrow_white.svg) 0 0 no-repeat;
  background-size: 30px 5px;
}

@media (hover: hover) {
  .link-txt a:hover {
    color: #000;
  }

  .link-txt a:hover::before {
    left: 8px;
  }

  .link-btn a:hover {
    background-color: #fff;
    color: var(--accent_color);
  }

}

/* ページトップ */
#pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  cursor: pointer;
  display: none;
}

/* ヘッダー ロゴ */
.logo,
.footer_logo {
  position: relative;
  font-size: 0;
  margin: 0;
}
.logo span,
.footer_logo span {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  right: 0;
}

/* ページトップ */
.pagetop {
  position: fixed;
  right: 15px;
  bottom: 20px;
  z-index: 10;
  cursor: pointer;
  display: none;
}

/* パンくず */
#breadcrumbs {
  max-width: var(--content_width);
  margin-inline: auto;
  margin-top: 20px;
}

#breadcrumbs span {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 20px;
  font-weight: normal;
  letter-spacing: .03em;
}

#breadcrumbs span a {
  color: #000;
  text-decoration: none;
  transition: all .3s;
}

@media (hover: hover) {
  #breadcrumbs span a:hover {
    color: var(--accent_color);
  }
}

/* 404ページ */
.not-found-txt {
  margin-bottom: 42px;
}

/** ==============
ヘッダー
============== **/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, .8);
  z-index: 999;
}
.header_inner {
  padding: 45px 50px;
}
.header_hamburger {
  position: absolute;
  top: 50%;
  right: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 999;
}
.header_hamburger span{
  display: inline-block;
  transition: all .3s;
  position: absolute;
  left: 8px;
  height: 3px;
  background-color: #000;
}
.header_hamburger span:nth-of-type(1) {
  top: 18px;
  width: 34px;
}

.header_hamburger span:nth-of-type(2) {
  top: 32px;
  width: 34px;
}

.header_hamburger.active span {
  background-color: #fff;
}
.header_hamburger.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 34px;
}

.header_hamburger.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 34px;
}

.header_nav {
  position: fixed;
  right: -120%;
  top: 0;
  height: 100vh;
  background-color: rgba(0, 117, 102, .85);
  width: 400px;
  padding-top: 140px;
  z-index: 998;
  transition: all .4s;
}
.header_nav.active {
  right: 0;
}

.header_nav_list li:not(:last-child) {
  margin-bottom: 20px;
}

.header_nav_list a {
  display: block;
  padding-left: 60px;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  text-decoration: none;
}

.header_nav_list a::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

/* 採用情報 - ヘッダー */
.header-recruit .header_inner {
  display: flex;
  column-gap: 15px;
  align-items: center;
}

.recruit-entry-link {
  max-width: 240px;
  width: 100%;
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
}

.recruit-entry-link a {
  display: block;
  background-color: var(--accent_color);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  border-radius: 4px;
  border: 1px solid var(--accent_color);
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
}

@media (hover: hover) {
  .header_hamburger:not(.active):hover span:nth-of-type(2) {
    width: 24px;
  }
  .header_nav_list a:hover::before {
    opacity: 1;
    transform: rotateX(180deg);
  }
  .recruit-entry-link a:hover {
    background-color: #fff;
    color: var(--accent_color);
  }
}

/** ==============
フッター
============== **/
.footer {
  margin-top: 130px;
  max-width: 790px;
  margin-inline: auto;
}

.footer_header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 35px;
  margin-bottom: 40px;
}

.footer_logo {
  width: 150px;
}

.footer_logo svg {
  width: 100%;
}

.footer_navi {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer_navi a {
  font-size: 13px;
  color: #333;
  font-weight: normal;
}

.footer_copyright {
  text-align: center;
}

.footer_copyright small {
  font-size: 10px;
  letter-spacing: .07em;
}


/** ==============
トップページ
============== **/
.mv {
  position: relative;
}

.mv_catchcopy {
  position: absolute;
  left: 10px;
  bottom: 0;
  z-index: 10;
  mix-blend-mode: difference;
}

.mv_box {
  width: 60vw;
  margin-left: auto;
}

.mv_slide_box img {
  width: 100%;
}

.mv_box .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 60vw;
  margin-left: auto;
  right: 0;
  left: auto;
  top: auto;
  bottom: -30px;
}

.mv_box .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.mv_box .swiper-pagination-bullet-active {
  background: #1C9BD1;
}

.top-about {
  max-width: calc((100vw - 1490px) / 2 + 1490px);
  margin-top: 233px;
  margin-left: auto;
  padding-bottom: 330px;
  position: relative;
}

.top-about_header {
  margin-bottom: 105px;
}

.top-about_img {
  position: absolute;
  right: 0;
  top: -20px;
}

.top-about_img2 {
  position: absolute;
  right: 30%;
  bottom: 0;
}

.top-about_desc {
  display: flex;
  column-gap: 120px;
  justify-content: flex-end;
}

.top-about_desc_txt {
  width: 50%;
  padding-left: 80px;
}

.top-about_desc_img {
  flex: 1;
}

.top-about_desc_img img {
  width: 100%;
}

.top-about_desc_txt > h3 {
  font-size: 5.4rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.2;
  margin-bottom: 20px;
  white-space:pre-wrap;
  word-break:keep-all;
}

.top-about_desc_txt > p,
.top-service_desc > p  {
  line-height: 1.8;
  margin-bottom: 40px;
  letter-spacing: .03em;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
}

.top-about_catchcopy {
  position: absolute;
  right: 0;
  bottom: 150px;
  mix-blend-mode: difference;
}

.top-service {
  max-width: calc((100vw - 1490px) / 2 + 1490px);
  margin-top: 130px;
  padding-bottom: 160px;
  position: relative;
  display: flex;
  column-gap: 12%;
}

.top-service_catchcopy {
  position: absolute;
  right: 0;
  bottom: 0;
  mix-blend-mode: difference;
}

.top-service_content {
  order: 2;
  width: 46%;
  padding-top: 110px;
  z-index:2;
}

.top-service_img {
  order: 1;
  flex: 1;
}

.top-service_header {
  margin-bottom: 105px;
}

.top-service_desc >  h3 {
  font-size: 5.4rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.top-service_img_box:not(:last-child) {
  margin-bottom: 30px;
}

.top-service_img_box:nth-child(2) {
  padding-left: 120px;
}

.top-service_img img {
  width: 100%;
}

.top-recruit,
.recruit-link {
  margin-top: 95px;
  background: url(./assets/img/top/bg_recruit.jpg) center no-repeat;
  background-size: cover;
  max-width: 1500px;
  padding: 50px;
  margin-inline: auto;
  min-height: 600px;
}
.recruit-link {
  margin-top: 130px;
}

.top-recruit_content a,
.recruit-link a {
  color: var(--main_color);
  text-decoration: none;
  display: block;
  transition: all .3s;
}

.top-recruit_content,
.recruit-link_content {
  background-color: rgba(255, 255, 255, .9);
  max-width: 790px;
  padding: 50px;
}

.top-recruit_content .ttl,
.recruit-link_content .ttl {
  margin-bottom: 60px;
}

.top-recruit_content > p,
.recruit-link_content p {
  line-height: 1.8;
  letter-spacing: .03em;
}

.top-recruit_content > p.ttl_eg,
.recruit-link_content p.ttl_eg,
.page-content p.ttl_eg {
  line-height: 1;
}

.top-recruit_content .link-txt,
.recruit-link_content .link-txt {
  margin-top: 20px;
}

.top-news {
  margin-top: 135px;
  max-width: 780px;
  margin-inline: auto;
}

.top-news .ttl {
  width: fit-content;
  max-width: 340px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.top-news_list {
  margin-bottom: 80px;
}

.top-news_list > li:not(:last-child),
.archive-news_list > li:not(:last-child) {
  margin-bottom: 25px;
}

.top-news_list a,
.archive-news_list a {
  display: flex;
  column-gap: 5px;
  color: #000;
  font-weight: normal;
  letter-spacing: .03em;
  position: relative;
  text-decoration: none;
  padding-right: 50px;
}

.top-news_list a::after,
.archive-news_list a::after {
  content: '';
  background: url(./assets/img/common/icon_link_arrow.svg) 0 0 no-repeat;
  background-size: 50px 5px;
  height: 5px;
  width: 50px;
  position: absolute;
  right: 0;
  top: 5px;
  transition: all .3s;
}

.news-ttl {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 70%;
}

.top-news_list .news-ttl {
  width: 63%;
}

.cate {
  font-weight: bold;
  flex: 1;
}

.top-news_list time,
.archive-news_list time {
  color: #7B7B7B;
  flex: 1;
}

@media (hover: hover) {
  .top-news_list a:hover .news-ttl,
  .archive-news_list a:hover .news-ttl {
    color: var(--accent_color);
  }
  .top-news_list a:hover::after,
  .archive-news_list a:hover::after {
    right: -15px;
  }

  .recruit-link a:hover {
    opacity: .8;
  }
}

/** ==============
下層ページ
============== **/
.page-main {
  position: relative;
  max-width: calc((100vw - 1440px) / 2 + 1440px);
  margin-left: auto;
  padding-top: 90px;
  display: flex;
  column-gap: 80px;
}

.page-main_ttl--eg {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
}

.page-main_ttl--jp {
  font-weight: normal;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3.2rem;
  letter-spacing: .03em;
  padding-top: 65px;
  flex: 1;
}

.page-main_img {
  min-height: 450px;
  width: 90%;
}

.page-main_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* マツモトについて */
.about-message {
  background: url(./assets/img/about/bg_message.jpg) center no-repeat;
  background-size: cover;
  padding: 120px 20px;
  position: relative;
  z-index: 0;
  margin-inline: calc(50% - 50vw);
}

.about-message::before {
  content: '';
  background-color: rgba(255, 255, 255, .8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-message > div {
  max-width: var(--content_width);
  margin-inline: auto;
}

.about-message_ttl {
  font-weight: 300;
  font-size: 5rem;
  margin-bottom: 30px;
  letter-spacing: .03em;
}

.page-content .about-message_txt {
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: .03em;
}

.about-topmessage {
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  margin-top: 130px;
}

.about-topmessage a {
  display: flex;
  align-items: center;
  border: 3px solid #009380;
  background-color: #009380;
  color: #fff;
  text-decoration: none;
  transition: all .3s;
}

.about-topmessage_txt {
  width: 66%;
  padding-left: 80px;
}

.about-topmessage_img {
  flex: 1;
  margin-top: -100px;
  margin-right: 50px;
  margin-bottom: -1px;
}

.about-topmessage_txt h2 {
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: .03em;
  margin-bottom: 5px;
}

.page-content .about-topmessage_txt p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .03em;
  margin-bottom: 15px;
  margin-left: 10px;
  margin-top: 0;
}

.about-idea {
  padding: 80px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.about-idea_ttl {
  font-size: 4.8rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-idea_txt {
  letter-spacing: .03em;
  line-height: 1.8;
  font-size: 18px;
}

.about-idea > div {
  max-width: 750px;
}

.about-idea.vision > div {
  margin-left: auto;
}

.about-idea.mission {
  padding-top: 100px;
}

.about-idea.value {
  padding-bottom: 120px;
}

.about-idea::before {
  content: '';
  mix-blend-mode: difference;
}

.mission::before {
  background: url(./assets/img/about/img_txt_mission.svg) top right no-repeat;
  background-size: 501px auto;
  max-width: 501px;
  width: 100%;
  height: 147px;
  order: 2;
}

.vision::before {
  background: url(./assets/img/about/img_txt_vision.svg) top right no-repeat;
  background-size: 387px auto;
  max-width: 387px;
  width: 100%;
  height: 147px;
}

.value::before {
  background: url(./assets/img/about/img_txt_value.svg) top right no-repeat;
  background-size: 352px auto;
  max-width: 352px;
  width: 100%;
  height: 147px;
  order: 2;
}

.about-company_links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-company_links .link-box {
  width: calc((100% / 2) - 15px);
}

.page-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}


.link-box {
  margin: 0!important;
}

.link-box a {
  display: block;
  position: relative;
}

.link-box_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: .03em;
  text-align: center;
  width: 85%;
  height: 80%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  transition: all .3s;
}

.link-box a::before {
  content: '';
  position: absolute;
  background-color: #007566;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  transition: all .3s;
}

.link-box_txt::after {
  content: '';
  position: absolute;
  background: #ffffff;
  height: 20px;
  width: 20px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: 10px;
  bottom: 10px;
}

.link-list--x3 .link-box {
  width: calc((100% / 3) - 20px);
}

.link-list--x3 .link-box_txt {
  font-size: 2rem;
}


@media (hover: hover) {
  .about-topmessage a:hover {
    background-color: #fff;
    color: var(--accent_color);
  }
  .about-topmessage a:hover .link-txt--white span {
    color: var(--accent_color);
  }
  .about-topmessage a:hover .link-txt--white span::before {
    background: url(./assets/img/common/icon_link_arrow.svg) 0 0 no-repeat;
    background-size: 30px 5px;
  }

  .link-box a:hover .link-box_txt {
    width: 100%;
    height: 100%;
    color: #fff;
    backdrop-filter: brightness(.8);
  }

  .link-box a:hover::before {
    opacity: 0;
  }

}

/* 代表メッセージ */
.topmessage-about h2 {
  font-weight: 300;
  font-size: 4rem;
  letter-spacing: .03em;
}

.topmessage-profile_txt h3 {
  font-size: 3.6rem;
  letter-spacing: .03em;
  font-weight: 300;
}

/* 事業所一覧 */
.office-links {
  border: 1px solid var(--accent_color);
  padding: 30px 50px;
  max-width: 850px;
  margin-inline: auto;
  font-weight: normal;
  background-color: #f5fffa;
  border-radius: 10px;
}

.office-link_box:not(:last-child) {
  margin-bottom: 15px;
}

.office-link_box:has(.office-link_list) {
  display: flex;
  gap: 10px 5px;
  align-items: flex-start;
}

.office-link_box a {
  color: var(--accent_color);
}

.office-link_ttl {
  width: 80px;
  font-weight: bold;
}

.office-link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
  align-items: center;
}

.office-link_list > li {
  line-height: 1;
}

.office-link_list > li:not(:last-child) {
  border-right: 1px solid #000;
  padding-right: 3%;
}

.page-block .office-block .ttl {
  margin-bottom: 40px;
}

.office-box:not(:last-child) {
  margin-bottom: 60px;
}

.office-box_info_map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 600 / 310;
}

.office-box_info_txt > p {
  margin-bottom: 30px;
}

.access-info {
  background-color: #f5fffa;
  padding: 30px;
  border: 1px dashed var(--accent_color);
  border-radius: 5px;
}

.access-info h3 {
  font-size: 18px;
  color: var(--accent_color);
  font-weight: normal;
}

.page-content .access-info p {
  margin-top: 8px;
}

/* 沿革 */
.history-list {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
}

.history-list li {
  display: flex;
}

.history-list_year {
  color: var(--accent_color);
  font-size: 18px;
  padding-right: 30px;
  padding-top: 20px;
  line-height: 1.8;
  width: 100px;
}

.history-list_content {
  border-left: 1px solid var(--accent_color);
  padding: 20px 0 40px 30px;
  position: relative;
  letter-spacing: .03em;
  line-height: 1.8;
  flex: 1;
}

.history-list_content::before {
  content: '';
  background-color: var(--accent_color);
  height: 20px;
  width: 20px;
  position: absolute;
  top: 25px;
  left: -10px;
  border-radius: 100px;
}

.history-list_now {
  margin-left: 70px;
}

.history-list_now span {
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent_color);
  border-radius: 100px;
  color: #fff;
}

/* 未来への取り組み */
.future-about {
  margin-right: calc(50% - 50vw);
  position: relative;
}

.future-about::before {
  content: '';
  background: url(./assets/img/future/img_txt_digitaltransformation.svg) 0 0 no-repeat;
  background-size: 100%;
  width: 900px;
  height: 240px;
  position: absolute;
  bottom: -60px;
  left: 0px;
  mix-blend-mode: difference;
}

.future-about_txt h2 {
  font-size: 4.6rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.future-desc_img img {
  width: 100%;
}

/* IR情報 */
body .post-list {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  display: flex;
}

.post-list_content:not(.active) {
  display: none;
}

.post-list_cate {
  width: 20%;
}

.post-list_content {
  flex: 1;
  width:80%;
  border-left: 2px solid var(--accent_color);
  padding-left: 20px;
}

.post-list_cate_box {
  font-size: 18px;
  letter-spacing: .03em;
  padding: 15px 14px;
  position: relative;
  transition: all .3s;
}

.post-list_cate_box:not(.active) {
  border-bottom: 1px solid #DBDBDB;
  color: var(--accent_color);
  font-weight: normal;
  cursor: pointer;
}

.post-list_cate_box.active {
  background-color: #4CB5A7;
  color: #fff;
  font-weight: bold;
}

.post-list_cate_box.active::after {
  content: '';
  background-color: #fff;
  border-radius: 100px;
  height: 6px;
  width: 6px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.post-list_cate_box:not(:last-child) {
  margin-bottom: 20px;
}

.post-list_content > li {
  padding: 10px 20px;
  border-bottom: 1px solid #B9B9B9;
}

.post-list_content > li:not(:last-child) {
  margin-bottom: 35px;
}

.post-list_content_header {
  display: flex;
  gap: 5px 20px;
  margin-bottom: 5px;
  align-items: center;
}

.post-list_content_header time {
  color: var(--accent_color);
  font-size: 18px;
  letter-spacing: .03em;
  font-weight: normal;
}

.page-content p.cate-btn {
  padding: 4px 10px;
  border: 1px solid;
  color: var(--accent_color);
  border-radius: 4px;
  min-width: 98px;
  text-align: center;
  margin-top: 0;
}

.post-list_content a {
  display: block;
  position: relative;
  color: #000;
  font-weight: normal;
  font-size: 2.1rem;
  letter-spacing: .03em;
  text-decoration: none;
  transition: all .3s;
  padding-right: 35px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.post-list_content a::after {
  content: '';
  background: url(./assets/img/common/icon_link_arrow.svg) 0 0 no-repeat;
  background-size: 30px 5px;
  height: 5px;
  width: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}

.post-list_link {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
}

.link-block a {
  display: flex;
  gap: 20px 40px;
  align-items: flex-end;
  text-decoration: none;
}

.link-block_img {
  transition: all .3s;
  width: 70%;
}

.link-block .link-txt {
  flex: 1;
}

.link-block .link-txt span {
  width: fit-content;
}

.link-block--right .link-block_img {
  order: 2;
}

.link-block--right .link-txt {
  text-align: right;
  order: 1;
}

.link-block--right .link-txt span {
  margin-left: auto;
}

@media (hover: hover) {
  .post-list_cate_box:hover {
    background-color: #4CB5A7;
    color: #fff;
    font-weight: bold;
  }
  .post-list_content a:hover {
    color: var(--accent_color);
  }
  .link-block a:hover .link-block_img {
    opacity: .8;
  }
  .link-block a:hover .link-txt span {
    color: #000;
  }
  .link-block a:hover .link-txt span::before {
    left: 8px;
  }
}

/* IRニュース */
.ir-news {
  max-width: 1080px;
}

.ir-news_tabs {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ir-news_tabs a {
  display: block;
  color: var(--accent_color);
  border: 1px solid;
  padding: 10px 20px;
  font-weight: normal;
  border-radius: 4px;
  text-decoration: none;
  transition: all .3s;
}

.ir-news_tab_box {
  min-width: 120px;
  text-align: center;
}

.ir-news_tab_box.active a {
  background-color: var(--accent_color);
  color: #fff;
  pointer-events: none;
}

.archive-ir-news .post-list_content {
  border-left: none;
  padding-left: 0;
  display: block;
}

.archive-ir-news .post-list_content a {
  font-size: 18px;
}

@media (hover: hover) {
  .ir-news_tabs a:hover {
    background-color: var(--accent_color);
    color: #fff;
  }
}

/* 電子公告 */
.epub-notice {
  time {
    display:block;
  }
  a {
    font-size:2.1rem;
  }
}

/* 事業内容 */
.service-list {
  gap: 5em;
  margin-top: 80px;
}

.service-list_box figure {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.service-list_box figure img {
  width: 100%;
}

.service-list_box_txt {
  line-height: 1.8;
  letter-spacing: .03em;
}

.service-list_box_desc h3 {
  letter-spacing: .03em;
  font-size: 18px;
  font-weight: normal;
  color: var(--accent_color);
}

.service-list_box_desc h3 + p {
  margin-top: 5px;
}

.webservice-list_box:not(:last-child) {
  margin-bottom: 30px;
}

.webservice-list_box {
  display: flex;
  align-items: center;
  gap: 20px 30px;
  border-bottom: 1px dashed #bbb;
  padding-bottom: 30px;
}

.webservice-list_img {
  flex: 1;
}

.webservice-list_desc {
  width: 65%;
}

.webservice-list_desc h3 {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 20px;
  letter-spacing: .03em;
  color: var(--accent_color);
}

.webservice-list_desc_txt > p:not(.link-txt) {
  letter-spacing: .03em;
  line-height: 1.8;
}

/* 導入事例 */
.case-block {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}
.case-block:not(:last-child) {
  margin-bottom: 80px;
}
.case-block .ttl-h2--normal {
  margin-bottom: 20px;
}
.case-types {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.case-types li {
  background-color: var(--accent_color);
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  letter-spacing: .03em;
}

.case-block_gallery {
  margin-bottom: 30px;
}

.gallery-slider {
  margin-bottom: 20px;
  .swiper-slide {
    text-align: center;
  }
}

.gallery-thumbnail .swiper-wrapper {
  justify-content: center;
}

.gallery-thumbnail .gallery-slider_box {
  border: 1px solid #CBCCCE;
  cursor: pointer;
}

.case-block_desc_txt p {
  letter-spacing: .03em;
  line-height: 1.8;
  margin-top: 20px;
}

.case-block_desc_txt > *:first-child {
  margin-top: 0;
}

/* お問合せ */
.contact-form {
  max-width: 980px;
  margin-inline: auto;
  font-weight: normal;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 60%;
}

.contact-form .smf-action .smf-button-control__control {
  padding: 15px 20px;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: var(--accent_color);
  color: #fff;
  max-width: 300px;
  width: 100%;
  font-size: 18px;
  margin-top: 30px;
}

.contact-form .smf-action .smf-button-control__control[data-action="back"] {
  background: #555;
}

.thnaks-ttl {
  font-weight: normal;
  font-size: 3.5rem;
  text-align: center;
  letter-spacing: .03em;
  margin-bottom: 40px;
}

.thnaks-txt {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: .03em;
}

.contact-form input[name="zip"] {
  width: 200px;
}

.contact-form input.address {
  width: 100%;
}

/* プライバシーポリシー */
.privacy-policy_txt {
  line-height: 1.8;
  letter-spacing: .03em;
  margin-bottom: 30px;
}

.privacy-policy_box:not(:last-child) {
  margin-bottom: 30px;
}

.privacy-policy_box_ttl {
  font-weight: bold;
  font-size: 20px;
  color: var(--accent_color);
}

.privacy-policy_box p:not(.privacy-policy_box_ttl) {
  letter-spacing: .03em;
  line-height: 1.8;
}

.page-content .privacy-policy_box_ttl + p {
  margin-top: 5px;
}

.privacy-policy_box table {
  max-width: 950px;
  width: 100%;
  font-weight: normal;
}

/* お知らせ */
.archive-news_list {
  max-width: 950px;
  margin-inline: auto;
}

.post-block_body .wp-block-file .wp-block-file__button {
  color: #fff;
  background: var(--accent_color);
}
@media (hover: hover) {
  .post-block_body .wp-block-file .wp-block-file__button:hover,
  .post-block_body .wp-block-file .wp-block-file__button:active,
  .post-block_body .wp-block-file .wp-block-file__button:visited {
    color: #fff;
    text-decoration: none;
  }
}

/** ページネーション **/
.pagination {
  margin-top: 60px;
}
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.pagination .page-numbers > li {
  margin: 0 2%;
}
.pagination .page-numbers > li > a,
.pagination .page-numbers > li > span {
  color: #151515;
  padding: 8px 10px;
  display: block;
  line-height: 1;
}
.pagination .page-numbers > li > span {
  border-bottom: none;
}
.pagination .page-numbers > li > a.next,
.pagination .page-numbers > li > a.prev {
  position: relative;
  width: 120px;
}
.pagination .page-numbers > li > a.next::after,
.pagination .page-numbers > li > a.prev::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 2px solid #151515;
  border-right: 2px solid #151515;
}
.pagination .page-numbers > li > a.prev {
  text-align: right;
}
.pagination .page-numbers > li > a.prev::after {
  left: 10px;
  transform: rotate(-135deg);
}
.pagination .page-numbers > li > a.next::after {
  right: 10px;
  transform: rotate(45deg);
}
.pagination .page-numbers > li > span:not(.dots) {
  background: var(--accent_color);
  color: #fff;
}
.pagination .page-numbers > li > a:hover {
  color: var(--accent_color);
  text-decoration: none;
  opacity: 1;
}
.pagination .page-numbers > li > a.next:hover::after,
.pagination .page-numbers > li > a.prev:hover::after {
  border-top: 2px solid var(--accent_color);
  border-right: 2px solid var(--accent_color);
}

/* サイトマップ */
.sitemap-list {
  display: flex;
  gap: 20px 100px;
  max-width: 1080px;
  margin-inline: auto;
}

.sitemap-list_box {
  width: 50%;
  font-weight: normal;
}

.sitemap-list_box a {
  letter-spacing: .03em;
}

.sitemap-list_box > li:not(:last-child) {
  margin-bottom: 30px;
}

.sitemap-list_box .parent > a {
  color: var(--accent_color);
}

.sitemap-list_box .child-list {
  margin-left: 2em;
  margin-top: 20px;
}

.sitemap-list_box .child-list > li {
  margin-top: 15px;
}

.sitemap-list_box .child-list a {
  color: var(--accent_color);
}

/* 一般商業印刷、ウエディング・七五三・成人式 */
.commericial-printing_about,
.ceremony_about {
  margin-right: calc(50% - 50vw);
  position: relative;
}

.commericial-printing_about_txt h2,
.ceremony_about_txt h2 {
  font-size: 3.6rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-bottom: 30px;
}

.commericial-printing_about_txt p,
.ceremony_about_txt p {
  margin-bottom: 30px;
}

.service-support_list {
  font-weight: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #e1f7f4;
  padding: 30px;
}

.service-support_list li {
  width: calc((100% / 3) - 7px);
  position: relative;
  padding-left: 1.1em;
  color: var(--accent_color);
}

.ceremony_about .service-support_list li {
  width: calc((100% / 2) - 7px);
}

.service-support_list li::before {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--accent_color);
  border-bottom: 2px solid var(--accent_color);
  transform: rotate(-45deg);
}

.commericial-printing_about_txt .service-support_list {
  max-width: 800px;
}

.commericial-printing_desc,
.ceremony_desc {
  align-items: center!important;
}

.commericial-printing_desc h3,
.ceremony_desc h3 {
  font-size: 2.6rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.5;
}

.commericial-printing_desc_point {
  margin-top: 50px;
  max-width: 1000px;
  margin-inline: auto;
}

/* 株主メモ/IRカレンダー */
.irmemo_note {
  background-color: #e1f7f4;
  padding: 30px;
  max-width: 1080px;
  margin-inline: auto;
  font-weight: normal;
}

.irmemo_note h3 {
  font-size: 18px;
  font-weight: normal;
  color: var(--accent_color);
  margin-bottom: 15px;
}

.ircalendar_schedule {
  max-width: 1080px;
  margin-inline: auto;
}

.ircalendar_schedule_list {
  text-align: center;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  padding: 0 0 64px;
}

.ircalendar_schedule_list > li {
  margin: 1px;
}

.schedule-period {
  padding: 0.25em;
  background-color: var(--accent_color);
  color: #fff;
  margin-bottom: 2px;
}

.ircalendar_schedule_list > li ul {
  justify-content: space-between;
  display: flex;
  padding: 0;
}

.ircalendar_schedule_list > li ul li {
  position: relative;
  background-color: #f0f0f0;
  width: calc((100% - 2px) / 3);
  min-height: 3em;
  padding: 1em 0;
  overflow: visible;
}


.ircalendar_schedule_list > li ul li p:not(.schedule-month) {
  position: absolute;
  white-space: nowrap;
  bottom: calc(-1* 4.25em);
  left: 50%;
  font-size: 14px;
  line-height: 1.1;
  font-weight: bold;
  letter-spacing: 0;
  transform: translate(-50%, 100%);
}

.ircalendar_schedule_list > li ul li p.schedule-quarter {
  color: var(--accent_color);
  bottom: calc(-1* 2em);
}

.ircalendar_schedule_list > li ul li p:not(.schedule-month)::before {
  content: "";
  display: block;
  height: 4.25em;
  width: 1px;
  background-color: #999;
  position: absolute;
  left: 50%;
  top: calc(-1* 4.25em - 0.75em + 0.25em);
}

.ircalendar_schedule_list > li ul li p.schedule-quarter::before {
  height: 1.25em;
  background-color: var(--accent_color);
  position: absolute;
  left: 50%;
  top: calc(-1* 1.25em - 0.75em + 0.25em);
}

.ircalendar_detail {
  max-width: 1080px;
  margin-inline: auto;
}

.ircalendar_detail h3 {
  font-size: 2.4rem;
  font-weight: normal;
  color: var(--accent_color);
  margin-bottom: 20px;
  text-align: center;
}

/* 電子公告 */
.public-notice-list {
  max-width: 900px;
  margin-inline: auto;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: .03em;
}

.public-notice-list > li {
  border-bottom: 1px dashed #ddd;
  padding: 25px 20px;
  display: flex;
  gap: 5px 20px;
}

.public-notice-list time {
  flex: 1;
  color: #7B7B7B;
}

.public-notice-list a {
  position: relative;
  color: #000;
  transition: all .3s;
  padding-right: 35px;
  text-decoration: none;
  width: 81%;
}

.public-notice-list a::after {
  content: '';
  background: url(./assets/img/common/icon_link_arrow.svg) 0 0 no-repeat;
  background-size: 30px 5px;
  height: 5px;
  width: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .public-notice-list a:hover {
    color: var(--accent_color);
  }
}

/* 経営の基本方針 */
.policy-business figure {
  text-align: center;
}

/* 卒業アルバム */
.page-anchor-links {
  display: flex;
  margin-bottom: 60px;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.page-anchor-link_item {
  width: calc((100% / 3) - 20px);
}

.page-anchor-link_item a {
  color: var(--accent_color);
  font-weight: normal;
  border-bottom: 1px solid;
  padding: 0 20px 20px;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all .3s;
}

.page-anchor-link_item a::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--accent_color);
  border-right: 1px solid var(--accent_color);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.plan-content {
  background-color: #f5fffa;
  padding: 50px;
}
.selfplan-desc_box h5 {
  font-size: 18px;
  text-align: center;
  font-weight: normal;
  color: var(--accent_color);
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selfplan-desc_box .page-tb {
  margin-top: 30px;
}

.selfplan-desc_box > .wp-block-image {
  max-width: 150px;
  margin: 30px auto;
}

.selfplan-desc_mns {
  background-color: #fff;
  padding: 40px 50px;
  border: 1px dashed var(--accent_color);
  border-radius: 8px;
}

.selfplan-desc_mns .wp-block-image {
  max-width: 400px;
  margin-inline: auto;
}

.selfplan-desc_box .page-tb table th {
  padding: 30px 10px;
}

.selfplan-desc_box .page-tb table td {
  padding: 30px 20px;
}

.selfplan-desc_box .page-tb .link-txt a {
  font-size:1.4rem;
}

.album-flow_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 50px;
}

.page-block .album-flow_list_box {
  margin-left: 0;
  list-style-type: none;
  width: calc((100% / 4) - 23px);
  border: 2px solid var(--accent_color);
  border-radius: 8px;
  padding: 30px;
  position: relative;
}

.album-flow_list_box h4 {
  font-size: 18px;
  color: var(--accent_color);
}

.page-content .album-flow_list_box p {
  font-size: 15px;
  margin-top: 10px;
}

.page-block .album-flow_list_box:not(:last-child)::after,
.album-flow_plan_box::before {
  content: '';
  width: 20px;
  height: 30px;
  background-color: var(--accent_color);
  clip-path: polygon(20px 50%, 0% 0%, 0% 30px);
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.album-flow_plan {
  margin-top: 50px;
}

.album-flow_plan_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #bbb;
  position: relative;
  padding-left: 40px;
}

.album-flow_plan_box:first-child {
  border-top: 1px solid #bbb;
}

.album-flow_plan_box::before {
  left: 0;
}

.album-flow_plan_box .plan-name {
  flex: 1;
}

.album-flow_plan_box .album-flow_list {
  width: 85%;
}

.album-rule {
  background-color: var(--accent_color);
  padding: 50px;
  max-width: 900px;
  margin-inline: auto;
  border-radius: 8px;
  color: #fff;
}

.album-rule h3 {
  font-size: 2.2rem;
  text-align: center;
  font-weight: normal;
  position: relative;
}

.album-rule_box {
  margin-top: 30px;
}

.album-rule_box h4 {
  font-weight: normal;
  border-bottom: 1px solid;
  padding-bottom: 7px;
  letter-spacing: .03em;
}

.page-content .album-rule_box p {
  margin-top: 10px;
  font-size: 15px;
  padding-inline: 1em;
}

.ceremony-album_desc_box .page-tb th,.ceremony-album_desc_box .page-tb td {
  padding: 20px;
}

.ceremony-album_desc_box .page-tb {
  margin-top: 20px;
}

@media (hover: hover) {
  .page-anchor-link_item a:hover {
    border-bottom-color: transparent;
    color: #000;
  }
}

/* ホログラム印刷 */
.hologram-point {
  max-width: 850px;
  margin-inline: auto;
}

.hologram-point_box figure {
  max-width: 200px;
  margin-inline: auto;
}

.hologram-point_box h3 {
  text-align: center;
  font-size: 18px;
  color: var(--accent_color);
  margin-top: 20px;
}

.hologram-flow {
  max-width: 850px;
  margin-inline: auto;
}

.page-content .hologram-case_txt {
  margin-top: 5px;
  text-align: center;
}

.hologram-case_movie {
  max-width: 850px;
  margin-inline: auto;
}

.hologram-case_movie video {
  height: auto;
  aspect-ratio: 850 / 478;
}

/* 404ページ */
.main.page-404 {
  margin-top: 220px;
}

.simple-page h2 {
  font-size: 3.6rem;
  margin-bottom: 20px;
  letter-spacing: .1em;
  font-weight: normal;
}

.simple-page p {
  font-size: 18px;
  line-height: 2;
  letter-spacing: .05em;
}

/** ============
採用情報
============== **/
/* トップページ */
.recruit-mv {
  background: url(./assets/img/recruit/bg_recruit_main.jpg) center no-repeat;
  background-size: cover;
  position: relative;
  height: calc(100vh - 130px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
.recruit-mv::before {
  content: '';
  background-color: #FCF9F7;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: .97;
}

.recruit-mv_ttl {
  position: relative;
  z-index: 1;
  font-family: var(--f_shippori);
  font-size: 9.6rem;
  line-height: 1.2;
  text-align: center;
  font-weight: normal;
  background: url(./assets/img/recruit/bg_recruit_main.jpg) center no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.recruit-about,
.recruit-work {
  max-width: calc((100vw - 1170px) / 2 + 1170px);
  width: 100%;
  margin-bottom: 80px;
}

.recruit-about {
  margin-left: auto;
}

.recruit-about_content,
.recruit-work_content {
  display: flex;
  gap: 30px 90px;
}

.recruit-about_desc,
.recruit-work_desc {
  width: 34.2%;
}

.recruit-about_ttl,
.recruit-work_ttl {
  mix-blend-mode: difference;
  margin-bottom: 80px;
  position:relative;
  span {
    position:absolute;
    clip:rect(1px,1px,1px,1px);
    top:0;
    left:0;
  }
}

.recruit-about_desc .link-list,
.recruit-work_desc .link-list {
  flex-direction: column;
}

.recruit-about_img,
.recruit-work_img {
  flex: 1;
  img {
    width: 100%;
  }
}

.recruit-story {
  margin-bottom: 130px;
}

.recruit-story_ttl {
  text-align: center;
  mix-blend-mode: difference;
  margin-bottom: 67px;
  position:relative;
  span {
    position:absolute;
    clip:rect(1px,1px,1px,1px);
    top:0;
    left:0;
  }
}

.recruit-story_content {
  max-width: 1410px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 70px;
  counter-reset: num;
}

.recruit-story_box {
  counter-increment: num 1;
}

.recruit-story_box a {
  display: block;
  color: #000;
  text-decoration: none;
  transition: all .3s;
}

.recruit-story_box_img {
  -webkit-filter:grayscale(100%);
  -moz-filter:grayscale(100%);
  -ms-filter:grayscale(100%);
  filter:grayscale(100%);
  margin-bottom: 30px;
  transition: all .3s;
}

.recruit-story_box_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 0;
}

.recruit-story_box_ttl::after{
  content: counter(num, decimal-leading-zero);
  font-family: var(--f_ooohbaby);
  font-size: 6rem;
  line-height: 1;
  color: #a5dad3;
  font-weight: 300;
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: -1;
}

.recruit-story_box.story1,
.recruit-story_box.story2,
.recruit-story_box.story3 {
  .recruit-story_box_ttl::after {
    content: none;
  }
}

.recruit-applicationguideline {
  max-width: 980px;
  margin-inline: auto;
}

.recruit-applicationguideline a {
  display: block;
  background: url(./assets/img/recruit/bg_guidelines.jpg) center no-repeat;
  background-size: 100% 240px;
  border: 3px solid var(--accent_color);
  color: #fff;
  text-decoration: none;
  padding: 50px;
  position: relative;
  z-index: 0;
  height: 100%;
  min-height: 240px;
  transition: all .3s;
}

.recruit-applicationguideline a::before {
  content: '';
  background-color: #007566;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
  transition: all .3s;
}

.recruit-applicationguideline_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: .03em;
  margin-bottom: 5px;
}

.recruit-applicationguideline_link {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .03em;
  padding-right: 55px;
}

.recruit-applicationguideline_link::after {
  content: '';
  background: url(./assets/img/common/icon_link_arrow_white.svg) 0 0 no-repeat;
  background-size: 50px 5px;
  width: 50px;
  height: 5px;
  position: absolute;
  right: 0;
  top: 5px;
}

@media (hover: hover) {
  .recruit-story_box a:hover {
    color: var(--accent_color);
  }
  .recruit-story_box a:hover .recruit-story_box_img {
    -webkit-filter:grayscale(0);
    -moz-filter:grayscale(0);
    -ms-filter:grayscale(0);
    filter:grayscale(0);
  }

  .recruit-applicationguideline a:hover {
    color: var(--accent_color);
  }
  .recruit-applicationguideline a:hover::before {
    background-color: transparent;
  }
}

.story-main {
  padding: 70px 0;
  background: url(./assets/img/recruit/bg_recruit_main.jpg) top +140px center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.story-main::after {
  content: '';
  background-color: rgba(255, 255, 255, .93);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.story-main_inner {
  max-width: 1316px;
  margin-inline: auto;
}

.story-main_header {
  display: flex;
  align-items: center;
  column-gap: 120px;
}

.story-main_header_img {
  width: 48%;
}

.story-main_header_ttl {
  flex: 1;
}

.story-main_content {
  width: fit-content;
  margin-left: auto;
  margin-top: -90px;
}

.story-main_catchcopy {
  font-size: 5.1rem;
  margin-bottom: 20px;
  color: var(--accent_color);
}

.story-main_profile .entry-date {
  font-size: 2.1rem;
  margin-bottom: 0;
}

.story-main_profile .profile-txt {
  font-weight: normal;
  font-size: 2.1rem;
}

.story-main_profile .profile-txt_name {
  margin-left: 30px;
  font-weight: 500;
  font-size: 2.8rem;
}

.story-catchcopy {
  max-width: 760px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--accent_color);
  margin-top: 100px;
}

.story-content {
  max-width: 1020px;
  margin-top: 100px;
  margin-inline: auto;
  margin-bottom: 85px;
  counter-reset: number 0;
}

.story-box:not(:last-child) {
  margin-bottom: 60px;
}

.story-box_ttl {
  position: relative;
  color: var(--accent_color);
  font-weight: 500;
  font-size: 2.8rem;
  padding-left: 6.5em;
  counter-increment: number 1;
  margin-bottom: 40px;
}

.story-box_ttl span {
  display: block;
  border-bottom: 1px solid #4CB5A7;
}

.story-box_ttl::before {
  content: 'Q.'counter(number);
  font-size: 9.8rem;
  font-family: var(--f_ooohbaby);
  line-height: 1;
  color: #A4D9D2;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.story-box_txt,
.story-message {
  max-width: 760px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.8;
}

.story-message {
  color: var(--accent_color);
  margin-bottom: 180px;
}

.story-box_txt > p {
  margin-bottom: 30px;
}
.story-box_txt > p:last-child {
  margin-bottom: 0;
}

.story-box_img {
  max-width: 680px;
  margin-inline: auto;
}

.other-story {
  margin-bottom: 120px;
}

.other-story .recruit-story_content {
  justify-content: center;
}

/* 下層ページ */
.page-recruit {
  margin-bottom: 120px;
}

.recruit-main {
  background: url(./assets/img/recruit/bg_recruit_main.jpg) center no-repeat;
  background-size: cover;
  padding: 80px 20px;
  position: relative;
  z-index: 0;
}

.recruit-main::after {
  content: '';
  background-color: rgba(255, 255, 255, .9);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.recruit-main_inner {
  max-width: var(--content_width);
  margin-inline: auto;
}

.recruit-main_ttl--eg {
  margin-bottom: -40px;
}

.recruit-main_ttl--eg img {
  transform: rotate(-4deg);
}

.recruit-main_ttl--jp {
  font-size: 5.3rem;
  color: var(--accent_color);
  letter-spacing: .03em;
  padding-left: 100px;
  font-weight: normal;
}

/* 数字で見るマツモト */
.number-lists > div {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1080px;
  margin-inline: auto;
}

body .number-box {
  margin-inline: unset!important;
  width: calc((100% / 3) - 34px);
  border: 2px solid var(--accent_color);
  border-radius: 20px;
  text-align: center;
  padding: 30px;
}

.number-ttl {
  font-size: 2.4rem;
  margin-bottom: 0;
  color: var(--accent_color);
}

.page-content .number-txt {
  font-size: max(5.5rem, 4vw);
  font-weight: bold;
  line-height: 1;
}

.number-txt span {
  font-size: .4em;
  margin-left: -10px;
}

.page-content .number-note {
  margin-top: 10px;
  letter-spacing: .03em;
  font-size: 15px;
  margin-bottom: 20px;
}

.number-img {
  width: 90%;
  margin-inline: auto;
}

.number1 .number-img {
  width: 51%;
}

/* 1分でわかるマツモト */
.minute-about {
  margin-right: calc(50% - 50vw);
  position: relative;
  align-items: center!important;
}

.minute-about_txt h2 {
  font-size: 4.6rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-bottom: 30px;
}

.minute-about_txt p {
  font-size: 18px;
}

.minute-about_txt h3 {
  font-size: 3.4rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-top: 30px;
}

.minute-about_txt {
  width: 53%;
  flex-basis: auto!important;
}

.minute-about_img {
  flex-basis: auto!important;
}

.minute-box_desc {
  padding-left: 20%;
}

.minute-box_catchcopy {
  font-size: 3.6rem;
  font-weight: 200;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-top: 30px;
}

.minute-box_desc p {
  font-size: 18px;
}

/* 募集要項 */
.recruit-future {
  margin-right: calc(50% - 50vw);
  position: relative;
  align-items: flex-start!important;
}

.recruit-future_img {
  width: 80%;
  flex-basis: auto!important;
}

body .recruit-future_txt {
  width: 63%;
  margin-right: -20%;
  flex-basis: auto !important;
  position: relative;
  background-color: rgba(255, 255, 255, .8);
  padding: 50px;
}

body .recruit-future_txt-02 {
  width:100%;
  padding:50px;
}

.recruit-future_txt > figure {
  margin-bottom: 40px;
}

.recruit-future_txt > p {
  line-height: 2;
}

.recruit-future_img img {
  width: 100%;
}
.occupation-box {
  border: 2px solid var(--accent_color);
  padding: 40px;
  border-radius: 8px;
  position: relative;
}

.occupation-box:has(.recommend) {
  padding-bottom: 15%;
}

.occupation-box h3 {
  font-size: 2.2rem;
  color: var(--accent_color);
  letter-spacing: .03em;
}

.page-content .recommend {
  font-size: 18px;
  margin-top: 30px;
  background: #c6edd9;
  padding: 50px 20px 20px 50px;
  border-radius: 8px;
  min-height: 135px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 40px;
  width: calc(100% - 80px);
  margin-inline: auto;
  right: 0;
}

.recommend::before {
  content: '';
  background: url(./assets/img/recruit/guideline/img_recommend.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 197px;
  height: 50px;
  position: absolute;
  top: 10px;
  left: 15px;
}

.entry-links {
  display: flex;
  margin-top: 100px;
}

.entry-link_box {
  width: 50vw;
  min-height: 430px;
}

.new-graduate {
  background: url(./assets/img/recruit/guideline/img_newgraduate.jpg) top right no-repeat;
  background-size: cover;
}

.middle {
  background: url(./assets/img/recruit/guideline/img_middle.jpg) top left no-repeat;
  background-size: cover;
}

.entry-link_box a {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  font-size: 2.8rem;
  color: #fff;
  font-weight: normal;
  padding: 50px;
  z-index: 0;
  text-decoration: none;
  transition: all .3s;
}

.new-graduate a {
  justify-content: flex-end;
}

.entry-link_box a::before {
  content: '';
  background-color: rgba(0, 147, 128, .7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all .3s;
}

@media (hover: hover) {
  .entry-link_box a:hover {
    color: var(--accent_color);
    text-shadow: 0 0 10px #fff;
  }
  .entry-link_box a:hover::before {
    opacity: 0;
  }
}

/* 歴史と未来 */
.history-future_box {
  margin-bottom: 0;
  padding-bottom: 100px;
  align-items: center!important;
  position: relative;
  z-index: 0;
}

.history-future_box_txt p {
  line-height: 2;
  font-size: 2.2rem;
}

.history-future_box::before {
  content: '';
  background: var(--accent_color);
  width: 35%;
  position: absolute;
  left: 6%;
  top: 0;
  height: 100%;
  z-index: -1;
}

.history-future_catchcopy {
  font-size: 2.8rem;
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: center;
  color: var(--accent_color);
  margin-top: 200px;
}

.history-future_box--end::after {
  content: '';
  background-color: var(--accent_color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 35%;
  height: 140px;
  border-bottom: 0;
  position: absolute;
  left: 6%;
  bottom: -140px;
  z-index: -1;
}

.history-future_box--end .history-future_box_img {
  position: relative;
}

.history-future_box--end .history-future_box_img::after {
  content: '';
  background: url(./assets/img/recruit/history-future/img_future!.svg) 0 0 no-repeat;
  background-size: 297px 69px;
  width: 297px;
  height: 69px;
  position: absolute;
  bottom: -130px;
  left: 0;
  right: 0;
  margin-inline: auto;
}

/* 募集要項 */
.guideline_box_ttl {
  background-color: var(--accent_color);
  color: #fff;
  font-weight: normal;
  padding: 13px 20px;
  border-radius: 4px;
  margin-bottom: 30px;
  font-size: 20px;
}

.guideline_box_list {
  padding-inline: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.guideline_box_list > li {
  width: calc((100% / 3) - 34px);
}

.page-content .not-guideline {
  font-size: 20px;
  text-align: center;
}

.guideline_box_list a {
  display: block;
  color: var(--accent_color);
  text-align: center;
  border: 1px solid;
  padding: 20px;
  position: relative;
  border-radius: 4px;
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  transition: all .3s;
}

.guideline_box_list a[href*="https://www.wantedly.com"]::after,
.guideline_box_list a[href*="https://job.mynavi.jp"]::after {
  font-size: 14px;
  background-color: var(--accent_color);
  color: #fff;
  display: block;
  text-align: center;
  width: fit-content;
  padding: 3px 16px;
  border-radius: 4px;
  margin-inline: auto;
  transition: all .3s;
  margin-top: 5px;
}

.guideline_box_list a[href*="https://www.wantedly.com"]::after {
  content: 'wantedly';
}

.guideline_box_list a[href*="https://job.mynavi.jp"]::after {
  content: 'マイナビ';
}

@media (hover: hover) {
  .guideline_box_list a:hover {
    background-color: var(--accent_color);
    color: #fff;
  }
  .guideline_box_list a:hover::after {
    background-color: #fff;
    color: var(--accent_color);
  }

}

/** ============
レスポンシブ
============== **/
@media screen and (max-width: 900px) {
  html{
    font-size: 62.5%;
  }

  .header_inner {
    padding: 15px 20px;
  }

  .header_hamburger {
    right: 20px;
  }

  .main {
    margin-top: 70px;
  }

  .mv_box {
    width: 100%;
  }

  .mv_box .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 100%;
  }

  .mv_catchcopy {
    bottom: auto;
    top: 40px;
    padding-inline: 10px;
    left: 0;
  }

  .mv {
    padding-top: 70px;
  }

  .top-about {
    margin-top: 150px;
    padding-inline: 20px;
    padding-bottom: 30px;
  }

  .top-about_header {
    margin-bottom: 50px;
  }

  .top-about_desc {
    flex-direction: column;
  }

  .top-about_desc_txt {
    width: 100%;
    padding-left: 0;
    margin-bottom: 50px;
  }

  .top-about_desc_imgs {
    display: flex;
    gap: 20px;
  }

  .top-about_img {
    position: relative;
    right: auto;
    top: auto;
    width: 49%;
  }

  .top-about_img img {
    width: 100%;
  }

  .top-about_img2 {
    right: auto;
    width: 49%;
    position: relative;
    margin-top: 30px;
  }

  .top-about_img2 img {
    width: 100%;
  }

  .top-about_catchcopy {
    padding-inline: 10px;
    bottom: -30px;
    width: 90vw;
  }

  .top-service {
    flex-direction: column;
    padding-inline: 20px;
    padding-bottom: 80px;
  }

  .top-service_content {
    order: 1;
    width: 100%;
    padding-top: 0;
    margin-bottom: 50px;
  }

  .top-service_header {
    margin-bottom: 50px;
  }

  .top-service_img {
    order: 2;
    display: flex;
    gap: 20px;
  }

  .top-service_img_box:not(:last-child) {
    margin-bottom: 0;
  }

  .top-service_img_box {
    width: 49%;
  }

  .top-service_img_box:nth-child(2) {
    padding-left: 0;
  }

  .top-service_catchcopy {
    padding-inline: 10px;
    width: 90vw;
  }

  .about-topmessage {
    width: calc(100% - 20px);
  }

  .about-idea.mission {
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-idea {
    flex-direction: column;
    row-gap: 30px;
    padding-inline: 20px;
    padding-bottom: 0;
  }

  .about-idea::before {
    order: 1;
  }

  .about-idea > div {
    order: 2;
    max-width: 100%;
  }

  .mission::before {
    max-width: 400px;
    height: 90px;
    background-size: 100% auto;
  }

  .vision::before {
    max-width: 350px;
    background-size: 100% auto;
    height: 100px;
  }

  .about-idea.vision > div {
    margin-left: 0;
  }

  .value::before {
    max-width: 300px;
    background-size: 100% auto;
    height: 95px;
  }

  .about-company {
    padding-inline: 20px;
  }

  .office-links {
    width: calc(100% - 20px);
  }

  .office-block {
    padding-inline: 20px;
  }

  .page-links {
    padding-inline: 20px;
  }

  .topmessage-about {
    padding-inline: 20px;
  }

  .topmessage-profile {
    padding-inline: 20px;
  }

  .future-about {
    padding-inline: 20px;
    flex-direction: column;
    margin-right: 0;
    padding-bottom: 12%;
    margin-bottom: 0;
  }

  .future-about::before {
    width: 80vw;
    padding-inline: 10px;
    left: 20px;
    bottom: -30px;
    height: 190px;
  }

  .future-contents {
    padding-inline: 20px;
  }

  .service-list {
    padding-inline: 20px;
  }

  .web-service {
    padding-inline: 20px;
  }

  .ir-news {
    padding-inline: 20px;
  }

  .header-recruit .logo {
    width: 28%;
  }

  .recruit-logo {
    width: 15%;
  }

  .header-recruit .logo svg {
    width: 100%;
  }

  .recruit-entry-link {
    width: 34vw;
    right: 80px;
  }

  .recruit-mv {
    height: calc(100vh - 70px);
  }

  .recruit-mv_ttl {
    padding-inline: 10px;
    font-size: 10vw;
  }

  .recruit-main_ttl--jp {
    font-size: 4rem;
  }

  .recruit-main {
    padding: 60px 20px;
  }

  .oneminute-box {
    width: calc(100% - 20px);
  }

  .page-recruit {
    margin-bottom: 100px;
  }

  .story-main_header {
    padding-inline: 20px;
    column-gap: 10%;
  }

  .story-content {
    padding-inline: 20px;
  }

  .other-story .recruit-story_content {
    padding-inline: 20px;
  }

  .occupation-block {
    padding-inline: 20px;
  }

  .page-content .recommend {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .occupation-box:has(.recommend) {
    padding-bottom: 40px;
  }

  .recruit-future {
    margin-right: 0;
    flex-direction: column;
    padding-inline: 20px;
  }

  body .recruit-future_txt {
    width: 100%;
    padding: 0;
  }

  .recruit-future_img {
    width: 100%;
    max-width: 600px;
    margin-inline: auto!important;
  }

  .guideline-block {
    padding-inline: 20px;
  }

  .number-lists {
    padding-inline: 20px;
  }

  .number-lists > div {
    gap: 30px;
  }

  body .number-box {
    width: calc((100% / 2) - 15px);
  }

  .privacy-policy_txt,
  .privacy-policy_box {
    padding-inline: 20px;
  }

  .archive-news_list {
    padding-inline: 20px;
  }

  .sitemap-list {
    padding-inline: 20px;
    gap: 30px;
  }

  .minute-about,
  .commericial-printing_about,
  .ceremony_about {
    margin-right: auto;
    flex-direction: column;
    padding-inline: 20px;
  }

  .minute-about_txt {
    width: 100%;
  }

  .minute-box,
  .commericial-printing_content,
  .ceremony_content {
    padding-inline: 20px;
  }

  .minute-box_desc {
    padding-left: 0;
  }

  .history-future_box {
    padding-inline: 20px;
    flex-direction: column;
    max-width: 700px;
    margin-inline: auto;
    padding-bottom: 60px;
    gap: 10px;
  }

  .history-future_box::before {
    max-width: 255px;
    width: 100%;
    left: 0;
    right: 0;
    margin-inline: auto;
    background: rgba(0, 117, 102, .6);
  }

  .history-future_box_txt {
    width: 100%;
  }

  .history-future_box--end::after {
    max-width: 255px;
    width: 100%;
    background: rgba(0, 117, 102, .6);
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  .history-future_box--end .history-future_box_img::after {
    background-size: 100% auto;
    width: 205px;
    height: 49px;
    bottom: -150px;
  }

  .history-future_catchcopy {
    text-align: left;
    padding-inline: 20px;
    margin-top: 180px;
  }

  .policy-about,
  .policy-business,
  .irmemo,
  .ircalendar,
  .album-block,
  .ceremony-album,
  .page-anchor-links,
  .hologram-block {
    padding-inline: 20px;
  }

  .album-flow_list {
    flex-direction: column;
  }

  .page-block .album-flow_list_box {
    width: 100%;
  }

  .page-block .album-flow_list_box:last-child::after {
    content: '';
    width: 20px;
    height: 30px;
    background-color: var(--accent_color);
    clip-path: polygon(20px 50%, 0% 0%, 0% 30px);
    position: absolute;
  }

  .page-block .album-flow_list_box:not(:last-child)::after,
  .page-block .album-flow_list_box:last-child::after {
    right: 0;
    left: 0;
    top: auto;
    bottom: -45px;
    transform: rotate(90deg);
    margin-inline: auto;
  }

  .album-flow_plan_box {
    padding-left: 0;
    column-gap: 20px;
  }

  .album-flow_plan_box::before {
    display: none;
  }

  .album-flow_plan_box .album-flow_list_box:last-child::after {
    display: none;
  }

  .album-flow_plan_box .album-flow_list {
    width: 78%;
  }

  .guideline_box_list > li {
    width: calc((100% / 2) - 25px);
  }

}

@media screen and (max-width: 650px) {
  html {
    font-size: 50%;
  }
  body {
    font-size: 2rem;
    overflow-x: hidden;
    padding-bottom: 0;
  }

  .order1 {
    order: 2;
  }

  .order2 {
    order: 1;
  }

  .page-block .ttl {
    margin-bottom: 30px;
  }

  #breadcrumbs {
    padding-inline: 10px;
    font-size: 14px;
  }

  .logo svg {
    width: 200px;
  }

  .header_nav {
    width: 100%;
    padding-top: 60px;
  }

  .header_nav_list {
    height: 100vh;
    overflow-y: auto;
  }

  .header_nav_list a {
    font-size: 18px;
  }

  .top-service_header {
    margin-bottom: 30px;
  }

  .ttl_eg {
    font-size: 12vw
  }

  .mv {
    padding-top: 20px;
  }

  .mv_catchcopy {
    top: 0;
  }

  .top-about {
    margin-top: 80px;
  }

  .link-list {
    flex-direction: column;
  }

  .top-service {
    margin-top: 100px;
  }

  .recruit-link {
    margin-top: 80px;
  }
  .top-recruit, .recruit-link {
    min-height: auto;
    padding: 30px;
  }

  .top-recruit_content .ttl, .recruit-link_content .ttl {
    margin-bottom: 30px;
  }

  .top-recruit_content, .recruit-link_content {
    padding: 40px;
  }

  .top-news {
    margin-top: 80px;
    padding-inline: 20px;
  }

  .top-news .ttl {
    max-width: 100%;
  }

  .top-news_list {
    margin-bottom: 50px;
  }

  .top-news_list .news-ttl,
  .news-ttl {
    display: block;
    width: 100%;
  }

  .top-news_list a,
  .archive-news_list a {
    flex-wrap: wrap;
    padding-right: 40px;
    gap: 5px 10px;
  }

  .top-news_list a::after,
  .archive-news_list a::after {
    top: 50%;
    transform: translateY(-50%);
    background-size: 30px 5px;
    width: 30px;
  }

  .top-news_list time,
  .archive-news_list time,
  .page-content .cate {
    flex: none;
    margin-top: 0;
  }

  .top-about_desc_txt > h3,
  .top-service_desc > h3 {
    font-size: 4.8rem;
  }

  .top-about_desc_txt > h3 br,
  .top-service_desc > h3 br {
    display: none;
  }

  .footer {
    margin-top: 80px;
    padding-bottom: 20px;
  }

  .footer_header {
    margin-bottom: 30px;
  }

  .footer_navi {
    flex-wrap:wrap;
    gap:1rem;
    padding:0 1rem;
    li {
      width:calc((100% / 3) - 1rem)
    }
  }

  .page-main_img {
    height: 230px;
    min-height: auto;
  }

  .page-main_ttl--eg {
    left: 10px;
    width: 50vw;
  }

  .page-main_company,
  .page-main_ir {
    .page-main_ttl--eg {
      width: 90vw;
    }
  }

  .page-main {
    padding-top: 50px;
    column-gap: 5%;
    height: 280px;
  }

  .page-main_ttl--jp {
    font-size: 2.4rem;
    padding-top: 30px;
  }

  .about-message {
    padding: 60px 20px;
  }

  .about-message_ttl {
    margin-bottom: 20px;
  }

  .about-message_txt {
    font-size: 16px;
  }

  .page-content .about-topmessage_txt p {
    margin-top: 0;
  }

  .about-message {
    padding: 40px 20px;
  }

  .about-topmessage_txt {
    padding: 10px;
    width: 100%;
  }

  .about-topmessage {
    margin-top: 100px;
    margin-bottom: 80px;
  }

  .about-topmessage a {
    display: block;
    position: relative;
  }

  .about-topmessage_img {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 30vw;
    margin-right: 0;
  }

  .mission::before {
    max-width: 320px;
    height: 70px;
  }

  .vision::before {
    max-width: 280px;
    height: 80px;
  }

  .value::before {
    max-width: 250px;
    height: 80px;
  }

  .about-idea.value {
    padding-bottom: 80px;
  }

  .about-idea_ttl br {
    display: none;
  }
  .about-company_links .link-box {
    width: 100%;
  }
  .about-idea_ttl {
    font-size: 4.5rem;
  }

  .office-links {
    padding: 30px;
  }

  .office-link_box:has(.office-link_list) {
    flex-direction: column;
  }

  .office-link_ttl {
    width: 100%;
  }

  .office-link_list {
    width: 100%;
  }

  .link-list--x3 .link-box {
    width: 100%;
  }

  .link-list--x3 .link-box_txt {
    font-size: 18px;
  }

  .future-about::before {
    height: 120px;
    bottom: 0;
  }

  .history-list {
    width: auto;
    padding-inline: 20px;
  }

  body .post-list {
    flex-direction: column;
  }

  .post-list_cate {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .post-list_cate > div {
    width: calc(100% / 3);
  }

  .post-list_cate_box:not(:last-child) {
    margin-bottom: 0;
  }

  .link-block a {
    flex-direction: column;
    align-items: normal;
  }

  .link-block_img {
    width: 100%;
  }

  .recruit-entry-link {
    position: fixed;
    bottom: 0;
    left: 20px;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 270px;
    z-index: 800;
  }

  .recruit-entry-link a {
    border: 2px solid #fff;
    padding: 20px 10px;
  }

  .header-recruit .logo {
    width: 35%;
  }

  .recruit-logo {
    width: 24%;
  }

  .recruit-about, .recruit-work {
    padding-inline: 20px;
  }

  .recruit-about_content, .recruit-work_content {
    flex-direction: column;
  }

  .recruit-about_desc, .recruit-work_desc {
    width: 100%;
    order: 1;
  }

  .recruit-about_ttl, .recruit-work_ttl {
    margin-bottom: 50px;
  }

  .recruit-about_img, .recruit-work_img {
    order: 2;
  }

  .recruit-story {
    padding-inline: 20px;
    margin-bottom: 100px;
  }

  .recruit-story_content {
    flex-direction: column;
    max-width: 420px;
  }

  .recruit-story_box_img {
    margin-bottom: 20px;
  }

  .story1 .recruit-story_box_ttl::after {
    right: 0;
  }

  .recruit-applicationguideline a {
    padding: 30px;
    background-size: auto 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .recruit-applicationguideline_link {
    width: fit-content;
  }

  .recruit-story_ttl {
    margin-bottom: 40px;
  }

  .recruit-main {
    padding: 40px 20px;
  }

  .recruit-main_ttl--eg {
    width: 53vw;
    margin-bottom: -20px;
  }
  .recruit-main_ttl--jp {
    padding-left: 10%;
  }

  .oneminute-box {
    padding: 30px;
  }

  .page-recruit {
    margin-bottom: 80px;
  }

  .story-main_header {
    flex-direction: column;
    align-items: normal;
  }

  .story-main_header_img {
    order: 2;
    width: 100%;
  }

  .story-main_header_ttl {
    order: 1;
    margin-bottom: -50px;
    max-width: 250px;
    position: relative;
  }

  .story-main_content {
    margin-top: 20px;
    margin-left: 0;
    padding-inline: 20px;
  }

  .story-main_catchcopy {
    font-size: 4.4rem;
  }

  .story-main_catchcopy br {
    display: none;
  }

  .story-main {
    padding: 0 0 30px;
  }

  .story-catchcopy {
    margin-top: 60px;
    padding-inline: 20px;
  }

  .story-content {
    margin-top: 60px;
  }

  .story-box_ttl::before {
    font-size: 7rem;
  }

  .story-box_ttl {
    padding-left: 4.5em;
    margin-bottom: 30px;
  }

  .story-content {
    margin-bottom: 60px;
  }

  .story-message {
    padding-inline: 20px;
    margin-bottom: 100px;
  }

  .recruit-story_ttl {
    max-width: 350px;
    margin-inline: auto;
  }

  .recruit-future_txt > figure {
    max-width: 450px;
    margin-bottom: 30px;
  }

  .occupation-box:has(.recommend),
  .occupation-box {
    padding: 30px;
  }

  .page-content .recommend {
    font-size: 16px;
    padding-left: 30px;
  }

  body .number-box {
    padding: 20px;
    width: 100%;
  }

  .page-content .number-txt {
    font-size: 14vw;
  }

  .sitemap-list {
    flex-direction: column;
  }

  .sitemap-list_box {
    width: 100%;
  }

  .ir-news_tab_box {
    min-width: auto;
    width: calc((100% / 3) - 14px);
  }

  .ir-news_tabs {
    justify-content: normal;
  }

  .ircalendar_schedule_list {
    grid-template-columns: 50% 50%;
    padding: 0;
  }

  .ircalendar_schedule_list > li {
    margin-bottom: 80px;
  }

  .service-support_list li,
  .ceremony_about .service-support_list li {
    width: 100%;
  }

  .plan-content {
    padding: 30px;
  }

  .selfplan-desc_box .page-tb table th,.selfplan-desc_box .page-tb table td {
    padding: 20px;
  }

  .selfplan-desc_box .page-tb,
  .ceremony-album_desc_box .page-tb {
    padding-inline: 0;
  }

  .selfplan-desc_mns {
    padding: 30px;
  }

  .selfplan-desc_box h5 {
    min-height: auto;
  }

  .plan-content {
    padding: 20px;
  }

  .album-flow_plan_box {
    flex-direction: column;
    row-gap: 20px;
  }

  .album-flow_plan_box .album-flow_list {
    width: 100%;
  }
  .album-rule {
    padding: 30px;
  }

  .guideline_box_list {
    flex-direction: column;
  }

  .guideline_box_list > li {
    width: 100%;
  }

  .entry-links {
    flex-direction: column;
  }

  .entry-link_box {
    width: 100%;
    height: 230px;
    min-height: auto;
  }

  .entry-link_box a {
    padding: 20px;
  }

  .main.page-404 {
    margin-top: 150px;
  }

  .simple-page {
    padding-inline: 20px;
  }

  .simple-page h2, .simple-page p {
    text-align: left;
  }

  .simple-page p br {
    display: none;
  }

  .commericial-printing_about_txt h2 br {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .recruit-main_ttl--eg img {
    transform: none;
  }

  .recruit-main_ttl--eg {
    margin-inline: auto;
    width: 45vw;
  }

  .recruit-main_ttl--jp {
    text-align: center;
    padding-left: 0;
    font-size: 3.3rem;
  }
  .header_inner {
    padding: 15px 10px;
  }

  .header-recruit .header_inner {
    column-gap: 8px;
  }

  .header_hamburger {
    right: 10px;
  }

  .header-recruit .logo {
    width: 47%;
  }

  .recruit-logo {
    width: 30%;
  }

  .top-recruit, .recruit-link {
    padding: 15px;
  }

  .recruit-entry-link {
    max-width: 230px;
    left: 10px;
    bottom: -20px;
  }

  .top-news {
    margin-top: 60px;
  }

  .about-topmessage {
    margin-top: 60px;
  }

  .about-company_links .link-box {
    width: 100%;
  }

  .about-topmessage_txt h2 {
    font-size: 7vw;
  }

  .page-content .about-topmessage_txt p {
    font-size: 4vw;
  }
  .page-main_topmessage .page-main_img img {
    object-position: -290px;
  }

  .future-about::before {
    max-width: 320px;
    width: 100%;
    height: 90px;
  }

  .history-list {
    width: auto;
    padding-inline: 20px;
  }

  .history-list li {
    position: relative;
    padding-left: 30px;
    flex-direction: column;
    border-left: 1px solid var(--accent_color);
  }

  .history-list li::before {
    content: '';
    background-color: var(--accent_color);
    height: 20px;
    width: 20px;
    position: absolute;
    top: 25px;
    left: -10px;
    border-radius: 100px;
  }

  .history-list_content::before {
    display: none;
  }

  .history-list_content {
    border-left: none;
    padding: 0;
  }

  .history-list_now {
    margin-left: 0;
    padding-left: 0;
  }

  .history-list_now span {
    height: auto;
    width: auto;
    background-color: transparent;
    color: var(--accent_color);
    font-weight: bold;
    text-align: left;
    display: block;
    font-size: 20px;
    padding-top: 20px;
  }

  .webservice-list_box {
    flex-direction: column;
  }

  .webservice-list_desc {
    width: 100%;
  }

  .webservice-list_img img {
    border: 1px solid #ddd;
  }

  .webservice-list_desc h3 {
    margin-bottom: 10px;
  }

  .post-list_cate > div {
    width: calc(100% / 2);
    font-size: 16px;
  }

  .post-list_content > li:not(:last-child) {
    margin-bottom: 20px;
  }

  .post-list_content > li {
    padding-inline: 10px;
  }

  .post-list_content {
    padding-left: 10px;
    width:unset;
  }

  .post-list_content_header {
    flex-direction: column;
    align-items: normal;
  }

  .page-content p.cate-btn {
    width: fit-content;
  }

  .recruit-applicationguideline a {
    min-height: 200px;
    padding: 20px;
    background-size: auto 200px;
  }

  .recruit-story_ttl {
    max-width: 250px;
    margin-inline: auto;
  }

  .recruit-work_ttl {
    max-width: 320px;
    margin-inline: auto;
  }

  .story-main_catchcopy {
    font-size: 3.8rem;
  }

  .story-main_profile .profile-txt span {
    display: block;
  }

  .story-main_profile .profile-txt_name {
    margin-left: 0;
  }

  .story-box_ttl::before {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 5px;
  }

  .story-box_ttl {
    padding-left: 0;
  }

  .ir-news_tab_box {
    width: calc((100% / 2) - 14px);
  }

  .hologram-point {
    max-width: 250px;
  }

  .hologram-point_box figure {
    max-width: 140px;
  }

}
