@charset "utf-8";


/*------------------------------------------------
Variables
------------------------------------------------*/

:root {
  /* Color */
  --primary-color: #0066cc;
  --secondary-color: #00404c;
  --accent-color: #C6EAED;
  --bg-light: #EAEAEA;
  --bg-dark: #616269;
  --primary-text-color: #222222;
  --secondary-text-color: #E1FCFE;
  --emphasis-color: #FB1200;

  /* Layout */
  --header-size-sp: 50px;
  --header-size-pc: 124px;
}

/*------------------------------------------------
基本
------------------------------------------------*/


html {
  font-size: 62.5%;  /* フォントサイズを10pxに設定 */
}

body {
  color: var(--primary-text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;  /* 13px */
  line-height: 2;
  position: relative;
}

@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.5rem;  /* 15px */
  }
}


/*----- コンテンツが少ない場合に、フッターを最下部に固定 -----*/

html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
  min-height: 1%;
}

@media print, screen and (min-width: 769px) {
  body {
    min-height: 100vh;
  }
}


/*----- リンクホバー -----*/
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  /* opacity: .7; */
}

/*----- PCで電話番号リンク無効 -----*/
@media print, screen and (min-width: 769px) {
  a[href^="tel:"] {
    /*    color: inherit;*/
    text-decoration: none;
    pointer-events: none;
  }
}

/*----- イメージ下スペース削除 右クリック禁止 -----*/
img {
  width: 100%;
  vertical-align: middle;
}

/*----- テーブルスタイル削除 -----*/
table {
  border-collapse: collapse;
}

/*----- リストスタイル削除 -----*/
ul, ol {
  list-style: none;
}


/*----- 可変BRタグ -----*/
.br-sp {
  display: inline-block;
}

@media print, screen and (min-width: 667px) {
  .br-sp {
    display: none;
  }
}

.br-tb {
  display: none;
}

@media print, screen and (min-width: 667px) {
  .br-tb {
    display: inline-block;
  }
}

.br-pc {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .br-pc {
    display: inline-block;
  }
}

/*------------------------------------------------
ヘッダー
------------------------------------------------*/
#header {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  pointer-events: none;
}

.header {
  /* background-color: #fff; */
  /* box-shadow: 0 0 50px rgba(0,0,0,0.2); */
}

.header-inner {
  width: 100%;
  height: var(--header-size-sp);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.header-title {
  height: var(--header-size-sp);
  z-index: 10;
  width: 130px;
  pointer-events: auto;
}

.header-title-button {
  display: block;
  height: var(--header-size-sp);
}

.header-title-button > img {
  display: block;
}

@media print, screen and (min-width: 960px) {
  #header {
  }
  .header-inner {
    height: var(--header-size-pc);
  }
  .header-title {
    width: 327px;
    max-width: 327px;
    height: var(--header-size-pc);
  }
  .header-title-button {
    height: var(--header-size-pc);
  }
}

@media print,
screen and (min-width: 1200px) {

}

/*========== ヘッダーナビゲーション ==========*/

/*----- nav-open Style -----*/

body.nav-open {
  /* overflow: hidden; */
  position: fixed;
}

.nav-open .header-nav {
  display: block;
  animation-name: header-nav-fade-in;
  animation-duration: .3s;
  /* background-color: var(--primary-color); */
  /* background-color: var(--secondary-color); */
  background-color: #eee;
}

@keyframes header-nav-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.header-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  pointer-events: auto;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.header-nav-list {
  width: 100%;
  /* height: 100vh; */
  padding: var(--header-size-sp) 25px 15px;
}

.header-nav-item {
  color: #333;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  margin: 10px 0;
  width: 100%;
}

.header-nav-item.header-nav-contact,
.header-nav-item.header-nav-privacy {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}

.header-nav-item > a {
  padding: 7.5px 0;
  display: inline-block;
  width: 100%;
}

