@charset "UTF-8";
:root {
  --white: #fff;
  --black: #333;
  --black-rgb: 51, 51, 51;
  --shadow: rgba(var(--black-rgb), 0.2);
  --color-primary: #ff6b3e;
  --color-accent01: #FF0000;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.4;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

html {
  font-size: 62.5%; /*10px = 1rem*/
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-hyphens: auto;
          hyphens: auto;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: var(--black);
  min-block-size: 100svh;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

:where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, li {
  list-style: none;
}

/* ベース幅 */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 999;
  font-family: "Jost", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  header {
    position: fixed;
    height: 70px;
  }
}
header a {
  color: var(--color-text-default);
}
header a:not(.btn):hover {
  opacity: 1;
}

.header_common_block {
  transition: all 0.3s;
  width: 100%;
  height: 110px;
  position: relative;
  z-index: 9998;
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
}
.header_common_block li > a:not(.btn) > span {
  display: inline-block;
}
.header_common_block .header_box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 110px;
  position: relative;
  margin: 0 auto;
}
.header_common_block .header_box .g-nav .g-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 2.2rem;
  text-align: center;
}
.header_common_block .header_box .g-nav .g-nav-list li + li {
  margin-left: 48px;
}
.header_common_block .header_box .g-nav .g-nav-list > li {
  color: var(--color-primary);
}
.header_common_block .sub_wrap {
  visibility: hidden;
  position: absolute;
  top: 90px;
  left: 0;
  background-color: var(--color-bg-gray);
  width: 100%;
  opacity: 0;
  transition: 0.2s;
  font-weight: bold;
}
.header_common_block .sub_wrap .sub_pc {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  height: 90px;
}
.header_common_block .sub_wrap .sub_pc .sub_item_pc {
  margin: 0 20px;
}
.header_common_block .sub_wrap .sub_pc .sub_item_pc a {
  padding: 0 4px 4px 4px;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: 0.2s;
}
@media screen and (min-width: 1240px) and (max-width: 910px) {
  .header_common_block .sub_wrap .sub_pc .sub_item_pc a {
    padding: 0 8px 10px 8px;
  }
}
.header_common_block .sub_wrap .sub_pc .sub_item_pc a:hover {
  border-bottom: 2px solid var(--color-primary-default);
}
.header_common_block .sub_wrap.sub01.active, .header_common_block .sub_wrap.sub02.active {
  visibility: visible;
  opacity: 1;
}

