@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: collapse;}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

/*-----------------------------------------------------------------
	anime
-----------------------------------------------------------------*/

.fadein {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*-----------------------------------------------------------------
	link
-----------------------------------------------------------------*/

a {
  color: #666;
  text-decoration: none;
  outline: none;
  transition : 0.5s;
}

a:hover {
  color: #002266;
  transition : 0.5s;
}

/* 無効 */
a.disabled{
  pointer-events: none;
  color: #aaa;
  opacity: 0.5;
}

a[href^="javascript:void(0)"] {
	cursor: default;
}

a.all_link {	
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	z-index: 100;
  transition : 0.5s;
}

a:hover.all_link {	
	background: rgba(255,255,255,0.2);
  transition : 0.5s;
}

a.anchor{
    display: block;
}

a.under {
	text-decoration: underline;
}

a.bg_link {
  min-width: 170px;
  background: #446699;
  display: inline-block;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  padding: 2px;
}

a:hover.bg_link {
  background: #002266;
}

a[href^="tel:"] {
	pointer-events: none;
}

a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/* タブレット */
@media print, screen and (max-width: 1025px) {


}

/* SP */
@media print, screen and (max-width: 750px) {

a[href^="tel:"] {
	pointer-events: inherit;
}

a[href*="tel:"] {
    pointer-events: inherit;
    cursor: pointer;
}

}

/*-----------------------------------------------------------------
	レスポンシブ用
-----------------------------------------------------------------*/

.pc {
	 display: inline-block!important;
}

.pc_tab {
	 display: inline-block!important;
}

.tab {
	 display: none!important;
}

.sp {
	 display: none!important;
}

/* タブレット */
@media print, screen and (max-width: 1025px) {

.pc_tab {
    display: inline-block!important;
 } 
  
.pc {
	 display: none!important;
}

.tab {
	 display: inline-block!important;
}
  
}

/* SP */
@media print, screen and (max-width: 750px) {

.pc_tab {
	 display: none!important;
} 

.tab {
	 display: none!important;
}

.sp {
	 display: inline-block!important;
}

}

/*-----------------------------------------------------------------
	共通CSS
-----------------------------------------------------------------*/

html {
	height: 100%;
	background: #fff;
	color: #666;
	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%;
}

img {
	max-width: 100%;
	height: auto;
	border:0;
	vertical-align: bottom;
}

.inner {
	width: 100%;
  max-width: 860px;
	margin: auto;
}

.inner_wide {
	width: 90vw;
  max-width: 1300px;
	margin: auto;
}

.pos-re { position: relative;}

/* align */
.align_center { text-align: center!important;}
.align_left { text-align: left!important;}
.align_right { text-align: right!important;}

.txt {
  text-align: center;
}

span.br {
  display: inline-block;
}

.mt40 { margin-top: 40px!important;}

.mb20 { margin-bottom: 20px!important;}
.mb30 { margin-bottom: 30px!important;}
.mb40 { margin-bottom: 40px!important;}
.mb50 { margin-bottom: 50px!important;}
.mb60 { margin-bottom: 60px!important;}

.pl20 { padding-left: 20px!important;}

/* タブレット */
@media print, screen and (max-width: 1300px) {
  
  .inner_wide {
    width: 90vw;
  }
  
  }

/* タブレット */
@media print, screen and (max-width: 1025px) {

.inner {
	width: 90vw;
}

}

/* SP */
@media print, screen and (max-width: 750px) {
  
.txt {
  text-align: left;
}

.mb60 { margin-bottom: 30px!important;}

}

/*-----------------------------------------------------------------
	input textarea
-----------------------------------------------------------------*/


input[type="text"] {
  vertical-align: middle;
  border:none;
}

input, textarea {
  width: 100%;
  border: none;
  background: #f2f2f2;
  border-top: #666 1px solid!important;
  border-left: #666 1px solid!important;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

textarea {
  width: 100%;
  resize: vertical;
	min-height: 150px;
 }

@-moz-document url-prefix() { /* for firefox */
    input {
        background:none;
        background-color: #FFF;
    }

}

/* タブレット */
@media print, screen and (max-width: 1025px) {
  
}

/* SP */
@media print, screen and (max-width: 750px) {
  
input, textarea {
  padding: 10px 5px;
}

}

/*-----------------------------------------------------------------
	flex
-----------------------------------------------------------------*/

.flex_spec {	
  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;
}

/* タブレット */
@media print, screen and (max-width: 1025px) {
  
}

/* タブレット～SP */
@media print, screen and (max-width: 750px) {

}

/*-----------------------------------------------------------------
	color
-----------------------------------------------------------------*/

.mainclr_txt { color: #446699!important;}
.white_txt { color: #fff!important;}
.red_txt { color: #ff0000!important;}

.bg_mainclr { background-color: #446699!important;}

/*-----------------------------------------------------------------
	wrap
-----------------------------------------------------------------*/

#wrap {
  width: 100%;
  flex-direction: column;
  padding-top: 120px;
  min-height: 100vh;
}

.wrap_top {
  padding-top: 0!important;
}

/* タブレット */
@media print, screen and (max-width: 1025px) {

}

/* SP */
@media print, screen and (max-width: 750px) {

}

/*-----------------------------------------------------------------
	main
-----------------------------------------------------------------*/
#main {
  width: 100%;
  /* min-height: 100vh; */
  /* padding-bottom: 620px!important; */
  position: relative;
}

/* タブレット */
@media print, screen and (max-width: 1025px) {
  #main {
    padding-bottom: 0!important;
    position: static;
  }
}
/* SP */
@media print, screen and (max-width: 750px) {
  #main {
    padding-left: 0;
  }
}

/*-----------------------------------------------------------------
	header
-----------------------------------------------------------------*/

.logo {
  position: absolute;
  top: 30px;
  left: 36px;
  height: 70px;
  z-index: 10000;
}

.logo img {
  height: 100%;
}

.menu_nojs_checkbox {
  display: none!important;
}

.menu_trigger {
  display: block!important;
  position: fixed;
  top: 14px;
  right: 30px;
  width: 85px;
  height: 85px;
  border: none;
  border: #fff 5px solid;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  z-index: 10000;
  padding: 12px;
}

.menu_trigger, .menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu_trigger span {
  position: absolute;
  width: 44px;
  height: 4px;
  top: 20px;
  left: 16px;
  background-color: #999;
  border-radius: 1px;
}
.menu_trigger span:nth-of-type(1) {
  top: 26px;
}
.menu_trigger span:nth-of-type(2) {
  top: 36px;
}
.menu_trigger span:nth-of-type(3) {
  top: 46px;
}

.menu_nojs_checkbox:checked ~ .nav_box {
  display: block;
}
.menu_nojs_checkbox:checked ~ .menu_trigger span {
  background: #999;
}
.menu_nojs_checkbox:checked ~ .menu_trigger span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.menu_nojs_checkbox:checked ~ .menu_trigger span:nth-of-type(2) {
  opacity: 0;
}
.menu_nojs_checkbox:checked ~ .menu_trigger span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
.menu_txt {
  font-size: 12px;
  color: #e2bb17;
  text-align: center;
}

.nav_box {
  display: none;
  width: 320px;
  position: fixed;
  top: 100px;
  right: 40px;
  background: #808080;
  padding: 20px 20px 20px;
  z-index: 9999;
  box-sizing: border-box;
}

#nav_menu {
  text-align: right;
}
#nav_menu li {
  border-bottom: #00ffff 1px solid;
  padding: 4px 0;
}
#nav_menu li:first-child {
  border-top: #00ffff 1px solid;
}
#nav_menu li a {
  width: 100%;
  display: block;
  color: #fff;
  padding: 11px 10px;
  font-family: m-plus-rounded-1c, sans-serif;
  font-size: 20px;
  font-weight: 500!important;
  font-style: normal;
}
#nav_menu li a:hover {
  background: #a0a0a0;
}