@media print, screen and (min-width: 590px) {
  .header-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .header-nav-item {
    width: calc(50% - 20px);
  }
  .header-nav-item > a {
    font-size: 2rem;
  }
  .header-nav-item > a:hover {
    opacity: 0.5;
    transition: 0.3s all ease-in-out;
  }
  .header-nav-item:not(:nth-of-type(n+7)) > a::before {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center center;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .header-nav-item:nth-of-type(n+7) > a::before {
    content: "";
    display: block;
    width: 100%;
    height: 20px;
  }
  .header-nav-item:not(:nth-of-type(2n)){
    margin-right: 40px;
  }
  .header-nav-item:nth-of-type(1) > a::before {
    background-image: url(../../images/common/header_nav_item_01.jpg);
  }
  .header-nav-item:nth-of-type(2) > a::before {
    background-image: url(../../images/common/header_nav_item_02.jpg);
  }
  .header-nav-item:nth-of-type(3) > a::before {
    background-image: url(../../images/common/header_nav_item_03.jpg);
  }
  .header-nav-item:nth-of-type(4) > a::before {
    background-image: url(../../images/common/header_nav_item_04.jpg);
  }
  .header-nav-item:nth-of-type(5) > a::before {
    background-image: url(../../images/common/header_nav_item_05.jpg);
  }
  .header-nav-item:nth-of-type(6) > a::before {
    background-image: url(../../images/common/header_nav_item_06.jpg);
  }
}

@media print, screen and (min-width: 960px) {
  .header-nav-list {
    padding: var(--header-size-pc) 25px 25px;
    width: 80%;
    margin:50px auto 0;
  }
  .header-nav-item {
    width: calc(100% / 3 - 20px);
  }
  .header-nav-item:not(:nth-of-type(2n)){
    margin-right:inherit;
  }
  .header-nav-item:not(:nth-of-type(3n)){
    margin-right: 30px;
  }
}

@media print, screen and (min-width: 1200px) {
  .header-nav-item {
    width: calc(100% / 3 - 40px);
  }
  .header-nav-item:not(:nth-of-type(3n)){
    margin-right: 40px;
  }
}

@media print, screen and (min-width: 1600px) {
  .header-nav-item:not(:nth-of-type(n+7)) > a::before {
    height: 200px;
  }
}


/*========== header-nav-sublist ==========*/

.header-nav-sublist {
  display: flex;
  flex-wrap: wrap;
}

.header-nav-sublist-item {
  padding: 7.5px 15px 7.5px 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
}

.header-nav-sublist-item::before {
  content: "-";
  display: inline-block;
  padding-right: 7.5px;
}

/* @keyframes fade-in {
  from {
    opacity: 0;
    top: 70px;
  }
  to {
    opacity: 1;
    top: 100px;
  }
} */

@media print, screen and (min-width: 590px) {
  .header-nav-sublist-item {
    font-size: 1.5rem;
  }
  .header-nav-sublist-item > a {
    position: relative;
  }
  .header-nav-sublist-item > a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: all 0.25s 0s ease;
  }
  .header-nav-sublist-item > a:hover::after {
    width: 100%;
    transition: all 0.25s 0s ease;
  }
}

/*========== header-contact ==========*/

.header-contact {
  position: relative;
  width: var(--header-size-sp);
  height: var(--header-size-sp);
  margin-left: auto;
  background-color: #fff;
}
.header-contact-button {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  pointer-events: auto;
}

.header-contact-text {
  font-size: 1rem;
  color: var(--secondary-color);
  text-align: center;
}

.header-contact-text::before {
  content: "";
  display: block;
  background-image: url(../../images/common/icon_contact.svg);
  background-size: contain;
  background-position: center center;
  width: calc(var(--header-size-sp) - 30px);
  height: calc(var(--header-size-sp) - 30px);
  margin: auto;
}


@media print, screen and (min-width: 960px) {
  .header-contact {
    width: var(--header-size-pc);
    height: var(--header-size-pc);
  }
  .header-contact-text {
    font-size: 1.65rem;
  }
  .header-contact-text::before {
    width: 50px;
    height: 50px;
    transition: all 0.5s ease;
  }
  .header-contact:hover .header-contact-text::before {
    transform: scaleX(-1);
  }
}


/*========== ナビゲーショントリガー ==========*/

