@charset "utf-8";

/* ------------------
 reset.css
------------------ */
@charset "utf-8";*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){color-scheme:normal;scroll-behavior:smooth;cursor:auto;-moz-tab-size:2;tab-size:2;-webkit-tap-highlight-color:transparent;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word;font-size:62.5%;line-height:1.5;margin:0;padding:0}@supports not (min-block-size:100dvb){:where(html){block-size:100%}}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){block-size:100%;block-size:100dvb;line-height:1.5;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border:none;background:none}:where(a){text-underline-offset:.5ex;text-decoration:none}:where(ul,ol,li){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(address){font-style:normal}:where(table){border-collapse:collapse}:where(:focus-visible){outline:2px solid var(--focus-color,Highlight);outline-offset:2px}:where(.visually-hidden:not(:focus,:active,:focus-within,.not-visually-hidden)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

/* ------------------
 グローバル変数
------------------ */
:root {
  /* 色 */
  --main-color: #008E99;
  --main-color-rgb: 0, 142, 153;
  --main-color-other: #80C7CC;
  --sub-color: #2862A6;
  --color-navy: #153768;
  --color-red: #f00;
  --bg-color: #D5EDF0;
  --bg-color2: #F2F9FA;
  --gradient-right: linear-gradient(to right, #00CDD6 0%, #008E99 50%, #2862A6 100%);
  --gradient-bottom: linear-gradient(to bottom, #00CDD6 0%, #008E99 50%, #2862A6 100%);
  --gradient-deg: linear-gradient(-135deg, #00CDD6 0%, #008E99 50%, #2862A6 100%);
  --gradient-deg2: linear-gradient(135deg, #2862A6 0%, #008E99 50%, #00CDD6 100%);
  --gradient2-deg: linear-gradient(135deg, #BFE2E5 0%, #E6F4F5 100%);
  --gradient2-deg2: linear-gradient(135deg, #E6F4F5 0%, #F2F9FA 100%);

  /* 文字サイズ */
  --font-14: 1.4rem;
  --font-15: 1.5rem;
  --main-txt: 1.6rem;
  --font-18: 1.8rem;
  --font-20: 2.0rem;
  --font-24: 2.4rem;
  --font-28: 2.8rem;
  --font-32: 3.2rem;
  --font-40: 4.0rem;
  --font-48: 4.8rem;

  /* 幅 */
  --contents-w: 1024px;

  /* 余白 */
  --space-75: 75px;
  --space-55: 55px;
  --space-20: 20px;/* gap用 */

  /* コンテンツ間 */
  --contents-space: var(--space-75) 0;
  --contents-space-midashi: var(--space-75) 0 calc(var(--space-75) + 0.5em);
}

*[data-color="main"] {
  --var-color: var(--main-color);
}
*[data-color="main-rgb"] {
  --var-color-rgb: var(--main-color-rgb);
}
*[data-color="sub"] {
  --var-color: var(--sub-color);
}
*[data-color="white"] {
  --var-color: #fff;
}
*[data-color="brown"] {
  --var-color: #C45C2F;
}
*[data-color="sky"] {
  --var-color: #16E0FD;
}
*[data-color="blue"] {
  --var-color: #2862A6;
}
*[data-color="skyblue"] {
  --var-color: #DBE5F0;
}
*[data-color="black"] {
  --var-color: #000;
}
/*@media screen and (min-width: 1440px) {
  :root {
    --contents-w: 1296px;
  }
}*/
@media screen and (max-width: 767px) {
  :root {
    /* 文字サイズ */
     --font-15: 1.4rem;
     --main-txt: 1.5rem;
     --font-18: 1.6rem;
     --font-20: 1.7rem;
     --font-24: 1.8rem;
     --font-28: 2.0rem;
     --font-32: 2.0rem;
     --font-40: 2.4rem;
     --font-48: 2.8rem;

    /* 余白 */
    --space-75: 45px;
    --space-55: 35px;
    --space-20: 10px;/* gap用 */
  }
}

html {
	scroll-padding-top: 70px;
}

/* ------------------
 フォント
------------------ */
body {
	padding-top: 70px;
  font-family: 'Noto Sans JP','Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-size: var(--main-txt);
	line-height: 2;
	position: relative;
}
em {
  font-style: normal;
}

/* ------------------
 config
------------------ */
:where(a){color: #000;&:hover {opacity: 0.8;}}
:where(h1,h2,h3,h4,h5,li,figcaption){line-height: 1.5;}

/* スマホメニュー非表示 */
.spNav_btn,.spNav_panel {display: none;}

/* スマホ閲覧時のみ表示 */
.sp_block {display: none;}
@media screen and (min-width: 1920px) {
  .wide_block {
    display: none;
  }
}

/* ------------------
 SVGスプライト
------------------ */
.fill_white {
  fill: #fff;
}
.fill_color {
  fill: var(--var-color, var(--main-color));
}

/* ------------------
 レイアウト
------------------ */
.container {
	max-width: var(--contents-w);
	width: 90%;
	margin-inline: auto;
}
.container.flex, .item_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 30px; 
}
.container:has(+ .container) {
  margin-bottom: var(--space-75);
}
.paragraph:not(:last-child) {
  margin-bottom: var(--space-55);
}
.sentence:not(:last-child) {
  margin-bottom: 2em;
}
.figure_list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-20);
  figcaption {
    width: 100%;
  }
  @media screen and (max-width: 767px) {
    img {
      max-width: calc(50% - 5px);
      height: auto;
    }
  }
}
.figure_padding {
  padding: 1em 0 2em;
}

/* 数字連番 */
.numcontent_list {
  counter-reset: num 0;
  li {
    line-height: 2;
    padding: var(--space-55) 0;
  }
  li:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  li:first-child {
    padding-top: 0;
  }
  li:last-child {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .numcontent_list li {
    padding-top: 15px;
  }
}
.numcontent_list--title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-24);
  font-weight: bold;
  &::before {
    counter-increment: num 1;
    content: '0' counter(num);
    font-size: 8.8rem;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 4px rgba(var(--var-color-rgb, var(--main-color-rgb)), 0.2);
    text-stroke: 4px rgba(var(--var-color-rgb, var(--main-color-rgb)), 0.2);
  }
}
.page_sec--bg .numcontent_list--title::before {
  color: var(--bg-color2);
}
@media screen and (max-width: 767px) {
  .numcontent_list--title::before {
    font-size: 4.2rem;
    -webkit-text-stroke: 2px rgba(var(--var-color-rgb, var(--main-color-rgb)), 0.2);
    text-stroke: 2px rgba(var(--var-color-rgb, var(--main-color-rgb)), 0.2);
  }
}

/* サムネイルリンク */
.thumbnail_link {
	display: flex;
	gap: var(--space-20);
	@media screen and (max-width: 767px) {
		flex-wrap: wrap;
	}
}
.thumbnail_link--item {
	position: relative;
	span {
		width: 100%;
		padding: 0.5em 1em;
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: rgba(0, 0, 0, 0.5);
		font-weight: bold;
		color: #fff;
		position: absolute;
		left: 0;
		bottom: 0;
		&::after {
			content: "";
			width: 0.5em;
			aspect-ratio: 1 / 1;
			background: #fff;
			clip-path: polygon(100% 50%, 0 0, 0 100%);
		}
	}
	@media screen and (max-width: 767px) {
		max-width: calc(50% - 5px);
		width: 100%;
		aspect-ratio: 1 / 1;
    img {
      width: 100%;
      height: auto;
    }
	}
}
.thumbnail_link--item .rows2 {
  height: 4em;
}

/* スクロール要素 */

/* ------------------
 各種パーツ
------------------ */

/* ------------------
 見出し関連
------------------ */
/* 見出し */
.cmn_heading {
  padding-bottom: 0.5em;
  display: inline-block;
  font-size: var(--font-40);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--var-color, #000);
  position: relative;
  z-index: 2;
}
.cmn_heading--en {
  max-width: 90%;
  font-size: 9.6rem;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: 8px rgba(var(--var-color-rgb, var(--main-color-rgb)), 0.2);
  text-stroke: 8px rgba(var(--var-color-rgb, var(--main-color-rgb)), 0.2);
  paint-order: stroke;
  @media screen and (max-width: 767px) {
    -webkit-text-stroke: 4px rgba(var(--var-color-rgb, var(--main-color-rgb)), 0.2);
    text-stroke: 4px rgba(var(--var-color-rgb, var(--main-color-rgb)), 0.2);
    img {
      display: block;
      max-width: 100%;
      width: auto;
      max-height: 45px;
      height: auto;
    }
  }
}

/* ------------------
 テーブル
------------------ */
@media screen and (max-width: 767px) {
  .table_outer {
    width: 100%;
    overflow-x: auto;
  }
}
.table_head {
  background: var(--main-color);
  text-align: center;
  vertical-align: center;
  color: #fff;
}
.table_head th {
  padding: 1em;
}
.table_head th:not(:last-child) {
  border-right: 1px solid #fff;
}
.table_cell--header {
  padding: 1em;
  background: var(--bg-color);
  font-weight: normal;
  border-right: 1px solid var(--main-color);
  white-space: nowrap;
}
.table_single {
  width: 100%;
  border: 1px solid var(--main-color);
  td {
    background: #fff;
    padding: 2em;
    @media screen and (max-width: 767px) {
      padding: 1em 1.5em;
    }
  }
}
.table_2column {
  width: 100%;
}
.table_2column.table_border {
  border: 1px solid var(--main-color);
}
.table_2column tr {
  border-top: 1px solid var(--main-color);
  &:last-child {
    border-bottom: 1px solid var(--main-color);
  }
}
.table_2column--th {
  padding: 1em 2em;
  background: var(--bg-color);
  white-space: nowrap;
  font-weight: normal;
  @media screen and (max-width: 767px) {
    padding: 0.5em 1.5em;
    width: 100%;
    display: block;
  }
}
.table_2column--td {
  width: 100%;
  padding: 1em 2em;
  background: #fff;
  @media screen and (max-width: 767px) {
    padding: 1em 1.5em;
    display: block;
  }
}
.table_3column {
  width: 100%;
  border: 1px solid var(--main-color);
  @media screen and (max-width: 767px) {
    min-width: 768px;
  }
}
.table_3column tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--main-color);
}
.table_3column td {
  padding: 2em;
  background: #fff;
  @media screen and (max-width: 767px) {
    padding: 1.5em;
  }
}
.table_3column td:not(:last-child) {
  border-right: 1px solid var(--main-color);
}

/* ------------------
 ボタン
------------------ */
.more_btn a {
  max-width: 254px;
  width: 100%;
  padding: 0.5em 2.5em 0.5em 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  background: var(--var-color, var(--main-color));
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  position: relative;
  &::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    background: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    transform: translateY(calc(-50% + 0.5px));
    position: absolute;
    right: 1.5em;
    top: 50%;
  }
  @media screen and (max-width: 767px) {
    max-width: 210px;
    font-size: var(--font-14);
    gap: 1em;
  }
}
.more_btn a[data-color="white"] {
  color: var(--main-color);
  &::after {
    background: var(--main-color);
  }
}

/* ------------------
 テキスト関連
------------------ */
.main_txt:not(:last-child) {
  padding-bottom: 1.5em;
}
.color_txt {
  color: var(--var-color, var(--main-color));
}
.bold_txt {
  font-weight: bold;
}
.bigger_txt {
  font-size: var(--font-18);
  font-weight: bold;
}
.link_txt {
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
}
.center_txt {
  text-align: center;
}
.center_txt img {
  margin-inline: auto;
}
.left_txt {
  text-align: start;
}
.right_txt {
  text-align: end;
}
.indent_list li, .indent_txt {
  text-indent: -1em;
  padding-left: 1em;
}
.indent_list {
  padding-bottom: 1.5em;
}
.indent_list li:not(:last-child) {
  padding-bottom: 0.5em;
}

/* ------------------
 リスト、インデント関連
------------------ */
/* インデント */
.indent_txt, .indent_list li {
  text-indent: -1em;
  padding-left: 1em;
}
/* 先頭「・」のリスト */
.bullet_list {
  margin-bottom: 1.5em;
}
.bullet_list li {
  width: 100%;
  display: flex;
  padding-bottom: 0.5em;
  &::before {
    content: "・";
    display: inline-block;
  }
}
/* 先頭「数値」のリスト */
.decimal_list {
  margin-left: 1.1em;
  li {
    list-style-type: decimal;
  }
}
/* 先頭「●」のリスト */
.disc_list {
  margin-left: 1.1em;
  li {
    list-style-type: disc;
  }
}

/* ------------------
 header
------------------ */
.header {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.header_logo {
  height: 100%;
  a {
    height: 100%;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.pc_nav {
  height: 100%;
  display: flex;
  align-items: center;
}
.pc_nav--list {
  width: 100%;
  height: 100%;
  display: flex;
}
.pc_nav--item {
  height: 100%;
  & > a {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  & > a:hover {
    opacity: 1;
  }
  & > a:hover::after {
    content: "";
    width: calc(100% - 20px);
    height: 2px;
    display: block;
    background: var(--main-color);
    position: absolute;
    left: 20px;
    bottom: 15px;
  }
  @media screen and (min-width: 1441px) {
    & > a {
      padding: 0 20px;
    }
    & > a:hover::after {
      width: calc(100% - 40px);
    }
  }
}

.pc_nav--parent {
  height: 70px;
}
.pc_nav--parent a {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  &:hover {
    opacity: 1;
  }
}
.pc_nav--parent a:hover::after, .pc_nav--parent a:focus::after {
  content: "";
  width: calc(100% - 40px);
  height: 2px;
  display: block;
  background: var(--main-color);
  position: absolute;
  left: 20px;
  bottom: 15px;
}

/* メガメニュー　*/
.pc_nav--dropdown {
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(40, 98, 166, 0.9) 0%, rgba(0, 142, 153, 0.9) 50%, rgba(0, 205, 214, 0.9));
  position: absolute;
  left: 0;
  top: 70px;
  overflow: hidden;
  visibility: hidden;
  transition: all .3s;
}
.pc_nav--item:hover > .pc_nav--dropdown,
.pc_nav--item:has(.pc_nav--parent a:focus) > .pc_nav--dropdown,
.pc_nav--item:has(.pc_nav--dropdown a:focus) > .pc_nav--dropdown {
  height: 287px;
  display: block;
  visibility: visible;
}
.pc_nav--item:hover > .pc_nav--dropdown.dropdown_technology,
.pc_nav--item:has(.pc_nav--parent a:focus) > .pc_nav--dropdown.dropdown_technology,
.pc_nav--item:has(.pc_nav--dropdown a:focus) > .pc_nav--dropdown.dropdown_technology {
  height: 474px;
}
.dropdown_container {
  max-width: 1152px;
  width: 100%;
  padding: var(--space-55) 0;
  display: flex;
  gap: 50px;
  margin-inline: auto;
}
.dropdown_left {
  min-width: 328px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dropdown_title {
  font-size: var(--font-32);
  font-weight: bold;
  color: #fff;
}
.dropdown_list {
  max-width: calc(100% - 378px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.dropdown_item {
  max-width: calc(100% / 3 - 40px / 3);
  width: 100%;
}
.dropdown_item a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.dropdown_item--name {
  width: 100%;
  padding-right: 0.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: bold;
  &::after {
    content: "";
    width: 8px;
    aspect-ratio: 1 / 1;
    display: block;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background: #fff;
  }
}
.dropdown_container .more_btn a {
  width: 100%;
  max-width: 100%;
  padding: 0.5em 1em 0.5em 1em;
  justify-content: space-between;
  gap: 1em;
}

/* TEL */
.header_tel {
  padding: 0 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  @media screen and (min-width: 1441px) {
    padding: 0 40px 0 20px;
  }
}
.header_tel--icon {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--sub-color);
  font-size: var(--font-20);
  font-weight: bold;
  color: #fff;
}
.header_tel--txt {
  font-size: var(--font-18);
  color: var(--sub-color);
  line-height: 1.2;
  text-align: end;
  a {
    font-size: var(--font-24);
    font-weight: bold;
    color: var(--sub-color);
  }
  span {
    padding-right: 0.2em;
    font-size: var(--font-14);
  }
}

/* お問い合わせ */
.header_estimate {
  width: 120px;
  height: 100%;
  background: var(--main-color);
  a {
    width: 100%;
    height: 100%;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-align: center;
    color: #fff;
    font-weight: bold;
  }
}

/* ------------------
 お問い合わせ
------------------ */
.contact {
  width: 100%;
  min-height: 682px;
}
.contact_bg {
  width: 100%;
  height: 414px;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  @media screen and (max-width: 767px) {
    height: 346px;
  }
}
.contact_inner {
  max-width: 847px;
  width: 90%;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px 60px;
  background: linear-gradient(135deg, #E6F4F5 0%, #F2F9FA 100%);
  transform: translateY(-50%);
  margin: 0 auto -134px;
  position: relative;
  @media screen and (max-width: 767px) {
    padding: 35px 5%;
    flex-wrap: wrap;
    margin: 0 auto -173px;
  }
}
.contact_inner--left {
  max-width: 225px;
  width: 100%;
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
.contact .cmn_heading {
  font-size: var(--font-32);
  @media screen and (max-width: 767px) {
    font-size: 2.4rem;
  }
}
.contact .cmn_heading--en {
  max-width: 90%;
  position: absolute;
  top: 0;
  right: 0;
  @media screen and (max-width: 767px) {
    right: initial;
    left: 0;
  }
}
.contact_btns {
  margin-inline: auto;
}
.contact_btn {
  width: 415px;
  position: relative;
  z-index: 2;
  a {
    width: 100%;
    height: 64px;
    padding: 0 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-24);
    color: #fff;
    font-weight: bold;
    background: var(--main-color);
  }
  svg {
    margin-right: 10px;
  }
  span {
    font-size: var(--font-20);
  }
  &:not(:last-child) {
    margin-bottom: 20px;
  }
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}
.contact_btn .contact_btn--tel {
  font-size: var(--font-28);
}

/* ------------------
 footer
------------------ */
.footer_container {
  max-width: 1152px;
  width: 90%;
  padding: calc(var(--space-75) + 0.5em) 0 var(--space-75);
  display: flex;
  justify-content: space-between;
  gap: 20px 50px;
  margin-inline: auto;
}
.footet_logo {
  margin-bottom: 1.5em;
}
.footer_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
  a {
    display: flex;
    width: 100%;
  }
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.footer_nav--box {
  min-width: 180px;
}
.footer_nav--item {
  margin-bottom: 1.5em;
}
.footer_nav--item.company {
  margin-bottom: 1em;
}
.footer_nav--parent {
  margin-bottom: 0.25em;
}
.footer_nav--parent a {
  font-weight: bold;
  color: var(--main-color);
}
.footer_nav--parent:has(svg) a {
  padding: 0.25em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #000;
  font-weight: normal;
  font-size: var(--font-15);
}
.footer_nav--child {
  padding-left: 1em;
}
.footer_nav--childitem {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.25em;
  font-size: var(--font-15);
  &::before {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background: var(--main-color);
  }
}
.footer_bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.footer_bar .container {
  max-width: 1152px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  padding: 0.5em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.5em;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  svg {
    transform: translateY(1px);
  }
  @media screen and (max-width: 767px) {
    display: inline-block;
    svg {
      height: 14px;
      display: inline;
      transform: translateY(3px);
    }
  }
}
.footer_bar--links {
  display: flex;
  align-items: center;
  gap: 0 0.8em;
  a {
    color: #fff;
    font-size: var(--font-14);
  }
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.footer_bar--link {
  display: flex;
  align-items: center;
  gap: 0 1em;
}
.footer_bar--link:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 1em;
  background: #fff;
  display: block;
}

/* ------------------
下層ページ共通
------------------ */
/* パンくずリスト */
.breadcrumb {
  width: 90%;
  padding: 0.5em 0;
  margin-inline: auto;
  @media screen and (max-width: 767px){
    padding: 0.75em 0;
  }
}
.breadcrumb_list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 15px;
  @media screen and (max-width: 767px){
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 5px 10px;
    overflow-x: auto;
  }
}
.breadcrumb_item {
  color: #fff;
  a {
    text-decoration: underline;
		color: #fff;
    &:hover {text-decoration: none;}
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 15px;
    @media screen and (max-width: 767px) {
      gap: 5px 10px;
    }
  }
  &:has(a[href])::after {
    content: "";
    display: inline-block;
    height: 2px;
		width: 5px;
		background: #fff;
  }
  @media screen and (max-width: 767px) {
    white-space: nowrap;
  }
}

/* ページ内リンク */
.page_link {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-20);
  transform: translateY(-50%);
  margin: 0 auto -43px;
  font-size: var(--font-20);
  position: relative;
  z-index: 2;
  @media screen and (max-width: 767px) {
    justify-content: flex-start;
    margin-bottom: -30px;
    transform: translateY(-1.75em);
  }
}
.page_link--item {
  @media print, screen and (min-width: 768px) {
    min-width: 241px;
    height: 86px;
  }
  @media screen and (max-width: 767px) {
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
.page_link--item a {
  width: 100%;
  height: 100%;
  padding: 1em 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient2-deg);
  color: #000;
  font-weight: bold;
  text-align: center;
  position: relative;
  &::after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    display: inline-block;
    background: var(--main-color);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    right: 1.25em;
  }
  @media screen and (max-width: 767px) {
    height: 60px;
    padding: 0 0.75em 0 0.5em;
    font-size: var(--font-14);
    &::after {
      right: 0.5em;
    }
  }
}
.page_sublink {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-20);
  margin: 1em auto 3.5em;
  @media screen and (max-width: 767px) {
    margin: 1em auto 2em;
  }
}
.page_sublink--item {
  max-width: calc(100% / 3 - 40px / 3);
  width: 100%;
  @media screen and (max-width: 767px) {
    max-width: calc(50% - 5px);
  }
}
 .page_sublink--item a {
  width: 100%;
  height: 100%;
  padding: 1em 0.5em 1em 0.75em;
  background: var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  color: #fff;
  &::after {
    content: "";
    min-width: 0.5em;
    height: 0.5em;
    display: inline-block;
    background: #fff;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  @media screen and (max-width: 767px) {
    padding: 0.5em 0.5em 0.5em 0.75em;
  }
}

/* ページタイトル */
.page_title {
  padding: 2em 1% 0 5%;
  margin-inline: auto;
}
.page_title .cmn_heading {
  padding: 0.25em 0 1.5em;
}
.page_title .cmn_heading--en {
  @media print, screen and (max-width: 1439px) {
    font-size: 7.2rem;
  }
  @media screen and (max-width: 767px) {
    font-size: 3.2rem;
  }
}

/* 下層ページ用レイアウト */
.page_sec {
  width: 100%;
  margin: var(--contents-space-midashi);
}
.page_sec.container {
  width: 90%;
  margin-inline: auto;
}
.page_sec--bg {
  width: 100%;
  padding: var(--contents-space-midashi);
  background: var(--gradient2-deg2);
}
.page_sec--bg2 {
  width: 100%;
  padding: var(--contents-space-midashi);
  background: var(--bg-color2);
}
.page_sec--bg3 {
  width: 100%;
  padding: var(--contents-space-midashi);
  background: #EAF0F7;
}
.page_sec:has(+ .relation) {
  margin-bottom: 0;
}
.flex_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 30px; 
}
.flex_txtbox {
  max-width: 492px;
  width: 100%;
}
.flex_txtbox:has(.more_btn) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cmn_headbox {
  width: 100%;
  &:not(:last-child) {
    margin-bottom: 25px;
  }
}
.page_heading:has(+ .cmn_headbox) {
  padding-bottom: 1em;
}
.cmn_headbox--heading {
  width: 100%;
  padding: 1em 40px;
  background: var(--var-color, var(--bg-color));
  font-size: var(--font-24);
  @media screen and (max-width: 767px) {
    padding: 1em 5%;
  }
}
.cmn_headbox--content {
  width: 100%;
  padding: 30px 40px;
  background: var(--bg-color2);
  @media screen and (max-width: 767px) {
    padding: 20px 5%;
  }
}

/* 下層ページ用見出し */
.page_heading {
  padding-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: var(--font-40);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--var-color, var(--main-color));
  white-space: nowrap;
  position: relative;
  z-index: 2;
  &::after {
    content: "";
    width: 100%;
    height: 2px;
    display: inline-block;
    background: var(--var-color, var(--main-color));
  }
  @media screen and (max-width: 767px) {
    white-space: wrap;
    &::after {
      content: none;
    }
  }
}
@media screen and (max-width: 767px) {
  .page_heading:has(.page_heading--small) {
    line-height: 1.3;
  }
}
.page_heading--small {
  font-size: var(--font-24);
}
.page_heading--num {
  width: 100%;
  padding-bottom: 0.25em;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: var(--font-40);
  font-weight: bold;
  color: var(--var-color, var(--main-color));
  border-bottom: 2px solid var(--var-color, var(--main-color));
  margin-bottom: 0.75em;
  span {
    font-size: 6.4rem;
    white-space: nowrap;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 4px rgba(var(--var-color-rgb, var(--main-color-rgb)), 1);
    text-stroke: 4px rgba(var(--var-color-rgb, var(--main-color-rgb)), 1);
    paint-order: stroke;
    @media screen and (max-width: 767px) {
      font-size: 4.8rem;
    }
  }
}
.page_sec--bg2 .page_heading--num span {
  color: var(--bg-color2);
}
.page_subheading {
  padding-bottom: 0.5em;
  font-size: var(--font-24);
  font-weight: bold;
  color: var(--var-color, #000);
}
.page_listheading {
  padding-bottom: 0.5em;
  font-size: var(--font-24);
  font-weight: bold;
  color: var(--var-color, var(--main-color));
  text-indent: -1em;
  padding-left: 1em;
  &::before {
    content: "・";
  }
}
.page_listheading.hyphen {
  padding-bottom: 0.5em;
  font-size: var(--main-txt);
  color: var(--var-color, #000);
  &::before {
    content: "-";
    margin-right: 10px;
  }
}
.page_listheading + * {
  padding-left: 24px;
  @media screen and (max-width: 767px) {
    padding-left: 18px;
  }
}
.page_listheading.hyphen + * {
  padding-left: 16px;
  @media screen and (max-width: 767px) {
    padding-left: 15px;
  }
}
.page_listheading + * .page_subheading {
  font-size: var(--font-20);
}
.page_borderheading {
  width: 100%;
  padding: 0.5em 1em;
  font-size: var(--font-20);
  font-weight: bold;
  color: #fff;
  background: var(--main-color);
  margin-bottom: 1em;
}

/* 下層ページメインビジュアル */
.page_mv {
  --mv-h: 568px;
  --mv-trans: 0.55;
  --mv-mt: calc(var(--mv-h) * var(--mv-trans));

  width: 100%;
  height: 380px;
  position: relative;
  margin-top: var(--mv-mt);
  &::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: var(--gradient-deg2);
    position: absolute;
    z-index: -1;
  }
  @media screen and (max-width: 767px) {
    --mv-h: 368px;
    height: 280px;
  }
}
.page_mv--img {
  width: 90%;
  height: var(--mv-h);
  margin-inline: auto;
  transform: translateY(calc(var(--mv-trans) * -100%));
  margin-bottom: calc(var(--mv-h) * var(--mv-trans) * -1);
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.page_mv .container {
  color: #fff;
}

/* ------------------
 関連リンク
------------------ */
.relation {
  width: 100%;
  padding: var(--space-75) 5%;
}
@media print, screen and (min-width: 768px) {
  .relation .thumbnail_link {
    justify-content: center;
  }
}

/* ------------------
  Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: rgba(50,50,50,0.9);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
}
#backtop::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-25%) rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin-inline: auto;
}
#backtop.active {
  opacity: 0.6;
  visibility: visible;
  z-index: 50;
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body, .header {
    width: 1280px;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* iPad調整用 */
@media screen and (orientation: portrait) and (min-width: 768px) {}

@media screen and (max-width: 767px) {
  body, .header {width: 100%;}
  .sp_block {display: block;}
  .pc_block {display: none;}

  .pc_nav {display: none;}

  /* ------------------
  スマホメニュー
  ------------------ */
  /* ボタン */
  .spNav_btn {
    display: block;
    width: 50px;
    height: 50px;
    padding-top: 20px;
    border-radius: 50%;
    background: var(--gradient-deg2);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.5s;
    position: absolute;
    top:10px;
    right: 10px;
    z-index: 11;
    span {
      display: block;
      height: 2px;
      background: #fff;
      margin-inline: auto;
      position: absolute;
    }
    /* 閉じた状態 */
    &[aria-pressed="false"] span {width: 28px;transition: all 0.5s;}
    &[aria-pressed="false"] span:nth-child(1) {top: 10px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(2) {top: 17px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(3) {top: 24px;left: 0;right: 0;}
    
    /* 開いた状態 */
    &[aria-pressed="true"] {background: transparent;}
    &[aria-pressed="true"] span {width: 30px;transition: all 0.5s;}
    &[aria-pressed="true"] span:nth-child(1) {top: 35%;transform: translateY(-1.5px) rotate(45deg);left: 11px;}
    &[aria-pressed="true"] span:nth-child(2) {display: none;}
    &[aria-pressed="true"] span:nth-child(3) {bottom: 65%;transform: translateY(1.5px) rotate(-45deg);left: 11px;}
  }

  /* メニューパネル */
  .spNav_panel {
    display: block;
    height: 100vh;
    width: 85%;
    max-width: 340px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background: var(--gradient-deg2);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    overflow: auto;
    z-index: 9;
    
    /* パネルが閉じている状態 */
    &[aria-hidden="true"] {
      visibility: hidden;
      pointer-events: none;
      transform: translateX(100%);
    }

    /* パネルが開いている状態 */
    &[aria-hidden="false"] {
      visibility: visible;
      transform: translateX(0);
    }
  }

  /* メニューパネル内の項目 */
  .spPanel_btns {
    padding: 15px;
    display: flex;
    gap: 10px;
  }
  .spPanel_btn a {
    padding: 0.25em 0.5em;
    border: 1px solid #fff;
    display: block;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.5;
    span {
      font-size: 1.2rem;
      font-weight: bold;
    }
  }
  .spPanel_btn.num {
    font-size: 1.5rem;
  }

  .spNav_list {
    width: 100%;
    padding: 15px 0 150px 15px;
  }
  .spNav_list--item {
    border-bottom: 1px solid #fff;
    a {
      display: block;
      padding: 1em 0.5em;
      color: #fff;
    }
    & > a {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    &:has(.spNav_accordion--title) {
      border-bottom: none;
    }
  }
  .spNav_accordion--title {
    width: 100%;
    padding: 1em 1em 1em 0.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-bottom: 1px solid #fff;
    &::after {
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }
    
    /* アコーディオン開閉時の状態表示 */
    &[aria-expanded="false"]::after {content: "+";}
    &[aria-expanded="true"]::after {content: "-";}
  }
  .spNav_accordion {
    width: 100%;
    overflow: hidden;
    background: #fff;
    transition: all 0.5s;
    a {
      padding-left: 5%;
      color: var(--main-color);
    }
  }
  .spNav_accordion--item:first-child {
    font-weight: bold;
  }
  .spNav_accordion--item:not(:last-child) > a {
    border-bottom: 1px dashed #ccc;
  }
  /* アコーディオン内のアコーディオン */
  .spNav_accordion .spNav_accordion {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 6px;
  }
  .spNav_accordion .spNav_accordion--title {
    color: var(--main-color);
    font-weight: bold;
    background: var(--bg-color);
  }
  .spNav_accordion--subItem {
    max-width: calc(50% - 3px);
    &:nth-child(1) {
      padding-top: 6px;
    }
    &:nth-child(2) {
      padding-top: 6px;
    }
    &:nth-last-child(1) {
      padding-bottom: 6px;
      border-bottom: none;
    }
    &:nth-last-child(2) {
      padding-bottom: 6px;
      border-bottom: none;
    }
  }
  .spNav_accordion--subItem a {
    width: 100%;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    border-bottom: none;
    font-size: var(--font-14);
    img {
      width: 100%;
      height: auto;
    }
  }
  /* bodyをタッチ不可に */
  #onbody {position: absolute;height: 100%;width: 100%; top: 0;left: 0;background: rgba(0, 0, 0, 0.6);z-index: 8;overflow: hidden;pointer-events: none;}
  body:has(#onbody[aria-hidden="true"]) {height: 100%; overflow: hidden;}
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  .header {
    position: absolute;
    min-width: 1280px;
  }
  #backtop {
    display: none;
  }
}
@page {
  size: A4;margin: 5px;
}