﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Google font Icon */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");


/*========================
ヘッダー＆ナビゲーション
========================*/
/*-------------------------
ヘッダーロゴ
--------------------------*/
header {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
header img{
  width: 100%;
  max-width: 320px;
  margin: 36px 0 48px;
}
@media screen and (max-width: 960px) {
header img{
  max-width: 240px;
  margin: 24px 0 32px;
  }
}
@media screen and (max-width: 640px) {
header {
  text-align: left;
  }
header img{
  max-width: 164px;
  margin: 8px 0 12px 18px;
  }
}
@media screen and (max-width: 480px) {
header img{
  margin: 8px 0 12px 18px;
  }
}

/*-------------------------
ナビゲーション
--------------------------*/
header ul{
  width:auto;
  margin: 0 auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:flex-start;
  text-align: center;
  margin-bottom: 32px;
}
header ul li{
  padding: 0.6em 1.5em 0.3em;
  border-right: 1px solid #BBB;
  line-height: 1;
  font-size: 0.95em;
}
header ul li:last-child{
  border-right: 0;
}
header ul li a{
  text-decoration: none;
  font-weight: 500;
  display: block;
}
header ul li span{
  display: block;
  font-size: 0.75em;
  color: #BBB;
  margin: 1em 0 0;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
header ul{
  margin-bottom: 18px;
  }
header ul li{
  padding: 0.6em 1.2em 0.3em;
  font-size: 0.85em;
  }
}
@media screen and (max-width: 640px) {
header ul{
  width: 100%;
  margin-bottom: 0;
  text-align: right;
  display: block;
  flex-direction: column;
  }
header ul li{
  padding: 0 1.6em 2em 0;
  border-right: 0;
  font-size: 1em;
  position: relative;
  }
header ul li:after {
	position: absolute;
  top: 0;
  right: 0;
  font-size: 1em;
  color: #222;
  font-family:"Material Symbols Rounded";
	content: "\e5e1"; /*矢じりのみ矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 200
  }
header ul li span{
  margin: 1.2em 0 0;
  letter-spacing: 0.15em;
  }
}

/* ハンバーガーメニュー */
.hbginput {
  display: none;
}
.hbg_bg {
  position: absolute;
  background-color: #FFF;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 3;
}
#hbg:checked ~ .hbg_bg {
  display: block;
}
.hbgbtn {
  display: none;
}
@media screen and (max-width: 640px) {
header{
  position: sticky;
  top: 0;
  left: 0;
  background-color: #FFF;
  box-shadow: 0px 4px 6px -3px rgba(0,0,0,0.15);
  z-index: 1;
  }
nav{
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  right: 0;
  padding:42px 24px 24px;
  position: absolute;
  transform: translateX(-100%);
  transition: 0.4s;
  top: 100%;
  width: 100%;
  z-index: 5;
  }
#hbg:checked ~ nav {
  transform: translateX(0%);
  transition: 0.4s;
  }
.hbgbtn {
  z-index: 5;
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 24px;
  align-items: center;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 9px;
  height: 32px;
  justify-content: center;
  width: 32px;
  }
.hbgbtnspan {
  background-color: #222;
  display: block;
  height: 1px;
  transition: 0.3s;
  width: 32px;
  }
#hbg:checked ~ .hbgbtn
.hbgbtnspan:nth-of-type(1) {
  transform: translate(2px, 1px) rotate(45deg);
  transform-origin: 0%;
}
#hbg:checked ~ .hbgbtn
.hbgbtnspan:nth-of-type(2) {
  opacity: 0;
  }
#hbg:checked ~ .hbgbtn
.hbgbtnspan:nth-of-type(3) {
  transform: translate(2px, 3px) rotate(-45deg);
  transform-origin: 0%;
  }
}

/* SNSリンクボタン (スマホのみ表示) */
.navsns {
  display: none;
}
@media screen and (max-width: 640px) {
.navsns{
  display: flex;
  margin-top: 18px;
  }
.navsns img{
  width: 100%;
  max-width: 32px;
  margin: 0 12px;
  }
}


/*========================
フッター
========================*/
footer {
  width: 100%;
  padding: 0 32px 24px;
  margin: 0 auto;
  text-align: center;
}
.footlogo{
  width: 100%;
  max-width: 64px;
}
@media screen and (max-width: 640px) {
.footlogo{
  max-width: 48px;
  }
}
footer h1{
  font-size: 0.9em;
  font-weight: 500;
  margin: 12px 0 5px;
}
footer a{
  text-decoration: underline;
  font-weight: 500;
  color: #444;
}

/*電話リンク*/
footer .tel{
  position:relative;
  display: inline-block;
  font-size: 1em;
  padding: 0 0 0 1.3em;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
  letter-spacing: 0.08em;
  margin-top: 0.8em;
}
footer .tel:before{
	position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.1em;
  font-family:"Material Symbols Rounded";
	content: "\e0b0"; /*電話*/
  font-variation-settings:
  'FILL' 1,
  'wght' 300
}

/*メールリンク*/
footer .mail{
  position:relative;
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0 0 1.7em;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
  letter-spacing: 0.08em;
}
footer .mail:before{
	position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.3em;
  font-family:"Material Symbols Rounded";
	content: "\e158"; /*メール*/
  font-variation-settings:
  'FILL' 0,
  'wght' 300
}

/* SNSリンクボタン*/
.footsns{
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:flex-start;
  text-align: center;
  margin-top: 32px;
}
.footsns li{
  border-right: 1px solid #BBB;
  padding: 0 18px;
}
.footsns li:last-child{
  border-right: 0;
}
.footsns li a{
  display: block;
}
.footsns img{
  width: 100%;
  max-width: 32px;
}
@media screen and (max-width: 480px) {
.footsns img{
  max-width: 28px;
  }
}

.copyright {
  font-weight: 300;
  font-size: 0.65em;
  color: #333;
  margin-top: 24px;
}


/*========================
Apro関連リンク
========================*/
.aprolinks {
  width: 100%;
  margin: 0 auto;
  padding: 36px 18px;
  background: #EFEBE4;
}
.aprolinks ul{
  width: auto;
  margin:auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:flex-start;
}
.aprolinks ul li{
  padding: 0 24px;
  border-right: 1px solid #BBB;
}
.aprolinks ul li:last-child{
  border-right: 0;
}
.aprolinks ul li a{
  text-decoration: none;
  color: #444;
  font-weight: 500;
}
.aprolinks ul li h3{
  font-weight: 500;
  font-size: 0.7em;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
.aprolinks {
  padding: 32px 18px;
  }
.aprolinks ul li{
  padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
.aprolinks {
  padding: 32px 18px 15px;
  }
.aprolinks ul{
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 480px;
  }
.aprolinks ul li{
  width: 25%;
  max-width:25%;
  width: calc(100% / 4);
  padding: 0 12px 15px;
  border-right: 0;
  }
}
@media screen and (max-width: 480px) {
.aprolinks {
  padding: 24px 24px 12px;
  }
.aprolinks ul li{
  padding: 0 6px 10px;
  }
.aprolinks ul li h3{
  font-size: 0.65em;
  }
}

/* リンクボタン */
.aprolinks ul li .iconbtn{
  position:relative;
  width:64px;
  height:64px;
  margin: 0 auto;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  cursor:pointer;
  background: #FFF;
  box-shadow: 0px 0px 12px -6px #777777;
  margin-bottom: 8px;
}
.aprolinks ul li .iconbtn img{
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 2.1em;
  height: auto;
}
@media screen and (max-width: 1240px) {
.aprolinks ul li .iconbtn{
  width:52px;
  height:52px;
  }
.aprolinks ul li .iconbtn img{
  width: 1.8em;
  }
}


/*========================
画像バナー群
========================*/
/*横並び２列 → 縦列*/
.bannerimg {
  width:100%;
  max-width: 840px;
  margin: 0 auto;
  padding:0 18px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
  flex-wrap: wrap;
}
.bannerimg li{
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  padding: 0 8px;
}
@media screen and (max-width: 640px) {
.bannerimg {
  display: block;
  flex-direction: column;
  max-width: 420px;
  padding:0 24px;
  }
.bannerimg li{
  width: 100%;
  max-width:100%;
  padding: 0 0 12px;
  }
.bannerimg li:last-child{
  padding: 0 0 0;
  }
}


/*========================
汎用パーツ
========================*/
/*-------------------------
見出し・タイトル
--------------------------*/
/*大英字＋小日本語タイトル*/
.title {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 2.1em;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
  white-space: nowrap;
  color: #333;
}
.title span{
  display: block;
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0.8em 0 32px;
}
@media screen and (max-width: 480px) {
.title {
  font-size: 1.9em;
  }
}

/*-------------------------
アイコン付きテキストリンク
--------------------------*/
/*外部リンク*/
.exlink {
  position: relative;
  display: inline-block;
  color: #222;
  font-weight: 500;
  padding: 0 1.25em 0 0;
  margin: 0 0.25em;
}
.exlink:after{
	position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1em;
  color: #111;
  font-family:"Material Symbols Rounded";
  content: "\e89e"; /*出口矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 400
}

/*-------------------------
ご購入はこちらボタン
--------------------------*/
.buybtn {
	display:inline-block;
  border: 1px solid #5CBCB8;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
	color: #FFF;
	background-color: #5CBCB8;
	text-decoration: none;
	padding: 0.5em 0.7em 0.4em 2.2em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0.2em 0.5em 0.2em 0;
}
.buybtn:before{
	position: absolute;
  top: 52%;
  left: 0.4em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.3em;
  font-family:"Material Symbols Rounded";
	content: "\ea12"; /*お店*/
  font-variation-settings:
  'FILL' 0,
  'wght' 300
}
.buybtn:hover{
	background-color: #FFF;
  color: #5CBCB8;
	transition: 0.3s;
}

/*楽天ボタン*/
.buybtn_rakuten {
	display:inline-block;
  border: 1px solid #BF0000;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
	color: #FFF;
	background-color: #BF0000;
	text-decoration: none;
	padding: 0.5em 0.6em 0.4em 1.8em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0.2em 0.5em 0.2em 0;
}
.buybtn_rakuten:before {
	position: absolute;
  top: 52%;
  left: 0.4em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:1.25em;
  height:1.25em;
  background: url("https://apro-note.com/img/common/icon_rakuten3.png") no-repeat center / contain;
}
.buybtn_rakuten:hover:before{
  background: url("https://apro-note.com/img/common/icon_rakuten2.png") no-repeat center / contain;
	transition: 0.3s;
}
.buybtn_rakuten:hover{
	background-color: #FFF;
  color: #BF0000;
	transition: 0.3s;
}

/*-------------------------
アイコン付き電話リンクテキスト
--------------------------*/
.tel{
  position:relative;
  display: inline-block;
  font-size: 1.3em;
  line-height: 1;
  padding: 0 0 0 1.2em;
  color: #222;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  margin: 0 auto;
  letter-spacing: 0.06em;
}
.tel:before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.1em;
  font-family:"Material Symbols Rounded";
	content: "\e0b0"; /*電話*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}

/*-------------------------
ボタン・テキストリンク
--------------------------*/
/*文末矢印アイコン付きボタン*/
.btn {
	display: inline-block;
	color: #FFF;
	background-color: #48B0AE;
	text-decoration: none;
	padding: 0.8em 2.4em 0.8em 1.2em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0.3em 0.3em 0;
}
.btn:after {
	position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.4em;
  font-family:"Material Symbols Rounded";
	content: "\e5c8"; /*矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 300
}
.btn:hover{
	background-color: #5878B8;
	transition: 0.3s;
}


/*HOMEへ戻るボタン*/
.backbtn {
	display: inline-block;
	color: #333;
	background-color: #FFF;
	text-decoration: none;
  border: 1px solid #555;
	padding: 1em 1.8em 1em 3em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 32px;
}
.backbtn:before {
	position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.2em;
  font-family:"Material Symbols Rounded";
	content: "\e5e0"; /*矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 200
}
.backbtn:hover{
	background-color: #EEE;
}

/*-------------------------
ページ上部へジャンプ
--------------------------*/
#jumptop{
  position:fixed;
  right: 32px;
  bottom:32px;
  z-index: 2;
}
.jumpbtn {
  width:4em;
  height:4em;
  cursor:pointer;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  cursor:pointer;
  background:#444;
  position: relative;
}
.jumpbtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  font-size: 2.4em;
  color: #FFF;
  font-family:"Material Symbols Rounded";
	content: "\e5d8"; /*上向き矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 200
}
@media(max-width:960px){
#jumptop{
  right: 24px;
  bottom:24px;
  }
.jumpbtn {
  width: 3.2em;
  height: 3.2em;
  }
.jumpbtn:before {
  font-size: 2.1em;
  }
}
@media(max-width:640px){
.jumpbtn {
  display: none;
  }
}

/*-------------------------
横並びflexbox
--------------------------*/
/* 幅可変横並び*/
.column {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
}
.column li{
  margin:0 15px 0 0;
}
.column li:last-child{
  margin:0 0 0 0;
}

/* 画像320px ＋ テキスト*/
.column320 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.column320_img {
  max-width: 320px;
  margin: 0 30px 0 0;
}
.column320_text {
  flex: 1;
}
@media screen and (max-width: 1000px) {
.column320_img {
  max-width: 240px;
  margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.column320 {
  flex-direction: column;
  display:block;
  }
.column320_img {
  max-width: 100%;
  margin: 0 0 15px 0;
  text-align: center;
  }
}

/* 均等2列(767px以下で縦列切り替え) */
.col2 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.col2 li{
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  margin:0 30px 0 0;
}
.col2 li:last-child{
  margin:0 0 0 0;
}
@media screen and (max-width: 1000px) {
.col2 li{
  margin:0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.col2 {
  flex-direction: column;
  display:block;
  }
.col2 li {
  width:100%;
  margin:0 0 20px 0;
  }
.col2 li:last-child{
  margin:0 0 0 0;
  }
}