.nav-trigger {
  position: relative;
  width: var(--header-size-sp);
  height: var(--header-size-sp);
  background-color: var(--secondary-color);
  pointer-events: auto;
}

.nav-open .nav-trigger {
  background-color: var(--bg-dark);
}

@media print, screen and (min-width: 960px) {
  .nav-trigger {
    width: var(--header-size-pc);
    height: var(--header-size-pc);
  }
}

/*========== ハンバーガーアイコン ==========*/

.humberger-icon {
  margin: 14px auto 15px;
}

.humberger-icon,
.humberger-icon::before,
.humberger-icon::after {
  display: block;
  position: relative;
  height: 1px;
  background-color: #fff;
  width: 35px;
}

.humberger-icon::before,
.humberger-icon::after {
  content: "";
  position: absolute;
  transition: transform .3s;
}

.humberger-icon::before {
  transform: translateY(-10px);
}

.humberger-icon::after {
  transform: translateY(10px);
  width: 20px;
}

.nav-open .humberger-icon {
  background-color: rgba(255, 255, 255, 0);
}

.nav-open .humberger-icon::before {
  transform: rotate(-45deg);
}

.nav-open .humberger-icon::after {
  transform: rotate(45deg);
  width: 35px;
}

@media print, screen and (min-width: 960px) {
  .humberger-icon,
  .humberger-icon::before,
  .humberger-icon::after {
    width: 54px;
  }
  .humberger-icon::before {
    transform: translateY(-20px);
  }

  .humberger-icon::after {
    transform: translateY(20px);
    width: 34px;
  }
  .nav-open .humberger-icon::after {
    width: 54px;
  }
}


/*========== グローバルナビゲーションオープン時のスクロールロック ==========*/

.no-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------
フッター
------------------------------------------------*/


#footer {
  width: 100%;
}

.footer-inner {
  width: 100%;
  padding: 15px;
}