/* タブレット */
@media print, screen and (max-width: 1025px) {
  
}

/* SP */
@media print, screen and (max-width: 750px) {

  .logo {
    padding-top: 20px;
    top: 0;
    left: 20px;
    height: 60px;
    z-index: 10000;
  }

  .menu_trigger {
    display: block!important;
    position: fixed;
    top: 14px;
    right: 15px;
    width: 60px;
    height: 60px;
  }
  .menu_trigger span {
    position: absolute;
    width: 30px;
    height: 4px;
    top: 0;
    left: 10px;
    background-color: #999;
    border-radius: 1px;
  }
  .menu_trigger span:nth-of-type(1) {
    top: 14px;
  }
  .menu_trigger span:nth-of-type(2) {
    top: 24px;
  }
  .menu_trigger span:nth-of-type(3) {
    top: 34px;
  }
  
  .nav_box {
    right: 20px;
  }

}

/*-----------------------------------------------------------------
	footer
-----------------------------------------------------------------*/

footer {
  width: 100%;
  background: #e5e5e5;
  text-align: center;
  padding: 30px 0 20px;
  z-index: 1000;
}

.f_box {
  width: 100%;
  margin: auto;
  align-items: stretch;

}

.f_left {
  flex: 1;
  padding-left: 38px;
}

