@charset "utf-8";

/*-----------------------------------------------------------------
	基本
-----------------------------------------------------------------*/

* { margin: 0; padding: 0; box-sizing: border-box; word-wrap: break-word; overflow-wrap: break-word;}
ul,ol {list-style: none;}

table {
  border-collapse: separate;
  border-spacing: 0;
}

input[type="text"], button, textarea, input[type="submit"], input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "Arial", sans-serif;
    background-color: #fff;
    border: #ddd 2px solid;
    border-radius: 5px;
    letter-spacing: .05em;
    box-sizing: border-box;
}

input[type="text"], button, input[type="submit"], input[type="number"] {
    padding: 0 8px;
}

input[type="text"], textarea, input[type="submit"], input[type="number"] {
    font-size: 113%;
    height: 40px;
}

input[type="number"] {
  width: 100%;
  min-width: 0;
}

input::-moz-focus-inner, button::-moz-focus-inner {
    border: 0;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
    position: relative;
    background-color: #fff;
    border: 2px solid #999;
    font-weight: 600;
    width: 22px;
    height: 22px;
    padding: 0;
    margin-right: 8px;
    display: inline-block;
    border-radius: 3px;
    vertical-align: middle;
}

input[type="checkbox"]::before,
input[type="radio"]::before {
    content: "";
    display: block;
    position: absolute;
}

input[type="checkbox"]::before,
input[type="radio"]::before {
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    display: none;
    height: 6px;
    width: 10px;
    top: 3px;
    left: 3px;
    transform: rotate(-45deg);
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: #448fe4 !important;
    color: #fff;
    border: #448fe4 2px solid;
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
    display: inline-block;
}

button {
    width: auto;
    user-select: none;
    cursor: pointer;
}

textarea {
    resize: vertical;
    width: 100%;
    min-height: 200px;
    padding: 10px;
}

.wmax { width: 100%;}
.w90p{ width: 90%;}
.w80 { width: 80px!important;}
.w150 { width: 150px!important;}

/*-----------------------------------------------------------------
	link
-----------------------------------------------------------------*/

a {
  color: #007fa6;
  text-decoration: none;
  outline: none;
  transition : 0.5s;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

/* 無効 */
a.disabled{
  pointer-events: none;
  color: #aaa;
  opacity: 0.5;
}

a[href^="javascript:void(0)"] {
	cursor: default;
}

a.out_link::after {
    content: "";
    background: url(../images/icon_olink.png) no-repeat;
    background-size: contain;
    width: 15px;
    height: 10px;
    display: inline-block;
    margin-left: 3px;
}

a.all_link {	
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	z-index: 100;
  transition : 0.5s;
}

a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/* SP */
@media only screen and (max-width: 768px) {

a[href^="tel:"] {
	pointer-events: inherit;
}

a[href*="tel:"] {
    pointer-events: inherit;
    cursor: pointer;
}

}

/*-----------------------------------------------------------------
	レスポンシブ用
-----------------------------------------------------------------*/

/*-----------------------------------------------------------------
	共通CSS
-----------------------------------------------------------------*/

html {
	height: 100%;
	background: #fff;
	color: #251d1d;
	overflow-y: auto;
	padding: constant(safe-area-inset-right); 
	padding: constant(safe-area-inset-bottom); 
	padding: constant(safe-area-inset-left); 
	padding: constant(safe-area-inset-top); 
}

body {
  width: 100%;
  height: 100%;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

img {
	max-width: 100%;
	height: auto;
	border:0;
	vertical-align: bottom;
}

.inner {
	width: 90%;
  max-width: 1100px;
	margin: auto;
}

.inner_wide {
  max-width: 1500px;
}

.line { border: #ddd 1px solid;}

.under { text-decoration: underline;}

.no_disp { display: none;}

.indent {
  padding-left:1em;
	text-indent:-1em;
}

.inline_b {
  display: inline-block;
}

.pos-re { position: relative;}

/* align */
.a_center { text-align: center!important;}
.a_left { text-align: left!important;}
.a_right { text-align: right!important;}

.small_txt {
  font-size: 88%;
}

.big_txt {
  font-size: 133%;
}

.txt18 { font-size: 18px;}

.mb10 { margin-bottom: 10px!important;}
.mb20 { margin-bottom: 20px!important;}
.mb30 { margin-bottom: 30px!important;}
.mb40 { margin-bottom: 40px!important;}
.mb60 { margin-bottom: 60px!important;}
.mt5 { margin-top: 5px!important;}
.mt10 { margin-top: 10px!important;}
.mt20 { margin-top: 20px!important;}
.mt40 { margin-top: 40px!important;}
.mt60 { margin-top: 60px!important;}

span.br {
  display: inline-block;
}

.mauto { margin-left: auto!important; margin-right: auto!important;}

.color_btn {
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: block;
    background-color: #007fa6;
    border: #007fa6 1px solid;
    border-radius: 10px;
    color: #fff;
    font-size: 113%;
    font-weight: bold;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: 0.5s;
}

.color_btn:hover {
  background-image: none;
  background-color: #fff;
  color: #007fa6;
  border: #007fa6 1px solid;
}

.color_btn:hover::after {
  border-left: 8px solid #007fa6;
}

@media only screen and (max-width: 1280px) {

.inner {
	width: 90vw;
}

}

@media only screen and (max-width: 550px) {

  .color_btn {
    max-width: 400px;
    padding: 20px 20px;
  }

}

/*-----------------------------------------------------------------
	font
-----------------------------------------------------------------*/

body,
button {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;  
    font-style: normal;
    -webkit-text-size-adjust: none;
    letter-spacing: -0.02em;
    line-height: 1; 
}

p { line-height: 1.8em;}

.Medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  
  body,
  button {
      font-size: 15px;
      font-weight: 500; 
  }

  p { line-height: 1.8em;}

}

/*-----------------------------------------------------------------
	flex
-----------------------------------------------------------------*/

.flex {	
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex_left { justify-content: flex-start;}
.flex_right { justify-content: flex-end;}

.flex_top { align-items: flex-start;}

/*-----------------------------------------------------------------
	color
-----------------------------------------------------------------*/

.white_txt { color: #fff!important;}
.red_txt { color: #f90000!important;}
.main_txt { color: #007fa6!important;}
.gray_txt { color: #606060!important;}

.white_bg { background-color: #fff;}

/*-----------------------------------------------------------------
	main
-----------------------------------------------------------------*/

#main {
  width: 100%;
	background: #f7f9fa;
  position: relative;
  padding: 0 0 50px;
}

/*-----------------------------------------------------------------
	header
-----------------------------------------------------------------*/

#header {
  width: 100%;
	background: #f7f9fa;
}

/*-----------------------------------------------------------------
	footer
-----------------------------------------------------------------*/

#pagetop {
	display: none;
}

#pagetop {
	width: 60px;
	height: 60px;
  	background: #007fa6;
	border-radius: 50%;
	border: #eee 2px solid;
	position: fixed;
	bottom: 30px;
	right: 30px;
	text-align: center;
	z-index: 1000;
  transition:all 0.3s;
  cursor: pointer;
}

#pagetop::before{
  content: '';
  width: 15px;
  height: 15px;
  margin-top: -5px;
  border-top: solid 4px #fff;  
  border-right: solid 4px #fff; 
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 18px;
  pointer-events: none;
}

#pagetop a {
	width: 100%;
	height: 100%;
  display: block;
}

#footer {
  background-color: #fff;
  padding: 20px;
}

.footer_bar {
  margin-top: 50px;
  padding: 20px 20px 40px;
  text-align: center;
}

.copy {
  font-size: 12px;
  font-weight: bold;
  color: #aaa;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  
  #pagetop {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }

  #pagetop::before{
    width: 12px;
    height: 12px;
    right: 15px;
  }

}