@media print, screen and (min-width: 960px) {
  #footer {}
  .footer-inner {
    padding: 35px 20px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media print, screen and (min-width: 1200px) {
  .footer-inner {
    padding: 35px 40px;
  }
}

/*========== フッター ==========*/


.footer-title {
  width: 140px;
  margin: auto;
}
.footer-title-button {
  display: block;
}

.footer-address {
  font-size: 1.3rem;
  line-height: 1.8;
  padding: 15px 0;
  text-align: center;
}

.footer-address span {
  display: block;
}

@media print,screen and (min-width: 960px) {
  .footer-title {
    width: 240px;
    margin:0 45px 0 0 ;
  }
  .footer-address {
    font-size: 1.5rem;
    line-height: 1.8;
    width: 355px;
    height: 92px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    margin-right: auto;
    padding: 0;
  }
}

@media print,screen and (min-width: 1200px) {
  .footer-address {
    font-size: 1.6rem;
  }
}

/*========== コピーライト ==========*/

.copyright {
  font-size: 1rem;
  text-align: center;
}

@media print, screen and (min-width: 960px) {
  .copyright {
    font-size: 1.2rem;
    text-align: right;
  }
}

/*------------------------------------------------
ページトップボタン
------------------------------------------------*/

.pagetop-button {

}


@media print, screen and (min-width: 769px) {
}


/*------------------------------------------------
メインコンテンツ
------------------------------------------------*/

.common-inner {
  width: 100%;
}

@media print, screen and (min-width: 960px) {
  .common-inner {
    max-width: 1060px;
    margin: auto;
  }
}


/*------------------------------------------------
ページヘッダー
------------------------------------------------*/
.page-header {
  background-position: center;
  background-size: cover;
  width: 100%;
}

.page-header-inner {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.page-header-title {
  color: #fff;
  width: 100%;
  text-align: center;
}

.page-header-title-en {
  font-size: 1rem;
  font-weight: 400;
  display: block;
}
.page-header-title-jp {
  text-align: center;
  line-height: 1.2;
  font-size: 2.7rem;
  font-weight: 400;
  display: block;
}

/*当社の特長*/
.page-header.features-bg {
  background-image: url(../../images/features/page_header_bg.jpg);
}
/*商品紹介*/
.page-header.product-bg {
  background-image: url(../../images/product/page_header_bg.jpg);
}
/*出荷までの流れ*/
.page-header.flow-bg {
  background-image: url(../../images/flow/page_header_bg.jpg);
}
/*ごあいさつ*/
.page-header.greeting-bg {
  background-image: url(../../images/greeting/page_header_bg.jpg);
}
.page-header.greeting-bg .page-header-inner {
  padding-top: 20%;
}
/*会社情報*/
.page-header.company-bg {
  background-image: url(../../images/company/page_header_bg.jpg);
}
/*採用情報*/
.page-header.recruit-bg {
  background-image: url(../../images/recruit/page_header_bg.jpg);
}
/*スタッフボイス 採用情報*/
.page-header.staff-voice-bg {
  background-image: url(../../images/recruit/staff-voice/page_header_bg.jpg);
}
/*スタッフの１日 採用情報*/
.page-header.oneday-bg {
  background-image: url(../../images/recruit/oneday/page_header_bg.jpg);
}
/*お問合せ*/
.page-header.contact-bg {
  background-image: url(../../images/contact/page_header_bg.jpg);
}
/*プライバシーポリシー*/
.page-header.privacy-bg {
  background-image: url(../../images/privacy/page_header_bg.jpg);
}

@media print, screen and (min-width: 590px) {
  .page-header {
    height: 350px;
  }
  .page-header-inner {
    height: 350px;
  }
}


@media print, screen and (min-width: 960px) {
  .page-header {
    height: 400px;
  }
  .page-header-inner {
    height: 400px;
  }
  .page-header-title-en {
    font-size: 2rem;
  }
  .page-header-title-jp {
    font-size: 4.2rem;
  }
}

@media print, screen and (min-width: 1200px) {
  .page-header {
    height: 500px;
  }
  .page-header-inner {
    max-width: 1060px;
    height: 500px;
    margin: auto;
  }
}

@media print, screen and (min-width: 1600px) {
  .page-header {
    height: 600px;
  }
  .page-header-inner {
    height: 600px;
  }
  /*採用情報*/
  .page-header.recruit-bg {
    background-position: top center;
  }
}

/*------------------------------------------------
page-link
------------------------------------------------*/

.page-link {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.page-link-list {
  display: flex;
}
.page-link-item {
  width: 50%;
  height: 50px;
}
.page-link-item-button {
  display: block;
  width: 100%;
  text-align: center;
}
.page-link-item-button-text {
  height: 50px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
}
.page-link-item .page-link-item-button-text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: all 0.25s 0s ease;
}
.page-link-item:hover .page-link-item-button-text::after {
  width: 100%;
  transition: all 0.25s 0s ease;
}

/*商品紹介*/
/* 2023.8.2追記・修正 */
.page-link.for-product .page-link-list {
  flex-wrap: wrap;
}
.page-link.for-product .page-link-item {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  width: calc(100% / 4);
}
.page-link.for-product .page-link-item:nth-of-type(4),
.page-link.for-product .page-link-item:nth-of-type(8) {
  border-right: none;
}
.page-link.for-product .page-link-item:nth-of-type(n+5) {
  /*width: calc(100% / 3);*/
  border-bottom: none;
}

@media print, screen and (min-width: 1220px) {

  .page-link-list {
    justify-content: center;
  }
  .page-link-item {
    width: auto;
    padding: 0 50px;
    height: 60px;
  }
  .page-link-item-button-text {
    font-size: 2rem;
    height: 60px;
  }
  /*商品紹介*/
  .page-link.for-product .page-link-item {
    padding: 0 30px;
  }
  /*.page-link.for-product .page-link-item:nth-of-type(2),
  .page-link.for-product .page-link-item:nth-of-type(4) {
    border-right: 1px solid #ccc;
  }
  .page-link.for-product .page-link-item:nth-of-type(3) {
    border-right: none;
  }
  .page-link.for-product .page-link-item:nth-of-type(n-3) {
    width: calc(100% / 3);
  }
  .page-link.for-product .page-link-item:nth-of-type(4) {
    width: calc(100% / 4);
    border-bottom: none;
  }
  .page-link.for-product .page-link-item:nth-of-type(n+5) {
    width: calc(100% / 4);
  }*/
}
@media print, screen and (max-width: 660px) {
	.page-link.for-product .page-link-item {
		width: calc(100% / 2);
	}
	.page-link.for-product .page-link-item:nth-of-type(2), 
	.page-link.for-product .page-link-item:nth-of-type(6) {
		border-right: none;
	}
	.page-link.for-product .page-link-item:nth-of-type(5), 
	.page-link.for-product .page-link-item:nth-of-type(6) {
		border-bottom: 1px solid #ccc;
	}
}

/*------------------------------------------------
lead
------------------------------------------------*/

.lead {}

.lead .common-inner {
  padding:50px 25px;
}

.lead-title {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 25px;
}
.lead-text {}

@media print, screen and (min-width: 960px) {
  .lead .common-inner {
    padding: 70px 50px;
  }

  .lead-title {
    text-align: center;
    font-size: 4rem;
  }
}

/*------------------------------------------------
セクションタイトル
------------------------------------------------*/

.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title-en {
  padding-bottom: 15px;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
}
.section-title-jp {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.section-subtitle {
  color: #9A9998;
  padding-top: 10px;
  display: block;
}

@media print, screen and (min-width: 960px) {

  .section-title {
    padding-bottom: 70px;

  }

  .section-title-en {
    font-size: 2rem;
  }
  .section-title-jp {
    font-size: 4rem;
  }
}



/*------------------------------------------------
  CTA
------------------------------------------------*/

.cta {
  color: #FFF;
  text-align: center;
  background-image: url(../../images/common/contact_bg.jpg);
  background-size: cover;
  background-position: center center;
}

.cta-container {
  padding: 50px 30px;
}

.cta-title {
  text-align: center;
  padding: 15px 0;
}

.cta-title-en {
  display: block;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
}

.cta-title-jp {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
}

.cta-text {
  font-size: 1.4rem;
}

.cta-type-box {}

.cta-type {
  padding: 25px 0;
}
.cta-type::before {
  content: "";
  display: block;
  background-size: contain;
  background-position: center center;
  width: 50px;
  height: 50px;
  margin:0 auto 15px;
}
.cta-type.type-form::before {
  background-image: url(../../images/common/icon_form.svg);
}
.cta-type.type-tel::before {
  background-image: url(../../images/common/icon_tel.svg);
}
.cta-type.type-access::before {
  background-image: url(../../images/common/icon_access.svg);
}

.cta-type.type-form {}

.cta-type.type-tel {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.cta-type.type-access {}

.cta-type-title {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}
.cta-type-text {
  margin: 25px 0;
}

.cta-type-way {
  width: 100%;
  height: 55px;
}

.cta-type-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.cta-type.type-form .cta-type-button,
.cta-type.type-access .cta-type-button {
  color: #000;
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  transition: background-color ease-in-out 0.3s;
}

.cta-type.type-form .cta-type-button::before ,
.cta-type.type-access .cta-type-button::before {
  content: '';
	position: absolute;
	top: 0;
	left: -75%;
  width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
.cta-type.type-form .cta-type-button:hover,
.cta-type.type-access .cta-type-button:hover {
  color: #fff;
  background-color: #000;
  transition: background-color ease-in-out 0.3s;
}
.cta-type.type-form .cta-type-button:hover::before,
.cta-type.type-access .cta-type-button:hover::before {
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}


.cta-type.type-tel .cta-type-button {
  color: #ffffff;
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  line-height: 1;
}


@media print, screen and (min-width: 960px) {
  .cta {
    text-align: center;
  }
  .cta-container {
    max-width: 1160px;
    margin: auto;
    padding: 50px 0;
  }

  .cta-title-en {
    font-size: 5rem;
  }

  .cta-title-jp {
    font-size: 2.2rem;
  }
  .cta-text {
    font-size: 1.6rem;
  }
  .cta-type-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
  }
  .cta-type {
    width: calc(100% / 3 - 2px);
    padding:15px 25px;
  }
  .cta-type.type-tel {
    border-top: none;
    border-bottom: none;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .cta-type-way {
    max-width: 250px;
    margin: auto;
  }
}
