@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Noto+Sans+JP:wght@400;700&display=swap');

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# html5reset-1.6.1の追加設定
# common module
  ## 文字設定 / 見出し設定
  ## リンク設定
  ## メディア別表示切り替え設定
  ## ボタン設定
  ## アコーディオン設定
  ## アニメーションキーフレーム
  ## modal表示設定
# Contents
----------------------------
# Body
# Header
# section1
# section2
# section3
# section4
# NAS総合トップへ
# Footer
--------------------------------------------------------------*/



/*===============================================================

# html5reset-1.6.1の追加設定

===============================================================*/

/*--- iOSでのデフォルトスタイルをリセット -------------------------*/
input[type=text],
input[type=email],
input[type=number],
textarea {
    border : 1px solid #ccc;
    -webkit-border-radius : 0;
    -webkit-appearance : none;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*--- box-sizing追加 -------------------------*/

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/*--- add original ---------------------*/

img {
	vertical-align: top;
	width: 100%;
	height: 100%;
	
}

ul {
    list-style:none;
}

.clearfix::after {
    content:"";
    display:block;
    clear:both;
}

.clear-both {
	clear: both;
}

/*スマホでボタンをクリックした際の青枠を消す*/
*:focus {
  outline: none;
}


/*===============================================================

# common module

===============================================================*/


/*　## 文字設定 / 見出し設定
--------------------------------------------------------------*/

html {
    font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 1.6rem;/*16px*/
	color: #222;
	line-height: 1.8;
	letter-spacing: 0.1rem;
	margin: 0;
}
	@media screen and (max-width: 767px) {
		body {
			font-size: 1.3rem;/*13px*/
			margin: 0;
		}
	}

/*見出し スタイル*/
h1,h2,h3,h4,h5,h6 {
	line-height: 1.0;
}

/*
h1 {
	font-size: 10.2rem;
	font-family: "Montserrat",sans-serif;
	font-weight: 700;
	letter-spacing: 0;
}
	@media screen and (max-width: 767px) { 
	h1 {
	font-size: 5.6rem;
		}
	}
*/

/*　## リンク設定
--------------------------------------------------------------*/

a {
	font-weight: 700;
	color: #4e3fc1;
	text-decoration: underline;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	cursor:pointer;
}

a:hover {
	color: #4e3fc1;
	text-decoration: none;
}



/*===================================================

  # main

---------------------------------------------------*/
.option-info {
	width: 960px;
	margin: 0 auto;
}
.option-info img {
	width: 100%;
}
	
	@media screen and (max-width: 1024px) {
		.option-info {
			width: 100%;
			margin: 0 auto;
		}
		.option-info img {
			width: 100%;
		}
		
}
	@media screen and (max-width: 767px) {
		.option-info {
			width: 100%;
			margin: 0 auto;
		}
		.option-info img {
			width: 100%;
		}
	}
/*===================================================

  # NAS総合サイトへ

---------------------------------------------------*/

.footer--induction {
	width: 100%;
	padding: 50px;
}
	@media screen and (max-width: 767px) {
	.footer--induction {
	padding: 50px 5%;
		}
	}


/*===================================================

  # footer

---------------------------------------------------*/

footer {
	color:#4d4d4f;
	width: 100%; 
	padding: 15px 32px 15px;
	border-top: solid 1px #ccc;
}
	@media screen and (max-width: 1024px) {
	footer {
	border-top: none;
	padding: 0 0 15px;
		}
	}

.footer__inner {
	margin:0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
	@media screen and (max-width: 1024px) {
	.footer__inner {
	width: 100%;
	display: block;
		}
	}

.footer__box {
	width: calc( calc(100% - 3%) / 2 );
}
	@media screen and (max-width: 1024px) {
	.footer__box {
	width: 100%;
		}
	}

.footer__box.group {
	display: flex;
	align-items: center;
}
.footer__box.group .footer__box__L__logo {
	width: 80px;
	height: 70px;
}

	@media screen and (max-width: 1024px) {
		.footer__box.group {
			width: 100%;
			flex-direction: column;
			justify-content: center;
			}
		.footer__box.group .footer__box__L__logo {
			margin-bottom: 20px;
			}
		}

.footer__box a {
	font-weight: 400;
	color: #4D4D4F;
	text-decoration: none;
}

.footer__box__L__txt {
	font-size: 1.3rem;
	vertical-align: middle;
	margin-left: 15px;
	display: inline-block;
}
	@media screen and (max-width: 1024px) {
	.footer__box__L__txt {
	font-size: 1.2rem;
	color: #6c6c6c;
	display: block;
	width: 100%;
	background: #dfdfdf;
	margin-left: 0;
		}
	}

.footer__box__L__list {
	display: flex;
	padding-left: 0;
	margin: 0;
}
	@media screen and (max-width: 1024px) {
	.footer__box__L__list + .footer__box__L__list {
	border-top: solid 1px #c5c5c5;
		}
	}

.footer__box__L__list li{
	display: inline;
	margin-bottom: 3px;
}
	@media screen and (max-width: 1024px) {
	.footer__box__L__list li{
	text-align: center;
	width: 50%;
	padding: 10px 0;
	margin-bottom: 0;
	display: block;
		}
	}

.footer__box__L__list li:nth-child(2)::before {
	content: '|';
	padding: 0 10px;
}
	@media screen and (max-width: 1024px) {
	.footer__box__L__list li:nth-child(2){
	border-left: solid 1px #c5c5c5;	
		}
	.footer__box__L__list li:nth-child(2)::before {
	content: '';
	padding: 0;

		}
	}

.footer__box__R__logo {
	text-align: right;
	margin-top: 0px;
}
	@media screen and (max-width: 1024px) {
	.footer__box__R__logo {
	text-align: center;
	margin: 15px 0 5px;
		}
	}

.footer__box__R__logo img {
	width: 176px;
	vertical-align: middle;
}
	@media screen and (max-width: 1024px) {
	.footer__box__R__logo img {
	width: 50%;
		}
	}

.footer__box__R__txt {
	font-size: 1.3rem;
	text-align: right;
}
	@media screen and (max-width: 1024px) {
	.footer__box__R__txt {
	font-size: 1.1rem;
	text-align: center;
		}
	}

/* end
----------------------------------------------------------- */

