@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;600;700;800;900&family=MuseoModerno:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* グローバル変数 */
:root {
  /* 色 */
  --main-blue: #001FBD;
  --dark-blue: #2456C0;
  --light-blue: #0072E6;
  --sub-color: #F5743C;

  /* 文字 */
  --en-font: 'MuseoModerno','Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
}

/* ページ内リンクの移動を滑らかに */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}
:where(.spNav_btn,.spNav_panel) {display: none;}
:where(.sp_block) {display: none;}
:where(a) {
  color: #000;
  &:hover {
    opacity: 0.8;
  }
}
body {
  position: relative;
  font-family: 'Noto Sans JP','Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* アニメーション
======================================================= */
.fade{
  opacity: 0;
  transition:ease-out 0.5s;
}
.fade.fade--left{
  transform: translate(-100px,0)
}
.fade.fade--right{
  transform: translate(100px,0)
}
.fade.fade--bot{
  transform: translate(0,100px)
}
.fade.scrollin{
  opacity: 1;
  transform: translate(0,0);
}
.fade.fade--list{
  opacity: 1;
}
.fade.fade--list .fade_child{
  opacity: 0;
  transition:ease-out 0.5s;
  transform: translate(0,100px)
}
.fade.fade--list.scrollin .fade_child{
  opacity: 1;
  transform: translate(0,0);
}
.fade.fade--list .fade_child:nth-child(1){
  transition-delay: 0.0s;
}
.fade.fade--list .fade_child:nth-child(2){
  transition-delay: 0.15s;
}
.fade.fade--list .fade_child:nth-child(3){
  transition-delay: 0.3s;
}
.fade.fade--list .fade_child:nth-child(4){
  transition-delay: 0.45s;
}
.fade.fade--list .fade_child:nth-child(5){
  transition-delay: 0.6s;
}
.fade.fade--list .fade_child:nth-child(6){
  transition-delay: 0.75s;
}
.fade.fade--list .fade_child:nth-child(7){
  transition-delay: 0.9s;
}
.fade.fade--list .fade_child:nth-child(8){
  transition-delay: 1.05s;
}
.fade.fade--list .fade_child:nth-child(9){
  transition-delay: 1.2s;
}
.fade.fade--list .fade_child:nth-child(10){
  transition-delay: 1.35s;
}

/* page_title */
.page_title--outer {
  position: relative;
  &::before {
    content: '';
    position: absolute;
    background: url(../img/page_title_bg.png)no-repeat center;
    background-size: cover;
    width: 100%;
    height: 90%;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.page_title {
  position: relative;
  width: 100%;
  height: 310px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: auto;
  &::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 97%;
    height: 100%;
  }
  h1 {
    position: relative;
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
    color: #fff;
    font-size: 4.8rem;
    letter-spacing: 4.8px;
    font-weight: 700;
  }
  p {
    position: absolute;
    bottom: -120px;
    right: 5%;
    color: rgba(104, 179, 255, 0.3);
    font-size: 15rem;
    font-weight: 700;
    font-family: var(--en-font);
  }
  @media screen and (max-width: 767px) {
    height: auto;
    min-height: 240px;
    h1 {
      width: 80%;
      font-size: 3.2rem;
      letter-spacing: 3.2px;
      line-height: 1.5;
    }
    p {
      bottom: -40px;
      right: 0;
      font-size: min(9rem, 20vw);
    }
  }
}

/* パンくずリスト */
.breadcrumb {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto 88px;
  padding-top: 1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
  font-size: 1.4rem;
  @media screen and (max-width: 767px) {
    position: relative;
    margin-bottom: 56px;
    overflow: auto;
    white-space: nowrap;
  }
}
.breadcrumb_item {
  color: var(--dark-blue);
  a {
    color: var(--dark-blue);
    text-decoration: underline;
    &:hover {text-decoration: none;}
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 14px;
  }
  &:has(a[href])::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--dark-blue);
    transform: rotate(20deg);
  }
}

