@charset "UTF-8";

/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
ol, ul {
    list-style: none;
}
:focus {outline: 0;}
.clearfix::before {
	display: table; content: " ";
}
.clearfix::after {
	display: table; content: " ";
}
.clearfix::after {
	clear: both;
}
.clearfix {

}
.fixed {
	top: 0px; position: fixed;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
}
body {
	font-size: 1.6rem;/* 16px★ */
	line-height: 2rem;
	padding: 3em 0px 0px;
	overflow-x: hidden !important;
  line-height: 1.7;
  color: #333;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}
.centerblock{
	display:block;
	margin-left:auto;
	margin-right:auto;
}

/* ★全体
------------------------------------------------------------*/
/* ========== BASE STYLES (モバイルファースト) ========== */
a {
  color: #0078D4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* セクション共通 */
section[class^="wrap"] {
  padding: 2em 1.2em;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
}
  section[class^="wrap"] img{
  margin:10px auto 50px auto;
  }



/* 背景カラー（wrap01〜wrap11） */
.wrap01 { background-color: #f9f9f9; }
.wrap02 { background-color: #f1f5fb; }
.wrap03 { background-color: #fdf7f0; }
.wrap04 { background-color: #f3faf5; }
.wrap05 { background-color: #fff8f8; }
.wrap06 { background-color: #eef6fc; }
.wrap07 { background-color: #fefcf3; }
.wrap08 { background-color: #faf5ff; }
.wrap09 { background-color: #f8fff5; }
.wrap10 { background-color: #fffdf2; }
.wrap11 { background-color: #f5f5ff; }
.wrap12 {
	background-color: #FFF8D9;
}



/* 見出し */
section h2 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #005a9e;
  margin-bottom: 1em;
  border-left: 6px solid #0078D4;
  padding-left: 0.8em;
  background: linear-gradient(to right, #eaf4ff 0%, transparent 100%);
}

section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-top: 2em;
  margin-bottom: 0.6em;
  border-bottom: 2px solid #0078D4;
  padding-bottom: 0.3em;
    line-height: 1.0;
}

/* タイトル（h4） */
h4 {
  font-size: 1.2rem;
  color: #0078D4;
  margin-bottom: 0.4em;
  font-weight: 700;
}

@media screen and (min-width: 769px) {
h4 {
    font-size: 1.5rem;
  }
}



/* 段落 */
section p {
  margin-bottom: 1.2em;
}

/* CTAボタン */
.cta-btn,
.cta-box a {
  display: inline-block;
  background-color: #0078D4;
  font-size:1.5rem !important;
  color: #fff;
  font-weight: bold;
  padding: 0.9em 1.8em;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}
.cta-btn:hover {
  background-color: #005fa3;
}
/* CTAの最後、BASEへのリンクボタン */
.cta-btn-large,
.cta-box-large a {
  display: inline-block;
  background-color: #4CAF50;
  font-size:1.5rem !important;
  color: #fff;
  font-weight: bold;
  padding: 1.0em 2.0em;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}
.cta-btn-large::after {
  content: ' ＞';
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  margin-left: 1.5em;
  display: inline-block;
}
.cta-btn-large:hover {
  background-color: #56a259;
}
/* CTAの、よくある質問のリンクボタン */
.cta-btn-contact,
.cta-box-contact a {
  display: inline-block;
  background-color: #f86600e3;
  font-size:1.6rem !important;
  color: #fff;
  font-weight: bold;
  padding: 1.1em 2.0em;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}
.cta-btn-contact:hover {
  background-color: #de6816;
}


/* CTAボックス共通 */
.cta-box, .cta-box-large, .cta-box-contact{
  margin-top: 2em;
  padding: 1.5em;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


/* ========== DESKTOP STYLES (769px〜) ========== */
@media screen and (min-width: 769px) {

  section[class^="wrap"] {
    padding: 4em 2em;
  }

  section h2 {
    font-size: 2rem;
  }

  section h3 {
    font-size: 1.6rem;
  }

  section p {
  }

  .cta-btn,
  .cta-box a {
    font-size: 1.1rem;
    padding: 1em 2.2em;
  }
}


.reason-num {
    color: #0078d4;
    font-weight: bold;
  font-size: 4.0rem;
  vertical-align: baseline;
    padding: 0px 0px 0px 3px;
    margin: 0px 0px 0px 0px;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    /* フチドリ効果 */
text-shadow:
  -2px -2px 0 #ff0,
   2px -2px 0 #ff0,
  -2px  2px 0 #ff0,
   2px  2px 0 #ff0;

}



/* === ファーストビューセクション with 背景画像 === */
.fv {
  background: linear-gradient(to bottom right, rgba(0, 120, 212, 0.7), rgba(0, 90, 158, 0.8)),
              url("img/header01.jpg") center center / cover no-repeat;
  background-blend-mode: multiply;
  color: #ffffff;
  text-align: center;
  padding: 3.5em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  min-height: 80vh;
}

/* 見出し */
.fv h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.25);
}

/* 段落 */
.fv p {
  margin-bottom: 1.2em;
  line-height: 1.6;
}

/* CTAボタン */
.fv .cta-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #0078D4;
  font-weight: bold;
  padding: 0.9em 2em;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}
.fv .cta-btn:hover {
  background-color: #e3f0fc;
  color: #005fa3;
}

/* === デスクトップ向け調整 === */
@media screen and (min-width: 769px) {
  .fv {
    padding: 6em 2em;
    min-height: 85vh;
  }

  .fv h1 {
    font-size: 2.8rem;
  }

  .fv p {
  }

  .fv .cta-btn {
    font-size: 1.2rem;
    padding: 1em 2.5em;
  }
}




/* フッター */
.footer {
  background-color: #f5f5f5;
  color: #666;
  font-size: 0.9rem;
  padding: 2em 1em;
  text-align: center;
}
.footer a {
  color: #0078D4;
  margin: 0 0.5em;
}

@media screen and (min-width: 769px) {
  .footer {
    font-size: 1rem;
  }
}








/* ★パーツ
------------------------------------------------------------*/

/* 上部に戻るボタン */
.back-to-top {
  position: fixed;
  right: 1em;
  bottom: 1em;
  background-color: #666;
  color: #fff;
  font-size: 1.2rem;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 999;
}

/* お問い合わせボタン */
.contact-fix-button {
  position: fixed;
  right: 1em;
  bottom: 4.5em;
  background-color: #f86600e3;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.7em 1.2em;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 999;
}
/* 注文するボタン */
  .order-fix-button {
  position: fixed;
  right: 1em;
  bottom: 9em;
  background-color: #4CAF50;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.7em 1.2em;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 999;
}
  
  
  
  
/* === PC・タブレット拡張（769px以上） === */
@media screen and (min-width: 769px) {

  /* .back-to-top */
  .back-to-top {
    right: 2em;
    bottom: 2em;
    font-size: 1.5rem;
    width: 3.2rem;
    height: 3.2rem;
    line-height: 3.2rem;
  }

  /* .contact-fix-button */
  .contact-fix-button {
    right: 2em;
    bottom: 6em;
    font-size: 1.05rem;
    padding: 0.8em 1.6em;
  }
  /* .contact-fix-button */
  .order-fix-button{
    right: 2em;
    bottom: 10em;
    font-size: 1.05rem;
    padding: 0.8em 1.6em;
  }
}


/* === 利用者の声セクション === */
.voice-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5em;
  text-align: center;
}

.voice-block .voice-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0;
}

.voice-block .voice-text h3 {
  margin-top: -6px;
  margin-bottom: 0.5em;
  color: #333;
}

.voice-block .voice-text p {
  color: #555;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

/* デスクトップ：横並びレイアウト */
@media screen and (min-width: 769px) {
  .voice-block {
    flex-direction: row;
    text-align: left;
    gap: 1.5em;
    align-items: flex-start;
  }

  .voice-block.reverse {
    flex-direction: row-reverse;
  }

  .voice-block .voice-img img {
    width: 200px;
    height: 200px;
    margin-bottom: 0;
  }

  .voice-block .voice-text {
    flex: 1;
  }

  .voice-block .voice-text h3 {
    margin-top: 0.2em;
  }

  .voice-block .voice-text p {
  }
}






/* お問い合わせ
------------------------------------------------------------*/
.mailform {
	font-size: 1.6rem;
	line-height: 2.0rem;
}
/* 可変 */
.kahen {
	width: 100% !important;
	border: 1px solid #CCC;
	padding: 5px 0 5px 10px;
	border-radius: 10px;
}
@media screen and (min-width: 768px) {
.kahen {
	width: 70% !important;
	border: 1px solid #CCC;
	padding: 5px 0 5px 10px;
	border-radius: 10px;
}
}
.contactform {
    margin: 0 auto 20px auto;
    max-width: 1140px;
    width: 100%;
}
@media only screen and (min-width: 769px) {
.contactform {
    margin-left: 50px;
}
}
.contactform dl dt {
    float: none;
    width: auto;
    padding: 5px;
    text-align: left;
    clear: both;
    border-top: solid 1px #CCC;
    margin: 0px;
}
.contactform dl dd {
    border-top: none;
    margin: 0px;
    padding: 5px 15px;
    text-align: left;
    line-height: 1.5em;
    display: flex;
    flex-wrap: wrap;
}
.contactform label {
    border-radius: 3px;
    margin: 3px;
    display: inline-block;
    white-space: nowrap;
}
.contactform label {
    margin: 5px 20px 0px 0px;
	width:210px;
}

@media screen and (min-width: 801px) {
.contactform dl dt {
    float: left;
    width: 30%;
    padding: 10px 10px 10px 0px;
}

.contactform dl dt.mar {
    float: left;
    width: 30%;
    padding: 10px 10px 5px 0px;
}

.contactform dl dd {
    width: 60%;
    clear: none;
    border-top: solid 1px #CCC;
    padding: 10px 5px 20px 24px;
    display: flex;
    flex-wrap: wrap;
}
.contactform dl dd.noline {
    width: 60%;
    clear: none;
    border-top: none;
    padding: 10px 5px 20px 24px;
    display: flex;
    flex-wrap: wrap;
}
}


.contact-submit{
	display:block;
	margin:5px auto 70px auto;
	text-align:center
	}











.mustbtn {
	display: block;
	background-color: #C00;
	border: solid 2px #C00;
	text-shadow: 0px 1px 2px #933;
	padding: 0px 2px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-size: 100% 100%;
}
.submit_btn {
	margin: 0 auto 30px auto;
	text-align: center;
	;
}
.submit-button {
	background-color: #f86600; /* 緑色の背景 */
	color: white; /* テキストの色を白に */
	padding: 10px 50px; /* パディングでボタンの大きさを調整 */
	border: none; /* ボーダーを無くす */
	border-radius: 5px; /* 角を丸く */
	cursor: pointer; /* カーソルをポインターに */
	font-size: 16px; /* フォントサイズを調整 */
	transition: background-color 0.3s; /* 背景色の変化にアニメーションをつける */
}
.submit-button:hover {
	background-color: #de6816; /* ホバー時の背景色を少し暗く */
}

/*-------------------関連情報-----------------------------*/
.kanren_box {
    margin: 10px auto 10px auto;
      color: #111;

}
 @media screen and (min-width: 768px) {
 .kanren_box summary {
 width:600px;
}
}

.kanren_box details {
	margin: 0px 0 0px 0px;
}
.kanren_box summary {
	margin: 0px auto 10px auto;
    text-align:left;
}
 @media screen and (min-width: 768px) {
 .kanren_box summary {
 width:200px;
}
}



/* ポリシー*/
.policy {
	padding: 0;
	width: 90%;
	margin-left: 10px;
	margin-bottom: 30px;
    text-align:left;
}
dl {
	margin: 10px auto ;
	width: 80%;
}
.policy dt {
	color: #039;
	background-color: #f2f2f2;
	padding: 3px 0 3px 10px;
	margin: 10px 0 5px 0;
}
.policy dd {
	padding: 10px 0 20px 20px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #d6d6d6;
}
.policy ol {
	padding-left: 35px;
}
.policy ul {
	padding-left: 35px;
}
/*-------------------会社概要-----------------------------*/
.gaiyoutable {
	border: 1px #356aa0 solid;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 10px auto ;
	width: 80%;
	text-align:left;

}
.gaiyoutable th {
	padding: 15px 15px 0px 5px;
	font-weight: bold;
	display: block;
	color: #FFF;
	background: #5085bb;
}
.gaiyoutable td {
	padding: 15px;
	border: 1px #356aa0 solid;
	border-width: 0 0 1px 1px;
	display: block;
}
 @media screen and (min-width: 768px) {
.gaiyoutable th {
	padding: 15px;
	border: #356aa0 solid;
	border-width: 0 0 1px 1px;
	font-weight: bold;
	white-space: nowrap;
	display: table-cell;
	width: 20%;
}
.gaiyoutable td {
	padding: 15px;
	border: 1px #356aa0 solid;
	border-width: 0 0 1px 1px;
	display: table-cell;
}
}





/* 商品セクション全体：スマホファースト（縦並び） */
.item-block {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5em;
  margin: 2em auto;
  text-align: center;
}

/* テキストエリア */
.item-details {
  margin-bottom: 1.5em;
}

/* タイトル（h4） */
.item-details h4 {
  font-size: 1.2rem;
  color: #0078D4;
  margin-bottom: 0.4em;
  font-weight: 700;
}

/* 価格表示 */
.item-price {
  font-size: 1.1rem;
  color: #d22;
  font-weight: bold;
  margin-bottom: 1em;
}

/* 注文ボタン */
.cta-btn-large {
  display: inline-block;
  background-color: #4CAF50;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  padding: 0.8em 1.6em;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
  margin-bottom: 1em;
}
.cta-btn-large:hover {
  background-color: #45a049;
}

/* 注意書き（やや小さめ） */
.item-note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5em;
}

/* 商品画像 */
.item-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

/* PC表示用（中央寄せ・横並び） */
@media screen and (min-width: 769px) {
  .item-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2em;
    max-width: 680px !important; /* ←中央寄せ用の最大幅指定 */
    padding: 2em;
  }

  .item-details {
    flex: 1;
    max-width: 440px; /* ←説明エリアを抑えて間延び防止 */
    text-align: left;
  }

  .item-image {
    flex-shrink: 0;
  }

  .item-img {
    max-width: 260px;
  }

  .item-details h4 {
    font-size: 1.5rem;
  }

  .item-price {
    font-size: 1.3rem;
  }

  .cta-btn-large {
    font-size: 1.3rem;
    padding: 1em 2em;
  }

  .item-note {
    font-size: 1rem;
  }
}

.item_list{
text-align:left;
list-style:disc;
margin:0px 0px 0px 20px;
}



/* ★サンプルダウンロードページ
------------------------------------------------------------*/




.download-section {
  text-align: center;
  margin: 20px 0;
}

.microcopy {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.download-btn {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 5px 0 10px 10px;
  width: 220px;
}

.download-btn:hover {
  background-color: #005fa3;
}

.download-btn:active {
  background-color: #004d80;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2) inset;
}




.note {
	padding: 10px 15px;
	margin: 20px 0;
	font-size: 1.2rem;
	background-color: #FFFFE1;
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #FFFF00;
}










/* ★ページ
------------------------------------------------------------*/


@media screen and (min-width: 768px) {
}
