@charset "UTF-8";

/*====================================
       common.css
======================================*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 15px;
  color: #3E3E3E;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.1rem;
  height: 100%;
  line-height: 2;
  width: 100%;
}

a {
  color: #0066c0;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
　display: inline-block; /* または block */
  word-break: break-all; /* 長いURLなどを途中で折り返す */
  overflow-wrap: anywhere;
}

a:hover {
  text-decoration: none;
  opacity: 0.65;
}

a:active, a:hover {
  outline-width: 0;
}

li {
  list-style: none;
}

figcaption, figure, main {
  display: block;
}

article, aside, footer, header, nav, section, .section {
  display: block;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

canvas {
  display: inline-block;
}

iframe {
  vertical-align: middle;
}

/* form input*/

table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input, select, textarea {
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #CCC;
  outline: none;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: #0066CC;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  padding: 0;
}

address{
	font-style: normal;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #A3A3A3;
  border-right: 2px solid #A3A3A3;
  position: absolute;
  right: 15px;
  bottom: 18px;
  transform: rotate(45deg);
}

select {
  min-width: 7em;
  padding: 11px 10px;
}

input[type=checkbox], input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
  width: auto;
  vertical-align: -5px;
}

button{
	background-color: #0066cc;
}	



/*====================================
       共通使用　CSS
======================================*/


/* 全体のスクロール領域 */
.wrapper {
  overflow-x: hidden;
}


/*　項目ごとの幅 */
.container{
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

/* メインページ */
.main{
	margin-top: 130px;
}

/* ページごとのタイトル部分 */
.title-wrap{
	line-height: 1.2;
	margin: 0px auto 30px;
}

.title-wrap .page-title{
	color: #0066cc;
}

.title-wrap .page-subtitle{
	color: #3e3e3e;
}

@media screen and (max-width: 767px){
	
/* メインページ */
.main{
	margin-top: 80px;
}
	
/* ページごとのタイトル部分 */
.title-wrap{
	line-height: 1.2;
	margin: 0px auto 20px;
}
.title-wrap .page-title{
	font-size: 2.2rem;
}

.title-wrap .page-subtitle{
	font-size: 1.8rem;
}
	
}


/*====================================
       Grid System width Flex
======================================*/


.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: stheimkpiloartie;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-justify-space-evenly {
  -ms-flex-pack: distribute;
  justify-content: space-evenly;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-align-content-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-content: end;
}

@media(max-width: 1300px){
.flex-basic{
	display: block;
}
}