#flogo {
  width: 150px;
  margin-bottom: 20px;
  margin-right: 30px;
  text-align: left;
}

.f_info {
  flex: 1;
  color: #4d4d4d;
  text-align: left;
  padding-top: 43px;
}

.f_right {
  width: 360px;
  position: relative;
  justify-content: right;
  text-align: right;
  padding-bottom: 40px;
}

#copy {
  color: #4d4d4d;
  font-size: 10px;  
}

.f_sns_link {
  letter-spacing: -0.5em;
  padding-right: 40px;
  margin-bottom: 30px;
}

.f_sns_link li {
  width: 45px;
  letter-spacing: normal;
  display: inline-block;
  margin-left: 20px;
}

.f_contact {
  position: relative;
  background: rgba(255,255,255,0.25);
  box-shadow: -10px 10px 10px rgba(0,0,0,0.2);
  border-radius: 5px 0 0 5px;
  color: #4d4d4d;
  padding: 15px 30px;
  text-align: left;
}

.f_contact::after {
  position: absolute;
  content: "";
  right: 50px;
  bottom: 24px;
  width: 96px;
  height: 12px;
  border-bottom: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  transform: skew(45deg);
}

.f_menu {
  position: absolute;
  bottom: 0;
  letter-spacing: -0.5em;
  padding-right: 45px;
}

.f_menu li {
  letter-spacing: normal;
  border-right: #4d4d4d 1px solid;
  font-size: 14px;
  display: inline-block;
}

.f_menu li:first-child {
  border-left: #4d4d4d 1px solid;
}

.f_menu li a {
  color: #4d4d4d;
  padding-left: 15px;
  padding-right: 15px;
}

.f_menu li a:hover {
  background: #395379;
  color: #fff;
}

/* タブレット */
@media print, screen and (max-width: 1025px) {
  
}

/* SP～タブレット */
@media print, screen and (max-width: 900px) {

  .f_info {
    width: 100%;
    flex: none;
    padding-left: 50px;
    padding-top: 10px;
  }
  
}

/* SP */
@media print, screen and (max-width: 750px) {
  
footer {
  position: relative;
  padding: 30px 0 70px;
}

.f_left {
  width: 100%;
  text-align: center;
  justify-content: flex-start;
  padding-left: 0;
}

#flogo {
  margin: 0 auto 20px;
  text-align: center;
}

.f_info {
  text-align: center;
  padding-left: 0;
  padding-bottom: 0;
}

.f_info .mb30 {
  margin-bottom: 10px!important;
}

#copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 100;
}

.f_sns_link {
  text-align: center;
  padding-right: 0;
}

.f_right {
  width: 100%;
  padding-top: 10px;
}

.f_contact {
  width: 90%;
  margin: 0 0 0 auto!important;
  padding: 15px 30px;
  text-align: left;
}

.f_contact.mb20 {
  margin-bottom: 0;
}

.f_contact::after {
  right: 40px;
  width: 50px;
}

.f_menu {
  left: 0;
  right: 0;
  text-align: center;
  padding-right: 0;
}

}