/* レイアウト */
section {
  position: relative;
}
.container {
  position: relative;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}

.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}
.mt50 {margin-top: 50px;}
.mt60 {margin-top: 60px;}
.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}

.ml10 {margin-left: 1em;}
.ml20 {margin-left: 2em;}
.ml30 {margin-left: 3em;}

/* テキスト */
.bold_txt {
  font-weight: bold;
}
.center_txt {
  text-align: center;
  img {
    margin: auto;
  }
}
.right_txt {text-align: right;}

/* インデント */
.indent, .indent_list li {
	text-indent: -1em;
	padding-left: 1em;
}
.indent_dot {
  text-indent: -1.6em;
	padding-left: 1.6em;
}

/* リンク */
.cmn_link {
  position: relative;
  background: #fff;
  color: var(--sub-color);
  border: 1px solid var(--sub-color);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  transition: all 0.2s ease;
  &:hover {
    background: var(--sub-color);
    color: #fff;
    border: 1px solid #fff;
    opacity: 1;
  }
  @media screen and (max-width: 767px) {
    max-width: 280px;
  }
}


/* アンカーリンク */
/* .anchor_link {
  position: relative;
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  a {
    position: relative;
    width: 100%;
    padding: 20px 10px 30px 10px;
    background: var(--light-color);
    color: var(--sub-color);
    font-weight: bold;
    text-align: center;
    &::before {
      content: '';
      position: absolute;
      background: url(../img/anchor_arrow_main.png)no-repeat center;
      background-size: contain;
      width: 19px;
      height: 11px;
      bottom: 8px;
      right: 0;
      left: 0;
      margin: auto;
    }
  }
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
  }
} */

/* ページタイトル */
.cmn_ttl {
  position: relative;
  min-height: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
  h2 {
    position: relative;
    color: #fff;
    font-size: 3.6rem;
    letter-spacing: 7.2px;
    font-weight: 900;
    z-index: 1;
  }
  p {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.18);
    font-size: 12.8rem;
    font-weight: 700;
    font-family: var(--en-font);
  }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 2.8rem;
      letter-spacing: 2.8px;
      line-height: 1.5;
    }
    p {
      font-size: min(9rem, 20vw);
    }
  }
}


main {
  padding-top: 80px;
  @media screen and (max-width: 767px) {
    padding-top: 56px;
  }
}

/* header */
.header {
  position: relative;
  width: 100%;
  height: 80px;
  padding: 0;
  padding-left: 24px;
  background: #EFF8FF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  &.rev {
    background: #fff;
  }
  &::before {
    content: '';
    position: absolute;
    background: var(--dark-blue);
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 12px;
  }
  @media screen and (max-width: 767px) {
    height: 56px;
    padding-left: 0;
    background: #fff;
    &::before {
      height: 4px;
    }
  }
}
.hd_logo {
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px 12px;
  z-index: 1;
  @media screen and (max-width: 767px) {
    width: calc(100% - 120px);
    z-index: -1;
  }
}
.pc_nav {
  height: 100%;
}
.pc_nav--list {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-right: 40px;
  li.pc_item {
    position: relative;
    height: 100%;
  }
  li.pc_item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -15px;
    margin: auto;
    background: #000;
    width: 1px;
    height: 20px;
  }
  li.pc_item:nth-child(5)::before {
    display: none;
  }
  a.pc_item--child {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    padding-top: 6px;
  }
  a.pc_item--child:hover {
    text-decoration: 2px underline var(--main-color);
    text-underline-offset: 1ex;
  }
}
.pc_nav--cont {
  position: relative;
  height: 80%;
  background: var(--main-color);
  a.pc_item--child {
    background: var(--sub-color);
    color: #fff;
    align-items: center;
    padding: 12px;
    font-weight: bold;
  }
  a.pc_item--child:hover {
    text-decoration: none;
  }
}