@media (width <= 768px) {
  /* ヘッダー固定 */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .header_common_block {
    width: 100%;
  }
  .header_common_block .header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    width: 100%;
    padding: 0; /* padding削除 */
    transition: background 0.3s; /* 背景のトランジション */
    /* メニュー開いた時の背景 */
    /* ロゴとボタンの内側配置用ラッパー */
  }
  .header_common_block .header_box.header_box_open {
    background: #fff url(../images/bg_tex02.webp) repeat center/1400px;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.15));
  }
  .header_common_block .header_box .header_logo,
  .header_common_block .header_box .openbtn_wrap {
    padding: 0 4%; /* 左右の余白はこちらで確保 */
  }
  .header_common_block .header_box .header_logo {
    position: relative;
    z-index: 1;
  }
  .header_common_block .header_box .openbtn_wrap {
    position: relative;
    z-index: 1;
  }
  .header_common_block .header_box .g-nav {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    position: fixed; /* absolute → fixed に変更 */
    top: 70px; /* ヘッダー高さ分 */
    left: 0;
    width: 100%;
    background: #fff url(../images/bg_tex02.webp) repeat center/1400px;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.15));
    overflow: hidden; /* auto → hidden に変更 */
    height: calc(100dvh - 70px); /* vh → dvh に変更、60px → 70px に修正 */
    max-height: calc(100dvh - 70px); /* 追加 */
  }
  .header_common_block .header_box .g-nav .g-nav_block {
    background-color: var(--color-primary-white);
    height: 100%; /* 100dvh → 100% に変更 */
    max-height: 100%; /* 100dvh → 100% に変更 */
    overflow-y: auto; /* スクロール可能にする */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* iOSのスムーススクロール */
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .header_common_block .header_box .g-nav .g-nav-list {
    display: block;
    list-style: none;
    padding: 84px 0 48px;
    margin-inline: auto;
    width: 100%;
    max-width: 90%;
    text-align: left;
  }
  .header_common_block .header_box .g-nav .g-nav-list li + li {
    margin-left: 0;
  }
  .header_common_block .header_box .g-nav .g-nav-list > li {
    position: relative;
    margin: auto;
  }
  .header_common_block .header_box .g-nav .g-nav-list > li a {
    display: block;
    padding: 12px 0;
  }
  .header_common_block .header_box .g-nav .g-nav_item {
    margin-inline: auto;
    width: 100%;
    max-width: 90%;
    padding-bottom: 40px; /* 下部の余白を確保 */
  }
  .header_common_block .header_box .g-nav .g-nav_item .g-nav_item_sns_list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  .header_common_block .header_box .g-nav .g-nav_item .g-nav_item_sns_list .sns_item {
    display: flex;
    height: 100px;
  }
  .header_common_block .header_box .g-nav .g-nav_item .g-nav_item_sns_list .sns_item img {
    height: 100%;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  /* ナビゲーションメニューが表示されている状態 */
  .menu-panel-active {
    opacity: 1 !important;
    visibility: visible !important;
  }
  /* ページ全体のスクロールを無効化 */
  .no-scroll {
    overflow: hidden;
    height: 100dvh; /* 追加：bodyの高さも固定 */
  }
  /* ハンバーガーボタン */
  .openbtn {
    position: relative; /* absolute → relative に変更 */
    top: auto; /* リセット */
    left: auto; /* リセット */
    transform: none; /* リセット */
    cursor: pointer;
    width: 36px;
    height: 36px;
    z-index: 9999;
    background: url(../images/hamburger_menu.svg) no-repeat center/contain;
  }
  .openbtn.active {
    background: url(../images/hamburger_close.svg) no-repeat center/contain;
  }
}
.footer {
  color: var(--color-primary-white);
  position: relative;
}
.footer .footer_bg {
  background-image: url(https://www.japanprint.biz/tests/godaitec/assets/images/common/footer_bg_pc.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1500px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1500px;
  height: 100%;
  z-index: 1;
}
.footer .footer_bg::after {
  background-image: linear-gradient(to right, #fff, transparent 25%, transparent 75%, #fff);
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.footer .footer_bg_color {
  background: linear-gradient(60deg, #153786, #06a3c7);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  filter: opacity(0.9);
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.footer_wrap {
  position: relative;
  z-index: 3;
}

.footer_block {
  display: flex;
  justify-content: center;
  padding: 50px 0 20px;
  font-weight: bold;
  width: 90%;
  margin: auto;
}
.footer_block > li + li {
  margin-left: 40px;
}
.footer_block li {
  padding-bottom: 1em;
}
.footer_block p + p {
  padding-top: 1em;
}
.footer_block .footer_list_item a {
  display: block;
}
.footer_block .footer_sub_item {
  font-size: 1.4rem;
}
.footer_block .footer_sub {
  padding-top: 1em;
}
.footer_block .footer_sub_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 1em;
}
.footer_block .footer_sub_item_text {
  position: relative;
  padding-left: 12px;
}
.footer_block .footer_sub_item_text::before {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: var(--color-primary-white);
  left: 0;
  top: 50%;
  width: 8px;
  height: 2px;
  transform: translateY(-50%);
}

.footer_logo {
  width: 280px;
  margin: auto;
}

.copyright {
  font-size: 1.2rem;
  text-align: center;
  padding: 20px 0;
}

@media (width <= 1240px) {
  .footer {
    width: 100%;
    background: url(https://www.japanprint.biz/tests/godaitec/assets/images/common/footer_bg_sp.webp) center bottom;
    background-size: cover;
    max-width: 1500px;
    margin: 0 auto;
    color: var(--color-primary-white);
  }
  .footer .list_item_order01 {
    order: 1;
  }
  .footer .list_item_order02 {
    order: 2;
  }
  .footer .list_item_order03 {
    order: 3;
  }
  .footer .list_item_order04 {
    order: 4;
  }
  .footer .list_item_order05 {
    order: 5;
  }
  .footer .list_item_order06 {
    order: 6;
  }
  .footer .footer_bg {
    max-width: 100%;
    background: none;
  }
  .footer .footer_bg::after {
    background: none;
  }
  .footer_block {
    display: block;
    padding: 40px 0;
  }
  .footer_block li + li {
    margin: 0;
  }
  .footer_block li {
    padding: 0;
  }
  .footer_block.inner {
    width: 96%;
  }
  .footer_block p {
    padding: 1em 0.5em;
  }
  .footer_block .footer_list_item {
    margin-left: 0;
    border-bottom: 1px solid var(--color-primary-white);
    padding: 1em 0.5em;
  }
  .footer_block .footer_sub,
  .footer_block .footer_sub_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
  }
  .footer_block .footer_sub_item {
    width: 48%;
    border-bottom: 1px dashed var(--color-primary-white);
  }
  .footer_block .footer_sub_item_text {
    padding-left: 0;
    font-weight: normal;
  }
  .footer_block .footer_sub_item_text::before {
    display: none;
  }
}
/*==================================
共通
==================================*/
html {
  scroll-behavior: smooth;
}

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

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

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  overflow: hidden;
  position: relative;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .inner {
    padding-inline: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

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

.bg_tex01 {
  background: #ffffff url(../images/bg_tex01.webp) repeat center/1400px;
}

.bg_tex02 {
  background: #ffffff url(../images/bg_tex02.webp) repeat center/1400px;
}/*# sourceMappingURL=style.css.map */