/*-----------------------------------------------------------------
	共通
-----------------------------------------------------------------*/

h1 {
  text-align: center;
  font-size: 133%;
  line-height: 1.6em;
  padding: 30px 0;
}

h1 img {
  margin-bottom: 10px;
}

h1 p {
  display: inline-block;
  font-size: 77%;
  background-color: #dcf1fc;
  line-height: 1em;
  padding: 7px 20px 10px;
}

.section_contents .inner {
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
}

.err_mess {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 10px;
  color: #f90000;
  padding: 3px 5px;
  border-radius: 3px;
  background: #ffe9e9;
  font-size: 77%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  line-height: 1.4em;
}

.err_mess::before {
    font-family: "Material Icons";
    content: "\e000";
    font-size: 113%;
    font-weight: 400;
    margin-right: 3px;
}

.err_mess:empty {
    margin: 0;
    padding: 0px;
    background: none;
}

.err_mess:empty::before {
  display: none;
}

@media only screen and (max-width: 768px) {
  
  .err_mess {
    font-size: 100%;
    padding: 5px 5px;
  }

}

@media only screen and (max-width: 550px) {
  
  .section_contents .inner {
    padding: 20px 15px;
  }

}

/*-----------------------------------------------------------------
	login
-----------------------------------------------------------------*/

.login_contents {
  text-align: center;
}

.login_contents .inner {
  padding-bottom: 60px;
}

.login_label {
  width: 100%;
  max-width: 500px;
  text-align: left;
  margin: auto;
  color: #777;
  font-size: 88%;
  font-weight: bold;
}

input.login_input[type="text"],
input.login_input[type="password"] {
  width: 100%;
  max-width: 500px;
  font-size: 150%;
  height: 70px;
  padding: 5px 15px;
  border-radius: 5px;
  text-align: left!important;
  border: #007fa6 3px solid;
}

input.login_input[type="text"]::placeholder,
input.login_input[type="password"]::placeholder {
  color: #ccc;
  text-align: left;
}

@media only screen and (max-width: 550px) {
  
  .login_contents .inner {
    padding-bottom: 40px;
  }
  
  .login_contents .inner p {
    font-size: 88%;
  }
  
  .login_label {
    max-width: 400px;
  }
  
  input.login_input[type="text"],
  input.login_input[type="password"] {
    max-width: 400px;
    height: 50px;
    font-size: 133%;
    padding: 5px 15px;
  }

}

/*-----------------------------------------------------------------
	印刷用
-----------------------------------------------------------------*/

@media print {
}