/* スマホメニュー */
@media screen and (max-width: 767px) {
  .spNav_btn {
    display: block;position: absolute; width: 56px;height: 56px;background: var(--dark-blue);top:0;right: 0;transition: all 0.5s;z-index: 100;
    span {position: absolute;display: block;height: 2px;background: #fff;margin: auto;}
    
    /* 閉じた状態 */
    &[aria-pressed="false"] span {width: 30px;transition: all 0.5s;}
    &[aria-pressed="false"] span:nth-child(1) {top: 18px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
    &[aria-pressed="false"] span:nth-child(3) {bottom: 18px;left: 0;right: 0;}
    
    /* 開いた状態 */
		&[aria-pressed="true"] {background: none;}
    &[aria-pressed="true"] span {width: 30px;transition: all 0.5s;background: #fff;}
    &[aria-pressed="true"] span:nth-child(1) {top: 50%;transform: translateY(-1.5px) rotate(45deg);left: 13px;}
    &[aria-pressed="true"] span:nth-child(2) {display: none;}
    &[aria-pressed="true"] span:nth-child(3) {bottom: 50%;transform: translateY(1.5px) rotate(-45deg);left: 13px;}
  }

  /* メニューパネル */
  .spNav_panel {
    display: block;
    height: 100vh;
    width: 290px;
		padding-bottom: 120px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background: var(--dark-blue);
		overflow: auto;
    z-index: 99;
    
    /* パネルが閉じている状態 */
    &[aria-hidden="true"] {
      visibility: hidden;
      pointer-events: none;
      transform: translateX(100%);
    }

    /* パネルが開いている状態 */
    &[aria-hidden="false"] {
      visibility: visible;
      transform: translateX(0);
    }
  }
  /* メニューパネル内の項目 */
  .spNav_list {
    width: 100%;
    padding: 20px 0 0;
    font-size: 1.5rem;
  }
  .spNav_list--item {
    border-bottom: 1px solid #fff;
    a {
      display: block;
      padding: 10px 15px;
      color: #fff;
    }
  }
  .spNav_accordion--title {
    width: 100%;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    &::after {
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }
    
    /* アコーディオン開閉時の状態表示 */
    &[aria-expanded="false"]::after {content: "+";}
    &[aria-expanded="true"]::after {content: "-";}

    /* アコーディオン内の項目 */
    &[aria-expanded="false"] + .spNav_accordion {
      max-height: 0;
      height: auto;
    }
    &[aria-expanded="true"] + .spNav_accordion {
      max-height: 1000px;
    }
  }
  .spNav_accordion {
    overflow: hidden;
    background: #fff;
    transition: all 0.5s;
    a {
      padding-left: 10%;
      color: #000;
      border-bottom: 1px dashed #ccc;
    }
		img {
      width: 16px;
      height: 16px;
			display: inline-block;
      margin-left: 8px;
		}
  }
  .spNav_accordion--item:last-child a {
    border-bottom: none;
  }
	
	/* bodyをタッチ不可に */
  #onbody {position: absolute;height: 100%;width: 100%; top: 0;left: 0;background: rgba(0, 0, 0, 0.6);z-index: 9;overflow: hidden;pointer-events: none;}
  body:has(#onbody[aria-hidden="true"]) {height: 100%; overflow: hidden;}
}



/* ------------------
お問い合わせ
------------------ */
.cmn_cont {
  position: relative;
  padding: 64px 0;
  background: url(../img/cont_bg.png)no-repeat center;
  background-size: cover;
  @media screen and (max-width: 767px) {
    background: url(../img/cont_bg.png)no-repeat left;
    background-size: cover;
  }
}
.cmn_cont--flex {
  width: 100%;
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  a {
    position: relative;
    background: var(--sub-color);
    color: #fff;
    border: 1px solid var(--sub-color);
    width: 100%;
    max-width: 260px;
    min-height: 62px;
    padding: 12px 8px;
    text-align: center;
    font-weight: bold;
    &::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
    }
  }
  a:first-child {
    padding-left: 2em;
    font-size: 2rem;
    &::before {
      background: url(/common/img/cont_icon01.svg)no-repeat center;
      background-size: contain;
      width: 22px;
      height: 21px;
      left: 2.5em;
    }
  }
  a:last-child {
    padding-left: 2em;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    &::before {
      background: url(/common/img/cont_icon02.svg)no-repeat center;
      background-size: contain;
      width: 22px;
      height: 16px;
      left: 1em;
    }
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    a {
      max-width: 320px;
      min-height: initial;
    }
  }
}

/* 下層リンク */
.products_link {
  padding: 0 0 72px;
}
.products_link .cmn_ttl {
  margin-bottom: 40px;
  h2 {color: var(--dark-blue);}
  p {color: #EFF8FF;}
  @media screen and (max-width: 767px) {
    margin-bottom: 16px;
  }
}
.products_link--list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: calc(25% - 15px);
    max-width: 240px;
  }
  a:hover {opacity: 1;}
  a:hover img {
    transform: scale(1.1, 1.1);
    transition: .5s all;
  }
  figure {
    width: 100%;
    height: 160px;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  figure + p {
    color: var(--sub-color);
    font-size: 2rem;
    letter-spacing: 2px;
  }
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    align-items: initial;
    gap: 10px;
    a {
      width: calc(50% - 5px);
    }
    figure + p {
      font-size: min(2rem, 4.8vw);
      letter-spacing: 1px;
    }
  }
}

/* ------------------
 footer
------------------ */
.footer {
  width: 100%;
  overflow: hidden;
  @media screen and (max-width: 767px) {
    padding-top: 40px;
  }
}
.footer .container {
  max-width: 1200px;
  min-height: 427px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 1366px) {
    margin-right: 0;
  }
  @media screen and (max-width: 767px) {
    min-height: initial;
    justify-content: center;
    margin-right: auto;
    & + figure.sp_block {
      display: flex;
      justify-content: center;
    }
  }
}
.ft_left {
  width: 100%;
  max-width: 460px;
  address {
    font-size: 1.6rem;
    margin-top: 20px;
  }
  & + figure.pc_block {
    position: absolute;
    top: 0;
    right: -10%;
    bottom: 0;
    margin: auto;
  }
}
.ft_left--link {
  font-weight: bold;
  font-size: 2rem;
}
.ft_nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  li {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 18px;
    border-left: 2px solid #68B3FF;
  }
  li:nth-of-type(1) {
    padding-right: 10px;
  }
  li:nth-of-type(2) {
    border-right: 2px solid #68B3FF;
  }
  a {
    display: inline-block;
    line-height: 1.3;
    margin-bottom: 8px;
    &:hover {opacity: 0.6;}
  }
  a.ft_nav--second {
    margin-left: 1em;
  }
  a.ft_nav--third {
    margin-left: 2em;
  }
  a.ft_nav--fourth {
    margin-left: 3em;
  }
  @media screen and (max-width: 767px) {
    display: none;
  }
}
.copyright {
  background: var(--dark-blue);
  text-align: center;
  padding: 4px 0;
  small {
    font-size: 1.4rem;
    color: #fff;
  }
}

/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: #999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
  &::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: auto;
  }
}
#backtop.active {
  opacity: 0.8;
  visibility: visible;
  z-index: 50;
}
#backtop.active:hover {
	opacity: 0.6;
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
/* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }
  :where(.sp_block) {display: block;}
  :where(.pc_block) {display: none;}

}

/* 印刷用設定 */
@media print {
  body {
    width:1280px;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  .header {
    position: absolute;
  }
}
@page {
  size: A4;
  margin: 5px;
}
